Atom Transpiler Debug Tool
raw JSON → 1.0.5 verified Fri May 01 auth: no javascript deprecated
A small debugging utility for Atom packages that use the custom transpiler feature (v1.0.5, last release 2018). Analyzes package configuration to determine which files are associated with each custom transpiler and the compile cache state for each source file. Helps diagnose misconfiguration and unexpected behavior in transpiled Atom packages. No known maintenance activity since 2018; likely unmaintained.
Common errors
error Error: Cannot find module 'atom-transpiler-debug-tool' ↓
cause Package not installed locally or globally.
fix
Run 'npm install atom-transpiler-debug-tool --save-dev' in your package directory.
error TypeError: chalk is not a constructor ↓
cause Incompatible chalk version used after v1.0.3 update.
fix
Use chalk ^2.2.0 or later; remove @types/chalk if present.
Warnings
deprecated Package has no releases since 2018 and the Atom editor itself is now deprecated by GitHub. ↓
fix Consider migrating to a maintained alternative or removing dependency.
Install
npm install atom-transpiler-debug-tool yarn add atom-transpiler-debug-tool pnpm add atom-transpiler-debug-tool Quickstart
{
"name": "my-atom-package",
"scripts": {
"debug": "atom-transpiler-debug-tool"
}
}
// Install as dev dependency:
// npm install atom-transpiler-debug-tool --save-dev
// Then run:
// npm run debug