Skip to content

Commit a684202

Browse files
committed
Fixed unescaped character in gruntfile to fix watch task not watching scripts folder
1 parent fbc33b6 commit a684202

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Diff for: templates/common/Gruntfile.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -54,8 +54,8 @@ module.exports = function (grunt) {
5454
express: {
5555
files: [
5656
'<%%= yeoman.app %>/{,*//*}*.html',
57-
'{.tmp,<%= yeoman.app %>}/styles/{,*//*}*.css',
58-
'{.tmp,<%= yeoman.app %>}/scripts/{,*//*}*.js',
57+
'{.tmp,<%%= yeoman.app %>}/styles/{,*//*}*.css',
58+
'{.tmp,<%%= yeoman.app %>}/scripts/{,*//*}*.js',
5959
'<%%= yeoman.app %>/images/{,*//*}*.{png,jpg,jpeg,gif,webp,svg}',
6060
'server.js',
6161
'lib/{,*//*}*.{js,json}'

0 commit comments

Comments
 (0)