0.0.2 • Published 4 years ago

atom-coffee2-transpiler v0.0.2

Weekly downloads
4
License
MIT
Repository
github
Last release
4 years ago

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

{
  ...
  "atomTranspilers": [
    {
      "glob": "**/*.coffee",
      "transpiler": "atom-coffee2-transpiler"
    }
  ]
}