Skip to content

Commit

Permalink
fix(build): build for es modules after vite 5 (#657)
Browse files Browse the repository at this point in the history
  • Loading branch information
ehsan-github authored Jun 24, 2024
1 parent a78f1c7 commit 123caf4
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,17 +11,17 @@
"url": "https://github.com/logicalclocks/quartz.git"
},
"type": "module",
"main": "./dist/index.mjs",
"module": "./dist/index.mjs",
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"source": "src/index.ts",
"exports": {
".": {
"import": "./dist/index.mjs",
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
},
"./chakra": {
"import": "./dist/chakra.mjs",
"import": "./dist/chakra.js",
"types": "./dist/chakra.d.ts"
}
},
Expand Down

0 comments on commit 123caf4

Please sign in to comment.