Popularity
3.1
Declining
Activity
0.0
Stable
15
3
3
Monthly Downloads: 25
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 -
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_diameter_compiler
Compile Diameter .dia files on Erlang Rebar3 projects -
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. -
rebar3_idl_compiler
This is a plugin for compiling Erlang IDL files using Rebar3. -
dismake
a "compiler" (as in `Mix.compilers`) for Elixir that just runs make
Elixir and Phoenix Application Security Platform
Replace Snyk, reCaptcha, and Cloudflare bot defense with the only application security platform built for Elixir and Phoenix.
Promo
paraxial.io
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