1
0
mirror of https://github.com/S2-/minifyfromhtml.git synced 2025-08-03 04:10:04 +02:00

add some packages

This commit is contained in:
s2
2018-05-05 13:54:07 +02:00
parent 48c1138518
commit ff6e20677d
3738 changed files with 215920 additions and 0 deletions

91
node_modules/babel-plugin-minify-replace/README.md generated vendored Normal file
View File

@@ -0,0 +1,91 @@
# 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**
```javascript
[
{
identifierName: "__DEV__",
replacement: {
type: "numericLiteral",
value: 0,
},
},
]
```
**In**
```javascript
if (!__DEV__) {
foo();
}
if (a.__DEV__) {
foo();
}
```
**Out**
```javascript
if (!0) {
foo();
}
if (a.__DEV__) {
foo();
}
```
## Installation
```sh
npm install babel-plugin-minify-replace
```
## Usage
### Via `.babelrc` (Recommended)
**.babelrc**
```json
// without options
{
"plugins": ["minify-replace"]
}
```
```json
// with options
{
"plugins": [
["minify-replace", {
"replacements": [{
"identifierName": "__DEV__",
"replacement": {
"type": "booleanLiteral",
"value": true
}
}]
}]
]
}
```
### Via CLI
```sh
babel --plugins minify-replace script.js
```
### Via Node API
```javascript
require("@babel/core").transform("code", {
plugins: ["minify-replace"]
});
```