Skip to content

Commit 10355a0

Browse files
author
Chris.Decoster
committed
watch.js adjust the glob for INJECT to only include the html with streams.APP + '/**/*.html'. This was causing issue with windows.
1 parent 4fb0bdd commit 10355a0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tasks/watch.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ function setUpTaskWatch(context) {
5959
}, queue.getHandler('css', 'html', 'reload')); // html will be needed in case previous injection failed
6060

6161
// App html, all bower, but not JS or SASS sources
62-
watch([streams.APP + '/**/*.html', streams.BOWER + '/**/*', '!**/*.js', '!**/*.scss'], {
62+
watch(streams.APP + '/**/*.html', {
6363
name : 'INJECT',
6464
emitOnGlob: false
6565
}, queue.getHandler('html', 'reload'));

0 commit comments

Comments
 (0)