We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 4457103 + aa6c90e commit cfc37ebCopy full SHA for cfc37eb
generators/app/index.js
@@ -29,6 +29,7 @@ module.exports = yeoman.generators.Base.extend({
29
dir: function () {
30
this.directory('src', 'src');
31
this.directory('test', 'test');
32
+ this.directory('_settings', '.settings');
33
},
34
35
app: function () {
generators/app/templates/_settings/tasks.json
@@ -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