Package Exports
- babel-plugin-minify-replace
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (babel-plugin-minify-replace) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
babel-plugin-minify-replace
Configurable "search and replace" plugin. Replaces matching nodes in the tree with a given replacement node. For example you can replace process.NODE_ENV
with "production"
.
Example
Options
[
{
identifierName: "__DEV__",
replacement: {
type: "numericLiteral",
value: 0,
},
},
]
In
if (!__DEV__) {
foo();
}
if (a.__DEV__) {
foo();
}
Out
if (!0) {
foo();
}
if (a.__DEV__) {
foo();
}
Installation
$ npm install babel-plugin-minify-replace
Usage
Via .babelrc
(Recommended)
.babelrc
// without options
{
"plugins": ["minify-replace"]
}
// with plugins
{
"plugins": ["minify-replace", {
"identifierName": "__DEV__",
"replacement": {
"type": "booleanLiteral",
"value": true
}
}]
}
Via CLI
$ babel --plugins minify-replace script.js
Via Node API
require("babel-core").transform("code", {
plugins: ["minify-replace"]
});