Grunt plugin for transpiling ES6 to ES5 using es6-transpiler. Version 1.0.1 is the only published version, dated circa 2015, and appears to be in maintenance mode with no updates since. It provides a basic Grunt task to transpile JavaScript files from ES6 to ES5. Compared to alternative tools like Babel, es6-transpiler has limited support and is largely obsolete. The plugin has a single grunt task `es6transpiler` that accepts source files and options.
npm install grunt-es6-transpiler-expandNo compatibility data collected yet for this library.
Verified import paths — ran on the pinned version, not inferred.
Basic Gruntfile setup to transpile a single ES6 file to ES5 using the es6transpiler task.
Switch to @babel/core and @babel/preset-env with grunt-babel.
Verify you intend to use this specific fork; consider using the original or a maintained alternative.
Upgrade to a modern transpiler like Babel.
Run: npm install es6-transpiler --save-dev
Use Babel for complete ES6+ support.
Add grunt.loadNpmTasks('grunt-es6-transpiler-expand'); to Gruntfile.Run: npm install es6-transpiler --save-dev
Check source files for valid ES6 syntax; es6-transpiler does not support all ES6 features. Consider using Babel.