@keith9681/dsh-sidebar 0.15.2 → 0.15.4
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/README.md +0 -0
- package/README_EN.md +0 -0
- package/cordis.patch.yml +2 -2
- package/lib/client-editor.js +223 -223
- package/lib/client-mermaid.js +223 -223
- package/lib/client-registry.js +388 -388
- package/lib/client-terminal.js +226 -226
- package/lib/client.js +399 -399
- package/lib/types/client/service.d.ts +1 -1
- package/package.json +11 -13
- package/src/client/service.ts +1 -1
|
@@ -416,7 +416,7 @@ export declare function matchUrlTarget(tabs: readonly TabDescriptor[], url: URL)
|
|
|
416
416
|
* The plugin version this service instance reports. Keep in lockstep with
|
|
417
417
|
* `package.json`'s version — `tests/service.spec.ts` asserts the pair.
|
|
418
418
|
*/
|
|
419
|
-
export declare const SIDEBAR_SERVICE_VERSION = "0.15.
|
|
419
|
+
export declare const SIDEBAR_SERVICE_VERSION = "0.15.4";
|
|
420
420
|
/**
|
|
421
421
|
* Monotonic capability list consumers use to gate new API usage (features
|
|
422
422
|
* are never removed). Each string names a v0.12.0+ capability:
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@keith9681/dsh-sidebar",
|
|
3
|
-
"version": "0.15.
|
|
3
|
+
"version": "0.15.4",
|
|
4
4
|
"description": "DSH web plugin: a VSCode-like right sidebar (explorer / editor / terminal / git / browser), isolated per conversation session. Exposes a service for other plugins to register sidebar tabs and file viewers. Fork of dsh-better-sidebar with read-only-by-default editing and no bottom panel.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"repository": {
|
|
@@ -71,17 +71,6 @@
|
|
|
71
71
|
"README_EN.md",
|
|
72
72
|
"LICENSE"
|
|
73
73
|
],
|
|
74
|
-
"scripts": {
|
|
75
|
-
"build": "rm -rf lib && tsc -p tsconfig.build.json && tsdown",
|
|
76
|
-
"prepublishOnly": "pnpm build",
|
|
77
|
-
"typecheck": "tsc --noEmit",
|
|
78
|
-
"bundle": "tsdown",
|
|
79
|
-
"watch": "tsdown --watch",
|
|
80
|
-
"prepare": "tsdown",
|
|
81
|
-
"test": "vitest run",
|
|
82
|
-
"test:mount": "bash scripts/e2e-mount.sh",
|
|
83
|
-
"check:consumer-types": "bash scripts/check-consumer-types.sh"
|
|
84
|
-
},
|
|
85
74
|
"license": "MIT",
|
|
86
75
|
"peerDependencies": {
|
|
87
76
|
"@deepseek-ai/cordis": "^4.0.1",
|
|
@@ -169,5 +158,14 @@
|
|
|
169
158
|
"tsdown": "^0.22.2",
|
|
170
159
|
"typescript": "^5.6.0",
|
|
171
160
|
"vitest": "^4.1.8"
|
|
161
|
+
},
|
|
162
|
+
"scripts": {
|
|
163
|
+
"build": "rm -rf lib && tsc -p tsconfig.build.json && tsdown",
|
|
164
|
+
"typecheck": "tsc --noEmit",
|
|
165
|
+
"bundle": "tsdown",
|
|
166
|
+
"watch": "tsdown --watch",
|
|
167
|
+
"test": "vitest run",
|
|
168
|
+
"test:mount": "bash scripts/e2e-mount.sh",
|
|
169
|
+
"check:consumer-types": "bash scripts/check-consumer-types.sh"
|
|
172
170
|
}
|
|
173
|
-
}
|
|
171
|
+
}
|
package/src/client/service.ts
CHANGED
|
@@ -470,7 +470,7 @@ export function matchUrlTarget(tabs: readonly TabDescriptor[], url: URL): TabDes
|
|
|
470
470
|
* The plugin version this service instance reports. Keep in lockstep with
|
|
471
471
|
* `package.json`'s version — `tests/service.spec.ts` asserts the pair.
|
|
472
472
|
*/
|
|
473
|
-
export const SIDEBAR_SERVICE_VERSION = '0.15.
|
|
473
|
+
export const SIDEBAR_SERVICE_VERSION = '0.15.4'
|
|
474
474
|
|
|
475
475
|
/**
|
|
476
476
|
* Monotonic capability list consumers use to gate new API usage (features
|