Skip to content

Commit bbe1630

Browse files
fix(deps): bump @stacksjs/bun-router to ^0.0.16 (0.0.14 shipped no dist)
The API server (server/index.ts -> src/router.ts) failed to start with "Cannot find module '@stacksjs/bun-router'". Root cause: the published @stacksjs/bun-router@0.0.14 tarball is missing its dist/ directory (its files field claims ["README.md","dist"] but dist was never published), so the exports target ./dist/index.js doesn't exist. The caret range ^0.0.14 locks to 0.0.14 (caret pins the patch for 0.0.x), so install never moved off the broken version. 0.0.15 and 0.0.16 ship dist correctly (verified against the npm tarballs). Bump to ^0.0.16; the API server now boots ("API running at http://localhost:3001") and `import { Router }` resolves. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
1 parent dfc7379 commit bbe1630

2 files changed

Lines changed: 5 additions & 3 deletions

File tree

bun.lock

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

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@
6565
},
6666
"dependencies": {
6767
"@cwcss/crosswind": "^0.2.4",
68-
"@stacksjs/bun-router": "^0.0.14",
68+
"@stacksjs/bun-router": "^0.0.16",
6969
"@stacksjs/components": "^0.2.67",
7070
"@stacksjs/stx": "^0.2.70",
7171
"bun-plugin-stx": "^0.2.70",

0 commit comments

Comments
 (0)