@deepseek-ai/dsh-file-reference-local 0.1.2-alpha.2 → 0.1.2-alpha.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.
- package/lib/index.js +1 -0
- package/lib/types/search.js +2 -0
- package/package.json +12 -12
package/lib/index.js
CHANGED
|
@@ -236,6 +236,7 @@ async function readDirectory(absolute, signal) {
|
|
|
236
236
|
signal.throwIfAborted();
|
|
237
237
|
return entries.sort((left, right) => compareText(left.name, right.name));
|
|
238
238
|
} catch (_error) {
|
|
239
|
+
/* v8 ignore start -- Windows chmod cannot make the unreadable-directory fixture fail readdir; POSIX behavior covers this fallback. */
|
|
239
240
|
signal.throwIfAborted();
|
|
240
241
|
return [];
|
|
241
242
|
}
|
package/lib/types/search.js
CHANGED
|
@@ -256,10 +256,12 @@ async function readDirectory(absolute, signal) {
|
|
|
256
256
|
return entries.sort((left, right) => compareText(left.name, right.name));
|
|
257
257
|
}
|
|
258
258
|
catch (_error) {
|
|
259
|
+
/* v8 ignore start -- Windows chmod cannot make the unreadable-directory fixture fail readdir; POSIX behavior covers this fallback. */
|
|
259
260
|
signal.throwIfAborted();
|
|
260
261
|
// An unreadable/missing subtree contributes no candidates; other readable
|
|
261
262
|
// branches remain useful and autocomplete is advisory.
|
|
262
263
|
return [];
|
|
264
|
+
/* v8 ignore stop */
|
|
263
265
|
}
|
|
264
266
|
}
|
|
265
267
|
function visibleForGlobalQuery(path, query) {
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@deepseek-ai/dsh-file-reference-local",
|
|
3
3
|
"description": "Local-filesystem ctx.fileReferences provider with bounded fuzzy indexes",
|
|
4
|
-
"version": "0.1.2-alpha.
|
|
4
|
+
"version": "0.1.2-alpha.3",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"access": "public"
|
|
7
7
|
},
|
|
@@ -40,19 +40,19 @@
|
|
|
40
40
|
"@deepseek-ai/schemastery": "^3.18.2"
|
|
41
41
|
},
|
|
42
42
|
"peerDependencies": {
|
|
43
|
-
"@deepseek-ai/dsh-agent": "^0.1.2-alpha.
|
|
44
|
-
"@deepseek-ai/dsh-file-reference": "^0.1.2-alpha.
|
|
45
|
-
"@deepseek-ai/dsh-invariants": "^0.1.2-alpha.
|
|
46
|
-
"@deepseek-ai/dsh-system-prompt": "^0.1.2-alpha.
|
|
47
|
-
"@deepseek-ai/dsh-tools": "^0.1.2-alpha.
|
|
43
|
+
"@deepseek-ai/dsh-agent": "^0.1.2-alpha.3",
|
|
44
|
+
"@deepseek-ai/dsh-file-reference": "^0.1.2-alpha.3",
|
|
45
|
+
"@deepseek-ai/dsh-invariants": "^0.1.2-alpha.3",
|
|
46
|
+
"@deepseek-ai/dsh-system-prompt": "^0.1.2-alpha.3",
|
|
47
|
+
"@deepseek-ai/dsh-tools": "^0.1.2-alpha.3",
|
|
48
48
|
"@deepseek-ai/cordis": "^4.0.2"
|
|
49
49
|
},
|
|
50
50
|
"devDependencies": {
|
|
51
|
-
"@deepseek-ai/dsh-agent": "^0.1.2-alpha.
|
|
52
|
-
"@deepseek-ai/dsh-file-reference": "^0.1.2-alpha.
|
|
53
|
-
"@deepseek-ai/dsh-
|
|
54
|
-
"@deepseek-ai/
|
|
55
|
-
"@deepseek-ai/dsh-
|
|
56
|
-
"@deepseek-ai/
|
|
51
|
+
"@deepseek-ai/dsh-agent": "^0.1.2-alpha.3",
|
|
52
|
+
"@deepseek-ai/dsh-file-reference": "^0.1.2-alpha.3",
|
|
53
|
+
"@deepseek-ai/dsh-system-prompt": "^0.1.2-alpha.3",
|
|
54
|
+
"@deepseek-ai/cordis": "^4.0.2",
|
|
55
|
+
"@deepseek-ai/dsh-invariants": "^0.1.2-alpha.3",
|
|
56
|
+
"@deepseek-ai/dsh-tools": "^0.1.2-alpha.3"
|
|
57
57
|
}
|
|
58
58
|
}
|