Skip to content
This repository has been archived by the owner on Mar 25, 2024. It is now read-only.
/ rebar_gleam Public archive

🧰 Build Gleam code with rebar3

License

Notifications You must be signed in to change notification settings

gleam-lang/rebar_gleam

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

16 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

rebar_gleam

Build Gleam projects with rebar3!

Installation

Add the plugin to your project's rebar.config.

{project_plugins, [rebar_gleam]}.

If you wish to write Gleam modules in your project as well as being able to use dependency modules written in Gleam add this configuration to your project's rebar.config:

{src_dirs, ["src", "gen/src"]}.
{profiles, [
    {test, [{src_dirs, ["src", "test", "gen/src", "gen/test"]}]}
]}.