From d09765f42e9e96871ef2edc60e3bfdfd7ba01514 Mon Sep 17 00:00:00 2001 From: Hendrik van Antwerpen Date: Mon, 9 Sep 2024 10:42:45 +0200 Subject: [PATCH] Drop explicit npx calls, since npm puts the binary on the path --- package.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index a2713c9..9d6de5f 100644 --- a/package.json +++ b/package.json @@ -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",