added folder clean up to grunt

removed unused tasks
This commit is contained in:
kay.one 2013-05-01 00:01:17 -07:00 committed by Keivan Beigi
parent f9386b8306
commit 2683a3ca12
2 changed files with 8 additions and 18 deletions

View File

@ -29,15 +29,10 @@ module.exports = function (grunt) {
'UI/Content/messenger.future.css' : 'http://raw.github.com/HubSpot/messenger/master/build/css/messenger-theme-future.css'
},
uglify: {
files: {
expand: true, // Enable dynamic expansion.
cwd : 'UI/', // Src matches are relative to this path.
src : ['**/*.js'], // Actual pattern(s) to match.
dest : 'build/', // Destination path prefix.
ext : '.min.js'
}
clean: {
folder: "_output/UI/"
},
less : {
bootstrap: {
src : "UI/Content/bootstrap/bootstrap.less",
@ -131,19 +126,16 @@ module.exports = function (grunt) {
}
});
// Load the plugin that provides the "uglify" task.
grunt.loadNpmTasks('grunt-contrib-uglify');
grunt.loadNpmTasks('grunt-contrib-handlebars');
grunt.loadNpmTasks('grunt-contrib-less');
grunt.loadNpmTasks('grunt-contrib-watch');
grunt.loadNpmTasks('grunt-contrib-concat');
grunt.loadNpmTasks('grunt-contrib-copy');
grunt.loadNpmTasks('grunt-wrap');
grunt.loadNpmTasks('grunt-notify');
grunt.loadNpmTasks('grunt-curl');
grunt.loadNpmTasks('grunt-clean');
// Default task(s).
grunt.registerTask('default', ['copy', 'less', 'handlebars', 'watch']);
grunt.registerTask('package', ['copy', 'less', 'handlebars']);
grunt.registerTask('package', ['clean', 'copy', 'less', 'handlebars']);
grunt.registerTask('default', ['package', 'watch']);
grunt.registerTask('update', ['curl']);
};

View File

@ -16,14 +16,12 @@
"readmeFilename": "readme.md",
"dependencies": {
"grunt": "*",
"grunt-contrib-uglify": "*",
"grunt-contrib-handlebars": "*",
"grunt-contrib-watch": "*",
"grunt-contrib-less": "*",
"grunt-contrib-concat": "*",
"grunt-contrib-copy": "*",
"grunt-wrap": "*",
"grunt-curl": "*",
"grunt-notify": "*"
"grunt-notify": "*",
"grunt-clean": "*"
}
}