heat-index
Version:
module for heat index calculation
22 lines (19 loc) • 424 B
JavaScript
module.exports = function(grunt) {
grunt.loadNpmTasks('grunt-contrib-watch');
grunt.loadNpmTasks('grunt-shell');
grunt.initConfig({
watch: {
js: {
files: ['lib/**/*.js', 'spec/**/*.spec.js'],
tasks: ['test']
}
},
shell: {
test: {
options: { stdout: true },
command: 'jasmine-node spec/'
}
}
});
grunt.registerTask('test', 'shell:test');
};