fix(scripts): use pnpm for the test script build command

This commit is contained in:
2026-04-30 12:55:20 +00:00
parent 461c4bb5a9
commit 3a747cfd2f
3 changed files with 7 additions and 2 deletions
+5
View File
@@ -1,5 +1,10 @@
# Changelog # 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) ## 2026-03-24 - 2.2.4 - fix(config)
migrate configuration loading to smartconfig and update build tooling compatibility migrate configuration loading to smartconfig and update build tooling compatibility
+1 -1
View File
@@ -9,7 +9,7 @@
"tsdocker": "cli.js" "tsdocker": "cli.js"
}, },
"scripts": { "scripts": {
"test": "(npm run build)", "test": "(pnpm run build)",
"build": "(tsbuild)", "build": "(tsbuild)",
"buildDocs": "tsdoc" "buildDocs": "tsdoc"
}, },
+1 -1
View File
@@ -3,6 +3,6 @@
*/ */
export const commitinfo = { export const commitinfo = {
name: '@git.zone/tsdocker', 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.' description: 'A comprehensive Docker build tool for TypeScript projects with multi-arch support, multi-registry push, and CI-safe session isolation.'
} }