Skip to content

Commit

Permalink
Add debug to package exports (#221)
Browse files Browse the repository at this point in the history
Fixes #209
  • Loading branch information
matthewp authored Nov 20, 2024
1 parent c5c2ebe commit cc17481
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 1 deletion.
5 changes: 5 additions & 0 deletions .changeset/famous-pandas-grab.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"robot3": patch
---

Add debug to package exports
6 changes: 5 additions & 1 deletion packages/core/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,14 @@
"exports": {
".": {
"require": "./dist/machine.js",
"types": "./index.d.ts",
"import": "./machine.js",
"default": "./machine.js",
"types": "./index.d.ts"
},
"./debug": {
"require": "./dist/debug.js",
"import": "./debug.js",
"default": "./debug.js"
}
},
"files": [
Expand Down

0 comments on commit cc17481

Please sign in to comment.