create-tsrouter-app 0.54.5 → 0.54.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/CHANGELOG.md CHANGED
@@ -1,5 +1,21 @@
1
1
  # create-tsrouter-app
2
2
 
3
+ ## 0.54.7
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies [[`b3cc585`](https://github.com/TanStack/cli/commit/b3cc5851d2b81613e3b024eb7981c440ee5183af), [`5fbf262`](https://github.com/TanStack/cli/commit/5fbf262fe3a0d070e6a78fa2f2a920b176b84480)]:
8
+ - @tanstack/cli@0.59.7
9
+ - @tanstack/create@0.61.5
10
+
11
+ ## 0.54.6
12
+
13
+ ### Patch Changes
14
+
15
+ - Updated dependencies [[`164522e`](https://github.com/TanStack/cli/commit/164522e444188e83710fc599304132de8cb379e6), [`2949819`](https://github.com/TanStack/cli/commit/2949819058b4d4b1760be683ef29bfd459ddb28b)]:
16
+ - @tanstack/create@0.61.4
17
+ - @tanstack/cli@0.59.6
18
+
3
19
  ## 0.54.5
4
20
 
5
21
  ### Patch Changes
package/dist/index.js CHANGED
@@ -1,9 +1,10 @@
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', ' This will now create a TanStack Start app (with SSR). See: https://tanstack.com/start/latest/docs/framework/react/quick-start\n');
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', ' This defaults to router-only compatibility mode (file-based routing, no Start-specific add-ons).\n');
4
4
  import { cli } from '@tanstack/cli';
5
5
  cli({
6
6
  name: 'create-tsrouter-app',
7
- appName: 'TanStack Start',
7
+ appName: 'TanStack',
8
8
  legacyAutoCreate: true,
9
+ defaultRouterOnly: true,
9
10
  });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-tsrouter-app",
3
- "version": "0.54.5",
3
+ "version": "0.54.7",
4
4
  "description": "Tanstack Application Builder",
5
5
  "bin": "./dist/index.js",
6
6
  "type": "module",
@@ -24,8 +24,8 @@
24
24
  "author": "Jack Herrington <jherr@pobox.com>",
25
25
  "license": "MIT",
26
26
  "dependencies": {
27
- "@tanstack/cli": "0.59.5",
28
- "@tanstack/create": "0.61.3"
27
+ "@tanstack/cli": "0.59.7",
28
+ "@tanstack/create": "0.61.5"
29
29
  },
30
30
  "devDependencies": {
31
31
  "@types/node": "^22.13.4",
package/src/index.ts CHANGED
@@ -1,11 +1,12 @@
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', ' This will now create a TanStack Start app (with SSR). See: https://tanstack.com/start/latest/docs/framework/react/quick-start\n')
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', ' This defaults to router-only compatibility mode (file-based routing, no Start-specific add-ons).\n')
4
4
 
5
5
  import { cli } from '@tanstack/cli'
6
6
 
7
7
  cli({
8
8
  name: 'create-tsrouter-app',
9
- appName: 'TanStack Start',
9
+ appName: 'TanStack',
10
10
  legacyAutoCreate: true,
11
+ defaultRouterOnly: true,
11
12
  })