Registry / devops / eustia-babel

eustia-babel

JSON →
library0.0.1jsnpmunverified

Babel transpiler plugin for the Eustia utility library generator. Version 0.0.1 provides a handler that transpiles ES6+ files via Babel presets within Eustia's build pipeline. It requires manual installation of presets (e.g., babel-preset-es2015) and is tightly coupled to Eustia's configuration format. No active development or updates observed; the package is essentially a thin wrapper around Babel, with no versions beyond 0.0.1. Alternative: use Babel directly.

devops
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.

CommonJS module; no default ESM export available.

const eustiaBabel = require('eustia-babel');

The package exports a factory function directly, not an object with a default property.

handler: require('eustia-babel')({presets: ['es2015']})

Options are passed as a plain object; see Babel documentation for available options.

const options = {presets: ['es2015']}; const handler = require('eustia-babel')(options);

Example Eustia configuration using eustia-babel to transpile .es6 files with the es2015 preset.

// In your Eustia config file (e.g., eustia.config.js) module.exports = { util: { files: 'index.html', extension: ['js', 'es6'], transpiler: [ { test: /\.es6$/, handler: require('eustia-babel')({ presets: ['es2015'] }) } ] } };
Debug
Known footguns
deprecatedPackage is unmaintained and relies on deprecated Babel presets (babel-preset-es2015).
breakingRequires explicit installation of Babel presets; missing preset will cause runtime error.
gotchaThe package exports a factory function, not an object with a default export. Common mistake: using import or .default.
Upgrade
Version history

Breaking-change detection hasn't run for this library yet.

Audit
Security & dependencies

CVE tracking and dependency tree are planned for a later release.

Agent activity
10 hits · last 30 days
gptbot
3
ahrefsbot
3
claudebot
3
bingbot
1
Resources