ionic
Version:
A tool for creating and developing Ionic Framework mobile apps.
57 lines (49 loc) • 1.24 kB
JavaScript
/*
* grunt
* http://gruntjs.com/
*
* Copyright (c) 2013 "Cowboy" Ben Alman
* Licensed under the MIT license.
* https://github.com/gruntjs/grunt/blob/master/LICENSE-MIT
*/
'use strict';
module.exports = function(grunt) {
// Project configuration.
grunt.initConfig({
nodeunit: {
all: [ 'tests/**.js', '!tests/fixtures/**', '!tests/helpers/**' ]
},
jshint: {
lib: ['lib/**/*.js'],
options: {
curly: true,
eqeqeq: true,
immed: true,
latedef: 'nofunc',
newcap: true,
noarg: true,
sub: true,
undef: true,
unused: true,
boss: true,
eqnull: true,
node: true,
}
},
watch: {
tests: {
files: [ '**/*' ],
tasks: [ 'test' ]
}
}
});
// These plugins provide necessary tasks.
grunt.loadNpmTasks('grunt-contrib-jshint');
grunt.loadNpmTasks('grunt-contrib-nodeunit');
grunt.loadNpmTasks('grunt-contrib-watch');
grunt.loadNpmTasks('grunt-release');
// "npm test" runs these tasks
grunt.registerTask('test', ['jshint', 'nodeunit']);
// Default task.
grunt.registerTask('default', ['test']);
};