swh:1:snp:740441ee4139fcf046ea4d17223a047ea363cd0f
Raw File
Tip revision: 23d16fccd65a4065baefb0b98e3239d03c584e8f authored by Richard Smith on 29 June 2014, 21:45:51 UTC
increase thresher version dependency
Tip revision: 23d16fc
Gruntfile.js
'use strict';

module.exports = function(grunt) {

  // Project configuration.
  grunt.initConfig({
    nodeunit: {
      files: ['test/**/*_test.js'],
    },
    watch: {
      lib: {
        tasks: ['nodeunit']
      },
      test: {
        tasks: ['nodeunit']
      }
    }
  });

  // These plugins provide necessary tasks.
  grunt.loadNpmTasks('grunt-contrib-nodeunit');
  grunt.loadNpmTasks('grunt-contrib-watch');

  // Default task.
  grunt.registerTask('default', ['nodeunit']);

};
back to top