Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/cmeiklejohn/rebar_js_plugin
Rebar extensions for JavaScript development in Erlang applications.
https://github.com/cmeiklejohn/rebar_js_plugin
Last synced: 13 days ago
JSON representation
Rebar extensions for JavaScript development in Erlang applications.
- Host: GitHub
- URL: https://github.com/cmeiklejohn/rebar_js_plugin
- Owner: cmeiklejohn
- License: apache-2.0
- Created: 2012-08-03T23:10:51.000Z (over 12 years ago)
- Default Branch: master
- Last Pushed: 2012-08-07T00:49:33.000Z (over 12 years ago)
- Last Synced: 2024-11-08T15:50:39.388Z (2 months ago)
- Homepage:
- Size: 105 KB
- Stars: 2
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Rebar JS Plugin
Rebar extensions for JavaScript development with Erlang. Metapackage combining
* [rebar_js_concatenator_plugin](https://github.com/cmeiklejohn/rebar_js_concatenator_plugin)
* [rebar_js_uglifier_plugin](https://github.com/cmeiklejohn/rebar_js_uglifier_plugin)
* [rebar_js_minispade_plugin](https://github.com/cmeiklejohn/rebar_js_minispade_plugin)
* [rebar_js_handlebars_plugin](https://github.com/cmeiklejohn/rebar_js_handlebars_plugin)## Installation
Specify ```rebar_js_plugin``` as a dependency in your ```rebar.config```.
```erlang
{deps, [
{rebar_js_plugin, ".*",
{git, "git://github.com/cmeiklejohn/rebar_js_plugin.git", {branch, "master"}}}
]}.
```Then, configure your plugins in your ```rebar.config``` with the plugins
you'd like to use. This module is usageful for getting around rebar
single plugin_dir errors.```erlang
{plugins, [rebar_js_concatenator_plugin, rebar_js_uglifier_plugin]}.
```