commit b979cc51ba34921de5e169edd453ea5bcd7f825b parent 37271ebe12c1e03551b22e338cddd74517afbf93 Author: mtmn <miro@haravara.org> Date: Sun, 19 Apr 2026 19:31:17 +0200 chore: add dhall to json recipe Diffstat:
| M | justfile | | | 12 | ++++++++---- |
1 file changed, 8 insertions(+), 4 deletions(-)
diff --git a/justfile b/justfile @@ -1,18 +1,22 @@ help: @just --list + +# Convert users.dhall to users.json +generate-users-json: + dhall-to-json --file users.dhall > users.json + # Setup npm and spago -setup: +setup: generate-users-json npm install npx spago install # Build the project locally -build: +build: generate-users-json npm run build # Build a release -release: - dhall-to-json --file users.dhall > users.json +release: generate-users-json npm run release # Run the project locally