inikit 1.2.3 → 1.2.4

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/dist/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "inikit",
3
- "version": "1.2.3",
3
+ "version": "1.2.4",
4
4
  "description": "Best way to get started with Next.js and React project.",
5
5
  "main": "./dist/index.js",
6
6
  "scripts": {
package/dist/utils.js CHANGED
@@ -29,7 +29,7 @@ export const createReactApp = async (appName, typeScript) => {
29
29
  `;
30
30
  const { stdout } = await $({
31
31
  cwd: process.cwd(),
32
- }) `npm create vite@latest ${appName} --- --template ${typeScript ? 'react-ts' : 'react'}`;
32
+ }) `npx create-vite ${appName} --- --template ${typeScript ? 'react-ts' : 'react'}`;
33
33
  await $({
34
34
  cwd: path.resolve(process.cwd(), appName),
35
35
  }) `npm install`;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "inikit",
3
- "version": "1.2.3",
3
+ "version": "1.2.4",
4
4
  "description": "Best way to get started with Next.js and React project.",
5
5
  "main": "./dist/index.js",
6
6
  "scripts": {