forked from akeneo/pim-community-dev
-
Notifications
You must be signed in to change notification settings - Fork 0
/
webpack.config.js
248 lines (225 loc) · 6.39 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
/* 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 UglifyJsPlugin = require('uglifyjs-webpack-plugin');
const WebpackCleanupPlugin = require('webpack-cleanup-plugin');
const LiveReloadPlugin = require('webpack-livereload-plugin');
const isProd = process.argv && process.argv.indexOf('--env=prod') > -1;
const sourcePath = path.join(rootDir, 'web/js/require-paths.js');
if (!fs.existsSync(sourcePath)) {
throw new Error(`The web/js/require-paths.js module does not exist - You need to run
"bin/console pim:install" or "bin/console pim:installer:dump-require-paths" before
running webpack \n`);
}
const {getModulePaths, createModuleRegistry} = require('./webpack/requirejs-utils');
const {aliases, config} = getModulePaths(rootDir, __dirname, sourcePath);
createModuleRegistry(Object.keys(aliases), rootDir);
const babelPresets = [
[
'babel-preset-env',
{
targets: {
browsers: ['firefox >= 45'],
},
},
],
];
if (isProd) {
babelPresets.push('babel-preset-minify');
}
console.log('Starting webpack from', rootDir, 'in', isProd ? 'prod' : 'dev', 'mode');
const webpackConfig = {
stats: {
hash: false,
maxModules: 5,
modules: false,
timings: true,
version: true,
},
target: 'web',
entry: ['babel-polyfill', path.resolve(rootDir, './web/bundles/pimenrich/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, 'webpack/config-loader'),
options: {
configMap: config,
},
},
],
},
// Load html without needing to prefix the requires with 'text!'
{
test: /\.html$/,
exclude: /node_modules|spec/,
use: [
{
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, './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: {
loader: 'babel-loader',
options: {
presets: babelPresets,
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, 'webpack/config-loader'),
options: {
configMap: config,
},
},
],
include: /(web\/bundles)/,
exclude: /lib|node_modules|vendor|tests|src|packages/,
},
],
},
watchOptions: {
ignored: /node_modules|app|app\/cache|vendor/,
},
// Support old loader declarations
resolveLoader: {
moduleExtensions: ['-loader'],
},
plugins: [
// Clean up the dist folder and source maps before rebuild
new WebpackCleanupPlugin(),
// 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'),
]),
// Inject live reload to auto refresh the page (hmr not compatible with our app)
new LiveReloadPlugin({appendScriptTag: true, ignore: /node_modules/}),
// Split the app into chunks for performance
new webpack.optimize.CommonsChunkPlugin({
name: 'lib',
minChunks: module => module.context && module.context.indexOf('lib') !== -1,
}),
new webpack.optimize.CommonsChunkPlugin({
name: 'vendor',
minChunks: module => module.context && module.context.indexOf('node_modules') !== -1,
}),
new webpack.DefinePlugin({
'process.env.NODE_ENV': isProd ? JSON.stringify('production') : JSON.stringify('development'),
}),
new webpack.optimize.CommonsChunkPlugin({name: 'manifest'}),
],
};
if (isProd) {
webpackConfig.plugins.push(
new UglifyJsPlugin({
sourceMap: true,
uglifyOptions: {
ecma: 8,
compress: {
warnings: false,
},
},
})
);
}
module.exports = webpackConfig;