summary refs log tree commit diff
path: root/cdn/package.json
diff options
context:
space:
mode:
authorNobody <git@n0bodysec.com>2022-07-19 03:58:01 -0300
committerErkin Alp Güney <erkinalp9035@gmail.com>2022-07-19 10:20:36 +0300
commita0914a126224371a2b3a46664bb027e36a8ed320 (patch)
tree79fcb6d650c494894eae93024567751e169f20b2 /cdn/package.json
parentDisplay offline members in member list (#788) (diff)
downloadserver-a0914a126224371a2b3a46664bb027e36a8ed320.tar.xz
chore: fix package.json scripts
npx should be used to execute local package binaries
Diffstat (limited to 'cdn/package.json')
-rw-r--r--cdn/package.json2
1 files changed, 1 insertions, 1 deletions
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"
 	},