Skip to content

Commit

Permalink
fix(create-app): do not install "install" package
Browse files Browse the repository at this point in the history
  • Loading branch information
antfu committed May 2, 2021
1 parent 4556f2e commit 9ac524b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/create-app/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ async function init() {
})

if (yes) {
await run(parseNi, ['-C', related, 'install'])
await run(parseNi, ['-C', related])
// await execa(pkgManager, ['-C', related, 'install'], { stdio: 'inherit' })
await execa(pkgManager, ['-C', related, 'run', 'dev'], { stdio: 'inherit' })
}
Expand Down

0 comments on commit 9ac524b

Please sign in to comment.