querysub 0.243.0 → 0.244.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.243.0",
3
+ "version": "0.244.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",
@@ -366,6 +366,7 @@ async function quickIsOutdated() {
366
366
  if (!screen) return true;
367
367
 
368
368
  let folder = root + screenName + "/";
369
+ await fs.promises.mkdir(folder, { recursive: true });
369
370
  let parameterPath = folder + "/parameters.json";
370
371
  if (!fs.existsSync(parameterPath)) return true;
371
372
  let prevParameters = await fs.promises.readFile(parameterPath, "utf8");