sindresorhus / grunt-regenerator

Transpile ES2015 generator functions to ES5

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Deprecated

Use Babel instead.


grunt-regenerator Build Status

Transpile ES2015 generator functions to ES5 with Regenerator

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

Install

$ npm install --save-dev grunt-regenerator

Usage

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

grunt.initConfig({
	regenerator: {
		options: {
			includeRuntime: true
		},
		dist: {
			files: {
				'dist/main.js': 'src/main.js'
			}
		}
	}
});

grunt.registerTask('default', ['regenerator']);

Options

includeRuntime

Type: boolean
Default: false

A small runtime library (less than 1KB compressed) is required to provide the wrapGenerator function. You can install it either as a CommonJS module or as a standalone .js file, whichever you prefer.

License

MIT © Sindre Sorhus

About

Transpile ES2015 generator functions to ES5

License:MIT License


Languages

Language:JavaScript 100.0%