vite-plugin-cross-origin-storage 1.0.0 → 1.2.0
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.d.ts +17 -0
- package/dist/index.js +1747 -0
- package/package.json +39 -5
- package/index.ts +0 -202
package/dist/index.js
ADDED
|
@@ -0,0 +1,1747 @@
|
|
|
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 __require() {
|
|
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(win322) {
|
|
220
|
+
return win322 === 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 = (path2, { windows } = {}) => {
|
|
280
|
+
const segs = path2.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 glob = "";
|
|
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
|
+
glob = str.slice(lastIndex);
|
|
543
|
+
} else if (isGlob === true) {
|
|
544
|
+
base = "";
|
|
545
|
+
glob = 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 (glob) glob = utils.removeBackslashes(glob);
|
|
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,
|
|
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 picomatch = (glob, options, returnState = false) => {
|
|
1398
|
+
if (Array.isArray(glob)) {
|
|
1399
|
+
const fns = glob.map((input) => picomatch(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(glob) && glob.tokens && glob.input;
|
|
1410
|
+
if (glob === "" || typeof glob !== "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 ? picomatch.compileRe(glob, options) : picomatch.makeRe(glob, 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 = picomatch(opts.ignore, ignoreOpts, returnState);
|
|
1422
|
+
}
|
|
1423
|
+
const matcher = (input, returnObject = false) => {
|
|
1424
|
+
const { isMatch, match, output } = picomatch.test(input, regex, options, { glob, posix: posix2 });
|
|
1425
|
+
const result = { glob, 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
|
+
picomatch.test = (input, regex, options, { glob, 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 === glob;
|
|
1460
|
+
let output = match && format ? format(input) : input;
|
|
1461
|
+
if (match === false) {
|
|
1462
|
+
output = format ? format(input) : input;
|
|
1463
|
+
match = output === glob;
|
|
1464
|
+
}
|
|
1465
|
+
if (match === false || opts.capture === true) {
|
|
1466
|
+
if (opts.matchBase === true || opts.basename === true) {
|
|
1467
|
+
match = picomatch.matchBase(input, regex, options, posix2);
|
|
1468
|
+
} else {
|
|
1469
|
+
match = regex.exec(output);
|
|
1470
|
+
}
|
|
1471
|
+
}
|
|
1472
|
+
return { isMatch: Boolean(match), match, output };
|
|
1473
|
+
};
|
|
1474
|
+
picomatch.matchBase = (input, glob, options) => {
|
|
1475
|
+
const regex = glob instanceof RegExp ? glob : picomatch.makeRe(glob, options);
|
|
1476
|
+
return regex.test(utils.basename(input));
|
|
1477
|
+
};
|
|
1478
|
+
picomatch.isMatch = (str, patterns, options) => picomatch(patterns, options)(str);
|
|
1479
|
+
picomatch.parse = (pattern, options) => {
|
|
1480
|
+
if (Array.isArray(pattern)) return pattern.map((p) => picomatch.parse(p, options));
|
|
1481
|
+
return parse(pattern, { ...options, fastpaths: false });
|
|
1482
|
+
};
|
|
1483
|
+
picomatch.scan = (input, options) => scan(input, options);
|
|
1484
|
+
picomatch.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 = picomatch.toRegex(source, options);
|
|
1496
|
+
if (returnState === true) {
|
|
1497
|
+
regex.state = state;
|
|
1498
|
+
}
|
|
1499
|
+
return regex;
|
|
1500
|
+
};
|
|
1501
|
+
picomatch.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 picomatch.compileRe(parsed, options, returnOutput, returnState);
|
|
1513
|
+
};
|
|
1514
|
+
picomatch.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
|
+
picomatch.constants = constants;
|
|
1524
|
+
module.exports = picomatch;
|
|
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 picomatch(glob, options, returnState = false) {
|
|
1535
|
+
if (options && (options.windows === null || options.windows === void 0)) {
|
|
1536
|
+
options = { ...options, windows: utils.isWindows() };
|
|
1537
|
+
}
|
|
1538
|
+
return pico(glob, options, returnState);
|
|
1539
|
+
}
|
|
1540
|
+
Object.assign(picomatch, pico);
|
|
1541
|
+
module.exports = picomatch;
|
|
1542
|
+
}
|
|
1543
|
+
});
|
|
1544
|
+
|
|
1545
|
+
// index.ts
|
|
1546
|
+
import crypto from "crypto";
|
|
1547
|
+
import path from "path";
|
|
1548
|
+
import fs from "fs";
|
|
1549
|
+
import { fileURLToPath } from "url";
|
|
1550
|
+
|
|
1551
|
+
// node_modules/@rollup/pluginutils/dist/es/index.js
|
|
1552
|
+
import { extname, win32, posix, isAbsolute, resolve } from "path";
|
|
1553
|
+
var import_picomatch = __toESM(require_picomatch2(), 1);
|
|
1554
|
+
function isArray(arg) {
|
|
1555
|
+
return Array.isArray(arg);
|
|
1556
|
+
}
|
|
1557
|
+
function ensureArray(thing) {
|
|
1558
|
+
if (isArray(thing))
|
|
1559
|
+
return thing;
|
|
1560
|
+
if (thing == null)
|
|
1561
|
+
return [];
|
|
1562
|
+
return [thing];
|
|
1563
|
+
}
|
|
1564
|
+
var normalizePathRegExp = new RegExp(`\\${win32.sep}`, "g");
|
|
1565
|
+
var normalizePath = function normalizePath2(filename) {
|
|
1566
|
+
return filename.replace(normalizePathRegExp, posix.sep);
|
|
1567
|
+
};
|
|
1568
|
+
function getMatcherString(id, resolutionBase) {
|
|
1569
|
+
if (resolutionBase === false || isAbsolute(id) || id.startsWith("**")) {
|
|
1570
|
+
return normalizePath(id);
|
|
1571
|
+
}
|
|
1572
|
+
const basePath = normalizePath(resolve(resolutionBase || "")).replace(/[-^$*+?.()|[\]{}]/g, "\\$&");
|
|
1573
|
+
return posix.join(basePath, normalizePath(id));
|
|
1574
|
+
}
|
|
1575
|
+
var createFilter = function createFilter2(include, exclude, options) {
|
|
1576
|
+
const resolutionBase = options && options.resolve;
|
|
1577
|
+
const getMatcher = (id) => id instanceof RegExp ? id : {
|
|
1578
|
+
test: (what) => {
|
|
1579
|
+
const pattern = getMatcherString(id, resolutionBase);
|
|
1580
|
+
const fn = (0, import_picomatch.default)(pattern, { dot: true });
|
|
1581
|
+
const result = fn(what);
|
|
1582
|
+
return result;
|
|
1583
|
+
}
|
|
1584
|
+
};
|
|
1585
|
+
const includeMatchers = ensureArray(include).map(getMatcher);
|
|
1586
|
+
const excludeMatchers = ensureArray(exclude).map(getMatcher);
|
|
1587
|
+
if (!includeMatchers.length && !excludeMatchers.length)
|
|
1588
|
+
return (id) => typeof id === "string" && !id.includes("\0");
|
|
1589
|
+
return function result(id) {
|
|
1590
|
+
if (typeof id !== "string")
|
|
1591
|
+
return false;
|
|
1592
|
+
if (id.includes("\0"))
|
|
1593
|
+
return false;
|
|
1594
|
+
const pathId = normalizePath(id);
|
|
1595
|
+
for (let i = 0; i < excludeMatchers.length; ++i) {
|
|
1596
|
+
const matcher = excludeMatchers[i];
|
|
1597
|
+
if (matcher instanceof RegExp) {
|
|
1598
|
+
matcher.lastIndex = 0;
|
|
1599
|
+
}
|
|
1600
|
+
if (matcher.test(pathId))
|
|
1601
|
+
return false;
|
|
1602
|
+
}
|
|
1603
|
+
for (let i = 0; i < includeMatchers.length; ++i) {
|
|
1604
|
+
const matcher = includeMatchers[i];
|
|
1605
|
+
if (matcher instanceof RegExp) {
|
|
1606
|
+
matcher.lastIndex = 0;
|
|
1607
|
+
}
|
|
1608
|
+
if (matcher.test(pathId))
|
|
1609
|
+
return true;
|
|
1610
|
+
}
|
|
1611
|
+
return !includeMatchers.length;
|
|
1612
|
+
};
|
|
1613
|
+
};
|
|
1614
|
+
var reservedWords = "break case class catch const continue debugger default delete do else export extends finally for function if import in instanceof let new return super switch this throw try typeof var void while with yield enum await implements package protected static interface private public";
|
|
1615
|
+
var builtins = "arguments Infinity NaN undefined null true false eval uneval isFinite isNaN parseFloat parseInt decodeURI decodeURIComponent encodeURI encodeURIComponent escape unescape Object Function Boolean Symbol Error EvalError InternalError RangeError ReferenceError SyntaxError TypeError URIError Number Math Date String RegExp Array Int8Array Uint8Array Uint8ClampedArray Int16Array Uint16Array Int32Array Uint32Array Float32Array Float64Array Map Set WeakMap WeakSet SIMD ArrayBuffer DataView JSON Promise Generator GeneratorFunction Reflect Proxy Intl";
|
|
1616
|
+
var forbiddenIdentifiers = new Set(`${reservedWords} ${builtins}`.split(" "));
|
|
1617
|
+
forbiddenIdentifiers.add("");
|
|
1618
|
+
var hasStringIsWellFormed = "isWellFormed" in String.prototype;
|
|
1619
|
+
|
|
1620
|
+
// index.ts
|
|
1621
|
+
function cosPlugin(options = {}) {
|
|
1622
|
+
const filter = createFilter(options.include || ["**/*"], options.exclude);
|
|
1623
|
+
const __dirname = path.dirname(fileURLToPath(import.meta.url));
|
|
1624
|
+
const loaderPath = path.resolve(__dirname, "loader.js");
|
|
1625
|
+
return {
|
|
1626
|
+
name: "vite-plugin-cos",
|
|
1627
|
+
apply: "build",
|
|
1628
|
+
enforce: "post",
|
|
1629
|
+
transformIndexHtml: {
|
|
1630
|
+
order: "post",
|
|
1631
|
+
handler(html) {
|
|
1632
|
+
return html.replace(
|
|
1633
|
+
/<script\s+[^>]*type=["']module["'][^>]*src=["'][^"']*index[^"']*["'][^>]*><\/script>/gi,
|
|
1634
|
+
"<!-- Entry script disabled by COS Plugin -->"
|
|
1635
|
+
);
|
|
1636
|
+
}
|
|
1637
|
+
},
|
|
1638
|
+
async generateBundle(_options, bundle) {
|
|
1639
|
+
const managedChunks = {};
|
|
1640
|
+
let mainChunk = null;
|
|
1641
|
+
let htmlAsset = null;
|
|
1642
|
+
for (const fileName in bundle) {
|
|
1643
|
+
const chunk = bundle[fileName];
|
|
1644
|
+
if (chunk.type === "chunk") {
|
|
1645
|
+
if (chunk.isEntry) {
|
|
1646
|
+
mainChunk = chunk;
|
|
1647
|
+
} else {
|
|
1648
|
+
if (filter(fileName)) {
|
|
1649
|
+
managedChunks[fileName] = chunk;
|
|
1650
|
+
}
|
|
1651
|
+
}
|
|
1652
|
+
}
|
|
1653
|
+
if (fileName === "index.html" && chunk.type === "asset") {
|
|
1654
|
+
htmlAsset = chunk;
|
|
1655
|
+
}
|
|
1656
|
+
}
|
|
1657
|
+
if (mainChunk) {
|
|
1658
|
+
const chunkInfo = {};
|
|
1659
|
+
for (const fileName in managedChunks) {
|
|
1660
|
+
const nameHash = crypto.createHash("sha256").update(fileName).digest("hex").substring(0, 8);
|
|
1661
|
+
chunkInfo[fileName] = {
|
|
1662
|
+
globalVar: `__COS_CHUNK_${nameHash}__`,
|
|
1663
|
+
chunk: managedChunks[fileName]
|
|
1664
|
+
};
|
|
1665
|
+
}
|
|
1666
|
+
const allChunks = Object.values(bundle).filter((c) => c.type === "chunk");
|
|
1667
|
+
for (const targetChunk of allChunks) {
|
|
1668
|
+
for (const fileName in chunkInfo) {
|
|
1669
|
+
if (targetChunk.fileName === fileName) continue;
|
|
1670
|
+
const { globalVar } = chunkInfo[fileName];
|
|
1671
|
+
const chunkBasename = fileName.split("/").pop();
|
|
1672
|
+
const escapedName = chunkBasename.replace(/[.*+?^${}()|[\]\\]/g, "\\$&");
|
|
1673
|
+
const pattern = `import\\s*\\{([^}]+)\\}\\s*from\\s*['"]\\.\\/${escapedName}['"];?`;
|
|
1674
|
+
const importRegex = new RegExp(pattern, "g");
|
|
1675
|
+
if (importRegex.test(targetChunk.code)) {
|
|
1676
|
+
let relativePath = path.relative(path.dirname(targetChunk.fileName), fileName);
|
|
1677
|
+
if (!relativePath.startsWith(".")) {
|
|
1678
|
+
relativePath = `./${relativePath}`;
|
|
1679
|
+
}
|
|
1680
|
+
targetChunk.code = targetChunk.code.replace(importRegex, (_match, bindings) => {
|
|
1681
|
+
const destructuringPattern = bindings.split(",").map((b) => {
|
|
1682
|
+
const parts = b.trim().split(/\s+as\s+/);
|
|
1683
|
+
return parts.length === 2 ? `${parts[0]}:${parts[1]}` : parts[0];
|
|
1684
|
+
}).join(",");
|
|
1685
|
+
return `const {${destructuringPattern}}=await import(window.${globalVar}||"${relativePath}");`;
|
|
1686
|
+
});
|
|
1687
|
+
}
|
|
1688
|
+
}
|
|
1689
|
+
}
|
|
1690
|
+
for (const fileName in managedChunks) {
|
|
1691
|
+
const chunk = managedChunks[fileName];
|
|
1692
|
+
chunk.imports.forEach((importedFile) => {
|
|
1693
|
+
if (!chunkInfo[importedFile]) {
|
|
1694
|
+
const importedBasename = importedFile.split("/").pop();
|
|
1695
|
+
const escapedName = importedBasename.replace(/[.*+?^${}()|[\]\\]/g, "\\$&");
|
|
1696
|
+
const pattern = `import\\s*\\{([^}]+)\\}\\s*from\\s*['"]\\.\\/${escapedName}['"];?`;
|
|
1697
|
+
const importRegex = new RegExp(pattern, "g");
|
|
1698
|
+
if (importRegex.test(chunk.code)) {
|
|
1699
|
+
chunk.code = chunk.code.replace(importRegex, (_match, bindings) => {
|
|
1700
|
+
const destructuringPattern = bindings.split(",").map((b) => {
|
|
1701
|
+
const parts = b.trim().split(/\s+as\s+/);
|
|
1702
|
+
return parts.length === 2 ? `${parts[0]}:${parts[1]}` : parts[0];
|
|
1703
|
+
}).join(",");
|
|
1704
|
+
return `const {${destructuringPattern}}=await import(new URL("${importedFile}", document.baseURI).href);`;
|
|
1705
|
+
});
|
|
1706
|
+
}
|
|
1707
|
+
}
|
|
1708
|
+
});
|
|
1709
|
+
}
|
|
1710
|
+
const manifest = {};
|
|
1711
|
+
for (const fileName in chunkInfo) {
|
|
1712
|
+
const { chunk, globalVar } = chunkInfo[fileName];
|
|
1713
|
+
const finalHash = crypto.createHash("sha256").update(chunk.code).digest("hex");
|
|
1714
|
+
manifest[fileName] = {
|
|
1715
|
+
file: `/${fileName}`,
|
|
1716
|
+
hash: finalHash,
|
|
1717
|
+
globalVar
|
|
1718
|
+
};
|
|
1719
|
+
}
|
|
1720
|
+
manifest["index"] = {
|
|
1721
|
+
file: `/${mainChunk.fileName}`
|
|
1722
|
+
};
|
|
1723
|
+
if (htmlAsset) {
|
|
1724
|
+
try {
|
|
1725
|
+
let loaderCode = fs.readFileSync(loaderPath, "utf-8");
|
|
1726
|
+
loaderCode = loaderCode.replace("__COS_MANIFEST__", JSON.stringify(manifest));
|
|
1727
|
+
let htmlSource = htmlAsset.source;
|
|
1728
|
+
htmlSource = htmlSource.replace(
|
|
1729
|
+
/<link\s+[^>]*rel=["']modulepreload["'][^>]*>/gi,
|
|
1730
|
+
"<!-- modulepreload disabled by COS Plugin -->"
|
|
1731
|
+
);
|
|
1732
|
+
htmlAsset.source = htmlSource.replace(
|
|
1733
|
+
"<head>",
|
|
1734
|
+
() => `<head>
|
|
1735
|
+
<script id="cos-loader">${loaderCode}</script>`
|
|
1736
|
+
);
|
|
1737
|
+
} catch (e) {
|
|
1738
|
+
console.error("COS Plugin: Failed to read loader.js", e);
|
|
1739
|
+
}
|
|
1740
|
+
}
|
|
1741
|
+
}
|
|
1742
|
+
}
|
|
1743
|
+
};
|
|
1744
|
+
}
|
|
1745
|
+
export {
|
|
1746
|
+
cosPlugin as default
|
|
1747
|
+
};
|