Skip to content

Commit

Permalink
Drop explicit npx calls, since npm puts the binary on the path
Browse files Browse the repository at this point in the history
  • Loading branch information
hendrikvanantwerpen committed Sep 9, 2024
1 parent 27efab5 commit d09765f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,8 @@
"url": "https://github.com/elixir-lang/tree-sitter-elixir.git"
},
"scripts": {
"build": "npx tree-sitter-cli generate --no-bindings",
"test": "npx tree-sitter-cli test",
"build": "tree-sitter generate --no-bindings",
"test": "tree-sitter test",
"format": "prettier --trailing-comma es5 --write grammar.js && clang-format -i src/scanner.c",
"format-check": "prettier --trailing-comma es5 --check grammar.js && cat src/scanner.c | clang-format src/scanner.c | diff src/scanner.c -",
"install": "node-gyp-build",
Expand Down

0 comments on commit d09765f

Please sign in to comment.