diff --git a/changelog.md b/changelog.md index c77e9ec..38af255 100644 --- a/changelog.md +++ b/changelog.md @@ -1,5 +1,10 @@ # Changelog +## 2026-04-30 - 2.2.5 - fix(scripts) +use pnpm for the test script build command + +- updates the test script in package.json to run the build through pnpm instead of npm + ## 2026-03-24 - 2.2.4 - fix(config) migrate configuration loading to smartconfig and update build tooling compatibility diff --git a/package.json b/package.json index 5fba654..7e64849 100644 --- a/package.json +++ b/package.json @@ -9,7 +9,7 @@ "tsdocker": "cli.js" }, "scripts": { - "test": "(npm run build)", + "test": "(pnpm run build)", "build": "(tsbuild)", "buildDocs": "tsdoc" }, diff --git a/ts/00_commitinfo_data.ts b/ts/00_commitinfo_data.ts index 162389b..96cad83 100644 --- a/ts/00_commitinfo_data.ts +++ b/ts/00_commitinfo_data.ts @@ -3,6 +3,6 @@ */ export const commitinfo = { name: '@git.zone/tsdocker', - version: '2.2.4', + version: '2.2.5', description: 'A comprehensive Docker build tool for TypeScript projects with multi-arch support, multi-registry push, and CI-safe session isolation.' }