@powerlines/plugin-content-collections 0.1.322 → 0.1.324

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -4,7 +4,7 @@ let node_fs = require("node:fs");
4
4
  node_fs = require_rolldown_runtime.__toESM(node_fs);
5
5
  let node_module = require("node:module");
6
6
 
7
- //#region ../../node_modules/.pnpm/fdir@6.5.0_picomatch@4.0.3/node_modules/fdir/dist/index.mjs
7
+ //#region ../../node_modules/.pnpm/fdir@6.5.0_@types+picomatch@4.0.2_picomatch@4.0.3/node_modules/fdir/dist/index.mjs
8
8
  var __require = /* @__PURE__ */ (0, node_module.createRequire)(require("url").pathToFileURL(__filename).href);
9
9
  function cleanPath(path) {
10
10
  let normalized = (0, node_path.normalize)(path);
@@ -2,7 +2,7 @@ import { createRequire } from "node:module";
2
2
  import { basename, dirname, normalize, relative, resolve, sep } from "node:path";
3
3
  import * as nativeFs from "node:fs";
4
4
 
5
- //#region ../../node_modules/.pnpm/fdir@6.5.0_picomatch@4.0.3/node_modules/fdir/dist/index.mjs
5
+ //#region ../../node_modules/.pnpm/fdir@6.5.0_@types+picomatch@4.0.2_picomatch@4.0.3/node_modules/fdir/dist/index.mjs
6
6
  var __require = /* @__PURE__ */ createRequire(import.meta.url);
7
7
  function cleanPath(path$1) {
8
8
  let normalized = normalize(path$1);
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.mjs","names":["path"],"sources":["../../../../../../../../../node_modules/.pnpm/fdir@6.5.0_@types+picomatch@4.0.2_picomatch@4.0.3/node_modules/fdir/dist/index.mjs"],"sourcesContent":["import { createRequire } from \"module\";\nimport { basename, dirname, normalize, relative, resolve, sep } from \"path\";\nimport * as nativeFs from \"fs\";\n\n//#region rolldown:runtime\nvar __require = /* @__PURE__ */ createRequire(import.meta.url);\n\n//#endregion\n//#region src/utils.ts\nfunction cleanPath(path) {\n\tlet normalized = normalize(path);\n\tif (normalized.length > 1 && normalized[normalized.length - 1] === sep) normalized = normalized.substring(0, normalized.length - 1);\n\treturn normalized;\n}\nconst SLASHES_REGEX = /[\\\\/]/g;\nfunction convertSlashes(path, separator) {\n\treturn path.replace(SLASHES_REGEX, separator);\n}\nconst WINDOWS_ROOT_DIR_REGEX = /^[a-z]:[\\\\/]$/i;\nfunction isRootDirectory(path) {\n\treturn path === \"/\" || WINDOWS_ROOT_DIR_REGEX.test(path);\n}\nfunction normalizePath(path, options) {\n\tconst { resolvePaths, normalizePath: normalizePath$1, pathSeparator } = options;\n\tconst pathNeedsCleaning = process.platform === \"win32\" && path.includes(\"/\") || path.startsWith(\".\");\n\tif (resolvePaths) path = resolve(path);\n\tif (normalizePath$1 || pathNeedsCleaning) path = cleanPath(path);\n\tif (path === \".\") return \"\";\n\tconst needsSeperator = path[path.length - 1] !== pathSeparator;\n\treturn convertSlashes(needsSeperator ? path + pathSeparator : path, pathSeparator);\n}\n\n//#endregion\n//#region src/api/functions/join-path.ts\nfunction joinPathWithBasePath(filename, directoryPath) {\n\treturn directoryPath + filename;\n}\nfunction joinPathWithRelativePath(root, options) {\n\treturn function(filename, directoryPath) {\n\t\tconst sameRoot = directoryPath.startsWith(root);\n\t\tif (sameRoot) return directoryPath.slice(root.length) + filename;\n\t\telse return convertSlashes(relative(root, directoryPath), options.pathSeparator) + options.pathSeparator + filename;\n\t};\n}\nfunction joinPath(filename) {\n\treturn filename;\n}\nfunction joinDirectoryPath(filename, directoryPath, separator) {\n\treturn directoryPath + filename + separator;\n}\nfunction build$7(root, options) {\n\tconst { relativePaths, includeBasePath } = options;\n\treturn relativePaths && root ? joinPathWithRelativePath(root, options) : includeBasePath ? joinPathWithBasePath : joinPath;\n}\n\n//#endregion\n//#region src/api/functions/push-directory.ts\nfunction pushDirectoryWithRelativePath(root) {\n\treturn function(directoryPath, paths) {\n\t\tpaths.push(directoryPath.substring(root.length) || \".\");\n\t};\n}\nfunction pushDirectoryFilterWithRelativePath(root) {\n\treturn function(directoryPath, paths, filters) {\n\t\tconst relativePath = directoryPath.substring(root.length) || \".\";\n\t\tif (filters.every((filter) => filter(relativePath, true))) paths.push(relativePath);\n\t};\n}\nconst pushDirectory = (directoryPath, paths) => {\n\tpaths.push(directoryPath || \".\");\n};\nconst pushDirectoryFilter = (directoryPath, paths, filters) => {\n\tconst path = directoryPath || \".\";\n\tif (filters.every((filter) => filter(path, true))) paths.push(path);\n};\nconst empty$2 = () => {};\nfunction build$6(root, options) {\n\tconst { includeDirs, filters, relativePaths } = options;\n\tif (!includeDirs) return empty$2;\n\tif (relativePaths) return filters && filters.length ? pushDirectoryFilterWithRelativePath(root) : pushDirectoryWithRelativePath(root);\n\treturn filters && filters.length ? pushDirectoryFilter : pushDirectory;\n}\n\n//#endregion\n//#region src/api/functions/push-file.ts\nconst pushFileFilterAndCount = (filename, _paths, counts, filters) => {\n\tif (filters.every((filter) => filter(filename, false))) counts.files++;\n};\nconst pushFileFilter = (filename, paths, _counts, filters) => {\n\tif (filters.every((filter) => filter(filename, false))) paths.push(filename);\n};\nconst pushFileCount = (_filename, _paths, counts, _filters) => {\n\tcounts.files++;\n};\nconst pushFile = (filename, paths) => {\n\tpaths.push(filename);\n};\nconst empty$1 = () => {};\nfunction build$5(options) {\n\tconst { excludeFiles, filters, onlyCounts } = options;\n\tif (excludeFiles) return empty$1;\n\tif (filters && filters.length) return onlyCounts ? pushFileFilterAndCount : pushFileFilter;\n\telse if (onlyCounts) return pushFileCount;\n\telse return pushFile;\n}\n\n//#endregion\n//#region src/api/functions/get-array.ts\nconst getArray = (paths) => {\n\treturn paths;\n};\nconst getArrayGroup = () => {\n\treturn [\"\"].slice(0, 0);\n};\nfunction build$4(options) {\n\treturn options.group ? getArrayGroup : getArray;\n}\n\n//#endregion\n//#region src/api/functions/group-files.ts\nconst groupFiles = (groups, directory, files) => {\n\tgroups.push({\n\t\tdirectory,\n\t\tfiles,\n\t\tdir: directory\n\t});\n};\nconst empty = () => {};\nfunction build$3(options) {\n\treturn options.group ? groupFiles : empty;\n}\n\n//#endregion\n//#region src/api/functions/resolve-symlink.ts\nconst resolveSymlinksAsync = function(path, state, callback$1) {\n\tconst { queue, fs, options: { suppressErrors } } = state;\n\tqueue.enqueue();\n\tfs.realpath(path, (error, resolvedPath) => {\n\t\tif (error) return queue.dequeue(suppressErrors ? null : error, state);\n\t\tfs.stat(resolvedPath, (error$1, stat) => {\n\t\t\tif (error$1) return queue.dequeue(suppressErrors ? null : error$1, state);\n\t\t\tif (stat.isDirectory() && isRecursive(path, resolvedPath, state)) return queue.dequeue(null, state);\n\t\t\tcallback$1(stat, resolvedPath);\n\t\t\tqueue.dequeue(null, state);\n\t\t});\n\t});\n};\nconst resolveSymlinks = function(path, state, callback$1) {\n\tconst { queue, fs, options: { suppressErrors } } = state;\n\tqueue.enqueue();\n\ttry {\n\t\tconst resolvedPath = fs.realpathSync(path);\n\t\tconst stat = fs.statSync(resolvedPath);\n\t\tif (stat.isDirectory() && isRecursive(path, resolvedPath, state)) return;\n\t\tcallback$1(stat, resolvedPath);\n\t} catch (e) {\n\t\tif (!suppressErrors) throw e;\n\t}\n};\nfunction build$2(options, isSynchronous) {\n\tif (!options.resolveSymlinks || options.excludeSymlinks) return null;\n\treturn isSynchronous ? resolveSymlinks : resolveSymlinksAsync;\n}\nfunction isRecursive(path, resolved, state) {\n\tif (state.options.useRealPaths) return isRecursiveUsingRealPaths(resolved, state);\n\tlet parent = dirname(path);\n\tlet depth = 1;\n\twhile (parent !== state.root && depth < 2) {\n\t\tconst resolvedPath = state.symlinks.get(parent);\n\t\tconst isSameRoot = !!resolvedPath && (resolvedPath === resolved || resolvedPath.startsWith(resolved) || resolved.startsWith(resolvedPath));\n\t\tif (isSameRoot) depth++;\n\t\telse parent = dirname(parent);\n\t}\n\tstate.symlinks.set(path, resolved);\n\treturn depth > 1;\n}\nfunction isRecursiveUsingRealPaths(resolved, state) {\n\treturn state.visited.includes(resolved + state.options.pathSeparator);\n}\n\n//#endregion\n//#region src/api/functions/invoke-callback.ts\nconst onlyCountsSync = (state) => {\n\treturn state.counts;\n};\nconst groupsSync = (state) => {\n\treturn state.groups;\n};\nconst defaultSync = (state) => {\n\treturn state.paths;\n};\nconst limitFilesSync = (state) => {\n\treturn state.paths.slice(0, state.options.maxFiles);\n};\nconst onlyCountsAsync = (state, error, callback$1) => {\n\treport(error, callback$1, state.counts, state.options.suppressErrors);\n\treturn null;\n};\nconst defaultAsync = (state, error, callback$1) => {\n\treport(error, callback$1, state.paths, state.options.suppressErrors);\n\treturn null;\n};\nconst limitFilesAsync = (state, error, callback$1) => {\n\treport(error, callback$1, state.paths.slice(0, state.options.maxFiles), state.options.suppressErrors);\n\treturn null;\n};\nconst groupsAsync = (state, error, callback$1) => {\n\treport(error, callback$1, state.groups, state.options.suppressErrors);\n\treturn null;\n};\nfunction report(error, callback$1, output, suppressErrors) {\n\tif (error && !suppressErrors) callback$1(error, output);\n\telse callback$1(null, output);\n}\nfunction build$1(options, isSynchronous) {\n\tconst { onlyCounts, group, maxFiles } = options;\n\tif (onlyCounts) return isSynchronous ? onlyCountsSync : onlyCountsAsync;\n\telse if (group) return isSynchronous ? groupsSync : groupsAsync;\n\telse if (maxFiles) return isSynchronous ? limitFilesSync : limitFilesAsync;\n\telse return isSynchronous ? defaultSync : defaultAsync;\n}\n\n//#endregion\n//#region src/api/functions/walk-directory.ts\nconst readdirOpts = { withFileTypes: true };\nconst walkAsync = (state, crawlPath, directoryPath, currentDepth, callback$1) => {\n\tstate.queue.enqueue();\n\tif (currentDepth < 0) return state.queue.dequeue(null, state);\n\tconst { fs } = state;\n\tstate.visited.push(crawlPath);\n\tstate.counts.directories++;\n\tfs.readdir(crawlPath || \".\", readdirOpts, (error, entries = []) => {\n\t\tcallback$1(entries, directoryPath, currentDepth);\n\t\tstate.queue.dequeue(state.options.suppressErrors ? null : error, state);\n\t});\n};\nconst walkSync = (state, crawlPath, directoryPath, currentDepth, callback$1) => {\n\tconst { fs } = state;\n\tif (currentDepth < 0) return;\n\tstate.visited.push(crawlPath);\n\tstate.counts.directories++;\n\tlet entries = [];\n\ttry {\n\t\tentries = fs.readdirSync(crawlPath || \".\", readdirOpts);\n\t} catch (e) {\n\t\tif (!state.options.suppressErrors) throw e;\n\t}\n\tcallback$1(entries, directoryPath, currentDepth);\n};\nfunction build(isSynchronous) {\n\treturn isSynchronous ? walkSync : walkAsync;\n}\n\n//#endregion\n//#region src/api/queue.ts\n/**\n* This is a custom stateless queue to track concurrent async fs calls.\n* It increments a counter whenever a call is queued and decrements it\n* as soon as it completes. When the counter hits 0, it calls onQueueEmpty.\n*/\nvar Queue = class {\n\tcount = 0;\n\tconstructor(onQueueEmpty) {\n\t\tthis.onQueueEmpty = onQueueEmpty;\n\t}\n\tenqueue() {\n\t\tthis.count++;\n\t\treturn this.count;\n\t}\n\tdequeue(error, output) {\n\t\tif (this.onQueueEmpty && (--this.count <= 0 || error)) {\n\t\t\tthis.onQueueEmpty(error, output);\n\t\t\tif (error) {\n\t\t\t\toutput.controller.abort();\n\t\t\t\tthis.onQueueEmpty = void 0;\n\t\t\t}\n\t\t}\n\t}\n};\n\n//#endregion\n//#region src/api/counter.ts\nvar Counter = class {\n\t_files = 0;\n\t_directories = 0;\n\tset files(num) {\n\t\tthis._files = num;\n\t}\n\tget files() {\n\t\treturn this._files;\n\t}\n\tset directories(num) {\n\t\tthis._directories = num;\n\t}\n\tget directories() {\n\t\treturn this._directories;\n\t}\n\t/**\n\t* @deprecated use `directories` instead\n\t*/\n\t/* c8 ignore next 3 */\n\tget dirs() {\n\t\treturn this._directories;\n\t}\n};\n\n//#endregion\n//#region src/api/aborter.ts\n/**\n* AbortController is not supported on Node 14 so we use this until we can drop\n* support for Node 14.\n*/\nvar Aborter = class {\n\taborted = false;\n\tabort() {\n\t\tthis.aborted = true;\n\t}\n};\n\n//#endregion\n//#region src/api/walker.ts\nvar Walker = class {\n\troot;\n\tisSynchronous;\n\tstate;\n\tjoinPath;\n\tpushDirectory;\n\tpushFile;\n\tgetArray;\n\tgroupFiles;\n\tresolveSymlink;\n\twalkDirectory;\n\tcallbackInvoker;\n\tconstructor(root, options, callback$1) {\n\t\tthis.isSynchronous = !callback$1;\n\t\tthis.callbackInvoker = build$1(options, this.isSynchronous);\n\t\tthis.root = normalizePath(root, options);\n\t\tthis.state = {\n\t\t\troot: isRootDirectory(this.root) ? this.root : this.root.slice(0, -1),\n\t\t\tpaths: [\"\"].slice(0, 0),\n\t\t\tgroups: [],\n\t\t\tcounts: new Counter(),\n\t\t\toptions,\n\t\t\tqueue: new Queue((error, state) => this.callbackInvoker(state, error, callback$1)),\n\t\t\tsymlinks: /* @__PURE__ */ new Map(),\n\t\t\tvisited: [\"\"].slice(0, 0),\n\t\t\tcontroller: new Aborter(),\n\t\t\tfs: options.fs || nativeFs\n\t\t};\n\t\tthis.joinPath = build$7(this.root, options);\n\t\tthis.pushDirectory = build$6(this.root, options);\n\t\tthis.pushFile = build$5(options);\n\t\tthis.getArray = build$4(options);\n\t\tthis.groupFiles = build$3(options);\n\t\tthis.resolveSymlink = build$2(options, this.isSynchronous);\n\t\tthis.walkDirectory = build(this.isSynchronous);\n\t}\n\tstart() {\n\t\tthis.pushDirectory(this.root, this.state.paths, this.state.options.filters);\n\t\tthis.walkDirectory(this.state, this.root, this.root, this.state.options.maxDepth, this.walk);\n\t\treturn this.isSynchronous ? this.callbackInvoker(this.state, null) : null;\n\t}\n\twalk = (entries, directoryPath, depth) => {\n\t\tconst { paths, options: { filters, resolveSymlinks: resolveSymlinks$1, excludeSymlinks, exclude, maxFiles, signal, useRealPaths, pathSeparator }, controller } = this.state;\n\t\tif (controller.aborted || signal && signal.aborted || maxFiles && paths.length > maxFiles) return;\n\t\tconst files = this.getArray(this.state.paths);\n\t\tfor (let i = 0; i < entries.length; ++i) {\n\t\t\tconst entry = entries[i];\n\t\t\tif (entry.isFile() || entry.isSymbolicLink() && !resolveSymlinks$1 && !excludeSymlinks) {\n\t\t\t\tconst filename = this.joinPath(entry.name, directoryPath);\n\t\t\t\tthis.pushFile(filename, files, this.state.counts, filters);\n\t\t\t} else if (entry.isDirectory()) {\n\t\t\t\tlet path = joinDirectoryPath(entry.name, directoryPath, this.state.options.pathSeparator);\n\t\t\t\tif (exclude && exclude(entry.name, path)) continue;\n\t\t\t\tthis.pushDirectory(path, paths, filters);\n\t\t\t\tthis.walkDirectory(this.state, path, path, depth - 1, this.walk);\n\t\t\t} else if (this.resolveSymlink && entry.isSymbolicLink()) {\n\t\t\t\tlet path = joinPathWithBasePath(entry.name, directoryPath);\n\t\t\t\tthis.resolveSymlink(path, this.state, (stat, resolvedPath) => {\n\t\t\t\t\tif (stat.isDirectory()) {\n\t\t\t\t\t\tresolvedPath = normalizePath(resolvedPath, this.state.options);\n\t\t\t\t\t\tif (exclude && exclude(entry.name, useRealPaths ? resolvedPath : path + pathSeparator)) return;\n\t\t\t\t\t\tthis.walkDirectory(this.state, resolvedPath, useRealPaths ? resolvedPath : path + pathSeparator, depth - 1, this.walk);\n\t\t\t\t\t} else {\n\t\t\t\t\t\tresolvedPath = useRealPaths ? resolvedPath : path;\n\t\t\t\t\t\tconst filename = basename(resolvedPath);\n\t\t\t\t\t\tconst directoryPath$1 = normalizePath(dirname(resolvedPath), this.state.options);\n\t\t\t\t\t\tresolvedPath = this.joinPath(filename, directoryPath$1);\n\t\t\t\t\t\tthis.pushFile(resolvedPath, files, this.state.counts, filters);\n\t\t\t\t\t}\n\t\t\t\t});\n\t\t\t}\n\t\t}\n\t\tthis.groupFiles(this.state.groups, directoryPath, files);\n\t};\n};\n\n//#endregion\n//#region src/api/async.ts\nfunction promise(root, options) {\n\treturn new Promise((resolve$1, reject) => {\n\t\tcallback(root, options, (err, output) => {\n\t\t\tif (err) return reject(err);\n\t\t\tresolve$1(output);\n\t\t});\n\t});\n}\nfunction callback(root, options, callback$1) {\n\tlet walker = new Walker(root, options, callback$1);\n\twalker.start();\n}\n\n//#endregion\n//#region src/api/sync.ts\nfunction sync(root, options) {\n\tconst walker = new Walker(root, options);\n\treturn walker.start();\n}\n\n//#endregion\n//#region src/builder/api-builder.ts\nvar APIBuilder = class {\n\tconstructor(root, options) {\n\t\tthis.root = root;\n\t\tthis.options = options;\n\t}\n\twithPromise() {\n\t\treturn promise(this.root, this.options);\n\t}\n\twithCallback(cb) {\n\t\tcallback(this.root, this.options, cb);\n\t}\n\tsync() {\n\t\treturn sync(this.root, this.options);\n\t}\n};\n\n//#endregion\n//#region src/builder/index.ts\nlet pm = null;\n/* c8 ignore next 6 */\ntry {\n\t__require.resolve(\"picomatch\");\n\tpm = __require(\"picomatch\");\n} catch {}\nvar Builder = class {\n\tglobCache = {};\n\toptions = {\n\t\tmaxDepth: Infinity,\n\t\tsuppressErrors: true,\n\t\tpathSeparator: sep,\n\t\tfilters: []\n\t};\n\tglobFunction;\n\tconstructor(options) {\n\t\tthis.options = {\n\t\t\t...this.options,\n\t\t\t...options\n\t\t};\n\t\tthis.globFunction = this.options.globFunction;\n\t}\n\tgroup() {\n\t\tthis.options.group = true;\n\t\treturn this;\n\t}\n\twithPathSeparator(separator) {\n\t\tthis.options.pathSeparator = separator;\n\t\treturn this;\n\t}\n\twithBasePath() {\n\t\tthis.options.includeBasePath = true;\n\t\treturn this;\n\t}\n\twithRelativePaths() {\n\t\tthis.options.relativePaths = true;\n\t\treturn this;\n\t}\n\twithDirs() {\n\t\tthis.options.includeDirs = true;\n\t\treturn this;\n\t}\n\twithMaxDepth(depth) {\n\t\tthis.options.maxDepth = depth;\n\t\treturn this;\n\t}\n\twithMaxFiles(limit) {\n\t\tthis.options.maxFiles = limit;\n\t\treturn this;\n\t}\n\twithFullPaths() {\n\t\tthis.options.resolvePaths = true;\n\t\tthis.options.includeBasePath = true;\n\t\treturn this;\n\t}\n\twithErrors() {\n\t\tthis.options.suppressErrors = false;\n\t\treturn this;\n\t}\n\twithSymlinks({ resolvePaths = true } = {}) {\n\t\tthis.options.resolveSymlinks = true;\n\t\tthis.options.useRealPaths = resolvePaths;\n\t\treturn this.withFullPaths();\n\t}\n\twithAbortSignal(signal) {\n\t\tthis.options.signal = signal;\n\t\treturn this;\n\t}\n\tnormalize() {\n\t\tthis.options.normalizePath = true;\n\t\treturn this;\n\t}\n\tfilter(predicate) {\n\t\tthis.options.filters.push(predicate);\n\t\treturn this;\n\t}\n\tonlyDirs() {\n\t\tthis.options.excludeFiles = true;\n\t\tthis.options.includeDirs = true;\n\t\treturn this;\n\t}\n\texclude(predicate) {\n\t\tthis.options.exclude = predicate;\n\t\treturn this;\n\t}\n\tonlyCounts() {\n\t\tthis.options.onlyCounts = true;\n\t\treturn this;\n\t}\n\tcrawl(root) {\n\t\treturn new APIBuilder(root || \".\", this.options);\n\t}\n\twithGlobFunction(fn) {\n\t\tthis.globFunction = fn;\n\t\treturn this;\n\t}\n\t/**\n\t* @deprecated Pass options using the constructor instead:\n\t* ```ts\n\t* new fdir(options).crawl(\"/path/to/root\");\n\t* ```\n\t* This method will be removed in v7.0\n\t*/\n\t/* c8 ignore next 4 */\n\tcrawlWithOptions(root, options) {\n\t\tthis.options = {\n\t\t\t...this.options,\n\t\t\t...options\n\t\t};\n\t\treturn new APIBuilder(root || \".\", this.options);\n\t}\n\tglob(...patterns) {\n\t\tif (this.globFunction) return this.globWithOptions(patterns);\n\t\treturn this.globWithOptions(patterns, ...[{ dot: true }]);\n\t}\n\tglobWithOptions(patterns, ...options) {\n\t\tconst globFn = this.globFunction || pm;\n\t\t/* c8 ignore next 5 */\n\t\tif (!globFn) throw new Error(\"Please specify a glob function to use glob matching.\");\n\t\tvar isMatch = this.globCache[patterns.join(\"\\0\")];\n\t\tif (!isMatch) {\n\t\t\tisMatch = globFn(patterns, ...options);\n\t\t\tthis.globCache[patterns.join(\"\\0\")] = isMatch;\n\t\t}\n\t\tthis.options.filters.push((path) => isMatch(path));\n\t\treturn this;\n\t}\n};\n\n//#endregion\nexport { Builder as fdir };"],"x_google_ignoreList":[0],"mappings":"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"}
@@ -1,5 +1,5 @@
1
1
  const require_rolldown_runtime = require('../../../../../../_virtual/rolldown_runtime.cjs');
2
- const require_index = require('../../../../fdir@6.5.0_picomatch@4.0.3/node_modules/fdir/dist/index.cjs');
2
+ const require_index = require('../../../../fdir@6.5.0_@types_picomatch@4.0.2_picomatch@4.0.3/node_modules/fdir/dist/index.cjs');
3
3
  const require_index$1 = require('../../../../picomatch@4.0.3/node_modules/picomatch/index.cjs');
4
4
  let node_path = require("node:path");
5
5
  node_path = require_rolldown_runtime.__toESM(node_path);
@@ -1,5 +1,5 @@
1
1
  import { __toESM } from "../../../../../../_virtual/rolldown_runtime.mjs";
2
- import { Builder } from "../../../../fdir@6.5.0_picomatch@4.0.3/node_modules/fdir/dist/index.mjs";
2
+ import { Builder } from "../../../../fdir@6.5.0_@types_picomatch@4.0.2_picomatch@4.0.3/node_modules/fdir/dist/index.mjs";
3
3
  import { require_picomatch } from "../../../../picomatch@4.0.3/node_modules/picomatch/index.mjs";
4
4
  import path, { posix } from "node:path";
5
5
  import fs2 from "node:fs";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@powerlines/plugin-content-collections",
3
- "version": "0.1.322",
3
+ "version": "0.1.324",
4
4
  "type": "module",
5
5
  "description": "A Powerlines plugin to generate project code using Content Collections.",
6
6
  "repository": {
@@ -138,21 +138,21 @@
138
138
  "dependencies": {
139
139
  "@content-collections/core": "^0.12.0",
140
140
  "@standard-schema/spec": "^1.1.0",
141
- "@stryke/fs": "^0.33.53",
142
- "@stryke/path": "^0.26.15",
143
- "@stryke/string-format": "^0.16.0",
144
- "@stryke/type-checks": "^0.5.34",
145
- "@stryke/types": "^0.10.48",
141
+ "@stryke/fs": "^0.33.55",
142
+ "@stryke/path": "^0.26.17",
143
+ "@stryke/string-format": "^0.17.1",
144
+ "@stryke/type-checks": "^0.5.36",
145
+ "@stryke/types": "^0.10.50",
146
146
  "defu": "^6.1.4",
147
147
  "pluralize": "^8.0.0",
148
- "powerlines": "^0.40.9"
148
+ "powerlines": "^0.40.11"
149
149
  },
150
150
  "devDependencies": {
151
- "@powerlines/plugin-plugin": "^0.12.273",
151
+ "@powerlines/plugin-plugin": "^0.12.275",
152
152
  "@types/node": "^25.3.5",
153
153
  "@types/pluralize": "^0.0.33"
154
154
  },
155
155
  "publishConfig": { "access": "public" },
156
156
  "types": "./dist/index.d.cts",
157
- "gitHead": "9c5feb5eb4e7faa0e0f6ff39b53687433b73eef7"
157
+ "gitHead": "6e7c6508c165d754b37b0649eb1cd3a6d44c04b2"
158
158
  }
@@ -1 +0,0 @@
1
- {"version":3,"file":"index.mjs","names":["path"],"sources":["../../../../../../../../../node_modules/.pnpm/fdir@6.5.0_picomatch@4.0.3/node_modules/fdir/dist/index.mjs"],"sourcesContent":["import { createRequire } from \"module\";\nimport { basename, dirname, normalize, relative, resolve, sep } from \"path\";\nimport * as nativeFs from \"fs\";\n\n//#region rolldown:runtime\nvar __require = /* @__PURE__ */ createRequire(import.meta.url);\n\n//#endregion\n//#region src/utils.ts\nfunction cleanPath(path) {\n\tlet normalized = normalize(path);\n\tif (normalized.length > 1 && normalized[normalized.length - 1] === sep) normalized = normalized.substring(0, normalized.length - 1);\n\treturn normalized;\n}\nconst SLASHES_REGEX = /[\\\\/]/g;\nfunction convertSlashes(path, separator) {\n\treturn path.replace(SLASHES_REGEX, separator);\n}\nconst WINDOWS_ROOT_DIR_REGEX = /^[a-z]:[\\\\/]$/i;\nfunction isRootDirectory(path) {\n\treturn path === \"/\" || WINDOWS_ROOT_DIR_REGEX.test(path);\n}\nfunction normalizePath(path, options) {\n\tconst { resolvePaths, normalizePath: normalizePath$1, pathSeparator } = options;\n\tconst pathNeedsCleaning = process.platform === \"win32\" && path.includes(\"/\") || path.startsWith(\".\");\n\tif (resolvePaths) path = resolve(path);\n\tif (normalizePath$1 || pathNeedsCleaning) path = cleanPath(path);\n\tif (path === \".\") return \"\";\n\tconst needsSeperator = path[path.length - 1] !== pathSeparator;\n\treturn convertSlashes(needsSeperator ? path + pathSeparator : path, pathSeparator);\n}\n\n//#endregion\n//#region src/api/functions/join-path.ts\nfunction joinPathWithBasePath(filename, directoryPath) {\n\treturn directoryPath + filename;\n}\nfunction joinPathWithRelativePath(root, options) {\n\treturn function(filename, directoryPath) {\n\t\tconst sameRoot = directoryPath.startsWith(root);\n\t\tif (sameRoot) return directoryPath.slice(root.length) + filename;\n\t\telse return convertSlashes(relative(root, directoryPath), options.pathSeparator) + options.pathSeparator + filename;\n\t};\n}\nfunction joinPath(filename) {\n\treturn filename;\n}\nfunction joinDirectoryPath(filename, directoryPath, separator) {\n\treturn directoryPath + filename + separator;\n}\nfunction build$7(root, options) {\n\tconst { relativePaths, includeBasePath } = options;\n\treturn relativePaths && root ? joinPathWithRelativePath(root, options) : includeBasePath ? joinPathWithBasePath : joinPath;\n}\n\n//#endregion\n//#region src/api/functions/push-directory.ts\nfunction pushDirectoryWithRelativePath(root) {\n\treturn function(directoryPath, paths) {\n\t\tpaths.push(directoryPath.substring(root.length) || \".\");\n\t};\n}\nfunction pushDirectoryFilterWithRelativePath(root) {\n\treturn function(directoryPath, paths, filters) {\n\t\tconst relativePath = directoryPath.substring(root.length) || \".\";\n\t\tif (filters.every((filter) => filter(relativePath, true))) paths.push(relativePath);\n\t};\n}\nconst pushDirectory = (directoryPath, paths) => {\n\tpaths.push(directoryPath || \".\");\n};\nconst pushDirectoryFilter = (directoryPath, paths, filters) => {\n\tconst path = directoryPath || \".\";\n\tif (filters.every((filter) => filter(path, true))) paths.push(path);\n};\nconst empty$2 = () => {};\nfunction build$6(root, options) {\n\tconst { includeDirs, filters, relativePaths } = options;\n\tif (!includeDirs) return empty$2;\n\tif (relativePaths) return filters && filters.length ? pushDirectoryFilterWithRelativePath(root) : pushDirectoryWithRelativePath(root);\n\treturn filters && filters.length ? pushDirectoryFilter : pushDirectory;\n}\n\n//#endregion\n//#region src/api/functions/push-file.ts\nconst pushFileFilterAndCount = (filename, _paths, counts, filters) => {\n\tif (filters.every((filter) => filter(filename, false))) counts.files++;\n};\nconst pushFileFilter = (filename, paths, _counts, filters) => {\n\tif (filters.every((filter) => filter(filename, false))) paths.push(filename);\n};\nconst pushFileCount = (_filename, _paths, counts, _filters) => {\n\tcounts.files++;\n};\nconst pushFile = (filename, paths) => {\n\tpaths.push(filename);\n};\nconst empty$1 = () => {};\nfunction build$5(options) {\n\tconst { excludeFiles, filters, onlyCounts } = options;\n\tif (excludeFiles) return empty$1;\n\tif (filters && filters.length) return onlyCounts ? pushFileFilterAndCount : pushFileFilter;\n\telse if (onlyCounts) return pushFileCount;\n\telse return pushFile;\n}\n\n//#endregion\n//#region src/api/functions/get-array.ts\nconst getArray = (paths) => {\n\treturn paths;\n};\nconst getArrayGroup = () => {\n\treturn [\"\"].slice(0, 0);\n};\nfunction build$4(options) {\n\treturn options.group ? getArrayGroup : getArray;\n}\n\n//#endregion\n//#region src/api/functions/group-files.ts\nconst groupFiles = (groups, directory, files) => {\n\tgroups.push({\n\t\tdirectory,\n\t\tfiles,\n\t\tdir: directory\n\t});\n};\nconst empty = () => {};\nfunction build$3(options) {\n\treturn options.group ? groupFiles : empty;\n}\n\n//#endregion\n//#region src/api/functions/resolve-symlink.ts\nconst resolveSymlinksAsync = function(path, state, callback$1) {\n\tconst { queue, fs, options: { suppressErrors } } = state;\n\tqueue.enqueue();\n\tfs.realpath(path, (error, resolvedPath) => {\n\t\tif (error) return queue.dequeue(suppressErrors ? null : error, state);\n\t\tfs.stat(resolvedPath, (error$1, stat) => {\n\t\t\tif (error$1) return queue.dequeue(suppressErrors ? null : error$1, state);\n\t\t\tif (stat.isDirectory() && isRecursive(path, resolvedPath, state)) return queue.dequeue(null, state);\n\t\t\tcallback$1(stat, resolvedPath);\n\t\t\tqueue.dequeue(null, state);\n\t\t});\n\t});\n};\nconst resolveSymlinks = function(path, state, callback$1) {\n\tconst { queue, fs, options: { suppressErrors } } = state;\n\tqueue.enqueue();\n\ttry {\n\t\tconst resolvedPath = fs.realpathSync(path);\n\t\tconst stat = fs.statSync(resolvedPath);\n\t\tif (stat.isDirectory() && isRecursive(path, resolvedPath, state)) return;\n\t\tcallback$1(stat, resolvedPath);\n\t} catch (e) {\n\t\tif (!suppressErrors) throw e;\n\t}\n};\nfunction build$2(options, isSynchronous) {\n\tif (!options.resolveSymlinks || options.excludeSymlinks) return null;\n\treturn isSynchronous ? resolveSymlinks : resolveSymlinksAsync;\n}\nfunction isRecursive(path, resolved, state) {\n\tif (state.options.useRealPaths) return isRecursiveUsingRealPaths(resolved, state);\n\tlet parent = dirname(path);\n\tlet depth = 1;\n\twhile (parent !== state.root && depth < 2) {\n\t\tconst resolvedPath = state.symlinks.get(parent);\n\t\tconst isSameRoot = !!resolvedPath && (resolvedPath === resolved || resolvedPath.startsWith(resolved) || resolved.startsWith(resolvedPath));\n\t\tif (isSameRoot) depth++;\n\t\telse parent = dirname(parent);\n\t}\n\tstate.symlinks.set(path, resolved);\n\treturn depth > 1;\n}\nfunction isRecursiveUsingRealPaths(resolved, state) {\n\treturn state.visited.includes(resolved + state.options.pathSeparator);\n}\n\n//#endregion\n//#region src/api/functions/invoke-callback.ts\nconst onlyCountsSync = (state) => {\n\treturn state.counts;\n};\nconst groupsSync = (state) => {\n\treturn state.groups;\n};\nconst defaultSync = (state) => {\n\treturn state.paths;\n};\nconst limitFilesSync = (state) => {\n\treturn state.paths.slice(0, state.options.maxFiles);\n};\nconst onlyCountsAsync = (state, error, callback$1) => {\n\treport(error, callback$1, state.counts, state.options.suppressErrors);\n\treturn null;\n};\nconst defaultAsync = (state, error, callback$1) => {\n\treport(error, callback$1, state.paths, state.options.suppressErrors);\n\treturn null;\n};\nconst limitFilesAsync = (state, error, callback$1) => {\n\treport(error, callback$1, state.paths.slice(0, state.options.maxFiles), state.options.suppressErrors);\n\treturn null;\n};\nconst groupsAsync = (state, error, callback$1) => {\n\treport(error, callback$1, state.groups, state.options.suppressErrors);\n\treturn null;\n};\nfunction report(error, callback$1, output, suppressErrors) {\n\tif (error && !suppressErrors) callback$1(error, output);\n\telse callback$1(null, output);\n}\nfunction build$1(options, isSynchronous) {\n\tconst { onlyCounts, group, maxFiles } = options;\n\tif (onlyCounts) return isSynchronous ? onlyCountsSync : onlyCountsAsync;\n\telse if (group) return isSynchronous ? groupsSync : groupsAsync;\n\telse if (maxFiles) return isSynchronous ? limitFilesSync : limitFilesAsync;\n\telse return isSynchronous ? defaultSync : defaultAsync;\n}\n\n//#endregion\n//#region src/api/functions/walk-directory.ts\nconst readdirOpts = { withFileTypes: true };\nconst walkAsync = (state, crawlPath, directoryPath, currentDepth, callback$1) => {\n\tstate.queue.enqueue();\n\tif (currentDepth < 0) return state.queue.dequeue(null, state);\n\tconst { fs } = state;\n\tstate.visited.push(crawlPath);\n\tstate.counts.directories++;\n\tfs.readdir(crawlPath || \".\", readdirOpts, (error, entries = []) => {\n\t\tcallback$1(entries, directoryPath, currentDepth);\n\t\tstate.queue.dequeue(state.options.suppressErrors ? null : error, state);\n\t});\n};\nconst walkSync = (state, crawlPath, directoryPath, currentDepth, callback$1) => {\n\tconst { fs } = state;\n\tif (currentDepth < 0) return;\n\tstate.visited.push(crawlPath);\n\tstate.counts.directories++;\n\tlet entries = [];\n\ttry {\n\t\tentries = fs.readdirSync(crawlPath || \".\", readdirOpts);\n\t} catch (e) {\n\t\tif (!state.options.suppressErrors) throw e;\n\t}\n\tcallback$1(entries, directoryPath, currentDepth);\n};\nfunction build(isSynchronous) {\n\treturn isSynchronous ? walkSync : walkAsync;\n}\n\n//#endregion\n//#region src/api/queue.ts\n/**\n* This is a custom stateless queue to track concurrent async fs calls.\n* It increments a counter whenever a call is queued and decrements it\n* as soon as it completes. When the counter hits 0, it calls onQueueEmpty.\n*/\nvar Queue = class {\n\tcount = 0;\n\tconstructor(onQueueEmpty) {\n\t\tthis.onQueueEmpty = onQueueEmpty;\n\t}\n\tenqueue() {\n\t\tthis.count++;\n\t\treturn this.count;\n\t}\n\tdequeue(error, output) {\n\t\tif (this.onQueueEmpty && (--this.count <= 0 || error)) {\n\t\t\tthis.onQueueEmpty(error, output);\n\t\t\tif (error) {\n\t\t\t\toutput.controller.abort();\n\t\t\t\tthis.onQueueEmpty = void 0;\n\t\t\t}\n\t\t}\n\t}\n};\n\n//#endregion\n//#region src/api/counter.ts\nvar Counter = class {\n\t_files = 0;\n\t_directories = 0;\n\tset files(num) {\n\t\tthis._files = num;\n\t}\n\tget files() {\n\t\treturn this._files;\n\t}\n\tset directories(num) {\n\t\tthis._directories = num;\n\t}\n\tget directories() {\n\t\treturn this._directories;\n\t}\n\t/**\n\t* @deprecated use `directories` instead\n\t*/\n\t/* c8 ignore next 3 */\n\tget dirs() {\n\t\treturn this._directories;\n\t}\n};\n\n//#endregion\n//#region src/api/aborter.ts\n/**\n* AbortController is not supported on Node 14 so we use this until we can drop\n* support for Node 14.\n*/\nvar Aborter = class {\n\taborted = false;\n\tabort() {\n\t\tthis.aborted = true;\n\t}\n};\n\n//#endregion\n//#region src/api/walker.ts\nvar Walker = class {\n\troot;\n\tisSynchronous;\n\tstate;\n\tjoinPath;\n\tpushDirectory;\n\tpushFile;\n\tgetArray;\n\tgroupFiles;\n\tresolveSymlink;\n\twalkDirectory;\n\tcallbackInvoker;\n\tconstructor(root, options, callback$1) {\n\t\tthis.isSynchronous = !callback$1;\n\t\tthis.callbackInvoker = build$1(options, this.isSynchronous);\n\t\tthis.root = normalizePath(root, options);\n\t\tthis.state = {\n\t\t\troot: isRootDirectory(this.root) ? this.root : this.root.slice(0, -1),\n\t\t\tpaths: [\"\"].slice(0, 0),\n\t\t\tgroups: [],\n\t\t\tcounts: new Counter(),\n\t\t\toptions,\n\t\t\tqueue: new Queue((error, state) => this.callbackInvoker(state, error, callback$1)),\n\t\t\tsymlinks: /* @__PURE__ */ new Map(),\n\t\t\tvisited: [\"\"].slice(0, 0),\n\t\t\tcontroller: new Aborter(),\n\t\t\tfs: options.fs || nativeFs\n\t\t};\n\t\tthis.joinPath = build$7(this.root, options);\n\t\tthis.pushDirectory = build$6(this.root, options);\n\t\tthis.pushFile = build$5(options);\n\t\tthis.getArray = build$4(options);\n\t\tthis.groupFiles = build$3(options);\n\t\tthis.resolveSymlink = build$2(options, this.isSynchronous);\n\t\tthis.walkDirectory = build(this.isSynchronous);\n\t}\n\tstart() {\n\t\tthis.pushDirectory(this.root, this.state.paths, this.state.options.filters);\n\t\tthis.walkDirectory(this.state, this.root, this.root, this.state.options.maxDepth, this.walk);\n\t\treturn this.isSynchronous ? this.callbackInvoker(this.state, null) : null;\n\t}\n\twalk = (entries, directoryPath, depth) => {\n\t\tconst { paths, options: { filters, resolveSymlinks: resolveSymlinks$1, excludeSymlinks, exclude, maxFiles, signal, useRealPaths, pathSeparator }, controller } = this.state;\n\t\tif (controller.aborted || signal && signal.aborted || maxFiles && paths.length > maxFiles) return;\n\t\tconst files = this.getArray(this.state.paths);\n\t\tfor (let i = 0; i < entries.length; ++i) {\n\t\t\tconst entry = entries[i];\n\t\t\tif (entry.isFile() || entry.isSymbolicLink() && !resolveSymlinks$1 && !excludeSymlinks) {\n\t\t\t\tconst filename = this.joinPath(entry.name, directoryPath);\n\t\t\t\tthis.pushFile(filename, files, this.state.counts, filters);\n\t\t\t} else if (entry.isDirectory()) {\n\t\t\t\tlet path = joinDirectoryPath(entry.name, directoryPath, this.state.options.pathSeparator);\n\t\t\t\tif (exclude && exclude(entry.name, path)) continue;\n\t\t\t\tthis.pushDirectory(path, paths, filters);\n\t\t\t\tthis.walkDirectory(this.state, path, path, depth - 1, this.walk);\n\t\t\t} else if (this.resolveSymlink && entry.isSymbolicLink()) {\n\t\t\t\tlet path = joinPathWithBasePath(entry.name, directoryPath);\n\t\t\t\tthis.resolveSymlink(path, this.state, (stat, resolvedPath) => {\n\t\t\t\t\tif (stat.isDirectory()) {\n\t\t\t\t\t\tresolvedPath = normalizePath(resolvedPath, this.state.options);\n\t\t\t\t\t\tif (exclude && exclude(entry.name, useRealPaths ? resolvedPath : path + pathSeparator)) return;\n\t\t\t\t\t\tthis.walkDirectory(this.state, resolvedPath, useRealPaths ? resolvedPath : path + pathSeparator, depth - 1, this.walk);\n\t\t\t\t\t} else {\n\t\t\t\t\t\tresolvedPath = useRealPaths ? resolvedPath : path;\n\t\t\t\t\t\tconst filename = basename(resolvedPath);\n\t\t\t\t\t\tconst directoryPath$1 = normalizePath(dirname(resolvedPath), this.state.options);\n\t\t\t\t\t\tresolvedPath = this.joinPath(filename, directoryPath$1);\n\t\t\t\t\t\tthis.pushFile(resolvedPath, files, this.state.counts, filters);\n\t\t\t\t\t}\n\t\t\t\t});\n\t\t\t}\n\t\t}\n\t\tthis.groupFiles(this.state.groups, directoryPath, files);\n\t};\n};\n\n//#endregion\n//#region src/api/async.ts\nfunction promise(root, options) {\n\treturn new Promise((resolve$1, reject) => {\n\t\tcallback(root, options, (err, output) => {\n\t\t\tif (err) return reject(err);\n\t\t\tresolve$1(output);\n\t\t});\n\t});\n}\nfunction callback(root, options, callback$1) {\n\tlet walker = new Walker(root, options, callback$1);\n\twalker.start();\n}\n\n//#endregion\n//#region src/api/sync.ts\nfunction sync(root, options) {\n\tconst walker = new Walker(root, options);\n\treturn walker.start();\n}\n\n//#endregion\n//#region src/builder/api-builder.ts\nvar APIBuilder = class {\n\tconstructor(root, options) {\n\t\tthis.root = root;\n\t\tthis.options = options;\n\t}\n\twithPromise() {\n\t\treturn promise(this.root, this.options);\n\t}\n\twithCallback(cb) {\n\t\tcallback(this.root, this.options, cb);\n\t}\n\tsync() {\n\t\treturn sync(this.root, this.options);\n\t}\n};\n\n//#endregion\n//#region src/builder/index.ts\nlet pm = null;\n/* c8 ignore next 6 */\ntry {\n\t__require.resolve(\"picomatch\");\n\tpm = __require(\"picomatch\");\n} catch {}\nvar Builder = class {\n\tglobCache = {};\n\toptions = {\n\t\tmaxDepth: Infinity,\n\t\tsuppressErrors: true,\n\t\tpathSeparator: sep,\n\t\tfilters: []\n\t};\n\tglobFunction;\n\tconstructor(options) {\n\t\tthis.options = {\n\t\t\t...this.options,\n\t\t\t...options\n\t\t};\n\t\tthis.globFunction = this.options.globFunction;\n\t}\n\tgroup() {\n\t\tthis.options.group = true;\n\t\treturn this;\n\t}\n\twithPathSeparator(separator) {\n\t\tthis.options.pathSeparator = separator;\n\t\treturn this;\n\t}\n\twithBasePath() {\n\t\tthis.options.includeBasePath = true;\n\t\treturn this;\n\t}\n\twithRelativePaths() {\n\t\tthis.options.relativePaths = true;\n\t\treturn this;\n\t}\n\twithDirs() {\n\t\tthis.options.includeDirs = true;\n\t\treturn this;\n\t}\n\twithMaxDepth(depth) {\n\t\tthis.options.maxDepth = depth;\n\t\treturn this;\n\t}\n\twithMaxFiles(limit) {\n\t\tthis.options.maxFiles = limit;\n\t\treturn this;\n\t}\n\twithFullPaths() {\n\t\tthis.options.resolvePaths = true;\n\t\tthis.options.includeBasePath = true;\n\t\treturn this;\n\t}\n\twithErrors() {\n\t\tthis.options.suppressErrors = false;\n\t\treturn this;\n\t}\n\twithSymlinks({ resolvePaths = true } = {}) {\n\t\tthis.options.resolveSymlinks = true;\n\t\tthis.options.useRealPaths = resolvePaths;\n\t\treturn this.withFullPaths();\n\t}\n\twithAbortSignal(signal) {\n\t\tthis.options.signal = signal;\n\t\treturn this;\n\t}\n\tnormalize() {\n\t\tthis.options.normalizePath = true;\n\t\treturn this;\n\t}\n\tfilter(predicate) {\n\t\tthis.options.filters.push(predicate);\n\t\treturn this;\n\t}\n\tonlyDirs() {\n\t\tthis.options.excludeFiles = true;\n\t\tthis.options.includeDirs = true;\n\t\treturn this;\n\t}\n\texclude(predicate) {\n\t\tthis.options.exclude = predicate;\n\t\treturn this;\n\t}\n\tonlyCounts() {\n\t\tthis.options.onlyCounts = true;\n\t\treturn this;\n\t}\n\tcrawl(root) {\n\t\treturn new APIBuilder(root || \".\", this.options);\n\t}\n\twithGlobFunction(fn) {\n\t\tthis.globFunction = fn;\n\t\treturn this;\n\t}\n\t/**\n\t* @deprecated Pass options using the constructor instead:\n\t* ```ts\n\t* new fdir(options).crawl(\"/path/to/root\");\n\t* ```\n\t* This method will be removed in v7.0\n\t*/\n\t/* c8 ignore next 4 */\n\tcrawlWithOptions(root, options) {\n\t\tthis.options = {\n\t\t\t...this.options,\n\t\t\t...options\n\t\t};\n\t\treturn new APIBuilder(root || \".\", this.options);\n\t}\n\tglob(...patterns) {\n\t\tif (this.globFunction) return this.globWithOptions(patterns);\n\t\treturn this.globWithOptions(patterns, ...[{ dot: true }]);\n\t}\n\tglobWithOptions(patterns, ...options) {\n\t\tconst globFn = this.globFunction || pm;\n\t\t/* c8 ignore next 5 */\n\t\tif (!globFn) throw new Error(\"Please specify a glob function to use glob matching.\");\n\t\tvar isMatch = this.globCache[patterns.join(\"\\0\")];\n\t\tif (!isMatch) {\n\t\t\tisMatch = globFn(patterns, ...options);\n\t\t\tthis.globCache[patterns.join(\"\\0\")] = isMatch;\n\t\t}\n\t\tthis.options.filters.push((path) => isMatch(path));\n\t\treturn this;\n\t}\n};\n\n//#endregion\nexport { Builder as fdir };"],"x_google_ignoreList":[0],"mappings":"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"}