The Trans Directory
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

watcher: manually ignore .git changes

+4 -3
+4 -3
quartz/build.ts
··· 125 125 ctx, 126 126 mut, 127 127 contentMap, 128 - ignored: (path) => { 129 - if (gitIgnoredMatcher(path)) return true 130 - const pathStr = path.toString() 128 + ignored: (fp) => { 129 + const pathStr = toPosixPath(fp.toString()) 130 + if (pathStr.startsWith(".git/")) return true 131 + if (gitIgnoredMatcher(pathStr)) return true 131 132 for (const pattern of cfg.configuration.ignorePatterns) { 132 133 if (minimatch(pathStr, pattern)) { 133 134 return true