webpack.base.config.js
4.51 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
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
144
145
146
147
148
149
150
151
152
const path = require('path');
const ExtractTextPlugin = require('extract-text-webpack-plugin');
const webpack = require('webpack');
const shelljs = require('shelljs');
const _ = require('lodash');
const HappyPack = require('happypack');
const os = require('os');
const happyThreadPool = HappyPack.ThreadPool({ // eslint-disable-line
size: os.cpus().length
});
const hbsLoader = {
loader: 'handlebars-loader',
options: {
helperDirs: [
path.join(__dirname, '../js/common/helpers')
],
partialDirs: [
path.join(__dirname, '../../doraemon/views/partial')
]
}
};
const getEntries = () => {
const entries = {
libs: [
'babel-polyfill',
'jquery',
'yoho-qs',
'yoho-cookie',
'yoho-store',
'vue',
'vue-lazyload',
'vue-swipe',
'vue-infinite-scroll',
'vue-touch',
'fastclick',
path.join(__dirname, '../js/global.js'),
path.join(__dirname, '../js/index.js')
],
index: path.join(__dirname, '../scss/index.css')
};
// 老的生成规则module.page.js
shelljs.ls(path.join(__dirname, '../js/**/*.page.js')).forEach((f) => {
const dir = _.slice(f.split('/'), -2); // [modulename, xx.page.js]
// 生成规则:module.page: './js/module/xx.page.js'
entries[`${dir[0]}.${dir[1].match(/(.*).page.js/)[1]}`] = path.join(__dirname, `../js/${dir.join('/')}`);
});
return entries;
};
module.exports = {
entry: getEntries(),
output: {
filename: '[name].js',
chunkFilename: '[name].js'
},
module: {
rules: [{
test: /\.vue$/,
loader: 'vue-loader',
options: {
loaders: {
css: ExtractTextPlugin.extract({
use: [
{ loader: 'css-loader', options: { url: false, sourceMap: false} },
{
loader: 'postcss-loader',
options: {
sourceMap: true,
config: {
path: path.join(__dirname, './postcss.config.js')
}
}
}
],
fallback: 'vue-style-loader'
})
}
}
}, {
test: /\.js$/,
exclude: /(node_modules|bower_components)/,
use: {
loader: 'happypack/loader?id=js'
}
}, {
test: /\.css$/,
use: ExtractTextPlugin.extract({
fallback: 'style-loader',
use: [
{ loader: 'css-loader', options: { url: false, sourceMap: false} },
{
loader: 'postcss-loader',
options: {
sourceMap: true,
config: {
path: path.join(__dirname, './postcss.config.js')
}
}
}
]
})
}, {
test: /\.(png|jpe?g|gif|svg)(\?.*)?$/,
use: ['file-loader?name=img/[hash].[ext]']
}, {
test: /\.hbs$/,
use: [{
loader: 'happypack/loader?id=hbs'
}]
}]
},
plugins: [
new HappyPack({
id: 'js',
threadPool: happyThreadPool,
loaders: ['babel-loader'],
}),
new HappyPack({
id: 'hbs',
threadPool: happyThreadPool,
loaders: [hbsLoader]
}),
new ExtractTextPlugin('[name].css'),
new webpack.optimize.CommonsChunkPlugin({
names: 'libs'
}),
new webpack.ProvidePlugin({
$: 'jquery',
jQuery: 'jquery',
'window.jQuery': 'jquery'
})
],
resolve: {
alias: {
vue$: 'vue/dist/vue.esm.js',
},
extensions: ['.js', '.json', '.css', '.scss', 'vue'],
modules: [
path.join(__dirname, '../../node_modules'),
path.join(__dirname, '../vue'),
path.join(__dirname, '../hbs'),
path.join(__dirname, '../scss'),
path.join(__dirname, '../js'),
],
}
};