fix(repo configuration): Update repository metadata to use git.zone naming and add local permission settings

This commit is contained in:
Philipp Kunz 2025-05-26 04:40:10 +00:00
parent 0f762f2063
commit 424046b0de
4 changed files with 12 additions and 5 deletions

View File

@ -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

View File

@ -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"
}
}

View File

@ -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

View File

@ -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'
}