Skip to content

Instantly share code, notes, and snippets.

@ZackDeRose
Created January 26, 2023 03:22
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ZackDeRose/0bde83f87ffd21dbc90690a7c4c83479 to your computer and use it in GitHub Desktop.
Save ZackDeRose/0bde83f87ffd21dbc90690a7c4c83479 to your computer and use it in GitHub Desktop.
async function createReactApplication(
tree: Tree,
options: AppGeneratorSchema,
webAppName: string
) {
await reactAppGenerator(tree, {
name: webAppName,
linter: Linter.EsLint,
style: 'css',
e2eTestRunner: 'none',
unitTestRunner: 'vitest',
bundler: 'vite',
devServerPort: optionsWithDefaults.frontendPort,
});
// rest of implementation to come here!!
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment