mirror of
https://github.com/meteor/meteor.git
synced 2026-05-02 03:01:46 -04:00
36 lines
394 B
Markdown
36 lines
394 B
Markdown
# babel-preset-meteor
|
|
|
|
> Babel preset for all Meteor plugins.
|
|
|
|
## Install
|
|
|
|
```sh
|
|
$ npm install --save-dev babel-preset-meteor
|
|
```
|
|
|
|
## Usage
|
|
|
|
### Via `.babelrc` (Recommended)
|
|
|
|
**.babelrc**
|
|
|
|
```json
|
|
{
|
|
"presets": ["meteor"]
|
|
}
|
|
```
|
|
|
|
### Via CLI
|
|
|
|
```sh
|
|
$ babel script.js --presets meteor
|
|
```
|
|
|
|
### Via Node API
|
|
|
|
```javascript
|
|
require("babel-core").transform("code", {
|
|
presets: ["meteor"]
|
|
});
|
|
```
|