forked from bfabiszewski/ulogger-server
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwebpack.common.js
46 lines (45 loc) · 1.41 KB
/
webpack.common.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
const path = require('path');
const { CleanWebpackPlugin } = require('clean-webpack-plugin');
const CopyWebpackPlugin = require('copy-webpack-plugin');
const csso = require('csso');
const fs = require('fs');
const cssDist = path.resolve(__dirname, 'css/dist');
const cssTransform = (content, filename) => {
const basename = path.basename(filename);
const result = csso.minify(content.toString(), {
filename: basename,
sourceMap: true
});
fs.writeFile(`css/dist/${basename}.map`, result.map.toString(), (err) => { if (err) { throw err; }});
return `${result.css}\n/*# sourceMappingURL=${basename}.map */`;
}
module.exports = {
entry: './js/src/ulogger.js',
output: {
filename: 'bundle.js',
path: path.resolve(__dirname, 'js/dist'),
publicPath: 'js/dist/'
},
plugins: [
new CleanWebpackPlugin({
cleanOnceBeforeBuildPatterns: [ '**/*', '!.*' ]
}),
new CopyWebpackPlugin({
patterns: [
{ from: 'css/src/*.css', to: cssDist, flatten: true, transform: cssTransform },
{ from: 'node_modules/ol/ol.css', to: cssDist, flatten: true, transform: cssTransform },
{ from: 'node_modules/chartist/dist/chartist.css', to: cssDist, flatten: true, transform: cssTransform }
]
})
],
optimization: {
splitChunks: {
cacheGroups: {
vendors: {
test: /[\\/]node_modules[\\/]|[\\/]ol.js/,
name: 'ol'
}
}
}
}
};