diff options
| author | syuilo <syuilotan@yahoo.co.jp> | 2016-12-29 20:56:28 +0900 |
|---|---|---|
| committer | syuilo <syuilotan@yahoo.co.jp> | 2016-12-29 20:56:28 +0900 |
| commit | 2256252d539e2912b960855cc32e65d2a1819151 (patch) | |
| tree | 4d531c86cd3360e60b331d1092a7053cfeefe43c /gulpfile.ts | |
| parent | Reject when config not found (diff) | |
| download | misskey-2256252d539e2912b960855cc32e65d2a1819151.tar.gz misskey-2256252d539e2912b960855cc32e65d2a1819151.tar.bz2 misskey-2256252d539e2912b960855cc32e65d2a1819151.zip | |
Use gutil instead of console
Diffstat (limited to 'gulpfile.ts')
| -rw-r--r-- | gulpfile.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gulpfile.ts b/gulpfile.ts index 8a87621d9a..0301527766 100644 --- a/gulpfile.ts +++ b/gulpfile.ts @@ -190,7 +190,7 @@ gulp.task('build:client:scripts', done => { .transform(transformify((source, file) => { if (file.substr(-4) !== '.tag') return source; - console.log(file); + gutil.log('Build Tag: ' + file); return source; })) |