🚨 Latest Research:Tanstack npm Packages Compromised in Ongoing Mini Shai-Hulud Supply-Chain Attack.Learn More
Socket
Book a DemoSign in
Socket

@tanstack/solid-start

Package Overview
Dependencies
Maintainers
7
Versions
679
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@tanstack/solid-start - npm Package Compare versions

Comparing version
1.167.58
to
1.167.59
+4
-8
package.json
{
"name": "@tanstack/solid-start",
"version": "1.167.58",
"version": "1.167.59",
"description": "Modern and scalable routing for Solid applications",

@@ -112,10 +112,9 @@ "author": "Tanner Linsley",

"@tanstack/solid-start-client": "1.166.46",
"@tanstack/solid-start-server": "1.166.49",
"@tanstack/solid-start-server": "1.166.50",
"@tanstack/start-client-core": "1.168.1",
"@tanstack/start-plugin-core": "1.169.16",
"@tanstack/start-server-core": "1.167.28"
"@tanstack/start-plugin-core": "1.169.17",
"@tanstack/start-server-core": "1.167.29"
},
"devDependencies": {
"@rsbuild/core": "^2.0.1",
"@tanstack/intent": "^0.0.14",
"@types/node": ">=20",

@@ -138,5 +137,2 @@ "vite": "*",

},
"bin": {
"intent": "./bin/intent.js"
},
"scripts": {

@@ -143,0 +139,0 @@ "clean": "rimraf ./dist && rimraf ./coverage",

#!/usr/bin/env node
// Auto-generated by @tanstack/intent setup
// Exposes the intent end-user CLI for consumers of this library.
// Commit this file, then add to your package.json:
// "bin": { "intent": "./bin/intent.js" }
try {
await import('@tanstack/intent/intent-library')
} catch (e) {
const isModuleNotFound =
e?.code === 'ERR_MODULE_NOT_FOUND' || e?.code === 'MODULE_NOT_FOUND'
const missingIntentLibrary =
typeof e?.message === 'string' && e.message.includes('@tanstack/intent')
if (isModuleNotFound && missingIntentLibrary) {
console.error('@tanstack/intent is not installed.')
console.error('')
console.error('Install it as a dev dependency:')
console.error(' npm add -D @tanstack/intent')
console.error('')
console.error('Or run directly:')
console.error(' npx @tanstack/intent@latest list')
process.exit(1)
}
throw e
}