123456789101112131415161718192021222324252627282930 |
- 'use strict';
- module.exports = function(grunt) {
- // Project configuration.
- grunt.initConfig({
- jshint: {
- all: ['src/*.js', 'test/*.js', 'examples/*.js', 'Gruntfile.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']);
- };
|