Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
30 changes: 17 additions & 13 deletions .vscode/tasks.json
Original file line number Diff line number Diff line change
@@ -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
}
}
]
}
27 changes: 27 additions & 0 deletions .vscode/tasks.json.old
Original file line number Diff line number Diff line change
@@ -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"
]
}
]
}
2 changes: 1 addition & 1 deletion src/app.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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));