@magclaw/cli-core 0.1.32 → 0.1.33

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/package.json +1 -1
  2. package/src/cli.js +1 -0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@magclaw/cli-core",
3
- "version": "0.1.32",
3
+ "version": "0.1.33",
4
4
  "description": "Shared local MagClaw CLI implementation used by daemon and computer packages.",
5
5
  "type": "module",
6
6
  "bin": {
package/src/cli.js CHANGED
@@ -1309,6 +1309,7 @@ async function writeCliShimFile(file, content, { force = false } = {}) {
1309
1309
  ...status,
1310
1310
  changed: true,
1311
1311
  written: true,
1312
+ upToDate: true,
1312
1313
  reason: force && status.exists ? 'forced' : status.reason,
1313
1314
  previousHash: status.currentHash,
1314
1315
  currentHash: status.expectedHash,