Skip to content

Commit

Permalink
Merge pull request #706 from catrielmuller/catrielmuller/fix-webpack5…
Browse files Browse the repository at this point in the history
…-support

Webpack 5 Relative Import Support
  • Loading branch information
pubkey authored Aug 3, 2021
2 parents 861f871 + 6402060 commit 6df2f66
Showing 1 changed file with 9 additions and 7 deletions.
16 changes: 9 additions & 7 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,15 @@
"version": "4.1.0",
"description": "A BroadcastChannel that works in New Browsers, Old Browsers, WebWorkers and NodeJs",
"exports": {
"node": {
"import": "./dist/esnode/index.js",
"default": "./dist/es5node/index.js"
},
"browser": {
"import": "./dist/esbrowser/index.js",
"default": "./dist/lib/index.es5.js"
".": {
"node": {
"import": "./dist/esnode/index.js",
"default": "./dist/es5node/index.js"
},
"browser": {
"import": "./dist/esbrowser/index.js",
"default": "./dist/lib/index.es5.js"
}
},
"./package.json": "./package.json"
},
Expand Down

0 comments on commit 6df2f66

Please sign in to comment.