Skip to content

Commit

Permalink
fix: commonjs extentions in package.json
Browse files Browse the repository at this point in the history
  • Loading branch information
kshutkin committed Dec 2, 2021
1 parent 46af67d commit 6fcc8ba
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions draftlog-appender/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,19 +9,19 @@
"type": "module",
"exports": {
".": {
"require": "./dist/index.cjs",
"require": "./dist/index.js",
"default": "./dist/index.mjs"
},
"./core": {
"require": "./dist/core.cjs",
"require": "./dist/core.js",
"default": "./dist/core.mjs"
},
"./spinners": {
"require": "./spinners/dist/spinners.cjs",
"require": "./spinners/dist/spinners.js",
"default": "./spinners/dist/spinners.mjs"
}
},
"main": "./dist/index.cjs",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"typings": "./dist/index.d.ts",
"files": [
Expand Down

0 comments on commit 6fcc8ba

Please sign in to comment.