summary refs log tree commit diff
path: root/util
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
commit469e55fffa9ee68b6777eb7e923d5a3e07006335 (patch)
tree4f7b735b9b4bd7e9cf52bf6a8849f5b59d71009b /util
parentDisplay offline members in member list (#788) (diff)
downloadserver-469e55fffa9ee68b6777eb7e923d5a3e07006335.tar.xz
chore: fix package.json scripts
npx should be used to execute local package binaries
Diffstat (limited to '')
-rw-r--r--util/package.json2
1 files changed, 1 insertions, 1 deletions
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"