Skip to content

Commit 5538311

Browse files
committed
package.json: Replace gulp-util with fancy-log
Signed-off-by: Stephen Augustus <[email protected]>
1 parent 653c629 commit 5538311

File tree

3 files changed

+2803
-2613
lines changed

3 files changed

+2803
-2613
lines changed

gulpfile.js

+4-4
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ var ARGV = require("yargs").
2727

2828
var webpack = require("webpack-stream"),
2929
gulp = require("gulp"),
30-
gutil = require("gulp-util"),
30+
log = require("fancy-log"),
3131
karma = require("karma"),
3232
mocha = require("gulp-mocha"),
3333
istanbul = require("gulp-istanbul"),
@@ -267,13 +267,13 @@ gulp.task("test:browser", gulp.series("test:lint",
267267
// ## TRAVIS-CI TASKS ###
268268
gulp.task("travis:browser", function(cb) {
269269
if ("true" !== process.env.TRAVIS) {
270-
gutil.log("travis-ci environment not detected");
270+
log("travis-ci environment not detected");
271271
cb();
272272
return;
273273
}
274274

275-
gutil.log("pull request: ", process.env.TRAVIS_PULL_REQUEST);
276-
gutil.log("job number: ", process.env.TRAVIS_JOB_NUMBER);
275+
log("pull request: ", process.env.TRAVIS_PULL_REQUEST);
276+
log("job number: ", process.env.TRAVIS_JOB_NUMBER);
277277
if (process.env.SAUCE_USERNAME &&
278278
process.env.SAUCE_ACCESS_KEY &&
279279
"false" === process.env.TRAVIS_PULL_REQUEST) {

0 commit comments

Comments
 (0)