@tanstack/solid-start 1.167.58 → 1.167.60
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/package.json +5 -9
- package/bin/intent.js +0 -25
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tanstack/solid-start",
|
|
3
|
-
"version": "1.167.
|
|
3
|
+
"version": "1.167.60",
|
|
4
4
|
"description": "Modern and scalable routing for Solid applications",
|
|
5
5
|
"author": "Tanner Linsley",
|
|
6
6
|
"license": "MIT",
|
|
@@ -109,17 +109,16 @@
|
|
|
109
109
|
"pathe": "^2.0.3",
|
|
110
110
|
"@tanstack/solid-router": "1.169.1",
|
|
111
111
|
"@tanstack/solid-start-client": "1.166.46",
|
|
112
|
-
"@tanstack/solid-start-server": "1.166.
|
|
112
|
+
"@tanstack/solid-start-server": "1.166.50",
|
|
113
113
|
"@tanstack/start-client-core": "1.168.1",
|
|
114
|
-
"@tanstack/start-plugin-core": "1.169.
|
|
115
|
-
"@tanstack/start-server-core": "1.167.
|
|
114
|
+
"@tanstack/start-plugin-core": "1.169.18",
|
|
115
|
+
"@tanstack/start-server-core": "1.167.29"
|
|
116
116
|
},
|
|
117
117
|
"devDependencies": {
|
|
118
118
|
"@rsbuild/core": "^2.0.1",
|
|
119
|
-
"@tanstack/intent": "^0.0.14",
|
|
120
119
|
"@types/node": ">=20",
|
|
121
120
|
"vite": "*",
|
|
122
|
-
"@tanstack/router-utils": "1.161.
|
|
121
|
+
"@tanstack/router-utils": "1.161.8"
|
|
123
122
|
},
|
|
124
123
|
"peerDependencies": {
|
|
125
124
|
"@rsbuild/core": "^2.0.0",
|
|
@@ -134,9 +133,6 @@
|
|
|
134
133
|
"optional": true
|
|
135
134
|
}
|
|
136
135
|
},
|
|
137
|
-
"bin": {
|
|
138
|
-
"intent": "./bin/intent.js"
|
|
139
|
-
},
|
|
140
136
|
"scripts": {
|
|
141
137
|
"clean": "rimraf ./dist && rimraf ./coverage",
|
|
142
138
|
"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
|
-
}
|