summaryrefslogtreecommitdiff
path: root/gulpfile.ts
diff options
context:
space:
mode:
authorsyuilo <syuilotan@yahoo.co.jp>2016-12-29 20:56:28 +0900
committersyuilo <syuilotan@yahoo.co.jp>2016-12-29 20:56:28 +0900
commit2256252d539e2912b960855cc32e65d2a1819151 (patch)
tree4d531c86cd3360e60b331d1092a7053cfeefe43c /gulpfile.ts
parentReject when config not found (diff)
downloadmisskey-2256252d539e2912b960855cc32e65d2a1819151.tar.gz
misskey-2256252d539e2912b960855cc32e65d2a1819151.tar.bz2
misskey-2256252d539e2912b960855cc32e65d2a1819151.zip
Use gutil instead of console
Diffstat (limited to 'gulpfile.ts')
-rw-r--r--gulpfile.ts2
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;
}))