1
我正在遞歸刪除目錄中的所有內容(除了一個文件),但保留文件夾本身。我已經寫了這個任務這樣做:以遞歸方式刪除文件夾的內容,但保留文件夾
gulp.task('clean:documentation', function() {
del([
'documentation.typography/**',
'!documentation.typography/.gitignore'
]);
});
不幸的是它刪除整個文件夾。這項任務有什麼問題?我如何更新,以便除去documentation.typography
中的所有內容,爲.gitignore
文件除外?
啓用option.dot? https://github.com/gulpjs/gulp/issues/932 – w00d