forked from magento/pwa-studio
-
Notifications
You must be signed in to change notification settings - Fork 1
/
webpack.config.js
250 lines (239 loc) · 8.41 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
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
const validEnv = require('./validate-environment')(process.env);
const webpack = require('webpack');
const {
WebpackTools: {
makeMagentoRootComponentsPlugin,
ServiceWorkerPlugin,
MagentoResolver,
UpwardPlugin,
PWADevServer
}
} = require('@magento/pwa-buildpack');
const path = require('path');
const TerserPlugin = require('terser-webpack-plugin');
const WebpackAssetsManifest = require('webpack-assets-manifest');
const themePaths = {
images: path.resolve(__dirname, 'images'),
templates: path.resolve(__dirname, 'templates'),
src: path.resolve(__dirname, 'src'),
output: path.resolve(__dirname, 'dist')
};
const rootComponentsDirs = ['./src/RootComponents/'];
const libs = [
'apollo-boost',
'informed',
'react',
'react-apollo',
'react-dom',
'react-feather',
'react-redux',
'react-router-dom',
'redux',
'redux-actions',
'redux-thunk'
];
module.exports = async function(env) {
const mode = (env && env.mode) || process.env.NODE_ENV || 'development';
const enableServiceWorkerDebugging =
validEnv.ENABLE_SERVICE_WORKER_DEBUGGING;
const serviceWorkerFileName = validEnv.SERVICE_WORKER_FILE_NAME;
const braintreeToken = validEnv.BRAINTREE_TOKEN;
const config = {
mode,
context: __dirname, // Node global for the running script's directory
entry: {
client: path.resolve(themePaths.src, 'index.js')
},
output: {
path: themePaths.output,
publicPath: '/',
filename: 'js/[name].js',
strictModuleExceptionHandling: true,
chunkFilename: 'js/[name]-[chunkhash].js'
},
module: {
rules: [
{
test: /\.graphql$/,
exclude: /node_modules/,
use: [
{
loader: 'graphql-tag/loader'
}
]
},
{
include: [themePaths.src, /peregrine\/src\//],
test: /\.(mjs|js)$/,
use: [
{
loader: 'babel-loader',
options: {
cacheDirectory: true,
envName: mode,
rootMode: 'upward'
}
}
]
},
{
test: /\.css$/,
use: [
'style-loader',
{
loader: 'css-loader',
options: {
importLoaders: 1,
localIdentName:
'[name]-[local]-[hash:base64:3]',
modules: true
}
}
]
},
{
test: /\.(jpg|svg)$/,
use: [
{
loader: 'file-loader',
options: {}
}
]
}
]
},
resolve: await MagentoResolver.configure({
paths: {
root: __dirname
}
}),
plugins: [
await makeMagentoRootComponentsPlugin({
rootComponentsDirs,
context: __dirname
}),
new webpack.EnvironmentPlugin(validEnv),
new webpack.DefinePlugin({
'process.env': {
NODE_ENV: JSON.stringify(mode),
// Blank the service worker file name to stop the app from
// attempting to register a service worker in index.js.
// Only register a service worker when in production or in the
// special case of debugging the service worker itself.
SERVICE_WORKER: JSON.stringify(
mode === 'production' || enableServiceWorkerDebugging
? serviceWorkerFileName
: false
),
BRAINTREE_TOKEN: JSON.stringify(braintreeToken)
}
}),
new ServiceWorkerPlugin({
env: { mode },
enableServiceWorkerDebugging,
serviceWorkerFileName,
paths: themePaths,
injectManifest: true,
injectManifestConfig: {
include: [/\.js$/],
swSrc: './src/sw.js',
swDest: 'sw.js'
}
}),
new WebpackAssetsManifest({
output: 'asset-manifest.json',
entrypoints: true,
// Add explicit properties to the asset manifest for
// venia-upward.yml to use when evaluating app shell templates.
transform(assets) {
// All RootComponents go to prefetch, and all client scripts
// go to load.
assets.bundles = {
load: assets.entrypoints.client.js,
prefetch: []
};
Object.entries(assets).forEach(([name, value]) => {
if (name.startsWith('RootCmp')) {
const filenames = Array.isArray(value)
? value
: [value];
assets.bundles.prefetch.push(...filenames);
}
});
}
})
],
optimization: {
splitChunks: {
cacheGroups: {
vendor: {
test: new RegExp(
`[\\\/]node_modules[\\\/](${libs.join('|')})[\\\/]`
),
chunks: 'all'
}
}
}
}
};
if (mode === 'development') {
config.devtool = 'eval-source-map';
const devServerConfig = {
env: validEnv,
publicPath: config.output.publicPath,
graphqlPlayground: {
queryDirs: [path.resolve(themePaths.src, 'queries')]
}
};
const provideHost = !!validEnv.MAGENTO_BUILDPACK_PROVIDE_SECURE_HOST;
if (provideHost) {
devServerConfig.provideSecureHost = {
subdomain: validEnv.MAGENTO_BUILDPACK_SECURE_HOST_SUBDOMAIN,
exactDomain:
validEnv.MAGENTO_BUILDPACK_SECURE_HOST_EXACT_DOMAIN,
addUniqueHash: !!validEnv.MAGENTO_BUILDPACK_SECURE_HOST_ADD_UNIQUE_HASH
};
}
config.devServer = await PWADevServer.configure(devServerConfig);
// A DevServer generates its own unique output path at startup. It needs
// to assign the main outputPath to this value as well.
config.output.publicPath = config.devServer.publicPath;
config.plugins.push(
new webpack.HotModuleReplacementPlugin(),
new UpwardPlugin(
config.devServer,
validEnv,
path.resolve(__dirname, validEnv.UPWARD_JS_UPWARD_PATH)
)
);
} else if (mode === 'production') {
config.performance = {
hints: 'warning'
};
if (!process.env.DEBUG_BEAUTIFY) {
config.optimization.minimizer = [
new TerserPlugin({
parallel: true,
cache: true,
terserOptions: {
ecma: 8,
parse: {
ecma: 8
},
compress: {
drop_console: true
},
output: {
ecma: 7,
semicolons: false
},
keep_fnames: true
}
})
];
}
} else {
throw Error(`Unsupported environment mode in webpack config: ${mode}`);
}
return config;
};