obsidian-plugin-config 1.5.1 → 1.5.2
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/bin/obsidian-inject.js +1 -1
- package/package.json +1 -1
- package/scripts/build-npm.ts +2 -2
- package/versions.json +2 -1
package/bin/obsidian-inject.js
CHANGED
package/package.json
CHANGED
package/scripts/build-npm.ts
CHANGED
|
@@ -268,8 +268,8 @@ async function buildAndPublishNpm(): Promise<void> {
|
|
|
268
268
|
rl.close();
|
|
269
269
|
}
|
|
270
270
|
if (doUpdate) {
|
|
271
|
-
console.log(` ⏳ Waiting
|
|
272
|
-
await new Promise(resolve => setTimeout(resolve,
|
|
271
|
+
console.log(` ⏳ Waiting 10s for NPM registry propagation...`);
|
|
272
|
+
await new Promise(resolve => setTimeout(resolve, 10000));
|
|
273
273
|
execSync(
|
|
274
274
|
'npm install -g obsidian-plugin-config@latest --force --engine-strict=false',
|
|
275
275
|
{ stdio: 'inherit' }
|