@tanstack/vue-start 1.167.54 → 1.167.56

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 +5 -9
  2. package/bin/intent.js +0 -25
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tanstack/vue-start",
3
- "version": "1.167.54",
3
+ "version": "1.167.56",
4
4
  "description": "Modern and scalable routing for Vue applications",
5
5
  "author": "Tanner Linsley",
6
6
  "license": "MIT",
@@ -108,20 +108,19 @@
108
108
  "dependencies": {
109
109
  "pathe": "^2.0.3",
110
110
  "@tanstack/start-client-core": "1.168.1",
111
- "@tanstack/start-plugin-core": "1.169.16",
112
- "@tanstack/start-server-core": "1.167.28",
111
+ "@tanstack/start-plugin-core": "1.169.18",
112
+ "@tanstack/start-server-core": "1.167.29",
113
113
  "@tanstack/vue-router": "1.169.1",
114
114
  "@tanstack/vue-start-client": "1.166.42",
115
- "@tanstack/vue-start-server": "1.166.45"
115
+ "@tanstack/vue-start-server": "1.166.46"
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
  "@vitejs/plugin-vue-jsx": "^4.1.2",
122
121
  "vite": "*",
123
122
  "vue": "^3.5.25",
124
- "@tanstack/router-utils": "1.161.7"
123
+ "@tanstack/router-utils": "1.161.8"
125
124
  },
126
125
  "peerDependencies": {
127
126
  "@rsbuild/core": "^2.0.0",
@@ -136,9 +135,6 @@
136
135
  "optional": true
137
136
  }
138
137
  },
139
- "bin": {
140
- "intent": "./bin/intent.js"
141
- },
142
138
  "scripts": {
143
139
  "clean": "rimraf ./dist && rimraf ./coverage",
144
140
  "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
- }