Skip to content

Commit

Permalink
fix: correct browser entrypoints
Browse files Browse the repository at this point in the history
  • Loading branch information
chambo-e committed Oct 28, 2020
1 parent 9bbf2fa commit 2c0724d
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions packages/example_package/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@
"main": "dist/index.js",
"module": "dist/module.js",
"browser": {
"dist/index.js": "dist/index.browser.js",
"dist/module.js": "dist/module.browser.js"
"dist/index.js": "./dist/index.browser.js",
"dist/module.js": "./dist/module.browser.js"
},
"repository": {
"type": "git",
Expand Down
4 changes: 2 additions & 2 deletions packages/random-name/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@
"main": "dist/index.js",
"module": "dist/module.js",
"browser": {
"dist/index.js": "dist/index.browser.js",
"dist/module.js": "dist/module.browser.js"
"dist/index.js": "./dist/index.browser.js",
"dist/module.js": "./dist/module.browser.js"
},
"repository": {
"type": "git",
Expand Down

0 comments on commit 2c0724d

Please sign in to comment.