fix(readme/ts/tstest.plugins): Update npm package scope and documentation to use @git.zone instead of @gitzone, and add local settings configuration.

This commit is contained in:
Philipp Kunz 2025-05-26 04:55:42 +00:00
parent d3c7fce595
commit d2c0e533b5
4 changed files with 13 additions and 6 deletions

View File

@ -1,5 +1,12 @@
# Changelog # 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) ## 2025-05-26 - 2.2.2 - fix(config)
Cleanup project configuration by adding local CLAUDE settings and removing redundant license files Cleanup project configuration by adding local CLAUDE settings and removing redundant license files

View File

@ -2,8 +2,8 @@
🧪 **A powerful, modern test runner for TypeScript** - making your test runs beautiful and informative! 🧪 **A powerful, modern test runner for TypeScript** - making your test runs beautiful and informative!
## Availabililty and Links ## Availabililty and Links
* [npmjs.org (npm package)](https://www.npmjs.com/package/@gitzone/tstest) * [npmjs.org (npm package)](https://www.npmjs.com/package/@git.zone/tstest)
* [code.foss.global (source)](https://code.foss.global/gitzone/tstest) * [code.foss.global (source)](https://code.foss.global/git.zone/tstest)
## Why tstest? ## Why tstest?
@ -37,9 +37,9 @@
## Installation ## Installation
```bash ```bash
npm install --save-dev @gitzone/tstest npm install --save-dev @git.zone/tstest
# or with pnpm # or with pnpm
pnpm add -D @gitzone/tstest pnpm add -D @git.zone/tstest
``` ```
## Usage ## Usage

View File

@ -3,6 +3,6 @@
*/ */
export const commitinfo = { export const commitinfo = {
name: '@git.zone/tstest', name: '@git.zone/tstest',
version: '2.2.2', version: '2.2.3',
description: 'a test utility to run tests that match test/**/*.ts' description: 'a test utility to run tests that match test/**/*.ts'
} }

View File

@ -33,7 +33,7 @@ export {
tapbundle, tapbundle,
}; };
// @gitzone scope // @git.zone scope
import * as tsbundle from '@git.zone/tsbundle'; import * as tsbundle from '@git.zone/tsbundle';
export { tsbundle }; export { tsbundle };