diff options
| author | Andrey Listopadov <andreyorst@gmail.com> | 2022-08-21 21:25:30 +0300 |
|---|---|---|
| committer | Andrey Listopadov <andreyorst@gmail.com> | 2022-08-21 21:25:30 +0300 |
| commit | 3f738c3368ddaadbaa4372443cece90651d1ccd2 (patch) | |
| tree | 4ebcceeecdd01e8375b7b7f0a7172b2fe2620f09 /README.md | |
| parent | 9bbe5ddf93c7c8b17a73318bc89dd1330f4f3f59 (diff) | |
update docs, readme and cnagelog for v1.0.0 release
Diffstat (limited to 'README.md')
| -rw-r--r-- | README.md | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -9,7 +9,7 @@ Therefore certain functions were altered to better suit the domain. Clone library into your project or put it as a git submodule: - $ git clone https://gitlab.com/andreyorst/fennel-cljlib cljlib + $ git clone --recursive https://gitlab.com/andreyorst/fennel-cljlib cljlib Now you can require `:cljlib` from Fennel: @@ -20,9 +20,9 @@ Now you can require `:cljlib` from Fennel: Optionally precompile the library to make it load slightly faster: - $ cd cljlib; make + $ cd cljlib; COMPILEFLAGS="--require-as-include" make -This will compile `init.fnl` into `init.lua`, so `require` should honor Lua files over Fennel files. +This will compile `init.fnl` into `init.lua`, with all dependencies included, so `require` should honor Lua files over Fennel files. It is also possible to use this library from Lua this way. ## Documentation |