Popularity
3.2
Declining
Activity
0.0
Stable
15
4
3
Monthly Downloads: 26
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.
-
Rebar3
Erlang build tool that makes it easy to compile and test Erlang applications and releases. -
reaxt
Use React template into your Elixir application for server rendering -
rebar3_auto
Rebar3 plugin to auto compile and reload on file change. -
rebar3_eqc
A rebar3 plugin to enable the execution of Erlang QuickCheck properties -
rebar3_diameter_compiler
Compile Diameter .dia files on Erlang Rebar3 projects -
ExMake
A modern, scriptable, dependency-based build tool loosely based on Make principles. -
rebar3_exunit
A plugin to run Elixir ExUnit tests from rebar3 build tool -
rebar3_neotoma_plugin
Rebar3 neotoma (Parser Expression Grammar) compiler -
rebar3_protobuffs
rebar3 protobuffs provider using protobuffs from Basho -
rebar3_asn1_compiler
Plugin for compiling ASN.1 modules with Rebar3. -
dismake
a "compiler" (as in `Mix.compilers`) for Elixir that just runs make -
rebar3_idl_compiler
This is a plugin for compiling Erlang IDL files using Rebar3.
Tired of breaking your main and manually rebasing outdated pull requests?
Managing outdated pull requests is time-consuming. Mergify's Merge Queue automates your pull request management & merging. It's fully integrated to GitHub & coordinated with any CI. Start focusing on code. Try Mergify for free.
Promo
blog.mergify.com
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