create-plasmic-app 0.0.75 → 0.0.76

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
@@ -169,7 +169,8 @@ function run() {
169
169
  type: "list",
170
170
  choices: () => [
171
171
  {
172
- name: "Next.js",
172
+ name: "Next.js (recommended)",
173
+ short: "Next.js",
173
174
  value: "nextjs",
174
175
  },
175
176
  {
@@ -177,7 +178,8 @@ function run() {
177
178
  value: "gatsby",
178
179
  },
179
180
  {
180
- name: "Create React App",
181
+ name: "Create React App (advanced)",
182
+ short: "Create React App",
181
183
  value: "react",
182
184
  },
183
185
  ],
@@ -192,12 +194,12 @@ function run() {
192
194
  type: "list",
193
195
  choices: () => [
194
196
  {
195
- name: "PlasmicLoader: recommended default for most websites",
197
+ name: "PlasmicLoader (recommended default for most websites)",
196
198
  short: "PlasmicLoader",
197
199
  value: "loader",
198
200
  },
199
201
  {
200
- name: "Codegen: for building complex stateful apps",
202
+ name: "Codegen (advanced feature for building complex stateful apps)",
201
203
  short: "Codegen",
202
204
  value: "codegen",
203
205
  },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-plasmic-app",
3
- "version": "0.0.75",
3
+ "version": "0.0.76",
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": "9046e96d5d51d83325652cfb6b8d160aabdfb201"
57
+ "gitHead": "e9389d3457fefb5a2e1f3079956325912c556799"
58
58
  }
package/src/index.ts CHANGED
@@ -65,8 +65,7 @@ const argv = yargs
65
65
 
66
66
  // Initialize Sentry
67
67
  Sentry.init({
68
- dsn:
69
- "https://0d602108de7f44aa9470a41cc069395f@o328029.ingest.sentry.io/5679926",
68
+ dsn: "https://0d602108de7f44aa9470a41cc069395f@o328029.ingest.sentry.io/5679926",
70
69
  });
71
70
  Sentry.configureScope((scope) => {
72
71
  //scope.setUser({ email: auth.user });
@@ -152,7 +151,8 @@ async function run(): Promise<void> {
152
151
  type: "list",
153
152
  choices: () => [
154
153
  {
155
- name: "Next.js",
154
+ name: "Next.js (recommended)",
155
+ short: "Next.js",
156
156
  value: "nextjs",
157
157
  },
158
158
  {
@@ -160,7 +160,8 @@ async function run(): Promise<void> {
160
160
  value: "gatsby",
161
161
  },
162
162
  {
163
- name: "Create React App",
163
+ name: "Create React App (advanced)",
164
+ short: "Create React App",
164
165
  value: "react",
165
166
  },
166
167
  ],
@@ -177,12 +178,12 @@ async function run(): Promise<void> {
177
178
  type: "list",
178
179
  choices: () => [
179
180
  {
180
- name: "PlasmicLoader: recommended default for most websites",
181
+ name: "PlasmicLoader (recommended default for most websites)",
181
182
  short: "PlasmicLoader",
182
183
  value: "loader",
183
184
  },
184
185
  {
185
- name: "Codegen: for building complex stateful apps",
186
+ name: "Codegen (advanced feature for building complex stateful apps)",
186
187
  short: "Codegen",
187
188
  value: "codegen",
188
189
  },