Add --env-name option to babel-node, like babel-cli's option.
This commit is contained in:
parent
1d987fb655
commit
5bcca0123a
@ -47,6 +47,11 @@ program.option(
|
|||||||
"--config-file [path]",
|
"--config-file [path]",
|
||||||
"Path to the babel config file to use. Defaults to working directory babel.config.js",
|
"Path to the babel config file to use. Defaults to working directory babel.config.js",
|
||||||
);
|
);
|
||||||
|
program.option(
|
||||||
|
"--env-name [name]",
|
||||||
|
"The name of the 'env' to use when loading configs and plugins. " +
|
||||||
|
"Defaults to the value of BABEL_ENV, or else NODE_ENV, or else 'development'.",
|
||||||
|
);
|
||||||
program.option("-w, --plugins [string]", "", collect);
|
program.option("-w, --plugins [string]", "", collect);
|
||||||
program.option("-b, --presets [string]", "", collect);
|
program.option("-b, --presets [string]", "", collect);
|
||||||
|
|
||||||
@ -62,6 +67,7 @@ register({
|
|||||||
plugins: program.plugins,
|
plugins: program.plugins,
|
||||||
presets: program.presets,
|
presets: program.presets,
|
||||||
configFile: program.configFile,
|
configFile: program.configFile,
|
||||||
|
envName: program.envName,
|
||||||
});
|
});
|
||||||
|
|
||||||
const replPlugin = ({ types: t }) => ({
|
const replPlugin = ({ types: t }) => ({
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user