Skip to content

Commit

Permalink
Fix: export map and sideEffects (#464)
Browse files Browse the repository at this point in the history
  • Loading branch information
timfish authored Apr 11, 2022
1 parent ef1839a commit d035052
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

## 3.0.7

- fix: export map and sideEffects
- fix: Don't capture window titles by default (#463)
- fix: Don't throw on HTTP errors (#458)
- fix: Throw error if main process code is loaded in renderer (#457)
Expand Down
7 changes: 3 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,17 +9,17 @@
".": {
"node": {
"require": "./index.js",
"module": "./esm/main/index.js"
"import": "./esm/main/index.js"
},
"default": "./esm/renderer/index.js"
},
"./main": {
"require": "./main/index.js",
"module": "./esm/main/index.js"
"import": "./esm/main/index.js"
},
"./renderer": {
"require": "./renderer/index.js",
"module": "./esm/renderer/index.js"
"import": "./esm/renderer/index.js"
},
"./preload": "./preload/index.js"
},
Expand Down Expand Up @@ -102,7 +102,6 @@
"xvfb-maybe": "^0.2.1",
"yaml": "^1.10.2"
},
"sideEffects": false,
"volta": {
"node": "16.14.0",
"yarn": "1.22.17"
Expand Down

0 comments on commit d035052

Please sign in to comment.