We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9048d26 commit 4039dbeCopy full SHA for 4039dbe
Gruntfile.js
@@ -28,15 +28,14 @@ module.exports = function (grunt) {
28
},
29
watch: {
30
options: {
31
- livereload: true,
+ livereload: false,
32
debounceDelay: 250
33
34
scripts: {
35
files: [
36
- 'src/**/*.js',
37
- 'test/**/*.js'
+ 'src/**/*.js'
38
],
39
- tasks: 'build'
+ tasks: 'buildWatcher'
40
}
41
42
karma: {
@@ -179,6 +178,11 @@ module.exports = function (grunt) {
179
178
'karma:unit'
180
]);
181
+ grunt.registerTask('buildWatcher', [
182
+ 'babel',
183
+ 'concat'
184
+ ]);
185
+
186
grunt.registerTask('build', [
187
'jshint:test',
188
'jshint:src',
0 commit comments