Gulp plugin for the ES6 Module Transpiler, a tool that converts ES6 module syntax (import/export) to CommonJS or AMD. Version 0.2.2 is the latest, released in 2015. The plugin integrates the es6-module-transpiler into Gulp build pipelines. It supports configuration of formatters (bundle, commonjs), base path, import paths, and source maps. Key differentiators: it was part of the early ES6 module transpilation ecosystem, but it is now deprecated due to the adoption of Babel and other modern transpilers. The underlying transpiler is no longer maintained, and the plugin has not received updates since 2015.
npm install gulp-es6-module-transpilerNo compatibility data collected yet for this library.
Verified import paths — ran on the pinned version, not inferred.
Basic usage: pipe ES6 module files through the transpiler, outputting bundled CommonJS modules.
Use modern transpilers like Babel or TypeScript.
Use an AMD formatter package like es6-module-transpiler-amd-formatter for AMD output.
Specify formatter explicitly: 'bundle' or 'commonjs'.
Update es6-module-transpiler to >=0.5.0.
Run: npm install es6-module-transpiler
Use one of: 'bundle', 'commonjs', or a valid formatter object/constructor.