release: v1.0.13
This commit is contained in:
parent
baf538cfe4
commit
230d09c2a0
|
@ -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)
|
||||
|
|
|
@ -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<https://github.com/alex8088>",
|
||||
"license": "MIT",
|
||||
|
|
Loading…
Reference in a new issue