Compare commits

...

6 Commits

7 changed files with 31 additions and 11 deletions

View File

@ -1,5 +1,25 @@
# 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
- Added .claude/settings.local.json with updated permissions for CLI and build tasks
- Removed license and license.md files to streamline repository content
## 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

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,6 +1,6 @@
{
"name": "@git.zone/tstest",
"version": "2.2.0",
"version": "2.2.3",
"private": false,
"description": "a test utility to run tests that match test/**/*.ts",
"exports": {

View File

@ -1,9 +1,9 @@
# @gitzone/tstest
# @git.zone/tstest
🧪 **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

View File

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

View File

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