obsidian-plugin-config 1.5.1 → 1.5.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.
@@ -3,7 +3,7 @@
3
3
  /**
4
4
  * Obsidian Plugin Config - CLI Entry Point
5
5
  * Global command: obsidian-inject
6
- * Version: 1.5.1
6
+ * Version: 1.5.3
7
7
  */
8
8
 
9
9
  import { execSync } from 'child_process';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "obsidian-plugin-config",
3
- "version": "1.5.1",
3
+ "version": "1.5.3",
4
4
  "description": "Système d'injection pour plugins Obsidian autonomes",
5
5
  "type": "module",
6
6
  "main": "src/index.ts",
@@ -269,7 +269,7 @@ async function buildAndPublishNpm(): Promise<void> {
269
269
  }
270
270
  if (doUpdate) {
271
271
  console.log(` ⏳ Waiting 15s for NPM registry propagation...`);
272
- await new Promise(resolve => setTimeout(resolve, 5000));
272
+ await new Promise(resolve => setTimeout(resolve, 15000));
273
273
  execSync(
274
274
  'npm install -g obsidian-plugin-config@latest --force --engine-strict=false',
275
275
  { stdio: 'inherit' }
package/versions.json CHANGED
@@ -49,5 +49,7 @@
49
49
  "1.4.7": "1.8.9",
50
50
  "1.4.8": "1.8.9",
51
51
  "1.5.0": "1.8.9",
52
- "1.5.1": "1.8.9"
52
+ "1.5.1": "1.8.9",
53
+ "1.5.2": "1.8.9",
54
+ "1.5.3": "1.8.9"
53
55
  }