Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

babel-plugin-conditional-compile

Package Overview
Dependencies
Maintainers
1
Versions
4
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

babel-plugin-conditional-compile

babel plugin for conditional compile

  • 0.0.2
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
284
decreased by-10.13%
Maintainers
1
Weekly downloads
 
Created
Source

#babel-plugin-conditional-compile Evaluate If statement and remove unavailable code

Conditional Compile

You may rewrite code like

if(IS_DEV){
  console.log('track infomation')
}
var foo;
if(CODE_FOR_IE){
  foo=1;
}
else if(CODE_FOR_CHROME){
  foo=2;
}

But you don't want to log until it is published and if you know the code target,you can just kick the redundant when published. The code to publish for chrome will be like.


var foo;

foo=2;

Installation

$ npm install babel-plugin-conditional-compile --save-dev

Usage

Via Node API

require("babel-core").transform("code", {
  plugins: ["conditional-compile",{
    define:{
      IS_DEV:false,
      CODE_FOR_IE:true
    }
  }]
});

The example code above will become


console.log('track infomation')

var foo;

foo=1;

Keywords

FAQs

Package last updated on 01 Jan 2016

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc