forked from markshapiro/webpack-merge-and-include-globally
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwebpack.config.js
executable file
·78 lines (68 loc) · 1.79 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
const MergeIntoSingle = require('./index.node6-compatible.js');
// const MergeIntoSingle = require('./index.js');
const webpack = require('webpack');
const path = require('path');
const uglifyJS = require("uglify-js");
const CleanCSS = require('clean-css');
// Webpack Config
const webpackConfig = {
entry: ['./example/main.js'],
devtool: 'cheap-module-source-map',
output: {
filename:'bundle.js',
path: './dist',
},
resolve: {
extensions: ['', '.js', '.css']
},
plugins: [
new MergeIntoSingle({
files: [{
src:[
'node_modules/jquery/**/*.min.js',
'node_modules/classnames/index.js',
'node_modules/humps/humps.js'
],
dest: code => {
const min = uglifyJS.minify(code, {sourceMap: {
filename: 'vendor.js',
url: 'vendor.js.map'
}});
return {
'vendor.js':min.code,
'vendor.js.map': min.map,
}
},
},{
src: ['example/test.css'],
dest: code => ({
'style.css':new CleanCSS({}).minify(code).styles,
})
}],
//also possible:
// files:{
// 'vendor.js':[
// 'node_modules/jquery/**/*.min.js',
// 'node_modules/classnames/index.js',
// 'node_modules/humps/humps.js',
// ],
// 'style.css':[
// 'example/test.css',
// ]
// },
// transform:{
// 'vendor.js': code => uglifyJS.minify(code).code,
// 'style.css': code => new CleanCSS({}).minify(code).styles,
// },
hash: false,
}, filesMap =>{
console.log("generated files: ",filesMap)
}),
],
module: {
loaders: [
{ test: /\.html$/, loader: 'raw-loader' },
]
}
};
module.exports = webpackConfig;