更多gulp經常使用插件使用請訪問:gulp經常使用插件彙總html
del這是一款刪除文件的工具。git
更多使用文檔請點擊訪問del工具官網。github
npm install del
返回Promise<string[]>帶有刪除路徑的路徑。npm
返回string[]帶有刪除路徑的路徑。gulp
參數解析api
patterns
類型: string | string[]併發
options
類型: object
您能夠指定任何的globby選項,除了如下選項。與此相反的 globby
默認值,expandDirectories
,onlyFiles
,和followSymbolicLinks
是 false
默認。async
boolean
false
boolean
false
const del = require('del'); (async () => { const deletedPaths = await del(['temp/*.js'], {dryRun: true}); console.log('Files and directories that would be deleted:\n', deletedPaths.join('\n')); })();
number
Infinity
最小值:1 併發限制。