forked from akeneo/pim-community-dev
-
Notifications
You must be signed in to change notification settings - Fork 0
/
webpack.config.js
240 lines (224 loc) · 6.14 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
/* eslint-env es6 */
const fs = require('fs');
const process = require('process');
const rootDir = process.cwd();
const webpack = require('webpack');
const path = require('path');
const _ = require('lodash');
const WebpackShellPlugin = require('webpack-shell-plugin');
const ExtraWatchWebpackPlugin = require('extra-watch-webpack-plugin');
const TerserPlugin = require('terser-webpack-plugin');
const isProd = process.argv && process.argv.indexOf('--env=prod') > -1;
const {getModulePaths, createModuleRegistry} = require('./frontend/webpack/requirejs-utils');
const {aliases, config} = getModulePaths(rootDir, __dirname);
createModuleRegistry(Object.keys(aliases), rootDir);
console.log('Starting webpack from', rootDir, 'in', isProd ? 'prod' : 'dev', 'mode');
const webpackConfig = {
stats: {
hash: false,
maxModules: 5,
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: 'hashed',
minimizer: [new TerserPlugin({
cache: true,
parallel: true,
sourceMap: false,
terserOptions: {
ecma: 6,
mangle: true,
output: {
comments: false,
},
},
})]
},
mode: (isProd ? 'production' : 'development'),
target: 'web',
entry: ['babel-polyfill', path.resolve(rootDir, './web/bundles/pimui/js/index.js')],
output: {
path: path.resolve('./web/dist/'),
publicPath: '/dist/',
filename: '[name].min.js',
chunkFilename: '[name].bundle.js',
},
devtool: 'source-map',
resolve: {
symlinks: false,
alias: _.mapKeys(aliases, (path, key) => `${key}$`),
modules: [path.resolve('./web/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: 'Backbone',
},
],
},
{
test: /node_modules\/backbone\/backbone.js/,
use: [
{
loader: 'imports-loader',
options: 'this=>window',
},
],
},
{
test: /node_modules\/summernote\/dist\/summernote.js/,
use: [
{
loader: 'imports-loader',
options: 'require=>function(){}',
},
{
loader: 'imports-loader',
options: 'require.specified=>function(){}',
},
],
},
// Expose jQuery to window
{
test: /node_modules\/jquery\/dist\/jquery.js/,
use: [
{
loader: 'expose-loader',
options: 'jQuery',
},
{
loader: 'expose-loader',
options: '$',
},
],
},
// Expose the require-polyfill to window
{
test: path.resolve(__dirname, './frontend/webpack/require-polyfill.js'),
use: [
{
loader: 'expose-loader',
options: 'require',
},
],
},
// Process the pim webpack files with babel
{
test: /\.js$/,
include: /(web\/bundles|webpack|spec)/,
exclude: /lib|node_modules/,
use: [
'thread-loader',
{
loader: 'babel-loader',
options: {
presets: ['@babel/preset-env'],
cacheDirectory: 'web/cache',
},
}
],
},
// Process the typescript loader files
{
test: /\.tsx?$/,
use: [
{
loader: 'ts-loader',
options: {
configFile: path.resolve(__dirname, 'tsconfig.json'),
context: path.resolve(rootDir),
},
},
{
loader: path.resolve(__dirname, 'frontend/webpack/config-loader'),
options: {
aliases,
configMap: config,
},
},
],
include: /(web\/bundles)/,
exclude: [
path.resolve(rootDir, 'node_modules'),
path.resolve(rootDir, 'vendor'),
path.resolve(rootDir, 'tests'),
path.resolve(__dirname, 'tests'),
path.resolve(rootDir, 'src')
],
},
],
},
watchOptions: {
ignored: /node_modules|var\/cache|vendor/,
},
plugins: [
new WebpackShellPlugin({
onBuildStart: ['yarn run less', 'yarn update-extensions'],
dev: false
}),
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([
path.resolve(rootDir, './node_modules'),
path.resolve(rootDir, './app'),
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;