obsidian-plugin-config 1.5.7 → 1.5.8

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.7
6
+ * Version: 1.5.8
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.7",
3
+ "version": "1.5.8",
4
4
  "description": "Système d'injection pour plugins Obsidian autonomes",
5
5
  "type": "module",
6
6
  "main": "src/index.ts",
@@ -6,17 +6,17 @@
6
6
  },
7
7
  "scripts": {
8
8
  "start": "yarn install && yarn dev",
9
- "dev": "npx tsx scripts/esbuild.config.ts",
10
- "build": "tsc -noEmit -skipLibCheck && npx tsx scripts/esbuild.config.ts production",
11
- "real": "npx tsx scripts/esbuild.config.ts production real",
12
- "acp": "npx tsx scripts/acp.ts",
13
- "bacp": "npx tsx scripts/acp.ts -b",
14
- "update-version": "npx tsx scripts/update-version.ts",
15
- "v": "npx tsx scripts/update-version.ts",
16
- "release": "npx tsx scripts/release.ts",
17
- "r": "npx tsx scripts/release.ts",
18
- "help": "npx tsx scripts/help.ts",
19
- "h": "npx tsx scripts/help.ts",
9
+ "dev": "tsx scripts/esbuild.config.ts",
10
+ "build": "tsc -noEmit -skipLibCheck && tsx scripts/esbuild.config.ts production",
11
+ "real": "tsx scripts/esbuild.config.ts production real",
12
+ "acp": "tsx scripts/acp.ts",
13
+ "bacp": "tsx scripts/acp.ts -b",
14
+ "update-version": "tsx scripts/update-version.ts",
15
+ "v": "tsx scripts/update-version.ts",
16
+ "release": "tsx scripts/release.ts",
17
+ "r": "tsx scripts/release.ts",
18
+ "help": "tsx scripts/help.ts",
19
+ "h": "tsx scripts/help.ts",
20
20
  "lint": "eslint . --ext .ts",
21
21
  "lint:fix": "eslint . --ext .ts --fix",
22
22
  "prettier": "npx prettier --check '**/*.{ts,json}'",
package/versions.json CHANGED
@@ -55,5 +55,6 @@
55
55
  "1.5.4": "1.8.9",
56
56
  "1.5.5": "1.8.9",
57
57
  "1.5.6": "1.8.9",
58
- "1.5.7": "1.8.9"
58
+ "1.5.7": "1.8.9",
59
+ "1.5.8": "1.8.9"
59
60
  }