@tanstack/react-start 1.167.61 → 1.167.63

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.
Files changed (2) hide show
  1. package/package.json +6 -10
  2. package/bin/intent.js +0 -25
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tanstack/react-start",
3
- "version": "1.167.61",
3
+ "version": "1.167.63",
4
4
  "description": "Modern and scalable routing for React applications",
5
5
  "author": "Tanner Linsley",
6
6
  "license": "MIT",
@@ -151,12 +151,12 @@
151
151
  "pathe": "^2.0.3",
152
152
  "@tanstack/react-router": "1.169.1",
153
153
  "@tanstack/react-start-client": "1.166.47",
154
- "@tanstack/react-start-rsc": "0.0.40",
155
- "@tanstack/react-start-server": "1.166.50",
156
- "@tanstack/router-utils": "1.161.7",
154
+ "@tanstack/react-start-rsc": "0.0.42",
155
+ "@tanstack/react-start-server": "1.166.51",
156
+ "@tanstack/router-utils": "1.161.8",
157
157
  "@tanstack/start-client-core": "1.168.1",
158
- "@tanstack/start-plugin-core": "1.169.16",
159
- "@tanstack/start-server-core": "1.167.28"
158
+ "@tanstack/start-server-core": "1.167.29",
159
+ "@tanstack/start-plugin-core": "1.169.18"
160
160
  },
161
161
  "peerDependencies": {
162
162
  "@rsbuild/core": "^2.0.0",
@@ -177,12 +177,8 @@
177
177
  },
178
178
  "devDependencies": {
179
179
  "@rsbuild/core": "^2.0.1",
180
- "@tanstack/intent": "^0.0.14",
181
180
  "@types/node": ">=20"
182
181
  },
183
- "bin": {
184
- "intent": "./bin/intent.js"
185
- },
186
182
  "scripts": {
187
183
  "clean": "rimraf ./dist && rimraf ./coverage",
188
184
  "test": "pnpm test:build",
package/bin/intent.js DELETED
@@ -1,25 +0,0 @@
1
- #!/usr/bin/env node
2
- // Auto-generated by @tanstack/intent setup
3
- // Exposes the intent end-user CLI for consumers of this library.
4
- // Commit this file, then add to your package.json:
5
- // "bin": { "intent": "./bin/intent.js" }
6
- try {
7
- await import('@tanstack/intent/intent-library')
8
- } catch (e) {
9
- const isModuleNotFound =
10
- e?.code === 'ERR_MODULE_NOT_FOUND' || e?.code === 'MODULE_NOT_FOUND'
11
- const missingIntentLibrary =
12
- typeof e?.message === 'string' && e.message.includes('@tanstack/intent')
13
-
14
- if (isModuleNotFound && missingIntentLibrary) {
15
- console.error('@tanstack/intent is not installed.')
16
- console.error('')
17
- console.error('Install it as a dev dependency:')
18
- console.error(' npm add -D @tanstack/intent')
19
- console.error('')
20
- console.error('Or run directly:')
21
- console.error(' npx @tanstack/intent@latest list')
22
- process.exit(1)
23
- }
24
- throw e
25
- }