swh:1:snp:740441ee4139fcf046ea4d17223a047ea363cd0f
Raw File
Tip revision: 352d172272d1731ade532cb03ca473624612361b authored by Richard Smith on 31 May 2014, 19:17:27 UTC
v0.1.4 prep
Tip revision: 352d172
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