create-plasmic-app 0.0.97 → 0.0.98

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/index.js CHANGED
@@ -52,7 +52,7 @@ if (process.env.CPA_DEBUG_CHDIR) {
52
52
  const createPlasmicAppVersion = (0, npm_utils_1.updateNotify)();
53
53
  // Specify command-line args
54
54
  const argv = yargs_1.default
55
- .command("$0 [projectName]", "Create a Plasmic app with Next.js, Gatsby, or Create React App", (yargs) => {
55
+ .command("$0 [projectName]", "Create a Plasmic app with Next.js, Gatsby, or React (Vite)", (yargs) => {
56
56
  yargs
57
57
  .usage("Usage: $0 [projectName] [options]")
58
58
  .positional("projectName", {
@@ -187,8 +187,8 @@ function run() {
187
187
  value: "gatsby",
188
188
  },
189
189
  {
190
- name: "Create React App (advanced)",
191
- short: "Create React App",
190
+ name: "React (Vite)",
191
+ short: "React (Vite)",
192
192
  value: "react",
193
193
  },
194
194
  ],
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-plasmic-app",
3
- "version": "0.0.97",
3
+ "version": "0.0.98",
4
4
  "description": "Create Plasmic-powered React apps",
5
5
  "main": "./dist/lib.js",
6
6
  "types": "./dist/lib.d.ts",
@@ -54,5 +54,5 @@
54
54
  "validate-npm-package-name": "^3.0.0",
55
55
  "yargs": "^16.2.0"
56
56
  },
57
- "gitHead": "82ca8fa55dd9aa42ae599e2d519d3eac6d6ae06c"
57
+ "gitHead": "b43bfc6e9e68b75cac25f9fee2fed8795b5d8518"
58
58
  }
package/src/index.ts CHANGED
@@ -21,7 +21,7 @@ const createPlasmicAppVersion = updateNotify();
21
21
  const argv = yargs
22
22
  .command(
23
23
  "$0 [projectName]",
24
- "Create a Plasmic app with Next.js, Gatsby, or Create React App",
24
+ "Create a Plasmic app with Next.js, Gatsby, or React (Vite)",
25
25
  (yargs) => {
26
26
  yargs
27
27
  .usage("Usage: $0 [projectName] [options]")
@@ -176,8 +176,8 @@ async function run(): Promise<void> {
176
176
  value: "gatsby",
177
177
  },
178
178
  {
179
- name: "Create React App (advanced)",
180
- short: "Create React App",
179
+ name: "React (Vite)",
180
+ short: "React (Vite)",
181
181
  value: "react",
182
182
  },
183
183
  ],