We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 937baf4 commit 596ac59Copy full SHA for 596ac59
src/main/setup/setup.ts
@@ -61,17 +61,17 @@ export const performSetupSteps = async (
61
inputs: ValidCNSInputs
62
): Promise<void> => {
63
const steps = [
64
- // Create Next App
65
- nextPlugin.steps.createNextApp,
66
-
67
- // Package management
+ // Update package manager
68
pnpmPlugin.steps.updatePnpm,
69
yarnPlugin.steps.updateYarn,
70
- createNextStackPlugin.steps.installDependencies,
71
72
- // Remove official CNA content
+ // Create Next App
+ nextPlugin.steps.createNextApp,
73
nextPlugin.steps.removeOfficialCNAContent,
74
+ // Install dependencies
+ createNextStackPlugin.steps.installDependencies,
+
75
// Configuration
76
createNextStackPlugin.steps.addScripts,
77
createNextStackPlugin.steps.addGitAttributes,
0 commit comments