Compare commits

..

4 Commits

Author SHA1 Message Date
Juergen Kunz
488bd65933 2.1.2
Some checks failed
Default (tags) / security (push) Successful in 51s
Default (tags) / test (push) Successful in 53s
Default (tags) / release (push) Failing after 50s
Default (tags) / metadata (push) Successful in 56s
2025-06-26 23:17:15 +00:00
Juergen Kunz
5763858bac fix(dependencies): Update @push.rocks/smartchok dependency to ^1.1.1 2025-06-26 23:17:15 +00:00
Juergen Kunz
a4c8e33e3a 2.1.1
Some checks failed
Default (tags) / security (push) Successful in 52s
Default (tags) / test (push) Successful in 54s
Default (tags) / release (push) Failing after 49s
Default (tags) / metadata (push) Successful in 57s
2025-06-26 20:24:58 +00:00
Juergen Kunz
81941c33cb fix(deps): Update dependency versions and test import paths for enhanced stability 2025-06-26 20:24:58 +00:00
5 changed files with 2314 additions and 2745 deletions

View File

@@ -1,5 +1,24 @@
# Changelog
## 2025-06-26 - 2.1.2 - fix(dependencies)
Update @push.rocks/smartchok dependency to ^1.1.1
- Bump @push.rocks/smartchok version from ^1.0.34 to ^1.1.1 in package.json
## 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)
Add Continuous Integration workflows for Gitea with Docker-based setup

View File

@@ -1,6 +1,6 @@
{
"name": "@git.zone/tswatch",
"version": "2.1.0",
"version": "2.1.2",
"private": false,
"description": "A development tool for automatically watching and re-compiling TypeScript projects upon detecting file changes, enhancing developer workflows.",
"main": "dist_ts/index.js",
@@ -17,24 +17,23 @@
"buildDocs": "tsdoc"
},
"devDependencies": {
"@git.zone/tsbuild": "^2.2.1",
"@git.zone/tstest": "^1.0.96",
"@push.rocks/tapbundle": "^5.5.6",
"@types/node": "^22.12.0"
"@git.zone/tsbuild": "^2.6.4",
"@git.zone/tstest": "^2.3.1",
"@types/node": "^24.0.4"
},
"dependencies": {
"@api.global/typedserver": "^3.0.55",
"@git.zone/tsbundle": "^2.2.1",
"@api.global/typedserver": "^3.0.74",
"@git.zone/tsbundle": "^2.5.1",
"@git.zone/tsrun": "^1.3.3",
"@push.rocks/early": "^4.0.4",
"@push.rocks/lik": "^6.1.0",
"@push.rocks/smartchok": "^1.0.34",
"@push.rocks/lik": "^6.2.2",
"@push.rocks/smartchok": "^1.1.1",
"@push.rocks/smartcli": "^4.0.11",
"@push.rocks/smartdelay": "^3.0.5",
"@push.rocks/smartfile": "^11.1.6",
"@push.rocks/smartlog": "^3.0.7",
"@push.rocks/smartfile": "^11.2.5",
"@push.rocks/smartlog": "^3.1.8",
"@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"
},
"files": [
@@ -83,5 +82,6 @@
"homepage": "https://code.foss.global/git.zone/tswatch#readme",
"pnpm": {
"overrides": {}
}
},
"packageManager": "pnpm@10.11.0+sha512.6540583f41cc5f628eb3d9773ecee802f4f9ef9923cc45b69890fb47991d4b092964694ec3a4f738a420c918a333062c8b925d312f42e4f0c263eb603551f977"
}

5010
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
import { expect, expectAsync, tap } from '@push.rocks/tapbundle';
import { expect, tap } from '@git.zone/tstest/tapbundle';
import * as tswatch from '../ts/index.js';
let testTsWatchInstance: tswatch.TsWatch;

View File

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