@gnosticdev/hono-actions 1.2.2 → 1.2.4
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/index.js +8 -2332
- package/package.json +9 -4
package/dist/index.js
CHANGED
|
@@ -1,1547 +1,3 @@
|
|
|
1
|
-
var __create = Object.create;
|
|
2
|
-
var __defProp = Object.defineProperty;
|
|
3
|
-
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
4
|
-
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
5
|
-
var __getProtoOf = Object.getPrototypeOf;
|
|
6
|
-
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
7
|
-
var __commonJS = (cb, mod) => function __require2() {
|
|
8
|
-
return mod || (0, cb[__getOwnPropNames(cb)[0]])((mod = { exports: {} }).exports, mod), mod.exports;
|
|
9
|
-
};
|
|
10
|
-
var __copyProps = (to, from, except, desc) => {
|
|
11
|
-
if (from && typeof from === "object" || typeof from === "function") {
|
|
12
|
-
for (let key of __getOwnPropNames(from))
|
|
13
|
-
if (!__hasOwnProp.call(to, key) && key !== except)
|
|
14
|
-
__defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
|
|
15
|
-
}
|
|
16
|
-
return to;
|
|
17
|
-
};
|
|
18
|
-
var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__getProtoOf(mod)) : {}, __copyProps(
|
|
19
|
-
// If the importer is in node compatibility mode or this is not an ESM
|
|
20
|
-
// file that has been converted to a CommonJS file using a Babel-
|
|
21
|
-
// compatible transform (i.e. "__esModule" has not been set), then set
|
|
22
|
-
// "default" to the CommonJS "module.exports" for node compatibility.
|
|
23
|
-
isNodeMode || !mod || !mod.__esModule ? __defProp(target, "default", { value: mod, enumerable: true }) : target,
|
|
24
|
-
mod
|
|
25
|
-
));
|
|
26
|
-
|
|
27
|
-
// ../node_modules/picomatch/lib/constants.js
|
|
28
|
-
var require_constants = __commonJS({
|
|
29
|
-
"../node_modules/picomatch/lib/constants.js"(exports, module) {
|
|
30
|
-
"use strict";
|
|
31
|
-
var WIN_SLASH = "\\\\/";
|
|
32
|
-
var WIN_NO_SLASH = `[^${WIN_SLASH}]`;
|
|
33
|
-
var DOT_LITERAL = "\\.";
|
|
34
|
-
var PLUS_LITERAL = "\\+";
|
|
35
|
-
var QMARK_LITERAL = "\\?";
|
|
36
|
-
var SLASH_LITERAL = "\\/";
|
|
37
|
-
var ONE_CHAR = "(?=.)";
|
|
38
|
-
var QMARK = "[^/]";
|
|
39
|
-
var END_ANCHOR = `(?:${SLASH_LITERAL}|$)`;
|
|
40
|
-
var START_ANCHOR = `(?:^|${SLASH_LITERAL})`;
|
|
41
|
-
var DOTS_SLASH = `${DOT_LITERAL}{1,2}${END_ANCHOR}`;
|
|
42
|
-
var NO_DOT = `(?!${DOT_LITERAL})`;
|
|
43
|
-
var NO_DOTS = `(?!${START_ANCHOR}${DOTS_SLASH})`;
|
|
44
|
-
var NO_DOT_SLASH = `(?!${DOT_LITERAL}{0,1}${END_ANCHOR})`;
|
|
45
|
-
var NO_DOTS_SLASH = `(?!${DOTS_SLASH})`;
|
|
46
|
-
var QMARK_NO_DOT = `[^.${SLASH_LITERAL}]`;
|
|
47
|
-
var STAR = `${QMARK}*?`;
|
|
48
|
-
var SEP = "/";
|
|
49
|
-
var POSIX_CHARS = {
|
|
50
|
-
DOT_LITERAL,
|
|
51
|
-
PLUS_LITERAL,
|
|
52
|
-
QMARK_LITERAL,
|
|
53
|
-
SLASH_LITERAL,
|
|
54
|
-
ONE_CHAR,
|
|
55
|
-
QMARK,
|
|
56
|
-
END_ANCHOR,
|
|
57
|
-
DOTS_SLASH,
|
|
58
|
-
NO_DOT,
|
|
59
|
-
NO_DOTS,
|
|
60
|
-
NO_DOT_SLASH,
|
|
61
|
-
NO_DOTS_SLASH,
|
|
62
|
-
QMARK_NO_DOT,
|
|
63
|
-
STAR,
|
|
64
|
-
START_ANCHOR,
|
|
65
|
-
SEP
|
|
66
|
-
};
|
|
67
|
-
var WINDOWS_CHARS = {
|
|
68
|
-
...POSIX_CHARS,
|
|
69
|
-
SLASH_LITERAL: `[${WIN_SLASH}]`,
|
|
70
|
-
QMARK: WIN_NO_SLASH,
|
|
71
|
-
STAR: `${WIN_NO_SLASH}*?`,
|
|
72
|
-
DOTS_SLASH: `${DOT_LITERAL}{1,2}(?:[${WIN_SLASH}]|$)`,
|
|
73
|
-
NO_DOT: `(?!${DOT_LITERAL})`,
|
|
74
|
-
NO_DOTS: `(?!(?:^|[${WIN_SLASH}])${DOT_LITERAL}{1,2}(?:[${WIN_SLASH}]|$))`,
|
|
75
|
-
NO_DOT_SLASH: `(?!${DOT_LITERAL}{0,1}(?:[${WIN_SLASH}]|$))`,
|
|
76
|
-
NO_DOTS_SLASH: `(?!${DOT_LITERAL}{1,2}(?:[${WIN_SLASH}]|$))`,
|
|
77
|
-
QMARK_NO_DOT: `[^.${WIN_SLASH}]`,
|
|
78
|
-
START_ANCHOR: `(?:^|[${WIN_SLASH}])`,
|
|
79
|
-
END_ANCHOR: `(?:[${WIN_SLASH}]|$)`,
|
|
80
|
-
SEP: "\\"
|
|
81
|
-
};
|
|
82
|
-
var POSIX_REGEX_SOURCE = {
|
|
83
|
-
alnum: "a-zA-Z0-9",
|
|
84
|
-
alpha: "a-zA-Z",
|
|
85
|
-
ascii: "\\x00-\\x7F",
|
|
86
|
-
blank: " \\t",
|
|
87
|
-
cntrl: "\\x00-\\x1F\\x7F",
|
|
88
|
-
digit: "0-9",
|
|
89
|
-
graph: "\\x21-\\x7E",
|
|
90
|
-
lower: "a-z",
|
|
91
|
-
print: "\\x20-\\x7E ",
|
|
92
|
-
punct: "\\-!\"#$%&'()\\*+,./:;<=>?@[\\]^_`{|}~",
|
|
93
|
-
space: " \\t\\r\\n\\v\\f",
|
|
94
|
-
upper: "A-Z",
|
|
95
|
-
word: "A-Za-z0-9_",
|
|
96
|
-
xdigit: "A-Fa-f0-9"
|
|
97
|
-
};
|
|
98
|
-
module.exports = {
|
|
99
|
-
MAX_LENGTH: 1024 * 64,
|
|
100
|
-
POSIX_REGEX_SOURCE,
|
|
101
|
-
// regular expressions
|
|
102
|
-
REGEX_BACKSLASH: /\\(?![*+?^${}(|)[\]])/g,
|
|
103
|
-
REGEX_NON_SPECIAL_CHARS: /^[^@![\].,$*+?^{}()|\\/]+/,
|
|
104
|
-
REGEX_SPECIAL_CHARS: /[-*+?.^${}(|)[\]]/,
|
|
105
|
-
REGEX_SPECIAL_CHARS_BACKREF: /(\\?)((\W)(\3*))/g,
|
|
106
|
-
REGEX_SPECIAL_CHARS_GLOBAL: /([-*+?.^${}(|)[\]])/g,
|
|
107
|
-
REGEX_REMOVE_BACKSLASH: /(?:\[.*?[^\\]\]|\\(?=.))/g,
|
|
108
|
-
// Replace globs with equivalent patterns to reduce parsing time.
|
|
109
|
-
REPLACEMENTS: {
|
|
110
|
-
__proto__: null,
|
|
111
|
-
"***": "*",
|
|
112
|
-
"**/**": "**",
|
|
113
|
-
"**/**/**": "**"
|
|
114
|
-
},
|
|
115
|
-
// Digits
|
|
116
|
-
CHAR_0: 48,
|
|
117
|
-
/* 0 */
|
|
118
|
-
CHAR_9: 57,
|
|
119
|
-
/* 9 */
|
|
120
|
-
// Alphabet chars.
|
|
121
|
-
CHAR_UPPERCASE_A: 65,
|
|
122
|
-
/* A */
|
|
123
|
-
CHAR_LOWERCASE_A: 97,
|
|
124
|
-
/* a */
|
|
125
|
-
CHAR_UPPERCASE_Z: 90,
|
|
126
|
-
/* Z */
|
|
127
|
-
CHAR_LOWERCASE_Z: 122,
|
|
128
|
-
/* z */
|
|
129
|
-
CHAR_LEFT_PARENTHESES: 40,
|
|
130
|
-
/* ( */
|
|
131
|
-
CHAR_RIGHT_PARENTHESES: 41,
|
|
132
|
-
/* ) */
|
|
133
|
-
CHAR_ASTERISK: 42,
|
|
134
|
-
/* * */
|
|
135
|
-
// Non-alphabetic chars.
|
|
136
|
-
CHAR_AMPERSAND: 38,
|
|
137
|
-
/* & */
|
|
138
|
-
CHAR_AT: 64,
|
|
139
|
-
/* @ */
|
|
140
|
-
CHAR_BACKWARD_SLASH: 92,
|
|
141
|
-
/* \ */
|
|
142
|
-
CHAR_CARRIAGE_RETURN: 13,
|
|
143
|
-
/* \r */
|
|
144
|
-
CHAR_CIRCUMFLEX_ACCENT: 94,
|
|
145
|
-
/* ^ */
|
|
146
|
-
CHAR_COLON: 58,
|
|
147
|
-
/* : */
|
|
148
|
-
CHAR_COMMA: 44,
|
|
149
|
-
/* , */
|
|
150
|
-
CHAR_DOT: 46,
|
|
151
|
-
/* . */
|
|
152
|
-
CHAR_DOUBLE_QUOTE: 34,
|
|
153
|
-
/* " */
|
|
154
|
-
CHAR_EQUAL: 61,
|
|
155
|
-
/* = */
|
|
156
|
-
CHAR_EXCLAMATION_MARK: 33,
|
|
157
|
-
/* ! */
|
|
158
|
-
CHAR_FORM_FEED: 12,
|
|
159
|
-
/* \f */
|
|
160
|
-
CHAR_FORWARD_SLASH: 47,
|
|
161
|
-
/* / */
|
|
162
|
-
CHAR_GRAVE_ACCENT: 96,
|
|
163
|
-
/* ` */
|
|
164
|
-
CHAR_HASH: 35,
|
|
165
|
-
/* # */
|
|
166
|
-
CHAR_HYPHEN_MINUS: 45,
|
|
167
|
-
/* - */
|
|
168
|
-
CHAR_LEFT_ANGLE_BRACKET: 60,
|
|
169
|
-
/* < */
|
|
170
|
-
CHAR_LEFT_CURLY_BRACE: 123,
|
|
171
|
-
/* { */
|
|
172
|
-
CHAR_LEFT_SQUARE_BRACKET: 91,
|
|
173
|
-
/* [ */
|
|
174
|
-
CHAR_LINE_FEED: 10,
|
|
175
|
-
/* \n */
|
|
176
|
-
CHAR_NO_BREAK_SPACE: 160,
|
|
177
|
-
/* \u00A0 */
|
|
178
|
-
CHAR_PERCENT: 37,
|
|
179
|
-
/* % */
|
|
180
|
-
CHAR_PLUS: 43,
|
|
181
|
-
/* + */
|
|
182
|
-
CHAR_QUESTION_MARK: 63,
|
|
183
|
-
/* ? */
|
|
184
|
-
CHAR_RIGHT_ANGLE_BRACKET: 62,
|
|
185
|
-
/* > */
|
|
186
|
-
CHAR_RIGHT_CURLY_BRACE: 125,
|
|
187
|
-
/* } */
|
|
188
|
-
CHAR_RIGHT_SQUARE_BRACKET: 93,
|
|
189
|
-
/* ] */
|
|
190
|
-
CHAR_SEMICOLON: 59,
|
|
191
|
-
/* ; */
|
|
192
|
-
CHAR_SINGLE_QUOTE: 39,
|
|
193
|
-
/* ' */
|
|
194
|
-
CHAR_SPACE: 32,
|
|
195
|
-
/* */
|
|
196
|
-
CHAR_TAB: 9,
|
|
197
|
-
/* \t */
|
|
198
|
-
CHAR_UNDERSCORE: 95,
|
|
199
|
-
/* _ */
|
|
200
|
-
CHAR_VERTICAL_LINE: 124,
|
|
201
|
-
/* | */
|
|
202
|
-
CHAR_ZERO_WIDTH_NOBREAK_SPACE: 65279,
|
|
203
|
-
/* \uFEFF */
|
|
204
|
-
/**
|
|
205
|
-
* Create EXTGLOB_CHARS
|
|
206
|
-
*/
|
|
207
|
-
extglobChars(chars) {
|
|
208
|
-
return {
|
|
209
|
-
"!": { type: "negate", open: "(?:(?!(?:", close: `))${chars.STAR})` },
|
|
210
|
-
"?": { type: "qmark", open: "(?:", close: ")?" },
|
|
211
|
-
"+": { type: "plus", open: "(?:", close: ")+" },
|
|
212
|
-
"*": { type: "star", open: "(?:", close: ")*" },
|
|
213
|
-
"@": { type: "at", open: "(?:", close: ")" }
|
|
214
|
-
};
|
|
215
|
-
},
|
|
216
|
-
/**
|
|
217
|
-
* Create GLOB_CHARS
|
|
218
|
-
*/
|
|
219
|
-
globChars(win32) {
|
|
220
|
-
return win32 === true ? WINDOWS_CHARS : POSIX_CHARS;
|
|
221
|
-
}
|
|
222
|
-
};
|
|
223
|
-
}
|
|
224
|
-
});
|
|
225
|
-
|
|
226
|
-
// ../node_modules/picomatch/lib/utils.js
|
|
227
|
-
var require_utils = __commonJS({
|
|
228
|
-
"../node_modules/picomatch/lib/utils.js"(exports) {
|
|
229
|
-
"use strict";
|
|
230
|
-
var {
|
|
231
|
-
REGEX_BACKSLASH,
|
|
232
|
-
REGEX_REMOVE_BACKSLASH,
|
|
233
|
-
REGEX_SPECIAL_CHARS,
|
|
234
|
-
REGEX_SPECIAL_CHARS_GLOBAL
|
|
235
|
-
} = require_constants();
|
|
236
|
-
exports.isObject = (val) => val !== null && typeof val === "object" && !Array.isArray(val);
|
|
237
|
-
exports.hasRegexChars = (str) => REGEX_SPECIAL_CHARS.test(str);
|
|
238
|
-
exports.isRegexChar = (str) => str.length === 1 && exports.hasRegexChars(str);
|
|
239
|
-
exports.escapeRegex = (str) => str.replace(REGEX_SPECIAL_CHARS_GLOBAL, "\\$1");
|
|
240
|
-
exports.toPosixSlashes = (str) => str.replace(REGEX_BACKSLASH, "/");
|
|
241
|
-
exports.isWindows = () => {
|
|
242
|
-
if (typeof navigator !== "undefined" && navigator.platform) {
|
|
243
|
-
const platform = navigator.platform.toLowerCase();
|
|
244
|
-
return platform === "win32" || platform === "windows";
|
|
245
|
-
}
|
|
246
|
-
if (typeof process !== "undefined" && process.platform) {
|
|
247
|
-
return process.platform === "win32";
|
|
248
|
-
}
|
|
249
|
-
return false;
|
|
250
|
-
};
|
|
251
|
-
exports.removeBackslashes = (str) => {
|
|
252
|
-
return str.replace(REGEX_REMOVE_BACKSLASH, (match) => {
|
|
253
|
-
return match === "\\" ? "" : match;
|
|
254
|
-
});
|
|
255
|
-
};
|
|
256
|
-
exports.escapeLast = (input, char, lastIdx) => {
|
|
257
|
-
const idx = input.lastIndexOf(char, lastIdx);
|
|
258
|
-
if (idx === -1) return input;
|
|
259
|
-
if (input[idx - 1] === "\\") return exports.escapeLast(input, char, idx - 1);
|
|
260
|
-
return `${input.slice(0, idx)}\\${input.slice(idx)}`;
|
|
261
|
-
};
|
|
262
|
-
exports.removePrefix = (input, state = {}) => {
|
|
263
|
-
let output = input;
|
|
264
|
-
if (output.startsWith("./")) {
|
|
265
|
-
output = output.slice(2);
|
|
266
|
-
state.prefix = "./";
|
|
267
|
-
}
|
|
268
|
-
return output;
|
|
269
|
-
};
|
|
270
|
-
exports.wrapOutput = (input, state = {}, options = {}) => {
|
|
271
|
-
const prepend = options.contains ? "" : "^";
|
|
272
|
-
const append = options.contains ? "" : "$";
|
|
273
|
-
let output = `${prepend}(?:${input})${append}`;
|
|
274
|
-
if (state.negated === true) {
|
|
275
|
-
output = `(?:^(?!${output}).*$)`;
|
|
276
|
-
}
|
|
277
|
-
return output;
|
|
278
|
-
};
|
|
279
|
-
exports.basename = (path3, { windows } = {}) => {
|
|
280
|
-
const segs = path3.split(windows ? /[\\/]/ : "/");
|
|
281
|
-
const last = segs[segs.length - 1];
|
|
282
|
-
if (last === "") {
|
|
283
|
-
return segs[segs.length - 2];
|
|
284
|
-
}
|
|
285
|
-
return last;
|
|
286
|
-
};
|
|
287
|
-
}
|
|
288
|
-
});
|
|
289
|
-
|
|
290
|
-
// ../node_modules/picomatch/lib/scan.js
|
|
291
|
-
var require_scan = __commonJS({
|
|
292
|
-
"../node_modules/picomatch/lib/scan.js"(exports, module) {
|
|
293
|
-
"use strict";
|
|
294
|
-
var utils = require_utils();
|
|
295
|
-
var {
|
|
296
|
-
CHAR_ASTERISK,
|
|
297
|
-
/* * */
|
|
298
|
-
CHAR_AT,
|
|
299
|
-
/* @ */
|
|
300
|
-
CHAR_BACKWARD_SLASH,
|
|
301
|
-
/* \ */
|
|
302
|
-
CHAR_COMMA,
|
|
303
|
-
/* , */
|
|
304
|
-
CHAR_DOT,
|
|
305
|
-
/* . */
|
|
306
|
-
CHAR_EXCLAMATION_MARK,
|
|
307
|
-
/* ! */
|
|
308
|
-
CHAR_FORWARD_SLASH,
|
|
309
|
-
/* / */
|
|
310
|
-
CHAR_LEFT_CURLY_BRACE,
|
|
311
|
-
/* { */
|
|
312
|
-
CHAR_LEFT_PARENTHESES,
|
|
313
|
-
/* ( */
|
|
314
|
-
CHAR_LEFT_SQUARE_BRACKET,
|
|
315
|
-
/* [ */
|
|
316
|
-
CHAR_PLUS,
|
|
317
|
-
/* + */
|
|
318
|
-
CHAR_QUESTION_MARK,
|
|
319
|
-
/* ? */
|
|
320
|
-
CHAR_RIGHT_CURLY_BRACE,
|
|
321
|
-
/* } */
|
|
322
|
-
CHAR_RIGHT_PARENTHESES,
|
|
323
|
-
/* ) */
|
|
324
|
-
CHAR_RIGHT_SQUARE_BRACKET
|
|
325
|
-
/* ] */
|
|
326
|
-
} = require_constants();
|
|
327
|
-
var isPathSeparator = (code) => {
|
|
328
|
-
return code === CHAR_FORWARD_SLASH || code === CHAR_BACKWARD_SLASH;
|
|
329
|
-
};
|
|
330
|
-
var depth = (token) => {
|
|
331
|
-
if (token.isPrefix !== true) {
|
|
332
|
-
token.depth = token.isGlobstar ? Infinity : 1;
|
|
333
|
-
}
|
|
334
|
-
};
|
|
335
|
-
var scan = (input, options) => {
|
|
336
|
-
const opts = options || {};
|
|
337
|
-
const length = input.length - 1;
|
|
338
|
-
const scanToEnd = opts.parts === true || opts.scanToEnd === true;
|
|
339
|
-
const slashes = [];
|
|
340
|
-
const tokens = [];
|
|
341
|
-
const parts = [];
|
|
342
|
-
let str = input;
|
|
343
|
-
let index = -1;
|
|
344
|
-
let start = 0;
|
|
345
|
-
let lastIndex = 0;
|
|
346
|
-
let isBrace = false;
|
|
347
|
-
let isBracket = false;
|
|
348
|
-
let isGlob = false;
|
|
349
|
-
let isExtglob = false;
|
|
350
|
-
let isGlobstar = false;
|
|
351
|
-
let braceEscaped = false;
|
|
352
|
-
let backslashes = false;
|
|
353
|
-
let negated = false;
|
|
354
|
-
let negatedExtglob = false;
|
|
355
|
-
let finished = false;
|
|
356
|
-
let braces = 0;
|
|
357
|
-
let prev;
|
|
358
|
-
let code;
|
|
359
|
-
let token = { value: "", depth: 0, isGlob: false };
|
|
360
|
-
const eos = () => index >= length;
|
|
361
|
-
const peek = () => str.charCodeAt(index + 1);
|
|
362
|
-
const advance = () => {
|
|
363
|
-
prev = code;
|
|
364
|
-
return str.charCodeAt(++index);
|
|
365
|
-
};
|
|
366
|
-
while (index < length) {
|
|
367
|
-
code = advance();
|
|
368
|
-
let next;
|
|
369
|
-
if (code === CHAR_BACKWARD_SLASH) {
|
|
370
|
-
backslashes = token.backslashes = true;
|
|
371
|
-
code = advance();
|
|
372
|
-
if (code === CHAR_LEFT_CURLY_BRACE) {
|
|
373
|
-
braceEscaped = true;
|
|
374
|
-
}
|
|
375
|
-
continue;
|
|
376
|
-
}
|
|
377
|
-
if (braceEscaped === true || code === CHAR_LEFT_CURLY_BRACE) {
|
|
378
|
-
braces++;
|
|
379
|
-
while (eos() !== true && (code = advance())) {
|
|
380
|
-
if (code === CHAR_BACKWARD_SLASH) {
|
|
381
|
-
backslashes = token.backslashes = true;
|
|
382
|
-
advance();
|
|
383
|
-
continue;
|
|
384
|
-
}
|
|
385
|
-
if (code === CHAR_LEFT_CURLY_BRACE) {
|
|
386
|
-
braces++;
|
|
387
|
-
continue;
|
|
388
|
-
}
|
|
389
|
-
if (braceEscaped !== true && code === CHAR_DOT && (code = advance()) === CHAR_DOT) {
|
|
390
|
-
isBrace = token.isBrace = true;
|
|
391
|
-
isGlob = token.isGlob = true;
|
|
392
|
-
finished = true;
|
|
393
|
-
if (scanToEnd === true) {
|
|
394
|
-
continue;
|
|
395
|
-
}
|
|
396
|
-
break;
|
|
397
|
-
}
|
|
398
|
-
if (braceEscaped !== true && code === CHAR_COMMA) {
|
|
399
|
-
isBrace = token.isBrace = true;
|
|
400
|
-
isGlob = token.isGlob = true;
|
|
401
|
-
finished = true;
|
|
402
|
-
if (scanToEnd === true) {
|
|
403
|
-
continue;
|
|
404
|
-
}
|
|
405
|
-
break;
|
|
406
|
-
}
|
|
407
|
-
if (code === CHAR_RIGHT_CURLY_BRACE) {
|
|
408
|
-
braces--;
|
|
409
|
-
if (braces === 0) {
|
|
410
|
-
braceEscaped = false;
|
|
411
|
-
isBrace = token.isBrace = true;
|
|
412
|
-
finished = true;
|
|
413
|
-
break;
|
|
414
|
-
}
|
|
415
|
-
}
|
|
416
|
-
}
|
|
417
|
-
if (scanToEnd === true) {
|
|
418
|
-
continue;
|
|
419
|
-
}
|
|
420
|
-
break;
|
|
421
|
-
}
|
|
422
|
-
if (code === CHAR_FORWARD_SLASH) {
|
|
423
|
-
slashes.push(index);
|
|
424
|
-
tokens.push(token);
|
|
425
|
-
token = { value: "", depth: 0, isGlob: false };
|
|
426
|
-
if (finished === true) continue;
|
|
427
|
-
if (prev === CHAR_DOT && index === start + 1) {
|
|
428
|
-
start += 2;
|
|
429
|
-
continue;
|
|
430
|
-
}
|
|
431
|
-
lastIndex = index + 1;
|
|
432
|
-
continue;
|
|
433
|
-
}
|
|
434
|
-
if (opts.noext !== true) {
|
|
435
|
-
const isExtglobChar = code === CHAR_PLUS || code === CHAR_AT || code === CHAR_ASTERISK || code === CHAR_QUESTION_MARK || code === CHAR_EXCLAMATION_MARK;
|
|
436
|
-
if (isExtglobChar === true && peek() === CHAR_LEFT_PARENTHESES) {
|
|
437
|
-
isGlob = token.isGlob = true;
|
|
438
|
-
isExtglob = token.isExtglob = true;
|
|
439
|
-
finished = true;
|
|
440
|
-
if (code === CHAR_EXCLAMATION_MARK && index === start) {
|
|
441
|
-
negatedExtglob = true;
|
|
442
|
-
}
|
|
443
|
-
if (scanToEnd === true) {
|
|
444
|
-
while (eos() !== true && (code = advance())) {
|
|
445
|
-
if (code === CHAR_BACKWARD_SLASH) {
|
|
446
|
-
backslashes = token.backslashes = true;
|
|
447
|
-
code = advance();
|
|
448
|
-
continue;
|
|
449
|
-
}
|
|
450
|
-
if (code === CHAR_RIGHT_PARENTHESES) {
|
|
451
|
-
isGlob = token.isGlob = true;
|
|
452
|
-
finished = true;
|
|
453
|
-
break;
|
|
454
|
-
}
|
|
455
|
-
}
|
|
456
|
-
continue;
|
|
457
|
-
}
|
|
458
|
-
break;
|
|
459
|
-
}
|
|
460
|
-
}
|
|
461
|
-
if (code === CHAR_ASTERISK) {
|
|
462
|
-
if (prev === CHAR_ASTERISK) isGlobstar = token.isGlobstar = true;
|
|
463
|
-
isGlob = token.isGlob = true;
|
|
464
|
-
finished = true;
|
|
465
|
-
if (scanToEnd === true) {
|
|
466
|
-
continue;
|
|
467
|
-
}
|
|
468
|
-
break;
|
|
469
|
-
}
|
|
470
|
-
if (code === CHAR_QUESTION_MARK) {
|
|
471
|
-
isGlob = token.isGlob = true;
|
|
472
|
-
finished = true;
|
|
473
|
-
if (scanToEnd === true) {
|
|
474
|
-
continue;
|
|
475
|
-
}
|
|
476
|
-
break;
|
|
477
|
-
}
|
|
478
|
-
if (code === CHAR_LEFT_SQUARE_BRACKET) {
|
|
479
|
-
while (eos() !== true && (next = advance())) {
|
|
480
|
-
if (next === CHAR_BACKWARD_SLASH) {
|
|
481
|
-
backslashes = token.backslashes = true;
|
|
482
|
-
advance();
|
|
483
|
-
continue;
|
|
484
|
-
}
|
|
485
|
-
if (next === CHAR_RIGHT_SQUARE_BRACKET) {
|
|
486
|
-
isBracket = token.isBracket = true;
|
|
487
|
-
isGlob = token.isGlob = true;
|
|
488
|
-
finished = true;
|
|
489
|
-
break;
|
|
490
|
-
}
|
|
491
|
-
}
|
|
492
|
-
if (scanToEnd === true) {
|
|
493
|
-
continue;
|
|
494
|
-
}
|
|
495
|
-
break;
|
|
496
|
-
}
|
|
497
|
-
if (opts.nonegate !== true && code === CHAR_EXCLAMATION_MARK && index === start) {
|
|
498
|
-
negated = token.negated = true;
|
|
499
|
-
start++;
|
|
500
|
-
continue;
|
|
501
|
-
}
|
|
502
|
-
if (opts.noparen !== true && code === CHAR_LEFT_PARENTHESES) {
|
|
503
|
-
isGlob = token.isGlob = true;
|
|
504
|
-
if (scanToEnd === true) {
|
|
505
|
-
while (eos() !== true && (code = advance())) {
|
|
506
|
-
if (code === CHAR_LEFT_PARENTHESES) {
|
|
507
|
-
backslashes = token.backslashes = true;
|
|
508
|
-
code = advance();
|
|
509
|
-
continue;
|
|
510
|
-
}
|
|
511
|
-
if (code === CHAR_RIGHT_PARENTHESES) {
|
|
512
|
-
finished = true;
|
|
513
|
-
break;
|
|
514
|
-
}
|
|
515
|
-
}
|
|
516
|
-
continue;
|
|
517
|
-
}
|
|
518
|
-
break;
|
|
519
|
-
}
|
|
520
|
-
if (isGlob === true) {
|
|
521
|
-
finished = true;
|
|
522
|
-
if (scanToEnd === true) {
|
|
523
|
-
continue;
|
|
524
|
-
}
|
|
525
|
-
break;
|
|
526
|
-
}
|
|
527
|
-
}
|
|
528
|
-
if (opts.noext === true) {
|
|
529
|
-
isExtglob = false;
|
|
530
|
-
isGlob = false;
|
|
531
|
-
}
|
|
532
|
-
let base = str;
|
|
533
|
-
let prefix = "";
|
|
534
|
-
let glob2 = "";
|
|
535
|
-
if (start > 0) {
|
|
536
|
-
prefix = str.slice(0, start);
|
|
537
|
-
str = str.slice(start);
|
|
538
|
-
lastIndex -= start;
|
|
539
|
-
}
|
|
540
|
-
if (base && isGlob === true && lastIndex > 0) {
|
|
541
|
-
base = str.slice(0, lastIndex);
|
|
542
|
-
glob2 = str.slice(lastIndex);
|
|
543
|
-
} else if (isGlob === true) {
|
|
544
|
-
base = "";
|
|
545
|
-
glob2 = str;
|
|
546
|
-
} else {
|
|
547
|
-
base = str;
|
|
548
|
-
}
|
|
549
|
-
if (base && base !== "" && base !== "/" && base !== str) {
|
|
550
|
-
if (isPathSeparator(base.charCodeAt(base.length - 1))) {
|
|
551
|
-
base = base.slice(0, -1);
|
|
552
|
-
}
|
|
553
|
-
}
|
|
554
|
-
if (opts.unescape === true) {
|
|
555
|
-
if (glob2) glob2 = utils.removeBackslashes(glob2);
|
|
556
|
-
if (base && backslashes === true) {
|
|
557
|
-
base = utils.removeBackslashes(base);
|
|
558
|
-
}
|
|
559
|
-
}
|
|
560
|
-
const state = {
|
|
561
|
-
prefix,
|
|
562
|
-
input,
|
|
563
|
-
start,
|
|
564
|
-
base,
|
|
565
|
-
glob: glob2,
|
|
566
|
-
isBrace,
|
|
567
|
-
isBracket,
|
|
568
|
-
isGlob,
|
|
569
|
-
isExtglob,
|
|
570
|
-
isGlobstar,
|
|
571
|
-
negated,
|
|
572
|
-
negatedExtglob
|
|
573
|
-
};
|
|
574
|
-
if (opts.tokens === true) {
|
|
575
|
-
state.maxDepth = 0;
|
|
576
|
-
if (!isPathSeparator(code)) {
|
|
577
|
-
tokens.push(token);
|
|
578
|
-
}
|
|
579
|
-
state.tokens = tokens;
|
|
580
|
-
}
|
|
581
|
-
if (opts.parts === true || opts.tokens === true) {
|
|
582
|
-
let prevIndex;
|
|
583
|
-
for (let idx = 0; idx < slashes.length; idx++) {
|
|
584
|
-
const n = prevIndex ? prevIndex + 1 : start;
|
|
585
|
-
const i = slashes[idx];
|
|
586
|
-
const value = input.slice(n, i);
|
|
587
|
-
if (opts.tokens) {
|
|
588
|
-
if (idx === 0 && start !== 0) {
|
|
589
|
-
tokens[idx].isPrefix = true;
|
|
590
|
-
tokens[idx].value = prefix;
|
|
591
|
-
} else {
|
|
592
|
-
tokens[idx].value = value;
|
|
593
|
-
}
|
|
594
|
-
depth(tokens[idx]);
|
|
595
|
-
state.maxDepth += tokens[idx].depth;
|
|
596
|
-
}
|
|
597
|
-
if (idx !== 0 || value !== "") {
|
|
598
|
-
parts.push(value);
|
|
599
|
-
}
|
|
600
|
-
prevIndex = i;
|
|
601
|
-
}
|
|
602
|
-
if (prevIndex && prevIndex + 1 < input.length) {
|
|
603
|
-
const value = input.slice(prevIndex + 1);
|
|
604
|
-
parts.push(value);
|
|
605
|
-
if (opts.tokens) {
|
|
606
|
-
tokens[tokens.length - 1].value = value;
|
|
607
|
-
depth(tokens[tokens.length - 1]);
|
|
608
|
-
state.maxDepth += tokens[tokens.length - 1].depth;
|
|
609
|
-
}
|
|
610
|
-
}
|
|
611
|
-
state.slashes = slashes;
|
|
612
|
-
state.parts = parts;
|
|
613
|
-
}
|
|
614
|
-
return state;
|
|
615
|
-
};
|
|
616
|
-
module.exports = scan;
|
|
617
|
-
}
|
|
618
|
-
});
|
|
619
|
-
|
|
620
|
-
// ../node_modules/picomatch/lib/parse.js
|
|
621
|
-
var require_parse = __commonJS({
|
|
622
|
-
"../node_modules/picomatch/lib/parse.js"(exports, module) {
|
|
623
|
-
"use strict";
|
|
624
|
-
var constants = require_constants();
|
|
625
|
-
var utils = require_utils();
|
|
626
|
-
var {
|
|
627
|
-
MAX_LENGTH,
|
|
628
|
-
POSIX_REGEX_SOURCE,
|
|
629
|
-
REGEX_NON_SPECIAL_CHARS,
|
|
630
|
-
REGEX_SPECIAL_CHARS_BACKREF,
|
|
631
|
-
REPLACEMENTS
|
|
632
|
-
} = constants;
|
|
633
|
-
var expandRange = (args, options) => {
|
|
634
|
-
if (typeof options.expandRange === "function") {
|
|
635
|
-
return options.expandRange(...args, options);
|
|
636
|
-
}
|
|
637
|
-
args.sort();
|
|
638
|
-
const value = `[${args.join("-")}]`;
|
|
639
|
-
try {
|
|
640
|
-
new RegExp(value);
|
|
641
|
-
} catch (ex) {
|
|
642
|
-
return args.map((v) => utils.escapeRegex(v)).join("..");
|
|
643
|
-
}
|
|
644
|
-
return value;
|
|
645
|
-
};
|
|
646
|
-
var syntaxError = (type, char) => {
|
|
647
|
-
return `Missing ${type}: "${char}" - use "\\\\${char}" to match literal characters`;
|
|
648
|
-
};
|
|
649
|
-
var parse = (input, options) => {
|
|
650
|
-
if (typeof input !== "string") {
|
|
651
|
-
throw new TypeError("Expected a string");
|
|
652
|
-
}
|
|
653
|
-
input = REPLACEMENTS[input] || input;
|
|
654
|
-
const opts = { ...options };
|
|
655
|
-
const max = typeof opts.maxLength === "number" ? Math.min(MAX_LENGTH, opts.maxLength) : MAX_LENGTH;
|
|
656
|
-
let len = input.length;
|
|
657
|
-
if (len > max) {
|
|
658
|
-
throw new SyntaxError(`Input length: ${len}, exceeds maximum allowed length: ${max}`);
|
|
659
|
-
}
|
|
660
|
-
const bos = { type: "bos", value: "", output: opts.prepend || "" };
|
|
661
|
-
const tokens = [bos];
|
|
662
|
-
const capture = opts.capture ? "" : "?:";
|
|
663
|
-
const PLATFORM_CHARS = constants.globChars(opts.windows);
|
|
664
|
-
const EXTGLOB_CHARS = constants.extglobChars(PLATFORM_CHARS);
|
|
665
|
-
const {
|
|
666
|
-
DOT_LITERAL,
|
|
667
|
-
PLUS_LITERAL,
|
|
668
|
-
SLASH_LITERAL,
|
|
669
|
-
ONE_CHAR,
|
|
670
|
-
DOTS_SLASH,
|
|
671
|
-
NO_DOT,
|
|
672
|
-
NO_DOT_SLASH,
|
|
673
|
-
NO_DOTS_SLASH,
|
|
674
|
-
QMARK,
|
|
675
|
-
QMARK_NO_DOT,
|
|
676
|
-
STAR,
|
|
677
|
-
START_ANCHOR
|
|
678
|
-
} = PLATFORM_CHARS;
|
|
679
|
-
const globstar = (opts2) => {
|
|
680
|
-
return `(${capture}(?:(?!${START_ANCHOR}${opts2.dot ? DOTS_SLASH : DOT_LITERAL}).)*?)`;
|
|
681
|
-
};
|
|
682
|
-
const nodot = opts.dot ? "" : NO_DOT;
|
|
683
|
-
const qmarkNoDot = opts.dot ? QMARK : QMARK_NO_DOT;
|
|
684
|
-
let star = opts.bash === true ? globstar(opts) : STAR;
|
|
685
|
-
if (opts.capture) {
|
|
686
|
-
star = `(${star})`;
|
|
687
|
-
}
|
|
688
|
-
if (typeof opts.noext === "boolean") {
|
|
689
|
-
opts.noextglob = opts.noext;
|
|
690
|
-
}
|
|
691
|
-
const state = {
|
|
692
|
-
input,
|
|
693
|
-
index: -1,
|
|
694
|
-
start: 0,
|
|
695
|
-
dot: opts.dot === true,
|
|
696
|
-
consumed: "",
|
|
697
|
-
output: "",
|
|
698
|
-
prefix: "",
|
|
699
|
-
backtrack: false,
|
|
700
|
-
negated: false,
|
|
701
|
-
brackets: 0,
|
|
702
|
-
braces: 0,
|
|
703
|
-
parens: 0,
|
|
704
|
-
quotes: 0,
|
|
705
|
-
globstar: false,
|
|
706
|
-
tokens
|
|
707
|
-
};
|
|
708
|
-
input = utils.removePrefix(input, state);
|
|
709
|
-
len = input.length;
|
|
710
|
-
const extglobs = [];
|
|
711
|
-
const braces = [];
|
|
712
|
-
const stack = [];
|
|
713
|
-
let prev = bos;
|
|
714
|
-
let value;
|
|
715
|
-
const eos = () => state.index === len - 1;
|
|
716
|
-
const peek = state.peek = (n = 1) => input[state.index + n];
|
|
717
|
-
const advance = state.advance = () => input[++state.index] || "";
|
|
718
|
-
const remaining = () => input.slice(state.index + 1);
|
|
719
|
-
const consume = (value2 = "", num = 0) => {
|
|
720
|
-
state.consumed += value2;
|
|
721
|
-
state.index += num;
|
|
722
|
-
};
|
|
723
|
-
const append = (token) => {
|
|
724
|
-
state.output += token.output != null ? token.output : token.value;
|
|
725
|
-
consume(token.value);
|
|
726
|
-
};
|
|
727
|
-
const negate = () => {
|
|
728
|
-
let count = 1;
|
|
729
|
-
while (peek() === "!" && (peek(2) !== "(" || peek(3) === "?")) {
|
|
730
|
-
advance();
|
|
731
|
-
state.start++;
|
|
732
|
-
count++;
|
|
733
|
-
}
|
|
734
|
-
if (count % 2 === 0) {
|
|
735
|
-
return false;
|
|
736
|
-
}
|
|
737
|
-
state.negated = true;
|
|
738
|
-
state.start++;
|
|
739
|
-
return true;
|
|
740
|
-
};
|
|
741
|
-
const increment = (type) => {
|
|
742
|
-
state[type]++;
|
|
743
|
-
stack.push(type);
|
|
744
|
-
};
|
|
745
|
-
const decrement = (type) => {
|
|
746
|
-
state[type]--;
|
|
747
|
-
stack.pop();
|
|
748
|
-
};
|
|
749
|
-
const push = (tok) => {
|
|
750
|
-
if (prev.type === "globstar") {
|
|
751
|
-
const isBrace = state.braces > 0 && (tok.type === "comma" || tok.type === "brace");
|
|
752
|
-
const isExtglob = tok.extglob === true || extglobs.length && (tok.type === "pipe" || tok.type === "paren");
|
|
753
|
-
if (tok.type !== "slash" && tok.type !== "paren" && !isBrace && !isExtglob) {
|
|
754
|
-
state.output = state.output.slice(0, -prev.output.length);
|
|
755
|
-
prev.type = "star";
|
|
756
|
-
prev.value = "*";
|
|
757
|
-
prev.output = star;
|
|
758
|
-
state.output += prev.output;
|
|
759
|
-
}
|
|
760
|
-
}
|
|
761
|
-
if (extglobs.length && tok.type !== "paren") {
|
|
762
|
-
extglobs[extglobs.length - 1].inner += tok.value;
|
|
763
|
-
}
|
|
764
|
-
if (tok.value || tok.output) append(tok);
|
|
765
|
-
if (prev && prev.type === "text" && tok.type === "text") {
|
|
766
|
-
prev.output = (prev.output || prev.value) + tok.value;
|
|
767
|
-
prev.value += tok.value;
|
|
768
|
-
return;
|
|
769
|
-
}
|
|
770
|
-
tok.prev = prev;
|
|
771
|
-
tokens.push(tok);
|
|
772
|
-
prev = tok;
|
|
773
|
-
};
|
|
774
|
-
const extglobOpen = (type, value2) => {
|
|
775
|
-
const token = { ...EXTGLOB_CHARS[value2], conditions: 1, inner: "" };
|
|
776
|
-
token.prev = prev;
|
|
777
|
-
token.parens = state.parens;
|
|
778
|
-
token.output = state.output;
|
|
779
|
-
const output = (opts.capture ? "(" : "") + token.open;
|
|
780
|
-
increment("parens");
|
|
781
|
-
push({ type, value: value2, output: state.output ? "" : ONE_CHAR });
|
|
782
|
-
push({ type: "paren", extglob: true, value: advance(), output });
|
|
783
|
-
extglobs.push(token);
|
|
784
|
-
};
|
|
785
|
-
const extglobClose = (token) => {
|
|
786
|
-
let output = token.close + (opts.capture ? ")" : "");
|
|
787
|
-
let rest;
|
|
788
|
-
if (token.type === "negate") {
|
|
789
|
-
let extglobStar = star;
|
|
790
|
-
if (token.inner && token.inner.length > 1 && token.inner.includes("/")) {
|
|
791
|
-
extglobStar = globstar(opts);
|
|
792
|
-
}
|
|
793
|
-
if (extglobStar !== star || eos() || /^\)+$/.test(remaining())) {
|
|
794
|
-
output = token.close = `)$))${extglobStar}`;
|
|
795
|
-
}
|
|
796
|
-
if (token.inner.includes("*") && (rest = remaining()) && /^\.[^\\/.]+$/.test(rest)) {
|
|
797
|
-
const expression = parse(rest, { ...options, fastpaths: false }).output;
|
|
798
|
-
output = token.close = `)${expression})${extglobStar})`;
|
|
799
|
-
}
|
|
800
|
-
if (token.prev.type === "bos") {
|
|
801
|
-
state.negatedExtglob = true;
|
|
802
|
-
}
|
|
803
|
-
}
|
|
804
|
-
push({ type: "paren", extglob: true, value, output });
|
|
805
|
-
decrement("parens");
|
|
806
|
-
};
|
|
807
|
-
if (opts.fastpaths !== false && !/(^[*!]|[/()[\]{}"])/.test(input)) {
|
|
808
|
-
let backslashes = false;
|
|
809
|
-
let output = input.replace(REGEX_SPECIAL_CHARS_BACKREF, (m, esc, chars, first, rest, index) => {
|
|
810
|
-
if (first === "\\") {
|
|
811
|
-
backslashes = true;
|
|
812
|
-
return m;
|
|
813
|
-
}
|
|
814
|
-
if (first === "?") {
|
|
815
|
-
if (esc) {
|
|
816
|
-
return esc + first + (rest ? QMARK.repeat(rest.length) : "");
|
|
817
|
-
}
|
|
818
|
-
if (index === 0) {
|
|
819
|
-
return qmarkNoDot + (rest ? QMARK.repeat(rest.length) : "");
|
|
820
|
-
}
|
|
821
|
-
return QMARK.repeat(chars.length);
|
|
822
|
-
}
|
|
823
|
-
if (first === ".") {
|
|
824
|
-
return DOT_LITERAL.repeat(chars.length);
|
|
825
|
-
}
|
|
826
|
-
if (first === "*") {
|
|
827
|
-
if (esc) {
|
|
828
|
-
return esc + first + (rest ? star : "");
|
|
829
|
-
}
|
|
830
|
-
return star;
|
|
831
|
-
}
|
|
832
|
-
return esc ? m : `\\${m}`;
|
|
833
|
-
});
|
|
834
|
-
if (backslashes === true) {
|
|
835
|
-
if (opts.unescape === true) {
|
|
836
|
-
output = output.replace(/\\/g, "");
|
|
837
|
-
} else {
|
|
838
|
-
output = output.replace(/\\+/g, (m) => {
|
|
839
|
-
return m.length % 2 === 0 ? "\\\\" : m ? "\\" : "";
|
|
840
|
-
});
|
|
841
|
-
}
|
|
842
|
-
}
|
|
843
|
-
if (output === input && opts.contains === true) {
|
|
844
|
-
state.output = input;
|
|
845
|
-
return state;
|
|
846
|
-
}
|
|
847
|
-
state.output = utils.wrapOutput(output, state, options);
|
|
848
|
-
return state;
|
|
849
|
-
}
|
|
850
|
-
while (!eos()) {
|
|
851
|
-
value = advance();
|
|
852
|
-
if (value === "\0") {
|
|
853
|
-
continue;
|
|
854
|
-
}
|
|
855
|
-
if (value === "\\") {
|
|
856
|
-
const next = peek();
|
|
857
|
-
if (next === "/" && opts.bash !== true) {
|
|
858
|
-
continue;
|
|
859
|
-
}
|
|
860
|
-
if (next === "." || next === ";") {
|
|
861
|
-
continue;
|
|
862
|
-
}
|
|
863
|
-
if (!next) {
|
|
864
|
-
value += "\\";
|
|
865
|
-
push({ type: "text", value });
|
|
866
|
-
continue;
|
|
867
|
-
}
|
|
868
|
-
const match = /^\\+/.exec(remaining());
|
|
869
|
-
let slashes = 0;
|
|
870
|
-
if (match && match[0].length > 2) {
|
|
871
|
-
slashes = match[0].length;
|
|
872
|
-
state.index += slashes;
|
|
873
|
-
if (slashes % 2 !== 0) {
|
|
874
|
-
value += "\\";
|
|
875
|
-
}
|
|
876
|
-
}
|
|
877
|
-
if (opts.unescape === true) {
|
|
878
|
-
value = advance();
|
|
879
|
-
} else {
|
|
880
|
-
value += advance();
|
|
881
|
-
}
|
|
882
|
-
if (state.brackets === 0) {
|
|
883
|
-
push({ type: "text", value });
|
|
884
|
-
continue;
|
|
885
|
-
}
|
|
886
|
-
}
|
|
887
|
-
if (state.brackets > 0 && (value !== "]" || prev.value === "[" || prev.value === "[^")) {
|
|
888
|
-
if (opts.posix !== false && value === ":") {
|
|
889
|
-
const inner = prev.value.slice(1);
|
|
890
|
-
if (inner.includes("[")) {
|
|
891
|
-
prev.posix = true;
|
|
892
|
-
if (inner.includes(":")) {
|
|
893
|
-
const idx = prev.value.lastIndexOf("[");
|
|
894
|
-
const pre = prev.value.slice(0, idx);
|
|
895
|
-
const rest2 = prev.value.slice(idx + 2);
|
|
896
|
-
const posix2 = POSIX_REGEX_SOURCE[rest2];
|
|
897
|
-
if (posix2) {
|
|
898
|
-
prev.value = pre + posix2;
|
|
899
|
-
state.backtrack = true;
|
|
900
|
-
advance();
|
|
901
|
-
if (!bos.output && tokens.indexOf(prev) === 1) {
|
|
902
|
-
bos.output = ONE_CHAR;
|
|
903
|
-
}
|
|
904
|
-
continue;
|
|
905
|
-
}
|
|
906
|
-
}
|
|
907
|
-
}
|
|
908
|
-
}
|
|
909
|
-
if (value === "[" && peek() !== ":" || value === "-" && peek() === "]") {
|
|
910
|
-
value = `\\${value}`;
|
|
911
|
-
}
|
|
912
|
-
if (value === "]" && (prev.value === "[" || prev.value === "[^")) {
|
|
913
|
-
value = `\\${value}`;
|
|
914
|
-
}
|
|
915
|
-
if (opts.posix === true && value === "!" && prev.value === "[") {
|
|
916
|
-
value = "^";
|
|
917
|
-
}
|
|
918
|
-
prev.value += value;
|
|
919
|
-
append({ value });
|
|
920
|
-
continue;
|
|
921
|
-
}
|
|
922
|
-
if (state.quotes === 1 && value !== '"') {
|
|
923
|
-
value = utils.escapeRegex(value);
|
|
924
|
-
prev.value += value;
|
|
925
|
-
append({ value });
|
|
926
|
-
continue;
|
|
927
|
-
}
|
|
928
|
-
if (value === '"') {
|
|
929
|
-
state.quotes = state.quotes === 1 ? 0 : 1;
|
|
930
|
-
if (opts.keepQuotes === true) {
|
|
931
|
-
push({ type: "text", value });
|
|
932
|
-
}
|
|
933
|
-
continue;
|
|
934
|
-
}
|
|
935
|
-
if (value === "(") {
|
|
936
|
-
increment("parens");
|
|
937
|
-
push({ type: "paren", value });
|
|
938
|
-
continue;
|
|
939
|
-
}
|
|
940
|
-
if (value === ")") {
|
|
941
|
-
if (state.parens === 0 && opts.strictBrackets === true) {
|
|
942
|
-
throw new SyntaxError(syntaxError("opening", "("));
|
|
943
|
-
}
|
|
944
|
-
const extglob = extglobs[extglobs.length - 1];
|
|
945
|
-
if (extglob && state.parens === extglob.parens + 1) {
|
|
946
|
-
extglobClose(extglobs.pop());
|
|
947
|
-
continue;
|
|
948
|
-
}
|
|
949
|
-
push({ type: "paren", value, output: state.parens ? ")" : "\\)" });
|
|
950
|
-
decrement("parens");
|
|
951
|
-
continue;
|
|
952
|
-
}
|
|
953
|
-
if (value === "[") {
|
|
954
|
-
if (opts.nobracket === true || !remaining().includes("]")) {
|
|
955
|
-
if (opts.nobracket !== true && opts.strictBrackets === true) {
|
|
956
|
-
throw new SyntaxError(syntaxError("closing", "]"));
|
|
957
|
-
}
|
|
958
|
-
value = `\\${value}`;
|
|
959
|
-
} else {
|
|
960
|
-
increment("brackets");
|
|
961
|
-
}
|
|
962
|
-
push({ type: "bracket", value });
|
|
963
|
-
continue;
|
|
964
|
-
}
|
|
965
|
-
if (value === "]") {
|
|
966
|
-
if (opts.nobracket === true || prev && prev.type === "bracket" && prev.value.length === 1) {
|
|
967
|
-
push({ type: "text", value, output: `\\${value}` });
|
|
968
|
-
continue;
|
|
969
|
-
}
|
|
970
|
-
if (state.brackets === 0) {
|
|
971
|
-
if (opts.strictBrackets === true) {
|
|
972
|
-
throw new SyntaxError(syntaxError("opening", "["));
|
|
973
|
-
}
|
|
974
|
-
push({ type: "text", value, output: `\\${value}` });
|
|
975
|
-
continue;
|
|
976
|
-
}
|
|
977
|
-
decrement("brackets");
|
|
978
|
-
const prevValue = prev.value.slice(1);
|
|
979
|
-
if (prev.posix !== true && prevValue[0] === "^" && !prevValue.includes("/")) {
|
|
980
|
-
value = `/${value}`;
|
|
981
|
-
}
|
|
982
|
-
prev.value += value;
|
|
983
|
-
append({ value });
|
|
984
|
-
if (opts.literalBrackets === false || utils.hasRegexChars(prevValue)) {
|
|
985
|
-
continue;
|
|
986
|
-
}
|
|
987
|
-
const escaped = utils.escapeRegex(prev.value);
|
|
988
|
-
state.output = state.output.slice(0, -prev.value.length);
|
|
989
|
-
if (opts.literalBrackets === true) {
|
|
990
|
-
state.output += escaped;
|
|
991
|
-
prev.value = escaped;
|
|
992
|
-
continue;
|
|
993
|
-
}
|
|
994
|
-
prev.value = `(${capture}${escaped}|${prev.value})`;
|
|
995
|
-
state.output += prev.value;
|
|
996
|
-
continue;
|
|
997
|
-
}
|
|
998
|
-
if (value === "{" && opts.nobrace !== true) {
|
|
999
|
-
increment("braces");
|
|
1000
|
-
const open = {
|
|
1001
|
-
type: "brace",
|
|
1002
|
-
value,
|
|
1003
|
-
output: "(",
|
|
1004
|
-
outputIndex: state.output.length,
|
|
1005
|
-
tokensIndex: state.tokens.length
|
|
1006
|
-
};
|
|
1007
|
-
braces.push(open);
|
|
1008
|
-
push(open);
|
|
1009
|
-
continue;
|
|
1010
|
-
}
|
|
1011
|
-
if (value === "}") {
|
|
1012
|
-
const brace = braces[braces.length - 1];
|
|
1013
|
-
if (opts.nobrace === true || !brace) {
|
|
1014
|
-
push({ type: "text", value, output: value });
|
|
1015
|
-
continue;
|
|
1016
|
-
}
|
|
1017
|
-
let output = ")";
|
|
1018
|
-
if (brace.dots === true) {
|
|
1019
|
-
const arr = tokens.slice();
|
|
1020
|
-
const range = [];
|
|
1021
|
-
for (let i = arr.length - 1; i >= 0; i--) {
|
|
1022
|
-
tokens.pop();
|
|
1023
|
-
if (arr[i].type === "brace") {
|
|
1024
|
-
break;
|
|
1025
|
-
}
|
|
1026
|
-
if (arr[i].type !== "dots") {
|
|
1027
|
-
range.unshift(arr[i].value);
|
|
1028
|
-
}
|
|
1029
|
-
}
|
|
1030
|
-
output = expandRange(range, opts);
|
|
1031
|
-
state.backtrack = true;
|
|
1032
|
-
}
|
|
1033
|
-
if (brace.comma !== true && brace.dots !== true) {
|
|
1034
|
-
const out = state.output.slice(0, brace.outputIndex);
|
|
1035
|
-
const toks = state.tokens.slice(brace.tokensIndex);
|
|
1036
|
-
brace.value = brace.output = "\\{";
|
|
1037
|
-
value = output = "\\}";
|
|
1038
|
-
state.output = out;
|
|
1039
|
-
for (const t of toks) {
|
|
1040
|
-
state.output += t.output || t.value;
|
|
1041
|
-
}
|
|
1042
|
-
}
|
|
1043
|
-
push({ type: "brace", value, output });
|
|
1044
|
-
decrement("braces");
|
|
1045
|
-
braces.pop();
|
|
1046
|
-
continue;
|
|
1047
|
-
}
|
|
1048
|
-
if (value === "|") {
|
|
1049
|
-
if (extglobs.length > 0) {
|
|
1050
|
-
extglobs[extglobs.length - 1].conditions++;
|
|
1051
|
-
}
|
|
1052
|
-
push({ type: "text", value });
|
|
1053
|
-
continue;
|
|
1054
|
-
}
|
|
1055
|
-
if (value === ",") {
|
|
1056
|
-
let output = value;
|
|
1057
|
-
const brace = braces[braces.length - 1];
|
|
1058
|
-
if (brace && stack[stack.length - 1] === "braces") {
|
|
1059
|
-
brace.comma = true;
|
|
1060
|
-
output = "|";
|
|
1061
|
-
}
|
|
1062
|
-
push({ type: "comma", value, output });
|
|
1063
|
-
continue;
|
|
1064
|
-
}
|
|
1065
|
-
if (value === "/") {
|
|
1066
|
-
if (prev.type === "dot" && state.index === state.start + 1) {
|
|
1067
|
-
state.start = state.index + 1;
|
|
1068
|
-
state.consumed = "";
|
|
1069
|
-
state.output = "";
|
|
1070
|
-
tokens.pop();
|
|
1071
|
-
prev = bos;
|
|
1072
|
-
continue;
|
|
1073
|
-
}
|
|
1074
|
-
push({ type: "slash", value, output: SLASH_LITERAL });
|
|
1075
|
-
continue;
|
|
1076
|
-
}
|
|
1077
|
-
if (value === ".") {
|
|
1078
|
-
if (state.braces > 0 && prev.type === "dot") {
|
|
1079
|
-
if (prev.value === ".") prev.output = DOT_LITERAL;
|
|
1080
|
-
const brace = braces[braces.length - 1];
|
|
1081
|
-
prev.type = "dots";
|
|
1082
|
-
prev.output += value;
|
|
1083
|
-
prev.value += value;
|
|
1084
|
-
brace.dots = true;
|
|
1085
|
-
continue;
|
|
1086
|
-
}
|
|
1087
|
-
if (state.braces + state.parens === 0 && prev.type !== "bos" && prev.type !== "slash") {
|
|
1088
|
-
push({ type: "text", value, output: DOT_LITERAL });
|
|
1089
|
-
continue;
|
|
1090
|
-
}
|
|
1091
|
-
push({ type: "dot", value, output: DOT_LITERAL });
|
|
1092
|
-
continue;
|
|
1093
|
-
}
|
|
1094
|
-
if (value === "?") {
|
|
1095
|
-
const isGroup = prev && prev.value === "(";
|
|
1096
|
-
if (!isGroup && opts.noextglob !== true && peek() === "(" && peek(2) !== "?") {
|
|
1097
|
-
extglobOpen("qmark", value);
|
|
1098
|
-
continue;
|
|
1099
|
-
}
|
|
1100
|
-
if (prev && prev.type === "paren") {
|
|
1101
|
-
const next = peek();
|
|
1102
|
-
let output = value;
|
|
1103
|
-
if (prev.value === "(" && !/[!=<:]/.test(next) || next === "<" && !/<([!=]|\w+>)/.test(remaining())) {
|
|
1104
|
-
output = `\\${value}`;
|
|
1105
|
-
}
|
|
1106
|
-
push({ type: "text", value, output });
|
|
1107
|
-
continue;
|
|
1108
|
-
}
|
|
1109
|
-
if (opts.dot !== true && (prev.type === "slash" || prev.type === "bos")) {
|
|
1110
|
-
push({ type: "qmark", value, output: QMARK_NO_DOT });
|
|
1111
|
-
continue;
|
|
1112
|
-
}
|
|
1113
|
-
push({ type: "qmark", value, output: QMARK });
|
|
1114
|
-
continue;
|
|
1115
|
-
}
|
|
1116
|
-
if (value === "!") {
|
|
1117
|
-
if (opts.noextglob !== true && peek() === "(") {
|
|
1118
|
-
if (peek(2) !== "?" || !/[!=<:]/.test(peek(3))) {
|
|
1119
|
-
extglobOpen("negate", value);
|
|
1120
|
-
continue;
|
|
1121
|
-
}
|
|
1122
|
-
}
|
|
1123
|
-
if (opts.nonegate !== true && state.index === 0) {
|
|
1124
|
-
negate();
|
|
1125
|
-
continue;
|
|
1126
|
-
}
|
|
1127
|
-
}
|
|
1128
|
-
if (value === "+") {
|
|
1129
|
-
if (opts.noextglob !== true && peek() === "(" && peek(2) !== "?") {
|
|
1130
|
-
extglobOpen("plus", value);
|
|
1131
|
-
continue;
|
|
1132
|
-
}
|
|
1133
|
-
if (prev && prev.value === "(" || opts.regex === false) {
|
|
1134
|
-
push({ type: "plus", value, output: PLUS_LITERAL });
|
|
1135
|
-
continue;
|
|
1136
|
-
}
|
|
1137
|
-
if (prev && (prev.type === "bracket" || prev.type === "paren" || prev.type === "brace") || state.parens > 0) {
|
|
1138
|
-
push({ type: "plus", value });
|
|
1139
|
-
continue;
|
|
1140
|
-
}
|
|
1141
|
-
push({ type: "plus", value: PLUS_LITERAL });
|
|
1142
|
-
continue;
|
|
1143
|
-
}
|
|
1144
|
-
if (value === "@") {
|
|
1145
|
-
if (opts.noextglob !== true && peek() === "(" && peek(2) !== "?") {
|
|
1146
|
-
push({ type: "at", extglob: true, value, output: "" });
|
|
1147
|
-
continue;
|
|
1148
|
-
}
|
|
1149
|
-
push({ type: "text", value });
|
|
1150
|
-
continue;
|
|
1151
|
-
}
|
|
1152
|
-
if (value !== "*") {
|
|
1153
|
-
if (value === "$" || value === "^") {
|
|
1154
|
-
value = `\\${value}`;
|
|
1155
|
-
}
|
|
1156
|
-
const match = REGEX_NON_SPECIAL_CHARS.exec(remaining());
|
|
1157
|
-
if (match) {
|
|
1158
|
-
value += match[0];
|
|
1159
|
-
state.index += match[0].length;
|
|
1160
|
-
}
|
|
1161
|
-
push({ type: "text", value });
|
|
1162
|
-
continue;
|
|
1163
|
-
}
|
|
1164
|
-
if (prev && (prev.type === "globstar" || prev.star === true)) {
|
|
1165
|
-
prev.type = "star";
|
|
1166
|
-
prev.star = true;
|
|
1167
|
-
prev.value += value;
|
|
1168
|
-
prev.output = star;
|
|
1169
|
-
state.backtrack = true;
|
|
1170
|
-
state.globstar = true;
|
|
1171
|
-
consume(value);
|
|
1172
|
-
continue;
|
|
1173
|
-
}
|
|
1174
|
-
let rest = remaining();
|
|
1175
|
-
if (opts.noextglob !== true && /^\([^?]/.test(rest)) {
|
|
1176
|
-
extglobOpen("star", value);
|
|
1177
|
-
continue;
|
|
1178
|
-
}
|
|
1179
|
-
if (prev.type === "star") {
|
|
1180
|
-
if (opts.noglobstar === true) {
|
|
1181
|
-
consume(value);
|
|
1182
|
-
continue;
|
|
1183
|
-
}
|
|
1184
|
-
const prior = prev.prev;
|
|
1185
|
-
const before = prior.prev;
|
|
1186
|
-
const isStart = prior.type === "slash" || prior.type === "bos";
|
|
1187
|
-
const afterStar = before && (before.type === "star" || before.type === "globstar");
|
|
1188
|
-
if (opts.bash === true && (!isStart || rest[0] && rest[0] !== "/")) {
|
|
1189
|
-
push({ type: "star", value, output: "" });
|
|
1190
|
-
continue;
|
|
1191
|
-
}
|
|
1192
|
-
const isBrace = state.braces > 0 && (prior.type === "comma" || prior.type === "brace");
|
|
1193
|
-
const isExtglob = extglobs.length && (prior.type === "pipe" || prior.type === "paren");
|
|
1194
|
-
if (!isStart && prior.type !== "paren" && !isBrace && !isExtglob) {
|
|
1195
|
-
push({ type: "star", value, output: "" });
|
|
1196
|
-
continue;
|
|
1197
|
-
}
|
|
1198
|
-
while (rest.slice(0, 3) === "/**") {
|
|
1199
|
-
const after = input[state.index + 4];
|
|
1200
|
-
if (after && after !== "/") {
|
|
1201
|
-
break;
|
|
1202
|
-
}
|
|
1203
|
-
rest = rest.slice(3);
|
|
1204
|
-
consume("/**", 3);
|
|
1205
|
-
}
|
|
1206
|
-
if (prior.type === "bos" && eos()) {
|
|
1207
|
-
prev.type = "globstar";
|
|
1208
|
-
prev.value += value;
|
|
1209
|
-
prev.output = globstar(opts);
|
|
1210
|
-
state.output = prev.output;
|
|
1211
|
-
state.globstar = true;
|
|
1212
|
-
consume(value);
|
|
1213
|
-
continue;
|
|
1214
|
-
}
|
|
1215
|
-
if (prior.type === "slash" && prior.prev.type !== "bos" && !afterStar && eos()) {
|
|
1216
|
-
state.output = state.output.slice(0, -(prior.output + prev.output).length);
|
|
1217
|
-
prior.output = `(?:${prior.output}`;
|
|
1218
|
-
prev.type = "globstar";
|
|
1219
|
-
prev.output = globstar(opts) + (opts.strictSlashes ? ")" : "|$)");
|
|
1220
|
-
prev.value += value;
|
|
1221
|
-
state.globstar = true;
|
|
1222
|
-
state.output += prior.output + prev.output;
|
|
1223
|
-
consume(value);
|
|
1224
|
-
continue;
|
|
1225
|
-
}
|
|
1226
|
-
if (prior.type === "slash" && prior.prev.type !== "bos" && rest[0] === "/") {
|
|
1227
|
-
const end = rest[1] !== void 0 ? "|$" : "";
|
|
1228
|
-
state.output = state.output.slice(0, -(prior.output + prev.output).length);
|
|
1229
|
-
prior.output = `(?:${prior.output}`;
|
|
1230
|
-
prev.type = "globstar";
|
|
1231
|
-
prev.output = `${globstar(opts)}${SLASH_LITERAL}|${SLASH_LITERAL}${end})`;
|
|
1232
|
-
prev.value += value;
|
|
1233
|
-
state.output += prior.output + prev.output;
|
|
1234
|
-
state.globstar = true;
|
|
1235
|
-
consume(value + advance());
|
|
1236
|
-
push({ type: "slash", value: "/", output: "" });
|
|
1237
|
-
continue;
|
|
1238
|
-
}
|
|
1239
|
-
if (prior.type === "bos" && rest[0] === "/") {
|
|
1240
|
-
prev.type = "globstar";
|
|
1241
|
-
prev.value += value;
|
|
1242
|
-
prev.output = `(?:^|${SLASH_LITERAL}|${globstar(opts)}${SLASH_LITERAL})`;
|
|
1243
|
-
state.output = prev.output;
|
|
1244
|
-
state.globstar = true;
|
|
1245
|
-
consume(value + advance());
|
|
1246
|
-
push({ type: "slash", value: "/", output: "" });
|
|
1247
|
-
continue;
|
|
1248
|
-
}
|
|
1249
|
-
state.output = state.output.slice(0, -prev.output.length);
|
|
1250
|
-
prev.type = "globstar";
|
|
1251
|
-
prev.output = globstar(opts);
|
|
1252
|
-
prev.value += value;
|
|
1253
|
-
state.output += prev.output;
|
|
1254
|
-
state.globstar = true;
|
|
1255
|
-
consume(value);
|
|
1256
|
-
continue;
|
|
1257
|
-
}
|
|
1258
|
-
const token = { type: "star", value, output: star };
|
|
1259
|
-
if (opts.bash === true) {
|
|
1260
|
-
token.output = ".*?";
|
|
1261
|
-
if (prev.type === "bos" || prev.type === "slash") {
|
|
1262
|
-
token.output = nodot + token.output;
|
|
1263
|
-
}
|
|
1264
|
-
push(token);
|
|
1265
|
-
continue;
|
|
1266
|
-
}
|
|
1267
|
-
if (prev && (prev.type === "bracket" || prev.type === "paren") && opts.regex === true) {
|
|
1268
|
-
token.output = value;
|
|
1269
|
-
push(token);
|
|
1270
|
-
continue;
|
|
1271
|
-
}
|
|
1272
|
-
if (state.index === state.start || prev.type === "slash" || prev.type === "dot") {
|
|
1273
|
-
if (prev.type === "dot") {
|
|
1274
|
-
state.output += NO_DOT_SLASH;
|
|
1275
|
-
prev.output += NO_DOT_SLASH;
|
|
1276
|
-
} else if (opts.dot === true) {
|
|
1277
|
-
state.output += NO_DOTS_SLASH;
|
|
1278
|
-
prev.output += NO_DOTS_SLASH;
|
|
1279
|
-
} else {
|
|
1280
|
-
state.output += nodot;
|
|
1281
|
-
prev.output += nodot;
|
|
1282
|
-
}
|
|
1283
|
-
if (peek() !== "*") {
|
|
1284
|
-
state.output += ONE_CHAR;
|
|
1285
|
-
prev.output += ONE_CHAR;
|
|
1286
|
-
}
|
|
1287
|
-
}
|
|
1288
|
-
push(token);
|
|
1289
|
-
}
|
|
1290
|
-
while (state.brackets > 0) {
|
|
1291
|
-
if (opts.strictBrackets === true) throw new SyntaxError(syntaxError("closing", "]"));
|
|
1292
|
-
state.output = utils.escapeLast(state.output, "[");
|
|
1293
|
-
decrement("brackets");
|
|
1294
|
-
}
|
|
1295
|
-
while (state.parens > 0) {
|
|
1296
|
-
if (opts.strictBrackets === true) throw new SyntaxError(syntaxError("closing", ")"));
|
|
1297
|
-
state.output = utils.escapeLast(state.output, "(");
|
|
1298
|
-
decrement("parens");
|
|
1299
|
-
}
|
|
1300
|
-
while (state.braces > 0) {
|
|
1301
|
-
if (opts.strictBrackets === true) throw new SyntaxError(syntaxError("closing", "}"));
|
|
1302
|
-
state.output = utils.escapeLast(state.output, "{");
|
|
1303
|
-
decrement("braces");
|
|
1304
|
-
}
|
|
1305
|
-
if (opts.strictSlashes !== true && (prev.type === "star" || prev.type === "bracket")) {
|
|
1306
|
-
push({ type: "maybe_slash", value: "", output: `${SLASH_LITERAL}?` });
|
|
1307
|
-
}
|
|
1308
|
-
if (state.backtrack === true) {
|
|
1309
|
-
state.output = "";
|
|
1310
|
-
for (const token of state.tokens) {
|
|
1311
|
-
state.output += token.output != null ? token.output : token.value;
|
|
1312
|
-
if (token.suffix) {
|
|
1313
|
-
state.output += token.suffix;
|
|
1314
|
-
}
|
|
1315
|
-
}
|
|
1316
|
-
}
|
|
1317
|
-
return state;
|
|
1318
|
-
};
|
|
1319
|
-
parse.fastpaths = (input, options) => {
|
|
1320
|
-
const opts = { ...options };
|
|
1321
|
-
const max = typeof opts.maxLength === "number" ? Math.min(MAX_LENGTH, opts.maxLength) : MAX_LENGTH;
|
|
1322
|
-
const len = input.length;
|
|
1323
|
-
if (len > max) {
|
|
1324
|
-
throw new SyntaxError(`Input length: ${len}, exceeds maximum allowed length: ${max}`);
|
|
1325
|
-
}
|
|
1326
|
-
input = REPLACEMENTS[input] || input;
|
|
1327
|
-
const {
|
|
1328
|
-
DOT_LITERAL,
|
|
1329
|
-
SLASH_LITERAL,
|
|
1330
|
-
ONE_CHAR,
|
|
1331
|
-
DOTS_SLASH,
|
|
1332
|
-
NO_DOT,
|
|
1333
|
-
NO_DOTS,
|
|
1334
|
-
NO_DOTS_SLASH,
|
|
1335
|
-
STAR,
|
|
1336
|
-
START_ANCHOR
|
|
1337
|
-
} = constants.globChars(opts.windows);
|
|
1338
|
-
const nodot = opts.dot ? NO_DOTS : NO_DOT;
|
|
1339
|
-
const slashDot = opts.dot ? NO_DOTS_SLASH : NO_DOT;
|
|
1340
|
-
const capture = opts.capture ? "" : "?:";
|
|
1341
|
-
const state = { negated: false, prefix: "" };
|
|
1342
|
-
let star = opts.bash === true ? ".*?" : STAR;
|
|
1343
|
-
if (opts.capture) {
|
|
1344
|
-
star = `(${star})`;
|
|
1345
|
-
}
|
|
1346
|
-
const globstar = (opts2) => {
|
|
1347
|
-
if (opts2.noglobstar === true) return star;
|
|
1348
|
-
return `(${capture}(?:(?!${START_ANCHOR}${opts2.dot ? DOTS_SLASH : DOT_LITERAL}).)*?)`;
|
|
1349
|
-
};
|
|
1350
|
-
const create = (str) => {
|
|
1351
|
-
switch (str) {
|
|
1352
|
-
case "*":
|
|
1353
|
-
return `${nodot}${ONE_CHAR}${star}`;
|
|
1354
|
-
case ".*":
|
|
1355
|
-
return `${DOT_LITERAL}${ONE_CHAR}${star}`;
|
|
1356
|
-
case "*.*":
|
|
1357
|
-
return `${nodot}${star}${DOT_LITERAL}${ONE_CHAR}${star}`;
|
|
1358
|
-
case "*/*":
|
|
1359
|
-
return `${nodot}${star}${SLASH_LITERAL}${ONE_CHAR}${slashDot}${star}`;
|
|
1360
|
-
case "**":
|
|
1361
|
-
return nodot + globstar(opts);
|
|
1362
|
-
case "**/*":
|
|
1363
|
-
return `(?:${nodot}${globstar(opts)}${SLASH_LITERAL})?${slashDot}${ONE_CHAR}${star}`;
|
|
1364
|
-
case "**/*.*":
|
|
1365
|
-
return `(?:${nodot}${globstar(opts)}${SLASH_LITERAL})?${slashDot}${star}${DOT_LITERAL}${ONE_CHAR}${star}`;
|
|
1366
|
-
case "**/.*":
|
|
1367
|
-
return `(?:${nodot}${globstar(opts)}${SLASH_LITERAL})?${DOT_LITERAL}${ONE_CHAR}${star}`;
|
|
1368
|
-
default: {
|
|
1369
|
-
const match = /^(.*?)\.(\w+)$/.exec(str);
|
|
1370
|
-
if (!match) return;
|
|
1371
|
-
const source2 = create(match[1]);
|
|
1372
|
-
if (!source2) return;
|
|
1373
|
-
return source2 + DOT_LITERAL + match[2];
|
|
1374
|
-
}
|
|
1375
|
-
}
|
|
1376
|
-
};
|
|
1377
|
-
const output = utils.removePrefix(input, state);
|
|
1378
|
-
let source = create(output);
|
|
1379
|
-
if (source && opts.strictSlashes !== true) {
|
|
1380
|
-
source += `${SLASH_LITERAL}?`;
|
|
1381
|
-
}
|
|
1382
|
-
return source;
|
|
1383
|
-
};
|
|
1384
|
-
module.exports = parse;
|
|
1385
|
-
}
|
|
1386
|
-
});
|
|
1387
|
-
|
|
1388
|
-
// ../node_modules/picomatch/lib/picomatch.js
|
|
1389
|
-
var require_picomatch = __commonJS({
|
|
1390
|
-
"../node_modules/picomatch/lib/picomatch.js"(exports, module) {
|
|
1391
|
-
"use strict";
|
|
1392
|
-
var scan = require_scan();
|
|
1393
|
-
var parse = require_parse();
|
|
1394
|
-
var utils = require_utils();
|
|
1395
|
-
var constants = require_constants();
|
|
1396
|
-
var isObject = (val) => val && typeof val === "object" && !Array.isArray(val);
|
|
1397
|
-
var picomatch2 = (glob2, options, returnState = false) => {
|
|
1398
|
-
if (Array.isArray(glob2)) {
|
|
1399
|
-
const fns = glob2.map((input) => picomatch2(input, options, returnState));
|
|
1400
|
-
const arrayMatcher = (str) => {
|
|
1401
|
-
for (const isMatch of fns) {
|
|
1402
|
-
const state2 = isMatch(str);
|
|
1403
|
-
if (state2) return state2;
|
|
1404
|
-
}
|
|
1405
|
-
return false;
|
|
1406
|
-
};
|
|
1407
|
-
return arrayMatcher;
|
|
1408
|
-
}
|
|
1409
|
-
const isState = isObject(glob2) && glob2.tokens && glob2.input;
|
|
1410
|
-
if (glob2 === "" || typeof glob2 !== "string" && !isState) {
|
|
1411
|
-
throw new TypeError("Expected pattern to be a non-empty string");
|
|
1412
|
-
}
|
|
1413
|
-
const opts = options || {};
|
|
1414
|
-
const posix2 = opts.windows;
|
|
1415
|
-
const regex = isState ? picomatch2.compileRe(glob2, options) : picomatch2.makeRe(glob2, options, false, true);
|
|
1416
|
-
const state = regex.state;
|
|
1417
|
-
delete regex.state;
|
|
1418
|
-
let isIgnored = () => false;
|
|
1419
|
-
if (opts.ignore) {
|
|
1420
|
-
const ignoreOpts = { ...options, ignore: null, onMatch: null, onResult: null };
|
|
1421
|
-
isIgnored = picomatch2(opts.ignore, ignoreOpts, returnState);
|
|
1422
|
-
}
|
|
1423
|
-
const matcher = (input, returnObject = false) => {
|
|
1424
|
-
const { isMatch, match, output } = picomatch2.test(input, regex, options, { glob: glob2, posix: posix2 });
|
|
1425
|
-
const result = { glob: glob2, state, regex, posix: posix2, input, output, match, isMatch };
|
|
1426
|
-
if (typeof opts.onResult === "function") {
|
|
1427
|
-
opts.onResult(result);
|
|
1428
|
-
}
|
|
1429
|
-
if (isMatch === false) {
|
|
1430
|
-
result.isMatch = false;
|
|
1431
|
-
return returnObject ? result : false;
|
|
1432
|
-
}
|
|
1433
|
-
if (isIgnored(input)) {
|
|
1434
|
-
if (typeof opts.onIgnore === "function") {
|
|
1435
|
-
opts.onIgnore(result);
|
|
1436
|
-
}
|
|
1437
|
-
result.isMatch = false;
|
|
1438
|
-
return returnObject ? result : false;
|
|
1439
|
-
}
|
|
1440
|
-
if (typeof opts.onMatch === "function") {
|
|
1441
|
-
opts.onMatch(result);
|
|
1442
|
-
}
|
|
1443
|
-
return returnObject ? result : true;
|
|
1444
|
-
};
|
|
1445
|
-
if (returnState) {
|
|
1446
|
-
matcher.state = state;
|
|
1447
|
-
}
|
|
1448
|
-
return matcher;
|
|
1449
|
-
};
|
|
1450
|
-
picomatch2.test = (input, regex, options, { glob: glob2, posix: posix2 } = {}) => {
|
|
1451
|
-
if (typeof input !== "string") {
|
|
1452
|
-
throw new TypeError("Expected input to be a string");
|
|
1453
|
-
}
|
|
1454
|
-
if (input === "") {
|
|
1455
|
-
return { isMatch: false, output: "" };
|
|
1456
|
-
}
|
|
1457
|
-
const opts = options || {};
|
|
1458
|
-
const format = opts.format || (posix2 ? utils.toPosixSlashes : null);
|
|
1459
|
-
let match = input === glob2;
|
|
1460
|
-
let output = match && format ? format(input) : input;
|
|
1461
|
-
if (match === false) {
|
|
1462
|
-
output = format ? format(input) : input;
|
|
1463
|
-
match = output === glob2;
|
|
1464
|
-
}
|
|
1465
|
-
if (match === false || opts.capture === true) {
|
|
1466
|
-
if (opts.matchBase === true || opts.basename === true) {
|
|
1467
|
-
match = picomatch2.matchBase(input, regex, options, posix2);
|
|
1468
|
-
} else {
|
|
1469
|
-
match = regex.exec(output);
|
|
1470
|
-
}
|
|
1471
|
-
}
|
|
1472
|
-
return { isMatch: Boolean(match), match, output };
|
|
1473
|
-
};
|
|
1474
|
-
picomatch2.matchBase = (input, glob2, options) => {
|
|
1475
|
-
const regex = glob2 instanceof RegExp ? glob2 : picomatch2.makeRe(glob2, options);
|
|
1476
|
-
return regex.test(utils.basename(input));
|
|
1477
|
-
};
|
|
1478
|
-
picomatch2.isMatch = (str, patterns, options) => picomatch2(patterns, options)(str);
|
|
1479
|
-
picomatch2.parse = (pattern, options) => {
|
|
1480
|
-
if (Array.isArray(pattern)) return pattern.map((p) => picomatch2.parse(p, options));
|
|
1481
|
-
return parse(pattern, { ...options, fastpaths: false });
|
|
1482
|
-
};
|
|
1483
|
-
picomatch2.scan = (input, options) => scan(input, options);
|
|
1484
|
-
picomatch2.compileRe = (state, options, returnOutput = false, returnState = false) => {
|
|
1485
|
-
if (returnOutput === true) {
|
|
1486
|
-
return state.output;
|
|
1487
|
-
}
|
|
1488
|
-
const opts = options || {};
|
|
1489
|
-
const prepend = opts.contains ? "" : "^";
|
|
1490
|
-
const append = opts.contains ? "" : "$";
|
|
1491
|
-
let source = `${prepend}(?:${state.output})${append}`;
|
|
1492
|
-
if (state && state.negated === true) {
|
|
1493
|
-
source = `^(?!${source}).*$`;
|
|
1494
|
-
}
|
|
1495
|
-
const regex = picomatch2.toRegex(source, options);
|
|
1496
|
-
if (returnState === true) {
|
|
1497
|
-
regex.state = state;
|
|
1498
|
-
}
|
|
1499
|
-
return regex;
|
|
1500
|
-
};
|
|
1501
|
-
picomatch2.makeRe = (input, options = {}, returnOutput = false, returnState = false) => {
|
|
1502
|
-
if (!input || typeof input !== "string") {
|
|
1503
|
-
throw new TypeError("Expected a non-empty string");
|
|
1504
|
-
}
|
|
1505
|
-
let parsed = { negated: false, fastpaths: true };
|
|
1506
|
-
if (options.fastpaths !== false && (input[0] === "." || input[0] === "*")) {
|
|
1507
|
-
parsed.output = parse.fastpaths(input, options);
|
|
1508
|
-
}
|
|
1509
|
-
if (!parsed.output) {
|
|
1510
|
-
parsed = parse(input, options);
|
|
1511
|
-
}
|
|
1512
|
-
return picomatch2.compileRe(parsed, options, returnOutput, returnState);
|
|
1513
|
-
};
|
|
1514
|
-
picomatch2.toRegex = (source, options) => {
|
|
1515
|
-
try {
|
|
1516
|
-
const opts = options || {};
|
|
1517
|
-
return new RegExp(source, opts.flags || (opts.nocase ? "i" : ""));
|
|
1518
|
-
} catch (err) {
|
|
1519
|
-
if (options && options.debug === true) throw err;
|
|
1520
|
-
return /$^/;
|
|
1521
|
-
}
|
|
1522
|
-
};
|
|
1523
|
-
picomatch2.constants = constants;
|
|
1524
|
-
module.exports = picomatch2;
|
|
1525
|
-
}
|
|
1526
|
-
});
|
|
1527
|
-
|
|
1528
|
-
// ../node_modules/picomatch/index.js
|
|
1529
|
-
var require_picomatch2 = __commonJS({
|
|
1530
|
-
"../node_modules/picomatch/index.js"(exports, module) {
|
|
1531
|
-
"use strict";
|
|
1532
|
-
var pico = require_picomatch();
|
|
1533
|
-
var utils = require_utils();
|
|
1534
|
-
function picomatch2(glob2, options, returnState = false) {
|
|
1535
|
-
if (options && (options.windows === null || options.windows === void 0)) {
|
|
1536
|
-
options = { ...options, windows: utils.isWindows() };
|
|
1537
|
-
}
|
|
1538
|
-
return pico(glob2, options, returnState);
|
|
1539
|
-
}
|
|
1540
|
-
Object.assign(picomatch2, pico);
|
|
1541
|
-
module.exports = picomatch2;
|
|
1542
|
-
}
|
|
1543
|
-
});
|
|
1544
|
-
|
|
1545
1
|
// src/integration.ts
|
|
1546
2
|
import {
|
|
1547
3
|
addVirtualImports,
|
|
@@ -1550,788 +6,8 @@ import {
|
|
|
1550
6
|
} from "astro-integration-kit";
|
|
1551
7
|
import { z } from "astro/zod";
|
|
1552
8
|
import fs from "node:fs/promises";
|
|
1553
|
-
import
|
|
1554
|
-
|
|
1555
|
-
// ../node_modules/tinyglobby/dist/index.mjs
|
|
1556
|
-
import nativeFs2 from "fs";
|
|
1557
|
-
import path, { posix } from "path";
|
|
1558
|
-
import { fileURLToPath } from "url";
|
|
1559
|
-
|
|
1560
|
-
// ../node_modules/fdir/dist/index.mjs
|
|
1561
|
-
import { createRequire } from "module";
|
|
1562
|
-
import { basename, dirname, normalize, relative, resolve, sep } from "path";
|
|
1563
|
-
import * as nativeFs from "fs";
|
|
1564
|
-
var __require = /* @__PURE__ */ createRequire(import.meta.url);
|
|
1565
|
-
function cleanPath(path3) {
|
|
1566
|
-
let normalized = normalize(path3);
|
|
1567
|
-
if (normalized.length > 1 && normalized[normalized.length - 1] === sep) normalized = normalized.substring(0, normalized.length - 1);
|
|
1568
|
-
return normalized;
|
|
1569
|
-
}
|
|
1570
|
-
var SLASHES_REGEX = /[\\/]/g;
|
|
1571
|
-
function convertSlashes(path3, separator) {
|
|
1572
|
-
return path3.replace(SLASHES_REGEX, separator);
|
|
1573
|
-
}
|
|
1574
|
-
var WINDOWS_ROOT_DIR_REGEX = /^[a-z]:[\\/]$/i;
|
|
1575
|
-
function isRootDirectory(path3) {
|
|
1576
|
-
return path3 === "/" || WINDOWS_ROOT_DIR_REGEX.test(path3);
|
|
1577
|
-
}
|
|
1578
|
-
function normalizePath(path3, options) {
|
|
1579
|
-
const { resolvePaths, normalizePath: normalizePath$1, pathSeparator } = options;
|
|
1580
|
-
const pathNeedsCleaning = process.platform === "win32" && path3.includes("/") || path3.startsWith(".");
|
|
1581
|
-
if (resolvePaths) path3 = resolve(path3);
|
|
1582
|
-
if (normalizePath$1 || pathNeedsCleaning) path3 = cleanPath(path3);
|
|
1583
|
-
if (path3 === ".") return "";
|
|
1584
|
-
const needsSeperator = path3[path3.length - 1] !== pathSeparator;
|
|
1585
|
-
return convertSlashes(needsSeperator ? path3 + pathSeparator : path3, pathSeparator);
|
|
1586
|
-
}
|
|
1587
|
-
function joinPathWithBasePath(filename, directoryPath) {
|
|
1588
|
-
return directoryPath + filename;
|
|
1589
|
-
}
|
|
1590
|
-
function joinPathWithRelativePath(root, options) {
|
|
1591
|
-
return function(filename, directoryPath) {
|
|
1592
|
-
const sameRoot = directoryPath.startsWith(root);
|
|
1593
|
-
if (sameRoot) return directoryPath.slice(root.length) + filename;
|
|
1594
|
-
else return convertSlashes(relative(root, directoryPath), options.pathSeparator) + options.pathSeparator + filename;
|
|
1595
|
-
};
|
|
1596
|
-
}
|
|
1597
|
-
function joinPath(filename) {
|
|
1598
|
-
return filename;
|
|
1599
|
-
}
|
|
1600
|
-
function joinDirectoryPath(filename, directoryPath, separator) {
|
|
1601
|
-
return directoryPath + filename + separator;
|
|
1602
|
-
}
|
|
1603
|
-
function build$7(root, options) {
|
|
1604
|
-
const { relativePaths, includeBasePath } = options;
|
|
1605
|
-
return relativePaths && root ? joinPathWithRelativePath(root, options) : includeBasePath ? joinPathWithBasePath : joinPath;
|
|
1606
|
-
}
|
|
1607
|
-
function pushDirectoryWithRelativePath(root) {
|
|
1608
|
-
return function(directoryPath, paths) {
|
|
1609
|
-
paths.push(directoryPath.substring(root.length) || ".");
|
|
1610
|
-
};
|
|
1611
|
-
}
|
|
1612
|
-
function pushDirectoryFilterWithRelativePath(root) {
|
|
1613
|
-
return function(directoryPath, paths, filters) {
|
|
1614
|
-
const relativePath = directoryPath.substring(root.length) || ".";
|
|
1615
|
-
if (filters.every((filter) => filter(relativePath, true))) paths.push(relativePath);
|
|
1616
|
-
};
|
|
1617
|
-
}
|
|
1618
|
-
var pushDirectory = (directoryPath, paths) => {
|
|
1619
|
-
paths.push(directoryPath || ".");
|
|
1620
|
-
};
|
|
1621
|
-
var pushDirectoryFilter = (directoryPath, paths, filters) => {
|
|
1622
|
-
const path3 = directoryPath || ".";
|
|
1623
|
-
if (filters.every((filter) => filter(path3, true))) paths.push(path3);
|
|
1624
|
-
};
|
|
1625
|
-
var empty$2 = () => {
|
|
1626
|
-
};
|
|
1627
|
-
function build$6(root, options) {
|
|
1628
|
-
const { includeDirs, filters, relativePaths } = options;
|
|
1629
|
-
if (!includeDirs) return empty$2;
|
|
1630
|
-
if (relativePaths) return filters && filters.length ? pushDirectoryFilterWithRelativePath(root) : pushDirectoryWithRelativePath(root);
|
|
1631
|
-
return filters && filters.length ? pushDirectoryFilter : pushDirectory;
|
|
1632
|
-
}
|
|
1633
|
-
var pushFileFilterAndCount = (filename, _paths, counts, filters) => {
|
|
1634
|
-
if (filters.every((filter) => filter(filename, false))) counts.files++;
|
|
1635
|
-
};
|
|
1636
|
-
var pushFileFilter = (filename, paths, _counts, filters) => {
|
|
1637
|
-
if (filters.every((filter) => filter(filename, false))) paths.push(filename);
|
|
1638
|
-
};
|
|
1639
|
-
var pushFileCount = (_filename, _paths, counts, _filters) => {
|
|
1640
|
-
counts.files++;
|
|
1641
|
-
};
|
|
1642
|
-
var pushFile = (filename, paths) => {
|
|
1643
|
-
paths.push(filename);
|
|
1644
|
-
};
|
|
1645
|
-
var empty$1 = () => {
|
|
1646
|
-
};
|
|
1647
|
-
function build$5(options) {
|
|
1648
|
-
const { excludeFiles, filters, onlyCounts } = options;
|
|
1649
|
-
if (excludeFiles) return empty$1;
|
|
1650
|
-
if (filters && filters.length) return onlyCounts ? pushFileFilterAndCount : pushFileFilter;
|
|
1651
|
-
else if (onlyCounts) return pushFileCount;
|
|
1652
|
-
else return pushFile;
|
|
1653
|
-
}
|
|
1654
|
-
var getArray = (paths) => {
|
|
1655
|
-
return paths;
|
|
1656
|
-
};
|
|
1657
|
-
var getArrayGroup = () => {
|
|
1658
|
-
return [""].slice(0, 0);
|
|
1659
|
-
};
|
|
1660
|
-
function build$4(options) {
|
|
1661
|
-
return options.group ? getArrayGroup : getArray;
|
|
1662
|
-
}
|
|
1663
|
-
var groupFiles = (groups, directory, files) => {
|
|
1664
|
-
groups.push({
|
|
1665
|
-
directory,
|
|
1666
|
-
files,
|
|
1667
|
-
dir: directory
|
|
1668
|
-
});
|
|
1669
|
-
};
|
|
1670
|
-
var empty = () => {
|
|
1671
|
-
};
|
|
1672
|
-
function build$3(options) {
|
|
1673
|
-
return options.group ? groupFiles : empty;
|
|
1674
|
-
}
|
|
1675
|
-
var resolveSymlinksAsync = function(path3, state, callback$1) {
|
|
1676
|
-
const { queue, fs: fs2, options: { suppressErrors } } = state;
|
|
1677
|
-
queue.enqueue();
|
|
1678
|
-
fs2.realpath(path3, (error, resolvedPath) => {
|
|
1679
|
-
if (error) return queue.dequeue(suppressErrors ? null : error, state);
|
|
1680
|
-
fs2.stat(resolvedPath, (error$1, stat) => {
|
|
1681
|
-
if (error$1) return queue.dequeue(suppressErrors ? null : error$1, state);
|
|
1682
|
-
if (stat.isDirectory() && isRecursive(path3, resolvedPath, state)) return queue.dequeue(null, state);
|
|
1683
|
-
callback$1(stat, resolvedPath);
|
|
1684
|
-
queue.dequeue(null, state);
|
|
1685
|
-
});
|
|
1686
|
-
});
|
|
1687
|
-
};
|
|
1688
|
-
var resolveSymlinks = function(path3, state, callback$1) {
|
|
1689
|
-
const { queue, fs: fs2, options: { suppressErrors } } = state;
|
|
1690
|
-
queue.enqueue();
|
|
1691
|
-
try {
|
|
1692
|
-
const resolvedPath = fs2.realpathSync(path3);
|
|
1693
|
-
const stat = fs2.statSync(resolvedPath);
|
|
1694
|
-
if (stat.isDirectory() && isRecursive(path3, resolvedPath, state)) return;
|
|
1695
|
-
callback$1(stat, resolvedPath);
|
|
1696
|
-
} catch (e) {
|
|
1697
|
-
if (!suppressErrors) throw e;
|
|
1698
|
-
}
|
|
1699
|
-
};
|
|
1700
|
-
function build$2(options, isSynchronous) {
|
|
1701
|
-
if (!options.resolveSymlinks || options.excludeSymlinks) return null;
|
|
1702
|
-
return isSynchronous ? resolveSymlinks : resolveSymlinksAsync;
|
|
1703
|
-
}
|
|
1704
|
-
function isRecursive(path3, resolved, state) {
|
|
1705
|
-
if (state.options.useRealPaths) return isRecursiveUsingRealPaths(resolved, state);
|
|
1706
|
-
let parent = dirname(path3);
|
|
1707
|
-
let depth = 1;
|
|
1708
|
-
while (parent !== state.root && depth < 2) {
|
|
1709
|
-
const resolvedPath = state.symlinks.get(parent);
|
|
1710
|
-
const isSameRoot = !!resolvedPath && (resolvedPath === resolved || resolvedPath.startsWith(resolved) || resolved.startsWith(resolvedPath));
|
|
1711
|
-
if (isSameRoot) depth++;
|
|
1712
|
-
else parent = dirname(parent);
|
|
1713
|
-
}
|
|
1714
|
-
state.symlinks.set(path3, resolved);
|
|
1715
|
-
return depth > 1;
|
|
1716
|
-
}
|
|
1717
|
-
function isRecursiveUsingRealPaths(resolved, state) {
|
|
1718
|
-
return state.visited.includes(resolved + state.options.pathSeparator);
|
|
1719
|
-
}
|
|
1720
|
-
var onlyCountsSync = (state) => {
|
|
1721
|
-
return state.counts;
|
|
1722
|
-
};
|
|
1723
|
-
var groupsSync = (state) => {
|
|
1724
|
-
return state.groups;
|
|
1725
|
-
};
|
|
1726
|
-
var defaultSync = (state) => {
|
|
1727
|
-
return state.paths;
|
|
1728
|
-
};
|
|
1729
|
-
var limitFilesSync = (state) => {
|
|
1730
|
-
return state.paths.slice(0, state.options.maxFiles);
|
|
1731
|
-
};
|
|
1732
|
-
var onlyCountsAsync = (state, error, callback$1) => {
|
|
1733
|
-
report(error, callback$1, state.counts, state.options.suppressErrors);
|
|
1734
|
-
return null;
|
|
1735
|
-
};
|
|
1736
|
-
var defaultAsync = (state, error, callback$1) => {
|
|
1737
|
-
report(error, callback$1, state.paths, state.options.suppressErrors);
|
|
1738
|
-
return null;
|
|
1739
|
-
};
|
|
1740
|
-
var limitFilesAsync = (state, error, callback$1) => {
|
|
1741
|
-
report(error, callback$1, state.paths.slice(0, state.options.maxFiles), state.options.suppressErrors);
|
|
1742
|
-
return null;
|
|
1743
|
-
};
|
|
1744
|
-
var groupsAsync = (state, error, callback$1) => {
|
|
1745
|
-
report(error, callback$1, state.groups, state.options.suppressErrors);
|
|
1746
|
-
return null;
|
|
1747
|
-
};
|
|
1748
|
-
function report(error, callback$1, output, suppressErrors) {
|
|
1749
|
-
if (error && !suppressErrors) callback$1(error, output);
|
|
1750
|
-
else callback$1(null, output);
|
|
1751
|
-
}
|
|
1752
|
-
function build$1(options, isSynchronous) {
|
|
1753
|
-
const { onlyCounts, group, maxFiles } = options;
|
|
1754
|
-
if (onlyCounts) return isSynchronous ? onlyCountsSync : onlyCountsAsync;
|
|
1755
|
-
else if (group) return isSynchronous ? groupsSync : groupsAsync;
|
|
1756
|
-
else if (maxFiles) return isSynchronous ? limitFilesSync : limitFilesAsync;
|
|
1757
|
-
else return isSynchronous ? defaultSync : defaultAsync;
|
|
1758
|
-
}
|
|
1759
|
-
var readdirOpts = { withFileTypes: true };
|
|
1760
|
-
var walkAsync = (state, crawlPath, directoryPath, currentDepth, callback$1) => {
|
|
1761
|
-
state.queue.enqueue();
|
|
1762
|
-
if (currentDepth < 0) return state.queue.dequeue(null, state);
|
|
1763
|
-
const { fs: fs2 } = state;
|
|
1764
|
-
state.visited.push(crawlPath);
|
|
1765
|
-
state.counts.directories++;
|
|
1766
|
-
fs2.readdir(crawlPath || ".", readdirOpts, (error, entries = []) => {
|
|
1767
|
-
callback$1(entries, directoryPath, currentDepth);
|
|
1768
|
-
state.queue.dequeue(state.options.suppressErrors ? null : error, state);
|
|
1769
|
-
});
|
|
1770
|
-
};
|
|
1771
|
-
var walkSync = (state, crawlPath, directoryPath, currentDepth, callback$1) => {
|
|
1772
|
-
const { fs: fs2 } = state;
|
|
1773
|
-
if (currentDepth < 0) return;
|
|
1774
|
-
state.visited.push(crawlPath);
|
|
1775
|
-
state.counts.directories++;
|
|
1776
|
-
let entries = [];
|
|
1777
|
-
try {
|
|
1778
|
-
entries = fs2.readdirSync(crawlPath || ".", readdirOpts);
|
|
1779
|
-
} catch (e) {
|
|
1780
|
-
if (!state.options.suppressErrors) throw e;
|
|
1781
|
-
}
|
|
1782
|
-
callback$1(entries, directoryPath, currentDepth);
|
|
1783
|
-
};
|
|
1784
|
-
function build(isSynchronous) {
|
|
1785
|
-
return isSynchronous ? walkSync : walkAsync;
|
|
1786
|
-
}
|
|
1787
|
-
var Queue = class {
|
|
1788
|
-
count = 0;
|
|
1789
|
-
constructor(onQueueEmpty) {
|
|
1790
|
-
this.onQueueEmpty = onQueueEmpty;
|
|
1791
|
-
}
|
|
1792
|
-
enqueue() {
|
|
1793
|
-
this.count++;
|
|
1794
|
-
return this.count;
|
|
1795
|
-
}
|
|
1796
|
-
dequeue(error, output) {
|
|
1797
|
-
if (this.onQueueEmpty && (--this.count <= 0 || error)) {
|
|
1798
|
-
this.onQueueEmpty(error, output);
|
|
1799
|
-
if (error) {
|
|
1800
|
-
output.controller.abort();
|
|
1801
|
-
this.onQueueEmpty = void 0;
|
|
1802
|
-
}
|
|
1803
|
-
}
|
|
1804
|
-
}
|
|
1805
|
-
};
|
|
1806
|
-
var Counter = class {
|
|
1807
|
-
_files = 0;
|
|
1808
|
-
_directories = 0;
|
|
1809
|
-
set files(num) {
|
|
1810
|
-
this._files = num;
|
|
1811
|
-
}
|
|
1812
|
-
get files() {
|
|
1813
|
-
return this._files;
|
|
1814
|
-
}
|
|
1815
|
-
set directories(num) {
|
|
1816
|
-
this._directories = num;
|
|
1817
|
-
}
|
|
1818
|
-
get directories() {
|
|
1819
|
-
return this._directories;
|
|
1820
|
-
}
|
|
1821
|
-
/**
|
|
1822
|
-
* @deprecated use `directories` instead
|
|
1823
|
-
*/
|
|
1824
|
-
/* c8 ignore next 3 */
|
|
1825
|
-
get dirs() {
|
|
1826
|
-
return this._directories;
|
|
1827
|
-
}
|
|
1828
|
-
};
|
|
1829
|
-
var Aborter = class {
|
|
1830
|
-
aborted = false;
|
|
1831
|
-
abort() {
|
|
1832
|
-
this.aborted = true;
|
|
1833
|
-
}
|
|
1834
|
-
};
|
|
1835
|
-
var Walker = class {
|
|
1836
|
-
root;
|
|
1837
|
-
isSynchronous;
|
|
1838
|
-
state;
|
|
1839
|
-
joinPath;
|
|
1840
|
-
pushDirectory;
|
|
1841
|
-
pushFile;
|
|
1842
|
-
getArray;
|
|
1843
|
-
groupFiles;
|
|
1844
|
-
resolveSymlink;
|
|
1845
|
-
walkDirectory;
|
|
1846
|
-
callbackInvoker;
|
|
1847
|
-
constructor(root, options, callback$1) {
|
|
1848
|
-
this.isSynchronous = !callback$1;
|
|
1849
|
-
this.callbackInvoker = build$1(options, this.isSynchronous);
|
|
1850
|
-
this.root = normalizePath(root, options);
|
|
1851
|
-
this.state = {
|
|
1852
|
-
root: isRootDirectory(this.root) ? this.root : this.root.slice(0, -1),
|
|
1853
|
-
paths: [""].slice(0, 0),
|
|
1854
|
-
groups: [],
|
|
1855
|
-
counts: new Counter(),
|
|
1856
|
-
options,
|
|
1857
|
-
queue: new Queue((error, state) => this.callbackInvoker(state, error, callback$1)),
|
|
1858
|
-
symlinks: /* @__PURE__ */ new Map(),
|
|
1859
|
-
visited: [""].slice(0, 0),
|
|
1860
|
-
controller: new Aborter(),
|
|
1861
|
-
fs: options.fs || nativeFs
|
|
1862
|
-
};
|
|
1863
|
-
this.joinPath = build$7(this.root, options);
|
|
1864
|
-
this.pushDirectory = build$6(this.root, options);
|
|
1865
|
-
this.pushFile = build$5(options);
|
|
1866
|
-
this.getArray = build$4(options);
|
|
1867
|
-
this.groupFiles = build$3(options);
|
|
1868
|
-
this.resolveSymlink = build$2(options, this.isSynchronous);
|
|
1869
|
-
this.walkDirectory = build(this.isSynchronous);
|
|
1870
|
-
}
|
|
1871
|
-
start() {
|
|
1872
|
-
this.pushDirectory(this.root, this.state.paths, this.state.options.filters);
|
|
1873
|
-
this.walkDirectory(this.state, this.root, this.root, this.state.options.maxDepth, this.walk);
|
|
1874
|
-
return this.isSynchronous ? this.callbackInvoker(this.state, null) : null;
|
|
1875
|
-
}
|
|
1876
|
-
walk = (entries, directoryPath, depth) => {
|
|
1877
|
-
const { paths, options: { filters, resolveSymlinks: resolveSymlinks$1, excludeSymlinks, exclude, maxFiles, signal, useRealPaths, pathSeparator }, controller } = this.state;
|
|
1878
|
-
if (controller.aborted || signal && signal.aborted || maxFiles && paths.length > maxFiles) return;
|
|
1879
|
-
const files = this.getArray(this.state.paths);
|
|
1880
|
-
for (let i = 0; i < entries.length; ++i) {
|
|
1881
|
-
const entry = entries[i];
|
|
1882
|
-
if (entry.isFile() || entry.isSymbolicLink() && !resolveSymlinks$1 && !excludeSymlinks) {
|
|
1883
|
-
const filename = this.joinPath(entry.name, directoryPath);
|
|
1884
|
-
this.pushFile(filename, files, this.state.counts, filters);
|
|
1885
|
-
} else if (entry.isDirectory()) {
|
|
1886
|
-
let path3 = joinDirectoryPath(entry.name, directoryPath, this.state.options.pathSeparator);
|
|
1887
|
-
if (exclude && exclude(entry.name, path3)) continue;
|
|
1888
|
-
this.pushDirectory(path3, paths, filters);
|
|
1889
|
-
this.walkDirectory(this.state, path3, path3, depth - 1, this.walk);
|
|
1890
|
-
} else if (this.resolveSymlink && entry.isSymbolicLink()) {
|
|
1891
|
-
let path3 = joinPathWithBasePath(entry.name, directoryPath);
|
|
1892
|
-
this.resolveSymlink(path3, this.state, (stat, resolvedPath) => {
|
|
1893
|
-
if (stat.isDirectory()) {
|
|
1894
|
-
resolvedPath = normalizePath(resolvedPath, this.state.options);
|
|
1895
|
-
if (exclude && exclude(entry.name, useRealPaths ? resolvedPath : path3 + pathSeparator)) return;
|
|
1896
|
-
this.walkDirectory(this.state, resolvedPath, useRealPaths ? resolvedPath : path3 + pathSeparator, depth - 1, this.walk);
|
|
1897
|
-
} else {
|
|
1898
|
-
resolvedPath = useRealPaths ? resolvedPath : path3;
|
|
1899
|
-
const filename = basename(resolvedPath);
|
|
1900
|
-
const directoryPath$1 = normalizePath(dirname(resolvedPath), this.state.options);
|
|
1901
|
-
resolvedPath = this.joinPath(filename, directoryPath$1);
|
|
1902
|
-
this.pushFile(resolvedPath, files, this.state.counts, filters);
|
|
1903
|
-
}
|
|
1904
|
-
});
|
|
1905
|
-
}
|
|
1906
|
-
}
|
|
1907
|
-
this.groupFiles(this.state.groups, directoryPath, files);
|
|
1908
|
-
};
|
|
1909
|
-
};
|
|
1910
|
-
function promise(root, options) {
|
|
1911
|
-
return new Promise((resolve$1, reject) => {
|
|
1912
|
-
callback(root, options, (err, output) => {
|
|
1913
|
-
if (err) return reject(err);
|
|
1914
|
-
resolve$1(output);
|
|
1915
|
-
});
|
|
1916
|
-
});
|
|
1917
|
-
}
|
|
1918
|
-
function callback(root, options, callback$1) {
|
|
1919
|
-
let walker = new Walker(root, options, callback$1);
|
|
1920
|
-
walker.start();
|
|
1921
|
-
}
|
|
1922
|
-
function sync(root, options) {
|
|
1923
|
-
const walker = new Walker(root, options);
|
|
1924
|
-
return walker.start();
|
|
1925
|
-
}
|
|
1926
|
-
var APIBuilder = class {
|
|
1927
|
-
constructor(root, options) {
|
|
1928
|
-
this.root = root;
|
|
1929
|
-
this.options = options;
|
|
1930
|
-
}
|
|
1931
|
-
withPromise() {
|
|
1932
|
-
return promise(this.root, this.options);
|
|
1933
|
-
}
|
|
1934
|
-
withCallback(cb) {
|
|
1935
|
-
callback(this.root, this.options, cb);
|
|
1936
|
-
}
|
|
1937
|
-
sync() {
|
|
1938
|
-
return sync(this.root, this.options);
|
|
1939
|
-
}
|
|
1940
|
-
};
|
|
1941
|
-
var pm = null;
|
|
1942
|
-
try {
|
|
1943
|
-
__require.resolve("picomatch");
|
|
1944
|
-
pm = __require("picomatch");
|
|
1945
|
-
} catch {
|
|
1946
|
-
}
|
|
1947
|
-
var Builder = class {
|
|
1948
|
-
globCache = {};
|
|
1949
|
-
options = {
|
|
1950
|
-
maxDepth: Infinity,
|
|
1951
|
-
suppressErrors: true,
|
|
1952
|
-
pathSeparator: sep,
|
|
1953
|
-
filters: []
|
|
1954
|
-
};
|
|
1955
|
-
globFunction;
|
|
1956
|
-
constructor(options) {
|
|
1957
|
-
this.options = {
|
|
1958
|
-
...this.options,
|
|
1959
|
-
...options
|
|
1960
|
-
};
|
|
1961
|
-
this.globFunction = this.options.globFunction;
|
|
1962
|
-
}
|
|
1963
|
-
group() {
|
|
1964
|
-
this.options.group = true;
|
|
1965
|
-
return this;
|
|
1966
|
-
}
|
|
1967
|
-
withPathSeparator(separator) {
|
|
1968
|
-
this.options.pathSeparator = separator;
|
|
1969
|
-
return this;
|
|
1970
|
-
}
|
|
1971
|
-
withBasePath() {
|
|
1972
|
-
this.options.includeBasePath = true;
|
|
1973
|
-
return this;
|
|
1974
|
-
}
|
|
1975
|
-
withRelativePaths() {
|
|
1976
|
-
this.options.relativePaths = true;
|
|
1977
|
-
return this;
|
|
1978
|
-
}
|
|
1979
|
-
withDirs() {
|
|
1980
|
-
this.options.includeDirs = true;
|
|
1981
|
-
return this;
|
|
1982
|
-
}
|
|
1983
|
-
withMaxDepth(depth) {
|
|
1984
|
-
this.options.maxDepth = depth;
|
|
1985
|
-
return this;
|
|
1986
|
-
}
|
|
1987
|
-
withMaxFiles(limit) {
|
|
1988
|
-
this.options.maxFiles = limit;
|
|
1989
|
-
return this;
|
|
1990
|
-
}
|
|
1991
|
-
withFullPaths() {
|
|
1992
|
-
this.options.resolvePaths = true;
|
|
1993
|
-
this.options.includeBasePath = true;
|
|
1994
|
-
return this;
|
|
1995
|
-
}
|
|
1996
|
-
withErrors() {
|
|
1997
|
-
this.options.suppressErrors = false;
|
|
1998
|
-
return this;
|
|
1999
|
-
}
|
|
2000
|
-
withSymlinks({ resolvePaths = true } = {}) {
|
|
2001
|
-
this.options.resolveSymlinks = true;
|
|
2002
|
-
this.options.useRealPaths = resolvePaths;
|
|
2003
|
-
return this.withFullPaths();
|
|
2004
|
-
}
|
|
2005
|
-
withAbortSignal(signal) {
|
|
2006
|
-
this.options.signal = signal;
|
|
2007
|
-
return this;
|
|
2008
|
-
}
|
|
2009
|
-
normalize() {
|
|
2010
|
-
this.options.normalizePath = true;
|
|
2011
|
-
return this;
|
|
2012
|
-
}
|
|
2013
|
-
filter(predicate) {
|
|
2014
|
-
this.options.filters.push(predicate);
|
|
2015
|
-
return this;
|
|
2016
|
-
}
|
|
2017
|
-
onlyDirs() {
|
|
2018
|
-
this.options.excludeFiles = true;
|
|
2019
|
-
this.options.includeDirs = true;
|
|
2020
|
-
return this;
|
|
2021
|
-
}
|
|
2022
|
-
exclude(predicate) {
|
|
2023
|
-
this.options.exclude = predicate;
|
|
2024
|
-
return this;
|
|
2025
|
-
}
|
|
2026
|
-
onlyCounts() {
|
|
2027
|
-
this.options.onlyCounts = true;
|
|
2028
|
-
return this;
|
|
2029
|
-
}
|
|
2030
|
-
crawl(root) {
|
|
2031
|
-
return new APIBuilder(root || ".", this.options);
|
|
2032
|
-
}
|
|
2033
|
-
withGlobFunction(fn) {
|
|
2034
|
-
this.globFunction = fn;
|
|
2035
|
-
return this;
|
|
2036
|
-
}
|
|
2037
|
-
/**
|
|
2038
|
-
* @deprecated Pass options using the constructor instead:
|
|
2039
|
-
* ```ts
|
|
2040
|
-
* new fdir(options).crawl("/path/to/root");
|
|
2041
|
-
* ```
|
|
2042
|
-
* This method will be removed in v7.0
|
|
2043
|
-
*/
|
|
2044
|
-
/* c8 ignore next 4 */
|
|
2045
|
-
crawlWithOptions(root, options) {
|
|
2046
|
-
this.options = {
|
|
2047
|
-
...this.options,
|
|
2048
|
-
...options
|
|
2049
|
-
};
|
|
2050
|
-
return new APIBuilder(root || ".", this.options);
|
|
2051
|
-
}
|
|
2052
|
-
glob(...patterns) {
|
|
2053
|
-
if (this.globFunction) return this.globWithOptions(patterns);
|
|
2054
|
-
return this.globWithOptions(patterns, ...[{ dot: true }]);
|
|
2055
|
-
}
|
|
2056
|
-
globWithOptions(patterns, ...options) {
|
|
2057
|
-
const globFn = this.globFunction || pm;
|
|
2058
|
-
if (!globFn) throw new Error("Please specify a glob function to use glob matching.");
|
|
2059
|
-
var isMatch = this.globCache[patterns.join("\0")];
|
|
2060
|
-
if (!isMatch) {
|
|
2061
|
-
isMatch = globFn(patterns, ...options);
|
|
2062
|
-
this.globCache[patterns.join("\0")] = isMatch;
|
|
2063
|
-
}
|
|
2064
|
-
this.options.filters.push((path3) => isMatch(path3));
|
|
2065
|
-
return this;
|
|
2066
|
-
}
|
|
2067
|
-
};
|
|
2068
|
-
|
|
2069
|
-
// ../node_modules/tinyglobby/dist/index.mjs
|
|
2070
|
-
var import_picomatch = __toESM(require_picomatch2(), 1);
|
|
2071
|
-
var isReadonlyArray = Array.isArray;
|
|
2072
|
-
var isWin = process.platform === "win32";
|
|
2073
|
-
var ONLY_PARENT_DIRECTORIES = /^(\/?\.\.)+$/;
|
|
2074
|
-
function getPartialMatcher(patterns, options = {}) {
|
|
2075
|
-
const patternsCount = patterns.length;
|
|
2076
|
-
const patternsParts = Array(patternsCount);
|
|
2077
|
-
const matchers = Array(patternsCount);
|
|
2078
|
-
const globstarEnabled = !options.noglobstar;
|
|
2079
|
-
for (let i = 0; i < patternsCount; i++) {
|
|
2080
|
-
const parts = splitPattern(patterns[i]);
|
|
2081
|
-
patternsParts[i] = parts;
|
|
2082
|
-
const partsCount = parts.length;
|
|
2083
|
-
const partMatchers = Array(partsCount);
|
|
2084
|
-
for (let j = 0; j < partsCount; j++) partMatchers[j] = (0, import_picomatch.default)(parts[j], options);
|
|
2085
|
-
matchers[i] = partMatchers;
|
|
2086
|
-
}
|
|
2087
|
-
return (input) => {
|
|
2088
|
-
const inputParts = input.split("/");
|
|
2089
|
-
if (inputParts[0] === ".." && ONLY_PARENT_DIRECTORIES.test(input)) return true;
|
|
2090
|
-
for (let i = 0; i < patterns.length; i++) {
|
|
2091
|
-
const patternParts = patternsParts[i];
|
|
2092
|
-
const matcher = matchers[i];
|
|
2093
|
-
const inputPatternCount = inputParts.length;
|
|
2094
|
-
const minParts = Math.min(inputPatternCount, patternParts.length);
|
|
2095
|
-
let j = 0;
|
|
2096
|
-
while (j < minParts) {
|
|
2097
|
-
const part = patternParts[j];
|
|
2098
|
-
if (part.includes("/")) return true;
|
|
2099
|
-
const match = matcher[j](inputParts[j]);
|
|
2100
|
-
if (!match) break;
|
|
2101
|
-
if (globstarEnabled && part === "**") return true;
|
|
2102
|
-
j++;
|
|
2103
|
-
}
|
|
2104
|
-
if (j === inputPatternCount) return true;
|
|
2105
|
-
}
|
|
2106
|
-
return false;
|
|
2107
|
-
};
|
|
2108
|
-
}
|
|
2109
|
-
var WIN32_ROOT_DIR = /^[A-Z]:\/$/i;
|
|
2110
|
-
var isRoot = isWin ? (p) => WIN32_ROOT_DIR.test(p) : (p) => p === "/";
|
|
2111
|
-
function buildFormat(cwd, root, absolute) {
|
|
2112
|
-
if (cwd === root || root.startsWith(`${cwd}/`)) {
|
|
2113
|
-
if (absolute) {
|
|
2114
|
-
const start = isRoot(cwd) ? cwd.length : cwd.length + 1;
|
|
2115
|
-
return (p, isDir) => p.slice(start, isDir ? -1 : void 0) || ".";
|
|
2116
|
-
}
|
|
2117
|
-
const prefix = root.slice(cwd.length + 1);
|
|
2118
|
-
if (prefix) return (p, isDir) => {
|
|
2119
|
-
if (p === ".") return prefix;
|
|
2120
|
-
const result = `${prefix}/${p}`;
|
|
2121
|
-
return isDir ? result.slice(0, -1) : result;
|
|
2122
|
-
};
|
|
2123
|
-
return (p, isDir) => isDir && p !== "." ? p.slice(0, -1) : p;
|
|
2124
|
-
}
|
|
2125
|
-
if (absolute) return (p) => posix.relative(cwd, p) || ".";
|
|
2126
|
-
return (p) => posix.relative(cwd, `${root}/${p}`) || ".";
|
|
2127
|
-
}
|
|
2128
|
-
function buildRelative(cwd, root) {
|
|
2129
|
-
if (root.startsWith(`${cwd}/`)) {
|
|
2130
|
-
const prefix = root.slice(cwd.length + 1);
|
|
2131
|
-
return (p) => `${prefix}/${p}`;
|
|
2132
|
-
}
|
|
2133
|
-
return (p) => {
|
|
2134
|
-
const result = posix.relative(cwd, `${root}/${p}`);
|
|
2135
|
-
if (p.endsWith("/") && result !== "") return `${result}/`;
|
|
2136
|
-
return result || ".";
|
|
2137
|
-
};
|
|
2138
|
-
}
|
|
2139
|
-
var splitPatternOptions = { parts: true };
|
|
2140
|
-
function splitPattern(path$1) {
|
|
2141
|
-
var _result$parts;
|
|
2142
|
-
const result = import_picomatch.default.scan(path$1, splitPatternOptions);
|
|
2143
|
-
return ((_result$parts = result.parts) === null || _result$parts === void 0 ? void 0 : _result$parts.length) ? result.parts : [path$1];
|
|
2144
|
-
}
|
|
2145
|
-
var POSIX_UNESCAPED_GLOB_SYMBOLS = /(?<!\\)([()[\]{}*?|]|^!|[!+@](?=\()|\\(?![()[\]{}!*+?@|]))/g;
|
|
2146
|
-
var WIN32_UNESCAPED_GLOB_SYMBOLS = /(?<!\\)([()[\]{}]|^!|[!+@](?=\())/g;
|
|
2147
|
-
var escapePosixPath = (path$1) => path$1.replace(POSIX_UNESCAPED_GLOB_SYMBOLS, "\\$&");
|
|
2148
|
-
var escapeWin32Path = (path$1) => path$1.replace(WIN32_UNESCAPED_GLOB_SYMBOLS, "\\$&");
|
|
2149
|
-
var escapePath = isWin ? escapeWin32Path : escapePosixPath;
|
|
2150
|
-
function isDynamicPattern(pattern, options) {
|
|
2151
|
-
if ((options === null || options === void 0 ? void 0 : options.caseSensitiveMatch) === false) return true;
|
|
2152
|
-
const scan = import_picomatch.default.scan(pattern);
|
|
2153
|
-
return scan.isGlob || scan.negated;
|
|
2154
|
-
}
|
|
2155
|
-
function log(...tasks) {
|
|
2156
|
-
console.log(`[tinyglobby ${(/* @__PURE__ */ new Date()).toLocaleTimeString("es")}]`, ...tasks);
|
|
2157
|
-
}
|
|
2158
|
-
var PARENT_DIRECTORY = /^(\/?\.\.)+/;
|
|
2159
|
-
var ESCAPING_BACKSLASHES = /\\(?=[()[\]{}!*+?@|])/g;
|
|
2160
|
-
var BACKSLASHES = /\\/g;
|
|
2161
|
-
function normalizePattern(pattern, expandDirectories, cwd, props, isIgnore) {
|
|
2162
|
-
let result = pattern;
|
|
2163
|
-
if (pattern.endsWith("/")) result = pattern.slice(0, -1);
|
|
2164
|
-
if (!result.endsWith("*") && expandDirectories) result += "/**";
|
|
2165
|
-
const escapedCwd = escapePath(cwd);
|
|
2166
|
-
if (path.isAbsolute(result.replace(ESCAPING_BACKSLASHES, ""))) result = posix.relative(escapedCwd, result);
|
|
2167
|
-
else result = posix.normalize(result);
|
|
2168
|
-
const parentDirectoryMatch = PARENT_DIRECTORY.exec(result);
|
|
2169
|
-
const parts = splitPattern(result);
|
|
2170
|
-
if (parentDirectoryMatch === null || parentDirectoryMatch === void 0 ? void 0 : parentDirectoryMatch[0]) {
|
|
2171
|
-
const n = (parentDirectoryMatch[0].length + 1) / 3;
|
|
2172
|
-
let i = 0;
|
|
2173
|
-
const cwdParts = escapedCwd.split("/");
|
|
2174
|
-
while (i < n && parts[i + n] === cwdParts[cwdParts.length + i - n]) {
|
|
2175
|
-
result = result.slice(0, (n - i - 1) * 3) + result.slice((n - i) * 3 + parts[i + n].length + 1) || ".";
|
|
2176
|
-
i++;
|
|
2177
|
-
}
|
|
2178
|
-
const potentialRoot = posix.join(cwd, parentDirectoryMatch[0].slice(i * 3));
|
|
2179
|
-
if (!potentialRoot.startsWith(".") && props.root.length > potentialRoot.length) {
|
|
2180
|
-
props.root = potentialRoot;
|
|
2181
|
-
props.depthOffset = -n + i;
|
|
2182
|
-
}
|
|
2183
|
-
}
|
|
2184
|
-
if (!isIgnore && props.depthOffset >= 0) {
|
|
2185
|
-
var _props$commonPath;
|
|
2186
|
-
(_props$commonPath = props.commonPath) !== null && _props$commonPath !== void 0 || (props.commonPath = parts);
|
|
2187
|
-
const newCommonPath = [];
|
|
2188
|
-
const length = Math.min(props.commonPath.length, parts.length);
|
|
2189
|
-
for (let i = 0; i < length; i++) {
|
|
2190
|
-
const part = parts[i];
|
|
2191
|
-
if (part === "**" && !parts[i + 1]) {
|
|
2192
|
-
newCommonPath.pop();
|
|
2193
|
-
break;
|
|
2194
|
-
}
|
|
2195
|
-
if (part !== props.commonPath[i] || isDynamicPattern(part) || i === parts.length - 1) break;
|
|
2196
|
-
newCommonPath.push(part);
|
|
2197
|
-
}
|
|
2198
|
-
props.depthOffset = newCommonPath.length;
|
|
2199
|
-
props.commonPath = newCommonPath;
|
|
2200
|
-
props.root = newCommonPath.length > 0 ? posix.join(cwd, ...newCommonPath) : cwd;
|
|
2201
|
-
}
|
|
2202
|
-
return result;
|
|
2203
|
-
}
|
|
2204
|
-
function processPatterns({ patterns = ["**/*"], ignore = [], expandDirectories = true }, cwd, props) {
|
|
2205
|
-
if (typeof patterns === "string") patterns = [patterns];
|
|
2206
|
-
if (typeof ignore === "string") ignore = [ignore];
|
|
2207
|
-
const matchPatterns = [];
|
|
2208
|
-
const ignorePatterns = [];
|
|
2209
|
-
for (const pattern of ignore) {
|
|
2210
|
-
if (!pattern) continue;
|
|
2211
|
-
if (pattern[0] !== "!" || pattern[1] === "(") ignorePatterns.push(normalizePattern(pattern, expandDirectories, cwd, props, true));
|
|
2212
|
-
}
|
|
2213
|
-
for (const pattern of patterns) {
|
|
2214
|
-
if (!pattern) continue;
|
|
2215
|
-
if (pattern[0] !== "!" || pattern[1] === "(") matchPatterns.push(normalizePattern(pattern, expandDirectories, cwd, props, false));
|
|
2216
|
-
else if (pattern[1] !== "!" || pattern[2] === "(") ignorePatterns.push(normalizePattern(pattern.slice(1), expandDirectories, cwd, props, true));
|
|
2217
|
-
}
|
|
2218
|
-
return {
|
|
2219
|
-
match: matchPatterns,
|
|
2220
|
-
ignore: ignorePatterns
|
|
2221
|
-
};
|
|
2222
|
-
}
|
|
2223
|
-
function formatPaths(paths, relative2) {
|
|
2224
|
-
for (let i = paths.length - 1; i >= 0; i--) {
|
|
2225
|
-
const path$1 = paths[i];
|
|
2226
|
-
paths[i] = relative2(path$1);
|
|
2227
|
-
}
|
|
2228
|
-
return paths;
|
|
2229
|
-
}
|
|
2230
|
-
function normalizeCwd(cwd) {
|
|
2231
|
-
if (!cwd) return process.cwd().replace(BACKSLASHES, "/");
|
|
2232
|
-
if (cwd instanceof URL) return fileURLToPath(cwd).replace(BACKSLASHES, "/");
|
|
2233
|
-
return path.resolve(cwd).replace(BACKSLASHES, "/");
|
|
2234
|
-
}
|
|
2235
|
-
function getCrawler(patterns, inputOptions = {}) {
|
|
2236
|
-
const options = process.env.TINYGLOBBY_DEBUG ? {
|
|
2237
|
-
...inputOptions,
|
|
2238
|
-
debug: true
|
|
2239
|
-
} : inputOptions;
|
|
2240
|
-
const cwd = normalizeCwd(options.cwd);
|
|
2241
|
-
if (options.debug) log("globbing with:", {
|
|
2242
|
-
patterns,
|
|
2243
|
-
options,
|
|
2244
|
-
cwd
|
|
2245
|
-
});
|
|
2246
|
-
if (Array.isArray(patterns) && patterns.length === 0) return [{
|
|
2247
|
-
sync: () => [],
|
|
2248
|
-
withPromise: async () => []
|
|
2249
|
-
}, false];
|
|
2250
|
-
const props = {
|
|
2251
|
-
root: cwd,
|
|
2252
|
-
commonPath: null,
|
|
2253
|
-
depthOffset: 0
|
|
2254
|
-
};
|
|
2255
|
-
const processed = processPatterns({
|
|
2256
|
-
...options,
|
|
2257
|
-
patterns
|
|
2258
|
-
}, cwd, props);
|
|
2259
|
-
if (options.debug) log("internal processing patterns:", processed);
|
|
2260
|
-
const matchOptions = {
|
|
2261
|
-
dot: options.dot,
|
|
2262
|
-
nobrace: options.braceExpansion === false,
|
|
2263
|
-
nocase: options.caseSensitiveMatch === false,
|
|
2264
|
-
noextglob: options.extglob === false,
|
|
2265
|
-
noglobstar: options.globstar === false,
|
|
2266
|
-
posix: true
|
|
2267
|
-
};
|
|
2268
|
-
const matcher = (0, import_picomatch.default)(processed.match, {
|
|
2269
|
-
...matchOptions,
|
|
2270
|
-
ignore: processed.ignore
|
|
2271
|
-
});
|
|
2272
|
-
const ignore = (0, import_picomatch.default)(processed.ignore, matchOptions);
|
|
2273
|
-
const partialMatcher = getPartialMatcher(processed.match, matchOptions);
|
|
2274
|
-
const format = buildFormat(cwd, props.root, options.absolute);
|
|
2275
|
-
const formatExclude = options.absolute ? format : buildFormat(cwd, props.root, true);
|
|
2276
|
-
const fdirOptions = {
|
|
2277
|
-
filters: [options.debug ? (p, isDirectory) => {
|
|
2278
|
-
const path$1 = format(p, isDirectory);
|
|
2279
|
-
const matches = matcher(path$1);
|
|
2280
|
-
if (matches) log(`matched ${path$1}`);
|
|
2281
|
-
return matches;
|
|
2282
|
-
} : (p, isDirectory) => matcher(format(p, isDirectory))],
|
|
2283
|
-
exclude: options.debug ? (_, p) => {
|
|
2284
|
-
const relativePath = formatExclude(p, true);
|
|
2285
|
-
const skipped = relativePath !== "." && !partialMatcher(relativePath) || ignore(relativePath);
|
|
2286
|
-
if (skipped) log(`skipped ${p}`);
|
|
2287
|
-
else log(`crawling ${p}`);
|
|
2288
|
-
return skipped;
|
|
2289
|
-
} : (_, p) => {
|
|
2290
|
-
const relativePath = formatExclude(p, true);
|
|
2291
|
-
return relativePath !== "." && !partialMatcher(relativePath) || ignore(relativePath);
|
|
2292
|
-
},
|
|
2293
|
-
fs: options.fs ? {
|
|
2294
|
-
readdir: options.fs.readdir || nativeFs2.readdir,
|
|
2295
|
-
readdirSync: options.fs.readdirSync || nativeFs2.readdirSync,
|
|
2296
|
-
realpath: options.fs.realpath || nativeFs2.realpath,
|
|
2297
|
-
realpathSync: options.fs.realpathSync || nativeFs2.realpathSync,
|
|
2298
|
-
stat: options.fs.stat || nativeFs2.stat,
|
|
2299
|
-
statSync: options.fs.statSync || nativeFs2.statSync
|
|
2300
|
-
} : void 0,
|
|
2301
|
-
pathSeparator: "/",
|
|
2302
|
-
relativePaths: true,
|
|
2303
|
-
resolveSymlinks: true,
|
|
2304
|
-
signal: options.signal
|
|
2305
|
-
};
|
|
2306
|
-
if (options.deep !== void 0) fdirOptions.maxDepth = Math.round(options.deep - props.depthOffset);
|
|
2307
|
-
if (options.absolute) {
|
|
2308
|
-
fdirOptions.relativePaths = false;
|
|
2309
|
-
fdirOptions.resolvePaths = true;
|
|
2310
|
-
fdirOptions.includeBasePath = true;
|
|
2311
|
-
}
|
|
2312
|
-
if (options.followSymbolicLinks === false) {
|
|
2313
|
-
fdirOptions.resolveSymlinks = false;
|
|
2314
|
-
fdirOptions.excludeSymlinks = true;
|
|
2315
|
-
}
|
|
2316
|
-
if (options.onlyDirectories) {
|
|
2317
|
-
fdirOptions.excludeFiles = true;
|
|
2318
|
-
fdirOptions.includeDirs = true;
|
|
2319
|
-
} else if (options.onlyFiles === false) fdirOptions.includeDirs = true;
|
|
2320
|
-
props.root = props.root.replace(BACKSLASHES, "");
|
|
2321
|
-
const root = props.root;
|
|
2322
|
-
if (options.debug) log("internal properties:", props);
|
|
2323
|
-
const relative2 = cwd !== root && !options.absolute && buildRelative(cwd, props.root);
|
|
2324
|
-
return [new Builder(fdirOptions).crawl(root), relative2];
|
|
2325
|
-
}
|
|
2326
|
-
async function glob(patternsOrOptions, options) {
|
|
2327
|
-
if (patternsOrOptions && (options === null || options === void 0 ? void 0 : options.patterns)) throw new Error("Cannot pass patterns as both an argument and an option");
|
|
2328
|
-
const isModern = isReadonlyArray(patternsOrOptions) || typeof patternsOrOptions === "string";
|
|
2329
|
-
const opts = isModern ? options : patternsOrOptions;
|
|
2330
|
-
const patterns = isModern ? patternsOrOptions : patternsOrOptions.patterns;
|
|
2331
|
-
const [crawler, relative2] = getCrawler(patterns, opts);
|
|
2332
|
-
if (!relative2) return crawler.withPromise();
|
|
2333
|
-
return formatPaths(await crawler.withPromise(), relative2);
|
|
2334
|
-
}
|
|
9
|
+
import path from "node:path";
|
|
10
|
+
import { glob } from "tinyglobby";
|
|
2335
11
|
|
|
2336
12
|
// src/integration-files.ts
|
|
2337
13
|
function generateRouter(opts) {
|
|
@@ -2373,8 +49,8 @@ var generateAstroHandler = (adapter) => {
|
|
|
2373
49
|
return `
|
|
2374
50
|
/// <reference types="./types.d.ts" />
|
|
2375
51
|
// Generated by Hono Actions Integration
|
|
2376
|
-
import router from './router.js'
|
|
2377
52
|
import type { APIContext, APIRoute } from 'astro'
|
|
53
|
+
import router from './router.js'
|
|
2378
54
|
|
|
2379
55
|
const handler: APIRoute<APIContext> = async (ctx) => {
|
|
2380
56
|
return router.fetch(
|
|
@@ -2480,20 +156,20 @@ ${ACTION_PATTERNS.map((p) => ` - ${p}`).join("\n")}`
|
|
|
2480
156
|
const resolvedActionsPath = baseResolver.resolve(actionsPath);
|
|
2481
157
|
params.addWatchFile(resolvedActionsPath);
|
|
2482
158
|
logger.info(
|
|
2483
|
-
`Found actions: ${
|
|
159
|
+
`Found actions: ${path.relative(root, resolvedActionsPath)}`
|
|
2484
160
|
);
|
|
2485
161
|
const codeGenDir = createCodegenDir();
|
|
2486
|
-
const routerPathAbs =
|
|
162
|
+
const routerPathAbs = path.join(
|
|
2487
163
|
codeGenDir.pathname,
|
|
2488
164
|
"router.ts"
|
|
2489
165
|
);
|
|
2490
|
-
const relFromGenToActions =
|
|
166
|
+
const relFromGenToActions = path.relative(codeGenDir.pathname, resolvedActionsPath).split(path.sep).join("/");
|
|
2491
167
|
const routerContent = generateRouter({
|
|
2492
168
|
basePath,
|
|
2493
169
|
relativeActionsPath: relFromGenToActions
|
|
2494
170
|
});
|
|
2495
171
|
await fs.writeFile(routerPathAbs, routerContent, "utf-8");
|
|
2496
|
-
const astroHandlerPathAbs =
|
|
172
|
+
const astroHandlerPathAbs = path.join(
|
|
2497
173
|
codeGenDir.pathname,
|
|
2498
174
|
"api.ts"
|
|
2499
175
|
);
|
|
@@ -2520,7 +196,7 @@ ${ACTION_PATTERNS.map((p) => ` - ${p}`).join("\n")}`
|
|
|
2520
196
|
astroHandlerContent,
|
|
2521
197
|
"utf-8"
|
|
2522
198
|
);
|
|
2523
|
-
const clientPathAbs =
|
|
199
|
+
const clientPathAbs = path.join(
|
|
2524
200
|
codeGenDir.pathname,
|
|
2525
201
|
"client.ts"
|
|
2526
202
|
);
|