Skip to content

Commit ec1ccb7

Browse files
committed
log: v0.14.0
1 parent 98c4d27 commit ec1ccb7

File tree

1 file changed

+31
-0
lines changed

1 file changed

+31
-0
lines changed

CHANGELOG.md

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,36 @@
11
## 0.13.14 (2023-03-31)
22

3+
#### Break!
4+
5+
```diff
6+
export interface RendererOptions {
7+
resolve?: {
8+
- [id: string]: (() => string | { platform: 'browser' | 'node' } | Promise<string | { platform: 'browser' | 'node' }>)
9+
+ [module: string]: {
10+
+ type: 'cjs' | 'esm',
11+
+ build?: (args: {
12+
+ cjs: (module: string) => Promise<string>,
13+
+ esm: (module: string, buildOptions?: import('esbuild').BuildOptions) => Promise<string>,
14+
+ }) => Promise<string>
15+
+ }
16+
}
17+
}
18+
```
19+
20+
#### Main Changed
21+
22+
1. on-demand pre-bundle builtin, third-part C/C++, `esm` modules
23+
2. support full custom pre-bundle
24+
25+
- 98c4d27 docs: v0.14.0
26+
- af6bb2b chore(examples): update quick-start
27+
- 110c854 chore: better build script
28+
- cd1b5bb chore: remove `.npmrc`
29+
- b8038f5 refactor(v0.14.0): better `options.resolve`
30+
- 7c5afae refactor(v0.14.0): on-demand pre-bundle
31+
32+
## 0.13.14 (2023-03-31)
33+
334
- c68d26a fix: move cjs config to cjs-shim.ts #107 | [electron-vite-vue/issues/107](https://github.com/electron-vite/electron-vite-vue/issues/107)
435

536
## 0.13.13 (2023-03-29)

0 commit comments

Comments
 (0)