From 74f284b4b9044d6a454278fa3714fba4f9da5536 Mon Sep 17 00:00:00 2001 From: Doug Fritz Date: Sun, 7 Sep 2014 17:55:18 -0700 Subject: [PATCH] switch from gulp-clean which is depricated to gulp-rimraf --- gulpfile.js | 2 +- package.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/gulpfile.js b/gulpfile.js index 05b87ac..4d1b852 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -88,7 +88,7 @@ gulp.task('docs', function() { gulp.task('clean', function() { return gulp.src(['build/*', '**/*.css']) - .pipe($.clean()); + .pipe($.rimraf()); }); diff --git a/package.json b/package.json index ec722de..126d265 100644 --- a/package.json +++ b/package.json @@ -4,7 +4,6 @@ "devDependencies": { "browser-sync": "^1.3.6", "gulp": "^3.8.7", - "gulp-clean": "^0.3.1", "gulp-if": "^1.2.4", "gulp-insert": "^0.4.0", "gulp-jscs": "^1.1.2", @@ -14,6 +13,7 @@ "gulp-reload": "0.0.4", "gulp-rename": "^1.2.0", "gulp-replace": "^0.4.0", + "gulp-rimraf": "^0.1.0", "gulp-stylus": "^1.3.0", "gulp-vulcanize": "^1.0.0", "gulp-watch": "^0.6.9",