fix(core): Updated dependencies and added assetsHandler instantiation

This commit is contained in:
Philipp Kunz 2025-01-29 13:23:28 +01:00
parent 9c4751cdd0
commit 3a7a022d69
5 changed files with 1773 additions and 1568 deletions

View File

@ -1,5 +1,11 @@
# Changelog
## 2025-01-29 - 2.0.38 - fix(core)
Updated dependencies and added assetsHandler instantiation
- Updated various dependencies in package.json to latest versions.
- Added assetsHandler instantiation in TsWatch class to improve functionality.
## 2024-12-09 - 2.0.37 - fix(core)
Refactor TsWatch class to improve website execution handling

View File

@ -16,24 +16,24 @@
"build": "(tsbuild --web --allowimplicitany)"
},
"devDependencies": {
"@git.zone/tsbuild": "^2.2.0",
"@git.zone/tstest": "^1.0.90",
"@push.rocks/tapbundle": "^5.5.3",
"@types/node": "^22.10.1"
"@git.zone/tsbuild": "^2.2.1",
"@git.zone/tstest": "^1.0.96",
"@push.rocks/tapbundle": "^5.5.6",
"@types/node": "^22.12.0"
},
"dependencies": {
"@api.global/typedserver": "^3.0.51",
"@git.zone/tsbundle": "^2.1.0",
"@api.global/typedserver": "^3.0.55",
"@git.zone/tsbundle": "^2.2.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/smartcli": "^4.0.11",
"@push.rocks/smartdelay": "^3.0.5",
"@push.rocks/smartfile": "^11.0.21",
"@push.rocks/smartfile": "^11.1.6",
"@push.rocks/smartlog": "^3.0.7",
"@push.rocks/smartlog-destination-local": "^9.0.2",
"@push.rocks/smartshell": "^3.2.0",
"@push.rocks/smartshell": "^3.2.2",
"@push.rocks/taskbuffer": "^3.1.7"
},
"files": [

3316
pnpm-lock.yaml generated

File diff suppressed because it is too large Load Diff

View File

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

View File

@ -19,6 +19,7 @@ export class TsWatch {
*/
public async start() {
const tsbundle = new plugins.tsbundle.TsBundle();
const assetsHandler = new plugins.tsbundle.AssetsHandler();
const htmlHandler = new plugins.tsbundle.HtmlHandler();
switch (this.watchmode) {
case 'test':