Skip to content

Commit e3ed2db

Browse files
add changeset, add build tests
1 parent bb7a329 commit e3ed2db

4 files changed

Lines changed: 10 additions & 3 deletions

File tree

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
---
2+
'@tanstack/react-start': patch
3+
'@tanstack/solid-start': patch
4+
'@tanstack/vue-start': patch
5+
---
6+
7+
Fix the `server-entry` package export types path so published packages include the expected declaration files, and add build-time package validation to catch similar export issues during CI.

packages/react-start/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
"scripts": {
2727
"clean": "rimraf ./dist && rimraf ./coverage",
2828
"test": "pnpm test:build",
29-
"test:build": "exit 0; vitest",
29+
"test:build": "publint --strict && attw --ignore-rules no-resolution --pack .",
3030
"build": "vite build && vite build -c vite.config.server-entry.ts"
3131
},
3232
"type": "module",

packages/solid-start/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
"scripts": {
2727
"clean": "rimraf ./dist && rimraf ./coverage",
2828
"test": "pnpm test:build",
29-
"test:build": "exit 0; vitest",
29+
"test:build": "publint --strict && attw --ignore-rules no-resolution --pack .",
3030
"build": "vite build && vite build -c vite.config.server-entry.ts"
3131
},
3232
"type": "module",

packages/vue-start/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
"scripts": {
2727
"clean": "rimraf ./dist && rimraf ./coverage",
2828
"test": "pnpm test:build",
29-
"test:build": "exit 0; vitest",
29+
"test:build": "publint --strict && attw --ignore-rules no-resolution --pack .",
3030
"build": "vite build && vite build -c vite.config.server-entry.ts"
3131
},
3232
"type": "module",

0 commit comments

Comments
 (0)