create-jsc-vite-react-ts 1.2.1 → 1.2.3
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/cli.js +3 -0
- package/package.json +1 -1
package/bin/cli.js
CHANGED
|
@@ -99,6 +99,9 @@ const run = async () => {
|
|
|
99
99
|
console.log(chalk.bold.green("\n✨ Success! Your project is ready.\n"));
|
|
100
100
|
console.log(chalk.bold("Next steps:\n"));
|
|
101
101
|
console.log(chalk.cyan(` cd ${projectName}`));
|
|
102
|
+
console.log(chalk.cyan(` git init`));
|
|
103
|
+
console.log(chalk.cyan(` git add .`));
|
|
104
|
+
console.log(chalk.cyan(` git commit -m "Initial commit"`));
|
|
102
105
|
console.log(chalk.cyan(` ${packageManager} dev`));
|
|
103
106
|
console.log();
|
|
104
107
|
};
|