Compare commits

..

2 Commits

3 changed files with 8 additions and 3 deletions

View File

@@ -1,5 +1,10 @@
# Changelog # 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) ## 2026-02-03 - 3.1.1 - fix(tools)
no changes detected no changes detected

View File

@@ -1,13 +1,13 @@
{ {
"name": "@git.zone/tools", "name": "@git.zone/tools",
"version": "3.1.1", "version": "3.1.2",
"private": false, "private": false,
"type": "module", "type": "module",
"description": "A CLI tool placeholder for development utilities.", "description": "A CLI tool placeholder for development utilities.",
"main": "dist_ts/index.js", "main": "dist_ts/index.js",
"typings": "dist_ts/index.d.ts", "typings": "dist_ts/index.d.ts",
"scripts": { "scripts": {
"test": "(tstest test/ --web)", "test": "(tstest test/ --verbose)",
"build": "(tsbuild --web)" "build": "(tsbuild --web)"
}, },
"bin": { "bin": {

View File

@@ -3,6 +3,6 @@
*/ */
export const commitinfo = { export const commitinfo = {
name: '@git.zone/tools', name: '@git.zone/tools',
version: '3.1.1', version: '3.1.2',
description: 'A CLI tool placeholder for development utilities.' description: 'A CLI tool placeholder for development utilities.'
} }