mirror of
https://github.com/S2-/minifyfromhtml.git
synced 2025-08-03 12:20:04 +02:00
add some packages
This commit is contained in:
61
node_modules/babel-plugin-transform-remove-console/README.md
generated
vendored
Normal file
61
node_modules/babel-plugin-transform-remove-console/README.md
generated
vendored
Normal file
@@ -0,0 +1,61 @@
|
||||
# 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.
|
Reference in New Issue
Block a user