Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions .changeset/remove-bun-export-condition.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
---
"@rolexjs/core": patch
---

Remove "bun" export condition from all packages

The "bun" condition in exports pointed to ./src/index.ts which is not included in published npm packages, causing "Cannot find package" errors when consumed by bun runtime. All environments now use the compiled dist/ output.
1 change: 0 additions & 1 deletion packages/core/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,6 @@
"exports": {
".": {
"types": "./dist/index.d.ts",
"bun": "./src/index.ts",
"default": "./dist/index.js"
}
},
Expand Down
1 change: 0 additions & 1 deletion packages/local-platform/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@
"exports": {
".": {
"types": "./dist/index.d.ts",
"bun": "./src/index.ts",
"default": "./dist/index.js"
}
},
Expand Down
1 change: 0 additions & 1 deletion packages/parser/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,6 @@
"exports": {
".": {
"types": "./dist/index.d.ts",
"bun": "./src/index.ts",
"default": "./dist/index.js"
}
},
Expand Down
1 change: 0 additions & 1 deletion packages/prototype/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,6 @@
"exports": {
".": {
"types": "./dist/index.d.ts",
"bun": "./src/index.ts",
"default": "./dist/index.js"
}
},
Expand Down
1 change: 0 additions & 1 deletion packages/rolexjs/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,6 @@
"exports": {
".": {
"types": "./dist/index.d.ts",
"bun": "./src/index.ts",
"default": "./dist/index.js"
}
},
Expand Down
1 change: 0 additions & 1 deletion packages/system/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,6 @@
"exports": {
".": {
"types": "./dist/index.d.ts",
"bun": "./src/index.ts",
"default": "./dist/index.js"
}
},
Expand Down