@powerlines/plugin-content-collections 0.1.326 → 0.1.327
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.
- package/dist/_virtual/rolldown_runtime.mjs +1 -1
- package/dist/helpers/create-emitter.cjs +0 -0
- package/dist/helpers/create-emitter.mjs +1 -1
- package/dist/index.cjs +0 -0
- package/dist/index.mjs +1 -1
- package/dist/node_modules/.pnpm/@content-collections_core@0.12.0_patch_hash_bceb89349da763f8c715d7b53875be4a1e5bc5161d7_3067b2e8f290866ec343d5ebc4494f7e/node_modules/@content-collections/core/dist/index.cjs +0 -0
- package/dist/node_modules/.pnpm/@content-collections_core@0.12.0_patch_hash_bceb89349da763f8c715d7b53875be4a1e5bc5161d7_3067b2e8f290866ec343d5ebc4494f7e/node_modules/@content-collections/core/dist/index.mjs +21 -18
- package/dist/node_modules/.pnpm/@content-collections_core@0.12.0_patch_hash_bceb89349da763f8c715d7b53875be4a1e5bc5161d7_3067b2e8f290866ec343d5ebc4494f7e/node_modules/@content-collections/core/dist/index.mjs.map +1 -1
- package/dist/node_modules/.pnpm/fdir@6.5.0_@types_picomatch@4.0.2_picomatch@4.0.3/node_modules/fdir/dist/index.cjs +1 -1
- package/dist/node_modules/.pnpm/fdir@6.5.0_@types_picomatch@4.0.2_picomatch@4.0.3/node_modules/fdir/dist/index.mjs +35 -35
- package/dist/node_modules/.pnpm/fdir@6.5.0_@types_picomatch@4.0.2_picomatch@4.0.3/node_modules/fdir/dist/index.mjs.map +1 -1
- package/dist/node_modules/.pnpm/tinyglobby@0.2.15/node_modules/tinyglobby/dist/index.cjs +2 -2
- package/dist/node_modules/.pnpm/tinyglobby@0.2.15/node_modules/tinyglobby/dist/index.mjs +3 -3
- package/dist/node_modules/.pnpm/tinyglobby@0.2.15/node_modules/tinyglobby/dist/index.mjs.map +1 -1
- package/package.json +4 -4
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
const require_rolldown_runtime = require('../../../../../../_virtual/rolldown_runtime.cjs');
|
|
2
|
-
let node_path = require("node:path");
|
|
3
2
|
let node_fs = require("node:fs");
|
|
4
3
|
node_fs = require_rolldown_runtime.__toESM(node_fs);
|
|
4
|
+
let node_path = require("node:path");
|
|
5
5
|
let node_module = require("node:module");
|
|
6
6
|
|
|
7
7
|
//#region ../../node_modules/.pnpm/fdir@6.5.0_@types+picomatch@4.0.2_picomatch@4.0.3/node_modules/fdir/dist/index.mjs
|
|
@@ -1,29 +1,29 @@
|
|
|
1
|
-
import { createRequire } from "node:module";
|
|
2
|
-
import { basename, dirname, normalize, relative, resolve, sep } from "node:path";
|
|
3
1
|
import * as nativeFs from "node:fs";
|
|
2
|
+
import { basename, dirname, normalize, relative, resolve, sep } from "node:path";
|
|
3
|
+
import { createRequire } from "node:module";
|
|
4
4
|
|
|
5
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
|
-
function cleanPath(path
|
|
8
|
-
let normalized = normalize(path
|
|
7
|
+
function cleanPath(path) {
|
|
8
|
+
let normalized = normalize(path);
|
|
9
9
|
if (normalized.length > 1 && normalized[normalized.length - 1] === sep) normalized = normalized.substring(0, normalized.length - 1);
|
|
10
10
|
return normalized;
|
|
11
11
|
}
|
|
12
12
|
const SLASHES_REGEX = /[\\/]/g;
|
|
13
|
-
function convertSlashes(path
|
|
14
|
-
return path
|
|
13
|
+
function convertSlashes(path, separator) {
|
|
14
|
+
return path.replace(SLASHES_REGEX, separator);
|
|
15
15
|
}
|
|
16
16
|
const WINDOWS_ROOT_DIR_REGEX = /^[a-z]:[\\/]$/i;
|
|
17
|
-
function isRootDirectory(path
|
|
18
|
-
return path
|
|
17
|
+
function isRootDirectory(path) {
|
|
18
|
+
return path === "/" || WINDOWS_ROOT_DIR_REGEX.test(path);
|
|
19
19
|
}
|
|
20
|
-
function normalizePath(path
|
|
20
|
+
function normalizePath(path, options) {
|
|
21
21
|
const { resolvePaths, normalizePath: normalizePath$1, pathSeparator } = options;
|
|
22
|
-
const pathNeedsCleaning = process.platform === "win32" && path
|
|
23
|
-
if (resolvePaths) path
|
|
24
|
-
if (normalizePath$1 || pathNeedsCleaning) path
|
|
25
|
-
if (path
|
|
26
|
-
return convertSlashes(path
|
|
22
|
+
const pathNeedsCleaning = process.platform === "win32" && path.includes("/") || path.startsWith(".");
|
|
23
|
+
if (resolvePaths) path = resolve(path);
|
|
24
|
+
if (normalizePath$1 || pathNeedsCleaning) path = cleanPath(path);
|
|
25
|
+
if (path === ".") return "";
|
|
26
|
+
return convertSlashes(path[path.length - 1] !== pathSeparator ? path + pathSeparator : path, pathSeparator);
|
|
27
27
|
}
|
|
28
28
|
function joinPathWithBasePath(filename, directoryPath) {
|
|
29
29
|
return directoryPath + filename;
|
|
@@ -59,8 +59,8 @@ const pushDirectory = (directoryPath, paths) => {
|
|
|
59
59
|
paths.push(directoryPath || ".");
|
|
60
60
|
};
|
|
61
61
|
const pushDirectoryFilter = (directoryPath, paths, filters) => {
|
|
62
|
-
const path
|
|
63
|
-
if (filters.every((filter) => filter(path
|
|
62
|
+
const path = directoryPath || ".";
|
|
63
|
+
if (filters.every((filter) => filter(path, true))) paths.push(path);
|
|
64
64
|
};
|
|
65
65
|
const empty$2 = () => {};
|
|
66
66
|
function build$6(root, options) {
|
|
@@ -109,26 +109,26 @@ const empty = () => {};
|
|
|
109
109
|
function build$3(options) {
|
|
110
110
|
return options.group ? groupFiles : empty;
|
|
111
111
|
}
|
|
112
|
-
const resolveSymlinksAsync = function(path
|
|
112
|
+
const resolveSymlinksAsync = function(path, state, callback$1) {
|
|
113
113
|
const { queue, fs, options: { suppressErrors } } = state;
|
|
114
114
|
queue.enqueue();
|
|
115
|
-
fs.realpath(path
|
|
115
|
+
fs.realpath(path, (error, resolvedPath) => {
|
|
116
116
|
if (error) return queue.dequeue(suppressErrors ? null : error, state);
|
|
117
117
|
fs.stat(resolvedPath, (error$1, stat) => {
|
|
118
118
|
if (error$1) return queue.dequeue(suppressErrors ? null : error$1, state);
|
|
119
|
-
if (stat.isDirectory() && isRecursive(path
|
|
119
|
+
if (stat.isDirectory() && isRecursive(path, resolvedPath, state)) return queue.dequeue(null, state);
|
|
120
120
|
callback$1(stat, resolvedPath);
|
|
121
121
|
queue.dequeue(null, state);
|
|
122
122
|
});
|
|
123
123
|
});
|
|
124
124
|
};
|
|
125
|
-
const resolveSymlinks = function(path
|
|
125
|
+
const resolveSymlinks = function(path, state, callback$1) {
|
|
126
126
|
const { queue, fs, options: { suppressErrors } } = state;
|
|
127
127
|
queue.enqueue();
|
|
128
128
|
try {
|
|
129
|
-
const resolvedPath = fs.realpathSync(path
|
|
129
|
+
const resolvedPath = fs.realpathSync(path);
|
|
130
130
|
const stat = fs.statSync(resolvedPath);
|
|
131
|
-
if (stat.isDirectory() && isRecursive(path
|
|
131
|
+
if (stat.isDirectory() && isRecursive(path, resolvedPath, state)) return;
|
|
132
132
|
callback$1(stat, resolvedPath);
|
|
133
133
|
} catch (e) {
|
|
134
134
|
if (!suppressErrors) throw e;
|
|
@@ -138,16 +138,16 @@ function build$2(options, isSynchronous) {
|
|
|
138
138
|
if (!options.resolveSymlinks || options.excludeSymlinks) return null;
|
|
139
139
|
return isSynchronous ? resolveSymlinks : resolveSymlinksAsync;
|
|
140
140
|
}
|
|
141
|
-
function isRecursive(path
|
|
141
|
+
function isRecursive(path, resolved, state) {
|
|
142
142
|
if (state.options.useRealPaths) return isRecursiveUsingRealPaths(resolved, state);
|
|
143
|
-
let parent = dirname(path
|
|
143
|
+
let parent = dirname(path);
|
|
144
144
|
let depth = 1;
|
|
145
145
|
while (parent !== state.root && depth < 2) {
|
|
146
146
|
const resolvedPath = state.symlinks.get(parent);
|
|
147
147
|
if (!!resolvedPath && (resolvedPath === resolved || resolvedPath.startsWith(resolved) || resolved.startsWith(resolvedPath))) depth++;
|
|
148
148
|
else parent = dirname(parent);
|
|
149
149
|
}
|
|
150
|
-
state.symlinks.set(path
|
|
150
|
+
state.symlinks.set(path, resolved);
|
|
151
151
|
return depth > 1;
|
|
152
152
|
}
|
|
153
153
|
function isRecursiveUsingRealPaths(resolved, state) {
|
|
@@ -328,19 +328,19 @@ var Walker = class {
|
|
|
328
328
|
const filename = this.joinPath(entry.name, directoryPath);
|
|
329
329
|
this.pushFile(filename, files, this.state.counts, filters);
|
|
330
330
|
} else if (entry.isDirectory()) {
|
|
331
|
-
let path
|
|
332
|
-
if (exclude && exclude(entry.name, path
|
|
333
|
-
this.pushDirectory(path
|
|
334
|
-
this.walkDirectory(this.state, path
|
|
331
|
+
let path = joinDirectoryPath(entry.name, directoryPath, this.state.options.pathSeparator);
|
|
332
|
+
if (exclude && exclude(entry.name, path)) continue;
|
|
333
|
+
this.pushDirectory(path, paths, filters);
|
|
334
|
+
this.walkDirectory(this.state, path, path, depth - 1, this.walk);
|
|
335
335
|
} else if (this.resolveSymlink && entry.isSymbolicLink()) {
|
|
336
|
-
let path
|
|
337
|
-
this.resolveSymlink(path
|
|
336
|
+
let path = joinPathWithBasePath(entry.name, directoryPath);
|
|
337
|
+
this.resolveSymlink(path, this.state, (stat, resolvedPath) => {
|
|
338
338
|
if (stat.isDirectory()) {
|
|
339
339
|
resolvedPath = normalizePath(resolvedPath, this.state.options);
|
|
340
|
-
if (exclude && exclude(entry.name, useRealPaths ? resolvedPath : path
|
|
341
|
-
this.walkDirectory(this.state, resolvedPath, useRealPaths ? resolvedPath : path
|
|
340
|
+
if (exclude && exclude(entry.name, useRealPaths ? resolvedPath : path + pathSeparator)) return;
|
|
341
|
+
this.walkDirectory(this.state, resolvedPath, useRealPaths ? resolvedPath : path + pathSeparator, depth - 1, this.walk);
|
|
342
342
|
} else {
|
|
343
|
-
resolvedPath = useRealPaths ? resolvedPath : path
|
|
343
|
+
resolvedPath = useRealPaths ? resolvedPath : path;
|
|
344
344
|
const filename = basename(resolvedPath);
|
|
345
345
|
const directoryPath$1 = normalizePath(dirname(resolvedPath), this.state.options);
|
|
346
346
|
resolvedPath = this.joinPath(filename, directoryPath$1);
|
|
@@ -505,7 +505,7 @@ var Builder = class {
|
|
|
505
505
|
isMatch = globFn(patterns, ...options);
|
|
506
506
|
this.globCache[patterns.join("\0")] = isMatch;
|
|
507
507
|
}
|
|
508
|
-
this.options.filters.push((path
|
|
508
|
+
this.options.filters.push((path) => isMatch(path));
|
|
509
509
|
return this;
|
|
510
510
|
}
|
|
511
511
|
};
|
|
@@ -1 +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
|
+
{"version":3,"file":"index.mjs","names":[],"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,10 +1,10 @@
|
|
|
1
1
|
const require_rolldown_runtime = require('../../../../../../_virtual/rolldown_runtime.cjs');
|
|
2
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
|
-
let node_path = require("node:path");
|
|
5
|
-
node_path = require_rolldown_runtime.__toESM(node_path);
|
|
6
4
|
let node_fs = require("node:fs");
|
|
7
5
|
node_fs = require_rolldown_runtime.__toESM(node_fs);
|
|
6
|
+
let node_path = require("node:path");
|
|
7
|
+
node_path = require_rolldown_runtime.__toESM(node_path);
|
|
8
8
|
let node_url = require("node:url");
|
|
9
9
|
|
|
10
10
|
//#region ../../node_modules/.pnpm/tinyglobby@0.2.15/node_modules/tinyglobby/dist/index.mjs
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import { __toESM } from "../../../../../../_virtual/rolldown_runtime.mjs";
|
|
2
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
|
-
import path, { posix } from "node:path";
|
|
5
4
|
import fs2 from "node:fs";
|
|
5
|
+
import path2, { posix } from "node:path";
|
|
6
6
|
import { fileURLToPath } from "node:url";
|
|
7
7
|
|
|
8
8
|
//#region ../../node_modules/.pnpm/tinyglobby@0.2.15/node_modules/tinyglobby/dist/index.mjs
|
|
@@ -119,7 +119,7 @@ function normalizePattern(pattern, expandDirectories, cwd, props, isIgnore) {
|
|
|
119
119
|
if (pattern.endsWith("/")) result = pattern.slice(0, -1);
|
|
120
120
|
if (!result.endsWith("*") && expandDirectories) result += "/**";
|
|
121
121
|
const escapedCwd = escapePath(cwd);
|
|
122
|
-
if (
|
|
122
|
+
if (path2.isAbsolute(result.replace(ESCAPING_BACKSLASHES, ""))) result = posix.relative(escapedCwd, result);
|
|
123
123
|
else result = posix.normalize(result);
|
|
124
124
|
const parentDirectoryMatch = PARENT_DIRECTORY.exec(result);
|
|
125
125
|
const parts = splitPattern(result);
|
|
@@ -186,7 +186,7 @@ function formatPaths(paths, relative$1) {
|
|
|
186
186
|
function normalizeCwd(cwd) {
|
|
187
187
|
if (!cwd) return process.cwd().replace(BACKSLASHES, "/");
|
|
188
188
|
if (cwd instanceof URL) return fileURLToPath(cwd).replace(BACKSLASHES, "/");
|
|
189
|
-
return
|
|
189
|
+
return path2.resolve(cwd).replace(BACKSLASHES, "/");
|
|
190
190
|
}
|
|
191
191
|
function getCrawler(patterns, inputOptions = {}) {
|
|
192
192
|
const options = process.env.TINYGLOBBY_DEBUG ? {
|
package/dist/node_modules/.pnpm/tinyglobby@0.2.15/node_modules/tinyglobby/dist/index.mjs.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.mjs","names":["picomatch","relative","nativeFs","fdir"],"sources":["../../../../../../../../../node_modules/.pnpm/tinyglobby@0.2.15/node_modules/tinyglobby/dist/index.mjs"],"sourcesContent":["import nativeFs from \"fs\";\nimport path, { posix } from \"path\";\nimport { fileURLToPath } from \"url\";\nimport { fdir } from \"fdir\";\nimport picomatch from \"picomatch\";\n\n//#region src/utils.ts\nconst isReadonlyArray = Array.isArray;\nconst isWin = process.platform === \"win32\";\nconst ONLY_PARENT_DIRECTORIES = /^(\\/?\\.\\.)+$/;\nfunction getPartialMatcher(patterns, options = {}) {\n\tconst patternsCount = patterns.length;\n\tconst patternsParts = Array(patternsCount);\n\tconst matchers = Array(patternsCount);\n\tconst globstarEnabled = !options.noglobstar;\n\tfor (let i = 0; i < patternsCount; i++) {\n\t\tconst parts = splitPattern(patterns[i]);\n\t\tpatternsParts[i] = parts;\n\t\tconst partsCount = parts.length;\n\t\tconst partMatchers = Array(partsCount);\n\t\tfor (let j = 0; j < partsCount; j++) partMatchers[j] = picomatch(parts[j], options);\n\t\tmatchers[i] = partMatchers;\n\t}\n\treturn (input) => {\n\t\tconst inputParts = input.split(\"/\");\n\t\tif (inputParts[0] === \"..\" && ONLY_PARENT_DIRECTORIES.test(input)) return true;\n\t\tfor (let i = 0; i < patterns.length; i++) {\n\t\t\tconst patternParts = patternsParts[i];\n\t\t\tconst matcher = matchers[i];\n\t\t\tconst inputPatternCount = inputParts.length;\n\t\t\tconst minParts = Math.min(inputPatternCount, patternParts.length);\n\t\t\tlet j = 0;\n\t\t\twhile (j < minParts) {\n\t\t\t\tconst part = patternParts[j];\n\t\t\t\tif (part.includes(\"/\")) return true;\n\t\t\t\tconst match = matcher[j](inputParts[j]);\n\t\t\t\tif (!match) break;\n\t\t\t\tif (globstarEnabled && part === \"**\") return true;\n\t\t\t\tj++;\n\t\t\t}\n\t\t\tif (j === inputPatternCount) return true;\n\t\t}\n\t\treturn false;\n\t};\n}\n/* node:coverage ignore next 2 */\nconst WIN32_ROOT_DIR = /^[A-Z]:\\/$/i;\nconst isRoot = isWin ? (p) => WIN32_ROOT_DIR.test(p) : (p) => p === \"/\";\nfunction buildFormat(cwd, root, absolute) {\n\tif (cwd === root || root.startsWith(`${cwd}/`)) {\n\t\tif (absolute) {\n\t\t\tconst start = isRoot(cwd) ? cwd.length : cwd.length + 1;\n\t\t\treturn (p, isDir) => p.slice(start, isDir ? -1 : void 0) || \".\";\n\t\t}\n\t\tconst prefix = root.slice(cwd.length + 1);\n\t\tif (prefix) return (p, isDir) => {\n\t\t\tif (p === \".\") return prefix;\n\t\t\tconst result = `${prefix}/${p}`;\n\t\t\treturn isDir ? result.slice(0, -1) : result;\n\t\t};\n\t\treturn (p, isDir) => isDir && p !== \".\" ? p.slice(0, -1) : p;\n\t}\n\tif (absolute) return (p) => posix.relative(cwd, p) || \".\";\n\treturn (p) => posix.relative(cwd, `${root}/${p}`) || \".\";\n}\nfunction buildRelative(cwd, root) {\n\tif (root.startsWith(`${cwd}/`)) {\n\t\tconst prefix = root.slice(cwd.length + 1);\n\t\treturn (p) => `${prefix}/${p}`;\n\t}\n\treturn (p) => {\n\t\tconst result = posix.relative(cwd, `${root}/${p}`);\n\t\tif (p.endsWith(\"/\") && result !== \"\") return `${result}/`;\n\t\treturn result || \".\";\n\t};\n}\nconst splitPatternOptions = { parts: true };\nfunction splitPattern(path$1) {\n\tvar _result$parts;\n\tconst result = picomatch.scan(path$1, splitPatternOptions);\n\treturn ((_result$parts = result.parts) === null || _result$parts === void 0 ? void 0 : _result$parts.length) ? result.parts : [path$1];\n}\nconst ESCAPED_WIN32_BACKSLASHES = /\\\\(?![()[\\]{}!+@])/g;\nfunction convertPosixPathToPattern(path$1) {\n\treturn escapePosixPath(path$1);\n}\nfunction convertWin32PathToPattern(path$1) {\n\treturn escapeWin32Path(path$1).replace(ESCAPED_WIN32_BACKSLASHES, \"/\");\n}\n/**\n* Converts a path to a pattern depending on the platform.\n* Identical to {@link escapePath} on POSIX systems.\n* @see {@link https://superchupu.dev/tinyglobby/documentation#convertPathToPattern}\n*/\n/* node:coverage ignore next 3 */\nconst convertPathToPattern = isWin ? convertWin32PathToPattern : convertPosixPathToPattern;\nconst POSIX_UNESCAPED_GLOB_SYMBOLS = /(?<!\\\\)([()[\\]{}*?|]|^!|[!+@](?=\\()|\\\\(?![()[\\]{}!*+?@|]))/g;\nconst WIN32_UNESCAPED_GLOB_SYMBOLS = /(?<!\\\\)([()[\\]{}]|^!|[!+@](?=\\())/g;\nconst escapePosixPath = (path$1) => path$1.replace(POSIX_UNESCAPED_GLOB_SYMBOLS, \"\\\\$&\");\nconst escapeWin32Path = (path$1) => path$1.replace(WIN32_UNESCAPED_GLOB_SYMBOLS, \"\\\\$&\");\n/**\n* Escapes a path's special characters depending on the platform.\n* @see {@link https://superchupu.dev/tinyglobby/documentation#escapePath}\n*/\n/* node:coverage ignore next */\nconst escapePath = isWin ? escapeWin32Path : escapePosixPath;\n/**\n* Checks if a pattern has dynamic parts.\n*\n* Has a few minor differences with [`fast-glob`](https://github.com/mrmlnc/fast-glob) for better accuracy:\n*\n* - Doesn't necessarily return `false` on patterns that include `\\`.\n* - Returns `true` if the pattern includes parentheses, regardless of them representing one single pattern or not.\n* - Returns `true` for unfinished glob extensions i.e. `(h`, `+(h`.\n* - Returns `true` for unfinished brace expansions as long as they include `,` or `..`.\n*\n* @see {@link https://superchupu.dev/tinyglobby/documentation#isDynamicPattern}\n*/\nfunction isDynamicPattern(pattern, options) {\n\tif ((options === null || options === void 0 ? void 0 : options.caseSensitiveMatch) === false) return true;\n\tconst scan = picomatch.scan(pattern);\n\treturn scan.isGlob || scan.negated;\n}\nfunction log(...tasks) {\n\tconsole.log(`[tinyglobby ${(/* @__PURE__ */ new Date()).toLocaleTimeString(\"es\")}]`, ...tasks);\n}\n\n//#endregion\n//#region src/index.ts\nconst PARENT_DIRECTORY = /^(\\/?\\.\\.)+/;\nconst ESCAPING_BACKSLASHES = /\\\\(?=[()[\\]{}!*+?@|])/g;\nconst BACKSLASHES = /\\\\/g;\nfunction normalizePattern(pattern, expandDirectories, cwd, props, isIgnore) {\n\tlet result = pattern;\n\tif (pattern.endsWith(\"/\")) result = pattern.slice(0, -1);\n\tif (!result.endsWith(\"*\") && expandDirectories) result += \"/**\";\n\tconst escapedCwd = escapePath(cwd);\n\tif (path.isAbsolute(result.replace(ESCAPING_BACKSLASHES, \"\"))) result = posix.relative(escapedCwd, result);\n\telse result = posix.normalize(result);\n\tconst parentDirectoryMatch = PARENT_DIRECTORY.exec(result);\n\tconst parts = splitPattern(result);\n\tif (parentDirectoryMatch === null || parentDirectoryMatch === void 0 ? void 0 : parentDirectoryMatch[0]) {\n\t\tconst n = (parentDirectoryMatch[0].length + 1) / 3;\n\t\tlet i = 0;\n\t\tconst cwdParts = escapedCwd.split(\"/\");\n\t\twhile (i < n && parts[i + n] === cwdParts[cwdParts.length + i - n]) {\n\t\t\tresult = result.slice(0, (n - i - 1) * 3) + result.slice((n - i) * 3 + parts[i + n].length + 1) || \".\";\n\t\t\ti++;\n\t\t}\n\t\tconst potentialRoot = posix.join(cwd, parentDirectoryMatch[0].slice(i * 3));\n\t\tif (!potentialRoot.startsWith(\".\") && props.root.length > potentialRoot.length) {\n\t\t\tprops.root = potentialRoot;\n\t\t\tprops.depthOffset = -n + i;\n\t\t}\n\t}\n\tif (!isIgnore && props.depthOffset >= 0) {\n\t\tvar _props$commonPath;\n\t\t(_props$commonPath = props.commonPath) !== null && _props$commonPath !== void 0 || (props.commonPath = parts);\n\t\tconst newCommonPath = [];\n\t\tconst length = Math.min(props.commonPath.length, parts.length);\n\t\tfor (let i = 0; i < length; i++) {\n\t\t\tconst part = parts[i];\n\t\t\tif (part === \"**\" && !parts[i + 1]) {\n\t\t\t\tnewCommonPath.pop();\n\t\t\t\tbreak;\n\t\t\t}\n\t\t\tif (part !== props.commonPath[i] || isDynamicPattern(part) || i === parts.length - 1) break;\n\t\t\tnewCommonPath.push(part);\n\t\t}\n\t\tprops.depthOffset = newCommonPath.length;\n\t\tprops.commonPath = newCommonPath;\n\t\tprops.root = newCommonPath.length > 0 ? posix.join(cwd, ...newCommonPath) : cwd;\n\t}\n\treturn result;\n}\nfunction processPatterns({ patterns = [\"**/*\"], ignore = [], expandDirectories = true }, cwd, props) {\n\tif (typeof patterns === \"string\") patterns = [patterns];\n\tif (typeof ignore === \"string\") ignore = [ignore];\n\tconst matchPatterns = [];\n\tconst ignorePatterns = [];\n\tfor (const pattern of ignore) {\n\t\tif (!pattern) continue;\n\t\tif (pattern[0] !== \"!\" || pattern[1] === \"(\") ignorePatterns.push(normalizePattern(pattern, expandDirectories, cwd, props, true));\n\t}\n\tfor (const pattern of patterns) {\n\t\tif (!pattern) continue;\n\t\tif (pattern[0] !== \"!\" || pattern[1] === \"(\") matchPatterns.push(normalizePattern(pattern, expandDirectories, cwd, props, false));\n\t\telse if (pattern[1] !== \"!\" || pattern[2] === \"(\") ignorePatterns.push(normalizePattern(pattern.slice(1), expandDirectories, cwd, props, true));\n\t}\n\treturn {\n\t\tmatch: matchPatterns,\n\t\tignore: ignorePatterns\n\t};\n}\nfunction formatPaths(paths, relative) {\n\tfor (let i = paths.length - 1; i >= 0; i--) {\n\t\tconst path$1 = paths[i];\n\t\tpaths[i] = relative(path$1);\n\t}\n\treturn paths;\n}\nfunction normalizeCwd(cwd) {\n\tif (!cwd) return process.cwd().replace(BACKSLASHES, \"/\");\n\tif (cwd instanceof URL) return fileURLToPath(cwd).replace(BACKSLASHES, \"/\");\n\treturn path.resolve(cwd).replace(BACKSLASHES, \"/\");\n}\nfunction getCrawler(patterns, inputOptions = {}) {\n\tconst options = process.env.TINYGLOBBY_DEBUG ? {\n\t\t...inputOptions,\n\t\tdebug: true\n\t} : inputOptions;\n\tconst cwd = normalizeCwd(options.cwd);\n\tif (options.debug) log(\"globbing with:\", {\n\t\tpatterns,\n\t\toptions,\n\t\tcwd\n\t});\n\tif (Array.isArray(patterns) && patterns.length === 0) return [{\n\t\tsync: () => [],\n\t\twithPromise: async () => []\n\t}, false];\n\tconst props = {\n\t\troot: cwd,\n\t\tcommonPath: null,\n\t\tdepthOffset: 0\n\t};\n\tconst processed = processPatterns({\n\t\t...options,\n\t\tpatterns\n\t}, cwd, props);\n\tif (options.debug) log(\"internal processing patterns:\", processed);\n\tconst matchOptions = {\n\t\tdot: options.dot,\n\t\tnobrace: options.braceExpansion === false,\n\t\tnocase: options.caseSensitiveMatch === false,\n\t\tnoextglob: options.extglob === false,\n\t\tnoglobstar: options.globstar === false,\n\t\tposix: true\n\t};\n\tconst matcher = picomatch(processed.match, {\n\t\t...matchOptions,\n\t\tignore: processed.ignore\n\t});\n\tconst ignore = picomatch(processed.ignore, matchOptions);\n\tconst partialMatcher = getPartialMatcher(processed.match, matchOptions);\n\tconst format = buildFormat(cwd, props.root, options.absolute);\n\tconst formatExclude = options.absolute ? format : buildFormat(cwd, props.root, true);\n\tconst fdirOptions = {\n\t\tfilters: [options.debug ? (p, isDirectory) => {\n\t\t\tconst path$1 = format(p, isDirectory);\n\t\t\tconst matches = matcher(path$1);\n\t\t\tif (matches) log(`matched ${path$1}`);\n\t\t\treturn matches;\n\t\t} : (p, isDirectory) => matcher(format(p, isDirectory))],\n\t\texclude: options.debug ? (_, p) => {\n\t\t\tconst relativePath = formatExclude(p, true);\n\t\t\tconst skipped = relativePath !== \".\" && !partialMatcher(relativePath) || ignore(relativePath);\n\t\t\tif (skipped) log(`skipped ${p}`);\n\t\t\telse log(`crawling ${p}`);\n\t\t\treturn skipped;\n\t\t} : (_, p) => {\n\t\t\tconst relativePath = formatExclude(p, true);\n\t\t\treturn relativePath !== \".\" && !partialMatcher(relativePath) || ignore(relativePath);\n\t\t},\n\t\tfs: options.fs ? {\n\t\t\treaddir: options.fs.readdir || nativeFs.readdir,\n\t\t\treaddirSync: options.fs.readdirSync || nativeFs.readdirSync,\n\t\t\trealpath: options.fs.realpath || nativeFs.realpath,\n\t\t\trealpathSync: options.fs.realpathSync || nativeFs.realpathSync,\n\t\t\tstat: options.fs.stat || nativeFs.stat,\n\t\t\tstatSync: options.fs.statSync || nativeFs.statSync\n\t\t} : void 0,\n\t\tpathSeparator: \"/\",\n\t\trelativePaths: true,\n\t\tresolveSymlinks: true,\n\t\tsignal: options.signal\n\t};\n\tif (options.deep !== void 0) fdirOptions.maxDepth = Math.round(options.deep - props.depthOffset);\n\tif (options.absolute) {\n\t\tfdirOptions.relativePaths = false;\n\t\tfdirOptions.resolvePaths = true;\n\t\tfdirOptions.includeBasePath = true;\n\t}\n\tif (options.followSymbolicLinks === false) {\n\t\tfdirOptions.resolveSymlinks = false;\n\t\tfdirOptions.excludeSymlinks = true;\n\t}\n\tif (options.onlyDirectories) {\n\t\tfdirOptions.excludeFiles = true;\n\t\tfdirOptions.includeDirs = true;\n\t} else if (options.onlyFiles === false) fdirOptions.includeDirs = true;\n\tprops.root = props.root.replace(BACKSLASHES, \"\");\n\tconst root = props.root;\n\tif (options.debug) log(\"internal properties:\", props);\n\tconst relative = cwd !== root && !options.absolute && buildRelative(cwd, props.root);\n\treturn [new fdir(fdirOptions).crawl(root), relative];\n}\nasync function glob(patternsOrOptions, options) {\n\tif (patternsOrOptions && (options === null || options === void 0 ? void 0 : options.patterns)) throw new Error(\"Cannot pass patterns as both an argument and an option\");\n\tconst isModern = isReadonlyArray(patternsOrOptions) || typeof patternsOrOptions === \"string\";\n\tconst opts = isModern ? options : patternsOrOptions;\n\tconst patterns = isModern ? patternsOrOptions : patternsOrOptions.patterns;\n\tconst [crawler, relative] = getCrawler(patterns, opts);\n\tif (!relative) return crawler.withPromise();\n\treturn formatPaths(await crawler.withPromise(), relative);\n}\nfunction globSync(patternsOrOptions, options) {\n\tif (patternsOrOptions && (options === null || options === void 0 ? void 0 : options.patterns)) throw new Error(\"Cannot pass patterns as both an argument and an option\");\n\tconst isModern = isReadonlyArray(patternsOrOptions) || typeof patternsOrOptions === \"string\";\n\tconst opts = isModern ? options : patternsOrOptions;\n\tconst patterns = isModern ? patternsOrOptions : patternsOrOptions.patterns;\n\tconst [crawler, relative] = getCrawler(patterns, opts);\n\tif (!relative) return crawler.sync();\n\treturn formatPaths(crawler.sync(), relative);\n}\n\n//#endregion\nexport { convertPathToPattern, escapePath, glob, globSync, isDynamicPattern };"],"x_google_ignoreList":[0],"mappings":"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"}
|
|
1
|
+
{"version":3,"file":"index.mjs","names":["picomatch","path","relative","nativeFs","fdir"],"sources":["../../../../../../../../../node_modules/.pnpm/tinyglobby@0.2.15/node_modules/tinyglobby/dist/index.mjs"],"sourcesContent":["import nativeFs from \"fs\";\nimport path, { posix } from \"path\";\nimport { fileURLToPath } from \"url\";\nimport { fdir } from \"fdir\";\nimport picomatch from \"picomatch\";\n\n//#region src/utils.ts\nconst isReadonlyArray = Array.isArray;\nconst isWin = process.platform === \"win32\";\nconst ONLY_PARENT_DIRECTORIES = /^(\\/?\\.\\.)+$/;\nfunction getPartialMatcher(patterns, options = {}) {\n\tconst patternsCount = patterns.length;\n\tconst patternsParts = Array(patternsCount);\n\tconst matchers = Array(patternsCount);\n\tconst globstarEnabled = !options.noglobstar;\n\tfor (let i = 0; i < patternsCount; i++) {\n\t\tconst parts = splitPattern(patterns[i]);\n\t\tpatternsParts[i] = parts;\n\t\tconst partsCount = parts.length;\n\t\tconst partMatchers = Array(partsCount);\n\t\tfor (let j = 0; j < partsCount; j++) partMatchers[j] = picomatch(parts[j], options);\n\t\tmatchers[i] = partMatchers;\n\t}\n\treturn (input) => {\n\t\tconst inputParts = input.split(\"/\");\n\t\tif (inputParts[0] === \"..\" && ONLY_PARENT_DIRECTORIES.test(input)) return true;\n\t\tfor (let i = 0; i < patterns.length; i++) {\n\t\t\tconst patternParts = patternsParts[i];\n\t\t\tconst matcher = matchers[i];\n\t\t\tconst inputPatternCount = inputParts.length;\n\t\t\tconst minParts = Math.min(inputPatternCount, patternParts.length);\n\t\t\tlet j = 0;\n\t\t\twhile (j < minParts) {\n\t\t\t\tconst part = patternParts[j];\n\t\t\t\tif (part.includes(\"/\")) return true;\n\t\t\t\tconst match = matcher[j](inputParts[j]);\n\t\t\t\tif (!match) break;\n\t\t\t\tif (globstarEnabled && part === \"**\") return true;\n\t\t\t\tj++;\n\t\t\t}\n\t\t\tif (j === inputPatternCount) return true;\n\t\t}\n\t\treturn false;\n\t};\n}\n/* node:coverage ignore next 2 */\nconst WIN32_ROOT_DIR = /^[A-Z]:\\/$/i;\nconst isRoot = isWin ? (p) => WIN32_ROOT_DIR.test(p) : (p) => p === \"/\";\nfunction buildFormat(cwd, root, absolute) {\n\tif (cwd === root || root.startsWith(`${cwd}/`)) {\n\t\tif (absolute) {\n\t\t\tconst start = isRoot(cwd) ? cwd.length : cwd.length + 1;\n\t\t\treturn (p, isDir) => p.slice(start, isDir ? -1 : void 0) || \".\";\n\t\t}\n\t\tconst prefix = root.slice(cwd.length + 1);\n\t\tif (prefix) return (p, isDir) => {\n\t\t\tif (p === \".\") return prefix;\n\t\t\tconst result = `${prefix}/${p}`;\n\t\t\treturn isDir ? result.slice(0, -1) : result;\n\t\t};\n\t\treturn (p, isDir) => isDir && p !== \".\" ? p.slice(0, -1) : p;\n\t}\n\tif (absolute) return (p) => posix.relative(cwd, p) || \".\";\n\treturn (p) => posix.relative(cwd, `${root}/${p}`) || \".\";\n}\nfunction buildRelative(cwd, root) {\n\tif (root.startsWith(`${cwd}/`)) {\n\t\tconst prefix = root.slice(cwd.length + 1);\n\t\treturn (p) => `${prefix}/${p}`;\n\t}\n\treturn (p) => {\n\t\tconst result = posix.relative(cwd, `${root}/${p}`);\n\t\tif (p.endsWith(\"/\") && result !== \"\") return `${result}/`;\n\t\treturn result || \".\";\n\t};\n}\nconst splitPatternOptions = { parts: true };\nfunction splitPattern(path$1) {\n\tvar _result$parts;\n\tconst result = picomatch.scan(path$1, splitPatternOptions);\n\treturn ((_result$parts = result.parts) === null || _result$parts === void 0 ? void 0 : _result$parts.length) ? result.parts : [path$1];\n}\nconst ESCAPED_WIN32_BACKSLASHES = /\\\\(?![()[\\]{}!+@])/g;\nfunction convertPosixPathToPattern(path$1) {\n\treturn escapePosixPath(path$1);\n}\nfunction convertWin32PathToPattern(path$1) {\n\treturn escapeWin32Path(path$1).replace(ESCAPED_WIN32_BACKSLASHES, \"/\");\n}\n/**\n* Converts a path to a pattern depending on the platform.\n* Identical to {@link escapePath} on POSIX systems.\n* @see {@link https://superchupu.dev/tinyglobby/documentation#convertPathToPattern}\n*/\n/* node:coverage ignore next 3 */\nconst convertPathToPattern = isWin ? convertWin32PathToPattern : convertPosixPathToPattern;\nconst POSIX_UNESCAPED_GLOB_SYMBOLS = /(?<!\\\\)([()[\\]{}*?|]|^!|[!+@](?=\\()|\\\\(?![()[\\]{}!*+?@|]))/g;\nconst WIN32_UNESCAPED_GLOB_SYMBOLS = /(?<!\\\\)([()[\\]{}]|^!|[!+@](?=\\())/g;\nconst escapePosixPath = (path$1) => path$1.replace(POSIX_UNESCAPED_GLOB_SYMBOLS, \"\\\\$&\");\nconst escapeWin32Path = (path$1) => path$1.replace(WIN32_UNESCAPED_GLOB_SYMBOLS, \"\\\\$&\");\n/**\n* Escapes a path's special characters depending on the platform.\n* @see {@link https://superchupu.dev/tinyglobby/documentation#escapePath}\n*/\n/* node:coverage ignore next */\nconst escapePath = isWin ? escapeWin32Path : escapePosixPath;\n/**\n* Checks if a pattern has dynamic parts.\n*\n* Has a few minor differences with [`fast-glob`](https://github.com/mrmlnc/fast-glob) for better accuracy:\n*\n* - Doesn't necessarily return `false` on patterns that include `\\`.\n* - Returns `true` if the pattern includes parentheses, regardless of them representing one single pattern or not.\n* - Returns `true` for unfinished glob extensions i.e. `(h`, `+(h`.\n* - Returns `true` for unfinished brace expansions as long as they include `,` or `..`.\n*\n* @see {@link https://superchupu.dev/tinyglobby/documentation#isDynamicPattern}\n*/\nfunction isDynamicPattern(pattern, options) {\n\tif ((options === null || options === void 0 ? void 0 : options.caseSensitiveMatch) === false) return true;\n\tconst scan = picomatch.scan(pattern);\n\treturn scan.isGlob || scan.negated;\n}\nfunction log(...tasks) {\n\tconsole.log(`[tinyglobby ${(/* @__PURE__ */ new Date()).toLocaleTimeString(\"es\")}]`, ...tasks);\n}\n\n//#endregion\n//#region src/index.ts\nconst PARENT_DIRECTORY = /^(\\/?\\.\\.)+/;\nconst ESCAPING_BACKSLASHES = /\\\\(?=[()[\\]{}!*+?@|])/g;\nconst BACKSLASHES = /\\\\/g;\nfunction normalizePattern(pattern, expandDirectories, cwd, props, isIgnore) {\n\tlet result = pattern;\n\tif (pattern.endsWith(\"/\")) result = pattern.slice(0, -1);\n\tif (!result.endsWith(\"*\") && expandDirectories) result += \"/**\";\n\tconst escapedCwd = escapePath(cwd);\n\tif (path.isAbsolute(result.replace(ESCAPING_BACKSLASHES, \"\"))) result = posix.relative(escapedCwd, result);\n\telse result = posix.normalize(result);\n\tconst parentDirectoryMatch = PARENT_DIRECTORY.exec(result);\n\tconst parts = splitPattern(result);\n\tif (parentDirectoryMatch === null || parentDirectoryMatch === void 0 ? void 0 : parentDirectoryMatch[0]) {\n\t\tconst n = (parentDirectoryMatch[0].length + 1) / 3;\n\t\tlet i = 0;\n\t\tconst cwdParts = escapedCwd.split(\"/\");\n\t\twhile (i < n && parts[i + n] === cwdParts[cwdParts.length + i - n]) {\n\t\t\tresult = result.slice(0, (n - i - 1) * 3) + result.slice((n - i) * 3 + parts[i + n].length + 1) || \".\";\n\t\t\ti++;\n\t\t}\n\t\tconst potentialRoot = posix.join(cwd, parentDirectoryMatch[0].slice(i * 3));\n\t\tif (!potentialRoot.startsWith(\".\") && props.root.length > potentialRoot.length) {\n\t\t\tprops.root = potentialRoot;\n\t\t\tprops.depthOffset = -n + i;\n\t\t}\n\t}\n\tif (!isIgnore && props.depthOffset >= 0) {\n\t\tvar _props$commonPath;\n\t\t(_props$commonPath = props.commonPath) !== null && _props$commonPath !== void 0 || (props.commonPath = parts);\n\t\tconst newCommonPath = [];\n\t\tconst length = Math.min(props.commonPath.length, parts.length);\n\t\tfor (let i = 0; i < length; i++) {\n\t\t\tconst part = parts[i];\n\t\t\tif (part === \"**\" && !parts[i + 1]) {\n\t\t\t\tnewCommonPath.pop();\n\t\t\t\tbreak;\n\t\t\t}\n\t\t\tif (part !== props.commonPath[i] || isDynamicPattern(part) || i === parts.length - 1) break;\n\t\t\tnewCommonPath.push(part);\n\t\t}\n\t\tprops.depthOffset = newCommonPath.length;\n\t\tprops.commonPath = newCommonPath;\n\t\tprops.root = newCommonPath.length > 0 ? posix.join(cwd, ...newCommonPath) : cwd;\n\t}\n\treturn result;\n}\nfunction processPatterns({ patterns = [\"**/*\"], ignore = [], expandDirectories = true }, cwd, props) {\n\tif (typeof patterns === \"string\") patterns = [patterns];\n\tif (typeof ignore === \"string\") ignore = [ignore];\n\tconst matchPatterns = [];\n\tconst ignorePatterns = [];\n\tfor (const pattern of ignore) {\n\t\tif (!pattern) continue;\n\t\tif (pattern[0] !== \"!\" || pattern[1] === \"(\") ignorePatterns.push(normalizePattern(pattern, expandDirectories, cwd, props, true));\n\t}\n\tfor (const pattern of patterns) {\n\t\tif (!pattern) continue;\n\t\tif (pattern[0] !== \"!\" || pattern[1] === \"(\") matchPatterns.push(normalizePattern(pattern, expandDirectories, cwd, props, false));\n\t\telse if (pattern[1] !== \"!\" || pattern[2] === \"(\") ignorePatterns.push(normalizePattern(pattern.slice(1), expandDirectories, cwd, props, true));\n\t}\n\treturn {\n\t\tmatch: matchPatterns,\n\t\tignore: ignorePatterns\n\t};\n}\nfunction formatPaths(paths, relative) {\n\tfor (let i = paths.length - 1; i >= 0; i--) {\n\t\tconst path$1 = paths[i];\n\t\tpaths[i] = relative(path$1);\n\t}\n\treturn paths;\n}\nfunction normalizeCwd(cwd) {\n\tif (!cwd) return process.cwd().replace(BACKSLASHES, \"/\");\n\tif (cwd instanceof URL) return fileURLToPath(cwd).replace(BACKSLASHES, \"/\");\n\treturn path.resolve(cwd).replace(BACKSLASHES, \"/\");\n}\nfunction getCrawler(patterns, inputOptions = {}) {\n\tconst options = process.env.TINYGLOBBY_DEBUG ? {\n\t\t...inputOptions,\n\t\tdebug: true\n\t} : inputOptions;\n\tconst cwd = normalizeCwd(options.cwd);\n\tif (options.debug) log(\"globbing with:\", {\n\t\tpatterns,\n\t\toptions,\n\t\tcwd\n\t});\n\tif (Array.isArray(patterns) && patterns.length === 0) return [{\n\t\tsync: () => [],\n\t\twithPromise: async () => []\n\t}, false];\n\tconst props = {\n\t\troot: cwd,\n\t\tcommonPath: null,\n\t\tdepthOffset: 0\n\t};\n\tconst processed = processPatterns({\n\t\t...options,\n\t\tpatterns\n\t}, cwd, props);\n\tif (options.debug) log(\"internal processing patterns:\", processed);\n\tconst matchOptions = {\n\t\tdot: options.dot,\n\t\tnobrace: options.braceExpansion === false,\n\t\tnocase: options.caseSensitiveMatch === false,\n\t\tnoextglob: options.extglob === false,\n\t\tnoglobstar: options.globstar === false,\n\t\tposix: true\n\t};\n\tconst matcher = picomatch(processed.match, {\n\t\t...matchOptions,\n\t\tignore: processed.ignore\n\t});\n\tconst ignore = picomatch(processed.ignore, matchOptions);\n\tconst partialMatcher = getPartialMatcher(processed.match, matchOptions);\n\tconst format = buildFormat(cwd, props.root, options.absolute);\n\tconst formatExclude = options.absolute ? format : buildFormat(cwd, props.root, true);\n\tconst fdirOptions = {\n\t\tfilters: [options.debug ? (p, isDirectory) => {\n\t\t\tconst path$1 = format(p, isDirectory);\n\t\t\tconst matches = matcher(path$1);\n\t\t\tif (matches) log(`matched ${path$1}`);\n\t\t\treturn matches;\n\t\t} : (p, isDirectory) => matcher(format(p, isDirectory))],\n\t\texclude: options.debug ? (_, p) => {\n\t\t\tconst relativePath = formatExclude(p, true);\n\t\t\tconst skipped = relativePath !== \".\" && !partialMatcher(relativePath) || ignore(relativePath);\n\t\t\tif (skipped) log(`skipped ${p}`);\n\t\t\telse log(`crawling ${p}`);\n\t\t\treturn skipped;\n\t\t} : (_, p) => {\n\t\t\tconst relativePath = formatExclude(p, true);\n\t\t\treturn relativePath !== \".\" && !partialMatcher(relativePath) || ignore(relativePath);\n\t\t},\n\t\tfs: options.fs ? {\n\t\t\treaddir: options.fs.readdir || nativeFs.readdir,\n\t\t\treaddirSync: options.fs.readdirSync || nativeFs.readdirSync,\n\t\t\trealpath: options.fs.realpath || nativeFs.realpath,\n\t\t\trealpathSync: options.fs.realpathSync || nativeFs.realpathSync,\n\t\t\tstat: options.fs.stat || nativeFs.stat,\n\t\t\tstatSync: options.fs.statSync || nativeFs.statSync\n\t\t} : void 0,\n\t\tpathSeparator: \"/\",\n\t\trelativePaths: true,\n\t\tresolveSymlinks: true,\n\t\tsignal: options.signal\n\t};\n\tif (options.deep !== void 0) fdirOptions.maxDepth = Math.round(options.deep - props.depthOffset);\n\tif (options.absolute) {\n\t\tfdirOptions.relativePaths = false;\n\t\tfdirOptions.resolvePaths = true;\n\t\tfdirOptions.includeBasePath = true;\n\t}\n\tif (options.followSymbolicLinks === false) {\n\t\tfdirOptions.resolveSymlinks = false;\n\t\tfdirOptions.excludeSymlinks = true;\n\t}\n\tif (options.onlyDirectories) {\n\t\tfdirOptions.excludeFiles = true;\n\t\tfdirOptions.includeDirs = true;\n\t} else if (options.onlyFiles === false) fdirOptions.includeDirs = true;\n\tprops.root = props.root.replace(BACKSLASHES, \"\");\n\tconst root = props.root;\n\tif (options.debug) log(\"internal properties:\", props);\n\tconst relative = cwd !== root && !options.absolute && buildRelative(cwd, props.root);\n\treturn [new fdir(fdirOptions).crawl(root), relative];\n}\nasync function glob(patternsOrOptions, options) {\n\tif (patternsOrOptions && (options === null || options === void 0 ? void 0 : options.patterns)) throw new Error(\"Cannot pass patterns as both an argument and an option\");\n\tconst isModern = isReadonlyArray(patternsOrOptions) || typeof patternsOrOptions === \"string\";\n\tconst opts = isModern ? options : patternsOrOptions;\n\tconst patterns = isModern ? patternsOrOptions : patternsOrOptions.patterns;\n\tconst [crawler, relative] = getCrawler(patterns, opts);\n\tif (!relative) return crawler.withPromise();\n\treturn formatPaths(await crawler.withPromise(), relative);\n}\nfunction globSync(patternsOrOptions, options) {\n\tif (patternsOrOptions && (options === null || options === void 0 ? void 0 : options.patterns)) throw new Error(\"Cannot pass patterns as both an argument and an option\");\n\tconst isModern = isReadonlyArray(patternsOrOptions) || typeof patternsOrOptions === \"string\";\n\tconst opts = isModern ? options : patternsOrOptions;\n\tconst patterns = isModern ? patternsOrOptions : patternsOrOptions.patterns;\n\tconst [crawler, relative] = getCrawler(patterns, opts);\n\tif (!relative) return crawler.sync();\n\treturn formatPaths(crawler.sync(), relative);\n}\n\n//#endregion\nexport { convertPathToPattern, escapePath, glob, globSync, isDynamicPattern };"],"x_google_ignoreList":[0],"mappings":"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"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@powerlines/plugin-content-collections",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.327",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "A Powerlines plugin to generate project code using Content Collections.",
|
|
6
6
|
"repository": {
|
|
@@ -145,14 +145,14 @@
|
|
|
145
145
|
"@stryke/types": "^0.10.50",
|
|
146
146
|
"defu": "^6.1.4",
|
|
147
147
|
"pluralize": "^8.0.0",
|
|
148
|
-
"powerlines": "^0.40.
|
|
148
|
+
"powerlines": "^0.40.14"
|
|
149
149
|
},
|
|
150
150
|
"devDependencies": {
|
|
151
|
-
"@powerlines/plugin-plugin": "^0.12.
|
|
151
|
+
"@powerlines/plugin-plugin": "^0.12.278",
|
|
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": "
|
|
157
|
+
"gitHead": "b46efba9e26b5ffdad2143baf6079762363d8a27"
|
|
158
158
|
}
|