fix(deps): Update dependency versions and test import paths for enhanced stability

This commit is contained in:
Juergen Kunz
2025-06-26 20:24:58 +00:00
parent 7605702ba7
commit 81941c33cb
5 changed files with 2289 additions and 2734 deletions

View File

@ -1,5 +1,19 @@
# Changelog # Changelog
## 2025-06-26 - 2.1.1 - fix(deps)
Update dependency versions and test import paths for enhanced stability
- Bump @git.zone/tsbuild from 2.2.1 to 2.6.4
- Upgrade @git.zone/tstest from 1.0.96 to 2.3.1 and update test import path
- Update @api.global/typedserver from 3.0.55 to 3.0.74
- Update @git.zone/tsbundle from 2.2.1 to 2.5.1
- Bump @push.rocks/lik from 6.1.0 to 6.2.2
- Update @push.rocks/smartfile from 11.1.6 to 11.2.5
- Upgrade @push.rocks/smartlog from 3.0.7 to 3.1.8
- Bump @push.rocks/smartshell from 3.2.2 to 3.2.3
- Upgrade @types/node from 22.12.0 to 24.0.4
- Add packageManager field in package.json for pnpm v10.11.0
## 2025-01-29 - 2.1.0 - feat(CI) ## 2025-01-29 - 2.1.0 - feat(CI)
Add Continuous Integration workflows for Gitea with Docker-based setup Add Continuous Integration workflows for Gitea with Docker-based setup

View File

@ -17,24 +17,23 @@
"buildDocs": "tsdoc" "buildDocs": "tsdoc"
}, },
"devDependencies": { "devDependencies": {
"@git.zone/tsbuild": "^2.2.1", "@git.zone/tsbuild": "^2.6.4",
"@git.zone/tstest": "^1.0.96", "@git.zone/tstest": "^2.3.1",
"@push.rocks/tapbundle": "^5.5.6", "@types/node": "^24.0.4"
"@types/node": "^22.12.0"
}, },
"dependencies": { "dependencies": {
"@api.global/typedserver": "^3.0.55", "@api.global/typedserver": "^3.0.74",
"@git.zone/tsbundle": "^2.2.1", "@git.zone/tsbundle": "^2.5.1",
"@git.zone/tsrun": "^1.3.3", "@git.zone/tsrun": "^1.3.3",
"@push.rocks/early": "^4.0.4", "@push.rocks/early": "^4.0.4",
"@push.rocks/lik": "^6.1.0", "@push.rocks/lik": "^6.2.2",
"@push.rocks/smartchok": "^1.0.34", "@push.rocks/smartchok": "^1.0.34",
"@push.rocks/smartcli": "^4.0.11", "@push.rocks/smartcli": "^4.0.11",
"@push.rocks/smartdelay": "^3.0.5", "@push.rocks/smartdelay": "^3.0.5",
"@push.rocks/smartfile": "^11.1.6", "@push.rocks/smartfile": "^11.2.5",
"@push.rocks/smartlog": "^3.0.7", "@push.rocks/smartlog": "^3.1.8",
"@push.rocks/smartlog-destination-local": "^9.0.2", "@push.rocks/smartlog-destination-local": "^9.0.2",
"@push.rocks/smartshell": "^3.2.2", "@push.rocks/smartshell": "^3.2.3",
"@push.rocks/taskbuffer": "^3.1.7" "@push.rocks/taskbuffer": "^3.1.7"
}, },
"files": [ "files": [
@ -83,5 +82,6 @@
"homepage": "https://code.foss.global/git.zone/tswatch#readme", "homepage": "https://code.foss.global/git.zone/tswatch#readme",
"pnpm": { "pnpm": {
"overrides": {} "overrides": {}
} },
"packageManager": "pnpm@10.11.0+sha512.6540583f41cc5f628eb3d9773ecee802f4f9ef9923cc45b69890fb47991d4b092964694ec3a4f738a420c918a333062c8b925d312f42e4f0c263eb603551f977"
} }

4983
pnpm-lock.yaml generated

File diff suppressed because it is too large Load Diff

View File

@ -1,5 +1,5 @@
// tslint:disable-next-line: no-implicit-dependencies // tslint:disable-next-line: no-implicit-dependencies
import { expect, expectAsync, tap } from '@push.rocks/tapbundle'; import { expect, tap } from '@git.zone/tstest/tapbundle';
import * as tswatch from '../ts/index.js'; import * as tswatch from '../ts/index.js';
let testTsWatchInstance: tswatch.TsWatch; let testTsWatchInstance: tswatch.TsWatch;

View File

@ -3,6 +3,6 @@
*/ */
export const commitinfo = { export const commitinfo = {
name: '@git.zone/tswatch', name: '@git.zone/tswatch',
version: '2.1.0', version: '2.1.1',
description: 'A development tool for automatically watching and re-compiling TypeScript projects upon detecting file changes, enhancing developer workflows.' description: 'A development tool for automatically watching and re-compiling TypeScript projects upon detecting file changes, enhancing developer workflows.'
} }