marleyvim/Justfile

21 lines
386 B
Makefile
Raw Permalink Normal View History

2025-03-15 21:43:03 +00:00
default: testBoth
2025-03-15 21:38:26 +00:00
[working-directory: 'packages/npm-modules']
genNpmModules:
nix run nixpkgs#node2nix -- -i packages.json
2025-03-15 21:43:03 +00:00
test:
git add --all && nix run .
testNix:
git add --all && nix run . -- flake.nix
testLua:
git add --all && nix run . -- init.lua
testBoth:
git add --all && nix run . -- flake.nix init.lua
testFile +files:
git add --all && nix run . -- {{files}}