Преглед изворни кода

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

fixes minor annoyance when watching the contents of the 'dist/' folder
Kyle P Davis пре 10 година
родитељ
комит
67ff0e2c63
1 измењених фајлова са 1 додато и 1 уклоњено
  1. 1 1
      gulpfile.js

+ 1 - 1
gulpfile.js

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