Skip to content

Commit b5116c8

Browse files
committed
Merge pull request #690 from brian428/feature/gulp-color
#688 add --color flag to npm script calls to Gulp
2 parents 59c8e79 + 5ed15ca commit b5116c8

File tree

2 files changed

+17
-13
lines changed

2 files changed

+17
-13
lines changed

README.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -248,6 +248,10 @@ Forks of this project demonstrate how to extend and integrate with other librari
248248
:---: |:---: |:---: |:---: |:---: |:---: |
249249
[sclausen](https://github.com/sclausen) |[Shyam-Chen](https://github.com/Shyam-Chen) |[tapas4java](https://github.com/tapas4java) |[butterfieldcons](https://github.com/butterfieldcons) |[jgolla](https://github.com/jgolla) |[ultrasonicsoft](https://github.com/ultrasonicsoft) |
250250

251+
[<img alt="brian428" src="https://avatars.githubusercontent.com/u/140338?v=3&s=117" width="117">](https://github.com/brian428) | | | | | |
252+
:---: |:---: |:---: |:---: |:---: |:---: |
253+
[brian428](https://github.com/brian428) | | | | | |
254+
251255
# Change Log
252256

253257
You can follow the [Angular 2 change log here](https://github.com/angular/angular/blob/master/CHANGELOG.md).

package.json

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -6,26 +6,26 @@
66
"url": "https://github.com/mgechev/angular2-seed"
77
},
88
"scripts": {
9-
"build.dev": "gulp build.dev",
10-
"build.dev.watch": "gulp build.dev.watch",
11-
"build.e2e": "gulp build.e2e",
12-
"build.prod": "gulp build.prod",
13-
"build.test": "gulp build.test",
14-
"build.test.watch": "gulp build.test.watch",
15-
"docs": "npm run gulp -- build.docs && npm run gulp -- serve.docs",
9+
"build.dev": "gulp build.dev --color",
10+
"build.dev.watch": "gulp build.dev.watch --color",
11+
"build.e2e": "gulp build.e2e --color",
12+
"build.prod": "gulp build.prod --color",
13+
"build.test": "gulp build.test --color",
14+
"build.test.watch": "gulp build.test.watch --color",
15+
"docs": "npm run gulp -- build.docs --color && npm run gulp -- serve.docs --color",
1616
"e2e": "protractor",
1717
"e2e.live": "protractor --elementExplorer",
1818
"gulp": "gulp",
1919
"karma": "karma",
2020
"karma.start": "karma start",
2121
"postinstall": "typings install && gulp check.versions && npm prune",
2222
"reinstall": "npm cache clean && npm install",
23-
"serve.coverage": "remap-istanbul -b src/ -i coverage/coverage-final.json -o coverage -t html && npm run gulp -- serve.coverage",
24-
"serve.dev": "gulp serve.dev",
25-
"serve.e2e": "gulp serve.e2e",
26-
"start": "gulp serve.dev",
27-
"tasks.list": "gulp --tasks-simple",
28-
"test": "gulp test",
23+
"serve.coverage": "remap-istanbul -b src/ -i coverage/coverage-final.json -o coverage -t html && npm run gulp -- serve.coverage --color",
24+
"serve.dev": "gulp serve.dev --color",
25+
"serve.e2e": "gulp serve.e2e --color",
26+
"start": "gulp serve.dev --color",
27+
"tasks.list": "gulp --tasks-simple --color",
28+
"test": "gulp test --color",
2929
"webdriver-start": "webdriver-manager start",
3030
"webdriver-update": "webdriver-manager update"
3131
},

0 commit comments

Comments
 (0)