Skip to content

Commit

Permalink
fix(exports): use default as esm export to support new bundlers and j…
Browse files Browse the repository at this point in the history
…spm.dev
  • Loading branch information
sastan committed Jun 23, 2020
1 parent a8472e4 commit fbf0969
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 @@ -29,9 +29,9 @@
"exports": {
"./package.json": "./package.json",
".": {
"import": "./dist/esm/html.js",
"require": "./dist/cjs/html.js",
"umd": "./dist/umd/html.js"
"umd": "./dist/umd/html.js",
"default": "./dist/esm/html.js"
}
},
"module": "./dist/esm/html.js",
Expand Down

0 comments on commit fbf0969

Please sign in to comment.