webpack/lib/EnvironmentPlugin.js

66 lines
1.8 KiB
JavaScript
Raw Normal View History

2015-01-07 06:02:44 +08:00
/*
MIT License http://www.opensource.org/licenses/mit-license.php
Authors Simen Brekken @simenbrekken, Einar Löve @einarlove
2015-01-07 06:02:44 +08:00
*/
"use strict";
const DefinePlugin = require("./DefinePlugin");
2018-02-25 09:00:20 +08:00
const needsEnvVarFix =
["8", "9"].indexOf(process.versions.node.split(".")[0]) >= 0 &&
process.platform === "win32";
class EnvironmentPlugin {
2017-11-08 18:32:05 +08:00
constructor(...keys) {
2018-02-25 09:00:20 +08:00
if (keys.length === 1 && Array.isArray(keys[0])) {
2017-11-08 18:32:05 +08:00
this.keys = keys[0];
2017-01-11 16:12:55 +08:00
this.defaultValues = {};
2018-02-25 09:00:20 +08:00
} else if (keys.length === 1 && keys[0] && typeof keys[0] === "object") {
2017-11-08 18:32:05 +08:00
this.keys = Object.keys(keys[0]);
this.defaultValues = keys[0];
2017-01-06 22:40:28 +08:00
} else {
2017-11-08 18:32:05 +08:00
this.keys = keys;
2017-01-11 16:12:55 +08:00
this.defaultValues = {};
2015-01-07 06:02:44 +08:00
}
}
2015-01-07 06:02:44 +08:00
apply(compiler) {
2017-01-11 16:12:55 +08:00
const definitions = this.keys.reduce((defs, key) => {
// TODO remove once the fix has made its way into Node 8.
// Work around https://github.com/nodejs/node/pull/18463,
// affecting Node 8 & 9 by performing an OS-level
// operation that always succeeds before reading
// environment variables:
2018-02-25 09:00:20 +08:00
if (needsEnvVarFix) require("os").cpus();
2018-02-25 09:00:20 +08:00
const value =
process.env[key] !== undefined
? process.env[key]
: this.defaultValues[key];
2018-02-25 09:00:20 +08:00
if (value === undefined) {
compiler.hooks.thisCompilation.tap("EnvironmentPlugin", compilation => {
2017-01-06 22:40:28 +08:00
const error = new Error(
2018-03-26 22:56:10 +08:00
`EnvironmentPlugin - ${key} environment variable is undefined.\n\n` +
2018-02-25 09:00:20 +08:00
"You can pass an object with default values to suppress this warning.\n" +
"See https://webpack.js.org/plugins/environment-plugin for example."
2017-01-06 22:40:28 +08:00
);
2015-01-07 06:02:44 +08:00
error.name = "EnvVariableNotDefinedError";
compilation.warnings.push(error);
});
}
2015-01-07 06:02:44 +08:00
2018-02-25 09:00:20 +08:00
defs[`process.env.${key}`] =
typeof value === "undefined" ? "undefined" : JSON.stringify(value);
2017-01-06 22:40:28 +08:00
return defs;
2017-01-11 16:12:55 +08:00
}, {});
2015-01-07 06:02:44 +08:00
new DefinePlugin(definitions).apply(compiler);
}
}
module.exports = EnvironmentPlugin;