create-plasmic-app 0.0.44 → 0.0.45
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 +2 -2
- package/package.json +1 -1
- package/src/index.ts +2 -2
package/dist/index.js
CHANGED
|
@@ -202,8 +202,8 @@ function run() {
|
|
|
202
202
|
const rawProjectId = yield maybePrompt({
|
|
203
203
|
name: "projectId",
|
|
204
204
|
message: `What is the URL of your project?
|
|
205
|
-
|
|
206
|
-
https://studio.plasmic.app/starters/simple-light
|
|
205
|
+
If you don't have a project yet, create one by going to
|
|
206
|
+
https://studio.plasmic.app/starters/simple-light
|
|
207
207
|
`,
|
|
208
208
|
});
|
|
209
209
|
projectId = rawProjectId
|
package/package.json
CHANGED
package/src/index.ts
CHANGED
|
@@ -185,8 +185,8 @@ async function run(): Promise<void> {
|
|
|
185
185
|
const rawProjectId = await maybePrompt({
|
|
186
186
|
name: "projectId",
|
|
187
187
|
message: `What is the URL of your project?
|
|
188
|
-
|
|
189
|
-
https://studio.plasmic.app/starters/simple-light
|
|
188
|
+
If you don't have a project yet, create one by going to
|
|
189
|
+
https://studio.plasmic.app/starters/simple-light
|
|
190
190
|
`,
|
|
191
191
|
});
|
|
192
192
|
projectId = rawProjectId
|