babel-plugin-transform-global-defs

0.1.1 • Public • Published

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;
}

Readme

Keywords

none

Package Sidebar

Install

npm i babel-plugin-transform-global-defs

Weekly Downloads

30

Version

0.1.1

License

MIT

Last publish

Collaborators

  • boopathi