@ms-cloudpack/remote-cache 0.7.5 → 0.7.7
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/{AzureRemoteCacheClient-ZZ27K4AF.js → AzureRemoteCacheClient-LMRNY2C6.js} +89 -84
- package/dist/{ReporterDecorator-I4CR7TWD.js → ReporterDecorator-JLGERQ2U.js} +2 -2
- package/dist/chunk-TXSHKS6T.js +6686 -0
- package/dist/chunk-VCWIWY5Y.js +26798 -0
- package/dist/{getCredential-3U7LKZRE.js → getCredential-HXDULEOH.js} +10861 -17417
- package/dist/{getListOfBlobs-YTVBR3IU.js → getListOfBlobs-TYZM4XYI.js} +2 -2
- package/dist/index.js +5 -5
- package/lib/authentication/getCredential.d.ts +2 -0
- package/package.json +2 -2
- package/dist/chunk-26KCJU2L.js +0 -914
- package/dist/chunk-OXARBRZV.js +0 -50105
|
@@ -12,8 +12,8 @@ import {
|
|
|
12
12
|
} from "./chunk-IVPGYNQL.js";
|
|
13
13
|
import {
|
|
14
14
|
require_dist
|
|
15
|
-
} from "./chunk-
|
|
16
|
-
import "./chunk-
|
|
15
|
+
} from "./chunk-VCWIWY5Y.js";
|
|
16
|
+
import "./chunk-TXSHKS6T.js";
|
|
17
17
|
import {
|
|
18
18
|
__commonJS,
|
|
19
19
|
__name,
|
|
@@ -7471,9 +7471,9 @@ var require_package28 = __commonJS({
|
|
|
7471
7471
|
}
|
|
7472
7472
|
});
|
|
7473
7473
|
|
|
7474
|
-
// ../../node_modules/.store/braces-npm-3.0.
|
|
7474
|
+
// ../../node_modules/.store/braces-npm-3.0.3-582c14023c/package/lib/utils.js
|
|
7475
7475
|
var require_utils = __commonJS({
|
|
7476
|
-
"../../node_modules/.store/braces-npm-3.0.
|
|
7476
|
+
"../../node_modules/.store/braces-npm-3.0.3-582c14023c/package/lib/utils.js"(exports) {
|
|
7477
7477
|
"use strict";
|
|
7478
7478
|
exports.isInteger = (num) => {
|
|
7479
7479
|
if (typeof num === "number") {
|
|
@@ -7493,7 +7493,7 @@ var require_utils = __commonJS({
|
|
|
7493
7493
|
return (Number(max) - Number(min)) / Number(step) >= limit;
|
|
7494
7494
|
};
|
|
7495
7495
|
exports.escapeNode = (block, n = 0, type) => {
|
|
7496
|
-
|
|
7496
|
+
const node = block.nodes[n];
|
|
7497
7497
|
if (!node)
|
|
7498
7498
|
return;
|
|
7499
7499
|
if (type && node.type === type || node.type === "open" || node.type === "close") {
|
|
@@ -7544,8 +7544,14 @@ var require_utils = __commonJS({
|
|
|
7544
7544
|
const result = [];
|
|
7545
7545
|
const flat = /* @__PURE__ */ __name((arr) => {
|
|
7546
7546
|
for (let i = 0; i < arr.length; i++) {
|
|
7547
|
-
|
|
7548
|
-
Array.isArray(ele)
|
|
7547
|
+
const ele = arr[i];
|
|
7548
|
+
if (Array.isArray(ele)) {
|
|
7549
|
+
flat(ele);
|
|
7550
|
+
continue;
|
|
7551
|
+
}
|
|
7552
|
+
if (ele !== void 0) {
|
|
7553
|
+
result.push(ele);
|
|
7554
|
+
}
|
|
7549
7555
|
}
|
|
7550
7556
|
return result;
|
|
7551
7557
|
}, "flat");
|
|
@@ -7555,15 +7561,15 @@ var require_utils = __commonJS({
|
|
|
7555
7561
|
}
|
|
7556
7562
|
});
|
|
7557
7563
|
|
|
7558
|
-
// ../../node_modules/.store/braces-npm-3.0.
|
|
7564
|
+
// ../../node_modules/.store/braces-npm-3.0.3-582c14023c/package/lib/stringify.js
|
|
7559
7565
|
var require_stringify = __commonJS({
|
|
7560
|
-
"../../node_modules/.store/braces-npm-3.0.
|
|
7566
|
+
"../../node_modules/.store/braces-npm-3.0.3-582c14023c/package/lib/stringify.js"(exports, module) {
|
|
7561
7567
|
"use strict";
|
|
7562
7568
|
var utils = require_utils();
|
|
7563
7569
|
module.exports = (ast, options = {}) => {
|
|
7564
|
-
|
|
7565
|
-
|
|
7566
|
-
|
|
7570
|
+
const stringify = /* @__PURE__ */ __name((node, parent = {}) => {
|
|
7571
|
+
const invalidBlock = options.escapeInvalid && utils.isInvalidBrace(parent);
|
|
7572
|
+
const invalidNode = node.invalid === true && options.escapeInvalid === true;
|
|
7567
7573
|
let output = "";
|
|
7568
7574
|
if (node.value) {
|
|
7569
7575
|
if ((invalidBlock || invalidNode) && utils.isOpenOrClose(node)) {
|
|
@@ -7575,7 +7581,7 @@ var require_stringify = __commonJS({
|
|
|
7575
7581
|
return node.value;
|
|
7576
7582
|
}
|
|
7577
7583
|
if (node.nodes) {
|
|
7578
|
-
for (
|
|
7584
|
+
for (const child of node.nodes) {
|
|
7579
7585
|
output += stringify(child);
|
|
7580
7586
|
}
|
|
7581
7587
|
}
|
|
@@ -7828,9 +7834,9 @@ var require_package30 = __commonJS({
|
|
|
7828
7834
|
}
|
|
7829
7835
|
});
|
|
7830
7836
|
|
|
7831
|
-
// ../../node_modules/.store/fill-range-npm-7.
|
|
7837
|
+
// ../../node_modules/.store/fill-range-npm-7.1.1-bf491486db/package/index.js
|
|
7832
7838
|
var require_package31 = __commonJS({
|
|
7833
|
-
"../../node_modules/.store/fill-range-npm-7.
|
|
7839
|
+
"../../node_modules/.store/fill-range-npm-7.1.1-bf491486db/package/index.js"(exports, module) {
|
|
7834
7840
|
"use strict";
|
|
7835
7841
|
var util = __require("util");
|
|
7836
7842
|
var toRegexRange = require_package30();
|
|
@@ -7881,7 +7887,7 @@ var require_package31 = __commonJS({
|
|
|
7881
7887
|
input = "0" + input;
|
|
7882
7888
|
return negative ? "-" + input : input;
|
|
7883
7889
|
}, "toMaxLen");
|
|
7884
|
-
var toSequence = /* @__PURE__ */ __name((parts, options) => {
|
|
7890
|
+
var toSequence = /* @__PURE__ */ __name((parts, options, maxLen) => {
|
|
7885
7891
|
parts.negatives.sort((a, b) => a < b ? -1 : a > b ? 1 : 0);
|
|
7886
7892
|
parts.positives.sort((a, b) => a < b ? -1 : a > b ? 1 : 0);
|
|
7887
7893
|
let prefix = options.capture ? "" : "?:";
|
|
@@ -7889,10 +7895,10 @@ var require_package31 = __commonJS({
|
|
|
7889
7895
|
let negatives = "";
|
|
7890
7896
|
let result;
|
|
7891
7897
|
if (parts.positives.length) {
|
|
7892
|
-
positives = parts.positives.join("|");
|
|
7898
|
+
positives = parts.positives.map((v) => toMaxLen(String(v), maxLen)).join("|");
|
|
7893
7899
|
}
|
|
7894
7900
|
if (parts.negatives.length) {
|
|
7895
|
-
negatives = `-(${prefix}${parts.negatives.join("|")})`;
|
|
7901
|
+
negatives = `-(${prefix}${parts.negatives.map((v) => toMaxLen(String(v), maxLen)).join("|")})`;
|
|
7896
7902
|
}
|
|
7897
7903
|
if (positives && negatives) {
|
|
7898
7904
|
result = `${positives}|${negatives}`;
|
|
@@ -7974,7 +7980,7 @@ var require_package31 = __commonJS({
|
|
|
7974
7980
|
index++;
|
|
7975
7981
|
}
|
|
7976
7982
|
if (options.toRegex === true) {
|
|
7977
|
-
return step > 1 ? toSequence(parts, options) : toRegex(range, null, { wrap: false, ...options });
|
|
7983
|
+
return step > 1 ? toSequence(parts, options, maxLen) : toRegex(range, null, { wrap: false, ...options });
|
|
7978
7984
|
}
|
|
7979
7985
|
return range;
|
|
7980
7986
|
}, "fillNumbers");
|
|
@@ -8034,23 +8040,24 @@ var require_package31 = __commonJS({
|
|
|
8034
8040
|
}
|
|
8035
8041
|
});
|
|
8036
8042
|
|
|
8037
|
-
// ../../node_modules/.store/braces-npm-3.0.
|
|
8043
|
+
// ../../node_modules/.store/braces-npm-3.0.3-582c14023c/package/lib/compile.js
|
|
8038
8044
|
var require_compile = __commonJS({
|
|
8039
|
-
"../../node_modules/.store/braces-npm-3.0.
|
|
8045
|
+
"../../node_modules/.store/braces-npm-3.0.3-582c14023c/package/lib/compile.js"(exports, module) {
|
|
8040
8046
|
"use strict";
|
|
8041
8047
|
var fill = require_package31();
|
|
8042
8048
|
var utils = require_utils();
|
|
8043
8049
|
var compile = /* @__PURE__ */ __name((ast, options = {}) => {
|
|
8044
|
-
|
|
8045
|
-
|
|
8046
|
-
|
|
8047
|
-
|
|
8048
|
-
|
|
8050
|
+
const walk = /* @__PURE__ */ __name((node, parent = {}) => {
|
|
8051
|
+
const invalidBlock = utils.isInvalidBrace(parent);
|
|
8052
|
+
const invalidNode = node.invalid === true && options.escapeInvalid === true;
|
|
8053
|
+
const invalid = invalidBlock === true || invalidNode === true;
|
|
8054
|
+
const prefix = options.escapeInvalid === true ? "\\" : "";
|
|
8049
8055
|
let output = "";
|
|
8050
8056
|
if (node.isOpen === true) {
|
|
8051
8057
|
return prefix + node.value;
|
|
8052
8058
|
}
|
|
8053
8059
|
if (node.isClose === true) {
|
|
8060
|
+
console.log("node.isClose", prefix, node.value);
|
|
8054
8061
|
return prefix + node.value;
|
|
8055
8062
|
}
|
|
8056
8063
|
if (node.type === "open") {
|
|
@@ -8066,14 +8073,14 @@ var require_compile = __commonJS({
|
|
|
8066
8073
|
return node.value;
|
|
8067
8074
|
}
|
|
8068
8075
|
if (node.nodes && node.ranges > 0) {
|
|
8069
|
-
|
|
8070
|
-
|
|
8076
|
+
const args = utils.reduce(node.nodes);
|
|
8077
|
+
const range = fill(...args, { ...options, wrap: false, toRegex: true, strictZeros: true });
|
|
8071
8078
|
if (range.length !== 0) {
|
|
8072
8079
|
return args.length > 1 && range.length > 1 ? `(${range})` : range;
|
|
8073
8080
|
}
|
|
8074
8081
|
}
|
|
8075
8082
|
if (node.nodes) {
|
|
8076
|
-
for (
|
|
8083
|
+
for (const child of node.nodes) {
|
|
8077
8084
|
output += walk(child, node);
|
|
8078
8085
|
}
|
|
8079
8086
|
}
|
|
@@ -8085,15 +8092,15 @@ var require_compile = __commonJS({
|
|
|
8085
8092
|
}
|
|
8086
8093
|
});
|
|
8087
8094
|
|
|
8088
|
-
// ../../node_modules/.store/braces-npm-3.0.
|
|
8095
|
+
// ../../node_modules/.store/braces-npm-3.0.3-582c14023c/package/lib/expand.js
|
|
8089
8096
|
var require_expand = __commonJS({
|
|
8090
|
-
"../../node_modules/.store/braces-npm-3.0.
|
|
8097
|
+
"../../node_modules/.store/braces-npm-3.0.3-582c14023c/package/lib/expand.js"(exports, module) {
|
|
8091
8098
|
"use strict";
|
|
8092
8099
|
var fill = require_package31();
|
|
8093
8100
|
var stringify = require_stringify();
|
|
8094
8101
|
var utils = require_utils();
|
|
8095
8102
|
var append = /* @__PURE__ */ __name((queue = "", stash = "", enclose = false) => {
|
|
8096
|
-
|
|
8103
|
+
const result = [];
|
|
8097
8104
|
queue = [].concat(queue);
|
|
8098
8105
|
stash = [].concat(stash);
|
|
8099
8106
|
if (!stash.length)
|
|
@@ -8101,9 +8108,9 @@ var require_expand = __commonJS({
|
|
|
8101
8108
|
if (!queue.length) {
|
|
8102
8109
|
return enclose ? utils.flatten(stash).map((ele) => `{${ele}}`) : stash;
|
|
8103
8110
|
}
|
|
8104
|
-
for (
|
|
8111
|
+
for (const item of queue) {
|
|
8105
8112
|
if (Array.isArray(item)) {
|
|
8106
|
-
for (
|
|
8113
|
+
for (const value of item) {
|
|
8107
8114
|
result.push(append(value, stash, enclose));
|
|
8108
8115
|
}
|
|
8109
8116
|
} else {
|
|
@@ -8117,8 +8124,8 @@ var require_expand = __commonJS({
|
|
|
8117
8124
|
return utils.flatten(result);
|
|
8118
8125
|
}, "append");
|
|
8119
8126
|
var expand = /* @__PURE__ */ __name((ast, options = {}) => {
|
|
8120
|
-
|
|
8121
|
-
|
|
8127
|
+
const rangeLimit = options.rangeLimit === void 0 ? 1e3 : options.rangeLimit;
|
|
8128
|
+
const walk = /* @__PURE__ */ __name((node, parent = {}) => {
|
|
8122
8129
|
node.queue = [];
|
|
8123
8130
|
let p = parent;
|
|
8124
8131
|
let q = parent.queue;
|
|
@@ -8135,7 +8142,7 @@ var require_expand = __commonJS({
|
|
|
8135
8142
|
return;
|
|
8136
8143
|
}
|
|
8137
8144
|
if (node.nodes && node.ranges > 0) {
|
|
8138
|
-
|
|
8145
|
+
const args = utils.reduce(node.nodes);
|
|
8139
8146
|
if (utils.exceedsLimit(...args, options.step, rangeLimit)) {
|
|
8140
8147
|
throw new RangeError("expanded array length exceeds range limit. Use options.rangeLimit to increase or disable the limit.");
|
|
8141
8148
|
}
|
|
@@ -8147,7 +8154,7 @@ var require_expand = __commonJS({
|
|
|
8147
8154
|
node.nodes = [];
|
|
8148
8155
|
return;
|
|
8149
8156
|
}
|
|
8150
|
-
|
|
8157
|
+
const enclose = utils.encloseBrace(node);
|
|
8151
8158
|
let queue = node.queue;
|
|
8152
8159
|
let block = node;
|
|
8153
8160
|
while (block.type !== "brace" && block.type !== "root" && block.parent) {
|
|
@@ -8155,7 +8162,7 @@ var require_expand = __commonJS({
|
|
|
8155
8162
|
queue = block.queue;
|
|
8156
8163
|
}
|
|
8157
8164
|
for (let i = 0; i < node.nodes.length; i++) {
|
|
8158
|
-
|
|
8165
|
+
const child = node.nodes[i];
|
|
8159
8166
|
if (child.type === "comma" && node.type === "brace") {
|
|
8160
8167
|
if (i === 1)
|
|
8161
8168
|
queue.push("");
|
|
@@ -8182,12 +8189,12 @@ var require_expand = __commonJS({
|
|
|
8182
8189
|
}
|
|
8183
8190
|
});
|
|
8184
8191
|
|
|
8185
|
-
// ../../node_modules/.store/braces-npm-3.0.
|
|
8192
|
+
// ../../node_modules/.store/braces-npm-3.0.3-582c14023c/package/lib/constants.js
|
|
8186
8193
|
var require_constants = __commonJS({
|
|
8187
|
-
"../../node_modules/.store/braces-npm-3.0.
|
|
8194
|
+
"../../node_modules/.store/braces-npm-3.0.3-582c14023c/package/lib/constants.js"(exports, module) {
|
|
8188
8195
|
"use strict";
|
|
8189
8196
|
module.exports = {
|
|
8190
|
-
MAX_LENGTH:
|
|
8197
|
+
MAX_LENGTH: 1e4,
|
|
8191
8198
|
// Digits
|
|
8192
8199
|
CHAR_0: "0",
|
|
8193
8200
|
/* 0 */
|
|
@@ -8283,9 +8290,9 @@ var require_constants = __commonJS({
|
|
|
8283
8290
|
}
|
|
8284
8291
|
});
|
|
8285
8292
|
|
|
8286
|
-
// ../../node_modules/.store/braces-npm-3.0.
|
|
8293
|
+
// ../../node_modules/.store/braces-npm-3.0.3-582c14023c/package/lib/parse.js
|
|
8287
8294
|
var require_parse = __commonJS({
|
|
8288
|
-
"../../node_modules/.store/braces-npm-3.0.
|
|
8295
|
+
"../../node_modules/.store/braces-npm-3.0.3-582c14023c/package/lib/parse.js"(exports, module) {
|
|
8289
8296
|
"use strict";
|
|
8290
8297
|
var stringify = require_stringify();
|
|
8291
8298
|
var {
|
|
@@ -8321,21 +8328,20 @@ var require_parse = __commonJS({
|
|
|
8321
8328
|
if (typeof input !== "string") {
|
|
8322
8329
|
throw new TypeError("Expected a string");
|
|
8323
8330
|
}
|
|
8324
|
-
|
|
8325
|
-
|
|
8331
|
+
const opts = options || {};
|
|
8332
|
+
const max = typeof opts.maxLength === "number" ? Math.min(MAX_LENGTH, opts.maxLength) : MAX_LENGTH;
|
|
8326
8333
|
if (input.length > max) {
|
|
8327
8334
|
throw new SyntaxError(`Input length (${input.length}), exceeds max characters (${max})`);
|
|
8328
8335
|
}
|
|
8329
|
-
|
|
8330
|
-
|
|
8336
|
+
const ast = { type: "root", input, nodes: [] };
|
|
8337
|
+
const stack = [ast];
|
|
8331
8338
|
let block = ast;
|
|
8332
8339
|
let prev = ast;
|
|
8333
8340
|
let brackets = 0;
|
|
8334
|
-
|
|
8341
|
+
const length = input.length;
|
|
8335
8342
|
let index = 0;
|
|
8336
8343
|
let depth = 0;
|
|
8337
8344
|
let value;
|
|
8338
|
-
let memo = {};
|
|
8339
8345
|
const advance = /* @__PURE__ */ __name(() => input[index++], "advance");
|
|
8340
8346
|
const push = /* @__PURE__ */ __name((node) => {
|
|
8341
8347
|
if (node.type === "text" && prev.type === "dot") {
|
|
@@ -8368,7 +8374,6 @@ var require_parse = __commonJS({
|
|
|
8368
8374
|
}
|
|
8369
8375
|
if (value === CHAR_LEFT_SQUARE_BRACKET) {
|
|
8370
8376
|
brackets++;
|
|
8371
|
-
let closed = true;
|
|
8372
8377
|
let next;
|
|
8373
8378
|
while (index < length && (next = advance())) {
|
|
8374
8379
|
value += next;
|
|
@@ -8407,7 +8412,7 @@ var require_parse = __commonJS({
|
|
|
8407
8412
|
continue;
|
|
8408
8413
|
}
|
|
8409
8414
|
if (value === CHAR_DOUBLE_QUOTE || value === CHAR_SINGLE_QUOTE || value === CHAR_BACKTICK) {
|
|
8410
|
-
|
|
8415
|
+
const open = value;
|
|
8411
8416
|
let next;
|
|
8412
8417
|
if (options.keepQuotes !== true) {
|
|
8413
8418
|
value = "";
|
|
@@ -8429,8 +8434,8 @@ var require_parse = __commonJS({
|
|
|
8429
8434
|
}
|
|
8430
8435
|
if (value === CHAR_LEFT_CURLY_BRACE) {
|
|
8431
8436
|
depth++;
|
|
8432
|
-
|
|
8433
|
-
|
|
8437
|
+
const dollar = prev.value && prev.value.slice(-1) === "$" || block.dollar === true;
|
|
8438
|
+
const brace = {
|
|
8434
8439
|
type: "brace",
|
|
8435
8440
|
open: true,
|
|
8436
8441
|
close: false,
|
|
@@ -8450,7 +8455,7 @@ var require_parse = __commonJS({
|
|
|
8450
8455
|
push({ type: "text", value });
|
|
8451
8456
|
continue;
|
|
8452
8457
|
}
|
|
8453
|
-
|
|
8458
|
+
const type = "close";
|
|
8454
8459
|
block = stack.pop();
|
|
8455
8460
|
block.close = true;
|
|
8456
8461
|
push({ type, value });
|
|
@@ -8461,7 +8466,7 @@ var require_parse = __commonJS({
|
|
|
8461
8466
|
if (value === CHAR_COMMA && depth > 0) {
|
|
8462
8467
|
if (block.ranges > 0) {
|
|
8463
8468
|
block.ranges = 0;
|
|
8464
|
-
|
|
8469
|
+
const open = block.nodes.shift();
|
|
8465
8470
|
block.nodes = [open, { type: "text", value: stringify(block) }];
|
|
8466
8471
|
}
|
|
8467
8472
|
push({ type: "comma", value });
|
|
@@ -8469,7 +8474,7 @@ var require_parse = __commonJS({
|
|
|
8469
8474
|
continue;
|
|
8470
8475
|
}
|
|
8471
8476
|
if (value === CHAR_DOT && depth > 0 && block.commas === 0) {
|
|
8472
|
-
|
|
8477
|
+
const siblings = block.nodes;
|
|
8473
8478
|
if (depth === 0 || siblings.length === 0) {
|
|
8474
8479
|
push({ type: "text", value });
|
|
8475
8480
|
continue;
|
|
@@ -8490,7 +8495,7 @@ var require_parse = __commonJS({
|
|
|
8490
8495
|
}
|
|
8491
8496
|
if (prev.type === "range") {
|
|
8492
8497
|
siblings.pop();
|
|
8493
|
-
|
|
8498
|
+
const before = siblings[siblings.length - 1];
|
|
8494
8499
|
before.value += prev.value + value;
|
|
8495
8500
|
prev = before;
|
|
8496
8501
|
block.ranges--;
|
|
@@ -8515,8 +8520,8 @@ var require_parse = __commonJS({
|
|
|
8515
8520
|
node.invalid = true;
|
|
8516
8521
|
}
|
|
8517
8522
|
});
|
|
8518
|
-
|
|
8519
|
-
|
|
8523
|
+
const parent = stack[stack.length - 1];
|
|
8524
|
+
const index2 = parent.nodes.indexOf(block);
|
|
8520
8525
|
parent.nodes.splice(index2, 1, ...block.nodes);
|
|
8521
8526
|
}
|
|
8522
8527
|
} while (stack.length > 0);
|
|
@@ -8527,9 +8532,9 @@ var require_parse = __commonJS({
|
|
|
8527
8532
|
}
|
|
8528
8533
|
});
|
|
8529
8534
|
|
|
8530
|
-
// ../../node_modules/.store/braces-npm-3.0.
|
|
8535
|
+
// ../../node_modules/.store/braces-npm-3.0.3-582c14023c/package/index.js
|
|
8531
8536
|
var require_package32 = __commonJS({
|
|
8532
|
-
"../../node_modules/.store/braces-npm-3.0.
|
|
8537
|
+
"../../node_modules/.store/braces-npm-3.0.3-582c14023c/package/index.js"(exports, module) {
|
|
8533
8538
|
"use strict";
|
|
8534
8539
|
var stringify = require_stringify();
|
|
8535
8540
|
var compile = require_compile();
|
|
@@ -8538,8 +8543,8 @@ var require_package32 = __commonJS({
|
|
|
8538
8543
|
var braces = /* @__PURE__ */ __name((input, options = {}) => {
|
|
8539
8544
|
let output = [];
|
|
8540
8545
|
if (Array.isArray(input)) {
|
|
8541
|
-
for (
|
|
8542
|
-
|
|
8546
|
+
for (const pattern of input) {
|
|
8547
|
+
const result = braces.create(pattern, options);
|
|
8543
8548
|
if (Array.isArray(result)) {
|
|
8544
8549
|
output.push(...result);
|
|
8545
8550
|
} else {
|
|
@@ -10116,9 +10121,9 @@ var require_package33 = __commonJS({
|
|
|
10116
10121
|
}
|
|
10117
10122
|
});
|
|
10118
10123
|
|
|
10119
|
-
// ../../node_modules/.store/micromatch-npm-4.0.
|
|
10124
|
+
// ../../node_modules/.store/micromatch-npm-4.0.7-28fb7387ee/package/index.js
|
|
10120
10125
|
var require_package34 = __commonJS({
|
|
10121
|
-
"../../node_modules/.store/micromatch-npm-4.0.
|
|
10126
|
+
"../../node_modules/.store/micromatch-npm-4.0.7-28fb7387ee/package/index.js"(exports, module) {
|
|
10122
10127
|
"use strict";
|
|
10123
10128
|
var util = __require("util");
|
|
10124
10129
|
var braces = require_package32();
|
|
@@ -46294,9 +46299,9 @@ var require_package55 = __commonJS({
|
|
|
46294
46299
|
}
|
|
46295
46300
|
});
|
|
46296
46301
|
|
|
46297
|
-
// ../../node_modules/.store/backfill-cache-npm-5.8.
|
|
46302
|
+
// ../../node_modules/.store/backfill-cache-npm-5.8.1-446741c412/package/lib/hashFile.js
|
|
46298
46303
|
var require_hashFile = __commonJS({
|
|
46299
|
-
"../../node_modules/.store/backfill-cache-npm-5.8.
|
|
46304
|
+
"../../node_modules/.store/backfill-cache-npm-5.8.1-446741c412/package/lib/hashFile.js"(exports) {
|
|
46300
46305
|
"use strict";
|
|
46301
46306
|
var __createBinding = exports && exports.__createBinding || (Object.create ? function(o, m, k, k2) {
|
|
46302
46307
|
if (k2 === void 0)
|
|
@@ -46375,9 +46380,9 @@ var require_hashFile = __commonJS({
|
|
|
46375
46380
|
}
|
|
46376
46381
|
});
|
|
46377
46382
|
|
|
46378
|
-
// ../../node_modules/.store/backfill-cache-npm-5.8.
|
|
46383
|
+
// ../../node_modules/.store/backfill-cache-npm-5.8.1-446741c412/package/lib/CacheStorage.js
|
|
46379
46384
|
var require_CacheStorage = __commonJS({
|
|
46380
|
-
"../../node_modules/.store/backfill-cache-npm-5.8.
|
|
46385
|
+
"../../node_modules/.store/backfill-cache-npm-5.8.1-446741c412/package/lib/CacheStorage.js"(exports) {
|
|
46381
46386
|
"use strict";
|
|
46382
46387
|
var __importDefault = exports && exports.__importDefault || function(mod) {
|
|
46383
46388
|
return mod && mod.__esModule ? mod : { "default": mod };
|
|
@@ -46433,9 +46438,9 @@ var require_CacheStorage = __commonJS({
|
|
|
46433
46438
|
}
|
|
46434
46439
|
});
|
|
46435
46440
|
|
|
46436
|
-
// ../../node_modules/.store/backfill-cache-npm-5.8.
|
|
46441
|
+
// ../../node_modules/.store/backfill-cache-npm-5.8.1-446741c412/package/lib/AzureBlobCacheStorage.js
|
|
46437
46442
|
var require_AzureBlobCacheStorage = __commonJS({
|
|
46438
|
-
"../../node_modules/.store/backfill-cache-npm-5.8.
|
|
46443
|
+
"../../node_modules/.store/backfill-cache-npm-5.8.1-446741c412/package/lib/AzureBlobCacheStorage.js"(exports) {
|
|
46439
46444
|
"use strict";
|
|
46440
46445
|
var __createBinding = exports && exports.__createBinding || (Object.create ? function(o, m, k, k2) {
|
|
46441
46446
|
if (k2 === void 0)
|
|
@@ -46588,9 +46593,9 @@ var require_AzureBlobCacheStorage = __commonJS({
|
|
|
46588
46593
|
}
|
|
46589
46594
|
});
|
|
46590
46595
|
|
|
46591
|
-
// ../../node_modules/.store/backfill-cache-npm-5.8.
|
|
46596
|
+
// ../../node_modules/.store/backfill-cache-npm-5.8.1-446741c412/package/lib/LocalCacheStorage.js
|
|
46592
46597
|
var require_LocalCacheStorage = __commonJS({
|
|
46593
|
-
"../../node_modules/.store/backfill-cache-npm-5.8.
|
|
46598
|
+
"../../node_modules/.store/backfill-cache-npm-5.8.1-446741c412/package/lib/LocalCacheStorage.js"(exports) {
|
|
46594
46599
|
"use strict";
|
|
46595
46600
|
var __importDefault = exports && exports.__importDefault || function(mod) {
|
|
46596
46601
|
return mod && mod.__esModule ? mod : { "default": mod };
|
|
@@ -46622,7 +46627,7 @@ var require_LocalCacheStorage = __commonJS({
|
|
|
46622
46627
|
const dest = path_1.default.join(this.cwd, file);
|
|
46623
46628
|
try {
|
|
46624
46629
|
const stats = await Promise.all([fs_extra_1.default.stat(src), fs_extra_1.default.stat(dest)]);
|
|
46625
|
-
return stats[0].mtime !== stats[1].mtime;
|
|
46630
|
+
return stats[0].mtime.getTime() !== stats[1].mtime.getTime();
|
|
46626
46631
|
} catch {
|
|
46627
46632
|
return false;
|
|
46628
46633
|
}
|
|
@@ -48635,9 +48640,9 @@ var require_package69 = __commonJS({
|
|
|
48635
48640
|
}
|
|
48636
48641
|
});
|
|
48637
48642
|
|
|
48638
|
-
// ../../node_modules/.store/backfill-cache-npm-5.8.
|
|
48643
|
+
// ../../node_modules/.store/backfill-cache-npm-5.8.1-446741c412/package/lib/NpmCacheStorage.js
|
|
48639
48644
|
var require_NpmCacheStorage = __commonJS({
|
|
48640
|
-
"../../node_modules/.store/backfill-cache-npm-5.8.
|
|
48645
|
+
"../../node_modules/.store/backfill-cache-npm-5.8.1-446741c412/package/lib/NpmCacheStorage.js"(exports) {
|
|
48641
48646
|
"use strict";
|
|
48642
48647
|
var __importDefault = exports && exports.__importDefault || function(mod) {
|
|
48643
48648
|
return mod && mod.__esModule ? mod : { "default": mod };
|
|
@@ -48737,9 +48742,9 @@ var require_NpmCacheStorage = __commonJS({
|
|
|
48737
48742
|
}
|
|
48738
48743
|
});
|
|
48739
48744
|
|
|
48740
|
-
// ../../node_modules/.store/backfill-cache-npm-5.8.
|
|
48745
|
+
// ../../node_modules/.store/backfill-cache-npm-5.8.1-446741c412/package/lib/LocalSkipCacheStorage.js
|
|
48741
48746
|
var require_LocalSkipCacheStorage = __commonJS({
|
|
48742
|
-
"../../node_modules/.store/backfill-cache-npm-5.8.
|
|
48747
|
+
"../../node_modules/.store/backfill-cache-npm-5.8.1-446741c412/package/lib/LocalSkipCacheStorage.js"(exports) {
|
|
48743
48748
|
"use strict";
|
|
48744
48749
|
var __importDefault = exports && exports.__importDefault || function(mod) {
|
|
48745
48750
|
return mod && mod.__esModule ? mod : { "default": mod };
|
|
@@ -48779,9 +48784,9 @@ var require_LocalSkipCacheStorage = __commonJS({
|
|
|
48779
48784
|
}
|
|
48780
48785
|
});
|
|
48781
48786
|
|
|
48782
|
-
// ../../node_modules/.store/backfill-cache-npm-5.8.
|
|
48787
|
+
// ../../node_modules/.store/backfill-cache-npm-5.8.1-446741c412/package/lib/index.js
|
|
48783
48788
|
var require_lib14 = __commonJS({
|
|
48784
|
-
"../../node_modules/.store/backfill-cache-npm-5.8.
|
|
48789
|
+
"../../node_modules/.store/backfill-cache-npm-5.8.1-446741c412/package/lib/index.js"(exports) {
|
|
48785
48790
|
"use strict";
|
|
48786
48791
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
48787
48792
|
exports.getCacheStorageProvider = exports.isCustomProvider = exports.CacheStorage = void 0;
|
|
@@ -48830,9 +48835,9 @@ var require_lib14 = __commonJS({
|
|
|
48830
48835
|
}
|
|
48831
48836
|
});
|
|
48832
48837
|
|
|
48833
|
-
// ../../node_modules/.store/backfill-npm-6.2.
|
|
48838
|
+
// ../../node_modules/.store/backfill-npm-6.2.3-9950315c64/package/lib/api.js
|
|
48834
48839
|
var require_api = __commonJS({
|
|
48835
|
-
"../../node_modules/.store/backfill-npm-6.2.
|
|
48840
|
+
"../../node_modules/.store/backfill-npm-6.2.3-9950315c64/package/lib/api.js"(exports) {
|
|
48836
48841
|
"use strict";
|
|
48837
48842
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
48838
48843
|
exports.put = exports.fetch = exports.computeHashOfOutput = exports.computeHash = exports.makeLogger = void 0;
|
|
@@ -49007,7 +49012,7 @@ export {
|
|
|
49007
49012
|
* Released under the MIT License.
|
|
49008
49013
|
*)
|
|
49009
49014
|
|
|
49010
|
-
.store/fill-range-npm-7.
|
|
49015
|
+
.store/fill-range-npm-7.1.1-bf491486db/package/index.js:
|
|
49011
49016
|
(*!
|
|
49012
49017
|
* fill-range <https://github.com/jonschlinkert/fill-range>
|
|
49013
49018
|
*
|
|
@@ -6,8 +6,8 @@ const __filename = topLevelUrl.fileURLToPath(import.meta.url);
|
|
|
6
6
|
const __dirname = topLevelPath.dirname(__filename);
|
|
7
7
|
import {
|
|
8
8
|
require_dist
|
|
9
|
-
} from "./chunk-
|
|
10
|
-
import "./chunk-
|
|
9
|
+
} from "./chunk-VCWIWY5Y.js";
|
|
10
|
+
import "./chunk-TXSHKS6T.js";
|
|
11
11
|
import {
|
|
12
12
|
__name,
|
|
13
13
|
__toESM
|