-
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.
Adds custom scaffolding options to the form (#184)
## 🎯 Aim Is to extend the scaffolding form with custom steps ## ✅ What was done - [X] Extended form UI to show custom scaffolding steps - [X] Supports installing custom steps after new project is created ## 🔗 Related issue Closes: #124
- Loading branch information
Showing
5 changed files
with
105 additions
and
9 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,9 @@ | ||
/* eslint-disable no-unused-vars */ | ||
// eslint-disable-next-line no-shadow | ||
export enum ProjectFileContent { | ||
init = 'init', | ||
init = 'init-project', | ||
initScenario = 'init-scenario', | ||
installReusablePropertyPaneControls = 'install-spfx-property-controls', | ||
installReusableReactControls = 'install-spfx-controls-react', | ||
installPnPJs = 'install-pnpjs', | ||
} |
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