@logictan/dsh-plugins-all 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.
Files changed (2) hide show
  1. package/cordis.patch.yml +27 -0
  2. package/package.json +19 -0
@@ -0,0 +1,27 @@
1
+ # AUTO-GENERATED by scripts/aggregate.mjs — do not edit
2
+ # Derived from this package's aggregate.yml; edit that manifest and rerun
3
+ # `node scripts/aggregate.mjs`. Each block below is one patchFrom child's own
4
+ # cordis.patch.yml, reproduced verbatim so the row id/name stay owned by the child.
5
+
6
+ # from ../dsh-config-manager
7
+ # dsh-config-manager bundle patch: inserts the dual-face plugin row into the
8
+ # profile roster. Applied as a profile bundle layer (the `dsh.bundle.patch`
9
+ # manifest field in package.json) over dsh-base; activate with
10
+ # dsh plugin --profile <name> add @logictan/dsh-config-manager@latest # published
11
+ # dsh plugin --profile <name> add link:<abs-or-~-path> # local dev
12
+ # (the CLI forwards to pnpm inside the profile directory).
13
+ #
14
+ # CLI hard criterion: a package is appended to the target profile's
15
+ # `dsh.profile.bundles` only when its manifest carries `dsh.bundle.patch`
16
+ # (package.json does — it points at this file); without that field the CLI
17
+ # treats the package as a plain dependency and warns. So this file plus the
18
+ # package.json `dsh.bundle.patch` key are what make the package a real bundle.
19
+ #
20
+ # One bare plugin row by package name: the node half (exports ".") runs in the
21
+ # host process (/api/dsh-config-manager routes, sync engine, agent tools), and
22
+ # the `dsh.client` declaration in package.json makes the browser half
23
+ # (exports "./client") load in the web GUI. Row id equals the host plugin's
24
+ # `export const name` in src/index.ts.
25
+ - insert:
26
+ - id: config-manager
27
+ name: '@logictan/dsh-config-manager'
package/package.json ADDED
@@ -0,0 +1,19 @@
1
+ {
2
+ "name": "@logictan/dsh-plugins-all",
3
+ "version": "0.2.0",
4
+ "description": "DSH plugin aggregate bundle: one install for every plugin in this repo.",
5
+ "license": "MIT",
6
+ "type": "module",
7
+ "dsh": {
8
+ "bundle": {
9
+ "patch": "./cordis.patch.yml"
10
+ }
11
+ },
12
+ "files": [
13
+ "package.json",
14
+ "cordis.patch.yml"
15
+ ],
16
+ "dependencies": {
17
+ "@logictan/dsh-config-manager": "^0.1.60"
18
+ }
19
+ }