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é
- Host: GitHub
- URL: https://github.com/w8r/grunt-buble
- Owner: w8r
- License: mit
- Created: 2017-06-21T16:13:25.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2017-06-22T08:07:39.000Z (about 9 years ago)
- Last Synced: 2025-08-09T07:31:42.731Z (12 months ago)
- Topics: buble, es2015, es6, grunt, plugin, task, transpiler
- Language: JavaScript
- Size: 30.3 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
- License: license
Awesome Lists containing this project
README
# grunt-buble [](https://www.npmjs.com/package/grunt-buble) [](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)