1.0.0 • Published 8 years ago

babel-plugin-dev v1.0.0

Weekly downloads
502
License
Apache-2.0
Repository
github
Last release
8 years ago

babel-plugin-dev

Replaces __DEV__ with process.env.NODE_ENV !== 'production'.

Installation

$ npm install babel-plugin-dev

Usage

Via .babelrc (Recommended)

.babelrc

{
  "plugins": ["dev"]
}

Via CLI

$ babel --plugins dev script.js

Via Node API

require("babel-core").transform("code", {
  plugins: ["dev"]
});

Running the tests

$ git clone https://github.com/Zenwolf/babel-plugin-dev.git
$ cd babel-plugin-dev
$ npm install
$ npm test