forked from FrankerFaceZ/FrankerFaceZ
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwebpack.web.prod.js
69 lines (60 loc) · 1.6 KB
/
webpack.web.prod.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
const merge = require('webpack-merge');
const common = require('./webpack.web.common.js');
const CopyPlugin = require('copy-webpack-plugin');
const UglifyJSPlugin = require('uglifyjs-webpack-plugin');
const ManifestPlugin = require('webpack-manifest-plugin');
const uglify = require('uglify-es');
const config = module.exports = merge(common, {
devtool: 'source-map',
plugins: [
new UglifyJSPlugin({
sourceMap: true,
uglifyOptions: {
compress: {
keep_fnames: true,
keep_classnames: true
},
mangle: {
keep_classnames: true,
keep_fnames: true
}
}
}),
new CopyPlugin([
{
from: './src/entry.js',
to: 'script.min.js',
transform: (content) => {
const text = content.toString('utf8');
const minified = uglify.minify(text);
return (minified && minified.code) ? Buffer.from(minified.code) : content;
}
}
]),
new ManifestPlugin({
map: (data) => {
if ( data.name.endsWith('.scss') )
data.name = data.name.substr(0,data.name.length - 5) + '.css';
return data;
}
})
],
output: {
publicPath: '//cdn.frankerfacez.com/script/',
filename: '[name].[hash].js'
}
});
// This is why we can't have nice things.
// Why can't I just access process.env.NODE_ENV from
// one of these files when I set it with webpack's
// CLI? So stupid.
//
// So here we go.
// This is crap.
// But it works.
for(const rule of config.module.rules) {
if ( rule.use )
for(const use of rule.use)
if ( use.options && use.options.name && use.options.name.startsWith('[name].') )
use.options.name = '[name].[hash].' + use.options.name.slice(7)
}