HackMyResume/Gruntfile.js

101 lines
2.1 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'),
2016-01-25 15:34:57 +00:00
copy: {
main: {
expand: true,
cwd: 'src',
src: ['**/*','!**/*.coffee'],
dest: 'dist/',
},
},
coffee: {
main: {
expand: true,
cwd: 'src',
src: ['**/*.coffee'],
dest: 'dist/',
ext: '.js'
}
},
2015-10-26 16:30:00 +00:00
simplemocha: {
options: {
globals: ['expect', 'should'],
timeout: 3000,
ignoreLeaks: false,
ui: 'bdd',
reporter: 'spec'
},
all: { src: ['test/*.js'] }
2015-11-21 08:10:11 +00:00
},
2016-01-18 02:46:58 +00:00
jsdoc : {
dist : {
src: ['src/**/*.js'],
options: {
private: true,
destination: 'doc'
}
}
},
2016-01-25 15:34:57 +00:00
clean: ['dist','test/sandbox'],
2015-12-18 20:33:18 +00:00
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/',
outdir: 'docs/'
}
}
2015-12-10 02:44:18 +00:00
},
jshint: {
options: {
laxcomma: true,
expr: true
},
2015-12-29 08:50:00 +00:00
all: ['Gruntfile.js', 'src/**/*.js', 'test/*.js']
2015-10-26 16:30:00 +00:00
}
};
grunt.initConfig( opts );
2016-01-25 15:34:57 +00:00
grunt.loadNpmTasks('grunt-contrib-coffee');
grunt.loadNpmTasks('grunt-contrib-copy');
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');
2016-01-18 02:46:58 +00:00
grunt.loadNpmTasks('grunt-jsdoc');
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
2016-01-25 15:34:57 +00:00
grunt.registerTask('test', 'Test the HackMyResume application.',
function( config ) {
grunt.task.run(['build','jshint','simplemocha:all']);
});
grunt.registerTask('document', 'Generate HackMyResume documentation.',
function( config ) {
grunt.task.run( ['jsdoc'] );
});
grunt.registerTask('build', 'Build the HackMyResume application.',
function( config ) {
grunt.task.run( ['clean','copy','coffee'] );
});
2016-01-18 02:46:58 +00:00
grunt.registerTask('default', [ 'test', 'jsdoc' ]);
2015-10-26 16:30:00 +00:00
};