create-plasmic-app 0.0.135 → 0.0.136

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.
@@ -41,7 +41,7 @@ exports.reactStrategy = {
41
41
  const projectName = path_1.default.basename(fullProjectPath);
42
42
  const parentDir = path_1.default.dirname(fullProjectPath);
43
43
  process.chdir(parentDir);
44
- const createCommand = `npx create-vite@latest ${projectName} --no-interactive`;
44
+ const createCommand = `npx create-vite@5 ${projectName} --no-interactive`;
45
45
  if (!template) {
46
46
  template = jsOrTs === "ts" ? "react-ts" : "react";
47
47
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-plasmic-app",
3
- "version": "0.0.135",
3
+ "version": "0.0.136",
4
4
  "description": "Create Plasmic-powered React apps",
5
5
  "main": "./dist/lib.js",
6
6
  "types": "./dist/lib.d.ts",
@@ -47,5 +47,5 @@
47
47
  "validate-npm-package-name": "^3.0.0",
48
48
  "yargs": "^16.2.0"
49
49
  },
50
- "gitHead": "7bdae76d262e9a939b16d46be2b806ae68b374ca"
50
+ "gitHead": "1b5025833480c30a67137ad81b8008c4719b1730"
51
51
  }
@@ -37,7 +37,7 @@ export const reactStrategy: CPAStrategy = {
37
37
  const parentDir = path.dirname(fullProjectPath);
38
38
  process.chdir(parentDir);
39
39
 
40
- const createCommand = `npx create-vite@latest ${projectName} --no-interactive`;
40
+ const createCommand = `npx create-vite@5 ${projectName} --no-interactive`;
41
41
 
42
42
  if (!template) {
43
43
  template = jsOrTs === "ts" ? "react-ts" : "react";