Skip to content

Latest commit

 

History

History
30 lines (20 loc) · 599 Bytes

README.md

File metadata and controls

30 lines (20 loc) · 599 Bytes

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