webpack.config.js
2.26 KB
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
const webpack = require('webpack');
const path = require('path');
const _ = require('lodash');
const shelljs = require('shelljs');
const ExtractTextPlugin = require('extract-text-webpack-plugin');
let extractCSS = new ExtractTextPlugin('css/[name].css');
const entries = {};
const __DEV__ = process.env.NODE_ENV === 'dev',
__TEST__ = process.env.NODE_ENV === 'test',
__BUILD__ = process.env.NODE_ENV === 'build';
// 构建各模块子页面JS。生成规则module.page.js
shelljs.ls(path.join(__dirname, 'js/*.page.js')).forEach((f) => {
const dir = _.slice(f.split('/'), -2); // [modulename, xx.page.js]
// Important
// 生成规则:module.page: './js/module/xx.page.js'
entries[`${dir[1].match(/(.*).page.js/)[1]}`] = `./${dir.join('/')}`;
entries.libs = [
'yoho-jquery'
];
});
let plugins = [
extractCSS,
new ExtractTextPlugin('[name].css'),
// new webpack.optimize.OccurenceOrderPlugin(),
new webpack.optimize.CommonsChunkPlugin({
name: 'libs',
filename: 'js/libs.js'
}),
new webpack.ProvidePlugin({
$: 'yoho-jquery',
jQuery: 'yoho-jquery',
'window.jQuery': 'yoho-jquery'
})
];
if (!__DEV__) {
plugins.push(new webpack.optimize.UglifyJsPlugin({
compress: {
warnings: false
}
}));
}
module.exports = {
entry: entries,
output: {
path: path.join(__dirname, 'bundle'), // absolute path
filename: 'js/[name].js'
},
module: {
rules: [{
test: /\.js$/,
exclude: [/node_modules/],
use: [{
loader: 'babel-loader'
}]
}, {
test: /\.scss$/i,
use: extractCSS.extract([ 'css-loader', 'sass-loader', 'autoprefixer-loader?{browsers:["last 2 version", "> 1%"]}' ])
},
{
test: /\.html$/,
use: 'html-loader'
},
{
test: /\.(png|jpg|gif)$/,
use: 'url-loader?limit=1024,name=/img/[name].[ext]'
}]
},
resolve: {
modules: ['node_modules', './sass', './js'],
alias: {
js: path.join(__dirname, 'js/'),
jquery: 'yoho-jquery'
}
},
plugins: plugins
};