Gruntfile.js 388 B

12345678910111213141516171819
  1. module.exports = function(grunt) {
  2. grunt.initConfig({
  3. jshint: {
  4. all: ['Gruntfile.js', 'lib/*.js', 'test/*.js']
  5. },
  6. vows: {
  7. all: {
  8. src: ['test/*.js'],
  9. }
  10. }
  11. });
  12. grunt.loadNpmTasks('grunt-contrib-jshint');
  13. //grunt.loadNpmTasks('grunt-vows-runner');
  14. grunt.loadNpmTasks('grunt-vows');
  15. grunt.registerTask('default', ['jshint', 'vows']);
  16. };