-
Notifications
You must be signed in to change notification settings - Fork 20
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
## 🎯 Aim The aim is to create a new minor release with the latest enhancements. ## 📷 Result ![image](https://github.com/user-attachments/assets/e85c35d6-95bf-4a02-9a9b-0602127472e1) ![image](https://github.com/user-attachments/assets/51fca868-2dbe-4e6f-93fa-9bdea0144f02) ![image](https://github.com/user-attachments/assets/272ed119-91d6-43d7-bcf1-fa711f55fb79) ![image](https://github.com/user-attachments/assets/c16adfdf-6674-45a6-95ba-7bfe50f1a602) ## ✅ What was done - [X] Unfied the gulp bundle local and production to a single task with an additional prompt - [X] Unfied the gulp package-solution local and production to a single task with an additional prompt - [X] Fixed warning message regarding installed Node.js version in validate dependency action - [X] Added conditional logic to scaffolding form additional dependencies to show them based on project type - [X] Added install react additional dependency to the scaffolding form visible for Application customizer - [X] Added Install, and Uninstall apps to a specified site action to app view - [X] Enhanced progress notifications with output window links for better user guidance to every CLI action - [X] Added action which allows to set form customizer - [X] Enhanced error handling in GitHub Copilot Chat participant - [X] Updated welcome view - [X] Updated VS Code typings and engine to latest --------- Co-authored-by: Nico De Cleyre <[email protected]> Co-authored-by: Saurabh Tripathi <[email protected]> Co-authored-by: ErvinGayle <[email protected]> Co-authored-by: Nishkalank Bezawada <[email protected]>
- Loading branch information
1 parent
fa5c5f3
commit 0262386
Showing
29 changed files
with
453 additions
and
34 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -12,6 +12,7 @@ import { CliActions } from './services/actions/CliActions'; | |
import { PromptHandlers } from './chat/PromptHandlers'; | ||
import { CHAT_PARTICIPANT_NAME, ProjectFileContent } from './constants'; | ||
import { EntraAppRegistration } from './services/actions/EntraAppRegistration'; | ||
import { CopilotActions } from './services/actions/CopilotActions'; | ||
|
||
|
||
export async function activate(context: vscode.ExtensionContext) { | ||
|
@@ -29,6 +30,7 @@ export async function activate(context: vscode.ExtensionContext) { | |
Scaffolder.registerCommands(); | ||
CliActions.registerCommands(); | ||
EntraAppRegistration.registerCommands(context); | ||
CopilotActions.registerCommands(); | ||
|
||
CommandPanel.register(); | ||
|
||
|
@@ -68,6 +70,10 @@ export async function activate(context: vscode.ExtensionContext) { | |
await TerminalCommandExecuter.runCommand('spfx-fast-serve --force-install', terminalTitle, terminalIcon); | ||
} | ||
|
||
if (fileContents.indexOf(ProjectFileContent.installReact) > -1) { | ||
await TerminalCommandExecuter.runCommand('npm install [email protected] [email protected]', terminalTitle, terminalIcon); | ||
} | ||
|
||
// If either of the following strings are found in the project file, run the command to get the node version | ||
if (fileContents.indexOf(ProjectFileContent.createNVMRCFile) > -1 || fileContents.indexOf(ProjectFileContent.createNodeVersionFile) > -1) { | ||
let nodeVersionCommand = 'node --version > '; | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.