-
Notifications
You must be signed in to change notification settings - Fork 1
/
webpack.config.js
197 lines (184 loc) · 6.38 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
const validEnv = require('./validate-environment')(process.env);
const webpack = require('webpack');
const {
WebpackTools: {
MagentoRootComponentsPlugin,
ServiceWorkerPlugin,
MagentoResolver,
UpwardPlugin,
PWADevServer
}
} = require('@magento/pwa-buildpack');
const path = require('path');
const UglifyPlugin = require('uglifyjs-webpack-plugin');
const configureBabel = require('./babel.config.js');
const themePaths = {
src: path.resolve(__dirname, 'src'),
output: path.resolve(__dirname, 'dist')
};
// mark dependencies for vendor bundle
const libs = [
'apollo-boost',
'react',
'react-dom',
'react-redux',
'react-router-dom',
'redux'
];
module.exports = async function(passedEnv) {
const { phase } = passedEnv;
const babelOptions = configureBabel(phase);
const enableServiceWorkerDebugging =
validEnv.ENABLE_SERVICE_WORKER_DEBUGGING;
const serviceWorkerFileName = validEnv.SERVICE_WORKER_FILE_NAME;
const config = {
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',
chunkFilename: 'js/[name]-[chunkhash].js',
pathinfo: true
},
module: {
rules: [
{
include: [themePaths.src],
test: /\.js$/,
use: [
{
loader: 'babel-loader',
options: { ...babelOptions, cacheDirectory: true }
}
]
},
{
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: [
new MagentoRootComponentsPlugin({ phase }),
new webpack.NoEmitOnErrorsPlugin(),
new webpack.DefinePlugin({
'process.env.NODE_ENV': JSON.stringify(phase),
// 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.
'process.env.SERVICE_WORKER': JSON.stringify(
phase === 'production' || enableServiceWorkerDebugging
? serviceWorkerFileName
: false
),
/**
* TODO: This env var can override the hardcoded product media
* path, which we need to hardcode due to
* https://github.com/magento/graphql-ce/issues/88
*/
'process.env.MAGENTO_BACKEND_PRODUCT_MEDIA_PATH': JSON.stringify(
validEnv.MAGENTO_BACKEND_PRODUCT_MEDIA_PATH
)
}),
new ServiceWorkerPlugin({
env: Object.assign({}, validEnv, passedEnv),
enableServiceWorkerDebugging,
serviceWorkerFileName,
paths: themePaths
})
]
};
if (phase === 'development') {
config.devtool = 'eval-source-map';
const devServerConfig = {
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.NamedChunksPlugin(),
new webpack.NamedModulesPlugin(),
new webpack.HotModuleReplacementPlugin(),
new UpwardPlugin(
config.devServer,
validEnv,
path.resolve(__dirname, validEnv.UPWARD_JS_UPWARD_PATH)
)
);
} else if (phase === 'production') {
config.performance = {
hints: 'warning'
};
config.entry.vendor = libs;
config.plugins.push(
new webpack.optimize.CommonsChunkPlugin({
names: ['vendor']
}),
new UglifyPlugin({
parallel: true,
uglifyOptions: {
ecma: 8,
parse: {
ecma: 8
},
compress: {
ecma: 6
},
output: {
ecma: 7,
semicolons: false
},
keep_fnames: true
}
})
);
} else {
throw Error(
`Unsupported environment phase in webpack config: ${phase}`
);
}
return config;
};