querysub 0.595.0 → 0.597.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +3 -2
- package/src/config.ts +1 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "querysub",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.597.0",
|
|
4
4
|
"main": "index.js",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"note1": "note on node-forge fork, see https://github.com/digitalbazaar/forge/issues/744 for details",
|
|
@@ -65,6 +65,7 @@
|
|
|
65
65
|
"acme-client": "^5.0.0",
|
|
66
66
|
"cbor-x": "^1.6.0",
|
|
67
67
|
"chalk": "^5.2.0",
|
|
68
|
+
"debugbreak": "^0.11.0",
|
|
68
69
|
"diskusage": "^1.2.0",
|
|
69
70
|
"fs-ext": "^2.0.0",
|
|
70
71
|
"js-sha256": "https://github.com/sliftist/js-sha256",
|
|
@@ -74,7 +75,7 @@
|
|
|
74
75
|
"node-forge": "https://github.com/sliftist/forge#e618181b469b07bdc70b968b0391beb8ef5fecd6",
|
|
75
76
|
"pako": "^2.1.0",
|
|
76
77
|
"peggy": "^5.0.6",
|
|
77
|
-
"sliftutils": "^1.7.
|
|
78
|
+
"sliftutils": "^1.7.80",
|
|
78
79
|
"socket-function": "^1.2.29",
|
|
79
80
|
"terser": "^5.31.0",
|
|
80
81
|
"typenode": "^6.6.1",
|
package/src/config.ts
CHANGED
|
@@ -1,6 +1,5 @@
|
|
|
1
1
|
import { isNode, isNodeTrue } from "socket-function/src/misc";
|
|
2
2
|
import yargs from "yargs";
|
|
3
|
-
import debugbreak from "debugbreak";
|
|
4
3
|
import { MaybePromise } from "socket-function/src/types";
|
|
5
4
|
import { parseArgsFactory } from "./misc/rawParams";
|
|
6
5
|
import { lazy } from "socket-function/src/caching";
|
|
@@ -155,7 +154,7 @@ export function devDebugbreak() {
|
|
|
155
154
|
return;
|
|
156
155
|
}
|
|
157
156
|
if (yargObj.nobreak) return;
|
|
158
|
-
debugbreak(2);
|
|
157
|
+
require("debugbreak")(2);
|
|
159
158
|
debugger;
|
|
160
159
|
}
|
|
161
160
|
let debuggedEnabled = false;
|