@tanstack/cta-cli 0.15.8 → 0.15.9

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
@@ -119,7 +119,7 @@ export function cli({ name, appName, forcedMode, forcedAddOns = [], defaultTempl
119
119
  throw new InvalidArgumentError(`Invalid framework: ${value}. Only the following are allowed: ${availableFrameworks.join(', ')}`);
120
120
  }
121
121
  return value;
122
- }, defaultFramework || 'react');
122
+ }, defaultFramework || 'React');
123
123
  }
124
124
  program
125
125
  .option('--starter [url]', 'initialize this project from a starter URL', false)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tanstack/cta-cli",
3
- "version": "0.15.8",
3
+ "version": "0.15.9",
4
4
  "description": "Tanstack Application Builder CLI",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",
package/src/cli.ts CHANGED
@@ -191,7 +191,7 @@ export function cli({
191
191
  }
192
192
  return value
193
193
  },
194
- defaultFramework || 'react',
194
+ defaultFramework || 'React',
195
195
  )
196
196
  }
197
197