Skip to content

Commit

Permalink
fix: bundle fix for CommonJS
Browse files Browse the repository at this point in the history
  • Loading branch information
KiraLT committed Oct 20, 2023
1 parent cacad88 commit d9f81b0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
"type": "module",
"types": "./dist/index.d.ts",
"source": "src/index.ts",
"main": "./dist/common-stuff.js",
"main": "./dist/common-stuff.cjs",
"module": "./dist/common-stuff.module.js",
"umd:main": "./dist/common-stuff.umd.js",
"unpkg": "./dist/common-stuff.umd.js",
Expand All @@ -32,7 +32,7 @@
"browser": "./dist/common-stuff.module.js",
"umd": "./dist/common-stuff.umd.js",
"import": "./dist/common-stuff.mjs",
"require": "./dist/common-stuff.js"
"require": "./dist/common-stuff.cjs"
},
"scripts": {
"test": "jest spec",
Expand Down

0 comments on commit d9f81b0

Please sign in to comment.