Skip to content

Commit c6774c7

Browse files
piehmrstork
andauthored
fix: set proper peer dependencies (#458)
* fix: set proper peer dependencies * chore: run npm install * update test fixture --------- Co-authored-by: Mateusz Bocian <[email protected]>
1 parent 146946c commit c6774c7

File tree

15 files changed

+478
-155
lines changed

15 files changed

+478
-155
lines changed

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

packages/vite-plugin-tanstack-start/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,8 +49,8 @@
4949
"@netlify/vite-plugin": "^2.6.0"
5050
},
5151
"peerDependencies": {
52-
"@tanstack/react-start": "alpha",
53-
"@tanstack/solid-start": "alpha",
52+
"@tanstack/react-start": ">=1.132.0",
53+
"@tanstack/solid-start": ">=1.132.0",
5454
"vite": ">=7.0.0"
5555
},
5656
"peerDependenciesMeta": {

packages/vite-plugin-tanstack-start/test/fixtures/start-basic-alpha/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,9 @@
99
"start": "node .output/server/index.mjs"
1010
},
1111
"dependencies": {
12-
"@tanstack/react-router": "^1.132.0-alpha.21",
13-
"@tanstack/react-router-devtools": "^1.132.0-alpha.21",
14-
"@tanstack/react-start": "^1.132.0-alpha.22",
12+
"@tanstack/react-router": "^1.132.2",
13+
"@tanstack/react-router-devtools": "^1.132.2",
14+
"@tanstack/react-start": "^1.132.2",
1515
"react": "^19.0.0",
1616
"react-dom": "^19.0.0",
1717
"tailwind-merge": "^2.6.0",
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
export class Foo {
2+
constructor(private value: string) {}
3+
bar() {
4+
return this.value
5+
}
6+
}

0 commit comments

Comments
 (0)