From e0c4cf29836c7178f0134baf8ae7ecf937cccca4 Mon Sep 17 00:00:00 2001 From: Juergen Kunz Date: Tue, 3 Feb 2026 22:48:01 +0000 Subject: [PATCH] fix(scripts): make test script output verbose by using --verbose instead of --web --- changelog.md | 5 +++++ package.json | 2 +- ts/00_commitinfo_data.ts | 2 +- 3 files changed, 7 insertions(+), 2 deletions(-) diff --git a/changelog.md b/changelog.md index 3cdb281..15f03c4 100644 --- a/changelog.md +++ b/changelog.md @@ -1,5 +1,10 @@ # Changelog +## 2026-02-03 - 3.1.2 - fix(scripts) +make test script output verbose by using --verbose instead of --web + +- package.json: change npm "test" script from "(tstest test/ --web)" to "(tstest test/ --verbose)" to enable verbose test output + ## 2026-02-03 - 3.1.1 - fix(tools) no changes detected diff --git a/package.json b/package.json index 24265b1..6d45e6c 100644 --- a/package.json +++ b/package.json @@ -7,7 +7,7 @@ "main": "dist_ts/index.js", "typings": "dist_ts/index.d.ts", "scripts": { - "test": "(tstest test/ --web)", + "test": "(tstest test/ --verbose)", "build": "(tsbuild --web)" }, "bin": { diff --git a/ts/00_commitinfo_data.ts b/ts/00_commitinfo_data.ts index 99fda72..ac93fb0 100644 --- a/ts/00_commitinfo_data.ts +++ b/ts/00_commitinfo_data.ts @@ -3,6 +3,6 @@ */ export const commitinfo = { name: '@git.zone/tools', - version: '3.1.1', + version: '3.1.2', description: 'A CLI tool placeholder for development utilities.' }