build: Add clean target to Gruntfile (#31)

This commit is contained in:
Matt Luedke 2019-06-10 10:42:24 -04:00
parent 96255a1387
commit 3ce054324b
3 changed files with 39 additions and 31 deletions

View file

@ -105,6 +105,10 @@ module.exports = function(grunt) {
},
},
clean: {
dist: config.dist.base,
},
eslint: {
target: config.js.all,
},
@ -140,6 +144,7 @@ module.exports = function(grunt) {
grunt.loadNpmTasks('grunt-browserify');
grunt.loadNpmTasks('grunt-eslint');
grunt.loadNpmTasks('grunt-postcss');
grunt.loadNpmTasks('grunt-contrib-clean');
grunt.loadNpmTasks('grunt-sass');
grunt.loadNpmTasks('grunt-sass-lint');