forked from apache/incubator-weex-ui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
webpack.config.js
143 lines (129 loc) · 3.03 KB
/
webpack.config.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
/**
* CopyRight (C) 2017-2022 Alibaba Group Holding Limited.
* Created by Tw93 on 2017-7-18.
*/
const path = require('path');
const pkg = require('./package.json');
const webpack = require('webpack');
const glob = require('glob');
const CopyWebpackPlugin = require('copy-webpack-plugin');
const CleanWebpackPlugin = require('clean-webpack-plugin');
console.log('Building..., Please wait a moment.');
const getEntry = dir => {
const foundScripts = glob.sync(`${dir}/*/index.js`, {});
// 生成 entry 映射表
const ret = {};
foundScripts.forEach(function (scriptPath) {
if (!/\.entry\.js$/.test(scriptPath)) {
ret[scriptPath.replace(/^(.*)\.js$/, '$1')] = './' + scriptPath;
}
});
return ret;
};
const getCopyConfig = () => {
const foundScripts = glob.sync('example/*/', {});
const ret = [];
foundScripts.forEach(function (scriptPath) {
if (!/(_mods|_public)/.test(scriptPath)) {
ret.push({
from: 'example/_public/index.html',
to: scriptPath + 'index.html'
})
}
});
return ret;
};
const example = getEntry('example');
const entry = Object.assign({
'index': './index.js'
}, example);
const plugins = [
new CleanWebpackPlugin(['build'], {
verbose: true
}),
new webpack.DefinePlugin({
'process.env': {
NODE_ENV: JSON.stringify('production')
},
'global': '{}'
}),
new webpack.BannerPlugin({
banner: '// { "framework": "Vue" }\n',
raw: true
}),
new CopyWebpackPlugin(getCopyConfig(), { copyUnmodified: true })
];
const needClean = process.argv.indexOf('--watch') > -1;
needClean && plugins.shift();
const getBaseConfig = () => ({
devtool: '#source-map',
entry,
context: __dirname,
output: {
path: path.join(__dirname, 'build'),
publicPath: '/',
filename: '[name].js',
libraryTarget: 'umd',
library: `npm/${pkg.name}/[name]`,
umdNamedDefine: false
},
stats: {
colors: true,
modules: false,
reasons: false
},
module: {
rules: [{
test: /\.js$/,
use: {
loader: 'babel-loader',
options: {
cacheDirectory: true,
}
}
}, {
test: /\.vue(\?[^?]+)?$/,
use: []
}]
},
plugins,
resolve: {
extensions: ['.js'],
modules: [
'node_modules'
]
}
});
const webCfg = getBaseConfig();
webCfg.output.filename = '[name].web.js';
webCfg.module.rules[1].use.push({
loader: 'vue-loader',
options: {
optimizeSSR: false,
postcss: [
require('postcss-plugin-weex')(),
require('autoprefixer')({
browsers: ['> 0.1%', 'ios >= 8', 'not ie < 12']
}),
require('postcss-plugin-px2rem')({
rootValue: 75,
minPixelValue: 1.01
})
],
compilerModules: [
{
postTransformNode: el => {
require('weex-vue-precompiler')()(el)
}
}
]
}
});
const nativeCfg = getBaseConfig();
nativeCfg.output.filename = '[name].native.js';
nativeCfg.module.rules[1].use.push('weex-loader');
const exportConfig = [
webCfg,
nativeCfg
];
module.exports = exportConfig;