grunt-retire
Version:
Grunt plugin for retire.
41 lines (32 loc) • 1.06 kB
JavaScript
'use strict';
module.exports = function (grunt) {
grunt.initConfig({
jshint: {
all: [
'Gruntfile.js',
'tasks/*.js'
],
options: {
jshintrc: '.jshintrc'
}
},
// Run the task to smoketest it
retire: {
node: ['test-files/**'],
js: ['test-files/**/*.js', 'test-files/**/bower.json'],
options: {
verbose: true,
packageOnly: true,
//jsRepository: 'test-files/jsrepository.json',
//nodeRepository: 'test-files/npmrepository.json',
jsRepository: 'https://raw.github.com/RetireJS/retire.js/master/repository/jsrepository.json',
nodeRepository: 'https://raw.github.com/RetireJS/retire.js/master/repository/npmrepository.json'
}
}
});
// Actually load this plugin's task(s).
grunt.loadTasks('tasks');
grunt.loadNpmTasks('grunt-contrib-jshint');
// By default, lint and retire.
grunt.registerTask('default', ['jshint', 'retire']);
};