From fe02b990b3f778187c7b5f39c972b9b0d55f233a Mon Sep 17 00:00:00 2001 From: Juergen Kunz Date: Mon, 4 Aug 2025 13:16:56 +0000 Subject: [PATCH] fix(package/config): Move smartdiff dependency to runtime and add local bash permissions settings --- changelog.md | 6 ++++++ package.json | 2 +- ts/00_commitinfo_data.ts | 2 +- 3 files changed, 8 insertions(+), 2 deletions(-) diff --git a/changelog.md b/changelog.md index 152ffbe..c5d62a8 100644 --- a/changelog.md +++ b/changelog.md @@ -1,5 +1,11 @@ # Changelog +## 2025-08-04 - 1.16.1 - fix(package/config) +Move smartdiff dependency to runtime and add local bash permissions settings + +- Moved '@push.rocks/smartdiff' from devDependencies to dependencies in package.json +- Added .claude/settings.local.json with allowed bash commands (grep, mkdir, find, ls) + ## 2025-05-19 - 1.16.0 - feat(format) Enhance format module with rollback, diff reporting, and improved parallel execution diff --git a/package.json b/package.json index 34332c1..b69a388 100644 --- a/package.json +++ b/package.json @@ -60,7 +60,6 @@ "@git.zone/tsbuild": "^2.3.2", "@git.zone/tsrun": "^1.3.3", "@git.zone/tstest": "^1.0.96", - "@push.rocks/smartdiff": "^1.0.3", "@types/node": "^22.15.18" }, "dependencies": { @@ -75,6 +74,7 @@ "@push.rocks/smartchok": "^1.0.34", "@push.rocks/smartcli": "^4.0.11", "@push.rocks/smartdelay": "^3.0.5", + "@push.rocks/smartdiff": "^1.0.3", "@push.rocks/smartfile": "^11.2.0", "@push.rocks/smartgulp": "^3.0.4", "@push.rocks/smartinteract": "^2.0.15", diff --git a/ts/00_commitinfo_data.ts b/ts/00_commitinfo_data.ts index 1928fe2..3ddded5 100644 --- a/ts/00_commitinfo_data.ts +++ b/ts/00_commitinfo_data.ts @@ -3,6 +3,6 @@ */ export const commitinfo = { name: '@git.zone/cli', - version: '1.16.0', + version: '1.16.1', description: 'A comprehensive CLI tool for enhancing and managing local development workflows with gitzone utilities, focusing on project setup, version control, code formatting, and template management.' }