mobileconfig
Version:
Create and sign iOS mobileconfig configuration files
27 lines (22 loc) • 572 B
JavaScript
;
module.exports = function(grunt) {
// Project configuration.
grunt.initConfig({
eslint: {
all: ['*.js', 'examples/*.js', 'test/*.js']
},
mochaTest: {
all: {
options: {
reporter: 'spec'
},
src: ['test/*-unit.js']
}
}
});
// Load the plugin(s)
grunt.loadNpmTasks('grunt-eslint');
grunt.loadNpmTasks('grunt-mocha-test');
// Tasks
grunt.registerTask('default', ['eslint', 'mochaTest']);
};