dsh-plugin-restart-notify 0.1.0 → 0.2.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/cordis.patch.yml +10 -0
- package/package.json +6 -2
package/cordis.patch.yml
ADDED
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
# dsh-plugin-restart-notify bundle layer: inserts the restart-notify host
|
|
2
|
+
# plugin row (the client half registers through dsh.client). Applied
|
|
3
|
+
# automatically when a profile lists this bundle
|
|
4
|
+
# (dsh plugin add dsh-plugin-restart-notify). Override `root` in the profile
|
|
5
|
+
# layer when the repository lives elsewhere.
|
|
6
|
+
- insert:
|
|
7
|
+
- id: restart-notify
|
|
8
|
+
name: dsh-plugin-restart-notify
|
|
9
|
+
config:
|
|
10
|
+
root: !!js process.env.DSH_REPO_ROOT ?? 'D:\deepseek-harness'
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "dsh-plugin-restart-notify",
|
|
3
3
|
"description": "Desktop notification for dsh web telling the user to restart after a rebuild the running server has not loaded",
|
|
4
|
-
"version": "0.
|
|
4
|
+
"version": "0.2.0",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"license": "MIT",
|
|
7
7
|
"exports": {
|
|
@@ -16,6 +16,9 @@
|
|
|
16
16
|
"./package.json": "./package.json"
|
|
17
17
|
},
|
|
18
18
|
"dsh": {
|
|
19
|
+
"bundle": {
|
|
20
|
+
"patch": "./cordis.patch.yml"
|
|
21
|
+
},
|
|
19
22
|
"client": {
|
|
20
23
|
"inject": [
|
|
21
24
|
"@deepseek-ai/dsh-client-locale"
|
|
@@ -52,7 +55,8 @@
|
|
|
52
55
|
"files": [
|
|
53
56
|
"lib/index.js",
|
|
54
57
|
"lib/client.js",
|
|
55
|
-
"lib/types/**/*.d.ts"
|
|
58
|
+
"lib/types/**/*.d.ts",
|
|
59
|
+
"cordis.patch.yml"
|
|
56
60
|
],
|
|
57
61
|
"keywords": ["dsh-plugin", "deepseek-harness", "restart", "notification"]
|
|
58
62
|
}
|