atom-js-transpiler
v0.5.0
Published
I have a number of Atom packages, all with the same transpilation step. Rather than copy-paste this across packages, it seems easier to centralize it here.
Readme
atom-js-transpiler
I have a number of Atom packages, all with the same transpilation step. Rather than copy-paste this across packages, it seems easier to centralize it here.
Requirements
- Pre-transpiled source code must live in the package's
srcdirectory. - Generated source code will be written in the package's
libdirectory. - Source code may use the following features:
- async/await
- JSX
- es6
- type annotations
Usage
"scripts": {
"prepublish": "node_modules/.bin/atom-js-transpile"
}