https://github.com/ContentMine/quickscrape
Raw File
Tip revision: b9354712de9716493aa44d7f7ad1c4f757658938 authored by Richard Smith on 30 May 2014, 01:34:03 UTC
Release v0.1.3.
Tip revision: b935471
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