create-jsc-vite-react-ts 1.2.5 → 1.2.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/cli.js +0 -3
- package/package.json +1 -1
- package/template/package.json +2 -1
package/bin/cli.js
CHANGED
|
@@ -105,9 +105,6 @@ const run = async () => {
|
|
|
105
105
|
console.log(chalk.bold.green("\n✨ Success! Your project is ready.\n"));
|
|
106
106
|
console.log(chalk.bold("Next steps:\n"));
|
|
107
107
|
console.log(chalk.cyan(` cd ${projectName}`));
|
|
108
|
-
console.log(chalk.cyan(` git init`));
|
|
109
|
-
console.log(chalk.cyan(` git add .`));
|
|
110
|
-
console.log(chalk.cyan(` git commit -m "Initial commit"`));
|
|
111
108
|
console.log(chalk.cyan(` ${packageManager} dev`));
|
|
112
109
|
console.log();
|
|
113
110
|
};
|
package/package.json
CHANGED
package/template/package.json
CHANGED
|
@@ -14,7 +14,8 @@
|
|
|
14
14
|
"format": "prettier --write .",
|
|
15
15
|
"update-version": "./scripts/update-version.sh",
|
|
16
16
|
"create-tag": "./scripts/create-tag.sh",
|
|
17
|
-
"full-tag": "yarn update-version && yarn create-tag"
|
|
17
|
+
"full-tag": "yarn update-version && yarn create-tag",
|
|
18
|
+
"prepare": "git init"
|
|
18
19
|
},
|
|
19
20
|
"dependencies": {
|
|
20
21
|
"react": "^19.2.0",
|