Update task runner and CONTRIBUTING.md config to use gulp build instead of tsc

This commit is contained in:
Matt Mazzola 2016-06-27 16:36:27 -07:00
Родитель c4598c0f65
Коммит be2532eb19
2 изменённых файлов: 23 добавлений и 5 удалений

26
.vscode/tasks.json поставляемый
Просмотреть файл

@ -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`