From 4fb0e7bb843d60856fdc407c8565ecf7602cd703 Mon Sep 17 00:00:00 2001 From: scottbommarito Date: Mon, 13 Jun 2016 13:22:57 -0700 Subject: [PATCH] del dependency --- gulpfile.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gulpfile.js b/gulpfile.js index c8c991b..c6f6e91 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -1,3 +1,4 @@ +var del = require("del"); var gulp = require("gulp"); var path = require("path"); var child_process = require("child_process"); @@ -163,7 +164,6 @@ gulp.task("tslint", function () { }); gulp.task("clean", function () { - var del = require("del"); return del([binPath + "/**"], { force: true }); });