How to add assembly step for leiningen?

So, I have an application built using Foundation and Ring, and I want to be able to build my own CSS Foundation when I run lein ring server or the like. In particular, I would like to be able to add a step to the compass compile [path] runs. What is the idiomatic way to do this?

+4
source share
1 answer

I would say Leiningen Hooks is the right and idiomatic way to do this: Hooks .

You can change the behavior of inline tasks to an extent using hooks. The hook functionality is provided by the Robert Hook Library, which is part of Leiningen.

+2
source

Source: https://habr.com/ru/post/1496694/


All Articles