Skip to content

Commit cfc37eb

Browse files
committed
Merge pull request #6 from moander/moander/Feature-3
Use 'gulp build' as default VSCode build task
2 parents 4457103 + aa6c90e commit cfc37eb

File tree

2 files changed

+21
-0
lines changed

2 files changed

+21
-0
lines changed

generators/app/index.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@ module.exports = yeoman.generators.Base.extend({
2929
dir: function () {
3030
this.directory('src', 'src');
3131
this.directory('test', 'test');
32+
this.directory('_settings', '.settings');
3233
},
3334

3435
app: function () {
Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
{
2+
"version": "0.1.0",
3+
"command": "node_modules/.bin/gulp",
4+
"isShellCommand": true,
5+
"args": [
6+
"--no-color"
7+
],
8+
"tasks": [
9+
{
10+
"taskName": "build",
11+
"args": [],
12+
"isBuildCommand": true,
13+
"problemMatcher": [
14+
"$lessCompile",
15+
"$tsc",
16+
"$jshint"
17+
]
18+
}
19+
]
20+
}

0 commit comments

Comments
 (0)