Important: This documentation covers Yarn 1 (Classic).
For Yarn 2+ docs and migration guide, see yarnpkg.com.

Package detail

babel-plugin-conditional-compilation

herrmanno5k0.0.1

c/c++ style conditional compilation

babel, conditional, compile, compilation, constant, babel-plugin

readme

babel-plugin-conditional-compilation

c/c++ style conditional compilation

Example

In

.babelrc

"plugins": [
    ["conditional-compilation", {
        "DEBUG": 2
    }]
]

somfile.js

let DEBUG;
"#if DEBUG > 1";
DEBUG = 1;
"#endif";

Out

somfile.js

let DEBUG;

DEBUG = 1;

For complete examples look at test directory.

Installation

$ npm install babel-plugin-conditional-compilation

Usage

.babelrc

{
  "plugins": ["conditional-compilation", {/* compile-time constants */}]
}

Via Node API

require("babel-core").transform("code", {
  plugins: ["conditional-compilation", {/* compile-time constants*/}]
});