@qihongmu/dsh-plugins-scheduled-task-bundle 0.1.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 +15 -0
- package/package.json +26 -0
package/cordis.patch.yml
ADDED
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
# Aggregate mount: one `dsh plugin --profile <name> add @qihongmu/dsh-plugins-scheduled-task-bundle`
|
|
2
|
+
# installs the three halves as dependencies and inserts their three entries here.
|
|
3
|
+
# Each row disables itself when the same package is already mounted under a
|
|
4
|
+
# different entry id (e.g. a sub-package installed individually before the
|
|
5
|
+
# bundle), preventing a duplicate mount.
|
|
6
|
+
- insert:
|
|
7
|
+
- id: plugins-scheduled-task
|
|
8
|
+
name: '@qihongmu/dsh-plugins-scheduled-task'
|
|
9
|
+
disabled: !!js "[...ctx.loader.entries()].some((e) => e.options.name === '@qihongmu/dsh-plugins-scheduled-task' && e.options.id !== 'plugins-scheduled-task' && !e.disabled)"
|
|
10
|
+
- id: plugins-remotes-scheduled-task
|
|
11
|
+
name: '@qihongmu/dsh-client-remotes-scheduled-task'
|
|
12
|
+
disabled: !!js "[...ctx.loader.entries()].some((e) => e.options.name === '@qihongmu/dsh-client-remotes-scheduled-task' && e.options.id !== 'plugins-remotes-scheduled-task' && !e.disabled)"
|
|
13
|
+
- id: plugins-ui-scheduled-task
|
|
14
|
+
name: '@qihongmu/dsh-client-ui-scheduled-task'
|
|
15
|
+
disabled: !!js "[...ctx.loader.entries()].some((e) => e.options.name === '@qihongmu/dsh-client-ui-scheduled-task' && e.options.id !== 'plugins-ui-scheduled-task' && !e.disabled)"
|
package/package.json
ADDED
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@qihongmu/dsh-plugins-scheduled-task-bundle",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"license": "MIT",
|
|
5
|
+
"author": "Qihong <qihong.m.u+dev@gmail.com>",
|
|
6
|
+
"description": "Aggregate install bundle for the scheduled-task plugin: pulls the host/remotes/client halves and mounts all three with a single `dsh plugin add`.",
|
|
7
|
+
"type": "module",
|
|
8
|
+
"files": [
|
|
9
|
+
"cordis.patch.yml"
|
|
10
|
+
],
|
|
11
|
+
"dependencies": {
|
|
12
|
+
"@qihongmu/dsh-plugins-scheduled-task": "^0.1.0",
|
|
13
|
+
"@qihongmu/dsh-client-remotes-scheduled-task": "^0.1.0",
|
|
14
|
+
"@qihongmu/dsh-client-ui-scheduled-task": "^0.1.0"
|
|
15
|
+
},
|
|
16
|
+
"dsh": {
|
|
17
|
+
"bundle": {
|
|
18
|
+
"patch": "./cordis.patch.yml"
|
|
19
|
+
}
|
|
20
|
+
},
|
|
21
|
+
"repository": {
|
|
22
|
+
"type": "git",
|
|
23
|
+
"url": "git+https://github.com/qihongmu/dsh-plugins.git",
|
|
24
|
+
"directory": "packages/scheduled-task/bundle"
|
|
25
|
+
}
|
|
26
|
+
}
|