forked from zhaofanjack/jasvan-api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwebpack.config.js
91 lines (87 loc) · 2.2 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
var path = require('path');
var webpack = require('webpack');
var glob = require('glob');
var CleanWebpackPlugin = require('clean-webpack-plugin');
var CopyWebpackPlugin = require('copy-webpack-plugin');
var entries = getMultiEntry('./src/**/**/*.js');
var chunks = Object.keys(entries);
module.exports = {
entry: entries,
output: {
path: path.resolve(__dirname, './lib'),
// publicPath: './lib/',
filename: '[name].js',
libraryTarget: 'umd'
},
module: {
rules: [
{
test: /\.js$/,
loader: 'babel-loader',
include: [path.resolve(__dirname, './src')]
},
{
test: /\.css$/,
loader: 'style-loader!css-loader'
},
{
test: /\.(eot|svg|ttf|woff|woff2)$/,
loader: 'file-loader'
},
{
test: /\.(png|jpg|gif|svg)$/,
loader: 'file-loader',
options: {
name: '[name].[ext]?[hash]'
}
}
]
},
plugins: [
new CleanWebpackPlugin(['lib']),
// new webpack.optimize.CommonsChunkPlugin({
// name: 'index',
// chunks: chunks,
// minChunks: chunks.length || 3
// }),
new CopyWebpackPlugin([{
from: path.resolve(__dirname, './src'),
to: path.resolve(__dirname, './lib'),
ignore: ['*.js'],
force: true
}])
],
resolve: {
modules: [path.resolve(__dirname, "..")],
extensions: ['.js', '.json']
},
resolveLoader: {
modules: [path.resolve(__dirname, "..")]
}
}
if (process.env.NODE_ENV === 'production') {
// module.exports.devtool = 'cheap-module-source-map';
module.exports.plugins = (module.exports.plugins || []).concat([
new webpack.DefinePlugin({
'process.env': {
NODE_ENV: '"production"'
}
}),
new webpack.optimize.UglifyJsPlugin({
// sourceMap: true,
compress: {
warnings: false
}
})
]);
} else if (process.env.NODE_ENV === 'dev') {
module.exports.devtool = 'cheap-module-eval-source-map';
}
function getMultiEntry (globPath) {
var entries = {};
glob.sync(globPath).forEach(function (entry) {
var pathname = entry.substring(entry.indexOf('/src/') + 5, entry.lastIndexOf('.'));
entries[pathname] = entry;
});
return entries;
}