Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/cmeiklejohn/rebar_js_stylus_plugin
Rebar support for compilation of Stylus files.
https://github.com/cmeiklejohn/rebar_js_stylus_plugin
Last synced: about 2 months ago
JSON representation
Rebar support for compilation of Stylus files.
- Host: GitHub
- URL: https://github.com/cmeiklejohn/rebar_js_stylus_plugin
- Owner: cmeiklejohn
- License: apache-2.0
- Created: 2012-08-07T19:44:56.000Z (over 12 years ago)
- Default Branch: master
- Last Pushed: 2013-04-26T13:02:20.000Z (over 11 years ago)
- Last Synced: 2024-10-26T08:56:54.274Z (2 months ago)
- Language: Erlang
- Size: 107 KB
- Stars: 4
- Watchers: 3
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Rebar JS Stylus Plugin
Preprocess stylus files during compilation of your Erlang/OTP
application.## Installation
Specify ```rebar_js_stylus_plugin``` as a dependency in your ```rebar.config```.
```erlang
{deps, [
{rebar_js_stylus_plugin, ".*",
{git, "git://github.com/cmeiklejohn/rebar_js_stylus_plugin.git", {branch, "master"}}}
]}.
```Then, configure as a plugin in your ```rebar.config```.
```erlang
{plugins, [rebar_js_stylus_plugin]}.
```