HashNuke / coffee_rotor

Rotor plugin to compile CoffeeScript files

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

CoffeeRotor

This is a Rotor to compile CoffeeScript files.

Usage

The CoffeeRotor module provides the coffee rotor. And this is how you call it

CoffeeRotor.coffee(files)

Example config using the coffee rotor

# This goes in the place you are configuring Rotor

import Rotor.BasicRotors
import CoffeeRotor

output_path = "priv/static/assets/app.js"
Rotor.watch :coffeescripts, ["priv/assets/javascripts/*.coffee"], fn(_changed_files, all_files)->
  read_files(all_files)
  |> coffee
  |> concat
  |> output_to(output_path)
end

About

Rotor plugin to compile CoffeeScript files

License:MIT License


Languages

Language:Elixir 97.0%Language:CoffeeScript 3.0%