swh:1:snp:740441ee4139fcf046ea4d17223a047ea363cd0f
Raw File
Tip revision: dfd8b5b1d5e87d510232a741faf93f6ac95a12d3 authored by Richard Smith on 03 June 2014, 14:33:28 UTC
Release v0.1.6.
Tip revision: dfd8b5b
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