Skip to content
Open
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
6 changes: 5 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,11 @@
"type": "module",
"packageManager": "[email protected]",
"main": "lib/index.js",
"files": [
"lib/**",
"CHANGELOG.md",
"LICENSE"
],
"exports": {
".": "./lib/index.js",
"./*": "./lib/*.js"
Expand Down Expand Up @@ -58,7 +63,6 @@
]
},
"release": {
"publishDir": "lib",
Copy link
Contributor Author

@c0state c0state Jan 7, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The exports above included lib, so this mismatched. Instead, just publish from root, and use the files configuration (see right hand diff) to explicitly define what is included in the published package.

"conventionalCommits": true
},
"dependencies": {
Expand Down