From 469e55fffa9ee68b6777eb7e923d5a3e07006335 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 --- cdn/package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'cdn') diff --git a/cdn/package.json b/cdn/package.json index 46405b88..c63713c0 100644 --- a/cdn/package.json +++ b/cdn/package.json @@ -5,7 +5,7 @@ "main": "dist/index.js", "types": "src/index.ts", "scripts": { - "test": "npm run build && jest --coverage ./tests", + "test": "npm run build && npx jest --coverage ./tests", "build": "npx tsc -p .", "start": "node dist/start.js" }, -- cgit 1.5.1