Skip to content

Commit fce23c0

Browse files
committed
fix(gruntfile) livereload file paths were not properly escaped
1 parent 9f61499 commit fce23c0

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

Diff for: templates/common/Gruntfile.js

+4-4
Original file line numberDiff line numberDiff line change
@@ -53,10 +53,10 @@ module.exports = function (grunt) {
5353
},<% } %>
5454
livereload: {
5555
files: [
56-
'<%= yeoman.app %>/{,*//*}*.html',
57-
'{.tmp,<%= yeoman.app %>}/styles/{,*//*}*.css',
58-
'{.tmp,<%= yeoman.app %>}/scripts/{,*//*}*.js',
59-
'<%= yeoman.app %>/images/{,*//*}*.{png,jpg,jpeg,gif,webp,svg}',
56+
'<%%= yeoman.app %>/{,*//*}*.html',
57+
'{.tmp,<%%= yeoman.app %>}/styles/{,*//*}*.css',
58+
'{.tmp,<%%= yeoman.app %>}/scripts/{,*//*}*.js',
59+
'<%%= yeoman.app %>/images/{,*//*}*.{png,jpg,jpeg,gif,webp,svg}',
6060
],
6161
options: {
6262
livereload: true

0 commit comments

Comments
 (0)