Add watch task back to grunt.js.

This commit is contained in:
Olly Smith 2012-10-19 09:07:30 +01:00
parent 60eae6a697
commit 42099ea26b

View File

@ -23,6 +23,10 @@ module.exports = function (grunt) {
runner: ['spec/spec_runner.html'],
specs: ['build/spec/**/*.js']
}
},
watch: {
files: ['lib/**/*.coffee', 'spec/lib/**/*.coffee'],
tasks: 'default'
}
});