https://github.com/ContentMine/quickscrape
Raw File
Tip revision: 9ade74fd0d03241f3941d3c441db61b3f3c13e65 authored by Richard Smith on 10 July 2014, 15:24:31 UTC
Release v0.2.4.
Tip revision: 9ade74f
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