Docs: update plugin readmes with options [ci skip]

This commit is contained in:
Henry Zhu
2016-02-10 09:53:20 -05:00
parent 606c8d05fd
commit 5a271b091a
12 changed files with 166 additions and 11 deletions

View File

@@ -14,10 +14,21 @@ $ npm install babel-plugin-transform-runtime
**.babelrc**
```json
```js
// without options
{
"plugins": ["transform-runtime"]
}
// with options
{
"plugins": [
["transform-runtime", {
"polyfill": false,
"regenerator": true
}]
]
}
```
### Via CLI