babel-plugin-env-constants
TypeScript icon, indicating that this package has built-in type declarations

4.0.0 • Public • Published

babel-plugin-env-constants

Build Status npm version

Transform __DEV__, __PROD__, and __TEST__ constants to process.env.NODE_ENV conditionals.

// Input
if (__DEV__) {
  console.log('Some message in development!');
}

const value = __TEST__ ? 0 : 100;
// Output
if (process.env.NODE_ENV !== 'production') {
  console.log('Some message in development!');
}

const value = process.env.NODE_ENV === 'test' ? 0 : 100;

Installation

yarn add --dev babel-plugin-env-constants

Add the plugin to your root babel.config.* file.

module.exports = {
  plugins: ['babel-plugin-env-constants'],
};

And if you are using TypeScript, you'll most likely need to declare the globals yourself.

declare global {
  const __DEV__: boolean;
  const __PROD__: boolean;
  const __TEST__: boolean;
}

Requirements

  • Linux, OSX, Windows
  • Node 14.15+

Dependencies (0)

    Dev Dependencies (0)

      Package Sidebar

      Install

      npm i babel-plugin-env-constants

      Weekly Downloads

      4,550

      Version

      4.0.0

      License

      MIT

      Unpacked Size

      8.31 kB

      Total Files

      13

      Last publish

      Collaborators

      • milesj