@tanstack/cta-cli 0.33.0 → 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.
@@ -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.33.0",
3
+ "version": "0.33.1",
4
4
  "description": "Tanstack Application Builder CLI",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",
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 as string
271
+ return hp
276
272
  }