Registry / devops / brunch-es6-transpiler

brunch-es6-transpiler

JSON →
library0.0.1jsnpmunverified

A Brunch plugin that transpiles ES6 (ES2015) JavaScript to ES5 using the es6-transpiler library. Version 0.0.1 is the only release, with no updates since 2015; the plugin is effectively abandoned. It integrates as a Brunch build pipeline plugin, but the underlying es6-transpiler library has long been superseded by Babel. This plugin lacks active maintenance and may break with modern Brunch versions. It was an early attempt at ES6 transpilation for Brunch projects, now obsolete.

npm install brunch-es6-transpiler
INSTALL
IMPORT
SIG · BRUNCH-ES6-TRANSPI
B
brunch-es6-transpiler
devopsjavascriptv0.0.1
harness data pending
Install & Compatibility
Where this runs

No compatibility data collected yet for this library.

Code
Verified usage

Verified import paths — ran on the pinned version, not inferred.

BrunchES6Transpiler
module.exports = {plugins: {brunchES6Transpiler: {}} }
const BrunchES6Transpiler = require('brunch-es6-transpiler');
Plugin is configured via Brunch config, not directly imported.

Configures the brunch-es6-transpiler plugin in a Brunch project to transpile ES6 files.

// brunch-config.js module.exports = { plugins: { brunchES6Transpiler: { // Options for es6-transpiler transpile: true, blockBinding: true, globals: {} } } };
Debug
Known issues
breakingPlugin requires older Brunch versions (pre-2.0); incompatible with Brunch 2+.
fix
Use a modern transpiler plugin like babel-brunch.
affects: >=2.0.0
deprecatedes6-transpiler library is unmaintained and doesn't support full ES2015. Use Babel instead.
fix
Switch to babel-brunch or @babel/preset-env.
affects: *
gotchaPlugin name in Brunch config uses camelCase 'brunchES6Transpiler', not hyphens.
fix
Use 'brunchES6Transpiler' as the config key.
affects: *
Errors
Common errors & fixes
Error: Cannot find module 'es6-transpiler'
es6-transpiler not installed as a dependency.
fix
Run 'npm install es6-transpiler --save'
TypeError: brunchES6Transpiler is not a function
Plugin not properly configured in brunch-config.js.
fix
Ensure the plugin is listed under the 'plugins' object in brunch-config.js, not as a separate require.
Upgrade
Version history
0.0.1latest on npm
Audit
Dependencies
brunchrequiredRequired peer for Brunch plugin system
es6-transpilerrequiredCore transpilation library
Agent activity
19 hits · last 30 days
node
18
Resources
brunch-es6-transpiler — npm install brunch-es6-transpiler · libregistry