@forsakringskassan/docs-generator 2.43.0 → 3.0.1
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/{create-markdown-renderer-CO5Te-tH.mjs → create-markdown-renderer-DUwT9Ka3.mjs} +5 -5
- package/dist/{create-markdown-renderer-CO5Te-tH.mjs.map → create-markdown-renderer-DUwT9Ka3.mjs.map} +1 -1
- package/dist/{format-code.worker-D7IOA5jE.mjs → format-code.worker-CXHm5Lxb.mjs} +2 -2
- package/dist/{format-code.worker-D7IOA5jE.mjs.map → format-code.worker-CXHm5Lxb.mjs.map} +1 -1
- package/dist/index.mjs +190 -179
- package/dist/index.mjs.map +1 -1
- package/dist/markdown.mjs +3 -3
- package/dist/processors/selectable-version.mjs +43 -0
- package/dist/runtime.mjs +30590 -24196
- package/dist/style/core.css +20 -0
- package/dist/style/index.css +20 -0
- package/dist/{vendor-BImorfXU.mjs → vendor-C0JAkCK-.mjs} +451 -426
- package/dist/{vendor-BImorfXU.mjs.map → vendor-C0JAkCK-.mjs.map} +1 -1
- package/dist/{vue3-fRI2JWNs.mjs → vue3-RC792pPN.mjs} +59 -59
- package/dist/{vue3-fRI2JWNs.mjs.map → vue3-RC792pPN.mjs.map} +1 -1
- package/dist/{worker-DEFReXeu.mjs → worker-CpM7V-Ue.mjs} +2 -2
- package/dist/{worker-DEFReXeu.mjs.map → worker-CpM7V-Ue.mjs.map} +1 -1
- package/package.json +2 -2
|
@@ -13852,22 +13852,22 @@ var hasRequiredCiInfo;
|
|
|
13852
13852
|
function requireCiInfo () {
|
|
13853
13853
|
if (hasRequiredCiInfo) return ciInfo;
|
|
13854
13854
|
hasRequiredCiInfo = 1;
|
|
13855
|
-
(function (exports
|
|
13855
|
+
(function (exports) {
|
|
13856
13856
|
|
|
13857
13857
|
const vendors = require$$0;
|
|
13858
13858
|
|
|
13859
13859
|
const env = process.env;
|
|
13860
13860
|
|
|
13861
13861
|
// Used for testing only
|
|
13862
|
-
Object.defineProperty(exports
|
|
13862
|
+
Object.defineProperty(exports, '_vendors', {
|
|
13863
13863
|
value: vendors.map(function (v) {
|
|
13864
13864
|
return v.constant
|
|
13865
13865
|
})
|
|
13866
13866
|
});
|
|
13867
13867
|
|
|
13868
|
-
exports
|
|
13869
|
-
exports
|
|
13870
|
-
exports
|
|
13868
|
+
exports.name = null;
|
|
13869
|
+
exports.isPR = null;
|
|
13870
|
+
exports.id = null;
|
|
13871
13871
|
|
|
13872
13872
|
if (env.CI !== 'false') {
|
|
13873
13873
|
vendors.forEach(function (vendor) {
|
|
@@ -13876,19 +13876,19 @@ function requireCiInfo () {
|
|
|
13876
13876
|
return checkEnv(obj)
|
|
13877
13877
|
});
|
|
13878
13878
|
|
|
13879
|
-
exports
|
|
13879
|
+
exports[vendor.constant] = isCI;
|
|
13880
13880
|
|
|
13881
13881
|
if (!isCI) {
|
|
13882
13882
|
return
|
|
13883
13883
|
}
|
|
13884
13884
|
|
|
13885
|
-
exports
|
|
13886
|
-
exports
|
|
13887
|
-
exports
|
|
13885
|
+
exports.name = vendor.name;
|
|
13886
|
+
exports.isPR = checkPR(vendor);
|
|
13887
|
+
exports.id = vendor.constant;
|
|
13888
13888
|
});
|
|
13889
13889
|
}
|
|
13890
13890
|
|
|
13891
|
-
exports
|
|
13891
|
+
exports.isCI = !!(
|
|
13892
13892
|
env.CI !== 'false' && // Bypass all checks if CI env is explicitly set to 'false'
|
|
13893
13893
|
(env.BUILD_ID || // Jenkins, Cloudbees
|
|
13894
13894
|
env.BUILD_NUMBER || // Jenkins, TeamCity
|
|
@@ -13899,7 +13899,7 @@ function requireCiInfo () {
|
|
|
13899
13899
|
env.CI_NAME || // Codeship and others
|
|
13900
13900
|
env.CONTINUOUS_INTEGRATION || // Travis CI, Cirrus CI
|
|
13901
13901
|
env.RUN_ID || // TaskCluster, dsari
|
|
13902
|
-
exports
|
|
13902
|
+
exports.name ||
|
|
13903
13903
|
false)
|
|
13904
13904
|
);
|
|
13905
13905
|
|
|
@@ -15005,7 +15005,7 @@ var hasRequiredFs;
|
|
|
15005
15005
|
function requireFs () {
|
|
15006
15006
|
if (hasRequiredFs) return fs$6;
|
|
15007
15007
|
hasRequiredFs = 1;
|
|
15008
|
-
(function (exports
|
|
15008
|
+
(function (exports) {
|
|
15009
15009
|
// This is adapted from https://github.com/normalize/mz
|
|
15010
15010
|
// Copyright (c) 2014-2016 Jonathan Ong me@jongleberry.com and Contributors
|
|
15011
15011
|
const u = requireUniversalify().fromCallback;
|
|
@@ -15060,16 +15060,16 @@ function requireFs () {
|
|
|
15060
15060
|
});
|
|
15061
15061
|
|
|
15062
15062
|
// Export cloned fs:
|
|
15063
|
-
Object.assign(exports
|
|
15063
|
+
Object.assign(exports, fs);
|
|
15064
15064
|
|
|
15065
15065
|
// Universalify async methods:
|
|
15066
15066
|
api.forEach(method => {
|
|
15067
|
-
exports
|
|
15067
|
+
exports[method] = u(fs[method]);
|
|
15068
15068
|
});
|
|
15069
15069
|
|
|
15070
15070
|
// We differ from mz/fs in that we still ship the old, broken, fs.exists()
|
|
15071
15071
|
// since we are a drop-in replacement for the native module
|
|
15072
|
-
exports
|
|
15072
|
+
exports.exists = function (filename, callback) {
|
|
15073
15073
|
if (typeof callback === 'function') {
|
|
15074
15074
|
return fs.exists(filename, callback)
|
|
15075
15075
|
}
|
|
@@ -15080,7 +15080,7 @@ function requireFs () {
|
|
|
15080
15080
|
|
|
15081
15081
|
// fs.read(), fs.write(), fs.readv(), & fs.writev() need special treatment due to multiple callback args
|
|
15082
15082
|
|
|
15083
|
-
exports
|
|
15083
|
+
exports.read = function (fd, buffer, offset, length, position, callback) {
|
|
15084
15084
|
if (typeof callback === 'function') {
|
|
15085
15085
|
return fs.read(fd, buffer, offset, length, position, callback)
|
|
15086
15086
|
}
|
|
@@ -15097,7 +15097,7 @@ function requireFs () {
|
|
|
15097
15097
|
// OR
|
|
15098
15098
|
// fs.write(fd, string[, position[, encoding]], callback)
|
|
15099
15099
|
// We need to handle both cases, so we use ...args
|
|
15100
|
-
exports
|
|
15100
|
+
exports.write = function (fd, buffer, ...args) {
|
|
15101
15101
|
if (typeof args[args.length - 1] === 'function') {
|
|
15102
15102
|
return fs.write(fd, buffer, ...args)
|
|
15103
15103
|
}
|
|
@@ -15113,7 +15113,7 @@ function requireFs () {
|
|
|
15113
15113
|
// Function signature is
|
|
15114
15114
|
// s.readv(fd, buffers[, position], callback)
|
|
15115
15115
|
// We need to handle the optional arg, so we use ...args
|
|
15116
|
-
exports
|
|
15116
|
+
exports.readv = function (fd, buffers, ...args) {
|
|
15117
15117
|
if (typeof args[args.length - 1] === 'function') {
|
|
15118
15118
|
return fs.readv(fd, buffers, ...args)
|
|
15119
15119
|
}
|
|
@@ -15129,7 +15129,7 @@ function requireFs () {
|
|
|
15129
15129
|
// Function signature is
|
|
15130
15130
|
// s.writev(fd, buffers[, position], callback)
|
|
15131
15131
|
// We need to handle the optional arg, so we use ...args
|
|
15132
|
-
exports
|
|
15132
|
+
exports.writev = function (fd, buffers, ...args) {
|
|
15133
15133
|
if (typeof args[args.length - 1] === 'function') {
|
|
15134
15134
|
return fs.writev(fd, buffers, ...args)
|
|
15135
15135
|
}
|
|
@@ -15144,7 +15144,7 @@ function requireFs () {
|
|
|
15144
15144
|
|
|
15145
15145
|
// fs.realpath.native sometimes not available if fs is monkey-patched
|
|
15146
15146
|
if (typeof fs.realpath.native === 'function') {
|
|
15147
|
-
exports
|
|
15147
|
+
exports.realpath.native = u(fs.realpath.native);
|
|
15148
15148
|
} else {
|
|
15149
15149
|
process.emitWarning(
|
|
15150
15150
|
'fs.realpath.native is not a function. Is fs being monkey-patched?',
|
|
@@ -15269,30 +15269,47 @@ function requireUtimes () {
|
|
|
15269
15269
|
const u = requireUniversalify().fromPromise;
|
|
15270
15270
|
|
|
15271
15271
|
async function utimesMillis (path, atime, mtime) {
|
|
15272
|
-
// if (!HAS_MILLIS_RES) return fs.utimes(path, atime, mtime, callback)
|
|
15273
15272
|
const fd = await fs.open(path, 'r+');
|
|
15274
15273
|
|
|
15275
|
-
let
|
|
15274
|
+
let error = null;
|
|
15276
15275
|
|
|
15277
15276
|
try {
|
|
15278
15277
|
await fs.futimes(fd, atime, mtime);
|
|
15278
|
+
} catch (futimesErr) {
|
|
15279
|
+
error = futimesErr;
|
|
15279
15280
|
} finally {
|
|
15280
15281
|
try {
|
|
15281
15282
|
await fs.close(fd);
|
|
15282
|
-
} catch (
|
|
15283
|
-
|
|
15283
|
+
} catch (closeErr) {
|
|
15284
|
+
if (!error) error = closeErr;
|
|
15284
15285
|
}
|
|
15285
15286
|
}
|
|
15286
15287
|
|
|
15287
|
-
if (
|
|
15288
|
-
throw
|
|
15288
|
+
if (error) {
|
|
15289
|
+
throw error
|
|
15289
15290
|
}
|
|
15290
15291
|
}
|
|
15291
15292
|
|
|
15292
15293
|
function utimesMillisSync (path, atime, mtime) {
|
|
15293
15294
|
const fd = fs.openSync(path, 'r+');
|
|
15294
|
-
|
|
15295
|
-
|
|
15295
|
+
|
|
15296
|
+
let error = null;
|
|
15297
|
+
|
|
15298
|
+
try {
|
|
15299
|
+
fs.futimesSync(fd, atime, mtime);
|
|
15300
|
+
} catch (futimesErr) {
|
|
15301
|
+
error = futimesErr;
|
|
15302
|
+
} finally {
|
|
15303
|
+
try {
|
|
15304
|
+
fs.closeSync(fd);
|
|
15305
|
+
} catch (closeErr) {
|
|
15306
|
+
if (!error) error = closeErr;
|
|
15307
|
+
}
|
|
15308
|
+
}
|
|
15309
|
+
|
|
15310
|
+
if (error) {
|
|
15311
|
+
throw error
|
|
15312
|
+
}
|
|
15296
15313
|
}
|
|
15297
15314
|
|
|
15298
15315
|
utimes = {
|
|
@@ -16056,14 +16073,14 @@ function requireLink () {
|
|
|
16056
16073
|
async function createLink (srcpath, dstpath) {
|
|
16057
16074
|
let dstStat;
|
|
16058
16075
|
try {
|
|
16059
|
-
dstStat = await fs.lstat(dstpath);
|
|
16076
|
+
dstStat = await fs.lstat(dstpath, { bigint: true });
|
|
16060
16077
|
} catch {
|
|
16061
16078
|
// ignore error
|
|
16062
16079
|
}
|
|
16063
16080
|
|
|
16064
16081
|
let srcStat;
|
|
16065
16082
|
try {
|
|
16066
|
-
srcStat = await fs.lstat(srcpath);
|
|
16083
|
+
srcStat = await fs.lstat(srcpath, { bigint: true });
|
|
16067
16084
|
} catch (err) {
|
|
16068
16085
|
err.message = err.message.replace('lstat', 'ensureLink');
|
|
16069
16086
|
throw err
|
|
@@ -16085,11 +16102,11 @@ function requireLink () {
|
|
|
16085
16102
|
function createLinkSync (srcpath, dstpath) {
|
|
16086
16103
|
let dstStat;
|
|
16087
16104
|
try {
|
|
16088
|
-
dstStat = fs.lstatSync(dstpath);
|
|
16105
|
+
dstStat = fs.lstatSync(dstpath, { bigint: true });
|
|
16089
16106
|
} catch {}
|
|
16090
16107
|
|
|
16091
16108
|
try {
|
|
16092
|
-
const srcStat = fs.lstatSync(srcpath);
|
|
16109
|
+
const srcStat = fs.lstatSync(srcpath, { bigint: true });
|
|
16093
16110
|
if (dstStat && areIdentical(srcStat, dstStat)) return
|
|
16094
16111
|
} catch (err) {
|
|
16095
16112
|
err.message = err.message.replace('lstat', 'ensureLink');
|
|
@@ -16293,18 +16310,18 @@ function requireSymlink () {
|
|
|
16293
16310
|
// (standard symlink behavior) or fall back to cwd if that doesn't exist
|
|
16294
16311
|
let srcStat;
|
|
16295
16312
|
if (path.isAbsolute(srcpath)) {
|
|
16296
|
-
srcStat = await fs.stat(srcpath);
|
|
16313
|
+
srcStat = await fs.stat(srcpath, { bigint: true });
|
|
16297
16314
|
} else {
|
|
16298
16315
|
const dstdir = path.dirname(dstpath);
|
|
16299
16316
|
const relativeToDst = path.join(dstdir, srcpath);
|
|
16300
16317
|
try {
|
|
16301
|
-
srcStat = await fs.stat(relativeToDst);
|
|
16318
|
+
srcStat = await fs.stat(relativeToDst, { bigint: true });
|
|
16302
16319
|
} catch {
|
|
16303
|
-
srcStat = await fs.stat(srcpath);
|
|
16320
|
+
srcStat = await fs.stat(srcpath, { bigint: true });
|
|
16304
16321
|
}
|
|
16305
16322
|
}
|
|
16306
16323
|
|
|
16307
|
-
const dstStat = await fs.stat(dstpath);
|
|
16324
|
+
const dstStat = await fs.stat(dstpath, { bigint: true });
|
|
16308
16325
|
if (areIdentical(srcStat, dstStat)) return
|
|
16309
16326
|
}
|
|
16310
16327
|
|
|
@@ -16330,18 +16347,18 @@ function requireSymlink () {
|
|
|
16330
16347
|
// (standard symlink behavior) or fall back to cwd if that doesn't exist
|
|
16331
16348
|
let srcStat;
|
|
16332
16349
|
if (path.isAbsolute(srcpath)) {
|
|
16333
|
-
srcStat = fs.statSync(srcpath);
|
|
16350
|
+
srcStat = fs.statSync(srcpath, { bigint: true });
|
|
16334
16351
|
} else {
|
|
16335
16352
|
const dstdir = path.dirname(dstpath);
|
|
16336
16353
|
const relativeToDst = path.join(dstdir, srcpath);
|
|
16337
16354
|
try {
|
|
16338
|
-
srcStat = fs.statSync(relativeToDst);
|
|
16355
|
+
srcStat = fs.statSync(relativeToDst, { bigint: true });
|
|
16339
16356
|
} catch {
|
|
16340
|
-
srcStat = fs.statSync(srcpath);
|
|
16357
|
+
srcStat = fs.statSync(srcpath, { bigint: true });
|
|
16341
16358
|
}
|
|
16342
16359
|
}
|
|
16343
16360
|
|
|
16344
|
-
const dstStat = fs.statSync(dstpath);
|
|
16361
|
+
const dstStat = fs.statSync(dstpath, { bigint: true });
|
|
16345
16362
|
if (areIdentical(srcStat, dstStat)) return
|
|
16346
16363
|
}
|
|
16347
16364
|
|
|
@@ -17273,11 +17290,15 @@ function keysFromSelector(selector, opts) {
|
|
|
17273
17290
|
} = selector(createProxy());
|
|
17274
17291
|
const keySeparator = opts?.keySeparator ?? '.';
|
|
17275
17292
|
const nsSeparator = opts?.nsSeparator ?? ':';
|
|
17293
|
+
const strict = opts?.enableSelector === 'strict';
|
|
17276
17294
|
if (path.length > 1 && nsSeparator) {
|
|
17277
17295
|
const ns = opts?.ns;
|
|
17278
|
-
const
|
|
17279
|
-
if (
|
|
17280
|
-
|
|
17296
|
+
const nsList = strict ? Array.isArray(ns) ? ns : ns ? [ns] : null : Array.isArray(ns) ? ns : null;
|
|
17297
|
+
if (nsList) {
|
|
17298
|
+
const candidates = strict ? nsList : nsList.length > 1 ? nsList.slice(1) : [];
|
|
17299
|
+
if (candidates.includes(path[0])) {
|
|
17300
|
+
return `${path[0]}${nsSeparator}${path.slice(1).join(keySeparator)}`;
|
|
17301
|
+
}
|
|
17281
17302
|
}
|
|
17282
17303
|
}
|
|
17283
17304
|
return path.join(keySeparator);
|
|
@@ -18476,6 +18497,7 @@ const get$1 = () => ({
|
|
|
18476
18497
|
nsSeparator: ':',
|
|
18477
18498
|
pluralSeparator: '_',
|
|
18478
18499
|
contextSeparator: '_',
|
|
18500
|
+
enableSelector: false,
|
|
18479
18501
|
partialBundledLanguages: false,
|
|
18480
18502
|
saveMissing: false,
|
|
18481
18503
|
updateMissing: false,
|
|
@@ -18832,7 +18854,8 @@ class I18n extends EventEmitter {
|
|
|
18832
18854
|
}
|
|
18833
18855
|
return deferred;
|
|
18834
18856
|
}
|
|
18835
|
-
getFixedT(lng, ns, keyPrefix) {
|
|
18857
|
+
getFixedT(lng, ns, keyPrefix, fixedOpts) {
|
|
18858
|
+
const scopeNs = fixedOpts?.scopeNs;
|
|
18836
18859
|
const fixedT = (key, opts, ...rest) => {
|
|
18837
18860
|
let o;
|
|
18838
18861
|
if (typeof opts !== 'object') {
|
|
@@ -18844,12 +18867,14 @@ class I18n extends EventEmitter {
|
|
|
18844
18867
|
}
|
|
18845
18868
|
o.lng = o.lng || fixedT.lng;
|
|
18846
18869
|
o.lngs = o.lngs || fixedT.lngs;
|
|
18870
|
+
const explicitCallNs = o.ns !== undefined && o.ns !== null;
|
|
18847
18871
|
o.ns = o.ns || fixedT.ns;
|
|
18848
18872
|
if (o.keyPrefix !== '') o.keyPrefix = o.keyPrefix || keyPrefix || fixedT.keyPrefix;
|
|
18849
18873
|
const selectorOpts = {
|
|
18850
18874
|
...this.options,
|
|
18851
18875
|
...o
|
|
18852
18876
|
};
|
|
18877
|
+
if (Array.isArray(scopeNs) && !explicitCallNs) selectorOpts.ns = scopeNs;
|
|
18853
18878
|
if (typeof o.keyPrefix === 'function') o.keyPrefix = keysFromSelector(o.keyPrefix, selectorOpts);
|
|
18854
18879
|
const keySeparator = this.options.keySeparator || '.';
|
|
18855
18880
|
let resultKey;
|
|
@@ -40138,7 +40163,7 @@ var hasRequiredSafeBuffer;
|
|
|
40138
40163
|
function requireSafeBuffer () {
|
|
40139
40164
|
if (hasRequiredSafeBuffer) return safeBuffer.exports;
|
|
40140
40165
|
hasRequiredSafeBuffer = 1;
|
|
40141
|
-
(function (module, exports
|
|
40166
|
+
(function (module, exports) {
|
|
40142
40167
|
/* eslint-disable node/no-deprecated-api */
|
|
40143
40168
|
var buffer = require$$0$5;
|
|
40144
40169
|
var Buffer = buffer.Buffer;
|
|
@@ -40153,8 +40178,8 @@ function requireSafeBuffer () {
|
|
|
40153
40178
|
module.exports = buffer;
|
|
40154
40179
|
} else {
|
|
40155
40180
|
// Copy properties from require('buffer')
|
|
40156
|
-
copyProps(buffer, exports
|
|
40157
|
-
exports
|
|
40181
|
+
copyProps(buffer, exports);
|
|
40182
|
+
exports.Buffer = SafeBuffer;
|
|
40158
40183
|
}
|
|
40159
40184
|
|
|
40160
40185
|
function SafeBuffer (arg, encodingOrOffset, length) {
|
|
@@ -44243,7 +44268,7 @@ var hasRequiredBrowser$1;
|
|
|
44243
44268
|
function requireBrowser$1 () {
|
|
44244
44269
|
if (hasRequiredBrowser$1) return browser$1.exports;
|
|
44245
44270
|
hasRequiredBrowser$1 = 1;
|
|
44246
|
-
(function (module, exports
|
|
44271
|
+
(function (module, exports) {
|
|
44247
44272
|
|
|
44248
44273
|
function _typeof(obj) { if (typeof Symbol === "function" && typeof Symbol.iterator === "symbol") { _typeof = function _typeof(obj) { return typeof obj; }; } else { _typeof = function _typeof(obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; } return _typeof(obj); }
|
|
44249
44274
|
|
|
@@ -44252,17 +44277,17 @@ function requireBrowser$1 () {
|
|
|
44252
44277
|
/**
|
|
44253
44278
|
* This is the web browser implementation of `debug()`.
|
|
44254
44279
|
*/
|
|
44255
|
-
exports
|
|
44256
|
-
exports
|
|
44257
|
-
exports
|
|
44258
|
-
exports
|
|
44259
|
-
exports
|
|
44260
|
-
exports
|
|
44280
|
+
exports.log = log;
|
|
44281
|
+
exports.formatArgs = formatArgs;
|
|
44282
|
+
exports.save = save;
|
|
44283
|
+
exports.load = load;
|
|
44284
|
+
exports.useColors = useColors;
|
|
44285
|
+
exports.storage = localstorage();
|
|
44261
44286
|
/**
|
|
44262
44287
|
* Colors.
|
|
44263
44288
|
*/
|
|
44264
44289
|
|
|
44265
|
-
exports
|
|
44290
|
+
exports.colors = ['#0000CC', '#0000FF', '#0033CC', '#0033FF', '#0066CC', '#0066FF', '#0099CC', '#0099FF', '#00CC00', '#00CC33', '#00CC66', '#00CC99', '#00CCCC', '#00CCFF', '#3300CC', '#3300FF', '#3333CC', '#3333FF', '#3366CC', '#3366FF', '#3399CC', '#3399FF', '#33CC00', '#33CC33', '#33CC66', '#33CC99', '#33CCCC', '#33CCFF', '#6600CC', '#6600FF', '#6633CC', '#6633FF', '#66CC00', '#66CC33', '#9900CC', '#9900FF', '#9933CC', '#9933FF', '#99CC00', '#99CC33', '#CC0000', '#CC0033', '#CC0066', '#CC0099', '#CC00CC', '#CC00FF', '#CC3300', '#CC3333', '#CC3366', '#CC3399', '#CC33CC', '#CC33FF', '#CC6600', '#CC6633', '#CC9900', '#CC9933', '#CCCC00', '#CCCC33', '#FF0000', '#FF0033', '#FF0066', '#FF0099', '#FF00CC', '#FF00FF', '#FF3300', '#FF3333', '#FF3366', '#FF3399', '#FF33CC', '#FF33FF', '#FF6600', '#FF6633', '#FF9900', '#FF9933', '#FFCC00', '#FFCC33'];
|
|
44266
44291
|
/**
|
|
44267
44292
|
* Currently only WebKit-based Web Inspectors, Firefox >= v31,
|
|
44268
44293
|
* and the Firebug extension (any Firefox version) are known
|
|
@@ -44355,9 +44380,9 @@ function requireBrowser$1 () {
|
|
|
44355
44380
|
function save(namespaces) {
|
|
44356
44381
|
try {
|
|
44357
44382
|
if (namespaces) {
|
|
44358
|
-
exports
|
|
44383
|
+
exports.storage.setItem('debug', namespaces);
|
|
44359
44384
|
} else {
|
|
44360
|
-
exports
|
|
44385
|
+
exports.storage.removeItem('debug');
|
|
44361
44386
|
}
|
|
44362
44387
|
} catch (error) {// Swallow
|
|
44363
44388
|
// XXX (@Qix-) should we be logging these?
|
|
@@ -44375,7 +44400,7 @@ function requireBrowser$1 () {
|
|
|
44375
44400
|
var r;
|
|
44376
44401
|
|
|
44377
44402
|
try {
|
|
44378
|
-
r = exports
|
|
44403
|
+
r = exports.storage.getItem('debug');
|
|
44379
44404
|
} catch (error) {} // Swallow
|
|
44380
44405
|
// XXX (@Qix-) should we be logging these?
|
|
44381
44406
|
// If debug isn't set in LS, and we're in Electron, try to load $DEBUG
|
|
@@ -44409,7 +44434,7 @@ function requireBrowser$1 () {
|
|
|
44409
44434
|
}
|
|
44410
44435
|
}
|
|
44411
44436
|
|
|
44412
|
-
module.exports = requireCommon()(exports
|
|
44437
|
+
module.exports = requireCommon()(exports);
|
|
44413
44438
|
var formatters = module.exports.formatters;
|
|
44414
44439
|
/**
|
|
44415
44440
|
* Map %j to `JSON.stringify()`, since no Web Inspectors do that by default.
|
|
@@ -44466,7 +44491,7 @@ var hasRequiredNode;
|
|
|
44466
44491
|
function requireNode () {
|
|
44467
44492
|
if (hasRequiredNode) return node.exports;
|
|
44468
44493
|
hasRequiredNode = 1;
|
|
44469
|
-
(function (module, exports
|
|
44494
|
+
(function (module, exports) {
|
|
44470
44495
|
|
|
44471
44496
|
/**
|
|
44472
44497
|
* Module dependencies.
|
|
@@ -44479,17 +44504,17 @@ function requireNode () {
|
|
|
44479
44504
|
*/
|
|
44480
44505
|
|
|
44481
44506
|
|
|
44482
|
-
exports
|
|
44483
|
-
exports
|
|
44484
|
-
exports
|
|
44485
|
-
exports
|
|
44486
|
-
exports
|
|
44487
|
-
exports
|
|
44507
|
+
exports.init = init;
|
|
44508
|
+
exports.log = log;
|
|
44509
|
+
exports.formatArgs = formatArgs;
|
|
44510
|
+
exports.save = save;
|
|
44511
|
+
exports.load = load;
|
|
44512
|
+
exports.useColors = useColors;
|
|
44488
44513
|
/**
|
|
44489
44514
|
* Colors.
|
|
44490
44515
|
*/
|
|
44491
44516
|
|
|
44492
|
-
exports
|
|
44517
|
+
exports.colors = [6, 2, 3, 4, 5, 1];
|
|
44493
44518
|
|
|
44494
44519
|
try {
|
|
44495
44520
|
// Optional dependency (as in, doesn't need to be installed, NOT like optionalDependencies in package.json)
|
|
@@ -44497,7 +44522,7 @@ function requireNode () {
|
|
|
44497
44522
|
var supportsColor = requireBrowser();
|
|
44498
44523
|
|
|
44499
44524
|
if (supportsColor && (supportsColor.stderr || supportsColor).level >= 2) {
|
|
44500
|
-
exports
|
|
44525
|
+
exports.colors = [20, 21, 26, 27, 32, 33, 38, 39, 40, 41, 42, 43, 44, 45, 56, 57, 62, 63, 68, 69, 74, 75, 76, 77, 78, 79, 80, 81, 92, 93, 98, 99, 112, 113, 128, 129, 134, 135, 148, 149, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 178, 179, 184, 185, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 214, 215, 220, 221];
|
|
44501
44526
|
}
|
|
44502
44527
|
} catch (error) {} // Swallow - we only care if `supports-color` is available; it doesn't have to be.
|
|
44503
44528
|
|
|
@@ -44508,7 +44533,7 @@ function requireNode () {
|
|
|
44508
44533
|
*/
|
|
44509
44534
|
|
|
44510
44535
|
|
|
44511
|
-
exports
|
|
44536
|
+
exports.inspectOpts = Object.keys(process.env).filter(function (key) {
|
|
44512
44537
|
return /^debug_/i.test(key);
|
|
44513
44538
|
}).reduce(function (obj, key) {
|
|
44514
44539
|
// Camel-case
|
|
@@ -44536,7 +44561,7 @@ function requireNode () {
|
|
|
44536
44561
|
*/
|
|
44537
44562
|
|
|
44538
44563
|
function useColors() {
|
|
44539
|
-
return 'colors' in exports
|
|
44564
|
+
return 'colors' in exports.inspectOpts ? Boolean(exports.inspectOpts.colors) : tty.isatty(process.stderr.fd);
|
|
44540
44565
|
}
|
|
44541
44566
|
/**
|
|
44542
44567
|
* Adds ANSI color escape codes if enabled.
|
|
@@ -44561,7 +44586,7 @@ function requireNode () {
|
|
|
44561
44586
|
}
|
|
44562
44587
|
|
|
44563
44588
|
function getDate() {
|
|
44564
|
-
if (exports
|
|
44589
|
+
if (exports.inspectOpts.hideDate) {
|
|
44565
44590
|
return '';
|
|
44566
44591
|
}
|
|
44567
44592
|
|
|
@@ -44613,14 +44638,14 @@ function requireNode () {
|
|
|
44613
44638
|
|
|
44614
44639
|
function init(debug) {
|
|
44615
44640
|
debug.inspectOpts = {};
|
|
44616
|
-
var keys = Object.keys(exports
|
|
44641
|
+
var keys = Object.keys(exports.inspectOpts);
|
|
44617
44642
|
|
|
44618
44643
|
for (var i = 0; i < keys.length; i++) {
|
|
44619
|
-
debug.inspectOpts[keys[i]] = exports
|
|
44644
|
+
debug.inspectOpts[keys[i]] = exports.inspectOpts[keys[i]];
|
|
44620
44645
|
}
|
|
44621
44646
|
}
|
|
44622
44647
|
|
|
44623
|
-
module.exports = requireCommon()(exports
|
|
44648
|
+
module.exports = requireCommon()(exports);
|
|
44624
44649
|
var formatters = module.exports.formatters;
|
|
44625
44650
|
/**
|
|
44626
44651
|
* Map %o to `util.inspect()`, all on a single line.
|
|
@@ -44669,9 +44694,9 @@ var hasRequiredClient;
|
|
|
44669
44694
|
function requireClient () {
|
|
44670
44695
|
if (hasRequiredClient) return client$2.exports;
|
|
44671
44696
|
hasRequiredClient = 1;
|
|
44672
|
-
(function (module, exports
|
|
44697
|
+
(function (module, exports) {
|
|
44673
44698
|
|
|
44674
|
-
Object.defineProperty(exports
|
|
44699
|
+
Object.defineProperty(exports, "__esModule", {
|
|
44675
44700
|
value: true
|
|
44676
44701
|
});
|
|
44677
44702
|
|
|
@@ -44812,8 +44837,8 @@ function requireClient () {
|
|
|
44812
44837
|
return Client;
|
|
44813
44838
|
}(_events2.default.EventEmitter);
|
|
44814
44839
|
|
|
44815
|
-
exports
|
|
44816
|
-
module.exports = exports
|
|
44840
|
+
exports.default = Client;
|
|
44841
|
+
module.exports = exports['default'];
|
|
44817
44842
|
} (client$2, client$2.exports));
|
|
44818
44843
|
return client$2.exports;
|
|
44819
44844
|
}
|
|
@@ -48864,9 +48889,9 @@ var hasRequiredServer;
|
|
|
48864
48889
|
function requireServer () {
|
|
48865
48890
|
if (hasRequiredServer) return server$1.exports;
|
|
48866
48891
|
hasRequiredServer = 1;
|
|
48867
|
-
(function (module, exports
|
|
48892
|
+
(function (module, exports) {
|
|
48868
48893
|
|
|
48869
|
-
Object.defineProperty(exports
|
|
48894
|
+
Object.defineProperty(exports, "__esModule", {
|
|
48870
48895
|
value: true
|
|
48871
48896
|
});
|
|
48872
48897
|
|
|
@@ -49258,8 +49283,8 @@ function requireServer () {
|
|
|
49258
49283
|
return Server;
|
|
49259
49284
|
}(_events2.default.EventEmitter);
|
|
49260
49285
|
|
|
49261
|
-
exports
|
|
49262
|
-
module.exports = exports
|
|
49286
|
+
exports.default = Server;
|
|
49287
|
+
module.exports = exports['default'];
|
|
49263
49288
|
} (server$1, server$1.exports));
|
|
49264
49289
|
return server$1.exports;
|
|
49265
49290
|
}
|
|
@@ -49269,9 +49294,9 @@ var hasRequiredSrc;
|
|
|
49269
49294
|
function requireSrc () {
|
|
49270
49295
|
if (hasRequiredSrc) return src$1.exports;
|
|
49271
49296
|
hasRequiredSrc = 1;
|
|
49272
|
-
(function (module, exports
|
|
49297
|
+
(function (module, exports) {
|
|
49273
49298
|
|
|
49274
|
-
Object.defineProperty(exports
|
|
49299
|
+
Object.defineProperty(exports, "__esModule", {
|
|
49275
49300
|
value: true
|
|
49276
49301
|
});
|
|
49277
49302
|
|
|
@@ -49290,7 +49315,7 @@ function requireSrc () {
|
|
|
49290
49315
|
// Need to keep track of LR servers when notifying
|
|
49291
49316
|
var servers = [];
|
|
49292
49317
|
|
|
49293
|
-
exports
|
|
49318
|
+
exports.default = tinylr;
|
|
49294
49319
|
|
|
49295
49320
|
// Expose Server / Client objects
|
|
49296
49321
|
|
|
@@ -49329,7 +49354,7 @@ function requireSrc () {
|
|
|
49329
49354
|
});
|
|
49330
49355
|
done();
|
|
49331
49356
|
}
|
|
49332
|
-
module.exports = exports
|
|
49357
|
+
module.exports = exports['default'];
|
|
49333
49358
|
} (src$1, src$1.exports));
|
|
49334
49359
|
return src$1.exports;
|
|
49335
49360
|
}
|
|
@@ -50786,13 +50811,13 @@ var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__ge
|
|
|
50786
50811
|
|
|
50787
50812
|
// node_modules/fast-glob/out/utils/array.js
|
|
50788
50813
|
var require_array = __commonJS({
|
|
50789
|
-
"node_modules/fast-glob/out/utils/array.js"(exports
|
|
50790
|
-
Object.defineProperty(exports
|
|
50791
|
-
exports
|
|
50814
|
+
"node_modules/fast-glob/out/utils/array.js"(exports) {
|
|
50815
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
50816
|
+
exports.splitWhen = exports.flatten = void 0;
|
|
50792
50817
|
function flatten(items) {
|
|
50793
50818
|
return items.reduce((collection, item) => [].concat(collection, item), []);
|
|
50794
50819
|
}
|
|
50795
|
-
exports
|
|
50820
|
+
exports.flatten = flatten;
|
|
50796
50821
|
function splitWhen(items, predicate) {
|
|
50797
50822
|
const result = [[]];
|
|
50798
50823
|
let groupIndex = 0;
|
|
@@ -50806,27 +50831,27 @@ var require_array = __commonJS({
|
|
|
50806
50831
|
}
|
|
50807
50832
|
return result;
|
|
50808
50833
|
}
|
|
50809
|
-
exports
|
|
50834
|
+
exports.splitWhen = splitWhen;
|
|
50810
50835
|
}
|
|
50811
50836
|
});
|
|
50812
50837
|
|
|
50813
50838
|
// node_modules/fast-glob/out/utils/errno.js
|
|
50814
50839
|
var require_errno = __commonJS({
|
|
50815
|
-
"node_modules/fast-glob/out/utils/errno.js"(exports
|
|
50816
|
-
Object.defineProperty(exports
|
|
50817
|
-
exports
|
|
50840
|
+
"node_modules/fast-glob/out/utils/errno.js"(exports) {
|
|
50841
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
50842
|
+
exports.isEnoentCodeError = void 0;
|
|
50818
50843
|
function isEnoentCodeError(error) {
|
|
50819
50844
|
return error.code === "ENOENT";
|
|
50820
50845
|
}
|
|
50821
|
-
exports
|
|
50846
|
+
exports.isEnoentCodeError = isEnoentCodeError;
|
|
50822
50847
|
}
|
|
50823
50848
|
});
|
|
50824
50849
|
|
|
50825
50850
|
// node_modules/fast-glob/out/utils/fs.js
|
|
50826
50851
|
var require_fs = __commonJS({
|
|
50827
|
-
"node_modules/fast-glob/out/utils/fs.js"(exports
|
|
50828
|
-
Object.defineProperty(exports
|
|
50829
|
-
exports
|
|
50852
|
+
"node_modules/fast-glob/out/utils/fs.js"(exports) {
|
|
50853
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
50854
|
+
exports.createDirentFromStats = void 0;
|
|
50830
50855
|
var DirentFromStats = class {
|
|
50831
50856
|
constructor(name, stats) {
|
|
50832
50857
|
this.name = name;
|
|
@@ -50842,15 +50867,15 @@ var require_fs = __commonJS({
|
|
|
50842
50867
|
function createDirentFromStats(name, stats) {
|
|
50843
50868
|
return new DirentFromStats(name, stats);
|
|
50844
50869
|
}
|
|
50845
|
-
exports
|
|
50870
|
+
exports.createDirentFromStats = createDirentFromStats;
|
|
50846
50871
|
}
|
|
50847
50872
|
});
|
|
50848
50873
|
|
|
50849
50874
|
// node_modules/fast-glob/out/utils/path.js
|
|
50850
50875
|
var require_path = __commonJS({
|
|
50851
|
-
"node_modules/fast-glob/out/utils/path.js"(exports
|
|
50852
|
-
Object.defineProperty(exports
|
|
50853
|
-
exports
|
|
50876
|
+
"node_modules/fast-glob/out/utils/path.js"(exports) {
|
|
50877
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
50878
|
+
exports.convertPosixPathToPattern = exports.convertWindowsPathToPattern = exports.convertPathToPattern = exports.escapePosixPath = exports.escapeWindowsPath = exports.escape = exports.removeLeadingDotSegment = exports.makeAbsolute = exports.unixify = void 0;
|
|
50854
50879
|
var os = __require("os");
|
|
50855
50880
|
var path15 = __require("path");
|
|
50856
50881
|
var IS_WINDOWS_PLATFORM = os.platform() === "win32";
|
|
@@ -50862,11 +50887,11 @@ var require_path = __commonJS({
|
|
|
50862
50887
|
function unixify(filepath) {
|
|
50863
50888
|
return filepath.replace(/\\/g, "/");
|
|
50864
50889
|
}
|
|
50865
|
-
exports
|
|
50890
|
+
exports.unixify = unixify;
|
|
50866
50891
|
function makeAbsolute(cwd, filepath) {
|
|
50867
50892
|
return path15.resolve(cwd, filepath);
|
|
50868
50893
|
}
|
|
50869
|
-
exports
|
|
50894
|
+
exports.makeAbsolute = makeAbsolute;
|
|
50870
50895
|
function removeLeadingDotSegment(entry) {
|
|
50871
50896
|
if (entry.charAt(0) === ".") {
|
|
50872
50897
|
const secondCharactery = entry.charAt(1);
|
|
@@ -50876,31 +50901,31 @@ var require_path = __commonJS({
|
|
|
50876
50901
|
}
|
|
50877
50902
|
return entry;
|
|
50878
50903
|
}
|
|
50879
|
-
exports
|
|
50880
|
-
exports
|
|
50904
|
+
exports.removeLeadingDotSegment = removeLeadingDotSegment;
|
|
50905
|
+
exports.escape = IS_WINDOWS_PLATFORM ? escapeWindowsPath : escapePosixPath;
|
|
50881
50906
|
function escapeWindowsPath(pattern) {
|
|
50882
50907
|
return pattern.replace(WINDOWS_UNESCAPED_GLOB_SYMBOLS_RE, "\\$2");
|
|
50883
50908
|
}
|
|
50884
|
-
exports
|
|
50909
|
+
exports.escapeWindowsPath = escapeWindowsPath;
|
|
50885
50910
|
function escapePosixPath(pattern) {
|
|
50886
50911
|
return pattern.replace(POSIX_UNESCAPED_GLOB_SYMBOLS_RE, "\\$2");
|
|
50887
50912
|
}
|
|
50888
|
-
exports
|
|
50889
|
-
exports
|
|
50913
|
+
exports.escapePosixPath = escapePosixPath;
|
|
50914
|
+
exports.convertPathToPattern = IS_WINDOWS_PLATFORM ? convertWindowsPathToPattern : convertPosixPathToPattern;
|
|
50890
50915
|
function convertWindowsPathToPattern(filepath) {
|
|
50891
50916
|
return escapeWindowsPath(filepath).replace(DOS_DEVICE_PATH_RE, "//$1").replace(WINDOWS_BACKSLASHES_RE, "/");
|
|
50892
50917
|
}
|
|
50893
|
-
exports
|
|
50918
|
+
exports.convertWindowsPathToPattern = convertWindowsPathToPattern;
|
|
50894
50919
|
function convertPosixPathToPattern(filepath) {
|
|
50895
50920
|
return escapePosixPath(filepath);
|
|
50896
50921
|
}
|
|
50897
|
-
exports
|
|
50922
|
+
exports.convertPosixPathToPattern = convertPosixPathToPattern;
|
|
50898
50923
|
}
|
|
50899
50924
|
});
|
|
50900
50925
|
|
|
50901
50926
|
// node_modules/is-extglob/index.js
|
|
50902
50927
|
var require_is_extglob = __commonJS({
|
|
50903
|
-
"node_modules/is-extglob/index.js"(exports
|
|
50928
|
+
"node_modules/is-extglob/index.js"(exports, module) {
|
|
50904
50929
|
module.exports = function isExtglob(str) {
|
|
50905
50930
|
if (typeof str !== "string" || str === "") {
|
|
50906
50931
|
return false;
|
|
@@ -50917,7 +50942,7 @@ var require_is_extglob = __commonJS({
|
|
|
50917
50942
|
|
|
50918
50943
|
// node_modules/is-glob/index.js
|
|
50919
50944
|
var require_is_glob = __commonJS({
|
|
50920
|
-
"node_modules/is-glob/index.js"(exports
|
|
50945
|
+
"node_modules/is-glob/index.js"(exports, module) {
|
|
50921
50946
|
var isExtglob = require_is_extglob();
|
|
50922
50947
|
var chars = { "{": "}", "(": ")", "[": "]" };
|
|
50923
50948
|
var strictCheck = function(str) {
|
|
@@ -51048,7 +51073,7 @@ var require_is_glob = __commonJS({
|
|
|
51048
51073
|
|
|
51049
51074
|
// node_modules/fast-glob/node_modules/glob-parent/index.js
|
|
51050
51075
|
var require_glob_parent = __commonJS({
|
|
51051
|
-
"node_modules/fast-glob/node_modules/glob-parent/index.js"(exports
|
|
51076
|
+
"node_modules/fast-glob/node_modules/glob-parent/index.js"(exports, module) {
|
|
51052
51077
|
var isGlob = require_is_glob();
|
|
51053
51078
|
var pathPosixDirname = __require("path").posix.dirname;
|
|
51054
51079
|
var isWin32 = __require("os").platform() === "win32";
|
|
@@ -51076,8 +51101,8 @@ var require_glob_parent = __commonJS({
|
|
|
51076
51101
|
|
|
51077
51102
|
// node_modules/braces/lib/utils.js
|
|
51078
51103
|
var require_utils = __commonJS({
|
|
51079
|
-
"node_modules/braces/lib/utils.js"(exports
|
|
51080
|
-
exports
|
|
51104
|
+
"node_modules/braces/lib/utils.js"(exports) {
|
|
51105
|
+
exports.isInteger = (num) => {
|
|
51081
51106
|
if (typeof num === "number") {
|
|
51082
51107
|
return Number.isInteger(num);
|
|
51083
51108
|
}
|
|
@@ -51086,13 +51111,13 @@ var require_utils = __commonJS({
|
|
|
51086
51111
|
}
|
|
51087
51112
|
return false;
|
|
51088
51113
|
};
|
|
51089
|
-
exports
|
|
51090
|
-
exports
|
|
51114
|
+
exports.find = (node, type) => node.nodes.find((node2) => node2.type === type);
|
|
51115
|
+
exports.exceedsLimit = (min, max, step = 1, limit) => {
|
|
51091
51116
|
if (limit === false) return false;
|
|
51092
|
-
if (!exports
|
|
51117
|
+
if (!exports.isInteger(min) || !exports.isInteger(max)) return false;
|
|
51093
51118
|
return (Number(max) - Number(min)) / Number(step) >= limit;
|
|
51094
51119
|
};
|
|
51095
|
-
exports
|
|
51120
|
+
exports.escapeNode = (block, n = 0, type) => {
|
|
51096
51121
|
const node = block.nodes[n];
|
|
51097
51122
|
if (!node) return;
|
|
51098
51123
|
if (type && node.type === type || node.type === "open" || node.type === "close") {
|
|
@@ -51102,7 +51127,7 @@ var require_utils = __commonJS({
|
|
|
51102
51127
|
}
|
|
51103
51128
|
}
|
|
51104
51129
|
};
|
|
51105
|
-
exports
|
|
51130
|
+
exports.encloseBrace = (node) => {
|
|
51106
51131
|
if (node.type !== "brace") return false;
|
|
51107
51132
|
if (node.commas >> 0 + node.ranges >> 0 === 0) {
|
|
51108
51133
|
node.invalid = true;
|
|
@@ -51110,7 +51135,7 @@ var require_utils = __commonJS({
|
|
|
51110
51135
|
}
|
|
51111
51136
|
return false;
|
|
51112
51137
|
};
|
|
51113
|
-
exports
|
|
51138
|
+
exports.isInvalidBrace = (block) => {
|
|
51114
51139
|
if (block.type !== "brace") return false;
|
|
51115
51140
|
if (block.invalid === true || block.dollar) return true;
|
|
51116
51141
|
if (block.commas >> 0 + block.ranges >> 0 === 0) {
|
|
@@ -51123,18 +51148,18 @@ var require_utils = __commonJS({
|
|
|
51123
51148
|
}
|
|
51124
51149
|
return false;
|
|
51125
51150
|
};
|
|
51126
|
-
exports
|
|
51151
|
+
exports.isOpenOrClose = (node) => {
|
|
51127
51152
|
if (node.type === "open" || node.type === "close") {
|
|
51128
51153
|
return true;
|
|
51129
51154
|
}
|
|
51130
51155
|
return node.open === true || node.close === true;
|
|
51131
51156
|
};
|
|
51132
|
-
exports
|
|
51157
|
+
exports.reduce = (nodes) => nodes.reduce((acc, node) => {
|
|
51133
51158
|
if (node.type === "text") acc.push(node.value);
|
|
51134
51159
|
if (node.type === "range") node.type = "text";
|
|
51135
51160
|
return acc;
|
|
51136
51161
|
}, []);
|
|
51137
|
-
exports
|
|
51162
|
+
exports.flatten = (...args) => {
|
|
51138
51163
|
const result = [];
|
|
51139
51164
|
const flat = (arr) => {
|
|
51140
51165
|
for (let i = 0; i < arr.length; i++) {
|
|
@@ -51157,7 +51182,7 @@ var require_utils = __commonJS({
|
|
|
51157
51182
|
|
|
51158
51183
|
// node_modules/braces/lib/stringify.js
|
|
51159
51184
|
var require_stringify = __commonJS({
|
|
51160
|
-
"node_modules/braces/lib/stringify.js"(exports
|
|
51185
|
+
"node_modules/braces/lib/stringify.js"(exports, module) {
|
|
51161
51186
|
var utils = require_utils();
|
|
51162
51187
|
module.exports = (ast, options8 = {}) => {
|
|
51163
51188
|
const stringify2 = (node, parent = {}) => {
|
|
@@ -51187,7 +51212,7 @@ var require_stringify = __commonJS({
|
|
|
51187
51212
|
|
|
51188
51213
|
// node_modules/is-number/index.js
|
|
51189
51214
|
var require_is_number = __commonJS({
|
|
51190
|
-
"node_modules/is-number/index.js"(exports
|
|
51215
|
+
"node_modules/is-number/index.js"(exports, module) {
|
|
51191
51216
|
module.exports = function(num) {
|
|
51192
51217
|
if (typeof num === "number") {
|
|
51193
51218
|
return num - num === 0;
|
|
@@ -51202,7 +51227,7 @@ var require_is_number = __commonJS({
|
|
|
51202
51227
|
|
|
51203
51228
|
// node_modules/to-regex-range/index.js
|
|
51204
51229
|
var require_to_regex_range = __commonJS({
|
|
51205
|
-
"node_modules/to-regex-range/index.js"(exports
|
|
51230
|
+
"node_modules/to-regex-range/index.js"(exports, module) {
|
|
51206
51231
|
var isNumber = require_is_number();
|
|
51207
51232
|
var toRegexRange = (min, max, options8) => {
|
|
51208
51233
|
if (isNumber(min) === false) {
|
|
@@ -51412,7 +51437,7 @@ var require_to_regex_range = __commonJS({
|
|
|
51412
51437
|
|
|
51413
51438
|
// node_modules/fill-range/index.js
|
|
51414
51439
|
var require_fill_range = __commonJS({
|
|
51415
|
-
"node_modules/fill-range/index.js"(exports
|
|
51440
|
+
"node_modules/fill-range/index.js"(exports, module) {
|
|
51416
51441
|
var util2 = __require("util");
|
|
51417
51442
|
var toRegexRange = require_to_regex_range();
|
|
51418
51443
|
var isObject2 = (val) => val !== null && typeof val === "object" && !Array.isArray(val);
|
|
@@ -51605,7 +51630,7 @@ var require_fill_range = __commonJS({
|
|
|
51605
51630
|
|
|
51606
51631
|
// node_modules/braces/lib/compile.js
|
|
51607
51632
|
var require_compile = __commonJS({
|
|
51608
|
-
"node_modules/braces/lib/compile.js"(exports
|
|
51633
|
+
"node_modules/braces/lib/compile.js"(exports, module) {
|
|
51609
51634
|
var fill = require_fill_range();
|
|
51610
51635
|
var utils = require_utils();
|
|
51611
51636
|
var compile = (ast, options8 = {}) => {
|
|
@@ -51656,7 +51681,7 @@ var require_compile = __commonJS({
|
|
|
51656
51681
|
|
|
51657
51682
|
// node_modules/braces/lib/expand.js
|
|
51658
51683
|
var require_expand = __commonJS({
|
|
51659
|
-
"node_modules/braces/lib/expand.js"(exports
|
|
51684
|
+
"node_modules/braces/lib/expand.js"(exports, module) {
|
|
51660
51685
|
var fill = require_fill_range();
|
|
51661
51686
|
var stringify2 = require_stringify();
|
|
51662
51687
|
var utils = require_utils();
|
|
@@ -51749,7 +51774,7 @@ var require_expand = __commonJS({
|
|
|
51749
51774
|
|
|
51750
51775
|
// node_modules/braces/lib/constants.js
|
|
51751
51776
|
var require_constants = __commonJS({
|
|
51752
|
-
"node_modules/braces/lib/constants.js"(exports
|
|
51777
|
+
"node_modules/braces/lib/constants.js"(exports, module) {
|
|
51753
51778
|
module.exports = {
|
|
51754
51779
|
MAX_LENGTH: 1e4,
|
|
51755
51780
|
// Digits
|
|
@@ -51849,7 +51874,7 @@ var require_constants = __commonJS({
|
|
|
51849
51874
|
|
|
51850
51875
|
// node_modules/braces/lib/parse.js
|
|
51851
51876
|
var require_parse = __commonJS({
|
|
51852
|
-
"node_modules/braces/lib/parse.js"(exports
|
|
51877
|
+
"node_modules/braces/lib/parse.js"(exports, module) {
|
|
51853
51878
|
var stringify2 = require_stringify();
|
|
51854
51879
|
var {
|
|
51855
51880
|
MAX_LENGTH,
|
|
@@ -52086,7 +52111,7 @@ var require_parse = __commonJS({
|
|
|
52086
52111
|
|
|
52087
52112
|
// node_modules/braces/index.js
|
|
52088
52113
|
var require_braces = __commonJS({
|
|
52089
|
-
"node_modules/braces/index.js"(exports
|
|
52114
|
+
"node_modules/braces/index.js"(exports, module) {
|
|
52090
52115
|
var stringify2 = require_stringify();
|
|
52091
52116
|
var compile = require_compile();
|
|
52092
52117
|
var expand = require_expand();
|
|
@@ -52148,7 +52173,7 @@ var require_braces = __commonJS({
|
|
|
52148
52173
|
|
|
52149
52174
|
// node_modules/micromatch/node_modules/picomatch/lib/constants.js
|
|
52150
52175
|
var require_constants2 = __commonJS({
|
|
52151
|
-
"node_modules/micromatch/node_modules/picomatch/lib/constants.js"(exports
|
|
52176
|
+
"node_modules/micromatch/node_modules/picomatch/lib/constants.js"(exports, module) {
|
|
52152
52177
|
var path15 = __require("path");
|
|
52153
52178
|
var WIN_SLASH = "\\\\/";
|
|
52154
52179
|
var WIN_NO_SLASH = `[^${WIN_SLASH}]`;
|
|
@@ -52344,7 +52369,7 @@ var require_constants2 = __commonJS({
|
|
|
52344
52369
|
|
|
52345
52370
|
// node_modules/micromatch/node_modules/picomatch/lib/utils.js
|
|
52346
52371
|
var require_utils2 = __commonJS({
|
|
52347
|
-
"node_modules/micromatch/node_modules/picomatch/lib/utils.js"(exports
|
|
52372
|
+
"node_modules/micromatch/node_modules/picomatch/lib/utils.js"(exports) {
|
|
52348
52373
|
var path15 = __require("path");
|
|
52349
52374
|
var win32 = process.platform === "win32";
|
|
52350
52375
|
var {
|
|
@@ -52353,36 +52378,36 @@ var require_utils2 = __commonJS({
|
|
|
52353
52378
|
REGEX_SPECIAL_CHARS,
|
|
52354
52379
|
REGEX_SPECIAL_CHARS_GLOBAL
|
|
52355
52380
|
} = require_constants2();
|
|
52356
|
-
exports
|
|
52357
|
-
exports
|
|
52358
|
-
exports
|
|
52359
|
-
exports
|
|
52360
|
-
exports
|
|
52361
|
-
exports
|
|
52381
|
+
exports.isObject = (val) => val !== null && typeof val === "object" && !Array.isArray(val);
|
|
52382
|
+
exports.hasRegexChars = (str) => REGEX_SPECIAL_CHARS.test(str);
|
|
52383
|
+
exports.isRegexChar = (str) => str.length === 1 && exports.hasRegexChars(str);
|
|
52384
|
+
exports.escapeRegex = (str) => str.replace(REGEX_SPECIAL_CHARS_GLOBAL, "\\$1");
|
|
52385
|
+
exports.toPosixSlashes = (str) => str.replace(REGEX_BACKSLASH, "/");
|
|
52386
|
+
exports.removeBackslashes = (str) => {
|
|
52362
52387
|
return str.replace(REGEX_REMOVE_BACKSLASH, (match) => {
|
|
52363
52388
|
return match === "\\" ? "" : match;
|
|
52364
52389
|
});
|
|
52365
52390
|
};
|
|
52366
|
-
exports
|
|
52391
|
+
exports.supportsLookbehinds = () => {
|
|
52367
52392
|
const segs = process.version.slice(1).split(".").map(Number);
|
|
52368
52393
|
if (segs.length === 3 && segs[0] >= 9 || segs[0] === 8 && segs[1] >= 10) {
|
|
52369
52394
|
return true;
|
|
52370
52395
|
}
|
|
52371
52396
|
return false;
|
|
52372
52397
|
};
|
|
52373
|
-
exports
|
|
52398
|
+
exports.isWindows = (options8) => {
|
|
52374
52399
|
if (options8 && typeof options8.windows === "boolean") {
|
|
52375
52400
|
return options8.windows;
|
|
52376
52401
|
}
|
|
52377
52402
|
return win32 === true || path15.sep === "\\";
|
|
52378
52403
|
};
|
|
52379
|
-
exports
|
|
52404
|
+
exports.escapeLast = (input, char, lastIdx) => {
|
|
52380
52405
|
const idx = input.lastIndexOf(char, lastIdx);
|
|
52381
52406
|
if (idx === -1) return input;
|
|
52382
|
-
if (input[idx - 1] === "\\") return exports
|
|
52407
|
+
if (input[idx - 1] === "\\") return exports.escapeLast(input, char, idx - 1);
|
|
52383
52408
|
return `${input.slice(0, idx)}\\${input.slice(idx)}`;
|
|
52384
52409
|
};
|
|
52385
|
-
exports
|
|
52410
|
+
exports.removePrefix = (input, state = {}) => {
|
|
52386
52411
|
let output = input;
|
|
52387
52412
|
if (output.startsWith("./")) {
|
|
52388
52413
|
output = output.slice(2);
|
|
@@ -52390,7 +52415,7 @@ var require_utils2 = __commonJS({
|
|
|
52390
52415
|
}
|
|
52391
52416
|
return output;
|
|
52392
52417
|
};
|
|
52393
|
-
exports
|
|
52418
|
+
exports.wrapOutput = (input, state = {}, options8 = {}) => {
|
|
52394
52419
|
const prepend = options8.contains ? "" : "^";
|
|
52395
52420
|
const append = options8.contains ? "" : "$";
|
|
52396
52421
|
let output = `${prepend}(?:${input})${append}`;
|
|
@@ -52404,7 +52429,7 @@ var require_utils2 = __commonJS({
|
|
|
52404
52429
|
|
|
52405
52430
|
// node_modules/micromatch/node_modules/picomatch/lib/scan.js
|
|
52406
52431
|
var require_scan = __commonJS({
|
|
52407
|
-
"node_modules/micromatch/node_modules/picomatch/lib/scan.js"(exports
|
|
52432
|
+
"node_modules/micromatch/node_modules/picomatch/lib/scan.js"(exports, module) {
|
|
52408
52433
|
var utils = require_utils2();
|
|
52409
52434
|
var {
|
|
52410
52435
|
CHAR_ASTERISK,
|
|
@@ -52733,7 +52758,7 @@ var require_scan = __commonJS({
|
|
|
52733
52758
|
|
|
52734
52759
|
// node_modules/micromatch/node_modules/picomatch/lib/parse.js
|
|
52735
52760
|
var require_parse2 = __commonJS({
|
|
52736
|
-
"node_modules/micromatch/node_modules/picomatch/lib/parse.js"(exports
|
|
52761
|
+
"node_modules/micromatch/node_modules/picomatch/lib/parse.js"(exports, module) {
|
|
52737
52762
|
var constants = require_constants2();
|
|
52738
52763
|
var utils = require_utils2();
|
|
52739
52764
|
var {
|
|
@@ -53505,7 +53530,7 @@ var require_parse2 = __commonJS({
|
|
|
53505
53530
|
|
|
53506
53531
|
// node_modules/micromatch/node_modules/picomatch/lib/picomatch.js
|
|
53507
53532
|
var require_picomatch = __commonJS({
|
|
53508
|
-
"node_modules/micromatch/node_modules/picomatch/lib/picomatch.js"(exports
|
|
53533
|
+
"node_modules/micromatch/node_modules/picomatch/lib/picomatch.js"(exports, module) {
|
|
53509
53534
|
var path15 = __require("path");
|
|
53510
53535
|
var scan = require_scan();
|
|
53511
53536
|
var parse7 = require_parse2();
|
|
@@ -53645,14 +53670,14 @@ var require_picomatch = __commonJS({
|
|
|
53645
53670
|
|
|
53646
53671
|
// node_modules/micromatch/node_modules/picomatch/index.js
|
|
53647
53672
|
var require_picomatch2 = __commonJS({
|
|
53648
|
-
"node_modules/micromatch/node_modules/picomatch/index.js"(exports
|
|
53673
|
+
"node_modules/micromatch/node_modules/picomatch/index.js"(exports, module) {
|
|
53649
53674
|
module.exports = require_picomatch();
|
|
53650
53675
|
}
|
|
53651
53676
|
});
|
|
53652
53677
|
|
|
53653
53678
|
// node_modules/micromatch/index.js
|
|
53654
53679
|
var require_micromatch = __commonJS({
|
|
53655
|
-
"node_modules/micromatch/index.js"(exports
|
|
53680
|
+
"node_modules/micromatch/index.js"(exports, module) {
|
|
53656
53681
|
var util2 = __require("util");
|
|
53657
53682
|
var braces = require_braces();
|
|
53658
53683
|
var picomatch = require_picomatch2();
|
|
@@ -53812,9 +53837,9 @@ var require_micromatch = __commonJS({
|
|
|
53812
53837
|
|
|
53813
53838
|
// node_modules/fast-glob/out/utils/pattern.js
|
|
53814
53839
|
var require_pattern = __commonJS({
|
|
53815
|
-
"node_modules/fast-glob/out/utils/pattern.js"(exports
|
|
53816
|
-
Object.defineProperty(exports
|
|
53817
|
-
exports
|
|
53840
|
+
"node_modules/fast-glob/out/utils/pattern.js"(exports) {
|
|
53841
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
53842
|
+
exports.isAbsolute = exports.partitionAbsoluteAndRelative = exports.removeDuplicateSlashes = exports.matchAny = exports.convertPatternsToRe = exports.makeRe = exports.getPatternParts = exports.expandBraceExpansion = exports.expandPatternsWithBraceExpansion = exports.isAffectDepthOfReadingPattern = exports.endsWithSlashGlobStar = exports.hasGlobStar = exports.getBaseDirectory = exports.isPatternRelatedToParentDirectory = exports.getPatternsOutsideCurrentDirectory = exports.getPatternsInsideCurrentDirectory = exports.getPositivePatterns = exports.getNegativePatterns = exports.isPositivePattern = exports.isNegativePattern = exports.convertToNegativePattern = exports.convertToPositivePattern = exports.isDynamicPattern = exports.isStaticPattern = void 0;
|
|
53818
53843
|
var path15 = __require("path");
|
|
53819
53844
|
var globParent = require_glob_parent();
|
|
53820
53845
|
var micromatch2 = require_micromatch();
|
|
@@ -53829,7 +53854,7 @@ var require_pattern = __commonJS({
|
|
|
53829
53854
|
function isStaticPattern(pattern, options8 = {}) {
|
|
53830
53855
|
return !isDynamicPattern(pattern, options8);
|
|
53831
53856
|
}
|
|
53832
|
-
exports
|
|
53857
|
+
exports.isStaticPattern = isStaticPattern;
|
|
53833
53858
|
function isDynamicPattern(pattern, options8 = {}) {
|
|
53834
53859
|
if (pattern === "") {
|
|
53835
53860
|
return false;
|
|
@@ -53848,7 +53873,7 @@ var require_pattern = __commonJS({
|
|
|
53848
53873
|
}
|
|
53849
53874
|
return false;
|
|
53850
53875
|
}
|
|
53851
|
-
exports
|
|
53876
|
+
exports.isDynamicPattern = isDynamicPattern;
|
|
53852
53877
|
function hasBraceExpansion(pattern) {
|
|
53853
53878
|
const openingBraceIndex = pattern.indexOf("{");
|
|
53854
53879
|
if (openingBraceIndex === -1) {
|
|
@@ -53864,68 +53889,68 @@ var require_pattern = __commonJS({
|
|
|
53864
53889
|
function convertToPositivePattern(pattern) {
|
|
53865
53890
|
return isNegativePattern(pattern) ? pattern.slice(1) : pattern;
|
|
53866
53891
|
}
|
|
53867
|
-
exports
|
|
53892
|
+
exports.convertToPositivePattern = convertToPositivePattern;
|
|
53868
53893
|
function convertToNegativePattern(pattern) {
|
|
53869
53894
|
return "!" + pattern;
|
|
53870
53895
|
}
|
|
53871
|
-
exports
|
|
53896
|
+
exports.convertToNegativePattern = convertToNegativePattern;
|
|
53872
53897
|
function isNegativePattern(pattern) {
|
|
53873
53898
|
return pattern.startsWith("!") && pattern[1] !== "(";
|
|
53874
53899
|
}
|
|
53875
|
-
exports
|
|
53900
|
+
exports.isNegativePattern = isNegativePattern;
|
|
53876
53901
|
function isPositivePattern(pattern) {
|
|
53877
53902
|
return !isNegativePattern(pattern);
|
|
53878
53903
|
}
|
|
53879
|
-
exports
|
|
53904
|
+
exports.isPositivePattern = isPositivePattern;
|
|
53880
53905
|
function getNegativePatterns(patterns) {
|
|
53881
53906
|
return patterns.filter(isNegativePattern);
|
|
53882
53907
|
}
|
|
53883
|
-
exports
|
|
53908
|
+
exports.getNegativePatterns = getNegativePatterns;
|
|
53884
53909
|
function getPositivePatterns(patterns) {
|
|
53885
53910
|
return patterns.filter(isPositivePattern);
|
|
53886
53911
|
}
|
|
53887
|
-
exports
|
|
53912
|
+
exports.getPositivePatterns = getPositivePatterns;
|
|
53888
53913
|
function getPatternsInsideCurrentDirectory(patterns) {
|
|
53889
53914
|
return patterns.filter((pattern) => !isPatternRelatedToParentDirectory(pattern));
|
|
53890
53915
|
}
|
|
53891
|
-
exports
|
|
53916
|
+
exports.getPatternsInsideCurrentDirectory = getPatternsInsideCurrentDirectory;
|
|
53892
53917
|
function getPatternsOutsideCurrentDirectory(patterns) {
|
|
53893
53918
|
return patterns.filter(isPatternRelatedToParentDirectory);
|
|
53894
53919
|
}
|
|
53895
|
-
exports
|
|
53920
|
+
exports.getPatternsOutsideCurrentDirectory = getPatternsOutsideCurrentDirectory;
|
|
53896
53921
|
function isPatternRelatedToParentDirectory(pattern) {
|
|
53897
53922
|
return pattern.startsWith("..") || pattern.startsWith("./..");
|
|
53898
53923
|
}
|
|
53899
|
-
exports
|
|
53924
|
+
exports.isPatternRelatedToParentDirectory = isPatternRelatedToParentDirectory;
|
|
53900
53925
|
function getBaseDirectory(pattern) {
|
|
53901
53926
|
return globParent(pattern, { flipBackslashes: false });
|
|
53902
53927
|
}
|
|
53903
|
-
exports
|
|
53928
|
+
exports.getBaseDirectory = getBaseDirectory;
|
|
53904
53929
|
function hasGlobStar(pattern) {
|
|
53905
53930
|
return pattern.includes(GLOBSTAR);
|
|
53906
53931
|
}
|
|
53907
|
-
exports
|
|
53932
|
+
exports.hasGlobStar = hasGlobStar;
|
|
53908
53933
|
function endsWithSlashGlobStar(pattern) {
|
|
53909
53934
|
return pattern.endsWith("/" + GLOBSTAR);
|
|
53910
53935
|
}
|
|
53911
|
-
exports
|
|
53936
|
+
exports.endsWithSlashGlobStar = endsWithSlashGlobStar;
|
|
53912
53937
|
function isAffectDepthOfReadingPattern(pattern) {
|
|
53913
53938
|
const basename = path15.basename(pattern);
|
|
53914
53939
|
return endsWithSlashGlobStar(pattern) || isStaticPattern(basename);
|
|
53915
53940
|
}
|
|
53916
|
-
exports
|
|
53941
|
+
exports.isAffectDepthOfReadingPattern = isAffectDepthOfReadingPattern;
|
|
53917
53942
|
function expandPatternsWithBraceExpansion(patterns) {
|
|
53918
53943
|
return patterns.reduce((collection, pattern) => {
|
|
53919
53944
|
return collection.concat(expandBraceExpansion(pattern));
|
|
53920
53945
|
}, []);
|
|
53921
53946
|
}
|
|
53922
|
-
exports
|
|
53947
|
+
exports.expandPatternsWithBraceExpansion = expandPatternsWithBraceExpansion;
|
|
53923
53948
|
function expandBraceExpansion(pattern) {
|
|
53924
53949
|
const patterns = micromatch2.braces(pattern, { expand: true, nodupes: true, keepEscaping: true });
|
|
53925
53950
|
patterns.sort((a, b) => a.length - b.length);
|
|
53926
53951
|
return patterns.filter((pattern2) => pattern2 !== "");
|
|
53927
53952
|
}
|
|
53928
|
-
exports
|
|
53953
|
+
exports.expandBraceExpansion = expandBraceExpansion;
|
|
53929
53954
|
function getPatternParts(pattern, options8) {
|
|
53930
53955
|
let { parts } = micromatch2.scan(pattern, Object.assign(Object.assign({}, options8), { parts: true }));
|
|
53931
53956
|
if (parts.length === 0) {
|
|
@@ -53937,23 +53962,23 @@ var require_pattern = __commonJS({
|
|
|
53937
53962
|
}
|
|
53938
53963
|
return parts;
|
|
53939
53964
|
}
|
|
53940
|
-
exports
|
|
53965
|
+
exports.getPatternParts = getPatternParts;
|
|
53941
53966
|
function makeRe(pattern, options8) {
|
|
53942
53967
|
return micromatch2.makeRe(pattern, options8);
|
|
53943
53968
|
}
|
|
53944
|
-
exports
|
|
53969
|
+
exports.makeRe = makeRe;
|
|
53945
53970
|
function convertPatternsToRe(patterns, options8) {
|
|
53946
53971
|
return patterns.map((pattern) => makeRe(pattern, options8));
|
|
53947
53972
|
}
|
|
53948
|
-
exports
|
|
53973
|
+
exports.convertPatternsToRe = convertPatternsToRe;
|
|
53949
53974
|
function matchAny(entry, patternsRe) {
|
|
53950
53975
|
return patternsRe.some((patternRe) => patternRe.test(entry));
|
|
53951
53976
|
}
|
|
53952
|
-
exports
|
|
53977
|
+
exports.matchAny = matchAny;
|
|
53953
53978
|
function removeDuplicateSlashes(pattern) {
|
|
53954
53979
|
return pattern.replace(DOUBLE_SLASH_RE, "/");
|
|
53955
53980
|
}
|
|
53956
|
-
exports
|
|
53981
|
+
exports.removeDuplicateSlashes = removeDuplicateSlashes;
|
|
53957
53982
|
function partitionAbsoluteAndRelative(patterns) {
|
|
53958
53983
|
const absolute = [];
|
|
53959
53984
|
const relative2 = [];
|
|
@@ -53966,17 +53991,17 @@ var require_pattern = __commonJS({
|
|
|
53966
53991
|
}
|
|
53967
53992
|
return [absolute, relative2];
|
|
53968
53993
|
}
|
|
53969
|
-
exports
|
|
53994
|
+
exports.partitionAbsoluteAndRelative = partitionAbsoluteAndRelative;
|
|
53970
53995
|
function isAbsolute(pattern) {
|
|
53971
53996
|
return path15.isAbsolute(pattern);
|
|
53972
53997
|
}
|
|
53973
|
-
exports
|
|
53998
|
+
exports.isAbsolute = isAbsolute;
|
|
53974
53999
|
}
|
|
53975
54000
|
});
|
|
53976
54001
|
|
|
53977
54002
|
// node_modules/merge2/index.js
|
|
53978
54003
|
var require_merge2 = __commonJS({
|
|
53979
|
-
"node_modules/merge2/index.js"(exports
|
|
54004
|
+
"node_modules/merge2/index.js"(exports, module) {
|
|
53980
54005
|
var Stream = __require("stream");
|
|
53981
54006
|
var PassThrough = Stream.PassThrough;
|
|
53982
54007
|
var slice = Array.prototype.slice;
|
|
@@ -54094,9 +54119,9 @@ var require_merge2 = __commonJS({
|
|
|
54094
54119
|
|
|
54095
54120
|
// node_modules/fast-glob/out/utils/stream.js
|
|
54096
54121
|
var require_stream = __commonJS({
|
|
54097
|
-
"node_modules/fast-glob/out/utils/stream.js"(exports
|
|
54098
|
-
Object.defineProperty(exports
|
|
54099
|
-
exports
|
|
54122
|
+
"node_modules/fast-glob/out/utils/stream.js"(exports) {
|
|
54123
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
54124
|
+
exports.merge = void 0;
|
|
54100
54125
|
var merge2 = require_merge2();
|
|
54101
54126
|
function merge(streams) {
|
|
54102
54127
|
const mergedStream = merge2(streams);
|
|
@@ -54107,7 +54132,7 @@ var require_stream = __commonJS({
|
|
|
54107
54132
|
mergedStream.once("end", () => propagateCloseEventToSources(streams));
|
|
54108
54133
|
return mergedStream;
|
|
54109
54134
|
}
|
|
54110
|
-
exports
|
|
54135
|
+
exports.merge = merge;
|
|
54111
54136
|
function propagateCloseEventToSources(streams) {
|
|
54112
54137
|
streams.forEach((stream) => stream.emit("close"));
|
|
54113
54138
|
}
|
|
@@ -54116,47 +54141,47 @@ var require_stream = __commonJS({
|
|
|
54116
54141
|
|
|
54117
54142
|
// node_modules/fast-glob/out/utils/string.js
|
|
54118
54143
|
var require_string = __commonJS({
|
|
54119
|
-
"node_modules/fast-glob/out/utils/string.js"(exports
|
|
54120
|
-
Object.defineProperty(exports
|
|
54121
|
-
exports
|
|
54144
|
+
"node_modules/fast-glob/out/utils/string.js"(exports) {
|
|
54145
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
54146
|
+
exports.isEmpty = exports.isString = void 0;
|
|
54122
54147
|
function isString(input) {
|
|
54123
54148
|
return typeof input === "string";
|
|
54124
54149
|
}
|
|
54125
|
-
exports
|
|
54150
|
+
exports.isString = isString;
|
|
54126
54151
|
function isEmpty(input) {
|
|
54127
54152
|
return input === "";
|
|
54128
54153
|
}
|
|
54129
|
-
exports
|
|
54154
|
+
exports.isEmpty = isEmpty;
|
|
54130
54155
|
}
|
|
54131
54156
|
});
|
|
54132
54157
|
|
|
54133
54158
|
// node_modules/fast-glob/out/utils/index.js
|
|
54134
54159
|
var require_utils3 = __commonJS({
|
|
54135
|
-
"node_modules/fast-glob/out/utils/index.js"(exports
|
|
54136
|
-
Object.defineProperty(exports
|
|
54137
|
-
exports
|
|
54160
|
+
"node_modules/fast-glob/out/utils/index.js"(exports) {
|
|
54161
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
54162
|
+
exports.string = exports.stream = exports.pattern = exports.path = exports.fs = exports.errno = exports.array = void 0;
|
|
54138
54163
|
var array2 = require_array();
|
|
54139
|
-
exports
|
|
54164
|
+
exports.array = array2;
|
|
54140
54165
|
var errno = require_errno();
|
|
54141
|
-
exports
|
|
54166
|
+
exports.errno = errno;
|
|
54142
54167
|
var fs4 = require_fs();
|
|
54143
|
-
exports
|
|
54168
|
+
exports.fs = fs4;
|
|
54144
54169
|
var path15 = require_path();
|
|
54145
|
-
exports
|
|
54170
|
+
exports.path = path15;
|
|
54146
54171
|
var pattern = require_pattern();
|
|
54147
|
-
exports
|
|
54172
|
+
exports.pattern = pattern;
|
|
54148
54173
|
var stream = require_stream();
|
|
54149
|
-
exports
|
|
54174
|
+
exports.stream = stream;
|
|
54150
54175
|
var string = require_string();
|
|
54151
|
-
exports
|
|
54176
|
+
exports.string = string;
|
|
54152
54177
|
}
|
|
54153
54178
|
});
|
|
54154
54179
|
|
|
54155
54180
|
// node_modules/fast-glob/out/managers/tasks.js
|
|
54156
54181
|
var require_tasks = __commonJS({
|
|
54157
|
-
"node_modules/fast-glob/out/managers/tasks.js"(exports
|
|
54158
|
-
Object.defineProperty(exports
|
|
54159
|
-
exports
|
|
54182
|
+
"node_modules/fast-glob/out/managers/tasks.js"(exports) {
|
|
54183
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
54184
|
+
exports.convertPatternGroupToTask = exports.convertPatternGroupsToTasks = exports.groupPatternsByBaseDirectory = exports.getNegativePatternsAsPositive = exports.getPositivePatterns = exports.convertPatternsToTasks = exports.generate = void 0;
|
|
54160
54185
|
var utils = require_utils3();
|
|
54161
54186
|
function generate(input, settings) {
|
|
54162
54187
|
const patterns = processPatterns(input, settings);
|
|
@@ -54179,7 +54204,7 @@ var require_tasks = __commonJS({
|
|
|
54179
54204
|
);
|
|
54180
54205
|
return staticTasks.concat(dynamicTasks);
|
|
54181
54206
|
}
|
|
54182
|
-
exports
|
|
54207
|
+
exports.generate = generate;
|
|
54183
54208
|
function processPatterns(input, settings) {
|
|
54184
54209
|
let patterns = input;
|
|
54185
54210
|
if (settings.braceExpansion) {
|
|
@@ -54204,17 +54229,17 @@ var require_tasks = __commonJS({
|
|
|
54204
54229
|
}
|
|
54205
54230
|
return tasks;
|
|
54206
54231
|
}
|
|
54207
|
-
exports
|
|
54232
|
+
exports.convertPatternsToTasks = convertPatternsToTasks;
|
|
54208
54233
|
function getPositivePatterns(patterns) {
|
|
54209
54234
|
return utils.pattern.getPositivePatterns(patterns);
|
|
54210
54235
|
}
|
|
54211
|
-
exports
|
|
54236
|
+
exports.getPositivePatterns = getPositivePatterns;
|
|
54212
54237
|
function getNegativePatternsAsPositive(patterns, ignore) {
|
|
54213
54238
|
const negative = utils.pattern.getNegativePatterns(patterns).concat(ignore);
|
|
54214
54239
|
const positive = negative.map(utils.pattern.convertToPositivePattern);
|
|
54215
54240
|
return positive;
|
|
54216
54241
|
}
|
|
54217
|
-
exports
|
|
54242
|
+
exports.getNegativePatternsAsPositive = getNegativePatternsAsPositive;
|
|
54218
54243
|
function groupPatternsByBaseDirectory(patterns) {
|
|
54219
54244
|
const group = {};
|
|
54220
54245
|
return patterns.reduce((collection, pattern) => {
|
|
@@ -54227,13 +54252,13 @@ var require_tasks = __commonJS({
|
|
|
54227
54252
|
return collection;
|
|
54228
54253
|
}, group);
|
|
54229
54254
|
}
|
|
54230
|
-
exports
|
|
54255
|
+
exports.groupPatternsByBaseDirectory = groupPatternsByBaseDirectory;
|
|
54231
54256
|
function convertPatternGroupsToTasks(positive, negative, dynamic) {
|
|
54232
54257
|
return Object.keys(positive).map((base) => {
|
|
54233
54258
|
return convertPatternGroupToTask(base, positive[base], negative, dynamic);
|
|
54234
54259
|
});
|
|
54235
54260
|
}
|
|
54236
|
-
exports
|
|
54261
|
+
exports.convertPatternGroupsToTasks = convertPatternGroupsToTasks;
|
|
54237
54262
|
function convertPatternGroupToTask(base, positive, negative, dynamic) {
|
|
54238
54263
|
return {
|
|
54239
54264
|
dynamic,
|
|
@@ -54243,15 +54268,15 @@ var require_tasks = __commonJS({
|
|
|
54243
54268
|
patterns: [].concat(positive, negative.map(utils.pattern.convertToNegativePattern))
|
|
54244
54269
|
};
|
|
54245
54270
|
}
|
|
54246
|
-
exports
|
|
54271
|
+
exports.convertPatternGroupToTask = convertPatternGroupToTask;
|
|
54247
54272
|
}
|
|
54248
54273
|
});
|
|
54249
54274
|
|
|
54250
54275
|
// node_modules/@nodelib/fs.stat/out/providers/async.js
|
|
54251
54276
|
var require_async = __commonJS({
|
|
54252
|
-
"node_modules/@nodelib/fs.stat/out/providers/async.js"(exports
|
|
54253
|
-
Object.defineProperty(exports
|
|
54254
|
-
exports
|
|
54277
|
+
"node_modules/@nodelib/fs.stat/out/providers/async.js"(exports) {
|
|
54278
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
54279
|
+
exports.read = void 0;
|
|
54255
54280
|
function read3(path15, settings, callback) {
|
|
54256
54281
|
settings.fs.lstat(path15, (lstatError, lstat2) => {
|
|
54257
54282
|
if (lstatError !== null) {
|
|
@@ -54278,7 +54303,7 @@ var require_async = __commonJS({
|
|
|
54278
54303
|
});
|
|
54279
54304
|
});
|
|
54280
54305
|
}
|
|
54281
|
-
exports
|
|
54306
|
+
exports.read = read3;
|
|
54282
54307
|
function callFailureCallback(callback, error) {
|
|
54283
54308
|
callback(error);
|
|
54284
54309
|
}
|
|
@@ -54290,9 +54315,9 @@ var require_async = __commonJS({
|
|
|
54290
54315
|
|
|
54291
54316
|
// node_modules/@nodelib/fs.stat/out/providers/sync.js
|
|
54292
54317
|
var require_sync = __commonJS({
|
|
54293
|
-
"node_modules/@nodelib/fs.stat/out/providers/sync.js"(exports
|
|
54294
|
-
Object.defineProperty(exports
|
|
54295
|
-
exports
|
|
54318
|
+
"node_modules/@nodelib/fs.stat/out/providers/sync.js"(exports) {
|
|
54319
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
54320
|
+
exports.read = void 0;
|
|
54296
54321
|
function read3(path15, settings) {
|
|
54297
54322
|
const lstat2 = settings.fs.lstatSync(path15);
|
|
54298
54323
|
if (!lstat2.isSymbolicLink() || !settings.followSymbolicLink) {
|
|
@@ -54311,17 +54336,17 @@ var require_sync = __commonJS({
|
|
|
54311
54336
|
throw error;
|
|
54312
54337
|
}
|
|
54313
54338
|
}
|
|
54314
|
-
exports
|
|
54339
|
+
exports.read = read3;
|
|
54315
54340
|
}
|
|
54316
54341
|
});
|
|
54317
54342
|
|
|
54318
54343
|
// node_modules/@nodelib/fs.stat/out/adapters/fs.js
|
|
54319
54344
|
var require_fs2 = __commonJS({
|
|
54320
|
-
"node_modules/@nodelib/fs.stat/out/adapters/fs.js"(exports
|
|
54321
|
-
Object.defineProperty(exports
|
|
54322
|
-
exports
|
|
54345
|
+
"node_modules/@nodelib/fs.stat/out/adapters/fs.js"(exports) {
|
|
54346
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
54347
|
+
exports.createFileSystemAdapter = exports.FILE_SYSTEM_ADAPTER = void 0;
|
|
54323
54348
|
var fs4 = __require("fs");
|
|
54324
|
-
exports
|
|
54349
|
+
exports.FILE_SYSTEM_ADAPTER = {
|
|
54325
54350
|
lstat: fs4.lstat,
|
|
54326
54351
|
stat: fs4.stat,
|
|
54327
54352
|
lstatSync: fs4.lstatSync,
|
|
@@ -54329,18 +54354,18 @@ var require_fs2 = __commonJS({
|
|
|
54329
54354
|
};
|
|
54330
54355
|
function createFileSystemAdapter(fsMethods) {
|
|
54331
54356
|
if (fsMethods === void 0) {
|
|
54332
|
-
return exports
|
|
54357
|
+
return exports.FILE_SYSTEM_ADAPTER;
|
|
54333
54358
|
}
|
|
54334
|
-
return Object.assign(Object.assign({}, exports
|
|
54359
|
+
return Object.assign(Object.assign({}, exports.FILE_SYSTEM_ADAPTER), fsMethods);
|
|
54335
54360
|
}
|
|
54336
|
-
exports
|
|
54361
|
+
exports.createFileSystemAdapter = createFileSystemAdapter;
|
|
54337
54362
|
}
|
|
54338
54363
|
});
|
|
54339
54364
|
|
|
54340
54365
|
// node_modules/@nodelib/fs.stat/out/settings.js
|
|
54341
54366
|
var require_settings = __commonJS({
|
|
54342
|
-
"node_modules/@nodelib/fs.stat/out/settings.js"(exports
|
|
54343
|
-
Object.defineProperty(exports
|
|
54367
|
+
"node_modules/@nodelib/fs.stat/out/settings.js"(exports) {
|
|
54368
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
54344
54369
|
var fs4 = require_fs2();
|
|
54345
54370
|
var Settings = class {
|
|
54346
54371
|
constructor(_options = {}) {
|
|
@@ -54354,19 +54379,19 @@ var require_settings = __commonJS({
|
|
|
54354
54379
|
return option !== null && option !== void 0 ? option : value;
|
|
54355
54380
|
}
|
|
54356
54381
|
};
|
|
54357
|
-
exports
|
|
54382
|
+
exports.default = Settings;
|
|
54358
54383
|
}
|
|
54359
54384
|
});
|
|
54360
54385
|
|
|
54361
54386
|
// node_modules/@nodelib/fs.stat/out/index.js
|
|
54362
54387
|
var require_out = __commonJS({
|
|
54363
|
-
"node_modules/@nodelib/fs.stat/out/index.js"(exports
|
|
54364
|
-
Object.defineProperty(exports
|
|
54365
|
-
exports
|
|
54388
|
+
"node_modules/@nodelib/fs.stat/out/index.js"(exports) {
|
|
54389
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
54390
|
+
exports.statSync = exports.stat = exports.Settings = void 0;
|
|
54366
54391
|
var async = require_async();
|
|
54367
54392
|
var sync = require_sync();
|
|
54368
54393
|
var settings_1 = require_settings();
|
|
54369
|
-
exports
|
|
54394
|
+
exports.Settings = settings_1.default;
|
|
54370
54395
|
function stat2(path15, optionsOrSettingsOrCallback, callback) {
|
|
54371
54396
|
if (typeof optionsOrSettingsOrCallback === "function") {
|
|
54372
54397
|
async.read(path15, getSettings(), optionsOrSettingsOrCallback);
|
|
@@ -54374,12 +54399,12 @@ var require_out = __commonJS({
|
|
|
54374
54399
|
}
|
|
54375
54400
|
async.read(path15, getSettings(optionsOrSettingsOrCallback), callback);
|
|
54376
54401
|
}
|
|
54377
|
-
exports
|
|
54402
|
+
exports.stat = stat2;
|
|
54378
54403
|
function statSync2(path15, optionsOrSettings) {
|
|
54379
54404
|
const settings = getSettings(optionsOrSettings);
|
|
54380
54405
|
return sync.read(path15, settings);
|
|
54381
54406
|
}
|
|
54382
|
-
exports
|
|
54407
|
+
exports.statSync = statSync2;
|
|
54383
54408
|
function getSettings(settingsOrOptions = {}) {
|
|
54384
54409
|
if (settingsOrOptions instanceof settings_1.default) {
|
|
54385
54410
|
return settingsOrOptions;
|
|
@@ -54391,7 +54416,7 @@ var require_out = __commonJS({
|
|
|
54391
54416
|
|
|
54392
54417
|
// node_modules/queue-microtask/index.js
|
|
54393
54418
|
var require_queue_microtask = __commonJS({
|
|
54394
|
-
"node_modules/queue-microtask/index.js"(exports
|
|
54419
|
+
"node_modules/queue-microtask/index.js"(exports, module) {
|
|
54395
54420
|
var promise;
|
|
54396
54421
|
module.exports = typeof queueMicrotask === "function" ? queueMicrotask.bind(typeof window !== "undefined" ? window : global) : (cb) => (promise || (promise = Promise.resolve())).then(cb).catch((err) => setTimeout(() => {
|
|
54397
54422
|
throw err;
|
|
@@ -54401,7 +54426,7 @@ var require_queue_microtask = __commonJS({
|
|
|
54401
54426
|
|
|
54402
54427
|
// node_modules/run-parallel/index.js
|
|
54403
54428
|
var require_run_parallel = __commonJS({
|
|
54404
|
-
"node_modules/run-parallel/index.js"(exports
|
|
54429
|
+
"node_modules/run-parallel/index.js"(exports, module) {
|
|
54405
54430
|
module.exports = runParallel;
|
|
54406
54431
|
var queueMicrotask2 = require_queue_microtask();
|
|
54407
54432
|
function runParallel(tasks, cb) {
|
|
@@ -54451,9 +54476,9 @@ var require_run_parallel = __commonJS({
|
|
|
54451
54476
|
|
|
54452
54477
|
// node_modules/@nodelib/fs.scandir/out/constants.js
|
|
54453
54478
|
var require_constants3 = __commonJS({
|
|
54454
|
-
"node_modules/@nodelib/fs.scandir/out/constants.js"(exports
|
|
54455
|
-
Object.defineProperty(exports
|
|
54456
|
-
exports
|
|
54479
|
+
"node_modules/@nodelib/fs.scandir/out/constants.js"(exports) {
|
|
54480
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
54481
|
+
exports.IS_SUPPORT_READDIR_WITH_FILE_TYPES = void 0;
|
|
54457
54482
|
var NODE_PROCESS_VERSION_PARTS = process.versions.node.split(".");
|
|
54458
54483
|
if (NODE_PROCESS_VERSION_PARTS[0] === void 0 || NODE_PROCESS_VERSION_PARTS[1] === void 0) {
|
|
54459
54484
|
throw new Error(`Unexpected behavior. The 'process.versions.node' variable has invalid value: ${process.versions.node}`);
|
|
@@ -54464,15 +54489,15 @@ var require_constants3 = __commonJS({
|
|
|
54464
54489
|
var SUPPORTED_MINOR_VERSION = 10;
|
|
54465
54490
|
var IS_MATCHED_BY_MAJOR = MAJOR_VERSION > SUPPORTED_MAJOR_VERSION;
|
|
54466
54491
|
var IS_MATCHED_BY_MAJOR_AND_MINOR = MAJOR_VERSION === SUPPORTED_MAJOR_VERSION && MINOR_VERSION >= SUPPORTED_MINOR_VERSION;
|
|
54467
|
-
exports
|
|
54492
|
+
exports.IS_SUPPORT_READDIR_WITH_FILE_TYPES = IS_MATCHED_BY_MAJOR || IS_MATCHED_BY_MAJOR_AND_MINOR;
|
|
54468
54493
|
}
|
|
54469
54494
|
});
|
|
54470
54495
|
|
|
54471
54496
|
// node_modules/@nodelib/fs.scandir/out/utils/fs.js
|
|
54472
54497
|
var require_fs3 = __commonJS({
|
|
54473
|
-
"node_modules/@nodelib/fs.scandir/out/utils/fs.js"(exports
|
|
54474
|
-
Object.defineProperty(exports
|
|
54475
|
-
exports
|
|
54498
|
+
"node_modules/@nodelib/fs.scandir/out/utils/fs.js"(exports) {
|
|
54499
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
54500
|
+
exports.createDirentFromStats = void 0;
|
|
54476
54501
|
var DirentFromStats = class {
|
|
54477
54502
|
constructor(name, stats) {
|
|
54478
54503
|
this.name = name;
|
|
@@ -54488,40 +54513,40 @@ var require_fs3 = __commonJS({
|
|
|
54488
54513
|
function createDirentFromStats(name, stats) {
|
|
54489
54514
|
return new DirentFromStats(name, stats);
|
|
54490
54515
|
}
|
|
54491
|
-
exports
|
|
54516
|
+
exports.createDirentFromStats = createDirentFromStats;
|
|
54492
54517
|
}
|
|
54493
54518
|
});
|
|
54494
54519
|
|
|
54495
54520
|
// node_modules/@nodelib/fs.scandir/out/utils/index.js
|
|
54496
54521
|
var require_utils4 = __commonJS({
|
|
54497
|
-
"node_modules/@nodelib/fs.scandir/out/utils/index.js"(exports
|
|
54498
|
-
Object.defineProperty(exports
|
|
54499
|
-
exports
|
|
54522
|
+
"node_modules/@nodelib/fs.scandir/out/utils/index.js"(exports) {
|
|
54523
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
54524
|
+
exports.fs = void 0;
|
|
54500
54525
|
var fs4 = require_fs3();
|
|
54501
|
-
exports
|
|
54526
|
+
exports.fs = fs4;
|
|
54502
54527
|
}
|
|
54503
54528
|
});
|
|
54504
54529
|
|
|
54505
54530
|
// node_modules/@nodelib/fs.scandir/out/providers/common.js
|
|
54506
54531
|
var require_common = __commonJS({
|
|
54507
|
-
"node_modules/@nodelib/fs.scandir/out/providers/common.js"(exports
|
|
54508
|
-
Object.defineProperty(exports
|
|
54509
|
-
exports
|
|
54532
|
+
"node_modules/@nodelib/fs.scandir/out/providers/common.js"(exports) {
|
|
54533
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
54534
|
+
exports.joinPathSegments = void 0;
|
|
54510
54535
|
function joinPathSegments(a, b, separator) {
|
|
54511
54536
|
if (a.endsWith(separator)) {
|
|
54512
54537
|
return a + b;
|
|
54513
54538
|
}
|
|
54514
54539
|
return a + separator + b;
|
|
54515
54540
|
}
|
|
54516
|
-
exports
|
|
54541
|
+
exports.joinPathSegments = joinPathSegments;
|
|
54517
54542
|
}
|
|
54518
54543
|
});
|
|
54519
54544
|
|
|
54520
54545
|
// node_modules/@nodelib/fs.scandir/out/providers/async.js
|
|
54521
54546
|
var require_async2 = __commonJS({
|
|
54522
|
-
"node_modules/@nodelib/fs.scandir/out/providers/async.js"(exports
|
|
54523
|
-
Object.defineProperty(exports
|
|
54524
|
-
exports
|
|
54547
|
+
"node_modules/@nodelib/fs.scandir/out/providers/async.js"(exports) {
|
|
54548
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
54549
|
+
exports.readdir = exports.readdirWithFileTypes = exports.read = void 0;
|
|
54525
54550
|
var fsStat = require_out();
|
|
54526
54551
|
var rpl = require_run_parallel();
|
|
54527
54552
|
var constants_1 = require_constants3();
|
|
@@ -54534,7 +54559,7 @@ var require_async2 = __commonJS({
|
|
|
54534
54559
|
}
|
|
54535
54560
|
readdir(directory, settings, callback);
|
|
54536
54561
|
}
|
|
54537
|
-
exports
|
|
54562
|
+
exports.read = read3;
|
|
54538
54563
|
function readdirWithFileTypes(directory, settings, callback) {
|
|
54539
54564
|
settings.fs.readdir(directory, { withFileTypes: true }, (readdirError, dirents) => {
|
|
54540
54565
|
if (readdirError !== null) {
|
|
@@ -54560,7 +54585,7 @@ var require_async2 = __commonJS({
|
|
|
54560
54585
|
});
|
|
54561
54586
|
});
|
|
54562
54587
|
}
|
|
54563
|
-
exports
|
|
54588
|
+
exports.readdirWithFileTypes = readdirWithFileTypes;
|
|
54564
54589
|
function makeRplTaskEntry(entry, settings) {
|
|
54565
54590
|
return (done) => {
|
|
54566
54591
|
if (!entry.dirent.isSymbolicLink()) {
|
|
@@ -54616,7 +54641,7 @@ var require_async2 = __commonJS({
|
|
|
54616
54641
|
});
|
|
54617
54642
|
});
|
|
54618
54643
|
}
|
|
54619
|
-
exports
|
|
54644
|
+
exports.readdir = readdir;
|
|
54620
54645
|
function callFailureCallback(callback, error) {
|
|
54621
54646
|
callback(error);
|
|
54622
54647
|
}
|
|
@@ -54628,9 +54653,9 @@ var require_async2 = __commonJS({
|
|
|
54628
54653
|
|
|
54629
54654
|
// node_modules/@nodelib/fs.scandir/out/providers/sync.js
|
|
54630
54655
|
var require_sync2 = __commonJS({
|
|
54631
|
-
"node_modules/@nodelib/fs.scandir/out/providers/sync.js"(exports
|
|
54632
|
-
Object.defineProperty(exports
|
|
54633
|
-
exports
|
|
54656
|
+
"node_modules/@nodelib/fs.scandir/out/providers/sync.js"(exports) {
|
|
54657
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
54658
|
+
exports.readdir = exports.readdirWithFileTypes = exports.read = void 0;
|
|
54634
54659
|
var fsStat = require_out();
|
|
54635
54660
|
var constants_1 = require_constants3();
|
|
54636
54661
|
var utils = require_utils4();
|
|
@@ -54641,7 +54666,7 @@ var require_sync2 = __commonJS({
|
|
|
54641
54666
|
}
|
|
54642
54667
|
return readdir(directory, settings);
|
|
54643
54668
|
}
|
|
54644
|
-
exports
|
|
54669
|
+
exports.read = read3;
|
|
54645
54670
|
function readdirWithFileTypes(directory, settings) {
|
|
54646
54671
|
const dirents = settings.fs.readdirSync(directory, { withFileTypes: true });
|
|
54647
54672
|
return dirents.map((dirent) => {
|
|
@@ -54663,7 +54688,7 @@ var require_sync2 = __commonJS({
|
|
|
54663
54688
|
return entry;
|
|
54664
54689
|
});
|
|
54665
54690
|
}
|
|
54666
|
-
exports
|
|
54691
|
+
exports.readdirWithFileTypes = readdirWithFileTypes;
|
|
54667
54692
|
function readdir(directory, settings) {
|
|
54668
54693
|
const names = settings.fs.readdirSync(directory);
|
|
54669
54694
|
return names.map((name) => {
|
|
@@ -54680,17 +54705,17 @@ var require_sync2 = __commonJS({
|
|
|
54680
54705
|
return entry;
|
|
54681
54706
|
});
|
|
54682
54707
|
}
|
|
54683
|
-
exports
|
|
54708
|
+
exports.readdir = readdir;
|
|
54684
54709
|
}
|
|
54685
54710
|
});
|
|
54686
54711
|
|
|
54687
54712
|
// node_modules/@nodelib/fs.scandir/out/adapters/fs.js
|
|
54688
54713
|
var require_fs4 = __commonJS({
|
|
54689
|
-
"node_modules/@nodelib/fs.scandir/out/adapters/fs.js"(exports
|
|
54690
|
-
Object.defineProperty(exports
|
|
54691
|
-
exports
|
|
54714
|
+
"node_modules/@nodelib/fs.scandir/out/adapters/fs.js"(exports) {
|
|
54715
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
54716
|
+
exports.createFileSystemAdapter = exports.FILE_SYSTEM_ADAPTER = void 0;
|
|
54692
54717
|
var fs4 = __require("fs");
|
|
54693
|
-
exports
|
|
54718
|
+
exports.FILE_SYSTEM_ADAPTER = {
|
|
54694
54719
|
lstat: fs4.lstat,
|
|
54695
54720
|
stat: fs4.stat,
|
|
54696
54721
|
lstatSync: fs4.lstatSync,
|
|
@@ -54700,18 +54725,18 @@ var require_fs4 = __commonJS({
|
|
|
54700
54725
|
};
|
|
54701
54726
|
function createFileSystemAdapter(fsMethods) {
|
|
54702
54727
|
if (fsMethods === void 0) {
|
|
54703
|
-
return exports
|
|
54728
|
+
return exports.FILE_SYSTEM_ADAPTER;
|
|
54704
54729
|
}
|
|
54705
|
-
return Object.assign(Object.assign({}, exports
|
|
54730
|
+
return Object.assign(Object.assign({}, exports.FILE_SYSTEM_ADAPTER), fsMethods);
|
|
54706
54731
|
}
|
|
54707
|
-
exports
|
|
54732
|
+
exports.createFileSystemAdapter = createFileSystemAdapter;
|
|
54708
54733
|
}
|
|
54709
54734
|
});
|
|
54710
54735
|
|
|
54711
54736
|
// node_modules/@nodelib/fs.scandir/out/settings.js
|
|
54712
54737
|
var require_settings2 = __commonJS({
|
|
54713
|
-
"node_modules/@nodelib/fs.scandir/out/settings.js"(exports
|
|
54714
|
-
Object.defineProperty(exports
|
|
54738
|
+
"node_modules/@nodelib/fs.scandir/out/settings.js"(exports) {
|
|
54739
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
54715
54740
|
var path15 = __require("path");
|
|
54716
54741
|
var fsStat = require_out();
|
|
54717
54742
|
var fs4 = require_fs4();
|
|
@@ -54733,19 +54758,19 @@ var require_settings2 = __commonJS({
|
|
|
54733
54758
|
return option !== null && option !== void 0 ? option : value;
|
|
54734
54759
|
}
|
|
54735
54760
|
};
|
|
54736
|
-
exports
|
|
54761
|
+
exports.default = Settings;
|
|
54737
54762
|
}
|
|
54738
54763
|
});
|
|
54739
54764
|
|
|
54740
54765
|
// node_modules/@nodelib/fs.scandir/out/index.js
|
|
54741
54766
|
var require_out2 = __commonJS({
|
|
54742
|
-
"node_modules/@nodelib/fs.scandir/out/index.js"(exports
|
|
54743
|
-
Object.defineProperty(exports
|
|
54744
|
-
exports
|
|
54767
|
+
"node_modules/@nodelib/fs.scandir/out/index.js"(exports) {
|
|
54768
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
54769
|
+
exports.Settings = exports.scandirSync = exports.scandir = void 0;
|
|
54745
54770
|
var async = require_async2();
|
|
54746
54771
|
var sync = require_sync2();
|
|
54747
54772
|
var settings_1 = require_settings2();
|
|
54748
|
-
exports
|
|
54773
|
+
exports.Settings = settings_1.default;
|
|
54749
54774
|
function scandir(path15, optionsOrSettingsOrCallback, callback) {
|
|
54750
54775
|
if (typeof optionsOrSettingsOrCallback === "function") {
|
|
54751
54776
|
async.read(path15, getSettings(), optionsOrSettingsOrCallback);
|
|
@@ -54753,12 +54778,12 @@ var require_out2 = __commonJS({
|
|
|
54753
54778
|
}
|
|
54754
54779
|
async.read(path15, getSettings(optionsOrSettingsOrCallback), callback);
|
|
54755
54780
|
}
|
|
54756
|
-
exports
|
|
54781
|
+
exports.scandir = scandir;
|
|
54757
54782
|
function scandirSync(path15, optionsOrSettings) {
|
|
54758
54783
|
const settings = getSettings(optionsOrSettings);
|
|
54759
54784
|
return sync.read(path15, settings);
|
|
54760
54785
|
}
|
|
54761
|
-
exports
|
|
54786
|
+
exports.scandirSync = scandirSync;
|
|
54762
54787
|
function getSettings(settingsOrOptions = {}) {
|
|
54763
54788
|
if (settingsOrOptions instanceof settings_1.default) {
|
|
54764
54789
|
return settingsOrOptions;
|
|
@@ -54770,7 +54795,7 @@ var require_out2 = __commonJS({
|
|
|
54770
54795
|
|
|
54771
54796
|
// node_modules/reusify/reusify.js
|
|
54772
54797
|
var require_reusify = __commonJS({
|
|
54773
|
-
"node_modules/reusify/reusify.js"(exports
|
|
54798
|
+
"node_modules/reusify/reusify.js"(exports, module) {
|
|
54774
54799
|
function reusify(Constructor) {
|
|
54775
54800
|
var head = new Constructor();
|
|
54776
54801
|
var tail = head;
|
|
@@ -54800,7 +54825,7 @@ var require_reusify = __commonJS({
|
|
|
54800
54825
|
|
|
54801
54826
|
// node_modules/fastq/queue.js
|
|
54802
54827
|
var require_queue = __commonJS({
|
|
54803
|
-
"node_modules/fastq/queue.js"(exports
|
|
54828
|
+
"node_modules/fastq/queue.js"(exports, module) {
|
|
54804
54829
|
var reusify = require_reusify();
|
|
54805
54830
|
function fastqueue(context, worker, _concurrency) {
|
|
54806
54831
|
if (typeof context === "function") {
|
|
@@ -55060,24 +55085,24 @@ var require_queue = __commonJS({
|
|
|
55060
55085
|
|
|
55061
55086
|
// node_modules/@nodelib/fs.walk/out/readers/common.js
|
|
55062
55087
|
var require_common2 = __commonJS({
|
|
55063
|
-
"node_modules/@nodelib/fs.walk/out/readers/common.js"(exports
|
|
55064
|
-
Object.defineProperty(exports
|
|
55065
|
-
exports
|
|
55088
|
+
"node_modules/@nodelib/fs.walk/out/readers/common.js"(exports) {
|
|
55089
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
55090
|
+
exports.joinPathSegments = exports.replacePathSegmentSeparator = exports.isAppliedFilter = exports.isFatalError = void 0;
|
|
55066
55091
|
function isFatalError(settings, error) {
|
|
55067
55092
|
if (settings.errorFilter === null) {
|
|
55068
55093
|
return true;
|
|
55069
55094
|
}
|
|
55070
55095
|
return !settings.errorFilter(error);
|
|
55071
55096
|
}
|
|
55072
|
-
exports
|
|
55097
|
+
exports.isFatalError = isFatalError;
|
|
55073
55098
|
function isAppliedFilter(filter2, value) {
|
|
55074
55099
|
return filter2 === null || filter2(value);
|
|
55075
55100
|
}
|
|
55076
|
-
exports
|
|
55101
|
+
exports.isAppliedFilter = isAppliedFilter;
|
|
55077
55102
|
function replacePathSegmentSeparator(filepath, separator) {
|
|
55078
55103
|
return filepath.split(/[/\\]/).join(separator);
|
|
55079
55104
|
}
|
|
55080
|
-
exports
|
|
55105
|
+
exports.replacePathSegmentSeparator = replacePathSegmentSeparator;
|
|
55081
55106
|
function joinPathSegments(a, b, separator) {
|
|
55082
55107
|
if (a === "") {
|
|
55083
55108
|
return b;
|
|
@@ -55087,14 +55112,14 @@ var require_common2 = __commonJS({
|
|
|
55087
55112
|
}
|
|
55088
55113
|
return a + separator + b;
|
|
55089
55114
|
}
|
|
55090
|
-
exports
|
|
55115
|
+
exports.joinPathSegments = joinPathSegments;
|
|
55091
55116
|
}
|
|
55092
55117
|
});
|
|
55093
55118
|
|
|
55094
55119
|
// node_modules/@nodelib/fs.walk/out/readers/reader.js
|
|
55095
55120
|
var require_reader = __commonJS({
|
|
55096
|
-
"node_modules/@nodelib/fs.walk/out/readers/reader.js"(exports
|
|
55097
|
-
Object.defineProperty(exports
|
|
55121
|
+
"node_modules/@nodelib/fs.walk/out/readers/reader.js"(exports) {
|
|
55122
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
55098
55123
|
var common = require_common2();
|
|
55099
55124
|
var Reader = class {
|
|
55100
55125
|
constructor(_root, _settings) {
|
|
@@ -55103,14 +55128,14 @@ var require_reader = __commonJS({
|
|
|
55103
55128
|
this._root = common.replacePathSegmentSeparator(_root, _settings.pathSegmentSeparator);
|
|
55104
55129
|
}
|
|
55105
55130
|
};
|
|
55106
|
-
exports
|
|
55131
|
+
exports.default = Reader;
|
|
55107
55132
|
}
|
|
55108
55133
|
});
|
|
55109
55134
|
|
|
55110
55135
|
// node_modules/@nodelib/fs.walk/out/readers/async.js
|
|
55111
55136
|
var require_async3 = __commonJS({
|
|
55112
|
-
"node_modules/@nodelib/fs.walk/out/readers/async.js"(exports
|
|
55113
|
-
Object.defineProperty(exports
|
|
55137
|
+
"node_modules/@nodelib/fs.walk/out/readers/async.js"(exports) {
|
|
55138
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
55114
55139
|
var events_1 = __require("events");
|
|
55115
55140
|
var fsScandir = require_out2();
|
|
55116
55141
|
var fastq = require_queue();
|
|
@@ -55205,14 +55230,14 @@ var require_async3 = __commonJS({
|
|
|
55205
55230
|
this._emitter.emit("entry", entry);
|
|
55206
55231
|
}
|
|
55207
55232
|
};
|
|
55208
|
-
exports
|
|
55233
|
+
exports.default = AsyncReader;
|
|
55209
55234
|
}
|
|
55210
55235
|
});
|
|
55211
55236
|
|
|
55212
55237
|
// node_modules/@nodelib/fs.walk/out/providers/async.js
|
|
55213
55238
|
var require_async4 = __commonJS({
|
|
55214
|
-
"node_modules/@nodelib/fs.walk/out/providers/async.js"(exports
|
|
55215
|
-
Object.defineProperty(exports
|
|
55239
|
+
"node_modules/@nodelib/fs.walk/out/providers/async.js"(exports) {
|
|
55240
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
55216
55241
|
var async_1 = require_async3();
|
|
55217
55242
|
var AsyncProvider = class {
|
|
55218
55243
|
constructor(_root, _settings) {
|
|
@@ -55234,7 +55259,7 @@ var require_async4 = __commonJS({
|
|
|
55234
55259
|
this._reader.read();
|
|
55235
55260
|
}
|
|
55236
55261
|
};
|
|
55237
|
-
exports
|
|
55262
|
+
exports.default = AsyncProvider;
|
|
55238
55263
|
function callFailureCallback(callback, error) {
|
|
55239
55264
|
callback(error);
|
|
55240
55265
|
}
|
|
@@ -55246,8 +55271,8 @@ var require_async4 = __commonJS({
|
|
|
55246
55271
|
|
|
55247
55272
|
// node_modules/@nodelib/fs.walk/out/providers/stream.js
|
|
55248
55273
|
var require_stream2 = __commonJS({
|
|
55249
|
-
"node_modules/@nodelib/fs.walk/out/providers/stream.js"(exports
|
|
55250
|
-
Object.defineProperty(exports
|
|
55274
|
+
"node_modules/@nodelib/fs.walk/out/providers/stream.js"(exports) {
|
|
55275
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
55251
55276
|
var stream_1 = __require("stream");
|
|
55252
55277
|
var async_1 = require_async3();
|
|
55253
55278
|
var StreamProvider = class {
|
|
@@ -55280,14 +55305,14 @@ var require_stream2 = __commonJS({
|
|
|
55280
55305
|
return this._stream;
|
|
55281
55306
|
}
|
|
55282
55307
|
};
|
|
55283
|
-
exports
|
|
55308
|
+
exports.default = StreamProvider;
|
|
55284
55309
|
}
|
|
55285
55310
|
});
|
|
55286
55311
|
|
|
55287
55312
|
// node_modules/@nodelib/fs.walk/out/readers/sync.js
|
|
55288
55313
|
var require_sync3 = __commonJS({
|
|
55289
|
-
"node_modules/@nodelib/fs.walk/out/readers/sync.js"(exports
|
|
55290
|
-
Object.defineProperty(exports
|
|
55314
|
+
"node_modules/@nodelib/fs.walk/out/readers/sync.js"(exports) {
|
|
55315
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
55291
55316
|
var fsScandir = require_out2();
|
|
55292
55317
|
var common = require_common2();
|
|
55293
55318
|
var reader_1 = require_reader();
|
|
@@ -55343,14 +55368,14 @@ var require_sync3 = __commonJS({
|
|
|
55343
55368
|
this._storage.push(entry);
|
|
55344
55369
|
}
|
|
55345
55370
|
};
|
|
55346
|
-
exports
|
|
55371
|
+
exports.default = SyncReader;
|
|
55347
55372
|
}
|
|
55348
55373
|
});
|
|
55349
55374
|
|
|
55350
55375
|
// node_modules/@nodelib/fs.walk/out/providers/sync.js
|
|
55351
55376
|
var require_sync4 = __commonJS({
|
|
55352
|
-
"node_modules/@nodelib/fs.walk/out/providers/sync.js"(exports
|
|
55353
|
-
Object.defineProperty(exports
|
|
55377
|
+
"node_modules/@nodelib/fs.walk/out/providers/sync.js"(exports) {
|
|
55378
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
55354
55379
|
var sync_1 = require_sync3();
|
|
55355
55380
|
var SyncProvider = class {
|
|
55356
55381
|
constructor(_root, _settings) {
|
|
@@ -55362,14 +55387,14 @@ var require_sync4 = __commonJS({
|
|
|
55362
55387
|
return this._reader.read();
|
|
55363
55388
|
}
|
|
55364
55389
|
};
|
|
55365
|
-
exports
|
|
55390
|
+
exports.default = SyncProvider;
|
|
55366
55391
|
}
|
|
55367
55392
|
});
|
|
55368
55393
|
|
|
55369
55394
|
// node_modules/@nodelib/fs.walk/out/settings.js
|
|
55370
55395
|
var require_settings3 = __commonJS({
|
|
55371
|
-
"node_modules/@nodelib/fs.walk/out/settings.js"(exports
|
|
55372
|
-
Object.defineProperty(exports
|
|
55396
|
+
"node_modules/@nodelib/fs.walk/out/settings.js"(exports) {
|
|
55397
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
55373
55398
|
var path15 = __require("path");
|
|
55374
55399
|
var fsScandir = require_out2();
|
|
55375
55400
|
var Settings = class {
|
|
@@ -55393,20 +55418,20 @@ var require_settings3 = __commonJS({
|
|
|
55393
55418
|
return option !== null && option !== void 0 ? option : value;
|
|
55394
55419
|
}
|
|
55395
55420
|
};
|
|
55396
|
-
exports
|
|
55421
|
+
exports.default = Settings;
|
|
55397
55422
|
}
|
|
55398
55423
|
});
|
|
55399
55424
|
|
|
55400
55425
|
// node_modules/@nodelib/fs.walk/out/index.js
|
|
55401
55426
|
var require_out3 = __commonJS({
|
|
55402
|
-
"node_modules/@nodelib/fs.walk/out/index.js"(exports
|
|
55403
|
-
Object.defineProperty(exports
|
|
55404
|
-
exports
|
|
55427
|
+
"node_modules/@nodelib/fs.walk/out/index.js"(exports) {
|
|
55428
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
55429
|
+
exports.Settings = exports.walkStream = exports.walkSync = exports.walk = void 0;
|
|
55405
55430
|
var async_1 = require_async4();
|
|
55406
55431
|
var stream_1 = require_stream2();
|
|
55407
55432
|
var sync_1 = require_sync4();
|
|
55408
55433
|
var settings_1 = require_settings3();
|
|
55409
|
-
exports
|
|
55434
|
+
exports.Settings = settings_1.default;
|
|
55410
55435
|
function walk(directory, optionsOrSettingsOrCallback, callback) {
|
|
55411
55436
|
if (typeof optionsOrSettingsOrCallback === "function") {
|
|
55412
55437
|
new async_1.default(directory, getSettings()).read(optionsOrSettingsOrCallback);
|
|
@@ -55414,19 +55439,19 @@ var require_out3 = __commonJS({
|
|
|
55414
55439
|
}
|
|
55415
55440
|
new async_1.default(directory, getSettings(optionsOrSettingsOrCallback)).read(callback);
|
|
55416
55441
|
}
|
|
55417
|
-
exports
|
|
55442
|
+
exports.walk = walk;
|
|
55418
55443
|
function walkSync(directory, optionsOrSettings) {
|
|
55419
55444
|
const settings = getSettings(optionsOrSettings);
|
|
55420
55445
|
const provider = new sync_1.default(directory, settings);
|
|
55421
55446
|
return provider.read();
|
|
55422
55447
|
}
|
|
55423
|
-
exports
|
|
55448
|
+
exports.walkSync = walkSync;
|
|
55424
55449
|
function walkStream(directory, optionsOrSettings) {
|
|
55425
55450
|
const settings = getSettings(optionsOrSettings);
|
|
55426
55451
|
const provider = new stream_1.default(directory, settings);
|
|
55427
55452
|
return provider.read();
|
|
55428
55453
|
}
|
|
55429
|
-
exports
|
|
55454
|
+
exports.walkStream = walkStream;
|
|
55430
55455
|
function getSettings(settingsOrOptions = {}) {
|
|
55431
55456
|
if (settingsOrOptions instanceof settings_1.default) {
|
|
55432
55457
|
return settingsOrOptions;
|
|
@@ -55438,8 +55463,8 @@ var require_out3 = __commonJS({
|
|
|
55438
55463
|
|
|
55439
55464
|
// node_modules/fast-glob/out/readers/reader.js
|
|
55440
55465
|
var require_reader2 = __commonJS({
|
|
55441
|
-
"node_modules/fast-glob/out/readers/reader.js"(exports
|
|
55442
|
-
Object.defineProperty(exports
|
|
55466
|
+
"node_modules/fast-glob/out/readers/reader.js"(exports) {
|
|
55467
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
55443
55468
|
var path15 = __require("path");
|
|
55444
55469
|
var fsStat = require_out();
|
|
55445
55470
|
var utils = require_utils3();
|
|
@@ -55470,14 +55495,14 @@ var require_reader2 = __commonJS({
|
|
|
55470
55495
|
return !utils.errno.isEnoentCodeError(error) && !this._settings.suppressErrors;
|
|
55471
55496
|
}
|
|
55472
55497
|
};
|
|
55473
|
-
exports
|
|
55498
|
+
exports.default = Reader;
|
|
55474
55499
|
}
|
|
55475
55500
|
});
|
|
55476
55501
|
|
|
55477
55502
|
// node_modules/fast-glob/out/readers/stream.js
|
|
55478
55503
|
var require_stream3 = __commonJS({
|
|
55479
|
-
"node_modules/fast-glob/out/readers/stream.js"(exports
|
|
55480
|
-
Object.defineProperty(exports
|
|
55504
|
+
"node_modules/fast-glob/out/readers/stream.js"(exports) {
|
|
55505
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
55481
55506
|
var stream_1 = __require("stream");
|
|
55482
55507
|
var fsStat = require_out();
|
|
55483
55508
|
var fsWalk = require_out3();
|
|
@@ -55526,14 +55551,14 @@ var require_stream3 = __commonJS({
|
|
|
55526
55551
|
});
|
|
55527
55552
|
}
|
|
55528
55553
|
};
|
|
55529
|
-
exports
|
|
55554
|
+
exports.default = ReaderStream;
|
|
55530
55555
|
}
|
|
55531
55556
|
});
|
|
55532
55557
|
|
|
55533
55558
|
// node_modules/fast-glob/out/readers/async.js
|
|
55534
55559
|
var require_async5 = __commonJS({
|
|
55535
|
-
"node_modules/fast-glob/out/readers/async.js"(exports
|
|
55536
|
-
Object.defineProperty(exports
|
|
55560
|
+
"node_modules/fast-glob/out/readers/async.js"(exports) {
|
|
55561
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
55537
55562
|
var fsWalk = require_out3();
|
|
55538
55563
|
var reader_1 = require_reader2();
|
|
55539
55564
|
var stream_1 = require_stream3();
|
|
@@ -55564,14 +55589,14 @@ var require_async5 = __commonJS({
|
|
|
55564
55589
|
});
|
|
55565
55590
|
}
|
|
55566
55591
|
};
|
|
55567
|
-
exports
|
|
55592
|
+
exports.default = ReaderAsync;
|
|
55568
55593
|
}
|
|
55569
55594
|
});
|
|
55570
55595
|
|
|
55571
55596
|
// node_modules/fast-glob/out/providers/matchers/matcher.js
|
|
55572
55597
|
var require_matcher = __commonJS({
|
|
55573
|
-
"node_modules/fast-glob/out/providers/matchers/matcher.js"(exports
|
|
55574
|
-
Object.defineProperty(exports
|
|
55598
|
+
"node_modules/fast-glob/out/providers/matchers/matcher.js"(exports) {
|
|
55599
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
55575
55600
|
var utils = require_utils3();
|
|
55576
55601
|
var Matcher = class {
|
|
55577
55602
|
constructor(_patterns, _settings, _micromatchOptions) {
|
|
@@ -55614,14 +55639,14 @@ var require_matcher = __commonJS({
|
|
|
55614
55639
|
return utils.array.splitWhen(segments, (segment) => segment.dynamic && utils.pattern.hasGlobStar(segment.pattern));
|
|
55615
55640
|
}
|
|
55616
55641
|
};
|
|
55617
|
-
exports
|
|
55642
|
+
exports.default = Matcher;
|
|
55618
55643
|
}
|
|
55619
55644
|
});
|
|
55620
55645
|
|
|
55621
55646
|
// node_modules/fast-glob/out/providers/matchers/partial.js
|
|
55622
55647
|
var require_partial = __commonJS({
|
|
55623
|
-
"node_modules/fast-glob/out/providers/matchers/partial.js"(exports
|
|
55624
|
-
Object.defineProperty(exports
|
|
55648
|
+
"node_modules/fast-glob/out/providers/matchers/partial.js"(exports) {
|
|
55649
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
55625
55650
|
var matcher_1 = require_matcher();
|
|
55626
55651
|
var PartialMatcher = class extends matcher_1.default {
|
|
55627
55652
|
match(filepath) {
|
|
@@ -55650,14 +55675,14 @@ var require_partial = __commonJS({
|
|
|
55650
55675
|
return false;
|
|
55651
55676
|
}
|
|
55652
55677
|
};
|
|
55653
|
-
exports
|
|
55678
|
+
exports.default = PartialMatcher;
|
|
55654
55679
|
}
|
|
55655
55680
|
});
|
|
55656
55681
|
|
|
55657
55682
|
// node_modules/fast-glob/out/providers/filters/deep.js
|
|
55658
55683
|
var require_deep = __commonJS({
|
|
55659
|
-
"node_modules/fast-glob/out/providers/filters/deep.js"(exports
|
|
55660
|
-
Object.defineProperty(exports
|
|
55684
|
+
"node_modules/fast-glob/out/providers/filters/deep.js"(exports) {
|
|
55685
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
55661
55686
|
var utils = require_utils3();
|
|
55662
55687
|
var partial_1 = require_partial();
|
|
55663
55688
|
var DeepFilter = class {
|
|
@@ -55714,14 +55739,14 @@ var require_deep = __commonJS({
|
|
|
55714
55739
|
return !utils.pattern.matchAny(entryPath, patternsRe);
|
|
55715
55740
|
}
|
|
55716
55741
|
};
|
|
55717
|
-
exports
|
|
55742
|
+
exports.default = DeepFilter;
|
|
55718
55743
|
}
|
|
55719
55744
|
});
|
|
55720
55745
|
|
|
55721
55746
|
// node_modules/fast-glob/out/providers/filters/entry.js
|
|
55722
55747
|
var require_entry = __commonJS({
|
|
55723
|
-
"node_modules/fast-glob/out/providers/filters/entry.js"(exports
|
|
55724
|
-
Object.defineProperty(exports
|
|
55748
|
+
"node_modules/fast-glob/out/providers/filters/entry.js"(exports) {
|
|
55749
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
55725
55750
|
var utils = require_utils3();
|
|
55726
55751
|
var EntryFilter = class {
|
|
55727
55752
|
constructor(_settings, _micromatchOptions) {
|
|
@@ -55801,14 +55826,14 @@ var require_entry = __commonJS({
|
|
|
55801
55826
|
return isMatched;
|
|
55802
55827
|
}
|
|
55803
55828
|
};
|
|
55804
|
-
exports
|
|
55829
|
+
exports.default = EntryFilter;
|
|
55805
55830
|
}
|
|
55806
55831
|
});
|
|
55807
55832
|
|
|
55808
55833
|
// node_modules/fast-glob/out/providers/filters/error.js
|
|
55809
55834
|
var require_error = __commonJS({
|
|
55810
|
-
"node_modules/fast-glob/out/providers/filters/error.js"(exports
|
|
55811
|
-
Object.defineProperty(exports
|
|
55835
|
+
"node_modules/fast-glob/out/providers/filters/error.js"(exports) {
|
|
55836
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
55812
55837
|
var utils = require_utils3();
|
|
55813
55838
|
var ErrorFilter = class {
|
|
55814
55839
|
constructor(_settings) {
|
|
@@ -55821,14 +55846,14 @@ var require_error = __commonJS({
|
|
|
55821
55846
|
return utils.errno.isEnoentCodeError(error) || this._settings.suppressErrors;
|
|
55822
55847
|
}
|
|
55823
55848
|
};
|
|
55824
|
-
exports
|
|
55849
|
+
exports.default = ErrorFilter;
|
|
55825
55850
|
}
|
|
55826
55851
|
});
|
|
55827
55852
|
|
|
55828
55853
|
// node_modules/fast-glob/out/providers/transformers/entry.js
|
|
55829
55854
|
var require_entry2 = __commonJS({
|
|
55830
|
-
"node_modules/fast-glob/out/providers/transformers/entry.js"(exports
|
|
55831
|
-
Object.defineProperty(exports
|
|
55855
|
+
"node_modules/fast-glob/out/providers/transformers/entry.js"(exports) {
|
|
55856
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
55832
55857
|
var utils = require_utils3();
|
|
55833
55858
|
var EntryTransformer = class {
|
|
55834
55859
|
constructor(_settings) {
|
|
@@ -55852,14 +55877,14 @@ var require_entry2 = __commonJS({
|
|
|
55852
55877
|
return Object.assign(Object.assign({}, entry), { path: filepath });
|
|
55853
55878
|
}
|
|
55854
55879
|
};
|
|
55855
|
-
exports
|
|
55880
|
+
exports.default = EntryTransformer;
|
|
55856
55881
|
}
|
|
55857
55882
|
});
|
|
55858
55883
|
|
|
55859
55884
|
// node_modules/fast-glob/out/providers/provider.js
|
|
55860
55885
|
var require_provider = __commonJS({
|
|
55861
|
-
"node_modules/fast-glob/out/providers/provider.js"(exports
|
|
55862
|
-
Object.defineProperty(exports
|
|
55886
|
+
"node_modules/fast-glob/out/providers/provider.js"(exports) {
|
|
55887
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
55863
55888
|
var path15 = __require("path");
|
|
55864
55889
|
var deep_1 = require_deep();
|
|
55865
55890
|
var entry_1 = require_entry();
|
|
@@ -55905,14 +55930,14 @@ var require_provider = __commonJS({
|
|
|
55905
55930
|
};
|
|
55906
55931
|
}
|
|
55907
55932
|
};
|
|
55908
|
-
exports
|
|
55933
|
+
exports.default = Provider;
|
|
55909
55934
|
}
|
|
55910
55935
|
});
|
|
55911
55936
|
|
|
55912
55937
|
// node_modules/fast-glob/out/providers/async.js
|
|
55913
55938
|
var require_async6 = __commonJS({
|
|
55914
|
-
"node_modules/fast-glob/out/providers/async.js"(exports
|
|
55915
|
-
Object.defineProperty(exports
|
|
55939
|
+
"node_modules/fast-glob/out/providers/async.js"(exports) {
|
|
55940
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
55916
55941
|
var async_1 = require_async5();
|
|
55917
55942
|
var provider_1 = require_provider();
|
|
55918
55943
|
var ProviderAsync = class extends provider_1.default {
|
|
@@ -55933,14 +55958,14 @@ var require_async6 = __commonJS({
|
|
|
55933
55958
|
return this._reader.static(task.patterns, options8);
|
|
55934
55959
|
}
|
|
55935
55960
|
};
|
|
55936
|
-
exports
|
|
55961
|
+
exports.default = ProviderAsync;
|
|
55937
55962
|
}
|
|
55938
55963
|
});
|
|
55939
55964
|
|
|
55940
55965
|
// node_modules/fast-glob/out/providers/stream.js
|
|
55941
55966
|
var require_stream4 = __commonJS({
|
|
55942
|
-
"node_modules/fast-glob/out/providers/stream.js"(exports
|
|
55943
|
-
Object.defineProperty(exports
|
|
55967
|
+
"node_modules/fast-glob/out/providers/stream.js"(exports) {
|
|
55968
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
55944
55969
|
var stream_1 = __require("stream");
|
|
55945
55970
|
var stream_2 = require_stream3();
|
|
55946
55971
|
var provider_1 = require_provider();
|
|
@@ -55966,14 +55991,14 @@ var require_stream4 = __commonJS({
|
|
|
55966
55991
|
return this._reader.static(task.patterns, options8);
|
|
55967
55992
|
}
|
|
55968
55993
|
};
|
|
55969
|
-
exports
|
|
55994
|
+
exports.default = ProviderStream;
|
|
55970
55995
|
}
|
|
55971
55996
|
});
|
|
55972
55997
|
|
|
55973
55998
|
// node_modules/fast-glob/out/readers/sync.js
|
|
55974
55999
|
var require_sync5 = __commonJS({
|
|
55975
|
-
"node_modules/fast-glob/out/readers/sync.js"(exports
|
|
55976
|
-
Object.defineProperty(exports
|
|
56000
|
+
"node_modules/fast-glob/out/readers/sync.js"(exports) {
|
|
56001
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
55977
56002
|
var fsStat = require_out();
|
|
55978
56003
|
var fsWalk = require_out3();
|
|
55979
56004
|
var reader_1 = require_reader2();
|
|
@@ -56013,14 +56038,14 @@ var require_sync5 = __commonJS({
|
|
|
56013
56038
|
return this._statSync(filepath, this._fsStatSettings);
|
|
56014
56039
|
}
|
|
56015
56040
|
};
|
|
56016
|
-
exports
|
|
56041
|
+
exports.default = ReaderSync;
|
|
56017
56042
|
}
|
|
56018
56043
|
});
|
|
56019
56044
|
|
|
56020
56045
|
// node_modules/fast-glob/out/providers/sync.js
|
|
56021
56046
|
var require_sync6 = __commonJS({
|
|
56022
|
-
"node_modules/fast-glob/out/providers/sync.js"(exports
|
|
56023
|
-
Object.defineProperty(exports
|
|
56047
|
+
"node_modules/fast-glob/out/providers/sync.js"(exports) {
|
|
56048
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
56024
56049
|
var sync_1 = require_sync5();
|
|
56025
56050
|
var provider_1 = require_provider();
|
|
56026
56051
|
var ProviderSync = class extends provider_1.default {
|
|
@@ -56041,19 +56066,19 @@ var require_sync6 = __commonJS({
|
|
|
56041
56066
|
return this._reader.static(task.patterns, options8);
|
|
56042
56067
|
}
|
|
56043
56068
|
};
|
|
56044
|
-
exports
|
|
56069
|
+
exports.default = ProviderSync;
|
|
56045
56070
|
}
|
|
56046
56071
|
});
|
|
56047
56072
|
|
|
56048
56073
|
// node_modules/fast-glob/out/settings.js
|
|
56049
56074
|
var require_settings4 = __commonJS({
|
|
56050
|
-
"node_modules/fast-glob/out/settings.js"(exports
|
|
56051
|
-
Object.defineProperty(exports
|
|
56052
|
-
exports
|
|
56075
|
+
"node_modules/fast-glob/out/settings.js"(exports) {
|
|
56076
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
56077
|
+
exports.DEFAULT_FILE_SYSTEM_ADAPTER = void 0;
|
|
56053
56078
|
var fs4 = __require("fs");
|
|
56054
56079
|
var os = __require("os");
|
|
56055
56080
|
var CPU_COUNT = Math.max(os.cpus().length, 1);
|
|
56056
|
-
exports
|
|
56081
|
+
exports.DEFAULT_FILE_SYSTEM_ADAPTER = {
|
|
56057
56082
|
lstat: fs4.lstat,
|
|
56058
56083
|
lstatSync: fs4.lstatSync,
|
|
56059
56084
|
stat: fs4.stat,
|
|
@@ -56097,16 +56122,16 @@ var require_settings4 = __commonJS({
|
|
|
56097
56122
|
return option === void 0 ? value : option;
|
|
56098
56123
|
}
|
|
56099
56124
|
_getFileSystemMethods(methods = {}) {
|
|
56100
|
-
return Object.assign(Object.assign({}, exports
|
|
56125
|
+
return Object.assign(Object.assign({}, exports.DEFAULT_FILE_SYSTEM_ADAPTER), methods);
|
|
56101
56126
|
}
|
|
56102
56127
|
};
|
|
56103
|
-
exports
|
|
56128
|
+
exports.default = Settings;
|
|
56104
56129
|
}
|
|
56105
56130
|
});
|
|
56106
56131
|
|
|
56107
56132
|
// node_modules/fast-glob/out/index.js
|
|
56108
56133
|
var require_out4 = __commonJS({
|
|
56109
|
-
"node_modules/fast-glob/out/index.js"(exports
|
|
56134
|
+
"node_modules/fast-glob/out/index.js"(exports, module) {
|
|
56110
56135
|
var taskManager = require_tasks();
|
|
56111
56136
|
var async_1 = require_async6();
|
|
56112
56137
|
var stream_1 = require_stream4();
|
|
@@ -56204,7 +56229,7 @@ var require_out4 = __commonJS({
|
|
|
56204
56229
|
|
|
56205
56230
|
// node_modules/picocolors/picocolors.js
|
|
56206
56231
|
var require_picocolors = __commonJS({
|
|
56207
|
-
"node_modules/picocolors/picocolors.js"(exports
|
|
56232
|
+
"node_modules/picocolors/picocolors.js"(exports, module) {
|
|
56208
56233
|
var p = process || {};
|
|
56209
56234
|
var argv = p.argv || [];
|
|
56210
56235
|
var env = p.env || {};
|
|
@@ -56276,7 +56301,7 @@ var require_picocolors = __commonJS({
|
|
|
56276
56301
|
|
|
56277
56302
|
// node_modules/semver/internal/debug.js
|
|
56278
56303
|
var require_debug = __commonJS({
|
|
56279
|
-
"node_modules/semver/internal/debug.js"(exports
|
|
56304
|
+
"node_modules/semver/internal/debug.js"(exports, module) {
|
|
56280
56305
|
var debug = typeof process === "object" && process.env && process.env.NODE_DEBUG && /\bsemver\b/i.test(process.env.NODE_DEBUG) ? (...args) => console.error("SEMVER", ...args) : () => {
|
|
56281
56306
|
};
|
|
56282
56307
|
module.exports = debug;
|
|
@@ -56285,7 +56310,7 @@ var require_debug = __commonJS({
|
|
|
56285
56310
|
|
|
56286
56311
|
// node_modules/semver/internal/constants.js
|
|
56287
56312
|
var require_constants4 = __commonJS({
|
|
56288
|
-
"node_modules/semver/internal/constants.js"(exports
|
|
56313
|
+
"node_modules/semver/internal/constants.js"(exports, module) {
|
|
56289
56314
|
var SEMVER_SPEC_VERSION = "2.0.0";
|
|
56290
56315
|
var MAX_LENGTH = 256;
|
|
56291
56316
|
var MAX_SAFE_INTEGER = Number.MAX_SAFE_INTEGER || /* istanbul ignore next */
|
|
@@ -56316,19 +56341,19 @@ var require_constants4 = __commonJS({
|
|
|
56316
56341
|
|
|
56317
56342
|
// node_modules/semver/internal/re.js
|
|
56318
56343
|
var require_re = __commonJS({
|
|
56319
|
-
"node_modules/semver/internal/re.js"(exports
|
|
56344
|
+
"node_modules/semver/internal/re.js"(exports, module) {
|
|
56320
56345
|
var {
|
|
56321
56346
|
MAX_SAFE_COMPONENT_LENGTH,
|
|
56322
56347
|
MAX_SAFE_BUILD_LENGTH,
|
|
56323
56348
|
MAX_LENGTH
|
|
56324
56349
|
} = require_constants4();
|
|
56325
56350
|
var debug = require_debug();
|
|
56326
|
-
exports
|
|
56327
|
-
var re = exports
|
|
56328
|
-
var safeRe = exports
|
|
56329
|
-
var src = exports
|
|
56330
|
-
var safeSrc = exports
|
|
56331
|
-
var t = exports
|
|
56351
|
+
exports = module.exports = {};
|
|
56352
|
+
var re = exports.re = [];
|
|
56353
|
+
var safeRe = exports.safeRe = [];
|
|
56354
|
+
var src = exports.src = [];
|
|
56355
|
+
var safeSrc = exports.safeSrc = [];
|
|
56356
|
+
var t = exports.t = {};
|
|
56332
56357
|
var R = 0;
|
|
56333
56358
|
var LETTERDASHNUMBER = "[a-zA-Z0-9-]";
|
|
56334
56359
|
var safeRegexReplacements = [
|
|
@@ -56381,18 +56406,18 @@ var require_re = __commonJS({
|
|
|
56381
56406
|
createToken("COERCERTLFULL", src[t.COERCEFULL], true);
|
|
56382
56407
|
createToken("LONETILDE", "(?:~>?)");
|
|
56383
56408
|
createToken("TILDETRIM", `(\\s*)${src[t.LONETILDE]}\\s+`, true);
|
|
56384
|
-
exports
|
|
56409
|
+
exports.tildeTrimReplace = "$1~";
|
|
56385
56410
|
createToken("TILDE", `^${src[t.LONETILDE]}${src[t.XRANGEPLAIN]}$`);
|
|
56386
56411
|
createToken("TILDELOOSE", `^${src[t.LONETILDE]}${src[t.XRANGEPLAINLOOSE]}$`);
|
|
56387
56412
|
createToken("LONECARET", "(?:\\^)");
|
|
56388
56413
|
createToken("CARETTRIM", `(\\s*)${src[t.LONECARET]}\\s+`, true);
|
|
56389
|
-
exports
|
|
56414
|
+
exports.caretTrimReplace = "$1^";
|
|
56390
56415
|
createToken("CARET", `^${src[t.LONECARET]}${src[t.XRANGEPLAIN]}$`);
|
|
56391
56416
|
createToken("CARETLOOSE", `^${src[t.LONECARET]}${src[t.XRANGEPLAINLOOSE]}$`);
|
|
56392
56417
|
createToken("COMPARATORLOOSE", `^${src[t.GTLT]}\\s*(${src[t.LOOSEPLAIN]})$|^$`);
|
|
56393
56418
|
createToken("COMPARATOR", `^${src[t.GTLT]}\\s*(${src[t.FULLPLAIN]})$|^$`);
|
|
56394
56419
|
createToken("COMPARATORTRIM", `(\\s*)${src[t.GTLT]}\\s*(${src[t.LOOSEPLAIN]}|${src[t.XRANGEPLAIN]})`, true);
|
|
56395
|
-
exports
|
|
56420
|
+
exports.comparatorTrimReplace = "$1$2$3";
|
|
56396
56421
|
createToken("HYPHENRANGE", `^\\s*(${src[t.XRANGEPLAIN]})\\s+-\\s+(${src[t.XRANGEPLAIN]})\\s*$`);
|
|
56397
56422
|
createToken("HYPHENRANGELOOSE", `^\\s*(${src[t.XRANGEPLAINLOOSE]})\\s+-\\s+(${src[t.XRANGEPLAINLOOSE]})\\s*$`);
|
|
56398
56423
|
createToken("STAR", "(<|>)?=?\\s*\\*");
|
|
@@ -56403,7 +56428,7 @@ var require_re = __commonJS({
|
|
|
56403
56428
|
|
|
56404
56429
|
// node_modules/semver/internal/parse-options.js
|
|
56405
56430
|
var require_parse_options = __commonJS({
|
|
56406
|
-
"node_modules/semver/internal/parse-options.js"(exports
|
|
56431
|
+
"node_modules/semver/internal/parse-options.js"(exports, module) {
|
|
56407
56432
|
var looseOption = Object.freeze({ loose: true });
|
|
56408
56433
|
var emptyOpts = Object.freeze({});
|
|
56409
56434
|
var parseOptions = (options8) => {
|
|
@@ -56421,7 +56446,7 @@ var require_parse_options = __commonJS({
|
|
|
56421
56446
|
|
|
56422
56447
|
// node_modules/semver/internal/identifiers.js
|
|
56423
56448
|
var require_identifiers = __commonJS({
|
|
56424
|
-
"node_modules/semver/internal/identifiers.js"(exports
|
|
56449
|
+
"node_modules/semver/internal/identifiers.js"(exports, module) {
|
|
56425
56450
|
var numeric = /^[0-9]+$/;
|
|
56426
56451
|
var compareIdentifiers = (a, b) => {
|
|
56427
56452
|
if (typeof a === "number" && typeof b === "number") {
|
|
@@ -56445,7 +56470,7 @@ var require_identifiers = __commonJS({
|
|
|
56445
56470
|
|
|
56446
56471
|
// node_modules/semver/classes/semver.js
|
|
56447
56472
|
var require_semver = __commonJS({
|
|
56448
|
-
"node_modules/semver/classes/semver.js"(exports
|
|
56473
|
+
"node_modules/semver/classes/semver.js"(exports, module) {
|
|
56449
56474
|
var debug = require_debug();
|
|
56450
56475
|
var { MAX_LENGTH, MAX_SAFE_INTEGER } = require_constants4();
|
|
56451
56476
|
var { safeRe: re, t } = require_re();
|
|
@@ -56723,7 +56748,7 @@ var require_semver = __commonJS({
|
|
|
56723
56748
|
|
|
56724
56749
|
// node_modules/semver/functions/compare.js
|
|
56725
56750
|
var require_compare = __commonJS({
|
|
56726
|
-
"node_modules/semver/functions/compare.js"(exports
|
|
56751
|
+
"node_modules/semver/functions/compare.js"(exports, module) {
|
|
56727
56752
|
var SemVer = require_semver();
|
|
56728
56753
|
var compare = (a, b, loose) => new SemVer(a, loose).compare(new SemVer(b, loose));
|
|
56729
56754
|
module.exports = compare;
|
|
@@ -56732,7 +56757,7 @@ var require_compare = __commonJS({
|
|
|
56732
56757
|
|
|
56733
56758
|
// node_modules/semver/functions/gte.js
|
|
56734
56759
|
var require_gte = __commonJS({
|
|
56735
|
-
"node_modules/semver/functions/gte.js"(exports
|
|
56760
|
+
"node_modules/semver/functions/gte.js"(exports, module) {
|
|
56736
56761
|
var compare = require_compare();
|
|
56737
56762
|
var gte = (a, b, loose) => compare(a, b, loose) >= 0;
|
|
56738
56763
|
module.exports = gte;
|
|
@@ -56741,7 +56766,7 @@ var require_gte = __commonJS({
|
|
|
56741
56766
|
|
|
56742
56767
|
// node_modules/pseudomap/pseudomap.js
|
|
56743
56768
|
var require_pseudomap = __commonJS({
|
|
56744
|
-
"node_modules/pseudomap/pseudomap.js"(exports
|
|
56769
|
+
"node_modules/pseudomap/pseudomap.js"(exports, module) {
|
|
56745
56770
|
var hasOwnProperty3 = Object.prototype.hasOwnProperty;
|
|
56746
56771
|
module.exports = PseudoMap;
|
|
56747
56772
|
function PseudoMap(set2) {
|
|
@@ -56836,7 +56861,7 @@ var require_pseudomap = __commonJS({
|
|
|
56836
56861
|
|
|
56837
56862
|
// node_modules/pseudomap/map.js
|
|
56838
56863
|
var require_map = __commonJS({
|
|
56839
|
-
"node_modules/pseudomap/map.js"(exports
|
|
56864
|
+
"node_modules/pseudomap/map.js"(exports, module) {
|
|
56840
56865
|
if (process.env.npm_package_name === "pseudomap" && process.env.npm_lifecycle_script === "test")
|
|
56841
56866
|
process.env.TEST_PSEUDOMAP = "true";
|
|
56842
56867
|
if (typeof Map === "function" && !process.env.TEST_PSEUDOMAP) {
|
|
@@ -56849,7 +56874,7 @@ var require_map = __commonJS({
|
|
|
56849
56874
|
|
|
56850
56875
|
// node_modules/yallist/yallist.js
|
|
56851
56876
|
var require_yallist = __commonJS({
|
|
56852
|
-
"node_modules/yallist/yallist.js"(exports
|
|
56877
|
+
"node_modules/yallist/yallist.js"(exports, module) {
|
|
56853
56878
|
module.exports = Yallist;
|
|
56854
56879
|
Yallist.Node = Node;
|
|
56855
56880
|
Yallist.create = Yallist;
|
|
@@ -57175,7 +57200,7 @@ var require_yallist = __commonJS({
|
|
|
57175
57200
|
|
|
57176
57201
|
// node_modules/editorconfig/node_modules/lru-cache/index.js
|
|
57177
57202
|
var require_lru_cache = __commonJS({
|
|
57178
|
-
"node_modules/editorconfig/node_modules/lru-cache/index.js"(exports
|
|
57203
|
+
"node_modules/editorconfig/node_modules/lru-cache/index.js"(exports, module) {
|
|
57179
57204
|
module.exports = LRUCache;
|
|
57180
57205
|
var Map2 = require_map();
|
|
57181
57206
|
var util2 = __require("util");
|
|
@@ -57566,7 +57591,7 @@ var require_lru_cache = __commonJS({
|
|
|
57566
57591
|
|
|
57567
57592
|
// node_modules/sigmund/sigmund.js
|
|
57568
57593
|
var require_sigmund = __commonJS({
|
|
57569
|
-
"node_modules/sigmund/sigmund.js"(exports
|
|
57594
|
+
"node_modules/sigmund/sigmund.js"(exports, module) {
|
|
57570
57595
|
module.exports = sigmund;
|
|
57571
57596
|
function sigmund(subject, maxSessions) {
|
|
57572
57597
|
maxSessions = maxSessions || 10;
|
|
@@ -57601,10 +57626,10 @@ var require_sigmund = __commonJS({
|
|
|
57601
57626
|
|
|
57602
57627
|
// node_modules/editorconfig/src/lib/fnmatch.js
|
|
57603
57628
|
var require_fnmatch = __commonJS({
|
|
57604
|
-
"node_modules/editorconfig/src/lib/fnmatch.js"(exports
|
|
57629
|
+
"node_modules/editorconfig/src/lib/fnmatch.js"(exports, module) {
|
|
57605
57630
|
var platform = typeof process === "object" ? process.platform : "win32";
|
|
57606
57631
|
if (module) module.exports = minimatch;
|
|
57607
|
-
else exports
|
|
57632
|
+
else exports.minimatch = minimatch;
|
|
57608
57633
|
minimatch.Minimatch = Minimatch;
|
|
57609
57634
|
var LRU = require_lru_cache();
|
|
57610
57635
|
minimatch.cache = new LRU({ max: 100 });
|
|
@@ -58198,8 +58223,8 @@ var require_fnmatch = __commonJS({
|
|
|
58198
58223
|
|
|
58199
58224
|
// node_modules/editorconfig/src/lib/ini.js
|
|
58200
58225
|
var require_ini = __commonJS({
|
|
58201
|
-
"node_modules/editorconfig/src/lib/ini.js"(exports
|
|
58202
|
-
var __awaiter = exports
|
|
58226
|
+
"node_modules/editorconfig/src/lib/ini.js"(exports) {
|
|
58227
|
+
var __awaiter = exports && exports.__awaiter || function(thisArg, _arguments, P, generator) {
|
|
58203
58228
|
return new (P || (P = Promise))(function(resolve3, reject) {
|
|
58204
58229
|
function fulfilled(value) {
|
|
58205
58230
|
try {
|
|
@@ -58223,7 +58248,7 @@ var require_ini = __commonJS({
|
|
|
58223
58248
|
step((generator = generator.apply(thisArg, _arguments || [])).next());
|
|
58224
58249
|
});
|
|
58225
58250
|
};
|
|
58226
|
-
var __generator = exports
|
|
58251
|
+
var __generator = exports && exports.__generator || function(thisArg, body) {
|
|
58227
58252
|
var _ = { label: 0, sent: function() {
|
|
58228
58253
|
if (t[0] & 1) throw t[1];
|
|
58229
58254
|
return t[1];
|
|
@@ -58292,7 +58317,7 @@ var require_ini = __commonJS({
|
|
|
58292
58317
|
return { value: op[0] ? op[1] : void 0, done: true };
|
|
58293
58318
|
}
|
|
58294
58319
|
};
|
|
58295
|
-
var __importStar = exports
|
|
58320
|
+
var __importStar = exports && exports.__importStar || function(mod) {
|
|
58296
58321
|
if (mod && mod.__esModule) return mod;
|
|
58297
58322
|
var result = {};
|
|
58298
58323
|
if (mod != null) {
|
|
@@ -58301,7 +58326,7 @@ var require_ini = __commonJS({
|
|
|
58301
58326
|
result["default"] = mod;
|
|
58302
58327
|
return result;
|
|
58303
58328
|
};
|
|
58304
|
-
Object.defineProperty(exports
|
|
58329
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
58305
58330
|
var fs4 = __importStar(__require("fs"));
|
|
58306
58331
|
var regex = {
|
|
58307
58332
|
section: /^\s*\[(([^#;]|\\#|\\;)+)\]\s*([#;].*)?$/,
|
|
@@ -58323,11 +58348,11 @@ var require_ini = __commonJS({
|
|
|
58323
58348
|
});
|
|
58324
58349
|
});
|
|
58325
58350
|
}
|
|
58326
|
-
exports
|
|
58351
|
+
exports.parse = parse7;
|
|
58327
58352
|
function parseSync(file) {
|
|
58328
58353
|
return parseString2(fs4.readFileSync(file, "utf8"));
|
|
58329
58354
|
}
|
|
58330
|
-
exports
|
|
58355
|
+
exports.parseSync = parseSync;
|
|
58331
58356
|
function parseString2(data) {
|
|
58332
58357
|
var sectionBody = {};
|
|
58333
58358
|
var sectionName = null;
|
|
@@ -58350,13 +58375,13 @@ var require_ini = __commonJS({
|
|
|
58350
58375
|
});
|
|
58351
58376
|
return value;
|
|
58352
58377
|
}
|
|
58353
|
-
exports
|
|
58378
|
+
exports.parseString = parseString2;
|
|
58354
58379
|
}
|
|
58355
58380
|
});
|
|
58356
58381
|
|
|
58357
58382
|
// node_modules/editorconfig/package.json
|
|
58358
58383
|
var require_package = __commonJS({
|
|
58359
|
-
"node_modules/editorconfig/package.json"(exports
|
|
58384
|
+
"node_modules/editorconfig/package.json"(exports, module) {
|
|
58360
58385
|
module.exports = {
|
|
58361
58386
|
name: "editorconfig",
|
|
58362
58387
|
version: "0.15.3",
|
|
@@ -58421,8 +58446,8 @@ var require_package = __commonJS({
|
|
|
58421
58446
|
|
|
58422
58447
|
// node_modules/editorconfig/src/index.js
|
|
58423
58448
|
var require_src = __commonJS({
|
|
58424
|
-
"node_modules/editorconfig/src/index.js"(exports
|
|
58425
|
-
var __awaiter = exports
|
|
58449
|
+
"node_modules/editorconfig/src/index.js"(exports) {
|
|
58450
|
+
var __awaiter = exports && exports.__awaiter || function(thisArg, _arguments, P, generator) {
|
|
58426
58451
|
return new (P || (P = Promise))(function(resolve3, reject) {
|
|
58427
58452
|
function fulfilled(value) {
|
|
58428
58453
|
try {
|
|
@@ -58446,7 +58471,7 @@ var require_src = __commonJS({
|
|
|
58446
58471
|
step((generator = generator.apply(thisArg, _arguments || [])).next());
|
|
58447
58472
|
});
|
|
58448
58473
|
};
|
|
58449
|
-
var __generator = exports
|
|
58474
|
+
var __generator = exports && exports.__generator || function(thisArg, body) {
|
|
58450
58475
|
var _ = { label: 0, sent: function() {
|
|
58451
58476
|
if (t[0] & 1) throw t[1];
|
|
58452
58477
|
return t[1];
|
|
@@ -58515,7 +58540,7 @@ var require_src = __commonJS({
|
|
|
58515
58540
|
return { value: op[0] ? op[1] : void 0, done: true };
|
|
58516
58541
|
}
|
|
58517
58542
|
};
|
|
58518
|
-
var __importStar = exports
|
|
58543
|
+
var __importStar = exports && exports.__importStar || function(mod) {
|
|
58519
58544
|
if (mod && mod.__esModule) return mod;
|
|
58520
58545
|
var result = {};
|
|
58521
58546
|
if (mod != null) {
|
|
@@ -58524,10 +58549,10 @@ var require_src = __commonJS({
|
|
|
58524
58549
|
result["default"] = mod;
|
|
58525
58550
|
return result;
|
|
58526
58551
|
};
|
|
58527
|
-
var __importDefault = exports
|
|
58552
|
+
var __importDefault = exports && exports.__importDefault || function(mod) {
|
|
58528
58553
|
return mod && mod.__esModule ? mod : { "default": mod };
|
|
58529
58554
|
};
|
|
58530
|
-
Object.defineProperty(exports
|
|
58555
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
58531
58556
|
var fs4 = __importStar(__require("fs"));
|
|
58532
58557
|
var path15 = __importStar(__require("path"));
|
|
58533
58558
|
var semver = {
|
|
@@ -58535,7 +58560,7 @@ var require_src = __commonJS({
|
|
|
58535
58560
|
};
|
|
58536
58561
|
var fnmatch_1 = __importDefault(require_fnmatch());
|
|
58537
58562
|
var ini_1 = require_ini();
|
|
58538
|
-
exports
|
|
58563
|
+
exports.parseString = ini_1.parseString;
|
|
58539
58564
|
var package_json_1 = __importDefault(require_package());
|
|
58540
58565
|
var knownProps = {
|
|
58541
58566
|
end_of_line: true,
|
|
@@ -58709,7 +58734,7 @@ var require_src = __commonJS({
|
|
|
58709
58734
|
});
|
|
58710
58735
|
});
|
|
58711
58736
|
}
|
|
58712
|
-
exports
|
|
58737
|
+
exports.parseFromFiles = parseFromFiles;
|
|
58713
58738
|
function parseFromFilesSync(filepath, files, options8) {
|
|
58714
58739
|
if (options8 === void 0) {
|
|
58715
58740
|
options8 = {};
|
|
@@ -58717,7 +58742,7 @@ var require_src = __commonJS({
|
|
|
58717
58742
|
var _a = opts(filepath, options8), resolvedFilePath = _a[0], processedOptions = _a[1];
|
|
58718
58743
|
return parseFromConfigs(getConfigsForFiles(files), resolvedFilePath, processedOptions);
|
|
58719
58744
|
}
|
|
58720
|
-
exports
|
|
58745
|
+
exports.parseFromFilesSync = parseFromFilesSync;
|
|
58721
58746
|
function parse7(_filepath, _options) {
|
|
58722
58747
|
if (_options === void 0) {
|
|
58723
58748
|
_options = {};
|
|
@@ -58733,7 +58758,7 @@ var require_src = __commonJS({
|
|
|
58733
58758
|
});
|
|
58734
58759
|
});
|
|
58735
58760
|
}
|
|
58736
|
-
exports
|
|
58761
|
+
exports.parse = parse7;
|
|
58737
58762
|
function parseSync(_filepath, _options) {
|
|
58738
58763
|
if (_options === void 0) {
|
|
58739
58764
|
_options = {};
|
|
@@ -58743,13 +58768,13 @@ var require_src = __commonJS({
|
|
|
58743
58768
|
var files = readConfigFilesSync(filepaths);
|
|
58744
58769
|
return parseFromConfigs(getConfigsForFiles(files), resolvedFilePath, processedOptions);
|
|
58745
58770
|
}
|
|
58746
|
-
exports
|
|
58771
|
+
exports.parseSync = parseSync;
|
|
58747
58772
|
}
|
|
58748
58773
|
});
|
|
58749
58774
|
|
|
58750
58775
|
// node_modules/@babel/code-frame/node_modules/js-tokens/index.js
|
|
58751
58776
|
var require_js_tokens = __commonJS({
|
|
58752
|
-
"node_modules/@babel/code-frame/node_modules/js-tokens/index.js"(exports
|
|
58777
|
+
"node_modules/@babel/code-frame/node_modules/js-tokens/index.js"(exports, module) {
|
|
58753
58778
|
var Identifier;
|
|
58754
58779
|
var JSXIdentifier;
|
|
58755
58780
|
var JSXPunctuator;
|
|
@@ -59159,7 +59184,7 @@ var require_js_tokens = __commonJS({
|
|
|
59159
59184
|
|
|
59160
59185
|
// node_modules/n-readlines/readlines.js
|
|
59161
59186
|
var require_readlines = __commonJS({
|
|
59162
|
-
"node_modules/n-readlines/readlines.js"(exports
|
|
59187
|
+
"node_modules/n-readlines/readlines.js"(exports, module) {
|
|
59163
59188
|
var fs4 = __require("fs");
|
|
59164
59189
|
var LineByLine = class {
|
|
59165
59190
|
constructor(file, options8) {
|
|
@@ -59279,7 +59304,7 @@ var require_readlines = __commonJS({
|
|
|
59279
59304
|
|
|
59280
59305
|
// node_modules/ignore/index.js
|
|
59281
59306
|
var require_ignore = __commonJS({
|
|
59282
|
-
"node_modules/ignore/index.js"(exports
|
|
59307
|
+
"node_modules/ignore/index.js"(exports, module) {
|
|
59283
59308
|
function makeArray(subject) {
|
|
59284
59309
|
return Array.isArray(subject) ? subject : [subject];
|
|
59285
59310
|
}
|
|
@@ -64229,10 +64254,10 @@ function resolvePackageTarget(packageJsonUrl, target, subpath, packageSubpath, b
|
|
|
64229
64254
|
base
|
|
64230
64255
|
);
|
|
64231
64256
|
}
|
|
64232
|
-
function isConditionalExportsMainSugar(exports
|
|
64233
|
-
if (typeof exports
|
|
64234
|
-
if (typeof exports
|
|
64235
|
-
const keys = Object.getOwnPropertyNames(exports
|
|
64257
|
+
function isConditionalExportsMainSugar(exports, packageJsonUrl, base) {
|
|
64258
|
+
if (typeof exports === "string" || Array.isArray(exports)) return true;
|
|
64259
|
+
if (typeof exports !== "object" || exports === null) return false;
|
|
64260
|
+
const keys = Object.getOwnPropertyNames(exports);
|
|
64236
64261
|
let isConditionalSugar = false;
|
|
64237
64262
|
let i = 0;
|
|
64238
64263
|
let keyIndex = -1;
|
|
@@ -64265,12 +64290,12 @@ function emitTrailingSlashPatternDeprecation(match, pjsonUrl, base) {
|
|
|
64265
64290
|
);
|
|
64266
64291
|
}
|
|
64267
64292
|
function packageExportsResolve(packageJsonUrl, packageSubpath, packageConfig, base, conditions) {
|
|
64268
|
-
let exports
|
|
64269
|
-
if (isConditionalExportsMainSugar(exports
|
|
64270
|
-
exports
|
|
64293
|
+
let exports = packageConfig.exports;
|
|
64294
|
+
if (isConditionalExportsMainSugar(exports, packageJsonUrl, base)) {
|
|
64295
|
+
exports = { ".": exports };
|
|
64271
64296
|
}
|
|
64272
|
-
if (own2.call(exports
|
|
64273
|
-
const target = exports
|
|
64297
|
+
if (own2.call(exports, packageSubpath) && !packageSubpath.includes("*") && !packageSubpath.endsWith("/")) {
|
|
64298
|
+
const target = exports[packageSubpath];
|
|
64274
64299
|
const resolveResult = resolvePackageTarget(
|
|
64275
64300
|
packageJsonUrl,
|
|
64276
64301
|
target,
|
|
@@ -64289,7 +64314,7 @@ function packageExportsResolve(packageJsonUrl, packageSubpath, packageConfig, ba
|
|
|
64289
64314
|
}
|
|
64290
64315
|
let bestMatch = "";
|
|
64291
64316
|
let bestMatchSubpath = "";
|
|
64292
|
-
const keys = Object.getOwnPropertyNames(exports
|
|
64317
|
+
const keys = Object.getOwnPropertyNames(exports);
|
|
64293
64318
|
let i = -1;
|
|
64294
64319
|
while (++i < keys.length) {
|
|
64295
64320
|
const key2 = keys[i];
|
|
@@ -64315,7 +64340,7 @@ function packageExportsResolve(packageJsonUrl, packageSubpath, packageConfig, ba
|
|
|
64315
64340
|
if (bestMatch) {
|
|
64316
64341
|
const target = (
|
|
64317
64342
|
/** @type {unknown} */
|
|
64318
|
-
exports
|
|
64343
|
+
exports[bestMatch]
|
|
64319
64344
|
);
|
|
64320
64345
|
const resolveResult = resolvePackageTarget(
|
|
64321
64346
|
packageJsonUrl,
|
|
@@ -69903,4 +69928,4 @@ var typescript = /*#__PURE__*/Object.freeze({
|
|
|
69903
69928
|
});
|
|
69904
69929
|
|
|
69905
69930
|
export { HighlightJS as H, MarkdownIt as M, Ze$a as Z, resolveConfig as a, createTwoFilesPatch$1 as b, createSyncFn as c, dedent$1 as d, deflist_plugin as e, format2 as f, closest as g, distance as h, fm$2 as i, isCI as j, cliProgress as k, tinylr as l, moduleImporter as m, createInstance as n, fse as o, inter as p, runAsWorker as r, ts$6 as t, watch$1 as w };
|
|
69906
|
-
//# sourceMappingURL=vendor-
|
|
69931
|
+
//# sourceMappingURL=vendor-C0JAkCK-.mjs.map
|