forked from metabase/metabase
-
Notifications
You must be signed in to change notification settings - Fork 1
/
webpack.config.js
275 lines (250 loc) · 8.83 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
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
/* eslint-env node */
/* eslint-disable import/no-commonjs */
require("babel-register");
require("babel-polyfill");
var webpack = require("webpack");
var ExtractTextPlugin = require("extract-text-webpack-plugin");
var HtmlWebpackPlugin = require("html-webpack-plugin");
var HtmlWebpackHarddiskPlugin = require("html-webpack-harddisk-plugin");
var UnusedFilesWebpackPlugin = require("unused-files-webpack-plugin").default;
var BannerWebpackPlugin = require("banner-webpack-plugin");
var UglifyJSPlugin = require("uglifyjs-webpack-plugin");
var fs = require("fs");
var chevrotain = require("chevrotain");
var allTokens = require("./frontend/src/metabase/lib/expressions/tokens")
.allTokens;
var SRC_PATH = __dirname + "/frontend/src/metabase";
var LIB_SRC_PATH = __dirname + "/frontend/src/metabase-lib";
var TEST_SUPPORT_PATH = __dirname + "/frontend/test/__support__";
var BUILD_PATH = __dirname + "/resources/frontend_client";
// default NODE_ENV to development
var NODE_ENV = process.env["NODE_ENV"] || "development";
// Babel:
var BABEL_CONFIG = {
cacheDirectory: process.env.BABEL_DISABLE_CACHE ? null : ".babel_cache",
};
var CSS_CONFIG = {
localIdentName:
NODE_ENV !== "production"
? "[name]__[local]___[hash:base64:5]"
: "[hash:base64:5]",
url: false, // disabled because we need to use relative url()
importLoaders: 1,
};
var config = (module.exports = {
context: SRC_PATH,
// output a bundle for the app JS and a bundle for styles
// eventually we should have multiple (single file) entry points for various pieces of the app to enable code splitting
entry: {
"app-main": "./app-main.js",
"app-public": "./app-public.js",
"app-embed": "./app-embed.js",
styles: "./css/index.css",
},
// output to "dist"
output: {
path: BUILD_PATH + "/app/dist",
// NOTE: the filename on disk won't include "?[chunkhash]" but the URL in index.html generated by HtmlWebpackPlugin will:
filename: "[name].bundle.js?[hash]",
publicPath: "app/dist/",
},
module: {
rules: [
{
test: /\.(js|jsx)$/,
exclude: /node_modules/,
use: [{ loader: "babel-loader", options: BABEL_CONFIG }],
},
{
test: /\.(js|jsx)$/,
exclude: /node_modules|\.spec\.js/,
use: [
{
loader: "eslint-loader",
options: {
rulePaths: [__dirname + "/frontend/lint/eslint-rules"],
},
},
],
},
{
test: /\.(eot|woff2?|ttf|svg|png)$/,
use: [{ loader: "file-loader" }],
},
{
test: /\.css$/,
use: ExtractTextPlugin.extract({
fallback: "style-loader",
use: [
{ loader: "css-loader", options: CSS_CONFIG },
{ loader: "postcss-loader" },
],
}),
},
],
},
resolve: {
extensions: [".webpack.js", ".web.js", ".js", ".jsx", ".css"],
alias: {
metabase: SRC_PATH,
"metabase-lib": LIB_SRC_PATH,
__support__: TEST_SUPPORT_PATH,
style: SRC_PATH + "/css/core/index",
ace: __dirname + "/node_modules/ace-builds/src-min-noconflict",
// NOTE @kdoh - 7/24/18
// icepick 2.x is es6 by defalt, to maintain backwards compatability
// with ie11 point to the minified version
icepick: __dirname + "/node_modules/icepick/icepick.min"
},
},
plugins: [
new webpack.optimize.CommonsChunkPlugin({
name: "vendor",
minChunks(module) {
return module.context && module.context.indexOf("node_modules") >= 0;
},
}),
new UnusedFilesWebpackPlugin({
globOptions: {
ignore: [
"**/types.js",
"**/types/*.js",
"**/*.spec.*",
"**/__support__/*.js",
"**/__mocks__/*.js*",
"internal/lib/components-node.js",
],
},
}),
// Extracts initial CSS into a standard stylesheet that can be loaded in parallel with JavaScript
// NOTE: the filename on disk won't include "?[chunkhash]" but the URL in index.html generated by HtmlWebpackPlugin will:
new ExtractTextPlugin({
filename: "[name].bundle.css?[contenthash]",
}),
new HtmlWebpackPlugin({
filename: "../../index.html",
chunksSortMode: "manual",
chunks: ["vendor", "styles", "app-main"],
template: __dirname + "/resources/frontend_client/index_template.html",
inject: "head",
alwaysWriteToDisk: true,
}),
new HtmlWebpackPlugin({
filename: "../../public.html",
chunksSortMode: "manual",
chunks: ["vendor", "styles", "app-public"],
template: __dirname + "/resources/frontend_client/index_template.html",
inject: "head",
alwaysWriteToDisk: true,
}),
new HtmlWebpackPlugin({
filename: "../../embed.html",
chunksSortMode: "manual",
chunks: ["vendor", "styles", "app-embed"],
template: __dirname + "/resources/frontend_client/index_template.html",
inject: "head",
alwaysWriteToDisk: true,
}),
new HtmlWebpackHarddiskPlugin({
outputPath: __dirname + "/resources/frontend_client/app/dist",
}),
new webpack.DefinePlugin({
"process.env": {
NODE_ENV: JSON.stringify(NODE_ENV),
},
}),
new BannerWebpackPlugin({
chunks: {
"app-main": {
beforeContent:
"/*\n* This file is subject to the terms and conditions defined in\n * file 'LICENSE.txt', which is part of this source code package.\n */\n",
},
"app-public": {
beforeContent:
"/*\n* This file is subject to the terms and conditions defined in\n * file 'LICENSE.txt', which is part of this source code package.\n */\n",
},
"app-embed": {
beforeContent:
"/*\n* This file is subject to the terms and conditions defined in\n * file 'LICENSE-EMBEDDING.txt', which is part of this source code package.\n */\n",
},
},
}),
],
});
if (NODE_ENV === "hot") {
// suffixing with ".hot" allows us to run both `yarn run build-hot` and `yarn run test` or `yarn run test-watch` simultaneously
config.output.filename = "[name].hot.bundle.js?[hash]";
// point the publicPath (inlined in index.html by HtmlWebpackPlugin) to the hot-reloading server
config.output.publicPath =
"http://localhost:8080/" + config.output.publicPath;
config.module.rules.unshift({
test: /\.jsx$/,
// NOTE: our verison of react-hot-loader doesn't play nice with react-dnd's DragLayer, so we exclude files named `*DragLayer.jsx`
exclude: /node_modules|DragLayer\.jsx$/,
use: [
// NOTE Atte Keinänen 10/19/17: We are currently sticking to an old version of react-hot-loader
// because newer versions would require us to upgrade to react-router v4 and possibly deal with
// asynchronous route issues as well. See https://github.com/gaearon/react-hot-loader/issues/249
{ loader: "react-hot-loader" },
{ loader: "babel-loader", options: BABEL_CONFIG },
],
});
// disable ExtractTextPlugin
config.module.rules[config.module.rules.length - 1].use = [
{ loader: "style-loader" },
{ loader: "css-loader", options: CSS_CONFIG },
{ loader: "postcss-loader" },
];
config.devServer = {
hot: true,
inline: true,
contentBase: "frontend",
headers: {
"Access-Control-Allow-Origin": "*",
},
// if webpack doesn't reload UI after code change in development
// watchOptions: {
// aggregateTimeout: 300,
// poll: 1000
// }
// if you want to reduce stats noise
// stats: 'minimal' // values: none, errors-only, minimal, normal, verbose
};
config.plugins.unshift(
new webpack.NoEmitOnErrorsPlugin(),
new webpack.NamedModulesPlugin(),
new webpack.HotModuleReplacementPlugin()
);
}
if (NODE_ENV !== "production") {
// replace minified files with un-minified versions
for (var name in config.resolve.alias) {
var minified = config.resolve.alias[name];
var unminified = minified.replace(/[.-\/]min\b/g, "");
if (minified !== unminified && fs.existsSync(unminified)) {
config.resolve.alias[name] = unminified;
}
}
// enable "cheap" source maps in hot or watch mode since re-build speed overhead is < 1 second
config.devtool = "cheap-module-source-map";
// works with breakpoints
// config.devtool = "inline-source-map"
// helps with source maps
config.output.devtoolModuleFilenameTemplate = "[absolute-resource-path]";
config.output.pathinfo = true;
} else {
// this is required to ensure we don't minify Chevrotain token identifiers
// https://github.com/SAP/chevrotain/tree/master/examples/parser/minification
const tokens = allTokens.map(currTok => chevrotain.tokenName(currTok));
config.plugins.push(
new UglifyJSPlugin({
test: /\.jsx?($|\?)/i,
uglifyOptions: {
mangle: {
reserved: tokens,
},
},
})
);
config.devtool = "source-map";
}