Bruno BELANYI
bc4db561ca
All checks were successful
ci/woodpecker/push/check Pipeline was successful
This means regenerating all the tree-sitter files, and adding newly generated outputs (mostly new bindings). The `--apply-all-captures` flag has been removed, it is now the default (and only) matching behaviour.
19 lines
294 B
Makefile
19 lines
294 B
Makefile
.PHONY: all
|
|
all:
|
|
tree-sitter generate
|
|
|
|
.PHONY: test
|
|
test: all
|
|
tree-sitter test
|
|
nvim-test-runner
|
|
|
|
.PHONY: update-tests
|
|
update-tests: all
|
|
tree-sitter test -u
|
|
nvim-test-runner
|
|
|
|
.PHONY: playground
|
|
playground:
|
|
nix shell pkgs#emscripten --command tree-sitter build-wasm
|
|
tree-sitter playground
|