node: remove npx from build script, (#3396)

* node: remove `npx` from build script,
this broke flathub build

* add pr number to changelog
This commit is contained in:
Simon Laux
2022-06-04 17:03:03 +02:00
committed by GitHub
parent cd27c143c3
commit 0d1d1a25da
2 changed files with 2 additions and 2 deletions

View File

@@ -42,7 +42,7 @@
"build": "npm run build:core && npm run build:bindings",
"build:bindings": "npm run build:bindings:c && npm run build:bindings:ts",
"build:bindings:c": "npm run build:bindings:c:c && npm run build:bindings:c:postinstall",
"build:bindings:c:c": "cd node && npx node-gyp rebuild",
"build:bindings:c:c": "cd node && node-gyp rebuild",
"build:bindings:c:postinstall": "node node/scripts/postinstall.js",
"build:bindings:ts": "cd node && tsc",
"build:core": "npm run build:core:rust && npm run build:core:constants",