release: v1.0.13

This commit is contained in:
alex8088 2022-11-11 21:23:16 +08:00
parent baf538cfe4
commit 230d09c2a0
2 changed files with 11 additions and 2 deletions

View file

@ -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_) ### v1.0.12 (_2022-11-02_)
- feat: support monorepo (by @ianstormtaylor) - feat: support monorepo (by @ianstormtaylor)

View file

@ -1,6 +1,6 @@
{ {
"name": "electron-vite", "name": "electron-vite",
"version": "1.0.12", "version": "1.0.13",
"description": "Electron build tooling based on Vite", "description": "Electron build tooling based on Vite",
"main": "dist/index.js", "main": "dist/index.js",
"types": "dist/index.d.ts", "types": "dist/index.d.ts",
@ -13,7 +13,7 @@
"node.d.ts" "node.d.ts"
], ],
"engines": { "engines": {
"node": ">=12.2.0" "node": "^14.18.0 || >=16.0.0"
}, },
"author": "Alex Wei<https://github.com/alex8088>", "author": "Alex Wei<https://github.com/alex8088>",
"license": "MIT", "license": "MIT",