gulp經常使用插件之del使用

更多gulp經常使用插件使用請訪問:gulp經常使用插件彙總html


del這是一款刪除文件的工具。git

更多使用文檔請點擊訪問del工具官網github

安裝

npm install del

API

  • del(patterns, options)

返回Promise<string[]>帶有刪除路徑的路徑。npm

  • del.sync(patterns, options)

返回string[]帶有刪除路徑的路徑。gulp

參數解析api

  • patterns
    類型: string | string[]併發

  • options
    類型: object
    您能夠指定任何的globby選項,除了如下選項。與此相反的 globby 默認值,expandDirectoriesonlyFiles ,和followSymbolicLinksfalse 默認。async

  • force
    類型:boolean
    默認值:false
    容許刪除當前工做目錄和外部目錄。
  • dryRun
    類型: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'));
})();
  • concurrency
    類型:number
    默認值:Infinity 最小值:1 併發限制。
相關文章
相關標籤/搜索