atom-coffee2-transpiler
This project implements an Atom package transpiler that transpiles your package's files with coffeescript 2.
Usage
-
Install the package
npm install --save atom-coffee2-transpiler
-
Add an
atomTranspilers
entry to yourpackage.json
{
...
"atomTranspilers": [
{
"glob": "**/*.coffee",
"transpiler": "atom-coffee2-transpiler"
}
]
}