Compare commits

...

4 Commits

Author SHA1 Message Date
8d7ab769e1 1.0.71 2022-03-18 20:32:00 +01:00
8ebc438e2d fix(core): update 2022-03-18 20:31:59 +01:00
d0d158ee87 1.0.70 2022-03-18 20:20:07 +01:00
3ada286495 fix(core): update 2022-03-18 20:20:07 +01:00
3 changed files with 4 additions and 5 deletions

4
package-lock.json generated
View File

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

View File

@@ -1,6 +1,6 @@
{
"name": "@gitzone/tswatch",
"version": "1.0.69",
"version": "1.0.71",
"private": false,
"description": "watch typescript projects during development",
"main": "dist_ts/index.js",

View File

@@ -103,7 +103,6 @@ export class TsWatch {
await tsbundle.build(paths.cwd, './ts_web/index.ts', './dist_serve/bundle.js', {
bundler: 'esbuild'
});
await smartserve.reload();
}
this.watcherMap.add(
new Watcher({
@@ -128,7 +127,7 @@ export class TsWatch {
'./dist_watch/index.html'
)
);
await bundleAndReload();
await bundleAndReload2();
},
timeout: null,
})