gridsum-vue3-pc 1.0.5 → 1.0.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/bin/create-vue3-pc.mjs +0 -8
- package/package.json +1 -1
package/bin/create-vue3-pc.mjs
CHANGED
|
@@ -496,14 +496,6 @@ async function main() {
|
|
|
496
496
|
doneMessage += `\n ${pc.bold(pc.cyan(pkgManager))} ${pkgManager === 'yarn' ? 'dev' : 'run dev'}`;
|
|
497
497
|
|
|
498
498
|
prompts.outro(`${pc.green('Done!')} Now run:${doneMessage}`);
|
|
499
|
-
|
|
500
|
-
console.log(`
|
|
501
|
-
${pc.dim('Available commands:')}
|
|
502
|
-
${pkgManager} ${pkgManager === 'yarn' ? 'dev' : 'run dev'} ${pc.dim('- Start dev server')}
|
|
503
|
-
${pkgManager} ${pkgManager === 'yarn' ? 'build' : 'run build'} ${pc.dim('- Build for production')}
|
|
504
|
-
${pkgManager} ${pkgManager === 'yarn' ? 'lint' : 'run lint'} ${pc.dim('- Lint code')}
|
|
505
|
-
${pkgManager} ${pkgManager === 'yarn' ? 'test' : 'run test'} ${pc.dim('- Run tests')}
|
|
506
|
-
`);
|
|
507
499
|
}
|
|
508
500
|
|
|
509
501
|
main().catch((e) => {
|