mirror of
https://github.com/mgerb/mywebsite
synced 2026-01-11 18:32:50 +00:00
29 lines
646 B
JavaScript
29 lines
646 B
JavaScript
module.exports = function(grunt) {
|
|
'use strict';
|
|
|
|
// Project configuration.
|
|
grunt.initConfig({
|
|
jshint: {
|
|
all: ['src/*.js', 'test/*.js'],
|
|
options: {
|
|
jshintrc: '.jshintrc'
|
|
}
|
|
},
|
|
|
|
mochaTest: {
|
|
all: {
|
|
options: {
|
|
reporter: 'spec'
|
|
},
|
|
src: ['test/*-test.js']
|
|
}
|
|
}
|
|
});
|
|
|
|
// Load the plugin(s)
|
|
grunt.loadNpmTasks('grunt-contrib-jshint');
|
|
grunt.loadNpmTasks('grunt-mocha-test');
|
|
|
|
// Tasks
|
|
grunt.registerTask('default', ['jshint', 'mochaTest']);
|
|
}; |