Update task runner and CONTRIBUTING.md config to use gulp build instead of tsc
This commit is contained in:
Родитель
c4598c0f65
Коммит
be2532eb19
|
@ -2,9 +2,27 @@
|
|||
// See https://go.microsoft.com/fwlink/?LinkId=733558
|
||||
// for the documentation about the tasks.json format
|
||||
"version": "0.1.0",
|
||||
"command": "tsc",
|
||||
"command": "gulp",
|
||||
"isShellCommand": true,
|
||||
"args": ["-p", "."],
|
||||
"showOutput": "silent",
|
||||
"problemMatcher": "$tsc"
|
||||
"args": [
|
||||
"--no-color"
|
||||
],
|
||||
"tasks": [
|
||||
{
|
||||
"taskName": "build",
|
||||
"args": [],
|
||||
"isBuildCommand": true,
|
||||
"isWatching": false,
|
||||
"problemMatcher": [
|
||||
"$lessCompile",
|
||||
"$tsc",
|
||||
"$jshint"
|
||||
]
|
||||
},
|
||||
{
|
||||
"taskName": "test",
|
||||
"args": [],
|
||||
"isTestCommand": true
|
||||
}
|
||||
]
|
||||
}
|
|
@ -20,7 +20,7 @@ typings install
|
|||
|
||||
## Building
|
||||
```
|
||||
tsc -p .
|
||||
gulp build
|
||||
```
|
||||
Or if using VS Code: `Ctrl + Shift + B`
|
||||
|
||||
|
|
Загрузка…
Ссылка в новой задаче