Compare commits

...

16 Commits

Author SHA1 Message Date
7481784a64 2.0.1 2022-05-04 18:41:07 +02:00
aa6649483a fix(core): update 2022-05-04 18:41:07 +02:00
65f778c40f 2.0.0 2022-05-04 17:26:37 +02:00
4204a61db9 BREAKING CHANGE(core): switch to gitzone v2 generation tools 2022-05-04 17:26:36 +02:00
181369ad3f 1.0.81 2022-04-22 09:25:57 +02:00
d5816b0ed8 fix(core): update 2022-04-22 09:25:57 +02:00
889643e233 1.0.80 2022-04-22 01:36:11 +02:00
1d3a2dcb64 fix(core): update 2022-04-22 01:36:11 +02:00
9688e3323d 1.0.79 2022-04-22 00:31:21 +02:00
6fa56e9be6 fix(core): update 2022-04-22 00:31:20 +02:00
15e9df5f4f 1.0.78 2022-04-21 23:41:45 +02:00
e0f8503b2b fix(core): update 2022-04-21 23:41:45 +02:00
1337a6ec25 1.0.77 2022-04-21 23:36:16 +02:00
bd36e3edf3 fix(core): update 2022-04-21 23:36:15 +02:00
89fae2edc9 1.0.76 2022-03-31 12:29:59 +02:00
82b09ad253 fix(core): update 2022-03-31 12:29:58 +02:00
6 changed files with 178 additions and 8862 deletions

File diff suppressed because one or more lines are too long

8962
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@@ -1,6 +1,6 @@
{ {
"name": "@gitzone/tswatch", "name": "@gitzone/tswatch",
"version": "1.0.75", "version": "2.0.1",
"private": false, "private": false,
"description": "watch typescript projects during development", "description": "watch typescript projects during development",
"main": "dist_ts/index.js", "main": "dist_ts/index.js",
@@ -13,16 +13,16 @@
}, },
"scripts": { "scripts": {
"test": "(tstest test/ --web)", "test": "(tstest test/ --web)",
"build": "(tsbuild --web --skiplibcheck --allowimplicitany)" "build": "(tsbuild --web --allowimplicitany)"
}, },
"devDependencies": { "devDependencies": {
"@gitzone/tsbuild": "^2.1.61", "@gitzone/tsbuild": "^2.1.61",
"@gitzone/tstest": "^1.0.70", "@gitzone/tstest": "^1.0.70",
"@pushrocks/tapbundle": "^5.0.3", "@pushrocks/tapbundle": "^5.0.3",
"@types/node": "^17.0.23" "@types/node": "^17.0.31"
}, },
"dependencies": { "dependencies": {
"@gitzone/tsbundle": "^1.0.102", "@gitzone/tsbundle": "^2.0.2",
"@gitzone/tsrun": "^1.2.32", "@gitzone/tsrun": "^1.2.32",
"@pushrocks/early": "^4.0.2", "@pushrocks/early": "^4.0.2",
"@pushrocks/lik": "^5.0.4", "@pushrocks/lik": "^5.0.4",
@@ -31,9 +31,9 @@
"@pushrocks/smartdelay": "^2.0.13", "@pushrocks/smartdelay": "^2.0.13",
"@pushrocks/smartlog": "^2.0.44", "@pushrocks/smartlog": "^2.0.44",
"@pushrocks/smartlog-destination-local": "^8.0.8", "@pushrocks/smartlog-destination-local": "^8.0.8",
"@pushrocks/smartserve": "^2.0.12", "@pushrocks/smartserve": "^2.0.27",
"@pushrocks/smartshell": "^2.0.30", "@pushrocks/smartshell": "^2.0.30",
"@pushrocks/taskbuffer": "^3.0.0" "@pushrocks/taskbuffer": "^3.0.1"
}, },
"files": [ "files": [
"ts/**/*", "ts/**/*",

8
ts/00_commitinfo_data.ts Normal file
View File

@@ -0,0 +1,8 @@
/**
* autocreated commitinfo by @pushrocks/commitinfo
*/
export const commitinfo = {
name: '@gitzone/tswatch',
version: '2.0.1',
description: 'watch typescript projects during development'
}

View File

@@ -84,12 +84,6 @@ export class TsWatch {
}) })
); );
await smartserve.start(); await smartserve.start();
/* const parcel = new plugins.smartparcel.Parcel(
plugins.path.join(process.cwd(), './html/index.html'),
plugins.path.join(process.cwd(), './dist_watch'),
'index.html'
);
await parcel.watchAndServe(); */
break; break;
case 'gitzone_website': case 'gitzone_website':
this.watcherMap.add( this.watcherMap.add(
@@ -132,14 +126,6 @@ export class TsWatch {
timeout: null, timeout: null,
}) })
); );
// client directory
/* const parcelWebsite = new plugins.smartparcel.Parcel(
plugins.path.join(process.cwd(), './html/index.html'),
plugins.path.join(process.cwd(), './dist_serve'),
'bundle.js'
);
await parcelWebsite.watchAndServe(); */
break; break;
case 'gitzone_service': case 'gitzone_service':
this.watcherMap.add( this.watcherMap.add(

View File

@@ -15,7 +15,6 @@ import * as smartcli from '@pushrocks/smartcli';
import * as smartdelay from '@pushrocks/smartdelay'; import * as smartdelay from '@pushrocks/smartdelay';
import * as smartlog from '@pushrocks/smartlog'; import * as smartlog from '@pushrocks/smartlog';
import * as smartlogDestinationLocal from '@pushrocks/smartlog-destination-local'; import * as smartlogDestinationLocal from '@pushrocks/smartlog-destination-local';
import * as smartparcel from '@pushrocks/smartparcel';
import * as smartserve from '@pushrocks/smartserve'; import * as smartserve from '@pushrocks/smartserve';
import * as smartshell from '@pushrocks/smartshell'; import * as smartshell from '@pushrocks/smartshell';
import * as taskbuffer from '@pushrocks/taskbuffer'; import * as taskbuffer from '@pushrocks/taskbuffer';
@@ -27,7 +26,6 @@ export {
smartdelay, smartdelay,
smartlog, smartlog,
smartlogDestinationLocal, smartlogDestinationLocal,
smartparcel,
smartserve, smartserve,
smartshell, smartshell,
taskbuffer, taskbuffer,