Skip to content

Commit

Permalink
fix: wrong command displayed for installing all dependencies into pro…
Browse files Browse the repository at this point in the history
…ject
  • Loading branch information
Tommypop2 committed Mar 9, 2024
1 parent 2281938 commit 3b6183f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/commands/src/handlers/new.ts
Original file line number Diff line number Diff line change
Expand Up @@ -170,7 +170,7 @@ const handleNewStartProject = async (projectName: string, variation?: AllSupport
const pM = detectPackageManager();
p.log.info(`${t.GET_STARTED}
- cd ${projectName}
- ${pM.name} ${pM.installCommand}
- ${pM.name} install
- ${pM.name} ${pM.runScriptCommand("dev")}`);
};

Expand Down Expand Up @@ -241,6 +241,6 @@ export const handleNew = async (
const pM = detectPackageManager();
p.log.info(`${t.GET_STARTED}
- cd ${name}
- ${pM.name} ${pM.installCommand}
- ${pM.name} install
- ${pM.name} ${pM.runScriptCommand("dev")}`);
};

0 comments on commit 3b6183f

Please sign in to comment.