-
Couldn't load subscription status.
- Fork 1
Open
Description
Is your feature request related to a problem? Please describe.
In order to use plop for code generation, it needs to be installed and configured for the start-frontend package.
Describe the solution you'd like
- Install
plopand other necessary packages - Implement the
plopfile - Add a generator for
react/base - Revise the
start-frontendCLI script to use the plop generator to generatereact/base
Additional context (optional)
- plop generator documentation: https://plopjs.com/documentation/#setgenerator
export default function (plop: NodePlopAPI) {
plop.setGenerator("constructBase", {
actions: [
{
type: "add",
force: true,
path: "src/App.tsx",
templateFile: "App.tsx.hbs",
},
]
})
});- Handlebars documentation: https://handlebarsjs.com/guide/#what-is-handlebars
Metadata
Metadata
Assignees
Labels
Type
Projects
Status
In Progress