Skip to content

Commit

Permalink
fix: correct exports (#122)
Browse files Browse the repository at this point in the history
  • Loading branch information
JSerFeng authored Sep 11, 2023
1 parent 3979805 commit 96afcec
Show file tree
Hide file tree
Showing 9 changed files with 20 additions and 10 deletions.
10 changes: 10 additions & 0 deletions .changeset/smart-zoos-flash.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
---
'@modern-js-reduck/plugin-auto-actions': patch
'@modern-js-reduck/plugin-devtools': patch
'@modern-js-reduck/plugin-effects': patch
'@modern-js-reduck/plugin-immutable': patch
'@modern-js-reduck/react': patch
'@modern-js-reduck/store': patch
---

fix: correct exports
2 changes: 1 addition & 1 deletion packages/plugins/auto-actions/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
"exports": {
".": {
"types": "./dist/types/index.d.ts",
"node": "./dist/cjs/index.js",
"require": "./dist/cjs/index.js",
"default": "./dist/esm/index.js"
}
},
Expand Down
2 changes: 1 addition & 1 deletion packages/plugins/devtools/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
"exports": {
".": {
"types": "./dist/types/index.d.ts",
"node": "./dist/cjs/index.js",
"require": "./dist/cjs/index.js",
"default": "./dist/esm/index.js"
}
},
Expand Down
2 changes: 1 addition & 1 deletion packages/plugins/effects/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
"exports": {
".": {
"types": "./dist/types/index.d.ts",
"node": "./dist/cjs/index.js",
"require": "./dist/cjs/index.js",
"default": "./dist/esm/index.js"
}
},
Expand Down
2 changes: 1 addition & 1 deletion packages/plugins/immer/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
"exports": {
".": {
"types": "./dist/types/index.d.ts",
"node": "./dist/cjs/index.js",
"require": "./dist/cjs/index.js",
"default": "./dist/esm/index.js"
}
},
Expand Down
2 changes: 1 addition & 1 deletion packages/plugins/xstate-immer/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
"exports": {
".": {
"types": "./dist/types/index.d.ts",
"node": "./dist/cjs/index.js",
"require": "./dist/cjs/index.js",
"default": "./dist/esm/index.js"
}
},
Expand Down
2 changes: 1 addition & 1 deletion packages/plugins/xstate/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
"exports": {
".": {
"types": "./dist/types/index.d.ts",
"node": "./dist/cjs/index.js",
"require": "./dist/cjs/index.js",
"default": "./dist/esm/index.js"
}
},
Expand Down
2 changes: 1 addition & 1 deletion packages/react/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
"exports": {
".": {
"types": "./type.d.ts",
"node": "./dist/cjs/index.js",
"require": "./dist/cjs/index.js",
"default": "./dist/esm/index.js"
}
},
Expand Down
6 changes: 3 additions & 3 deletions packages/store/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,17 +26,17 @@
"exports": {
".": {
"types": "./dist/types/index.d.ts",
"node": "./dist/cjs/index.js",
"require": "./dist/cjs/index.js",
"default": "./dist/esm/index.js"
},
"./types": {
"types": "./dist/types/types/index.d.ts",
"node": "./dist/cjs/types/index.js",
"require": "./dist/cjs/types/index.js",
"default": "./dist/esm/types/index.js"
},
"./utils": {
"types": "./dist/types/utils/index.d.ts",
"node": "./dist/cjs/utils/index.js",
"require": "./dist/cjs/utils/index.js",
"default": "./dist/esm/utils/index.js"
}
},
Expand Down

0 comments on commit 96afcec

Please sign in to comment.