diff --git a/.vscode/tasks.json b/.vscode/tasks.json index db09c576..3276b40d 100755 --- a/.vscode/tasks.json +++ b/.vscode/tasks.json @@ -1,27 +1,31 @@ { - "version": "0.1.0", + "version": "2.0.0", "command": "npm", - "isShellCommand": true, - "suppressTaskName": true, "tasks": [ { - // Build task, Cmd+Shift+B - // "npm run build" - "taskName": "build", - "isBuildCommand": true, + "label": "build", + "type": "shell", "args": [ "run", "build" - ] + ], + "problemMatcher": [], + "group": { + "_id": "build", + "isDefault": false + } }, { - // Test task, Cmd+Shift+T - // "npm test" - "taskName": "test", - "isTestCommand": true, + "label": "test", + "type": "shell", "args": [ "test" - ] + ], + "problemMatcher": [], + "group": { + "_id": "test", + "isDefault": false + } } ] } diff --git a/.vscode/tasks.json.old b/.vscode/tasks.json.old new file mode 100644 index 00000000..db09c576 --- /dev/null +++ b/.vscode/tasks.json.old @@ -0,0 +1,27 @@ +{ + "version": "0.1.0", + "command": "npm", + "isShellCommand": true, + "suppressTaskName": true, + "tasks": [ + { + // Build task, Cmd+Shift+B + // "npm run build" + "taskName": "build", + "isBuildCommand": true, + "args": [ + "run", + "build" + ] + }, + { + // Test task, Cmd+Shift+T + // "npm test" + "taskName": "test", + "isTestCommand": true, + "args": [ + "test" + ] + } + ] +} diff --git a/src/app.ts b/src/app.ts index 78503ca4..249d5ac5 100644 --- a/src/app.ts +++ b/src/app.ts @@ -44,4 +44,4 @@ bootstrapMicroframework({ ], }) .then(() => banner(log)) - .catch(error => log.error('Application is crashed: ' + error)); + .catch(error => log.error('Application is crashed kindly contacts admin: ' + error));