12345678910111213141516171819202122232425262728293031323334353637 |
- /*
- * grunt-contrib-clean
- * http://gruntjs.com/
- *
- * Copyright (c) 2012 Tim Branyen, contributors
- * Licensed under the MIT license.
- */
- 'use strict';
- module.exports = function(grunt) {
- grunt.registerMultiTask('clean', 'Clean files and folders.', function() {
- // Merge task-specific and/or target-specific options with these defaults.
- var options = this.options({
- force: false
- });
- grunt.verbose.writeflags(options, 'Options');
- // Clean specified files / dirs.
- this.filesSrc.forEach(function(filepath) {
- if (!grunt.file.exists(filepath)) { return; }
- grunt.log.write('Cleaning "' + filepath + '"...');
- try {
- grunt.file.delete(filepath, options);
- grunt.log.ok();
- } catch (e) {
- grunt.log.error();
- grunt.verbose.error(e);
- grunt.fail.warn('Clean operation failed.');
- }
- });
- });
- };
|