From 32f106291f19797fac88efaadb835fc8b7f7dc9b Mon Sep 17 00:00:00 2001 From: Juergen Kunz Date: Thu, 5 Mar 2026 11:30:34 +0000 Subject: [PATCH] fix(dependencies): move runtime tooling packages from devDependencies to dependencies --- changelog.md | 6 ++++++ package.json | 8 ++++---- pnpm-lock.yaml | 24 ++++++++++++------------ ts/00_commitinfo_data.ts | 2 +- 4 files changed, 23 insertions(+), 17 deletions(-) diff --git a/changelog.md b/changelog.md index 650e581..5b04025 100644 --- a/changelog.md +++ b/changelog.md @@ -1,5 +1,11 @@ # Changelog +## 2026-03-05 - 2.13.8 - fix(dependencies) +move runtime tooling packages from devDependencies to dependencies + +- Removed @push.rocks/smartdelay, @push.rocks/smartinteract, @push.rocks/smartnetwork, and @push.rocks/smartshell from devDependencies and added them to dependencies +- No package version numbers were changed; this ensures the moved packages are installed for consumers at runtime + ## 2026-03-05 - 2.13.7 - fix(deps) bump devDependencies: @git.zone/tsbuild to ^4.1.4 and @push.rocks/smartshell to ^3.3.7 diff --git a/package.json b/package.json index 272c4e4..11c9b0a 100644 --- a/package.json +++ b/package.json @@ -60,10 +60,6 @@ "@git.zone/tsbuild": "^4.1.4", "@git.zone/tsrun": "^2.0.1", "@git.zone/tstest": "^3.1.4", - "@push.rocks/smartdelay": "^3.0.5", - "@push.rocks/smartinteract": "^2.0.16", - "@push.rocks/smartnetwork": "^4.4.0", - "@push.rocks/smartshell": "^3.3.7", "@types/node": "^25.0.6" }, "dependencies": { @@ -76,21 +72,25 @@ "@push.rocks/npmextra": "^5.3.3", "@push.rocks/projectinfo": "^5.0.2", "@push.rocks/smartcli": "^4.0.20", + "@push.rocks/smartdelay": "^3.0.5", "@push.rocks/smartdiff": "^1.1.0", "@push.rocks/smartfile": "^13.1.2", "@push.rocks/smartfs": "^1.3.1", "@push.rocks/smartgulp": "^3.0.4", + "@push.rocks/smartinteract": "^2.0.16", "@push.rocks/smartjson": "^6.0.0", "@push.rocks/smartlegal": "^1.0.27", "@push.rocks/smartlog": "^3.1.10", "@push.rocks/smartlog-destination-local": "^9.0.2", "@push.rocks/smartmustache": "^3.0.2", + "@push.rocks/smartnetwork": "^4.4.0", "@push.rocks/smartnpm": "^2.0.6", "@push.rocks/smartobject": "^1.0.12", "@push.rocks/smartopen": "^2.0.0", "@push.rocks/smartpath": "^6.0.0", "@push.rocks/smartpromise": "^4.2.3", "@push.rocks/smartscaf": "^4.0.19", + "@push.rocks/smartshell": "^3.3.7", "@push.rocks/smartstream": "^3.2.5", "@push.rocks/smartunique": "^3.0.9", "@push.rocks/smartupdate": "^2.0.6", diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index e11b698..10683b1 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -35,6 +35,9 @@ importers: '@push.rocks/smartcli': specifier: ^4.0.20 version: 4.0.20 + '@push.rocks/smartdelay': + specifier: ^3.0.5 + version: 3.0.5 '@push.rocks/smartdiff': specifier: ^1.1.0 version: 1.1.0 @@ -47,6 +50,9 @@ importers: '@push.rocks/smartgulp': specifier: ^3.0.4 version: 3.0.4 + '@push.rocks/smartinteract': + specifier: ^2.0.16 + version: 2.0.16 '@push.rocks/smartjson': specifier: ^6.0.0 version: 6.0.0 @@ -62,6 +68,9 @@ importers: '@push.rocks/smartmustache': specifier: ^3.0.2 version: 3.0.2 + '@push.rocks/smartnetwork': + specifier: ^4.4.0 + version: 4.4.0 '@push.rocks/smartnpm': specifier: ^2.0.6 version: 2.0.6 @@ -80,6 +89,9 @@ importers: '@push.rocks/smartscaf': specifier: ^4.0.19 version: 4.0.19 + '@push.rocks/smartshell': + specifier: ^3.3.7 + version: 3.3.7 '@push.rocks/smartstream': specifier: ^3.2.5 version: 3.2.5 @@ -108,18 +120,6 @@ importers: '@git.zone/tstest': specifier: ^3.1.4 version: 3.1.4(socks@2.8.7)(typescript@5.9.3) - '@push.rocks/smartdelay': - specifier: ^3.0.5 - version: 3.0.5 - '@push.rocks/smartinteract': - specifier: ^2.0.16 - version: 2.0.16 - '@push.rocks/smartnetwork': - specifier: ^4.4.0 - version: 4.4.0 - '@push.rocks/smartshell': - specifier: ^3.3.7 - version: 3.3.7 '@types/node': specifier: ^25.0.6 version: 25.0.6 diff --git a/ts/00_commitinfo_data.ts b/ts/00_commitinfo_data.ts index 692c5bc..f856668 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: '2.13.7', + version: '2.13.8', 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.' }