grunt-babel-fixed

6.0.0 • Public • Published

grunt-babel Build Status

Use next generation JavaScript, today, with Babel

Issues with the output should be reported on the Babel issue tracker.

Install

$ npm install --save-dev grunt-babel babel-preset-es2015

Usage

require('load-grunt-tasks')(grunt); // npm install --save-dev load-grunt-tasks
 
grunt.initConfig({
    babel: {
        options: {
            sourceMap: true,
            presets: ['es2015']
        },
        dist: {
            files: {
                'dist/app.js': 'src/app.js'
            }
        }
    }
});
 
grunt.registerTask('default', ['babel']);

Options

See the Babel options, except for filename which is handled for you.

License

MIT © Sindre Sorhus

Package Sidebar

Install

npm i grunt-babel-fixed

Weekly Downloads

0

Version

6.0.0

License

MIT

Last publish

Collaborators

  • jpike