Compare commits

...

8 Commits

Author SHA1 Message Date
d79c4d2eaa 2.0.22 2024-01-28 18:23:07 +01:00
5ea12b77e7 fix(core): update 2024-01-28 18:23:06 +01:00
0fbb18690a 2.0.21 2024-01-09 11:40:39 +01:00
adbc255bcd fix(core): update 2024-01-09 11:40:38 +01:00
16676d52da 2.0.20 2024-01-09 11:27:53 +01:00
89251ad3e7 fix(core): update 2024-01-09 11:27:52 +01:00
7e2a4725a5 2.0.19 2024-01-08 16:48:44 +01:00
f2c5cecbd3 fix(core): update 2024-01-08 16:48:43 +01:00
7 changed files with 210 additions and 239 deletions

File diff suppressed because one or more lines are too long

4
package-lock.json generated
View File

@@ -1,12 +1,12 @@
{
"name": "@gitzone/tswatch",
"version": "2.0.18",
"version": "2.0.22",
"lockfileVersion": 2,
"requires": true,
"packages": {
"": {
"name": "@gitzone/tswatch",
"version": "2.0.18",
"version": "2.0.22",
"license": "MIT",
"dependencies": {
"@gitzone/tsbundle": "^2.0.7",

View File

@@ -1,6 +1,6 @@
{
"name": "@git.zone/tswatch",
"version": "2.0.18",
"version": "2.0.22",
"private": false,
"description": "watch typescript projects during development",
"main": "dist_ts/index.js",
@@ -17,17 +17,17 @@
},
"devDependencies": {
"@git.zone/tsbuild": "^2.1.72",
"@git.zone/tstest": "^1.0.84",
"@git.zone/tstest": "^1.0.86",
"@push.rocks/tapbundle": "^5.0.15",
"@types/node": "^20.10.7"
"@types/node": "^20.11.9"
},
"dependencies": {
"@api.global/typedserver": "^3.0.13",
"@git.zone/tsbundle": "^2.0.12",
"@api.global/typedserver": "^3.0.20",
"@git.zone/tsbundle": "^2.0.15",
"@git.zone/tsrun": "^1.2.46",
"@push.rocks/early": "^4.0.4",
"@push.rocks/lik": "^6.0.12",
"@push.rocks/smartchok": "^1.0.23",
"@push.rocks/smartchok": "^1.0.32",
"@push.rocks/smartcli": "^4.0.8",
"@push.rocks/smartdelay": "^3.0.5",
"@push.rocks/smartlog": "^3.0.3",

423
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.18',
version: '2.0.22',
description: 'watch typescript projects during development'
}

View File

@@ -48,6 +48,8 @@ export class TsWatch {
injectReload: true,
serveDir: plugins.path.join(paths.cwd, './dist_watch/'),
port: 3002,
enableCompression: true,
preferredCompressionMethod: 'gzip',
});
const bundleAndReloadElement = async () => {

View File

@@ -20,7 +20,7 @@ export class Watcher {
});
private currentExecution: plugins.smartshell.IExecResultStreaming;
private smartchokWatcher = new plugins.smartchok.Smartchok([], {});
private smartchokWatcher = new plugins.smartchok.Smartchok([]);
private options: IWatcherConstructorOptions;
constructor(optionsArg: IWatcherConstructorOptions) {