grunt-6to5

v3.0.1
Turn ES6 code into vanilla ES5 with no runtime required
gruntplugin rewriting transformation syntax codegen desugaring javascript ecmascript language and 8 more...

grunt-6to5 Build Status

Turn ES6 code into vanilla ES5 with no runtime required using 6to5

Issues with the output should be reported on the 6to5 issue tracker.

Install

$ npm install --save-dev grunt-6to5

Usage

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

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

grunt.registerTask('default', ['6to5']);

Options

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

License

MIT © Sindre Sorhus

npm i grunt-6to5

Metadata

  • MIT
  • >=0.10.0
  • Sindre Sorhus
  • released 2/4/2015

Downloads