Skip to content

Commit a42b7e4

Browse files
authored
Merge pull request #232 from wechat-miniprogram/feat-skyline-524
Feat skyline 524
2 parents 5479f1e + 9a05455 commit a42b7e4

File tree

134 files changed

+5027
-7125
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

134 files changed

+5027
-7125
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
# 更新日志
22

3+
## 1.2.11
4+
5+
- feat: skyline 兼容
6+
- feat: 升级 `weui-wxss` 至 2.6.6
7+
38
## 1.2.10
49

510
- fix: half-screen-dialog 恢复滚动

miniprogram_dist.zip

137 KB
Binary file not shown.

mpflow.config.js

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,24 @@
1+
const TerserWebpackPlugin = require("terser-webpack-plugin");
2+
13
module.exports = {
2-
appId: 'wx69718f08e51eebf9',
4+
appId: 'wxe5f52902cf4de896',
35
projectName: '小程序自定义组件',
46
app: (mode) => (mode !== 'production' ? 'src/app' : undefined),
57
pages: (mode) => (mode !== 'production' ? undefined : ['src/components/index']),
68
sourceMap: (mode) => mode !== 'production',
79
compileType: 'miniprogram',
810
outputDir: 'miniprogram_dist',
911
plugins: ['@mpflow/plugin-babel', '@mpflow/plugin-typescript', '@mpflow/plugin-css'],
12+
minimize: false,
13+
configureWebpackChain: config => {
14+
config.plugin('terser').use(TerserWebpackPlugin, [{
15+
terserOptions: {
16+
compress: {
17+
directives: false
18+
}
19+
}
20+
}])
21+
},
1022
settings: {
1123
urlCheck: true,
1224
es6: false,

0 commit comments

Comments
 (0)