This repository has been archived by the owner on Oct 5, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathwebpack.config.js
123 lines (118 loc) · 3.04 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
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
const { EnvironmentPlugin } = require('webpack')
const { resolve } = require('path')
const { BundleAnalyzerPlugin } = require('webpack-bundle-analyzer')
const { InjectManifest } = require('workbox-webpack-plugin')
const ReplaceInFileWebpackPlugin = require('replace-in-file-webpack-plugin')
const CopyWebpackPlugin = require('copy-webpack-plugin')
const clientConstants = require('./src/client/js/styles/constants')
module.exports = function(environment) {
if (!environment) environment = process.env.NODE_ENV || 'development'
const version = new Date() // Format: YYYYMMDD.HHmmss
.toISOString()
.split('.')
.shift()
.replace(/[-:]/g, '')
.replace('T', '.')
const plugins = [
new EnvironmentPlugin({ NODE_ENV: environment }),
new ReplaceInFileWebpackPlugin([
{
dir: 'dist/client',
files: ['sw.js'],
rules: [
{
search: 'VERSION',
replace: version,
},
{
search: /SW_DEBUG/,
replace: environment === 'production' ? 'false' : 'true',
},
],
},
]),
new CopyWebpackPlugin([
{
from: 'src/client/manifest.json',
to: 'manifest.json',
toType: 'file',
},
]),
new CopyWebpackPlugin([
{
from: 'src/client/robots.txt',
to: 'robots.txt',
toType: 'file',
},
]),
new ReplaceInFileWebpackPlugin([
{
dir: 'dist/client',
files: ['manifest.json'],
rules: [
{
search: /NEARFORM_BRAND_MAIN/gi,
replace: clientConstants.colors['NEARFORM_BRAND_MAIN'],
},
],
},
]),
]
// Customize output
if (environment === 'production' || process.env.BUILDING) {
plugins.push(
new BundleAnalyzerPlugin({
analyzerMode: 'disabled',
generateStatsFile: true,
statsFilename: '../../coverage/client-bundle-stats.json',
})
)
} else {
plugins.push(
new BundleAnalyzerPlugin({
openAnalyzer: false,
})
)
}
plugins.push(
new InjectManifest({
swSrc: 'src/client/sw.js',
swDest: 'sw.js',
exclude: [/\.map$/],
})
)
return {
entry: './src/client/application.jsx',
output: {
path: resolve(__dirname, 'dist/client'),
filename: 'app.js',
},
mode: environment === 'production' ? 'production' : 'development',
plugins,
resolve: {
extensions: ['.js', '.jsx'],
},
module: {
rules: [
{
test: /\.jsx?$/,
exclude: /node_modules|(src\/server)/,
use: {
loader: 'babel-loader',
options: {
presets: ['@babel/preset-react'],
plugins: ['@babel/plugin-proposal-object-rest-spread'],
},
},
},
{
test: /\.(ico|png)$/,
use: {
loader: 'file-loader',
options: { name: '[path][name].[ext]', outputPath: path => path.replace('src/client/', '') },
},
},
],
},
}
}