mirror of
https://github.com/S2-/minifyfromhtml.git
synced 2025-08-03 20:30:04 +02:00
62 lines
800 B
Markdown
62 lines
800 B
Markdown
# babel-plugin-transform-remove-console
|
|
|
|
This plugin removes all `console.*` calls.
|
|
|
|
## Example
|
|
|
|
**In**
|
|
|
|
```javascript
|
|
console.log("foo");
|
|
console.error("bar");
|
|
```
|
|
|
|
**Out**
|
|
|
|
```javascript
|
|
```
|
|
|
|
## Installation
|
|
|
|
```sh
|
|
npm install babel-plugin-transform-remove-console
|
|
```
|
|
|
|
## Usage
|
|
|
|
### Via `.babelrc` (Recommended)
|
|
|
|
**.babelrc**
|
|
|
|
```json
|
|
// without options
|
|
{
|
|
"plugins": ["transform-remove-console"]
|
|
}
|
|
```
|
|
|
|
```json
|
|
// with options
|
|
{
|
|
"plugins": [ ["transform-remove-console", { "exclude": [ "error", "warn"] }] ]
|
|
}
|
|
```
|
|
|
|
### Via CLI
|
|
|
|
```sh
|
|
babel --plugins transform-remove-console script.js
|
|
```
|
|
|
|
### Via Node API
|
|
|
|
```javascript
|
|
require("@babel/core").transform("code", {
|
|
plugins: ["transform-remove-console"]
|
|
});
|
|
```
|
|
|
|
## Options
|
|
|
|
+ `exclude` - An array of console methods to exclude from removal.
|