querysub 0.197.0 → 0.199.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
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "querysub",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.199.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",
|
|
@@ -32,15 +32,11 @@
|
|
|
32
32
|
"rdtsc-now": "^0.4.2"
|
|
33
33
|
},
|
|
34
34
|
"scripts": {
|
|
35
|
-
"
|
|
36
|
-
"serversharded": "yarn server --authority ./pathremain.json & yarn server --authority ./patha.json & yarn server --authority ./pathb.json & yarn server --authority ./pathc.json & yarn server --authority ./pathd.json",
|
|
37
|
-
"function": "yarn typenode ./src/3-path-functions/PathFunctionRunnerMain.ts --function --local",
|
|
38
|
-
"deploy": "yarn typenode ./src/4-deploy/deployMain.ts --domain querysub.com --local",
|
|
35
|
+
"servershardedtest": "yarn server --authority ./pathremain.json & yarn server --authority ./patha.json & yarn server --authority ./pathb.json & yarn server --authority ./pathc.json & yarn server --authority ./pathd.json",
|
|
39
36
|
"type": "yarn tsc --noEmit",
|
|
40
37
|
"depend": "yarn --silent depcruise src --include-only \"^src\" --config --output-type dot | dot -T svg > dependency-graph.svg",
|
|
41
38
|
"test": "yarn typenode ./src/test/test.tsx --local",
|
|
42
|
-
"test2": "yarn typenode ./src/4-dom/qreactTest.tsx --local"
|
|
43
|
-
"machine-apply": "yarn typenode ./src/deployManager/deployApplyMain.ts"
|
|
39
|
+
"test2": "yarn typenode ./src/4-dom/qreactTest.tsx --local"
|
|
44
40
|
},
|
|
45
41
|
"bin": {
|
|
46
42
|
"deploy": "./bin/deploy.js",
|
|
@@ -48,7 +44,7 @@
|
|
|
48
44
|
"server-public": "./bin/server-public.js",
|
|
49
45
|
"function": "./bin/function.js",
|
|
50
46
|
"function-public": "./bin/function-public.js",
|
|
51
|
-
"machine": "./bin/machine
|
|
47
|
+
"machine": "./bin/machine.js",
|
|
52
48
|
"machine-alwaysup": "./bin/machine-alwaysup.js",
|
|
53
49
|
"setup-machine": "./bin/setup-machine.js",
|
|
54
50
|
"gc": "./bin/gc.js",
|
|
@@ -34,6 +34,8 @@ export async function shutdown() {
|
|
|
34
34
|
if (shuttingDown) {
|
|
35
35
|
return;
|
|
36
36
|
}
|
|
37
|
+
require("debugbreak")(2);
|
|
38
|
+
debugger;
|
|
37
39
|
console.log(red("Starting shutdown"));
|
|
38
40
|
shuttingDown = true;
|
|
39
41
|
const { authorityStorage } = await import("../0-path-value-core/pathValueCore");
|