git-semver-tagger 1.9.26 → 1.9.27
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/README.md +73 -0
- package/kotlin/clikt-clikt-mordant.js +80 -80
- package/kotlin/clikt-clikt.js +1375 -1375
- package/kotlin/colormath-root-colormath.js +439 -439
- package/kotlin/command-line-tools-tagger-cli.js +311 -311
- package/kotlin/kotlin-kotlin-stdlib.js +108 -80
- package/kotlin/kotlin-kotlin-stdlib.js.map +1 -1
- package/kotlin/kotlinx-serialization-kotlinx-serialization-core.js +1787 -1787
- package/kotlin/kotlinx-serialization-kotlinx-serialization-core.js.map +1 -1
- package/kotlin/kotlinx-serialization-kotlinx-serialization-json.js +1520 -1520
- package/kotlin/mordant-mordant.js +1215 -1215
- package/kotlin/tools-cli-tools.js +1 -1
- package/kotlin/tools-git-adapter.js +150 -37
- package/kotlin/tools-git-adapter.js.map +1 -1
- package/kotlin/tools-tagger-core.js +198 -124
- package/kotlin/tools-tagger-core.js.map +1 -1
- package/kotlin/tools-tagger-json.js +141 -141
- package/package.json +1 -1
|
@@ -95,8 +95,8 @@ if (typeof String.prototype.endsWith === 'undefined') {
|
|
|
95
95
|
initMetadataForInterface(KtSet, 'Set', VOID, VOID, [Collection]);
|
|
96
96
|
initMetadataForInterface(KtMutableMap, 'MutableMap', VOID, VOID, [KtMap]);
|
|
97
97
|
initMetadataForInterface(MutableIterable, 'MutableIterable');
|
|
98
|
-
initMetadataForInterface(KtMutableList, 'MutableList', VOID, VOID, [KtList,
|
|
99
|
-
initMetadataForInterface(KtMutableSet, 'MutableSet', VOID, VOID, [KtSet,
|
|
98
|
+
initMetadataForInterface(KtMutableList, 'MutableList', VOID, VOID, [KtList, MutableIterable, Collection]);
|
|
99
|
+
initMetadataForInterface(KtMutableSet, 'MutableSet', VOID, VOID, [KtSet, MutableIterable, Collection]);
|
|
100
100
|
initMetadataForCompanion(Companion_0);
|
|
101
101
|
initMetadataForClass(Enum, 'Enum', VOID, VOID, [Comparable]);
|
|
102
102
|
initMetadataForCompanion(Companion_1);
|
|
@@ -114,7 +114,7 @@ if (typeof String.prototype.endsWith === 'undefined') {
|
|
|
114
114
|
initMetadataForInterface(Comparator, 'Comparator');
|
|
115
115
|
initMetadataForObject(Unit, 'Unit');
|
|
116
116
|
initMetadataForClass(AbstractCollection, 'AbstractCollection', VOID, VOID, [Collection]);
|
|
117
|
-
initMetadataForClass(AbstractMutableCollection, 'AbstractMutableCollection', VOID, AbstractCollection, [
|
|
117
|
+
initMetadataForClass(AbstractMutableCollection, 'AbstractMutableCollection', VOID, AbstractCollection, [MutableIterable, Collection]);
|
|
118
118
|
initMetadataForClass(IteratorImpl, 'IteratorImpl');
|
|
119
119
|
initMetadataForClass(ListIteratorImpl, 'ListIteratorImpl', VOID, IteratorImpl);
|
|
120
120
|
initMetadataForClass(AbstractMutableList, 'AbstractMutableList', VOID, AbstractMutableCollection, [KtMutableList]);
|
|
@@ -127,7 +127,7 @@ if (typeof String.prototype.endsWith === 'undefined') {
|
|
|
127
127
|
initMetadataForClass(ArrayList, 'ArrayList', ArrayList_init_$Create$, AbstractMutableList, [KtMutableList, RandomAccess]);
|
|
128
128
|
initMetadataForClass(HashMap, 'HashMap', HashMap_init_$Create$, AbstractMutableMap, [KtMutableMap]);
|
|
129
129
|
initMetadataForClass(HashMapKeys, 'HashMapKeys', VOID, AbstractMutableSet, [KtMutableSet]);
|
|
130
|
-
initMetadataForClass(HashMapValues, 'HashMapValues', VOID, AbstractMutableCollection, [
|
|
130
|
+
initMetadataForClass(HashMapValues, 'HashMapValues', VOID, AbstractMutableCollection, [MutableIterable, Collection]);
|
|
131
131
|
initMetadataForClass(HashMapEntrySetBase, 'HashMapEntrySetBase', VOID, AbstractMutableSet, [KtMutableSet]);
|
|
132
132
|
initMetadataForClass(HashMapEntrySet, 'HashMapEntrySet', VOID, HashMapEntrySetBase);
|
|
133
133
|
initMetadataForClass(HashMapKeysDefault$iterator$1);
|
|
@@ -9704,6 +9704,12 @@ if (typeof String.prototype.endsWith === 'undefined') {
|
|
|
9704
9704
|
padChar = padChar === VOID ? _Char___init__impl__6a9atx(32) : padChar;
|
|
9705
9705
|
return toString_1(padStart_0(isCharSequence(_this__u8e3s4) ? _this__u8e3s4 : THROW_CCE(), length, padChar));
|
|
9706
9706
|
}
|
|
9707
|
+
function removePrefix(_this__u8e3s4, prefix) {
|
|
9708
|
+
if (startsWith_2(_this__u8e3s4, prefix)) {
|
|
9709
|
+
return substring_0(_this__u8e3s4, charSequenceLength(prefix));
|
|
9710
|
+
}
|
|
9711
|
+
return _this__u8e3s4;
|
|
9712
|
+
}
|
|
9707
9713
|
function startsWith_1(_this__u8e3s4, char, ignoreCase) {
|
|
9708
9714
|
ignoreCase = ignoreCase === VOID ? false : ignoreCase;
|
|
9709
9715
|
return charSequenceLength(_this__u8e3s4) > 0 && equals_1(charSequenceGet(_this__u8e3s4, 0), char, ignoreCase);
|
|
@@ -9925,6 +9931,26 @@ if (typeof String.prototype.endsWith === 'undefined') {
|
|
|
9925
9931
|
while (inductionVariable < length);
|
|
9926
9932
|
return true;
|
|
9927
9933
|
}
|
|
9934
|
+
function startsWith_2(_this__u8e3s4, prefix, ignoreCase) {
|
|
9935
|
+
ignoreCase = ignoreCase === VOID ? false : ignoreCase;
|
|
9936
|
+
var tmp;
|
|
9937
|
+
var tmp_0;
|
|
9938
|
+
if (!ignoreCase) {
|
|
9939
|
+
tmp_0 = typeof _this__u8e3s4 === 'string';
|
|
9940
|
+
} else {
|
|
9941
|
+
tmp_0 = false;
|
|
9942
|
+
}
|
|
9943
|
+
if (tmp_0) {
|
|
9944
|
+
tmp = typeof prefix === 'string';
|
|
9945
|
+
} else {
|
|
9946
|
+
tmp = false;
|
|
9947
|
+
}
|
|
9948
|
+
if (tmp)
|
|
9949
|
+
return startsWith(_this__u8e3s4, prefix);
|
|
9950
|
+
else {
|
|
9951
|
+
return regionMatchesImpl(_this__u8e3s4, 0, prefix, 0, charSequenceLength(prefix), ignoreCase);
|
|
9952
|
+
}
|
|
9953
|
+
}
|
|
9928
9954
|
function split_0(_this__u8e3s4, delimiter, ignoreCase, limit) {
|
|
9929
9955
|
requireNonNegativeLimit(limit);
|
|
9930
9956
|
var currentOffset = 0;
|
|
@@ -13640,7 +13666,7 @@ if (typeof String.prototype.endsWith === 'undefined') {
|
|
|
13640
13666
|
_.$_$.n1 = Regex_init_$Create$;
|
|
13641
13667
|
_.$_$.o1 = StringBuilder_init_$Create$;
|
|
13642
13668
|
_.$_$.p1 = StringBuilder_init_$Create$_0;
|
|
13643
|
-
_.$_$.q1 = Exception_init_$
|
|
13669
|
+
_.$_$.q1 = Exception_init_$Init$_0;
|
|
13644
13670
|
_.$_$.r1 = IllegalArgumentException_init_$Init$;
|
|
13645
13671
|
_.$_$.s1 = IllegalArgumentException_init_$Init$_0;
|
|
13646
13672
|
_.$_$.t1 = IllegalArgumentException_init_$Create$_0;
|
|
@@ -13915,81 +13941,83 @@ if (typeof String.prototype.endsWith === 'undefined') {
|
|
|
13915
13941
|
_.$_$.cc = lastIndexOf;
|
|
13916
13942
|
_.$_$.dc = last_3;
|
|
13917
13943
|
_.$_$.ec = lineSequence;
|
|
13918
|
-
_.$_$.fc =
|
|
13919
|
-
_.$_$.gc =
|
|
13920
|
-
_.$_$.hc =
|
|
13921
|
-
_.$_$.ic =
|
|
13922
|
-
_.$_$.jc =
|
|
13923
|
-
_.$_$.kc =
|
|
13924
|
-
_.$_$.lc =
|
|
13925
|
-
_.$_$.mc =
|
|
13926
|
-
_.$_$.nc =
|
|
13927
|
-
_.$_$.oc =
|
|
13928
|
-
_.$_$.pc =
|
|
13929
|
-
_.$_$.qc =
|
|
13930
|
-
_.$_$.rc =
|
|
13931
|
-
_.$_$.sc =
|
|
13932
|
-
_.$_$.tc =
|
|
13933
|
-
_.$_$.uc =
|
|
13934
|
-
_.$_$.vc =
|
|
13935
|
-
_.$_$.wc =
|
|
13936
|
-
_.$_$.xc =
|
|
13937
|
-
_.$_$.yc =
|
|
13938
|
-
_.$_$.zc =
|
|
13939
|
-
_.$_$.ad =
|
|
13940
|
-
_.$_$.bd =
|
|
13941
|
-
_.$_$.cd =
|
|
13942
|
-
_.$_$.dd =
|
|
13943
|
-
_.$_$.ed =
|
|
13944
|
-
_.$_$.fd =
|
|
13945
|
-
_.$_$.gd =
|
|
13946
|
-
_.$_$.hd =
|
|
13947
|
-
_.$_$.id =
|
|
13948
|
-
_.$_$.jd =
|
|
13949
|
-
_.$_$.kd =
|
|
13950
|
-
_.$_$.ld =
|
|
13951
|
-
_.$_$.md =
|
|
13952
|
-
_.$_$.nd =
|
|
13953
|
-
_.$_$.od =
|
|
13954
|
-
_.$_$.pd =
|
|
13955
|
-
_.$_$.qd =
|
|
13956
|
-
_.$_$.rd =
|
|
13957
|
-
_.$_$.sd =
|
|
13958
|
-
_.$_$.td =
|
|
13959
|
-
_.$_$.ud =
|
|
13960
|
-
_.$_$.vd =
|
|
13961
|
-
_.$_$.wd =
|
|
13962
|
-
_.$_$.xd =
|
|
13963
|
-
_.$_$.yd =
|
|
13964
|
-
_.$_$.zd =
|
|
13965
|
-
_.$_$.ae =
|
|
13966
|
-
_.$_$.be =
|
|
13967
|
-
_.$_$.ce =
|
|
13968
|
-
_.$_$.de =
|
|
13969
|
-
_.$_$.ee =
|
|
13970
|
-
_.$_$.fe =
|
|
13971
|
-
_.$_$.ge =
|
|
13972
|
-
_.$_$.he =
|
|
13973
|
-
_.$_$.ie =
|
|
13974
|
-
_.$_$.je =
|
|
13975
|
-
_.$_$.ke =
|
|
13976
|
-
_.$_$.le =
|
|
13977
|
-
_.$_$.me =
|
|
13978
|
-
_.$_$.ne =
|
|
13979
|
-
_.$_$.oe =
|
|
13980
|
-
_.$_$.pe =
|
|
13981
|
-
_.$_$.qe =
|
|
13982
|
-
_.$_$.re =
|
|
13983
|
-
_.$_$.se =
|
|
13984
|
-
_.$_$.te =
|
|
13985
|
-
_.$_$.ue =
|
|
13986
|
-
_.$_$.ve =
|
|
13987
|
-
_.$_$.we =
|
|
13988
|
-
_.$_$.xe =
|
|
13989
|
-
_.$_$.ye =
|
|
13990
|
-
_.$_$.ze =
|
|
13991
|
-
_.$_$.af =
|
|
13992
|
-
_.$_$.bf =
|
|
13944
|
+
_.$_$.fc = lines;
|
|
13945
|
+
_.$_$.gc = prependIndent;
|
|
13946
|
+
_.$_$.hc = removePrefix;
|
|
13947
|
+
_.$_$.ic = removeSuffix;
|
|
13948
|
+
_.$_$.jc = repeat;
|
|
13949
|
+
_.$_$.kc = replace;
|
|
13950
|
+
_.$_$.lc = replace_0;
|
|
13951
|
+
_.$_$.mc = single_2;
|
|
13952
|
+
_.$_$.nc = slice_0;
|
|
13953
|
+
_.$_$.oc = split;
|
|
13954
|
+
_.$_$.pc = startsWith;
|
|
13955
|
+
_.$_$.qc = startsWith_1;
|
|
13956
|
+
_.$_$.rc = substringAfter;
|
|
13957
|
+
_.$_$.sc = substringBefore;
|
|
13958
|
+
_.$_$.tc = substringBefore_0;
|
|
13959
|
+
_.$_$.uc = substring_0;
|
|
13960
|
+
_.$_$.vc = substring;
|
|
13961
|
+
_.$_$.wc = take_0;
|
|
13962
|
+
_.$_$.xc = toBooleanStrictOrNull;
|
|
13963
|
+
_.$_$.yc = toDoubleOrNull;
|
|
13964
|
+
_.$_$.zc = toDouble;
|
|
13965
|
+
_.$_$.ad = toIntOrNull;
|
|
13966
|
+
_.$_$.bd = toInt;
|
|
13967
|
+
_.$_$.cd = toInt_0;
|
|
13968
|
+
_.$_$.dd = toLongOrNull;
|
|
13969
|
+
_.$_$.ed = toUByte;
|
|
13970
|
+
_.$_$.fd = toUInt;
|
|
13971
|
+
_.$_$.gd = toULongOrNull;
|
|
13972
|
+
_.$_$.hd = toULong;
|
|
13973
|
+
_.$_$.id = toUShort;
|
|
13974
|
+
_.$_$.jd = trimIndent;
|
|
13975
|
+
_.$_$.kd = trimMargin;
|
|
13976
|
+
_.$_$.ld = trimStart;
|
|
13977
|
+
_.$_$.md = trim;
|
|
13978
|
+
_.$_$.nd = Duration;
|
|
13979
|
+
_.$_$.od = Instant;
|
|
13980
|
+
_.$_$.pd = Uuid;
|
|
13981
|
+
_.$_$.qd = Char;
|
|
13982
|
+
_.$_$.rd = ClassCastException;
|
|
13983
|
+
_.$_$.sd = Comparator;
|
|
13984
|
+
_.$_$.td = DeepRecursiveFunction;
|
|
13985
|
+
_.$_$.ud = DeepRecursiveScope;
|
|
13986
|
+
_.$_$.vd = Enum;
|
|
13987
|
+
_.$_$.wd = Exception;
|
|
13988
|
+
_.$_$.xd = IllegalArgumentException;
|
|
13989
|
+
_.$_$.yd = IllegalStateException;
|
|
13990
|
+
_.$_$.zd = Long;
|
|
13991
|
+
_.$_$.ae = Pair;
|
|
13992
|
+
_.$_$.be = Result;
|
|
13993
|
+
_.$_$.ce = RuntimeException;
|
|
13994
|
+
_.$_$.de = THROW_CCE;
|
|
13995
|
+
_.$_$.ee = Triple;
|
|
13996
|
+
_.$_$.fe = UByteArray;
|
|
13997
|
+
_.$_$.ge = UByte;
|
|
13998
|
+
_.$_$.he = UIntArray;
|
|
13999
|
+
_.$_$.ie = UInt;
|
|
14000
|
+
_.$_$.je = ULongArray;
|
|
14001
|
+
_.$_$.ke = ULong;
|
|
14002
|
+
_.$_$.le = UShortArray;
|
|
14003
|
+
_.$_$.me = UShort;
|
|
14004
|
+
_.$_$.ne = Unit;
|
|
14005
|
+
_.$_$.oe = addSuppressed;
|
|
14006
|
+
_.$_$.pe = arrayOf;
|
|
14007
|
+
_.$_$.qe = closeFinally;
|
|
14008
|
+
_.$_$.re = countTrailingZeroBits;
|
|
14009
|
+
_.$_$.se = createFailure;
|
|
14010
|
+
_.$_$.te = ensureNotNull;
|
|
14011
|
+
_.$_$.ue = invoke;
|
|
14012
|
+
_.$_$.ve = isFinite;
|
|
14013
|
+
_.$_$.we = isFinite_0;
|
|
14014
|
+
_.$_$.xe = lazy_0;
|
|
14015
|
+
_.$_$.ye = lazy;
|
|
14016
|
+
_.$_$.ze = noWhenBranchMatchedException;
|
|
14017
|
+
_.$_$.af = plus_3;
|
|
14018
|
+
_.$_$.bf = toList_3;
|
|
14019
|
+
_.$_$.cf = toString_0;
|
|
14020
|
+
_.$_$.df = to;
|
|
13993
14021
|
//endregion
|
|
13994
14022
|
return _;
|
|
13995
14023
|
}(module.exports));
|