Browse Source

💚: make gulp 'clean' del 'dist/' contents only

fixes minor annoyance when watching the contents of the 'dist/' folder
Kyle P Davis 10 years ago
parent
commit
67ff0e2c63
1 changed files with 1 additions and 1 deletions
  1. 1 1
      gulpfile.js

+ 1 - 1
gulpfile.js

@@ -72,7 +72,7 @@ gulp
 })
 
 .task("clean", function() {
-	del.sync(["dist"]);
+	del.sync(["dist/**/*"]);
 })
 
 .task("watch", ["build"], function() {