Skip to content

Commit

Permalink
fix(package): Corrects microbundle setup to fix #648 (#650)
Browse files Browse the repository at this point in the history
  • Loading branch information
ryasmi authored Mar 21, 2022
1 parent b5f10ed commit 65d6b0c
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,11 @@
"url": "https://github.com/ryansmith94/rulr.git"
},
"source": "src/rulr.ts",
"main": "dist/rulr.js",
"exports": "./dist/rulr.modern.js",
"exports": {
"require": "./dist/rulr.cjs",
"default": "./dist/rulr.modern.js"
},
"main": "dist/rulr.cjs",
"module": "dist/rulr.module.js",
"unpkg": "dist/rulr.umd.js",
"typings": "dist/rulr.d.ts",
Expand Down

0 comments on commit 65d6b0c

Please sign in to comment.