2015-01-07 06:02:44 +08:00
|
|
|
/*
|
|
|
|
MIT License http://www.opensource.org/licenses/mit-license.php
|
2016-11-09 23:25:21 +08:00
|
|
|
Authors Simen Brekken @simenbrekken, Einar Löve @einarlove
|
2015-01-07 06:02:44 +08:00
|
|
|
*/
|
|
|
|
|
2016-12-30 07:26:26 +08:00
|
|
|
"use strict";
|
|
|
|
|
|
|
|
const DefinePlugin = require("./DefinePlugin");
|
2018-07-30 23:08:51 +08:00
|
|
|
const WebpackError = require("./WebpackError");
|
|
|
|
|
|
|
|
/** @typedef {import("./Compiler")} Compiler */
|
2020-01-17 04:22:05 +08:00
|
|
|
/** @typedef {import("./DefinePlugin").CodeValue} CodeValue */
|
2018-01-31 04:11:41 +08:00
|
|
|
|
2025-04-23 20:03:37 +08:00
|
|
|
const PLUGIN_NAME = "EnvironmentPlugin";
|
|
|
|
|
2016-12-30 07:26:26 +08:00
|
|
|
class EnvironmentPlugin {
|
2024-08-06 11:08:48 +08:00
|
|
|
/**
|
2025-03-11 22:20:50 +08:00
|
|
|
* @param {(string | string[] | Record<string, EXPECTED_ANY>)[]} keys keys
|
2024-08-06 11:08:48 +08:00
|
|
|
*/
|
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])) {
|
2024-08-28 06:37:17 +08:00
|
|
|
/** @type {string[]} */
|
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]);
|
2025-03-11 22:20:50 +08:00
|
|
|
this.defaultValues =
|
|
|
|
/** @type {Record<string, EXPECTED_ANY>} */
|
|
|
|
(keys[0]);
|
2017-01-06 22:40:28 +08:00
|
|
|
} else {
|
2024-08-06 11:08:48 +08:00
|
|
|
this.keys = /** @type {string[]} */ (keys);
|
2017-01-11 16:12:55 +08:00
|
|
|
this.defaultValues = {};
|
2015-01-07 06:02:44 +08:00
|
|
|
}
|
2016-12-30 07:26:26 +08:00
|
|
|
}
|
2015-01-07 06:02:44 +08:00
|
|
|
|
2018-07-08 15:15:02 +08:00
|
|
|
/**
|
2020-04-23 16:48:36 +08:00
|
|
|
* Apply the plugin
|
|
|
|
* @param {Compiler} compiler the compiler instance
|
2018-07-08 15:15:02 +08:00
|
|
|
* @returns {void}
|
|
|
|
*/
|
2016-12-30 07:26:26 +08:00
|
|
|
apply(compiler) {
|
2020-01-17 04:22:05 +08:00
|
|
|
/** @type {Record<string, CodeValue>} */
|
|
|
|
const definitions = {};
|
|
|
|
for (const key of this.keys) {
|
2018-02-25 09:00:20 +08:00
|
|
|
const value =
|
|
|
|
process.env[key] !== undefined
|
|
|
|
? process.env[key]
|
|
|
|
: this.defaultValues[key];
|
2016-12-22 06:11:10 +08:00
|
|
|
|
2018-02-25 09:00:20 +08:00
|
|
|
if (value === undefined) {
|
2025-04-23 20:03:37 +08:00
|
|
|
compiler.hooks.thisCompilation.tap(PLUGIN_NAME, compilation => {
|
2018-07-08 15:15:02 +08:00
|
|
|
const error = new WebpackError(
|
2025-04-23 20:03:37 +08:00
|
|
|
`${PLUGIN_NAME} - ${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
|
|
|
|
2016-12-30 07:26:26 +08:00
|
|
|
error.name = "EnvVariableNotDefinedError";
|
2020-02-08 05:31:44 +08:00
|
|
|
compilation.errors.push(error);
|
2016-12-30 07:26:26 +08:00
|
|
|
});
|
|
|
|
}
|
2015-01-07 06:02:44 +08:00
|
|
|
|
2020-01-17 04:22:05 +08:00
|
|
|
definitions[`process.env.${key}`] =
|
2018-08-21 08:26:50 +08:00
|
|
|
value === undefined ? "undefined" : JSON.stringify(value);
|
2020-01-17 04:22:05 +08:00
|
|
|
}
|
2015-01-07 06:02:44 +08:00
|
|
|
|
2017-12-20 16:53:33 +08:00
|
|
|
new DefinePlugin(definitions).apply(compiler);
|
2016-12-30 07:26:26 +08:00
|
|
|
}
|
|
|
|
}
|
2016-11-09 23:25:00 +08:00
|
|
|
|
|
|
|
module.exports = EnvironmentPlugin;
|