From 72e7e35b4c2acdf0739d0a4a55f4f67a47ca4f79 Mon Sep 17 00:00:00 2001 From: yamilmedina Date: Tue, 30 Apr 2024 15:39:22 +0200 Subject: [PATCH] fix: prefix with npx to build --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 4c13ca7..744d77e 100644 --- a/package.json +++ b/package.json @@ -4,7 +4,7 @@ "description": "An Action to take info from kotlinx-benchmark outputs and display them in a table as a pull request comment", "main": "dist/index.js", "scripts": { - "build": "ncc build src/index.ts -m -o dist/", + "build": "npx ncc build src/index.ts -m -o dist/", "test": "npx jest", "all": "npm run test && npm run build" },