@travetto/manifest
Advanced tools
Comparing version 3.0.0-rc.16 to 3.0.0-rc.17
{ | ||
"name": "@travetto/manifest", | ||
"version": "3.0.0-rc.16", | ||
"version": "3.0.0-rc.17", | ||
"description": "Manifest support", | ||
@@ -5,0 +5,0 @@ "keywords": [ |
@@ -47,3 +47,5 @@ import fs from 'fs/promises'; | ||
} | ||
if ((config.includeHidden || !finalEv.file.includes('/.')) && (!config.filter || config.filter(finalEv))) { | ||
const isHidden = !config.includeHidden && finalEv.file.replace(targetFolder, '').includes('/.'); | ||
const matches = !isHidden && (!config.filter || config.filter(finalEv)); | ||
if (matches) { | ||
onEvent(finalEv, targetFolder); | ||
@@ -50,0 +52,0 @@ } |
57335
1526