A utility to centralize transpilation across multiple Atom packages. It transpiles source files from a 'src' directory (supporting async/await, JSX, ES6, and type annotations) into a 'lib' directory. Version 0.5.0 is the last release; the package appears unmaintained since 2016. Differentiator: simple CLI tool for Atom package developers wanting consistent transpilation without per-package configuration. Note: relies on Babel under the hood, but is tightly coupled to Atom's package structure.
npm install atom-js-transpilerNo compatibility data collected yet for this library.
Verified import paths — ran on the pinned version, not inferred.
Add as a prepublish script in package.json to automatically transpile src/ to lib/ before publishing.
Consider using Babel directly or a modern build system like Webpack or Rollup.
Ensure source files are in a 'src' directory and that 'lib' is writable.
Use 'prepare' instead of 'prepublish' in package.json scripts.
Run via npm script: "prepublish": "atom-js-transpile" (or specify full path).
Install as devDependency: npm install --save-dev atom-js-transpiler
No dependency data recorded yet.