obsidian-dev-utils 46.13.0 → 46.14.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/CHANGELOG.md +5 -0
- package/dist/lib/cjs/Library.cjs +1 -1
- package/dist/lib/cjs/obsidian/FileSystem.cjs +19 -1
- package/dist/lib/cjs/obsidian/FileSystem.d.cts +21 -0
- package/dist/lib/cjs/obsidian/Vault.cjs +31 -23
- package/dist/lib/cjs/obsidian/Vault.d.cts +24 -1
- package/dist/lib/esm/Library.mjs +1 -1
- package/dist/lib/esm/obsidian/FileSystem.d.mts +21 -0
- package/dist/lib/esm/obsidian/FileSystem.mjs +17 -1
- package/dist/lib/esm/obsidian/Vault.d.mts +24 -1
- package/dist/lib/esm/obsidian/Vault.mjs +39 -25
- package/package.json +7 -7
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "obsidian-dev-utils",
|
|
3
|
-
"version": "46.
|
|
3
|
+
"version": "46.14.0",
|
|
4
4
|
"description": "This is the collection of useful functions that you can use for your Obsidian plugin development",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"obsidian"
|
|
@@ -559,8 +559,8 @@
|
|
|
559
559
|
"@types/pug": "^2.0.10",
|
|
560
560
|
"@types/react": "^19.2.7",
|
|
561
561
|
"@types/shell-quote": "^1.7.5",
|
|
562
|
-
"@typescript-eslint/eslint-plugin": "^8.
|
|
563
|
-
"@typescript-eslint/parser": "^8.
|
|
562
|
+
"@typescript-eslint/eslint-plugin": "^8.52.0",
|
|
563
|
+
"@typescript-eslint/parser": "^8.52.0",
|
|
564
564
|
"better-typescript-lib": "^2.12.0",
|
|
565
565
|
"commander": "^14.0.2",
|
|
566
566
|
"compare-versions": "^6.1.1",
|
|
@@ -577,7 +577,7 @@
|
|
|
577
577
|
"eslint-plugin-jsdoc": "^61.5.0",
|
|
578
578
|
"eslint-plugin-modules-newlines": "^0.0.7",
|
|
579
579
|
"eslint-plugin-obsidianmd": "^0.1.9",
|
|
580
|
-
"eslint-plugin-perfectionist": "^5.
|
|
580
|
+
"eslint-plugin-perfectionist": "^5.3.0",
|
|
581
581
|
"eslint-plugin-tsdoc": "^0.5.0",
|
|
582
582
|
"globals": "^17.0.0",
|
|
583
583
|
"i18next": "^25.7.3",
|
|
@@ -595,18 +595,18 @@
|
|
|
595
595
|
"path-browserify": "^1.0.1",
|
|
596
596
|
"postcss": "^8.5.6",
|
|
597
597
|
"postcss-modules": "^6.0.1",
|
|
598
|
-
"preact": "^10.28.
|
|
598
|
+
"preact": "^10.28.2",
|
|
599
599
|
"react": "^19.2.3",
|
|
600
600
|
"remark": "^15.0.1",
|
|
601
601
|
"remark-parse": "^11.0.0",
|
|
602
602
|
"remark-wiki-link": "^2.0.1",
|
|
603
|
-
"sass": "^1.97.
|
|
603
|
+
"sass": "^1.97.2",
|
|
604
604
|
"shell-quote": "^1.8.3",
|
|
605
605
|
"svelte-check": "^4.3.5",
|
|
606
606
|
"svelte-preprocess": "^6.0.3",
|
|
607
607
|
"type-fest": "^5.3.1",
|
|
608
608
|
"typescript": "^5.9.3",
|
|
609
|
-
"typescript-eslint": "^8.
|
|
609
|
+
"typescript-eslint": "^8.52.0",
|
|
610
610
|
"unist-util-visit": "^5.0.0"
|
|
611
611
|
},
|
|
612
612
|
"devDependencies": {
|