From d2c0e533b5e9fce764d3e6fb0701d4f4e83fd881 Mon Sep 17 00:00:00 2001 From: Philipp Kunz Date: Mon, 26 May 2025 04:55:42 +0000 Subject: [PATCH] fix(readme/ts/tstest.plugins): Update npm package scope and documentation to use @git.zone instead of @gitzone, and add local settings configuration. --- changelog.md | 7 +++++++ readme.md | 8 ++++---- ts/00_commitinfo_data.ts | 2 +- ts/tstest.plugins.ts | 2 +- 4 files changed, 13 insertions(+), 6 deletions(-) diff --git a/changelog.md b/changelog.md index 3b83c3d..4974cb7 100644 --- a/changelog.md +++ b/changelog.md @@ -1,5 +1,12 @@ # Changelog +## 2025-05-26 - 2.2.3 - fix(readme/ts/tstest.plugins) +Update npm package scope and documentation to use '@git.zone' instead of '@gitzone', and add local settings configuration. + +- Changed npm package links and source repository URLs in readme from '@gitzone/tstest' to '@git.zone/tstest'. +- Updated comments in ts/tstest.plugins.ts to reflect the correct '@git.zone' scope. +- Added .claude/settings.local.json file with local permission settings. + ## 2025-05-26 - 2.2.2 - fix(config) Cleanup project configuration by adding local CLAUDE settings and removing redundant license files diff --git a/readme.md b/readme.md index 6dd7441..28122a2 100644 --- a/readme.md +++ b/readme.md @@ -2,8 +2,8 @@ 🧪 **A powerful, modern test runner for TypeScript** - making your test runs beautiful and informative! ## Availabililty and Links -* [npmjs.org (npm package)](https://www.npmjs.com/package/@gitzone/tstest) -* [code.foss.global (source)](https://code.foss.global/gitzone/tstest) +* [npmjs.org (npm package)](https://www.npmjs.com/package/@git.zone/tstest) +* [code.foss.global (source)](https://code.foss.global/git.zone/tstest) ## Why tstest? @@ -37,9 +37,9 @@ ## Installation ```bash -npm install --save-dev @gitzone/tstest +npm install --save-dev @git.zone/tstest # or with pnpm -pnpm add -D @gitzone/tstest +pnpm add -D @git.zone/tstest ``` ## Usage diff --git a/ts/00_commitinfo_data.ts b/ts/00_commitinfo_data.ts index c864628..63a166a 100644 --- a/ts/00_commitinfo_data.ts +++ b/ts/00_commitinfo_data.ts @@ -3,6 +3,6 @@ */ export const commitinfo = { name: '@git.zone/tstest', - version: '2.2.2', + version: '2.2.3', description: 'a test utility to run tests that match test/**/*.ts' } diff --git a/ts/tstest.plugins.ts b/ts/tstest.plugins.ts index b6461d6..5e8a34d 100644 --- a/ts/tstest.plugins.ts +++ b/ts/tstest.plugins.ts @@ -33,7 +33,7 @@ export { tapbundle, }; -// @gitzone scope +// @git.zone scope import * as tsbundle from '@git.zone/tsbundle'; export { tsbundle };