Created
January 26, 2023 03:22
-
-
Save ZackDeRose/0bde83f87ffd21dbc90690a7c4c83479 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
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