Skip to content
This repository has been archived by the owner on Apr 14, 2023. It is now read-only.

Commit

Permalink
update the tasks to include lerna
Browse files Browse the repository at this point in the history
  • Loading branch information
Evans Hauser committed Jul 28, 2017
1 parent d53f915 commit 8710dce
Showing 1 changed file with 21 additions and 28 deletions.
49 changes: 21 additions & 28 deletions .vscode/tasks.json
@@ -1,30 +1,23 @@
{
"version": "0.1.0",
"tasks": [
{
"taskName": "tsc",
"command": "tsc",
"isShellCommand": true,
"args": [
"-p",
"tsconfig.json"
],
"showOutput": "silent",
"problemMatcher": "$tsc"
},
{
"taskName": "watch-tsc",
"command": "tsc",
"isShellCommand": true,
"isBuildCommand": true,
"isBackground": true,
"args": [
"-w",
"-p",
"."
],
"showOutput": "always",
"problemMatcher": "$tsc-watch"
}
]
"version": "0.1.0",
"tasks": [
{
"taskName": "tsc",
"command": "lerna",
"isShellCommand": true,
"args": ["run", "build"],
"showOutput": "silent",
"problemMatcher": "$tsc"
},
{
"taskName": "watch-tsc",
"command": "lerna",
"isShellCommand": true,
"isBuildCommand": true,
"isBackground": true,
"args": ["run", "watch"],
"showOutput": "always",
"problemMatcher": "$tsc-watch"
}
]
}

0 comments on commit 8710dce

Please sign in to comment.