Skip to content

Commit

Permalink
chore: move to explicit .cjs extensions
Browse files Browse the repository at this point in the history
  • Loading branch information
danielroe committed Nov 5, 2021
1 parent 21233f4 commit 79a4f26
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,15 +21,15 @@
"exports": {
".": {
"import": "./dist/runtime/index.mjs",
"require": "./dist/runtime/index.js"
"require": "./dist/runtime/index.cjs"
},
"./module": "./dist/module/index.js",
"./module": "./dist/module/index.cjs",
"./package.json": "./package.json",
"./dist/babel-plugin": "./dist/babel-plugin/index.js",
"./dist/runtime/globals": "./dist/runtime/globals.js",
"./dist/babel-plugin": "./dist/babel-plugin/index.cjs",
"./dist/runtime/globals": "./dist/runtime/globals.cjs",
"./dist/runtime/templates/*": "./dist/runtime/templates/*"
},
"main": "./dist/runtime/index.js",
"main": "./dist/runtime/index.cjs",
"module": "./dist/runtime/index.mjs",
"types": "./dist/runtime/index.d.ts",
"files": [
Expand Down

0 comments on commit 79a4f26

Please sign in to comment.