A Grunt plugin (v0.6.0) that transpiles ES6 module syntax (import/export) into AMD, CommonJS, or globals using the es6-module-transpiler. Requires Grunt ~0.4.1 and Node >= 0.8.0. It provides a single custom task named 'es6-module-transpiler' for Grunt build systems. Unlike Babel or TypeScript, this package only handles module syntax, not full ES6-to-ES5 transpilation. The project appears unmaintained (last release 2015) and is superseded by modern tools.
npm install grunt-es6-module-transpilerNo compatibility data collected yet for this library.
Verified import paths — ran on the pinned version, not inferred.
Demonstrates installing, loading, configuring, and running the grunt-es6-module-transpiler task.
Switch to @babel/core and @babel/preset-env, or use TypeScript with esModuleInterop.
Downgrade Grunt to 0.4.x, or migrate to a different module transpiler.
Use a full transpiler (e.g., Babel) for complete ES6 support.
Always use quotes: grunt.initConfig({ 'es6-module-transpiler': {...} });Ensure you have run 'npm install grunt-es6-module-transpiler --save-dev' and added 'grunt.loadNpmTasks('grunt-es6-module-transpiler');'.Run 'npm install es6-module-transpiler --save-dev'.
Add options with at least 'type': 'amd' or 'cjs'.