create-tsrouter-app 0.43.6 → 0.43.7
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 +2 -2
- package/package.json +2 -2
- package/src/index.ts +2 -2
package/dist/index.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
#!/usr/bin/env node
|
|
2
|
-
console.warn('\x1b[33m%s\x1b[0m', 'Warning: create-tsrouter-app is deprecated. Use "tanstack create" or "npx @tanstack/cli create" instead.');
|
|
3
|
-
console.warn('\x1b[33m%s\x1b[0m', ' See: https://tanstack.com/
|
|
2
|
+
console.warn('\x1b[33m%s\x1b[0m', 'Warning: create-tsrouter-app is deprecated. Use "tanstack create --router-only" or "npx @tanstack/cli create --router-only" instead.');
|
|
3
|
+
console.warn('\x1b[33m%s\x1b[0m', ' See: https://tanstack.com/router/latest/docs/framework/react/quick-start\n');
|
|
4
4
|
import { cli } from '@tanstack/cli';
|
|
5
5
|
cli({
|
|
6
6
|
name: 'create-tsrouter-app',
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "create-tsrouter-app",
|
|
3
|
-
"version": "0.43.
|
|
3
|
+
"version": "0.43.7",
|
|
4
4
|
"description": "Tanstack Application Builder",
|
|
5
5
|
"bin": "./dist/index.js",
|
|
6
6
|
"type": "module",
|
|
@@ -24,7 +24,7 @@
|
|
|
24
24
|
"author": "Jack Herrington <jherr@pobox.com>",
|
|
25
25
|
"license": "MIT",
|
|
26
26
|
"dependencies": {
|
|
27
|
-
"@tanstack/cli": "0.48.
|
|
27
|
+
"@tanstack/cli": "0.48.5",
|
|
28
28
|
"@tanstack/create": "0.49.1"
|
|
29
29
|
},
|
|
30
30
|
"devDependencies": {
|
package/src/index.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
#!/usr/bin/env node
|
|
2
|
-
console.warn('\x1b[33m%s\x1b[0m', 'Warning: create-tsrouter-app is deprecated. Use "tanstack create" or "npx @tanstack/cli create" instead.')
|
|
3
|
-
console.warn('\x1b[33m%s\x1b[0m', ' See: https://tanstack.com/
|
|
2
|
+
console.warn('\x1b[33m%s\x1b[0m', 'Warning: create-tsrouter-app is deprecated. Use "tanstack create --router-only" or "npx @tanstack/cli create --router-only" instead.')
|
|
3
|
+
console.warn('\x1b[33m%s\x1b[0m', ' See: https://tanstack.com/router/latest/docs/framework/react/quick-start\n')
|
|
4
4
|
|
|
5
5
|
import { cli } from '@tanstack/cli'
|
|
6
6
|
|