rmoliva/ockham

View on GitHub
grunt/contrib-watch.js

Summary

Maintainability
A
0 mins
Test Coverage
module.exports = function(grunt) {
  
  grunt.config('watch', {
    scripts: {
      files: grunt.file.readJSON('files.json'),
      tasks: ["clean:dist", 'jshint:with_debug'],
      options: {
        spawn: false
      }
    }
  });
  
  grunt.loadNpmTasks('grunt-contrib-watch');
};