Popularity
3.1
Declining
Activity
0.0
Stable
16
4
3
Monthly Downloads: 3
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.
-
ExMake
DISCONTINUED. A modern, scriptable, dependency-based build tool loosely based on Make principles.
CodeRabbit: AI Code Reviews for Developers
Revolutionize your code reviews with AI. CodeRabbit offers PR summaries, code walkthroughs, 1-click suggestions, and AST-based analysis. Boost productivity and code quality across all major languages with each PR.
Promo
coderabbit.ai

Do you think we are missing an alternative of coffee_rotor or a related project?
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