-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathwebpack.config.js
82 lines (76 loc) · 1.96 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
"use strict";
const WebpackNotifierPlugin = require("webpack-notifier");
const webpack = require("webpack");
const path = require("path");
const absolute = (relPath) => path.join(__dirname, relPath);
const EnvLoaderPlugin = require("webpack-env-loader-plugin");
const srcPath = absolute("./app/main.js");
const outputDir = absolute("./data/content");
const outputFilename = "bundle.js";
let env = process.env.NODE_ENV || "development";
let plugins = [
new WebpackNotifierPlugin(),
new EnvLoaderPlugin({
env,
filePattern: "config.{env}.yml",
loadLocalOverride: env === "development" ? "config.yml" : null,
reactEnv: true
})
];
if (env !== "test") {
plugins.push(new webpack.optimize.CommonsChunkPlugin("vendor", "vendor.bundle.js"));
}
if (env === "production") {
plugins = plugins.concat([
new webpack.optimize.OccurenceOrderPlugin(),
new webpack.optimize.UglifyJsPlugin({
test: /vendor/,
compress: {
warnings: false
}
}),
new webpack.optimize.DedupePlugin()
]);
}
module.exports = {
entry: {
app: srcPath,
vendor: [
"react",
"react-dom",
"moment"
]
},
output: {
path: outputDir,
filename: outputFilename,
},
externals: {
'firebaseConfig': JSON.stringify(require('./firebase.config.json'))
},
target: "web",
resolve: {
extensions: ["", ".js", ".jsx"],
alias: {
"components": absolute("./app/components"),
"reducers": absolute("./app/reducers"),
"actions": absolute("./app/actions"),
"containers": absolute("./app/containers"),
"selectors": absolute("./app/selectors"),
"lib": absolute("./app/lib"),
"test": absolute("./content-test")
}
},
module: {
loaders: [
{test: /\.json$/, loader: "json"},
{
test: /\.jsx?$/,
include: /.\/(app|content-test)\//,
loader: "babel"
}
]
},
devtool: env === "production" ? null : "eval", // This is for Firefox
plugins
};