Skip to content

Commit 64dae35

Browse files
author
xuhongbin
committedApr 28, 2022
feat(release): v2.2.0
1 parent 869037b commit 64dae35

File tree

4 files changed

+12
-3
lines changed

4 files changed

+12
-3
lines changed
 

‎CHANGELOG.md

+9
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,11 @@
1+
# 2.2.0
2+
## Features
3+
+ 切换到 `babel` 编译
4+
+ 设置 `moduleTransform.parser` 一键切换到 `swc`
5+
+ 设置 `build.minify``swc` 同时设置 `moduleTransform.parser``swc` 可以构建压缩同时使用 `swc`
6+
7+
## Bugfixes
8+
+ 修正 `esm` 模块共享失败问题
9+
110
# 2.0.8
211
+ 增加 `moduleTransform` 实现库再编译

‎docs/config/index.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -292,7 +292,7 @@ module.exports={
292292
`emp dts` 指令 同步基站 d.ts 目录
293293

294294
## 编译选项
295-
### moduleTransform.parser
295+
### moduleTransform.parser `v2.2.0`
296296
+ 类型 `babel` `swc` `esbuild [暂未提供使用]`
297297
+ 默认 `babel`
298298

‎packages/emp/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@efox/emp",
3-
"version": "2.2.0-beta.1",
3+
"version": "2.2.0",
44
"description": "",
55
"license": "MIT",
66
"files": [

‎packages/emp/src/webpack/production.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ class WPProduction {
7272
if (store.config.build.minify) {
7373
// const minify = store.config.build.minify === 'swc' ? TerserPlugin.swcMinify : TerserPlugin.terserMinify
7474
const minify =
75-
store.config.build.minify === 'swc' || store.config.moduleTransform.parser === 'swc'
75+
store.config.build.minify === 'swc' && store.config.moduleTransform.parser === 'swc'
7676
? TerserPlugin.swcMinify
7777
: TerserPlugin.terserMinify
7878
logger.debug('store.config.build.minify', store.config.build.minify, store.config.debug)

0 commit comments

Comments
 (0)
Please sign in to comment.