querysub 0.96.0 → 0.98.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.96.0",
3
+ "version": "0.98.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",
@@ -428,7 +428,7 @@ beforeGetNodeAllId = async () => {
428
428
  await discoveryReady.promise;
429
429
  };
430
430
  export async function onNodeDiscoveryReady() {
431
- await beforeGetNodeAllId();
431
+ await getAllNodeIds();
432
432
  }
433
433
  if (isServer()) {
434
434
  setImmediate(() => {
@@ -120,9 +120,6 @@ export function setGitURLMapping(config: {
120
120
  spec: FunctionSpec;
121
121
  resolvedPath: string;
122
122
  }) {
123
- if (os.platform() === "win32" && config.resolvedPath.startsWith("/root")) {
124
- devDebugbreak();
125
- }
126
123
  gitURLRefMappings.set(getSpecKey(config.spec), config.resolvedPath);
127
124
  }
128
125