@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 +1 -1
- package/package.json +1 -1
- package/src/cli.ts +1 -1
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 || '
|
|
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