babel-plugin-transform-globals-defs
v0.1.0
Published
Transform global definitions that are available at build time
Downloads
4
Readme
babel-plugin-transform-global-defs
Transform Global definitions that are available at build time
Install
npm install babel-plugin-transform-global-defs
Options
{
"global_defs": {
"process.env": {
"NODE_ENV": "production"
}
}
}
In
if (process.env.NODE_ENV !== 'production') {
DEBUG = true;
}
Out
if ('production' !== 'production') {
DEBUG = true;
}