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

@@ -4,12 +4,12 @@
## Changes
- refactorings #3375
- clean up series of webxdc info messages;
`DC_EVENT_MSGS_CHANGED` is emitted on changes of existing info messages #3395
## Fixes
- do not reset our database if imported backup cannot be decrypted #3397
- node: remove `npx` from build script, this broke flathub build #3396
## 1.85.0

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",