Skip to content

Commit ccd44de

Browse files
author
benholloway
committed
fixed bug with watch task
1 parent 0d67eaf commit ccd44de

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

tasks/watch.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ var gulp = require('gulp'),
55
watchSequence = require('gulp-watch-sequence');
66

77
var config = require('../lib/config/config'),
8+
hr = require('../lib/util/hr'),
89
streams = require('../lib/config/streams');
910

1011
var CONSOLE_WIDTH = config.getConsoleWidth();
@@ -13,7 +14,7 @@ gulp.task('watch', ['server'], function () {
1314

1415
// enqueue actions to avoid multiple trigger
1516
var queue = watchSequence(500, function () {
16-
console.log(streams.hr('\u2591', CONSOLE_WIDTH));
17+
console.log(hr('\u2591', CONSOLE_WIDTH));
1718
});
1819

1920
// watch statements

0 commit comments

Comments
 (0)