20 lines
386 B
Makefile
20 lines
386 B
Makefile
default: testBoth
|
|
|
|
[working-directory: 'packages/npm-modules']
|
|
genNpmModules:
|
|
nix run nixpkgs#node2nix -- -i packages.json
|
|
|
|
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}}
|