dsh-unplug 0.2.0 → 0.2.1

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/CHANGELOG.md CHANGED
@@ -1,5 +1,10 @@
1
1
  # Changelog
2
2
 
3
+ ## 0.2.1 (2026-08-20)
4
+
5
+ - Fix: 0.2.0 was published with a stale build (typecheck gate had failed).
6
+ This release ships the actual `reconcile` implementation.
7
+
3
8
  ## 0.2.0 (2026-08-20)
4
9
 
5
10
  - New `reconcile` command: auto-fix dangling bundles and orphaned patch rows
package/lib/index.js CHANGED
@@ -92,6 +92,8 @@ export function apply(ctx, config) {
92
92
  },
93
93
  bundles: { type: 'array' },
94
94
  disabledBundles: { type: 'array' },
95
+ fixedBundles: { type: 'array' },
96
+ fixedRows: { type: 'number' },
95
97
  },
96
98
  },
97
99
  render: (_args, value) => [{ type: 'text', text: JSON.stringify(value, null, 2) }],
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "dsh-unplug",
3
- "version": "0.2.0",
3
+ "version": "0.2.1",
4
4
  "description": "Plug/unplug any DeepSeek Harness plugin cleanly: list every mounted layer, disable/enable without deleting, remove bundles + patch rows + dependencies in one pass, and audit for orphaned/dangling plugin state. Zero runtime dependencies; read-only by default.",
5
5
  "type": "module",
6
6
  "main": "lib/index.js",