Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/artarf/atom-coffee2-transpiler

A transpiler for Atom packages that processes code with coffeescript 2
https://github.com/artarf/atom-coffee2-transpiler

atom coffeescript transpiler

Last synced: 14 days ago
JSON representation

A transpiler for Atom packages that processes code with coffeescript 2

Awesome Lists containing this project

README

        

# atom-coffee2-transpiler

This project implements an Atom package transpiler that transpiles your package's files with coffeescript 2.

## Usage

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"
}
]
}
```