summary refs log tree commit diff
path: root/bundle
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 /bundle
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 'bundle')
-rw-r--r--bundle/package.json4
1 files changed, 2 insertions, 2 deletions
diff --git a/bundle/package.json b/bundle/package.json
index d44d257f..c050a302 100644
--- a/bundle/package.json
+++ b/bundle/package.json
@@ -4,7 +4,7 @@
 	"description": "",
 	"main": "src/start.js",
 	"scripts": {
-		"setup": "node scripts/install.js && npm install --no-optional && ts-patch install -s && patch-package --patch-dir ../api/patches/ && npm run build",
+		"setup": "node scripts/install.js && npm install --no-optional && npx ts-patch install -s && npx patch-package --patch-dir ../api/patches/ && npm run build",
 		"build": "node scripts/build.js",
 		"start": "node scripts/build.js && node dist/bundle/src/start.js",
 		"start:bundle": "node dist/bundle/src/start.js",
@@ -111,4 +111,4 @@
 		"typescript-json-schema": "^0.50.1",
 		"ws": "^7.4.2"
 	}
-}
\ No newline at end of file
+}