From 424046b0de0efba30a2a85685debfc8cc2f55a72 Mon Sep 17 00:00:00 2001 From: Philipp Kunz Date: Mon, 26 May 2025 04:40:10 +0000 Subject: [PATCH] fix(repo configuration): Update repository metadata to use git.zone naming and add local permission settings --- changelog.md | 7 +++++++ npmextra.json | 6 +++--- readme.md | 2 +- ts/00_commitinfo_data.ts | 2 +- 4 files changed, 12 insertions(+), 5 deletions(-) diff --git a/changelog.md b/changelog.md index 4e1ca80..9e03944 100644 --- a/changelog.md +++ b/changelog.md @@ -1,5 +1,12 @@ # Changelog +## 2025-05-26 - 2.2.1 - fix(repo configuration) +Update repository metadata to use 'git.zone' naming and add local permission settings + +- Changed githost from 'gitlab.com' to 'code.foss.global' and gitscope from 'gitzone' to 'git.zone' in npmextra.json +- Updated npm package name from '@gitzone/tstest' to '@git.zone/tstest' in npmextra.json and readme.md +- Added .claude/settings.local.json with new permission configuration + ## 2025-05-26 - 2.2.0 - feat(watch mode) Add watch mode support with CLI options and enhanced documentation diff --git a/npmextra.json b/npmextra.json index aa22eb0..23b0da4 100644 --- a/npmextra.json +++ b/npmextra.json @@ -6,11 +6,11 @@ "gitzone": { "projectType": "npm", "module": { - "githost": "gitlab.com", - "gitscope": "gitzone", + "githost": "code.foss.global", + "gitscope": "git.zone", "gitrepo": "tstest", "description": "a test utility to run tests that match test/**/*.ts", - "npmPackagename": "@gitzone/tstest", + "npmPackagename": "@git.zone/tstest", "license": "MIT" } } diff --git a/readme.md b/readme.md index b32cff3..6dd7441 100644 --- a/readme.md +++ b/readme.md @@ -1,4 +1,4 @@ -# @gitzone/tstest +# @git.zone/tstest 🧪 **A powerful, modern test runner for TypeScript** - making your test runs beautiful and informative! ## Availabililty and Links diff --git a/ts/00_commitinfo_data.ts b/ts/00_commitinfo_data.ts index 2ccbe25..a8f12d5 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.0', + version: '2.2.1', description: 'a test utility to run tests that match test/**/*.ts' }