Compare commits

..

2 Commits

Author SHA1 Message Date
717e1d29ed 1.0.38 2020-03-13 18:19:01 +00:00
a8254e6962 fix(core): update 2020-03-13 18:19:00 +00:00
3 changed files with 2 additions and 7 deletions

2
package-lock.json generated
View File

@@ -1,6 +1,6 @@
{
"name": "@gitzone/tswatch",
"version": "1.0.37",
"version": "1.0.38",
"lockfileVersion": 1,
"requires": true,
"dependencies": {

View File

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

View File

@@ -42,11 +42,6 @@ export class TsWatch {
console.log(
'bundling TypeScript files to "dist_watch" Note: This is for development only!'
);
this.smartserve = new plugins.smartserve.SmartServe({
port: 3001,
injectReload: true,
serveDir: plugins.path.join(paths.cwd, './dist_watch/')
});
const parcel = new Parcel();
await parcel.start();
break;