Compare commits

..

4 Commits

5 changed files with 1780 additions and 1643 deletions

View File

@@ -1,5 +1,17 @@
# Changelog # Changelog
## 2025-01-29 - 2.0.39 - fix(package.json)
Add pnpm overrides configuration for peek-readable package
- Added pnpm overrides section in package.json
- Specified version 5.3.1 for peek-readable package
## 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) ## 2024-12-09 - 2.0.37 - fix(core)
Refactor TsWatch class to improve website execution handling Refactor TsWatch class to improve website execution handling

View File

@@ -1,6 +1,6 @@
{ {
"name": "@git.zone/tswatch", "name": "@git.zone/tswatch",
"version": "2.0.37", "version": "2.0.39",
"private": false, "private": false,
"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.",
"main": "dist_ts/index.js", "main": "dist_ts/index.js",
@@ -16,24 +16,24 @@
"build": "(tsbuild --web --allowimplicitany)" "build": "(tsbuild --web --allowimplicitany)"
}, },
"devDependencies": { "devDependencies": {
"@git.zone/tsbuild": "^2.2.0", "@git.zone/tsbuild": "^2.2.1",
"@git.zone/tstest": "^1.0.90", "@git.zone/tstest": "^1.0.96",
"@push.rocks/tapbundle": "^5.5.3", "@push.rocks/tapbundle": "^5.5.6",
"@types/node": "^22.10.1" "@types/node": "^22.12.0"
}, },
"dependencies": { "dependencies": {
"@api.global/typedserver": "^3.0.51", "@api.global/typedserver": "^3.0.55",
"@git.zone/tsbundle": "^2.1.0", "@git.zone/tsbundle": "^2.2.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.1.0",
"@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.0.21", "@push.rocks/smartfile": "^11.1.6",
"@push.rocks/smartlog": "^3.0.7", "@push.rocks/smartlog": "^3.0.7",
"@push.rocks/smartlog-destination-local": "^9.0.2", "@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" "@push.rocks/taskbuffer": "^3.1.7"
}, },
"files": [ "files": [
@@ -71,5 +71,10 @@
"live reloading", "live reloading",
"node.js", "node.js",
"development server" "development server"
] ],
"pnpm": {
"overrides": {
"peek-readable": "5.3.1"
}
}
} }

3383
pnpm-lock.yaml generated

File diff suppressed because it is too large Load Diff

View File

@@ -3,6 +3,6 @@
*/ */
export const commitinfo = { export const commitinfo = {
name: '@git.zone/tswatch', name: '@git.zone/tswatch',
version: '2.0.37', version: '2.0.39',
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.'
} }

View File

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