From a0914a126224371a2b3a46664bb027e36a8ed320 Mon Sep 17 00:00:00 2001 From: Nobody Date: Tue, 19 Jul 2022 03:58:01 -0300 Subject: chore: fix package.json scripts npx should be used to execute local package binaries --- util/package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'util/package.json') diff --git a/util/package.json b/util/package.json index 35d2fbbe..587e8a14 100644 --- a/util/package.json +++ b/util/package.json @@ -6,7 +6,7 @@ "types": "src/index.ts", "scripts": { "start": "npm run build && node dist/", - "test": "npm run build && jest", + "test": "npm run build && npx jest", "postinstall": "npm run build", "build": "npx tsc -p .", "typeorm": "node --require ts-node/register ./node_modules/typeorm/cli.js" -- cgit 1.4.1