@tanstack/cta-cli 0.32.3 → 0.33.1
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/ui-prompts.js +0 -4
- package/package.json +3 -3
- package/src/ui-prompts.ts +1 -5
package/dist/ui-prompts.js
CHANGED
|
@@ -188,10 +188,6 @@ export async function selectHost(framework, host) {
|
|
|
188
188
|
const hp = await select({
|
|
189
189
|
message: 'Select hosting provider',
|
|
190
190
|
options: [
|
|
191
|
-
{
|
|
192
|
-
value: undefined,
|
|
193
|
-
label: 'None',
|
|
194
|
-
},
|
|
195
191
|
...Array.from(hosts).map((h) => ({
|
|
196
192
|
value: h.id,
|
|
197
193
|
label: h.name,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tanstack/cta-cli",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.33.1",
|
|
4
4
|
"description": "Tanstack Application Builder CLI",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.js",
|
|
@@ -30,8 +30,8 @@
|
|
|
30
30
|
"express": "^4.21.2",
|
|
31
31
|
"semver": "^7.7.2",
|
|
32
32
|
"zod": "^3.24.2",
|
|
33
|
-
"@tanstack/cta-engine": "0.
|
|
34
|
-
"@tanstack/cta-ui": "0.
|
|
33
|
+
"@tanstack/cta-engine": "0.33.0",
|
|
34
|
+
"@tanstack/cta-ui": "0.33.0"
|
|
35
35
|
},
|
|
36
36
|
"devDependencies": {
|
|
37
37
|
"@tanstack/config": "^0.16.2",
|
package/src/ui-prompts.ts
CHANGED
|
@@ -255,10 +255,6 @@ export async function selectHost(
|
|
|
255
255
|
const hp = await select({
|
|
256
256
|
message: 'Select hosting provider',
|
|
257
257
|
options: [
|
|
258
|
-
{
|
|
259
|
-
value: undefined,
|
|
260
|
-
label: 'None',
|
|
261
|
-
},
|
|
262
258
|
...Array.from(hosts).map((h) => ({
|
|
263
259
|
value: h.id,
|
|
264
260
|
label: h.name,
|
|
@@ -272,5 +268,5 @@ export async function selectHost(
|
|
|
272
268
|
process.exit(0)
|
|
273
269
|
}
|
|
274
270
|
|
|
275
|
-
return hp
|
|
271
|
+
return hp
|
|
276
272
|
}
|