Skip to content

Commit

Permalink
fix(build): fix cjs extension in package.json entry point (#894)
Browse files Browse the repository at this point in the history
  • Loading branch information
dauriata authored Apr 13, 2024
1 parent c8c26cc commit 51e7184
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/oruga/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,15 +6,15 @@
"author": "Walter Tommasi <tommsi20@gmail.com>",
"license": "MIT",
"type": "module",
"main": "dist/cjs/index.js",
"main": "dist/cjs/index.cjs",
"module": "dist/esm/index.mjs",
"unpkg": "dist/oruga.js",
"typings": "dist/types/index.d.ts",
"exports": {
".": {
"types": "./dist/types/index.d.ts",
"import": "./dist/esm/index.mjs",
"require": "./dist/cjs/index.js"
"require": "./dist/cjs/index.cjs"
},
"./*": "./*",
"./volar": {
Expand Down

0 comments on commit 51e7184

Please sign in to comment.