obsidian-testing-framework 0.4.2 → 0.4.3

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.
@@ -85,6 +85,7 @@ export async function generateVaultConfig(vault, vaultHash, concurrent, vaultPoo
85
85
  ts: Date.now(),
86
86
  };
87
87
  await writeFile(obsidianConfigFile, JSON.stringify(json, null, "\t"));
88
+ await writeFile(path.join(configLocation, `${vaultHash}.json`), "{}");
88
89
  return vaultHash;
89
90
  }
90
91
  else {
@@ -97,6 +98,5 @@ export async function generateVaultConfig(vault, vaultHash, concurrent, vaultPoo
97
98
  finally {
98
99
  await releaser();
99
100
  }
100
- await writeFile(path.join(configLocation, `${vaultHash}.json`), "{}");
101
101
  return vaultHash;
102
102
  }
package/package.json CHANGED
@@ -29,7 +29,7 @@
29
29
  ".": "./lib/index.js"
30
30
  },
31
31
  "readme": "",
32
- "version": "0.4.2",
32
+ "version": "0.4.3",
33
33
  "main": "./lib/index.js",
34
34
  "typings": "./lib/index.d.ts",
35
35
  "repository": {