Refactor move docs (#8108)

* feat: [skip] generate readme script

* docs: [skip ci] update READMEs

* docs: [skip ci] fix code block type

* chore: [skip ci] move generator script
This commit is contained in:
Sven SAULEAU
2018-06-04 16:32:39 +02:00
committed by Henry Zhu
parent b6eaaa2496
commit b445b79734
143 changed files with 1286 additions and 11238 deletions

View File

@@ -1,35 +1,19 @@
# @babel/plugin-syntax-logical-assignment-operators
> Allow parsing of the logical assignment operators.
> Allow parsing of the logical assignment operators
## Installation
See our website [@babel/plugin-syntax-logical-assignment-operators](https://new.babeljs.io/docs/en/next/babel-plugin-syntax-logical-assignment-operators.html) for more information.
## Install
Using npm:
```sh
npm install --save-dev @babel/plugin-syntax-logical-assignment-operators
npm install --save @babel/plugin-syntax-logical-assignment-operators
```
## Usage
### Via `.babelrc` (Recommended)
**.babelrc**
```json
{
"plugins": ["@babel/plugin-syntax-logical-assignment-operators"]
}
```
### Via CLI
or using yarn:
```sh
babel --plugins @babel/plugin-syntax-logical-assignment-operators script.js
```
### Via Node API
```javascript
require("@babel/core").transform("code", {
plugins: ["@babel/plugin-syntax-logical-assignment-operators"]
});
yarn add --save @babel/plugin-syntax-logical-assignment-operators
```