From 2ccd94d2bf00f216003e7283839772b9c697328c Mon Sep 17 00:00:00 2001 From: Denys Vuika Date: Thu, 21 Apr 2016 16:19:42 +0100 Subject: [PATCH] Fix 'dist' folder cleanup --- demo-shell-ng2/gulpfile.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/demo-shell-ng2/gulpfile.js b/demo-shell-ng2/gulpfile.js index c9e752a533..dc4018ed2a 100644 --- a/demo-shell-ng2/gulpfile.js +++ b/demo-shell-ng2/gulpfile.js @@ -10,7 +10,7 @@ const tsconfig = require('tsconfig-glob'); // clean the contents of the distribution directory gulp.task('clean', function () { - return del('dist'); + return del('dist/*'); }); // copy static assets - i.e. non TypeScript compiled source