create-tsrouter-app 0.14.3 → 0.14.4
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/index.js +5 -1
- package/package.json +4 -2
- package/src/index.ts +7 -1
package/dist/index.js
CHANGED
|
@@ -1,5 +1,9 @@
|
|
|
1
1
|
#!/usr/bin/env node
|
|
2
|
-
import { cli } from '@tanstack/cta-
|
|
2
|
+
import { cli } from '@tanstack/cta-cli';
|
|
3
|
+
import { register as registerReactCra } from '@tanstack/cta-framework-react-cra';
|
|
4
|
+
import { register as registerSolid } from '@tanstack/cta-framework-solid';
|
|
5
|
+
registerReactCra();
|
|
6
|
+
registerSolid();
|
|
3
7
|
cli({
|
|
4
8
|
name: 'create-tsrouter-app',
|
|
5
9
|
appName: 'TanStack',
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "create-tsrouter-app",
|
|
3
|
-
"version": "0.14.
|
|
3
|
+
"version": "0.14.4",
|
|
4
4
|
"description": "Tanstack Application Builder",
|
|
5
5
|
"bin": "./dist/index.js",
|
|
6
6
|
"type": "module",
|
|
@@ -23,7 +23,9 @@
|
|
|
23
23
|
"author": "Jack Herrington <jherr@pobox.com>",
|
|
24
24
|
"license": "MIT",
|
|
25
25
|
"dependencies": {
|
|
26
|
-
"@tanstack/cta-
|
|
26
|
+
"@tanstack/cta-framework-solid": "0.14.4",
|
|
27
|
+
"@tanstack/cta-cli": "0.14.4",
|
|
28
|
+
"@tanstack/cta-framework-react-cra": "0.14.4"
|
|
27
29
|
},
|
|
28
30
|
"devDependencies": {
|
|
29
31
|
"@types/node": "^22.13.4",
|
package/src/index.ts
CHANGED
|
@@ -1,5 +1,11 @@
|
|
|
1
1
|
#!/usr/bin/env node
|
|
2
|
-
import { cli } from '@tanstack/cta-
|
|
2
|
+
import { cli } from '@tanstack/cta-cli'
|
|
3
|
+
|
|
4
|
+
import { register as registerReactCra } from '@tanstack/cta-framework-react-cra'
|
|
5
|
+
import { register as registerSolid } from '@tanstack/cta-framework-solid'
|
|
6
|
+
|
|
7
|
+
registerReactCra()
|
|
8
|
+
registerSolid()
|
|
3
9
|
|
|
4
10
|
cli({
|
|
5
11
|
name: 'create-tsrouter-app',
|