A transpiler for Atom packages that processes code with coffeescript 2
npm install atom-coffee2-transpilerThis project implements an [Atom package transpiler]() that transpiles your package's files with coffeescript 2.
1. Install the package
npm install --save atom-coffee2-transpiler
2. Add an atomTranspilers entry to your package.json
``javascript``
{
...
"atomTranspilers": [
{
"glob": "*/.coffee",
"transpiler": "atom-coffee2-transpiler"
}
]
}