HackMyResume/Gruntfile.js

60 lines
1.4 KiB
JavaScript
Raw Normal View History

2015-10-26 16:30:00 +00:00
module.exports = function (grunt) {
2015-12-10 02:44:18 +00:00
'use strict';
2015-10-26 16:30:00 +00:00
var opts = {
pkg: grunt.file.readJSON('package.json'),
simplemocha: {
options: {
globals: ['expect', 'should'],
timeout: 3000,
ignoreLeaks: false,
ui: 'bdd',
reporter: 'spec'
},
all: { src: ['tests/*.js'] }
2015-11-21 08:10:11 +00:00
},
2015-12-18 20:33:18 +00:00
clean: ['tests/sandbox'],
2015-11-21 08:10:11 +00:00
yuidoc: {
compile: {
name: '<%= pkg.name %>',
description: '<%= pkg.description %>',
version: '<%= pkg.version %>',
url: '<%= pkg.homepage %>',
options: {
paths: 'src/',
//themedir: 'path/to/custom/theme/',
outdir: 'docs/'
}
}
2015-12-10 02:44:18 +00:00
},
jshint: {
options: {
laxcomma: true,
expr: true
},
all: ['Gruntfile.js', 'src/**/*.js', 'test/**/*.js']
2015-10-26 16:30:00 +00:00
}
};
grunt.initConfig( opts );
2015-12-10 02:44:18 +00:00
2015-10-26 16:30:00 +00:00
grunt.loadNpmTasks('grunt-simple-mocha');
2015-11-21 08:10:11 +00:00
grunt.loadNpmTasks('grunt-contrib-yuidoc');
2015-12-10 02:44:18 +00:00
grunt.loadNpmTasks('grunt-contrib-jshint');
2015-12-18 20:33:18 +00:00
grunt.loadNpmTasks('grunt-contrib-clean');
2015-12-10 02:44:18 +00:00
2015-12-19 17:37:42 +00:00
grunt.registerTask('test', 'Test the HackMyResume library.',
2015-12-18 20:33:18 +00:00
function( config ) { grunt.task.run( ['clean','simplemocha:all'] ); });
2015-12-19 17:37:42 +00:00
grunt.registerTask('document', 'Generate HackMyResume library documentation.',
2015-12-10 02:44:18 +00:00
function( config ) { grunt.task.run( ['yuidoc'] ); });
grunt.registerTask('default', [ 'jshint', 'test', 'yuidoc' ]);
2015-10-26 16:30:00 +00:00
};