-
Notifications
You must be signed in to change notification settings - Fork 517
/
webpack.config.js
260 lines (244 loc) · 6.98 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
251
252
253
254
255
256
257
258
259
260
/* eslint-env es6 */
const process = require('process');
const rootDir = process.cwd();
const webpack = require('webpack');
const path = require('path');
const _ = require('lodash');
const ExtraWatchWebpackPlugin = require('extra-watch-webpack-plugin');
const TerserPlugin = require('terser-webpack-plugin');
const isProd = process.argv && process.argv.indexOf('--env=prod') > -1;
const isStrict = process.env.STRICT === '1';
const {getModulePaths, createModuleRegistry} = require('./frontend/webpack/requirejs-utils');
const {aliases, config} = getModulePaths(rootDir, __dirname);
// Plugin to make style components more readable in debug mode
const createStyledComponentsTransformer = require('typescript-plugin-styled-components').default;
const styledComponentsTransformer = createStyledComponentsTransformer();
createModuleRegistry(Object.keys(aliases), rootDir);
console.log('Starting webpack from', rootDir, 'in', isProd ? 'prod' : 'dev', 'mode', isStrict ? 'with typechecking' : '');
const webpackConfig = {
stats: {
hash: false,
modules: false,
timings: true,
version: true,
},
optimization: {
splitChunks: {
cacheGroups: {
vendor: {
test: /[\\/]node_modules[\\/]/,
name: 'vendor',
filename: 'vendor.min.js',
chunks: 'all'
},
main: {
filename: 'main.min.js'
}
}
},
moduleIds: 'deterministic',
minimizer: [new TerserPlugin({
parallel: true,
terserOptions: {
ecma: 6,
mangle: true,
output: {
comments: false,
},
},
})]
},
mode: (isProd ? 'production' : 'development'),
target: 'web',
entry: ['babel-polyfill', path.resolve(rootDir, './public/bundles/pimui/js/index.js')],
output: {
path: path.resolve('./public/dist/'),
publicPath: '/dist/',
filename: '[name].min.js',
chunkFilename: '[name].bundle.js',
},
devtool: 'source-map',
resolve: {
symlinks: false,
alias: _.mapKeys(aliases, (path, key) => `${key}$`),
fallback: {
'path': require.resolve('path-browserify'),
},
modules: [path.resolve('./public/bundles'), path.resolve('./node_modules')],
extensions: ['.js', '.json', '.ts', '.tsx']
},
module: {
rules: [
// Inject the module config (to replace module.config() from requirejs)
{
test: /\.js$/,
exclude: /\/node_modules\/|\/spec\//,
use: [
{
loader: path.resolve(__dirname, 'frontend/webpack/config-loader'),
options: {
aliases,
configMap: config,
},
},
],
},
// Load html without needing to prefix the requires with 'text!'
{
test: /\.html$/,
exclude: /node_modules|spec/,
use: [
'thread-loader',
{
loader: 'raw-loader',
options: {},
},
],
},
// Expose the Backbone variable to window
{
test: /node_modules\/backbone\/backbone.js/,
use: [
{
loader: 'expose-loader',
options: {
exposes: ['Backbone'],
}
},
],
},
{
test: /node_modules\/backbone\/backbone.js/,
use: [
{
loader: 'imports-loader',
options: {
wrapper: 'window',
}
},
],
},
{
test: /public\/bundles\/pimui\/lib\/summernote\/summernote.js/,
use: [
{
loader: 'imports-loader',
options: {
additionalCode: 'var require = function(){};require.specified = function(){};',
},
},
],
},
// Expose jQuery to window
{
test: /node_modules\/jquery\/dist\/jquery.js/,
use: [
{
loader: 'expose-loader',
options: {
exposes: ['$', 'jQuery'],
},
},
],
},
// Expose the require-polyfill to window
{
test: path.resolve(__dirname, './frontend/webpack/require-polyfill.js'),
use: [
{
loader: 'expose-loader',
options: {
exposes: ['require'],
},
},
],
},
// Process the pim webpack files with babel
{
test: /\.js$/,
include: [/public\/bundles/, /webpack/, /spec/, /node_modules\/p\-queue/],
use: [
'thread-loader',
{
loader: 'babel-loader',
options: {
presets: ['@babel/preset-env'],
cacheDirectory: 'public/cache',
},
}
],
},
{
test: /\.(svg|gif)$/,
loader: 'file-loader',
options: {
outputPath: 'assets'
},
},
// Process the typescript loader files
{
test: /\.tsx?$/,
use: [
{
loader: 'ts-loader',
options: {
transpileOnly: !isStrict,
configFile: path.resolve(rootDir, 'tsconfig.json'),
context: path.resolve(rootDir),
getCustomTransformers: () => ({ before: [styledComponentsTransformer] })
},
},
{
loader: path.resolve(__dirname, 'frontend/webpack/config-loader'),
options: {
aliases,
configMap: config,
},
},
],
include: [/(public\/bundles)/, /node_modules\/@akeneo/],
exclude: [
/* Exclude /node_modules/ except /@akeneo/ workspaces */
/node_modules\/(?!@akeneo)/,
path.resolve(rootDir, 'vendor'),
path.resolve(rootDir, 'tests'),
path.resolve(__dirname, 'tests'),
path.resolve(rootDir, 'src'),
/node_modules\/@testing-library/,
/node_modules\/immutable/,
/node_modules\/react-test-renderer/
],
},
{
test: /\.css$/,
include: /node_modules/,
use: ['style-loader', 'css-loader'],
},
],
},
watchOptions: {
ignored: /node_modules\/(?!@akeneo)|var\/cache|vendor/,
},
plugins: [
new ExtraWatchWebpackPlugin({
files: ['src/**/*{form_extensions/**/*.yml,form_extensions.yml}'],
}),
// Map modules to variables for global use
new webpack.ProvidePlugin({_: 'underscore', Backbone: 'backbone', $: 'jquery', jQuery: 'jquery'}),
// Ignore these directories when webpack watches for changes
new webpack.WatchIgnorePlugin({
paths: [
/node_modules\/(?!@akeneo)/,
path.resolve(rootDir, './config'),
path.resolve(rootDir, './tests'),
path.resolve(rootDir, './var'),
path.resolve(rootDir, './vendor'),
]
}),
new webpack.DefinePlugin({
'process.env.NODE_ENV': isProd ? JSON.stringify('production') : JSON.stringify('development'),
'process.env.EDITION': JSON.stringify(process.env.EDITION),
}),
],
};
module.exports = webpackConfig;