Prechádzať zdrojové kódy

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

fixes minor annoyance when watching the contents of the 'dist/' folder
Kyle P Davis 9 rokov pred
rodič
commit
67ff0e2c63
1 zmenil súbory, kde vykonal 1 pridanie a 1 odobranie
  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() {