Popularity
3.2
Stable
Activity
0.0
Stable
16
4
3

Monthly Downloads: 6
Programming language: Elixir
License: MIT License
Tags: Build Tools    

coffee_rotor alternatives and similar packages

Based on the "Build Tools" category.
Alternatively, view coffee_rotor alternatives based on common mentions on social networks and blogs.

Do you think we are missing an alternative of coffee_rotor or a related project?

Add another 'Build Tools' Package

README

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