-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathwebpack.config.js
88 lines (74 loc) · 2.26 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
const NODE_ENV = process.env.NODE_ENV || "development";
const webpack = require("webpack");
const path = require("path");
const fs = require("fs");
const join = path.join;
const resolve = path.resolve;
const root = resolve(__dirname);
if (fs.existsSync(join(root, ".env") === false)) {
console.log(
"This project needs you to have a .env file in the root, see the docs.\n"
);
process.exit(0);
}
const dotenv = require("dotenv");
const dotEnvVars = dotenv.config();
let getConfig = require("hjs-webpack");
const environmentEnv = dotenv.config({
path: join(root, "config", `${NODE_ENV}.env`),
silent: false
});
const envVariables = Object.assign({}, dotEnvVars, environmentEnv);
const isDev = NODE_ENV !== "production";
const defines = Object.keys(envVariables).reduce(
(memo, key) => {
const val = JSON.stringify(envVariables[key]);
memo[`__${key.toUpperCase()}__`] = val;
return memo;
},
{
"process.env.NODE_ENV": JSON.stringify(NODE_ENV),
NODE_ENV: JSON.stringify(NODE_ENV)
}
);
let myHjsWebpackOptions = {
in: "src/index.js",
out: "public",
clearBeforeBuild: "!(img|favicon.ico|global.css|CORS|CNAME|locales.json)",
devServer: {
hot: true
}
};
let config = getConfig(myHjsWebpackOptions);
if (isDev) {
config.entry[0] = config.entry[0] + "?reload=true";
config.entry.unshift("react-hot-loader/patch");
}
config.plugins.push(new webpack.DefinePlugin(defines));
config.plugins.push(
new webpack.ProvidePlugin({
fetch: "imports?this=>global!exports?global.fetch!whatwg-fetch"
})
);
const replaceLoader = (match, replacer) => l => {
if (l && l.loader && l.loader.match(match)) {
l.loader = l.loader.replace(match, replacer);
}
};
// Happy, debuggable selectors in dev. Super compact selectors in prod.
const cssDevIdent = isDev ? "[path][name]___[local]___" : "";
const cssModulesLoader = `?modules&localIdentName=${cssDevIdent}[hash:base64:5]`;
const cssModuleMatch = /(^|!)(css-loader)($|!)/;
config.module.loaders.forEach(
replaceLoader(cssModuleMatch, `$1$2${cssModulesLoader}$3`)
);
config.module.loaders.push({
loaders: [
"transform-loader/cacheable?brfs",
"transform-loader/cacheable?packageify"
]
});
config.module.loaders.push({
loader: "transform-loader/cacheable?ejsify"
});
module.exports = config;