diff --git a/CHANGELOG.md b/CHANGELOG.md index 1a04f0f..d4a2773 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,12 @@ +### v1.0.13 (_2022-11-11_) + +- feat: support for node worker +- refactor: plugins +- fix(swcPlugin): unreachable code +- fix(bytecodePlugin): bytecode loader injection and chunk module parsing errors [#49](https://github.com/alex8088/electron-vite/issues/49) +- fix: incorrect replace __dirname/__filename in config file +- fix: output format error under multiple entries + ### v1.0.12 (_2022-11-02_) - feat: support monorepo (by @ianstormtaylor) diff --git a/package.json b/package.json index 850b8b1..c5b08e8 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "electron-vite", - "version": "1.0.12", + "version": "1.0.13", "description": "Electron build tooling based on Vite", "main": "dist/index.js", "types": "dist/index.d.ts", @@ -13,7 +13,7 @@ "node.d.ts" ], "engines": { - "node": ">=12.2.0" + "node": "^14.18.0 || >=16.0.0" }, "author": "Alex Wei", "license": "MIT",