create-jsc-vite-react-ts 1.2.0 → 1.2.2

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 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
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-jsc-vite-react-ts",
3
- "version": "1.2.0",
3
+ "version": "1.2.2",
4
4
  "description": "Create a modern React app with TypeScript, Vite, Tailwind CSS, and Vitest",
5
5
  "type": "module",
6
6
  "bin": {
@@ -12,8 +12,8 @@
12
12
  "test:ui": "vitest --ui",
13
13
  "test:coverage": "vitest --coverage",
14
14
  "format": "prettier --write .",
15
- "update-version": "./update-version.sh",
16
- "create-tag": "./create-tag.sh",
15
+ "update-version": "./scripts/update-version.sh",
16
+ "create-tag": "./scripts/create-tag.sh",
17
17
  "full-tag": "yarn update-version && yarn create-tag"
18
18
  },
19
19
  "dependencies": {