@tanstack/cta-cli 0.15.9 → 0.15.10

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/cli.js CHANGED
@@ -174,7 +174,7 @@ export function cli({ name, appName, forcedMode, forcedAddOns = [], defaultTempl
174
174
  projectName,
175
175
  ...options,
176
176
  };
177
- cliOptions.framework = getFrameworkByName(options.framework || defaultFramework || 'react').id;
177
+ cliOptions.framework = getFrameworkByName(options.framework || defaultFramework || 'React').id;
178
178
  if (defaultMode) {
179
179
  cliOptions.template = defaultMode;
180
180
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tanstack/cta-cli",
3
- "version": "0.15.9",
3
+ "version": "0.15.10",
4
4
  "description": "Tanstack Application Builder CLI",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",
@@ -29,8 +29,8 @@
29
29
  "commander": "^13.1.0",
30
30
  "express": "^4.21.2",
31
31
  "zod": "^3.24.2",
32
- "@tanstack/cta-engine": "0.15.7",
33
- "@tanstack/cta-ui": "0.15.7"
32
+ "@tanstack/cta-ui": "0.15.7",
33
+ "@tanstack/cta-engine": "0.15.7"
34
34
  },
35
35
  "devDependencies": {
36
36
  "@tanstack/config": "^0.16.2",
package/src/cli.ts CHANGED
@@ -281,7 +281,7 @@ export function cli({
281
281
  } as CliOptions
282
282
 
283
283
  cliOptions.framework = getFrameworkByName(
284
- options.framework || defaultFramework || 'react',
284
+ options.framework || defaultFramework || 'React',
285
285
  )!.id
286
286
 
287
287
  if (defaultMode) {