An open API service indexing awesome lists of open source software.

https://github.com/w8r/grunt-buble

Grunt task for Bublé
https://github.com/w8r/grunt-buble

buble es2015 es6 grunt plugin task transpiler

Last synced: 11 months ago
JSON representation

Grunt task for Bublé

Awesome Lists containing this project

README

          

# grunt-buble [![npm](https://badge.fury.io/js/grunt-buble.svg)](https://www.npmjs.com/package/grunt-buble) [![CircleCI](https://circleci.com/gh/w8r/grunt-buble/tree/master.svg?style=svg)](https://circleci.com/gh/w8r/grunt-buble/tree/master)

> the blazing fast, batteries-included ES2015 compiler [Bublé](https://babeljs.io)

## Install

```
$ npm install --save-dev grunt-buble
```

## Usage

```js
require('load-grunt-tasks')(grunt); // npm install --save-dev load-grunt-tasks

grunt.initConfig({
buble: {
options: {
sourceMap: true
},
dist: {
files: {
'dist/app.js': 'src/app.js'
}
}
}
});

grunt.registerTask('default', ['buble']);
```

## Options

See the Bublé [options](https://buble.surge.sh/guide/#using-the-javascript-api)

## License

MIT [Alexander Milevski](http://w8r.name)