Skip to content

Commit 045b443

Browse files
fix(deps): update node dependencies (#17)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: jkroepke-automation[bot] <210774419+jkroepke-automation[bot]@users.noreply.github.com>
1 parent e47374d commit 045b443

3 files changed

Lines changed: 121 additions & 65 deletions

File tree

dist/index.js

Lines changed: 53 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -29828,6 +29828,7 @@ var hasRequiredConstants;
2982829828
function requireConstants () {
2982929829
if (hasRequiredConstants) return constants;
2983029830
hasRequiredConstants = 1;
29831+
2983129832
// Note: this is the semver.org version of the spec that it implements
2983229833
// Not necessarily the package version of this code.
2983329834
const SEMVER_SPEC_VERSION = '2.0.0';
@@ -29872,6 +29873,7 @@ var hasRequiredDebug;
2987229873
function requireDebug () {
2987329874
if (hasRequiredDebug) return debug_1;
2987429875
hasRequiredDebug = 1;
29876+
2987529877
const debug = (
2987629878
typeof process === 'object' &&
2987729879
process.env &&
@@ -29890,6 +29892,7 @@ function requireRe () {
2989029892
if (hasRequiredRe) return re.exports;
2989129893
hasRequiredRe = 1;
2989229894
(function (module, exports) {
29895+
2989329896
const {
2989429897
MAX_SAFE_COMPONENT_LENGTH,
2989529898
MAX_SAFE_BUILD_LENGTH,
@@ -29968,12 +29971,14 @@ function requireRe () {
2996829971

2996929972
// ## Pre-release Version Identifier
2997029973
// A numeric identifier, or a non-numeric identifier.
29974+
// Non-numberic identifiers include numberic identifiers but can be longer.
29975+
// Therefore non-numberic identifiers must go first.
2997129976

29972-
createToken('PRERELEASEIDENTIFIER', `(?:${src[t.NUMERICIDENTIFIER]
29973-
}|${src[t.NONNUMERICIDENTIFIER]})`);
29977+
createToken('PRERELEASEIDENTIFIER', `(?:${src[t.NONNUMERICIDENTIFIER]
29978+
}|${src[t.NUMERICIDENTIFIER]})`);
2997429979

29975-
createToken('PRERELEASEIDENTIFIERLOOSE', `(?:${src[t.NUMERICIDENTIFIERLOOSE]
29976-
}|${src[t.NONNUMERICIDENTIFIER]})`);
29980+
createToken('PRERELEASEIDENTIFIERLOOSE', `(?:${src[t.NONNUMERICIDENTIFIER]
29981+
}|${src[t.NUMERICIDENTIFIERLOOSE]})`);
2997729982

2997829983
// ## Pre-release Version
2997929984
// Hyphen, followed by one or more dot-separated pre-release version
@@ -30119,6 +30124,7 @@ var hasRequiredParseOptions;
3011930124
function requireParseOptions () {
3012030125
if (hasRequiredParseOptions) return parseOptions_1;
3012130126
hasRequiredParseOptions = 1;
30127+
3012230128
// parse out just the options we care about
3012330129
const looseOption = Object.freeze({ loose: true });
3012430130
const emptyOpts = Object.freeze({ });
@@ -30143,6 +30149,7 @@ var hasRequiredIdentifiers;
3014330149
function requireIdentifiers () {
3014430150
if (hasRequiredIdentifiers) return identifiers;
3014530151
hasRequiredIdentifiers = 1;
30152+
3014630153
const numeric = /^[0-9]+$/;
3014730154
const compareIdentifiers = (a, b) => {
3014830155
const anum = numeric.test(a);
@@ -30175,9 +30182,10 @@ var hasRequiredSemver$1;
3017530182
function requireSemver$1 () {
3017630183
if (hasRequiredSemver$1) return semver$1;
3017730184
hasRequiredSemver$1 = 1;
30185+
3017830186
const debug = requireDebug();
3017930187
const { MAX_LENGTH, MAX_SAFE_INTEGER } = requireConstants();
30180-
const { safeRe: re, safeSrc: src, t } = requireRe();
30188+
const { safeRe: re, t } = requireRe();
3018130189

3018230190
const parseOptions = requireParseOptions();
3018330191
const { compareIdentifiers } = requireIdentifiers();
@@ -30359,8 +30367,7 @@ function requireSemver$1 () {
3035930367
}
3036030368
// Avoid an invalid semver results
3036130369
if (identifier) {
30362-
const r = new RegExp(`^${this.options.loose ? src[t.PRERELEASELOOSE] : src[t.PRERELEASE]}$`);
30363-
const match = `-${identifier}`.match(r);
30370+
const match = `-${identifier}`.match(this.options.loose ? re[t.PRERELEASELOOSE] : re[t.PRERELEASE]);
3036430371
if (!match || match[1] !== identifier) {
3036530372
throw new Error(`invalid identifier: ${identifier}`)
3036630373
}
@@ -30502,6 +30509,7 @@ var hasRequiredParse;
3050230509
function requireParse () {
3050330510
if (hasRequiredParse) return parse_1;
3050430511
hasRequiredParse = 1;
30512+
3050530513
const SemVer = requireSemver$1();
3050630514
const parse = (version, options, throwErrors = false) => {
3050730515
if (version instanceof SemVer) {
@@ -30527,6 +30535,7 @@ var hasRequiredValid$1;
3052730535
function requireValid$1 () {
3052830536
if (hasRequiredValid$1) return valid_1;
3052930537
hasRequiredValid$1 = 1;
30538+
3053030539
const parse = requireParse();
3053130540
const valid = (version, options) => {
3053230541
const v = parse(version, options);
@@ -30542,6 +30551,7 @@ var hasRequiredClean;
3054230551
function requireClean () {
3054330552
if (hasRequiredClean) return clean_1;
3054430553
hasRequiredClean = 1;
30554+
3054530555
const parse = requireParse();
3054630556
const clean = (version, options) => {
3054730557
const s = parse(version.trim().replace(/^[=v]+/, ''), options);
@@ -30557,6 +30567,7 @@ var hasRequiredInc;
3055730567
function requireInc () {
3055830568
if (hasRequiredInc) return inc_1;
3055930569
hasRequiredInc = 1;
30570+
3056030571
const SemVer = requireSemver$1();
3056130572

3056230573
const inc = (version, release, options, identifier, identifierBase) => {
@@ -30585,6 +30596,7 @@ var hasRequiredDiff;
3058530596
function requireDiff () {
3058630597
if (hasRequiredDiff) return diff_1;
3058730598
hasRequiredDiff = 1;
30599+
3058830600
const parse = requireParse();
3058930601

3059030602
const diff = (version1, version2) => {
@@ -30652,6 +30664,7 @@ var hasRequiredMajor;
3065230664
function requireMajor () {
3065330665
if (hasRequiredMajor) return major_1;
3065430666
hasRequiredMajor = 1;
30667+
3065530668
const SemVer = requireSemver$1();
3065630669
const major = (a, loose) => new SemVer(a, loose).major;
3065730670
major_1 = major;
@@ -30664,6 +30677,7 @@ var hasRequiredMinor;
3066430677
function requireMinor () {
3066530678
if (hasRequiredMinor) return minor_1;
3066630679
hasRequiredMinor = 1;
30680+
3066730681
const SemVer = requireSemver$1();
3066830682
const minor = (a, loose) => new SemVer(a, loose).minor;
3066930683
minor_1 = minor;
@@ -30676,6 +30690,7 @@ var hasRequiredPatch;
3067630690
function requirePatch () {
3067730691
if (hasRequiredPatch) return patch_1;
3067830692
hasRequiredPatch = 1;
30693+
3067930694
const SemVer = requireSemver$1();
3068030695
const patch = (a, loose) => new SemVer(a, loose).patch;
3068130696
patch_1 = patch;
@@ -30688,6 +30703,7 @@ var hasRequiredPrerelease;
3068830703
function requirePrerelease () {
3068930704
if (hasRequiredPrerelease) return prerelease_1;
3069030705
hasRequiredPrerelease = 1;
30706+
3069130707
const parse = requireParse();
3069230708
const prerelease = (version, options) => {
3069330709
const parsed = parse(version, options);
@@ -30703,6 +30719,7 @@ var hasRequiredCompare;
3070330719
function requireCompare () {
3070430720
if (hasRequiredCompare) return compare_1;
3070530721
hasRequiredCompare = 1;
30722+
3070630723
const SemVer = requireSemver$1();
3070730724
const compare = (a, b, loose) =>
3070830725
new SemVer(a, loose).compare(new SemVer(b, loose));
@@ -30717,6 +30734,7 @@ var hasRequiredRcompare;
3071730734
function requireRcompare () {
3071830735
if (hasRequiredRcompare) return rcompare_1;
3071930736
hasRequiredRcompare = 1;
30737+
3072030738
const compare = requireCompare();
3072130739
const rcompare = (a, b, loose) => compare(b, a, loose);
3072230740
rcompare_1 = rcompare;
@@ -30729,6 +30747,7 @@ var hasRequiredCompareLoose;
3072930747
function requireCompareLoose () {
3073030748
if (hasRequiredCompareLoose) return compareLoose_1;
3073130749
hasRequiredCompareLoose = 1;
30750+
3073230751
const compare = requireCompare();
3073330752
const compareLoose = (a, b) => compare(a, b, true);
3073430753
compareLoose_1 = compareLoose;
@@ -30741,6 +30760,7 @@ var hasRequiredCompareBuild;
3074130760
function requireCompareBuild () {
3074230761
if (hasRequiredCompareBuild) return compareBuild_1;
3074330762
hasRequiredCompareBuild = 1;
30763+
3074430764
const SemVer = requireSemver$1();
3074530765
const compareBuild = (a, b, loose) => {
3074630766
const versionA = new SemVer(a, loose);
@@ -30757,6 +30777,7 @@ var hasRequiredSort;
3075730777
function requireSort () {
3075830778
if (hasRequiredSort) return sort_1;
3075930779
hasRequiredSort = 1;
30780+
3076030781
const compareBuild = requireCompareBuild();
3076130782
const sort = (list, loose) => list.sort((a, b) => compareBuild(a, b, loose));
3076230783
sort_1 = sort;
@@ -30769,6 +30790,7 @@ var hasRequiredRsort;
3076930790
function requireRsort () {
3077030791
if (hasRequiredRsort) return rsort_1;
3077130792
hasRequiredRsort = 1;
30793+
3077230794
const compareBuild = requireCompareBuild();
3077330795
const rsort = (list, loose) => list.sort((a, b) => compareBuild(b, a, loose));
3077430796
rsort_1 = rsort;
@@ -30781,6 +30803,7 @@ var hasRequiredGt;
3078130803
function requireGt () {
3078230804
if (hasRequiredGt) return gt_1;
3078330805
hasRequiredGt = 1;
30806+
3078430807
const compare = requireCompare();
3078530808
const gt = (a, b, loose) => compare(a, b, loose) > 0;
3078630809
gt_1 = gt;
@@ -30793,6 +30816,7 @@ var hasRequiredLt;
3079330816
function requireLt () {
3079430817
if (hasRequiredLt) return lt_1;
3079530818
hasRequiredLt = 1;
30819+
3079630820
const compare = requireCompare();
3079730821
const lt = (a, b, loose) => compare(a, b, loose) < 0;
3079830822
lt_1 = lt;
@@ -30805,6 +30829,7 @@ var hasRequiredEq;
3080530829
function requireEq () {
3080630830
if (hasRequiredEq) return eq_1;
3080730831
hasRequiredEq = 1;
30832+
3080830833
const compare = requireCompare();
3080930834
const eq = (a, b, loose) => compare(a, b, loose) === 0;
3081030835
eq_1 = eq;
@@ -30817,6 +30842,7 @@ var hasRequiredNeq;
3081730842
function requireNeq () {
3081830843
if (hasRequiredNeq) return neq_1;
3081930844
hasRequiredNeq = 1;
30845+
3082030846
const compare = requireCompare();
3082130847
const neq = (a, b, loose) => compare(a, b, loose) !== 0;
3082230848
neq_1 = neq;
@@ -30829,6 +30855,7 @@ var hasRequiredGte;
3082930855
function requireGte () {
3083030856
if (hasRequiredGte) return gte_1;
3083130857
hasRequiredGte = 1;
30858+
3083230859
const compare = requireCompare();
3083330860
const gte = (a, b, loose) => compare(a, b, loose) >= 0;
3083430861
gte_1 = gte;
@@ -30841,6 +30868,7 @@ var hasRequiredLte;
3084130868
function requireLte () {
3084230869
if (hasRequiredLte) return lte_1;
3084330870
hasRequiredLte = 1;
30871+
3084430872
const compare = requireCompare();
3084530873
const lte = (a, b, loose) => compare(a, b, loose) <= 0;
3084630874
lte_1 = lte;
@@ -30853,6 +30881,7 @@ var hasRequiredCmp;
3085330881
function requireCmp () {
3085430882
if (hasRequiredCmp) return cmp_1;
3085530883
hasRequiredCmp = 1;
30884+
3085630885
const eq = requireEq();
3085730886
const neq = requireNeq();
3085830887
const gt = requireGt();
@@ -30914,6 +30943,7 @@ var hasRequiredCoerce;
3091430943
function requireCoerce () {
3091530944
if (hasRequiredCoerce) return coerce_1;
3091630945
hasRequiredCoerce = 1;
30946+
3091730947
const SemVer = requireSemver$1();
3091830948
const parse = requireParse();
3091930949
const { safeRe: re, t } = requireRe();
@@ -30983,6 +31013,7 @@ var hasRequiredLrucache;
3098331013
function requireLrucache () {
3098431014
if (hasRequiredLrucache) return lrucache;
3098531015
hasRequiredLrucache = 1;
31016+
3098631017
class LRUCache {
3098731018
constructor () {
3098831019
this.max = 1000;
@@ -31032,6 +31063,7 @@ var hasRequiredRange;
3103231063
function requireRange () {
3103331064
if (hasRequiredRange) return range;
3103431065
hasRequiredRange = 1;
31066+
3103531067
const SPACE_CHARACTERS = /\s+/g;
3103631068

3103731069
// hoisted class for cyclic dependency
@@ -31595,6 +31627,7 @@ var hasRequiredComparator;
3159531627
function requireComparator () {
3159631628
if (hasRequiredComparator) return comparator;
3159731629
hasRequiredComparator = 1;
31630+
3159831631
const ANY = Symbol('SemVer ANY');
3159931632
// hoisted class for cyclic dependency
3160031633
class Comparator {
@@ -31745,6 +31778,7 @@ var hasRequiredSatisfies;
3174531778
function requireSatisfies () {
3174631779
if (hasRequiredSatisfies) return satisfies_1;
3174731780
hasRequiredSatisfies = 1;
31781+
3174831782
const Range = requireRange();
3174931783
const satisfies = (version, range, options) => {
3175031784
try {
@@ -31764,6 +31798,7 @@ var hasRequiredToComparators;
3176431798
function requireToComparators () {
3176531799
if (hasRequiredToComparators) return toComparators_1;
3176631800
hasRequiredToComparators = 1;
31801+
3176731802
const Range = requireRange();
3176831803

3176931804
// Mostly just for testing and legacy API reasons
@@ -31781,6 +31816,7 @@ var hasRequiredMaxSatisfying;
3178131816
function requireMaxSatisfying () {
3178231817
if (hasRequiredMaxSatisfying) return maxSatisfying_1;
3178331818
hasRequiredMaxSatisfying = 1;
31819+
3178431820
const SemVer = requireSemver$1();
3178531821
const Range = requireRange();
3178631822

@@ -31815,6 +31851,7 @@ var hasRequiredMinSatisfying;
3181531851
function requireMinSatisfying () {
3181631852
if (hasRequiredMinSatisfying) return minSatisfying_1;
3181731853
hasRequiredMinSatisfying = 1;
31854+
3181831855
const SemVer = requireSemver$1();
3181931856
const Range = requireRange();
3182031857
const minSatisfying = (versions, range, options) => {
@@ -31848,6 +31885,7 @@ var hasRequiredMinVersion;
3184831885
function requireMinVersion () {
3184931886
if (hasRequiredMinVersion) return minVersion_1;
3185031887
hasRequiredMinVersion = 1;
31888+
3185131889
const SemVer = requireSemver$1();
3185231890
const Range = requireRange();
3185331891
const gt = requireGt();
@@ -31918,6 +31956,7 @@ var hasRequiredValid;
3191831956
function requireValid () {
3191931957
if (hasRequiredValid) return valid;
3192031958
hasRequiredValid = 1;
31959+
3192131960
const Range = requireRange();
3192231961
const validRange = (range, options) => {
3192331962
try {
@@ -31938,6 +31977,7 @@ var hasRequiredOutside;
3193831977
function requireOutside () {
3193931978
if (hasRequiredOutside) return outside_1;
3194031979
hasRequiredOutside = 1;
31980+
3194131981
const SemVer = requireSemver$1();
3194231982
const Comparator = requireComparator();
3194331983
const { ANY } = Comparator;
@@ -32027,6 +32067,7 @@ var hasRequiredGtr;
3202732067
function requireGtr () {
3202832068
if (hasRequiredGtr) return gtr_1;
3202932069
hasRequiredGtr = 1;
32070+
3203032071
// Determine if version is greater than all the versions possible in the range.
3203132072
const outside = requireOutside();
3203232073
const gtr = (version, range, options) => outside(version, range, '>', options);
@@ -32040,6 +32081,7 @@ var hasRequiredLtr;
3204032081
function requireLtr () {
3204132082
if (hasRequiredLtr) return ltr_1;
3204232083
hasRequiredLtr = 1;
32084+
3204332085
const outside = requireOutside();
3204432086
// Determine if version is less than all the versions possible in the range
3204532087
const ltr = (version, range, options) => outside(version, range, '<', options);
@@ -32053,6 +32095,7 @@ var hasRequiredIntersects;
3205332095
function requireIntersects () {
3205432096
if (hasRequiredIntersects) return intersects_1;
3205532097
hasRequiredIntersects = 1;
32098+
3205632099
const Range = requireRange();
3205732100
const intersects = (r1, r2, options) => {
3205832101
r1 = new Range(r1, options);
@@ -32069,6 +32112,7 @@ var hasRequiredSimplify;
3206932112
function requireSimplify () {
3207032113
if (hasRequiredSimplify) return simplify;
3207132114
hasRequiredSimplify = 1;
32115+
3207232116
// given a set of versions and a range, create a "simplified" range
3207332117
// that includes the same versions that the original range does
3207432118
// If the original range is shorter than the simplified one, return that.
@@ -32125,6 +32169,7 @@ var hasRequiredSubset;
3212532169
function requireSubset () {
3212632170
if (hasRequiredSubset) return subset_1;
3212732171
hasRequiredSubset = 1;
32172+
3212832173
const Range = requireRange();
3212932174
const Comparator = requireComparator();
3213032175
const { ANY } = Comparator;
@@ -32381,6 +32426,7 @@ var hasRequiredSemver;
3238132426
function requireSemver () {
3238232427
if (hasRequiredSemver) return semver;
3238332428
hasRequiredSemver = 1;
32429+
3238432430
// just pre-load all the stuff that index.js lazily exports
3238532431
const internalRe = requireRe();
3238632432
const constants = requireConstants();

dist/index.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)