create-plasmic-app 0.0.108 → 0.0.109

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
@@ -252,7 +252,7 @@ function run() {
252
252
  console.log();
253
253
  const projectInput = yield maybePrompt({
254
254
  name: "projectId",
255
- message: `If you don't have a project yet, create one by going to https://studio.plasmic.app/starters/blank.
255
+ message: `If you don't have a project yet, create one by going to https://studio.plasmic.app/starters/blank
256
256
  What is the URL of your project?`,
257
257
  validate: cpa.checkProjectInput,
258
258
  });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-plasmic-app",
3
- "version": "0.0.108",
3
+ "version": "0.0.109",
4
4
  "description": "Create Plasmic-powered React apps",
5
5
  "main": "./dist/lib.js",
6
6
  "types": "./dist/lib.d.ts",
@@ -46,5 +46,5 @@
46
46
  "validate-npm-package-name": "^3.0.0",
47
47
  "yargs": "^16.2.0"
48
48
  },
49
- "gitHead": "b3a51423bc2605bf2fe501a3cd4278b0212bd580"
49
+ "gitHead": "6d71fb9313428d0faacaea10aa19822cddcb286e"
50
50
  }
package/src/index.ts CHANGED
@@ -251,7 +251,7 @@ async function run(): Promise<void> {
251
251
  console.log();
252
252
  const projectInput = await maybePrompt<string>({
253
253
  name: "projectId",
254
- message: `If you don't have a project yet, create one by going to https://studio.plasmic.app/starters/blank.
254
+ message: `If you don't have a project yet, create one by going to https://studio.plasmic.app/starters/blank
255
255
  What is the URL of your project?`,
256
256
  validate: cpa.checkProjectInput,
257
257
  });