Skip to content

Commit 8a494cb

Browse files
committed
Removed live reload from Grunt file as it's no longer used
1 parent 15b0837 commit 8a494cb

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

Gruntfile.js

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -110,8 +110,7 @@ module.exports = function (grunt) {
110110
files : ['src/**/*'],
111111
tasks : ['less', 'sass', 'concat', 'uglify', 'usebanner', 'cssmin'],
112112
options: {
113-
spawn : false,
114-
livereload: true
113+
spawn : false
115114
}
116115
},
117116
test : {
@@ -136,8 +135,8 @@ module.exports = function (grunt) {
136135

137136
// Build
138137
grunt.registerTask('build', ['less', 'sass', 'concat', 'uglify', 'usebanner', 'cssmin']);
139-
138+
140139
//Watch src build
141140
grunt.registerTask('watchsrc', ['watch:src']);
142141

143-
};
142+
};

0 commit comments

Comments
 (0)