remove grunt-retire

This commit is contained in:
Paul Rodwell
2022-07-25 18:17:57 +01:00
parent 23a513b38a
commit b1da9175b4
3 changed files with 3 additions and 1591 deletions

View File

@ -2,7 +2,6 @@ module.exports = function (grunt) {
grunt.loadNpmTasks('grunt-browserify');
grunt.loadNpmTasks('grunt-contrib-watch');
grunt.loadNpmTasks('grunt-git-authors');
grunt.loadNpmTasks('grunt-retire');
grunt.initConfig({
@ -24,16 +23,10 @@ module.exports = function (grunt) {
files: ['client/*.coffee'],
tasks: ['build']
}
},
retire: {
node: ['.'],
options: {packageOnly: true}
}
});
grunt.registerTask('check', ['retire']);
grunt.registerTask('build', ['browserify']);
grunt.registerTask('default', ['build']);