@coana-tech/cli 14.6.12 → 14.6.13
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/cli.mjs +474 -473
- package/package.json +1 -1
package/cli.mjs
CHANGED
|
@@ -12936,7 +12936,7 @@ var require_lodash = __commonJS({
|
|
|
12936
12936
|
var realNames = {};
|
|
12937
12937
|
var dataViewCtorString = toSource(DataView2), mapCtorString = toSource(Map2), promiseCtorString = toSource(Promise2), setCtorString = toSource(Set2), weakMapCtorString = toSource(WeakMap2);
|
|
12938
12938
|
var symbolProto = Symbol2 ? Symbol2.prototype : undefined2, symbolValueOf = symbolProto ? symbolProto.valueOf : undefined2, symbolToString = symbolProto ? symbolProto.toString : undefined2;
|
|
12939
|
-
function
|
|
12939
|
+
function lodash6(value) {
|
|
12940
12940
|
if (isObjectLike(value) && !isArray2(value) && !(value instanceof LazyWrapper)) {
|
|
12941
12941
|
if (value instanceof LodashWrapper) {
|
|
12942
12942
|
return value;
|
|
@@ -12972,7 +12972,7 @@ var require_lodash = __commonJS({
|
|
|
12972
12972
|
this.__index__ = 0;
|
|
12973
12973
|
this.__values__ = undefined2;
|
|
12974
12974
|
}
|
|
12975
|
-
|
|
12975
|
+
lodash6.templateSettings = {
|
|
12976
12976
|
/**
|
|
12977
12977
|
* Used to detect `data` property values to be HTML-escaped.
|
|
12978
12978
|
*
|
|
@@ -13014,11 +13014,11 @@ var require_lodash = __commonJS({
|
|
|
13014
13014
|
* @memberOf _.templateSettings.imports
|
|
13015
13015
|
* @type {Function}
|
|
13016
13016
|
*/
|
|
13017
|
-
"_":
|
|
13017
|
+
"_": lodash6
|
|
13018
13018
|
}
|
|
13019
13019
|
};
|
|
13020
|
-
|
|
13021
|
-
|
|
13020
|
+
lodash6.prototype = baseLodash.prototype;
|
|
13021
|
+
lodash6.prototype.constructor = lodash6;
|
|
13022
13022
|
LodashWrapper.prototype = baseCreate(baseLodash.prototype);
|
|
13023
13023
|
LodashWrapper.prototype.constructor = LodashWrapper;
|
|
13024
13024
|
function LazyWrapper(value) {
|
|
@@ -14929,11 +14929,11 @@ var require_lodash = __commonJS({
|
|
|
14929
14929
|
return result2;
|
|
14930
14930
|
}
|
|
14931
14931
|
function getHolder(func) {
|
|
14932
|
-
var object = hasOwnProperty2.call(
|
|
14932
|
+
var object = hasOwnProperty2.call(lodash6, "placeholder") ? lodash6 : func;
|
|
14933
14933
|
return object.placeholder;
|
|
14934
14934
|
}
|
|
14935
14935
|
function getIteratee() {
|
|
14936
|
-
var result2 =
|
|
14936
|
+
var result2 = lodash6.iteratee || iteratee;
|
|
14937
14937
|
result2 = result2 === iteratee ? baseIteratee : result2;
|
|
14938
14938
|
return arguments.length ? result2(arguments[0], arguments[1]) : result2;
|
|
14939
14939
|
}
|
|
@@ -15136,7 +15136,7 @@ var require_lodash = __commonJS({
|
|
|
15136
15136
|
return type == "string" || type == "number" || type == "symbol" || type == "boolean" ? value !== "__proto__" : value === null;
|
|
15137
15137
|
}
|
|
15138
15138
|
function isLaziable(func) {
|
|
15139
|
-
var funcName = getFuncName(func), other =
|
|
15139
|
+
var funcName = getFuncName(func), other = lodash6[funcName];
|
|
15140
15140
|
if (typeof other != "function" || !(funcName in LazyWrapper.prototype)) {
|
|
15141
15141
|
return false;
|
|
15142
15142
|
}
|
|
@@ -15737,7 +15737,7 @@ var require_lodash = __commonJS({
|
|
|
15737
15737
|
return unzipWith(arrays, iteratee2);
|
|
15738
15738
|
});
|
|
15739
15739
|
function chain2(value) {
|
|
15740
|
-
var result2 =
|
|
15740
|
+
var result2 = lodash6(value);
|
|
15741
15741
|
result2.__chain__ = true;
|
|
15742
15742
|
return result2;
|
|
15743
15743
|
}
|
|
@@ -16853,7 +16853,7 @@ var require_lodash = __commonJS({
|
|
|
16853
16853
|
return string.slice(position, position + target.length) == target;
|
|
16854
16854
|
}
|
|
16855
16855
|
function template(string, options, guard) {
|
|
16856
|
-
var settings =
|
|
16856
|
+
var settings = lodash6.templateSettings;
|
|
16857
16857
|
if (guard && isIterateeCall(string, options, guard)) {
|
|
16858
16858
|
options = undefined2;
|
|
16859
16859
|
}
|
|
@@ -17202,324 +17202,324 @@ var require_lodash = __commonJS({
|
|
|
17202
17202
|
function sumBy(array, iteratee2) {
|
|
17203
17203
|
return array && array.length ? baseSum(array, getIteratee(iteratee2, 2)) : 0;
|
|
17204
17204
|
}
|
|
17205
|
-
|
|
17206
|
-
|
|
17207
|
-
|
|
17208
|
-
|
|
17209
|
-
|
|
17210
|
-
|
|
17211
|
-
|
|
17212
|
-
|
|
17213
|
-
|
|
17214
|
-
|
|
17215
|
-
|
|
17216
|
-
|
|
17217
|
-
|
|
17218
|
-
|
|
17219
|
-
|
|
17220
|
-
|
|
17221
|
-
|
|
17222
|
-
|
|
17223
|
-
|
|
17224
|
-
|
|
17225
|
-
|
|
17226
|
-
|
|
17227
|
-
|
|
17228
|
-
|
|
17229
|
-
|
|
17230
|
-
|
|
17231
|
-
|
|
17232
|
-
|
|
17233
|
-
|
|
17234
|
-
|
|
17235
|
-
|
|
17236
|
-
|
|
17237
|
-
|
|
17238
|
-
|
|
17239
|
-
|
|
17240
|
-
|
|
17241
|
-
|
|
17242
|
-
|
|
17243
|
-
|
|
17244
|
-
|
|
17245
|
-
|
|
17246
|
-
|
|
17247
|
-
|
|
17248
|
-
|
|
17249
|
-
|
|
17250
|
-
|
|
17251
|
-
|
|
17252
|
-
|
|
17253
|
-
|
|
17254
|
-
|
|
17255
|
-
|
|
17256
|
-
|
|
17257
|
-
|
|
17258
|
-
|
|
17259
|
-
|
|
17260
|
-
|
|
17261
|
-
|
|
17262
|
-
|
|
17263
|
-
|
|
17264
|
-
|
|
17265
|
-
|
|
17266
|
-
|
|
17267
|
-
|
|
17268
|
-
|
|
17269
|
-
|
|
17270
|
-
|
|
17271
|
-
|
|
17272
|
-
|
|
17273
|
-
|
|
17274
|
-
|
|
17275
|
-
|
|
17276
|
-
|
|
17277
|
-
|
|
17278
|
-
|
|
17279
|
-
|
|
17280
|
-
|
|
17281
|
-
|
|
17282
|
-
|
|
17283
|
-
|
|
17284
|
-
|
|
17285
|
-
|
|
17286
|
-
|
|
17287
|
-
|
|
17288
|
-
|
|
17289
|
-
|
|
17290
|
-
|
|
17291
|
-
|
|
17292
|
-
|
|
17293
|
-
|
|
17294
|
-
|
|
17295
|
-
|
|
17296
|
-
|
|
17297
|
-
|
|
17298
|
-
|
|
17299
|
-
|
|
17300
|
-
|
|
17301
|
-
|
|
17302
|
-
|
|
17303
|
-
|
|
17304
|
-
|
|
17305
|
-
|
|
17306
|
-
|
|
17307
|
-
|
|
17308
|
-
|
|
17309
|
-
|
|
17310
|
-
|
|
17311
|
-
|
|
17312
|
-
|
|
17313
|
-
|
|
17314
|
-
|
|
17315
|
-
|
|
17316
|
-
|
|
17317
|
-
|
|
17318
|
-
|
|
17319
|
-
|
|
17320
|
-
|
|
17321
|
-
|
|
17322
|
-
|
|
17323
|
-
|
|
17324
|
-
|
|
17325
|
-
|
|
17326
|
-
|
|
17327
|
-
|
|
17328
|
-
|
|
17329
|
-
|
|
17330
|
-
|
|
17331
|
-
|
|
17332
|
-
|
|
17333
|
-
|
|
17334
|
-
|
|
17335
|
-
|
|
17336
|
-
|
|
17337
|
-
|
|
17338
|
-
|
|
17339
|
-
|
|
17340
|
-
|
|
17341
|
-
|
|
17342
|
-
|
|
17343
|
-
|
|
17344
|
-
|
|
17345
|
-
|
|
17346
|
-
|
|
17347
|
-
|
|
17348
|
-
|
|
17349
|
-
|
|
17350
|
-
|
|
17351
|
-
|
|
17352
|
-
|
|
17353
|
-
|
|
17354
|
-
|
|
17355
|
-
|
|
17356
|
-
|
|
17357
|
-
|
|
17358
|
-
mixin(
|
|
17359
|
-
|
|
17360
|
-
|
|
17361
|
-
|
|
17362
|
-
|
|
17363
|
-
|
|
17364
|
-
|
|
17365
|
-
|
|
17366
|
-
|
|
17367
|
-
|
|
17368
|
-
|
|
17369
|
-
|
|
17370
|
-
|
|
17371
|
-
|
|
17372
|
-
|
|
17373
|
-
|
|
17374
|
-
|
|
17375
|
-
|
|
17376
|
-
|
|
17377
|
-
|
|
17378
|
-
|
|
17379
|
-
|
|
17380
|
-
|
|
17381
|
-
|
|
17382
|
-
|
|
17383
|
-
|
|
17384
|
-
|
|
17385
|
-
|
|
17386
|
-
|
|
17387
|
-
|
|
17388
|
-
|
|
17389
|
-
|
|
17390
|
-
|
|
17391
|
-
|
|
17392
|
-
|
|
17393
|
-
|
|
17394
|
-
|
|
17395
|
-
|
|
17396
|
-
|
|
17397
|
-
|
|
17398
|
-
|
|
17399
|
-
|
|
17400
|
-
|
|
17401
|
-
|
|
17402
|
-
|
|
17403
|
-
|
|
17404
|
-
|
|
17405
|
-
|
|
17406
|
-
|
|
17407
|
-
|
|
17408
|
-
|
|
17409
|
-
|
|
17410
|
-
|
|
17411
|
-
|
|
17412
|
-
|
|
17413
|
-
|
|
17414
|
-
|
|
17415
|
-
|
|
17416
|
-
|
|
17417
|
-
|
|
17418
|
-
|
|
17419
|
-
|
|
17420
|
-
|
|
17421
|
-
|
|
17422
|
-
|
|
17423
|
-
|
|
17424
|
-
|
|
17425
|
-
|
|
17426
|
-
|
|
17427
|
-
|
|
17428
|
-
|
|
17429
|
-
|
|
17430
|
-
|
|
17431
|
-
|
|
17432
|
-
|
|
17433
|
-
|
|
17434
|
-
|
|
17435
|
-
|
|
17436
|
-
|
|
17437
|
-
|
|
17438
|
-
|
|
17439
|
-
|
|
17440
|
-
|
|
17441
|
-
|
|
17442
|
-
|
|
17443
|
-
|
|
17444
|
-
|
|
17445
|
-
|
|
17446
|
-
|
|
17447
|
-
|
|
17448
|
-
|
|
17449
|
-
|
|
17450
|
-
|
|
17451
|
-
|
|
17452
|
-
|
|
17453
|
-
|
|
17454
|
-
|
|
17455
|
-
|
|
17456
|
-
|
|
17457
|
-
|
|
17458
|
-
|
|
17459
|
-
|
|
17460
|
-
|
|
17461
|
-
|
|
17462
|
-
|
|
17463
|
-
|
|
17464
|
-
|
|
17465
|
-
|
|
17466
|
-
|
|
17467
|
-
|
|
17468
|
-
|
|
17469
|
-
|
|
17470
|
-
|
|
17471
|
-
|
|
17472
|
-
|
|
17473
|
-
|
|
17474
|
-
|
|
17475
|
-
|
|
17476
|
-
|
|
17477
|
-
|
|
17478
|
-
|
|
17479
|
-
|
|
17480
|
-
|
|
17481
|
-
|
|
17482
|
-
|
|
17483
|
-
|
|
17484
|
-
|
|
17485
|
-
|
|
17486
|
-
|
|
17487
|
-
|
|
17488
|
-
|
|
17489
|
-
|
|
17490
|
-
|
|
17491
|
-
|
|
17492
|
-
|
|
17493
|
-
|
|
17494
|
-
|
|
17495
|
-
|
|
17496
|
-
|
|
17497
|
-
|
|
17498
|
-
|
|
17499
|
-
|
|
17500
|
-
|
|
17501
|
-
|
|
17502
|
-
|
|
17503
|
-
|
|
17504
|
-
|
|
17505
|
-
|
|
17506
|
-
|
|
17507
|
-
|
|
17508
|
-
|
|
17509
|
-
|
|
17510
|
-
|
|
17511
|
-
mixin(
|
|
17205
|
+
lodash6.after = after2;
|
|
17206
|
+
lodash6.ary = ary;
|
|
17207
|
+
lodash6.assign = assign;
|
|
17208
|
+
lodash6.assignIn = assignIn;
|
|
17209
|
+
lodash6.assignInWith = assignInWith;
|
|
17210
|
+
lodash6.assignWith = assignWith;
|
|
17211
|
+
lodash6.at = at;
|
|
17212
|
+
lodash6.before = before2;
|
|
17213
|
+
lodash6.bind = bind2;
|
|
17214
|
+
lodash6.bindAll = bindAll;
|
|
17215
|
+
lodash6.bindKey = bindKey;
|
|
17216
|
+
lodash6.castArray = castArray;
|
|
17217
|
+
lodash6.chain = chain2;
|
|
17218
|
+
lodash6.chunk = chunk;
|
|
17219
|
+
lodash6.compact = compact;
|
|
17220
|
+
lodash6.concat = concat;
|
|
17221
|
+
lodash6.cond = cond;
|
|
17222
|
+
lodash6.conforms = conforms;
|
|
17223
|
+
lodash6.constant = constant;
|
|
17224
|
+
lodash6.countBy = countBy;
|
|
17225
|
+
lodash6.create = create2;
|
|
17226
|
+
lodash6.curry = curry;
|
|
17227
|
+
lodash6.curryRight = curryRight;
|
|
17228
|
+
lodash6.debounce = debounce;
|
|
17229
|
+
lodash6.defaults = defaults3;
|
|
17230
|
+
lodash6.defaultsDeep = defaultsDeep;
|
|
17231
|
+
lodash6.defer = defer2;
|
|
17232
|
+
lodash6.delay = delay;
|
|
17233
|
+
lodash6.difference = difference;
|
|
17234
|
+
lodash6.differenceBy = differenceBy;
|
|
17235
|
+
lodash6.differenceWith = differenceWith;
|
|
17236
|
+
lodash6.drop = drop;
|
|
17237
|
+
lodash6.dropRight = dropRight;
|
|
17238
|
+
lodash6.dropRightWhile = dropRightWhile;
|
|
17239
|
+
lodash6.dropWhile = dropWhile;
|
|
17240
|
+
lodash6.fill = fill;
|
|
17241
|
+
lodash6.filter = filter6;
|
|
17242
|
+
lodash6.flatMap = flatMap;
|
|
17243
|
+
lodash6.flatMapDeep = flatMapDeep;
|
|
17244
|
+
lodash6.flatMapDepth = flatMapDepth;
|
|
17245
|
+
lodash6.flatten = flatten2;
|
|
17246
|
+
lodash6.flattenDeep = flattenDeep;
|
|
17247
|
+
lodash6.flattenDepth = flattenDepth;
|
|
17248
|
+
lodash6.flip = flip;
|
|
17249
|
+
lodash6.flow = flow;
|
|
17250
|
+
lodash6.flowRight = flowRight;
|
|
17251
|
+
lodash6.fromPairs = fromPairs;
|
|
17252
|
+
lodash6.functions = functions;
|
|
17253
|
+
lodash6.functionsIn = functionsIn;
|
|
17254
|
+
lodash6.groupBy = groupBy;
|
|
17255
|
+
lodash6.initial = initial;
|
|
17256
|
+
lodash6.intersection = intersection;
|
|
17257
|
+
lodash6.intersectionBy = intersectionBy;
|
|
17258
|
+
lodash6.intersectionWith = intersectionWith;
|
|
17259
|
+
lodash6.invert = invert;
|
|
17260
|
+
lodash6.invertBy = invertBy;
|
|
17261
|
+
lodash6.invokeMap = invokeMap;
|
|
17262
|
+
lodash6.iteratee = iteratee;
|
|
17263
|
+
lodash6.keyBy = keyBy;
|
|
17264
|
+
lodash6.keys = keys;
|
|
17265
|
+
lodash6.keysIn = keysIn;
|
|
17266
|
+
lodash6.map = map2;
|
|
17267
|
+
lodash6.mapKeys = mapKeys;
|
|
17268
|
+
lodash6.mapValues = mapValues;
|
|
17269
|
+
lodash6.matches = matches;
|
|
17270
|
+
lodash6.matchesProperty = matchesProperty;
|
|
17271
|
+
lodash6.memoize = memoize4;
|
|
17272
|
+
lodash6.merge = merge4;
|
|
17273
|
+
lodash6.mergeWith = mergeWith;
|
|
17274
|
+
lodash6.method = method;
|
|
17275
|
+
lodash6.methodOf = methodOf;
|
|
17276
|
+
lodash6.mixin = mixin;
|
|
17277
|
+
lodash6.negate = negate;
|
|
17278
|
+
lodash6.nthArg = nthArg;
|
|
17279
|
+
lodash6.omit = omit2;
|
|
17280
|
+
lodash6.omitBy = omitBy;
|
|
17281
|
+
lodash6.once = once7;
|
|
17282
|
+
lodash6.orderBy = orderBy;
|
|
17283
|
+
lodash6.over = over;
|
|
17284
|
+
lodash6.overArgs = overArgs;
|
|
17285
|
+
lodash6.overEvery = overEvery;
|
|
17286
|
+
lodash6.overSome = overSome;
|
|
17287
|
+
lodash6.partial = partial;
|
|
17288
|
+
lodash6.partialRight = partialRight;
|
|
17289
|
+
lodash6.partition = partition2;
|
|
17290
|
+
lodash6.pick = pick2;
|
|
17291
|
+
lodash6.pickBy = pickBy2;
|
|
17292
|
+
lodash6.property = property;
|
|
17293
|
+
lodash6.propertyOf = propertyOf;
|
|
17294
|
+
lodash6.pull = pull;
|
|
17295
|
+
lodash6.pullAll = pullAll;
|
|
17296
|
+
lodash6.pullAllBy = pullAllBy;
|
|
17297
|
+
lodash6.pullAllWith = pullAllWith;
|
|
17298
|
+
lodash6.pullAt = pullAt;
|
|
17299
|
+
lodash6.range = range;
|
|
17300
|
+
lodash6.rangeRight = rangeRight;
|
|
17301
|
+
lodash6.rearg = rearg;
|
|
17302
|
+
lodash6.reject = reject;
|
|
17303
|
+
lodash6.remove = remove2;
|
|
17304
|
+
lodash6.rest = rest;
|
|
17305
|
+
lodash6.reverse = reverse;
|
|
17306
|
+
lodash6.sampleSize = sampleSize;
|
|
17307
|
+
lodash6.set = set;
|
|
17308
|
+
lodash6.setWith = setWith;
|
|
17309
|
+
lodash6.shuffle = shuffle;
|
|
17310
|
+
lodash6.slice = slice2;
|
|
17311
|
+
lodash6.sortBy = sortBy;
|
|
17312
|
+
lodash6.sortedUniq = sortedUniq;
|
|
17313
|
+
lodash6.sortedUniqBy = sortedUniqBy;
|
|
17314
|
+
lodash6.split = split;
|
|
17315
|
+
lodash6.spread = spread3;
|
|
17316
|
+
lodash6.tail = tail;
|
|
17317
|
+
lodash6.take = take;
|
|
17318
|
+
lodash6.takeRight = takeRight;
|
|
17319
|
+
lodash6.takeRightWhile = takeRightWhile;
|
|
17320
|
+
lodash6.takeWhile = takeWhile;
|
|
17321
|
+
lodash6.tap = tap;
|
|
17322
|
+
lodash6.throttle = throttle2;
|
|
17323
|
+
lodash6.thru = thru;
|
|
17324
|
+
lodash6.toArray = toArray3;
|
|
17325
|
+
lodash6.toPairs = toPairs;
|
|
17326
|
+
lodash6.toPairsIn = toPairsIn;
|
|
17327
|
+
lodash6.toPath = toPath;
|
|
17328
|
+
lodash6.toPlainObject = toPlainObject;
|
|
17329
|
+
lodash6.transform = transform2;
|
|
17330
|
+
lodash6.unary = unary;
|
|
17331
|
+
lodash6.union = union;
|
|
17332
|
+
lodash6.unionBy = unionBy;
|
|
17333
|
+
lodash6.unionWith = unionWith;
|
|
17334
|
+
lodash6.uniq = uniq3;
|
|
17335
|
+
lodash6.uniqBy = uniqBy;
|
|
17336
|
+
lodash6.uniqWith = uniqWith;
|
|
17337
|
+
lodash6.unset = unset;
|
|
17338
|
+
lodash6.unzip = unzip;
|
|
17339
|
+
lodash6.unzipWith = unzipWith;
|
|
17340
|
+
lodash6.update = update2;
|
|
17341
|
+
lodash6.updateWith = updateWith;
|
|
17342
|
+
lodash6.values = values;
|
|
17343
|
+
lodash6.valuesIn = valuesIn;
|
|
17344
|
+
lodash6.without = without;
|
|
17345
|
+
lodash6.words = words;
|
|
17346
|
+
lodash6.wrap = wrap2;
|
|
17347
|
+
lodash6.xor = xor;
|
|
17348
|
+
lodash6.xorBy = xorBy;
|
|
17349
|
+
lodash6.xorWith = xorWith;
|
|
17350
|
+
lodash6.zip = zip;
|
|
17351
|
+
lodash6.zipObject = zipObject;
|
|
17352
|
+
lodash6.zipObjectDeep = zipObjectDeep;
|
|
17353
|
+
lodash6.zipWith = zipWith;
|
|
17354
|
+
lodash6.entries = toPairs;
|
|
17355
|
+
lodash6.entriesIn = toPairsIn;
|
|
17356
|
+
lodash6.extend = assignIn;
|
|
17357
|
+
lodash6.extendWith = assignInWith;
|
|
17358
|
+
mixin(lodash6, lodash6);
|
|
17359
|
+
lodash6.add = add2;
|
|
17360
|
+
lodash6.attempt = attempt;
|
|
17361
|
+
lodash6.camelCase = camelCase2;
|
|
17362
|
+
lodash6.capitalize = capitalize;
|
|
17363
|
+
lodash6.ceil = ceil;
|
|
17364
|
+
lodash6.clamp = clamp;
|
|
17365
|
+
lodash6.clone = clone2;
|
|
17366
|
+
lodash6.cloneDeep = cloneDeep;
|
|
17367
|
+
lodash6.cloneDeepWith = cloneDeepWith;
|
|
17368
|
+
lodash6.cloneWith = cloneWith;
|
|
17369
|
+
lodash6.conformsTo = conformsTo;
|
|
17370
|
+
lodash6.deburr = deburr;
|
|
17371
|
+
lodash6.defaultTo = defaultTo;
|
|
17372
|
+
lodash6.divide = divide;
|
|
17373
|
+
lodash6.endsWith = endsWith2;
|
|
17374
|
+
lodash6.eq = eq2;
|
|
17375
|
+
lodash6.escape = escape3;
|
|
17376
|
+
lodash6.escapeRegExp = escapeRegExp;
|
|
17377
|
+
lodash6.every = every;
|
|
17378
|
+
lodash6.find = find4;
|
|
17379
|
+
lodash6.findIndex = findIndex;
|
|
17380
|
+
lodash6.findKey = findKey2;
|
|
17381
|
+
lodash6.findLast = findLast;
|
|
17382
|
+
lodash6.findLastIndex = findLastIndex;
|
|
17383
|
+
lodash6.findLastKey = findLastKey;
|
|
17384
|
+
lodash6.floor = floor;
|
|
17385
|
+
lodash6.forEach = forEach2;
|
|
17386
|
+
lodash6.forEachRight = forEachRight;
|
|
17387
|
+
lodash6.forIn = forIn;
|
|
17388
|
+
lodash6.forInRight = forInRight;
|
|
17389
|
+
lodash6.forOwn = forOwn;
|
|
17390
|
+
lodash6.forOwnRight = forOwnRight;
|
|
17391
|
+
lodash6.get = get2;
|
|
17392
|
+
lodash6.gt = gt;
|
|
17393
|
+
lodash6.gte = gte2;
|
|
17394
|
+
lodash6.has = has2;
|
|
17395
|
+
lodash6.hasIn = hasIn;
|
|
17396
|
+
lodash6.head = head;
|
|
17397
|
+
lodash6.identity = identity;
|
|
17398
|
+
lodash6.includes = includes;
|
|
17399
|
+
lodash6.indexOf = indexOf;
|
|
17400
|
+
lodash6.inRange = inRange;
|
|
17401
|
+
lodash6.invoke = invoke;
|
|
17402
|
+
lodash6.isArguments = isArguments;
|
|
17403
|
+
lodash6.isArray = isArray2;
|
|
17404
|
+
lodash6.isArrayBuffer = isArrayBuffer2;
|
|
17405
|
+
lodash6.isArrayLike = isArrayLike2;
|
|
17406
|
+
lodash6.isArrayLikeObject = isArrayLikeObject;
|
|
17407
|
+
lodash6.isBoolean = isBoolean2;
|
|
17408
|
+
lodash6.isBuffer = isBuffer2;
|
|
17409
|
+
lodash6.isDate = isDate2;
|
|
17410
|
+
lodash6.isElement = isElement;
|
|
17411
|
+
lodash6.isEmpty = isEmpty;
|
|
17412
|
+
lodash6.isEqual = isEqual;
|
|
17413
|
+
lodash6.isEqualWith = isEqualWith;
|
|
17414
|
+
lodash6.isError = isError;
|
|
17415
|
+
lodash6.isFinite = isFinite2;
|
|
17416
|
+
lodash6.isFunction = isFunction2;
|
|
17417
|
+
lodash6.isInteger = isInteger;
|
|
17418
|
+
lodash6.isLength = isLength;
|
|
17419
|
+
lodash6.isMap = isMap;
|
|
17420
|
+
lodash6.isMatch = isMatch3;
|
|
17421
|
+
lodash6.isMatchWith = isMatchWith;
|
|
17422
|
+
lodash6.isNaN = isNaN2;
|
|
17423
|
+
lodash6.isNative = isNative;
|
|
17424
|
+
lodash6.isNil = isNil;
|
|
17425
|
+
lodash6.isNull = isNull;
|
|
17426
|
+
lodash6.isNumber = isNumber4;
|
|
17427
|
+
lodash6.isObject = isObject2;
|
|
17428
|
+
lodash6.isObjectLike = isObjectLike;
|
|
17429
|
+
lodash6.isPlainObject = isPlainObject2;
|
|
17430
|
+
lodash6.isRegExp = isRegExp2;
|
|
17431
|
+
lodash6.isSafeInteger = isSafeInteger;
|
|
17432
|
+
lodash6.isSet = isSet;
|
|
17433
|
+
lodash6.isString = isString2;
|
|
17434
|
+
lodash6.isSymbol = isSymbol;
|
|
17435
|
+
lodash6.isTypedArray = isTypedArray2;
|
|
17436
|
+
lodash6.isUndefined = isUndefined2;
|
|
17437
|
+
lodash6.isWeakMap = isWeakMap;
|
|
17438
|
+
lodash6.isWeakSet = isWeakSet;
|
|
17439
|
+
lodash6.join = join16;
|
|
17440
|
+
lodash6.kebabCase = kebabCase;
|
|
17441
|
+
lodash6.last = last2;
|
|
17442
|
+
lodash6.lastIndexOf = lastIndexOf;
|
|
17443
|
+
lodash6.lowerCase = lowerCase;
|
|
17444
|
+
lodash6.lowerFirst = lowerFirst;
|
|
17445
|
+
lodash6.lt = lt;
|
|
17446
|
+
lodash6.lte = lte;
|
|
17447
|
+
lodash6.max = max;
|
|
17448
|
+
lodash6.maxBy = maxBy;
|
|
17449
|
+
lodash6.mean = mean;
|
|
17450
|
+
lodash6.meanBy = meanBy;
|
|
17451
|
+
lodash6.min = min;
|
|
17452
|
+
lodash6.minBy = minBy;
|
|
17453
|
+
lodash6.stubArray = stubArray;
|
|
17454
|
+
lodash6.stubFalse = stubFalse;
|
|
17455
|
+
lodash6.stubObject = stubObject;
|
|
17456
|
+
lodash6.stubString = stubString;
|
|
17457
|
+
lodash6.stubTrue = stubTrue;
|
|
17458
|
+
lodash6.multiply = multiply;
|
|
17459
|
+
lodash6.nth = nth;
|
|
17460
|
+
lodash6.noConflict = noConflict;
|
|
17461
|
+
lodash6.noop = noop2;
|
|
17462
|
+
lodash6.now = now;
|
|
17463
|
+
lodash6.pad = pad;
|
|
17464
|
+
lodash6.padEnd = padEnd;
|
|
17465
|
+
lodash6.padStart = padStart;
|
|
17466
|
+
lodash6.parseInt = parseInt2;
|
|
17467
|
+
lodash6.random = random;
|
|
17468
|
+
lodash6.reduce = reduce;
|
|
17469
|
+
lodash6.reduceRight = reduceRight;
|
|
17470
|
+
lodash6.repeat = repeat;
|
|
17471
|
+
lodash6.replace = replace;
|
|
17472
|
+
lodash6.result = result;
|
|
17473
|
+
lodash6.round = round;
|
|
17474
|
+
lodash6.runInContext = runInContext2;
|
|
17475
|
+
lodash6.sample = sample;
|
|
17476
|
+
lodash6.size = size;
|
|
17477
|
+
lodash6.snakeCase = snakeCase;
|
|
17478
|
+
lodash6.some = some2;
|
|
17479
|
+
lodash6.sortedIndex = sortedIndex;
|
|
17480
|
+
lodash6.sortedIndexBy = sortedIndexBy;
|
|
17481
|
+
lodash6.sortedIndexOf = sortedIndexOf;
|
|
17482
|
+
lodash6.sortedLastIndex = sortedLastIndex;
|
|
17483
|
+
lodash6.sortedLastIndexBy = sortedLastIndexBy;
|
|
17484
|
+
lodash6.sortedLastIndexOf = sortedLastIndexOf;
|
|
17485
|
+
lodash6.startCase = startCase;
|
|
17486
|
+
lodash6.startsWith = startsWith;
|
|
17487
|
+
lodash6.subtract = subtract;
|
|
17488
|
+
lodash6.sum = sum;
|
|
17489
|
+
lodash6.sumBy = sumBy;
|
|
17490
|
+
lodash6.template = template;
|
|
17491
|
+
lodash6.times = times;
|
|
17492
|
+
lodash6.toFinite = toFinite;
|
|
17493
|
+
lodash6.toInteger = toInteger;
|
|
17494
|
+
lodash6.toLength = toLength;
|
|
17495
|
+
lodash6.toLower = toLower;
|
|
17496
|
+
lodash6.toNumber = toNumber;
|
|
17497
|
+
lodash6.toSafeInteger = toSafeInteger;
|
|
17498
|
+
lodash6.toString = toString4;
|
|
17499
|
+
lodash6.toUpper = toUpper;
|
|
17500
|
+
lodash6.trim = trim2;
|
|
17501
|
+
lodash6.trimEnd = trimEnd;
|
|
17502
|
+
lodash6.trimStart = trimStart;
|
|
17503
|
+
lodash6.truncate = truncate;
|
|
17504
|
+
lodash6.unescape = unescape3;
|
|
17505
|
+
lodash6.uniqueId = uniqueId2;
|
|
17506
|
+
lodash6.upperCase = upperCase;
|
|
17507
|
+
lodash6.upperFirst = upperFirst;
|
|
17508
|
+
lodash6.each = forEach2;
|
|
17509
|
+
lodash6.eachRight = forEachRight;
|
|
17510
|
+
lodash6.first = head;
|
|
17511
|
+
mixin(lodash6, function() {
|
|
17512
17512
|
var source = {};
|
|
17513
|
-
baseForOwn(
|
|
17514
|
-
if (!hasOwnProperty2.call(
|
|
17513
|
+
baseForOwn(lodash6, function(func, methodName) {
|
|
17514
|
+
if (!hasOwnProperty2.call(lodash6.prototype, methodName)) {
|
|
17515
17515
|
source[methodName] = func;
|
|
17516
17516
|
}
|
|
17517
17517
|
});
|
|
17518
17518
|
return source;
|
|
17519
17519
|
}(), { "chain": false });
|
|
17520
|
-
|
|
17520
|
+
lodash6.VERSION = VERSION3;
|
|
17521
17521
|
arrayEach(["bind", "bindKey", "curry", "curryRight", "partial", "partialRight"], function(methodName) {
|
|
17522
|
-
|
|
17522
|
+
lodash6[methodName].placeholder = lodash6;
|
|
17523
17523
|
});
|
|
17524
17524
|
arrayEach(["drop", "take"], function(methodName, index2) {
|
|
17525
17525
|
LazyWrapper.prototype[methodName] = function(n2) {
|
|
@@ -17607,14 +17607,14 @@ var require_lodash = __commonJS({
|
|
|
17607
17607
|
return this.take(MAX_ARRAY_LENGTH);
|
|
17608
17608
|
};
|
|
17609
17609
|
baseForOwn(LazyWrapper.prototype, function(func, methodName) {
|
|
17610
|
-
var checkIteratee = /^(?:filter|find|map|reject)|While$/.test(methodName), isTaker = /^(?:head|last)$/.test(methodName), lodashFunc =
|
|
17610
|
+
var checkIteratee = /^(?:filter|find|map|reject)|While$/.test(methodName), isTaker = /^(?:head|last)$/.test(methodName), lodashFunc = lodash6[isTaker ? "take" + (methodName == "last" ? "Right" : "") : methodName], retUnwrapped = isTaker || /^find/.test(methodName);
|
|
17611
17611
|
if (!lodashFunc) {
|
|
17612
17612
|
return;
|
|
17613
17613
|
}
|
|
17614
|
-
|
|
17614
|
+
lodash6.prototype[methodName] = function() {
|
|
17615
17615
|
var value = this.__wrapped__, args2 = isTaker ? [1] : arguments, isLazy = value instanceof LazyWrapper, iteratee2 = args2[0], useLazy = isLazy || isArray2(value);
|
|
17616
17616
|
var interceptor = function(value2) {
|
|
17617
|
-
var result3 = lodashFunc.apply(
|
|
17617
|
+
var result3 = lodashFunc.apply(lodash6, arrayPush([value2], args2));
|
|
17618
17618
|
return isTaker && chainAll ? result3[0] : result3;
|
|
17619
17619
|
};
|
|
17620
17620
|
if (useLazy && checkIteratee && typeof iteratee2 == "function" && iteratee2.length != 1) {
|
|
@@ -17636,7 +17636,7 @@ var require_lodash = __commonJS({
|
|
|
17636
17636
|
});
|
|
17637
17637
|
arrayEach(["pop", "push", "shift", "sort", "splice", "unshift"], function(methodName) {
|
|
17638
17638
|
var func = arrayProto[methodName], chainName = /^(?:push|sort|unshift)$/.test(methodName) ? "tap" : "thru", retUnwrapped = /^(?:pop|shift)$/.test(methodName);
|
|
17639
|
-
|
|
17639
|
+
lodash6.prototype[methodName] = function() {
|
|
17640
17640
|
var args2 = arguments;
|
|
17641
17641
|
if (retUnwrapped && !this.__chain__) {
|
|
17642
17642
|
var value = this.value();
|
|
@@ -17648,7 +17648,7 @@ var require_lodash = __commonJS({
|
|
|
17648
17648
|
};
|
|
17649
17649
|
});
|
|
17650
17650
|
baseForOwn(LazyWrapper.prototype, function(func, methodName) {
|
|
17651
|
-
var lodashFunc =
|
|
17651
|
+
var lodashFunc = lodash6[methodName];
|
|
17652
17652
|
if (lodashFunc) {
|
|
17653
17653
|
var key = lodashFunc.name + "";
|
|
17654
17654
|
if (!hasOwnProperty2.call(realNames, key)) {
|
|
@@ -17664,18 +17664,18 @@ var require_lodash = __commonJS({
|
|
|
17664
17664
|
LazyWrapper.prototype.clone = lazyClone;
|
|
17665
17665
|
LazyWrapper.prototype.reverse = lazyReverse;
|
|
17666
17666
|
LazyWrapper.prototype.value = lazyValue;
|
|
17667
|
-
|
|
17668
|
-
|
|
17669
|
-
|
|
17670
|
-
|
|
17671
|
-
|
|
17672
|
-
|
|
17673
|
-
|
|
17674
|
-
|
|
17667
|
+
lodash6.prototype.at = wrapperAt;
|
|
17668
|
+
lodash6.prototype.chain = wrapperChain;
|
|
17669
|
+
lodash6.prototype.commit = wrapperCommit;
|
|
17670
|
+
lodash6.prototype.next = wrapperNext;
|
|
17671
|
+
lodash6.prototype.plant = wrapperPlant;
|
|
17672
|
+
lodash6.prototype.reverse = wrapperReverse;
|
|
17673
|
+
lodash6.prototype.toJSON = lodash6.prototype.valueOf = lodash6.prototype.value = wrapperValue;
|
|
17674
|
+
lodash6.prototype.first = lodash6.prototype.head;
|
|
17675
17675
|
if (symIterator) {
|
|
17676
|
-
|
|
17676
|
+
lodash6.prototype[symIterator] = wrapperToIterator;
|
|
17677
17677
|
}
|
|
17678
|
-
return
|
|
17678
|
+
return lodash6;
|
|
17679
17679
|
};
|
|
17680
17680
|
var _ = runInContext();
|
|
17681
17681
|
if (typeof define == "function" && typeof define.amd == "object" && define.amd) {
|
|
@@ -85231,9 +85231,9 @@ var require_constants6 = __commonJS({
|
|
|
85231
85231
|
"use strict";
|
|
85232
85232
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
85233
85233
|
exports2.REQUIREMENTS_FILES_SEARCH_DEPTH = exports2.COANA_REPOS_PATH = exports2.COANA_ROOT = void 0;
|
|
85234
|
+
var lodash_1 = require_lodash();
|
|
85234
85235
|
var path_1 = __require("path");
|
|
85235
85236
|
var file_utils_1 = require_file_utils();
|
|
85236
|
-
var lodash_1 = require_lodash();
|
|
85237
85237
|
exports2.COANA_ROOT = (0, lodash_1.once)(() => {
|
|
85238
85238
|
const coanaRoot = process.env.COANA_ROOT ?? (0, file_utils_1.findParent)(__dirname, (d2) => ["coana-package-manager", "coana"].includes(d2));
|
|
85239
85239
|
if (!coanaRoot) {
|
|
@@ -85248,6 +85248,112 @@ var require_constants6 = __commonJS({
|
|
|
85248
85248
|
}
|
|
85249
85249
|
});
|
|
85250
85250
|
|
|
85251
|
+
// ../utils/dist/code-cleaning-utils.js
|
|
85252
|
+
var require_code_cleaning_utils = __commonJS({
|
|
85253
|
+
"../utils/dist/code-cleaning-utils.js"(exports2) {
|
|
85254
|
+
"use strict";
|
|
85255
|
+
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
85256
|
+
exports2.replaceRange = replaceRange2;
|
|
85257
|
+
exports2.stripCStyleComments = stripCStyleComments4;
|
|
85258
|
+
exports2.stripCStyleBlocks = stripCStyleBlocks2;
|
|
85259
|
+
function replaceRange2(str, start, end2, replacement) {
|
|
85260
|
+
return str.slice(0, start) + replacement + str.slice(end2);
|
|
85261
|
+
}
|
|
85262
|
+
function stripCStyleComments4(code) {
|
|
85263
|
+
const result = [];
|
|
85264
|
+
let i7 = 0;
|
|
85265
|
+
let insideString = false;
|
|
85266
|
+
let insideSingleLineComment = false;
|
|
85267
|
+
let nestingLevel = 0;
|
|
85268
|
+
while (i7 < code.length) {
|
|
85269
|
+
if (insideString) {
|
|
85270
|
+
if (code[i7] === '"' && code[i7 - 1] !== "\\") {
|
|
85271
|
+
insideString = false;
|
|
85272
|
+
}
|
|
85273
|
+
result.push(code[i7]);
|
|
85274
|
+
} else if (insideSingleLineComment) {
|
|
85275
|
+
if (code[i7] === "\n") {
|
|
85276
|
+
insideSingleLineComment = false;
|
|
85277
|
+
result.push("\n");
|
|
85278
|
+
} else {
|
|
85279
|
+
result.push(" ");
|
|
85280
|
+
}
|
|
85281
|
+
} else if (nestingLevel > 0) {
|
|
85282
|
+
if (code[i7] === "/" && code[i7 + 1] === "*") {
|
|
85283
|
+
nestingLevel++;
|
|
85284
|
+
result.push(" ");
|
|
85285
|
+
i7++;
|
|
85286
|
+
} else if (code[i7] === "*" && code[i7 + 1] === "/") {
|
|
85287
|
+
nestingLevel = Math.max(0, nestingLevel - 1);
|
|
85288
|
+
result.push(" ");
|
|
85289
|
+
i7++;
|
|
85290
|
+
} else {
|
|
85291
|
+
result.push(code[i7] === "\n" ? "\n" : " ");
|
|
85292
|
+
}
|
|
85293
|
+
} else {
|
|
85294
|
+
if (!insideString && code[i7] === '"' && (code[i7 - 1] !== "'" || code[i7 + 1] !== "'")) {
|
|
85295
|
+
insideString = true;
|
|
85296
|
+
result.push(code[i7]);
|
|
85297
|
+
} else if (!insideString && code[i7] === "/" && code[i7 + 1] === "/") {
|
|
85298
|
+
insideSingleLineComment = true;
|
|
85299
|
+
result.push(" ");
|
|
85300
|
+
i7++;
|
|
85301
|
+
} else if (!insideString && code[i7] === "/" && code[i7 + 1] === "*") {
|
|
85302
|
+
nestingLevel++;
|
|
85303
|
+
result.push(" ");
|
|
85304
|
+
i7++;
|
|
85305
|
+
} else {
|
|
85306
|
+
result.push(code[i7]);
|
|
85307
|
+
}
|
|
85308
|
+
}
|
|
85309
|
+
i7++;
|
|
85310
|
+
}
|
|
85311
|
+
return result.join("");
|
|
85312
|
+
}
|
|
85313
|
+
function stripCStyleBlocksDirectional2(code, startIndex, direction) {
|
|
85314
|
+
const result = [];
|
|
85315
|
+
let insideString = false;
|
|
85316
|
+
let nestingLevel = 0;
|
|
85317
|
+
for (let i7 = startIndex; i7 >= 0 && i7 < code.length; i7 += direction) {
|
|
85318
|
+
if (insideString) {
|
|
85319
|
+
if (code[i7] === '"' && code[i7 - 1] !== "\\") {
|
|
85320
|
+
insideString = false;
|
|
85321
|
+
}
|
|
85322
|
+
result.push(code[i7]);
|
|
85323
|
+
} else if (nestingLevel > 0) {
|
|
85324
|
+
if (code[i7] === "{") {
|
|
85325
|
+
nestingLevel = Math.max(0, nestingLevel + direction);
|
|
85326
|
+
result.push(" ");
|
|
85327
|
+
} else if (code[i7] === "}") {
|
|
85328
|
+
nestingLevel = Math.max(0, nestingLevel - direction);
|
|
85329
|
+
result.push(" ");
|
|
85330
|
+
} else {
|
|
85331
|
+
result.push(code[i7] === "\n" ? "\n" : " ");
|
|
85332
|
+
}
|
|
85333
|
+
} else {
|
|
85334
|
+
if (!insideString && code[i7] === '"' && (code[i7 - 1] !== "'" || code[i7 + 1] !== "'")) {
|
|
85335
|
+
insideString = true;
|
|
85336
|
+
result.push(code[i7]);
|
|
85337
|
+
} else if (!insideString && code[i7] === "{") {
|
|
85338
|
+
nestingLevel = Math.max(0, nestingLevel + direction);
|
|
85339
|
+
result.push(" ");
|
|
85340
|
+
} else {
|
|
85341
|
+
result.push(code[i7]);
|
|
85342
|
+
}
|
|
85343
|
+
}
|
|
85344
|
+
}
|
|
85345
|
+
return direction > 0 ? replaceRange2(code, startIndex, code.length, result.join("")) : replaceRange2(code, 0, startIndex + 1, result.reverse().join(""));
|
|
85346
|
+
}
|
|
85347
|
+
function stripCStyleBlocks2(code, low, high, alsoStripComments = true) {
|
|
85348
|
+
if (alsoStripComments) {
|
|
85349
|
+
code = stripCStyleComments4(code);
|
|
85350
|
+
}
|
|
85351
|
+
const codeWithoutBlocksBackwards = stripCStyleBlocksDirectional2(code, low, -1);
|
|
85352
|
+
return stripCStyleBlocksDirectional2(codeWithoutBlocksBackwards, high, 1);
|
|
85353
|
+
}
|
|
85354
|
+
}
|
|
85355
|
+
});
|
|
85356
|
+
|
|
85251
85357
|
// ../utils/dist/version-comparison/maven/comparable-version.js
|
|
85252
85358
|
var require_comparable_version = __commonJS({
|
|
85253
85359
|
"../utils/dist/version-comparison/maven/comparable-version.js"(exports2) {
|
|
@@ -85700,112 +85806,6 @@ var require_comparable_version = __commonJS({
|
|
|
85700
85806
|
}
|
|
85701
85807
|
});
|
|
85702
85808
|
|
|
85703
|
-
// ../utils/dist/code-cleaning-utils.js
|
|
85704
|
-
var require_code_cleaning_utils = __commonJS({
|
|
85705
|
-
"../utils/dist/code-cleaning-utils.js"(exports2) {
|
|
85706
|
-
"use strict";
|
|
85707
|
-
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
85708
|
-
exports2.replaceRange = replaceRange2;
|
|
85709
|
-
exports2.stripCStyleComments = stripCStyleComments4;
|
|
85710
|
-
exports2.stripCStyleBlocks = stripCStyleBlocks2;
|
|
85711
|
-
function replaceRange2(str, start, end2, replacement) {
|
|
85712
|
-
return str.slice(0, start) + replacement + str.slice(end2);
|
|
85713
|
-
}
|
|
85714
|
-
function stripCStyleComments4(code) {
|
|
85715
|
-
const result = [];
|
|
85716
|
-
let i7 = 0;
|
|
85717
|
-
let insideString = false;
|
|
85718
|
-
let insideSingleLineComment = false;
|
|
85719
|
-
let nestingLevel = 0;
|
|
85720
|
-
while (i7 < code.length) {
|
|
85721
|
-
if (insideString) {
|
|
85722
|
-
if (code[i7] === '"' && code[i7 - 1] !== "\\") {
|
|
85723
|
-
insideString = false;
|
|
85724
|
-
}
|
|
85725
|
-
result.push(code[i7]);
|
|
85726
|
-
} else if (insideSingleLineComment) {
|
|
85727
|
-
if (code[i7] === "\n") {
|
|
85728
|
-
insideSingleLineComment = false;
|
|
85729
|
-
result.push("\n");
|
|
85730
|
-
} else {
|
|
85731
|
-
result.push(" ");
|
|
85732
|
-
}
|
|
85733
|
-
} else if (nestingLevel > 0) {
|
|
85734
|
-
if (code[i7] === "/" && code[i7 + 1] === "*") {
|
|
85735
|
-
nestingLevel++;
|
|
85736
|
-
result.push(" ");
|
|
85737
|
-
i7++;
|
|
85738
|
-
} else if (code[i7] === "*" && code[i7 + 1] === "/") {
|
|
85739
|
-
nestingLevel = Math.max(0, nestingLevel - 1);
|
|
85740
|
-
result.push(" ");
|
|
85741
|
-
i7++;
|
|
85742
|
-
} else {
|
|
85743
|
-
result.push(code[i7] === "\n" ? "\n" : " ");
|
|
85744
|
-
}
|
|
85745
|
-
} else {
|
|
85746
|
-
if (!insideString && code[i7] === '"' && (code[i7 - 1] !== "'" || code[i7 + 1] !== "'")) {
|
|
85747
|
-
insideString = true;
|
|
85748
|
-
result.push(code[i7]);
|
|
85749
|
-
} else if (!insideString && code[i7] === "/" && code[i7 + 1] === "/") {
|
|
85750
|
-
insideSingleLineComment = true;
|
|
85751
|
-
result.push(" ");
|
|
85752
|
-
i7++;
|
|
85753
|
-
} else if (!insideString && code[i7] === "/" && code[i7 + 1] === "*") {
|
|
85754
|
-
nestingLevel++;
|
|
85755
|
-
result.push(" ");
|
|
85756
|
-
i7++;
|
|
85757
|
-
} else {
|
|
85758
|
-
result.push(code[i7]);
|
|
85759
|
-
}
|
|
85760
|
-
}
|
|
85761
|
-
i7++;
|
|
85762
|
-
}
|
|
85763
|
-
return result.join("");
|
|
85764
|
-
}
|
|
85765
|
-
function stripCStyleBlocksDirectional2(code, startIndex, direction) {
|
|
85766
|
-
const result = [];
|
|
85767
|
-
let insideString = false;
|
|
85768
|
-
let nestingLevel = 0;
|
|
85769
|
-
for (let i7 = startIndex; i7 >= 0 && i7 < code.length; i7 += direction) {
|
|
85770
|
-
if (insideString) {
|
|
85771
|
-
if (code[i7] === '"' && code[i7 - 1] !== "\\") {
|
|
85772
|
-
insideString = false;
|
|
85773
|
-
}
|
|
85774
|
-
result.push(code[i7]);
|
|
85775
|
-
} else if (nestingLevel > 0) {
|
|
85776
|
-
if (code[i7] === "{") {
|
|
85777
|
-
nestingLevel = Math.max(0, nestingLevel + direction);
|
|
85778
|
-
result.push(" ");
|
|
85779
|
-
} else if (code[i7] === "}") {
|
|
85780
|
-
nestingLevel = Math.max(0, nestingLevel - direction);
|
|
85781
|
-
result.push(" ");
|
|
85782
|
-
} else {
|
|
85783
|
-
result.push(code[i7] === "\n" ? "\n" : " ");
|
|
85784
|
-
}
|
|
85785
|
-
} else {
|
|
85786
|
-
if (!insideString && code[i7] === '"' && (code[i7 - 1] !== "'" || code[i7 + 1] !== "'")) {
|
|
85787
|
-
insideString = true;
|
|
85788
|
-
result.push(code[i7]);
|
|
85789
|
-
} else if (!insideString && code[i7] === "{") {
|
|
85790
|
-
nestingLevel = Math.max(0, nestingLevel + direction);
|
|
85791
|
-
result.push(" ");
|
|
85792
|
-
} else {
|
|
85793
|
-
result.push(code[i7]);
|
|
85794
|
-
}
|
|
85795
|
-
}
|
|
85796
|
-
}
|
|
85797
|
-
return direction > 0 ? replaceRange2(code, startIndex, code.length, result.join("")) : replaceRange2(code, 0, startIndex + 1, result.reverse().join(""));
|
|
85798
|
-
}
|
|
85799
|
-
function stripCStyleBlocks2(code, low, high, alsoStripComments = true) {
|
|
85800
|
-
if (alsoStripComments) {
|
|
85801
|
-
code = stripCStyleComments4(code);
|
|
85802
|
-
}
|
|
85803
|
-
const codeWithoutBlocksBackwards = stripCStyleBlocksDirectional2(code, low, -1);
|
|
85804
|
-
return stripCStyleBlocksDirectional2(codeWithoutBlocksBackwards, high, 1);
|
|
85805
|
-
}
|
|
85806
|
-
}
|
|
85807
|
-
});
|
|
85808
|
-
|
|
85809
85809
|
// ../web-compat-utils/dist/util-formatter.js
|
|
85810
85810
|
var require_util_formatter = __commonJS({
|
|
85811
85811
|
"../web-compat-utils/dist/util-formatter.js"(exports2) {
|
|
@@ -184434,10 +184434,11 @@ import { existsSync as existsSync7 } from "fs";
|
|
|
184434
184434
|
import { execFileSync } from "child_process";
|
|
184435
184435
|
|
|
184436
184436
|
// ../docker-management/src/constants.ts
|
|
184437
|
-
var import_lodash3 = __toESM(require_lodash());
|
|
184438
|
-
var import_constants = __toESM(require_constants6());
|
|
184437
|
+
var import_lodash3 = __toESM(require_lodash(), 1);
|
|
184438
|
+
var import_constants = __toESM(require_constants6(), 1);
|
|
184439
184439
|
import { resolve as resolve11 } from "path";
|
|
184440
|
-
var
|
|
184440
|
+
var { once: once2 } = import_lodash3.default;
|
|
184441
|
+
var DOCKERFILES_ROOT = once2(() => {
|
|
184441
184442
|
return resolve11((0, import_constants.COANA_ROOT)(), "packages", "docker-management", "docker");
|
|
184442
184443
|
});
|
|
184443
184444
|
var REPOSITORY = process.env.DOCKER_REPOSITORY ?? "coanapublic.azurecr.io";
|
|
@@ -184556,11 +184557,13 @@ function getAllReachabilityAnalyzerSpecs() {
|
|
|
184556
184557
|
}
|
|
184557
184558
|
|
|
184558
184559
|
// ../docker-management/src/maven/gradle-version-detector.ts
|
|
184560
|
+
var import_code_cleaning_utils2 = __toESM(require_code_cleaning_utils(), 1);
|
|
184561
|
+
var import_comparable_version4 = __toESM(require_comparable_version(), 1);
|
|
184559
184562
|
import { existsSync as existsSync5, readFileSync as readFileSync3 } from "fs";
|
|
184560
184563
|
import { basename as basename2, join as join5 } from "path";
|
|
184561
184564
|
|
|
184562
184565
|
// ../docker-management/src/maven/jdk-constants.ts
|
|
184563
|
-
var import_comparable_version3 = __toESM(require_comparable_version());
|
|
184566
|
+
var import_comparable_version3 = __toESM(require_comparable_version(), 1);
|
|
184564
184567
|
var MINIMUM_JDK = new import_comparable_version3.ComparableVersion("8");
|
|
184565
184568
|
var MAXIMUM_JDK = new import_comparable_version3.ComparableVersion("23");
|
|
184566
184569
|
var DEFAULT_JDK = new import_comparable_version3.ComparableVersion("21");
|
|
@@ -184591,12 +184594,8 @@ var SBT_TO_JDK_COMPATIBILITY_MATRIX = {
|
|
|
184591
184594
|
"1.9.0": new import_comparable_version3.ComparableVersion("21")
|
|
184592
184595
|
};
|
|
184593
184596
|
|
|
184594
|
-
// ../docker-management/src/maven/gradle-version-detector.ts
|
|
184595
|
-
var import_code_cleaning_utils2 = __toESM(require_code_cleaning_utils());
|
|
184596
|
-
var import_comparable_version4 = __toESM(require_comparable_version());
|
|
184597
|
-
|
|
184598
184597
|
// ../docker-management/src/maven/utils.ts
|
|
184599
|
-
var import_logger_singleton6 = __toESM(require_logger_singleton());
|
|
184598
|
+
var import_logger_singleton6 = __toESM(require_logger_singleton(), 1);
|
|
184600
184599
|
function sanitizeJvmVariant(packageManagerName, projectDir, detected, defaultVersion) {
|
|
184601
184600
|
if (!detected) {
|
|
184602
184601
|
import_logger_singleton6.logger.warn(`could not detect jdk version for ${packageManagerName} project ${projectDir}`);
|
|
@@ -184709,11 +184708,11 @@ function isKotlinProjectKotlin(fileContent) {
|
|
|
184709
184708
|
}
|
|
184710
184709
|
|
|
184711
184710
|
// ../docker-management/src/maven/maven-version-detector.ts
|
|
184712
|
-
var import_fast_xml_parser = __toESM(require_fxp());
|
|
184713
|
-
|
|
184711
|
+
var import_fast_xml_parser = __toESM(require_fxp(), 1);
|
|
184712
|
+
var import_comparable_version5 = __toESM(require_comparable_version(), 1);
|
|
184713
|
+
import { mkdtempSync, readFileSync as readFileSync4, writeFileSync as writeFileSync2 } from "fs";
|
|
184714
184714
|
import { tmpdir } from "os";
|
|
184715
184715
|
import { dirname as dirname3, join as join6, resolve as resolve12 } from "path";
|
|
184716
|
-
var import_comparable_version5 = __toESM(require_comparable_version());
|
|
184717
184716
|
async function detectVariantMaven(projectDir) {
|
|
184718
184717
|
return sanitizeJvmVariant("MAVEN", projectDir, await detect2(projectDir));
|
|
184719
184718
|
}
|
|
@@ -184815,10 +184814,10 @@ async function getDirectoryWithPom(groupId, artifactId, version3) {
|
|
|
184815
184814
|
}
|
|
184816
184815
|
|
|
184817
184816
|
// ../docker-management/src/maven/sbt-version-detector.ts
|
|
184818
|
-
|
|
184817
|
+
var import_code_cleaning_utils3 = __toESM(require_code_cleaning_utils(), 1);
|
|
184818
|
+
var import_comparable_version6 = __toESM(require_comparable_version(), 1);
|
|
184819
|
+
import { existsSync as existsSync6, readdirSync as readdirSync3, readFileSync as readFileSync5, statSync as statSync2 } from "fs";
|
|
184819
184820
|
import { join as join7, resolve as resolve13 } from "path";
|
|
184820
|
-
var import_code_cleaning_utils3 = __toESM(require_code_cleaning_utils());
|
|
184821
|
-
var import_comparable_version6 = __toESM(require_comparable_version());
|
|
184822
184821
|
async function detectVariantSbt(projectDir) {
|
|
184823
184822
|
return sanitizeJvmVariant("SBT", projectDir, await detect3(projectDir), DEFAULT_SCALA_JDK);
|
|
184824
184823
|
}
|
|
@@ -184964,7 +184963,7 @@ async function findReachabilityAnalyzersDockerImage(ecosystem) {
|
|
|
184964
184963
|
}
|
|
184965
184964
|
|
|
184966
184965
|
// ../other-modules-communicator/src/other-modules-communicator.ts
|
|
184967
|
-
var import_lodash7 = __toESM(require_lodash());
|
|
184966
|
+
var import_lodash7 = __toESM(require_lodash(), 1);
|
|
184968
184967
|
import { rmSync } from "fs";
|
|
184969
184968
|
import { mkdir, readFile as readFile8, writeFile as writeFile8 } from "fs/promises";
|
|
184970
184969
|
import { platform } from "os";
|
|
@@ -185058,16 +185057,16 @@ function v4(options, buf, offset) {
|
|
|
185058
185057
|
var v4_default = v4;
|
|
185059
185058
|
|
|
185060
185059
|
// ../other-modules-communicator/src/other-modules-communicator.ts
|
|
185061
|
-
var import_ecosystem_support2 = __toESM(require_ecosystem_support());
|
|
185062
|
-
var import_logger_singleton7 = __toESM(require_logger_singleton());
|
|
185060
|
+
var import_ecosystem_support2 = __toESM(require_ecosystem_support(), 1);
|
|
185061
|
+
var import_logger_singleton7 = __toESM(require_logger_singleton(), 1);
|
|
185063
185062
|
|
|
185064
185063
|
// ../other-modules-communicator/src/constants.ts
|
|
185065
|
-
var import_lodash6 = __toESM(require_lodash());
|
|
185064
|
+
var import_lodash6 = __toESM(require_lodash(), 1);
|
|
185066
185065
|
import { resolve as resolve16 } from "path";
|
|
185067
185066
|
|
|
185068
185067
|
// ../utils/src/constants.ts
|
|
185069
|
-
import { resolve as resolve15 } from "path";
|
|
185070
185068
|
var import_lodash5 = __toESM(require_lodash());
|
|
185069
|
+
import { resolve as resolve15 } from "path";
|
|
185071
185070
|
var COANA_ROOT2 = (0, import_lodash5.once)(() => {
|
|
185072
185071
|
const coanaRoot = process.env.COANA_ROOT ?? findParent(__dirname, (d2) => ["coana-package-manager", "coana"].includes(d2));
|
|
185073
185072
|
if (!coanaRoot) {
|
|
@@ -185081,10 +185080,11 @@ var COANA_REPOS_PATH = (0, import_lodash5.once)(() => {
|
|
|
185081
185080
|
var REQUIREMENTS_FILES_SEARCH_DEPTH = 2;
|
|
185082
185081
|
|
|
185083
185082
|
// ../other-modules-communicator/src/constants.ts
|
|
185084
|
-
var
|
|
185083
|
+
var { once: once4 } = import_lodash6.default;
|
|
185084
|
+
var PACKAGE_MANAGER_SCRIPT_PATH = once4(() => {
|
|
185085
185085
|
return process.env.PACKAGE_MANAGER_SCRIPT_PATH ?? resolve16(COANA_ROOT2(), "packages", "package-management", "dist", "package-management-cli.js");
|
|
185086
185086
|
});
|
|
185087
|
-
var REACHABILITY_ANALYZERS_SCRIPT_PATH = (
|
|
185087
|
+
var REACHABILITY_ANALYZERS_SCRIPT_PATH = once4(() => {
|
|
185088
185088
|
return process.env.REACHABILITY_ANALYZERS_SCRIPT_PATH ?? resolve16(COANA_ROOT2(), "packages", "reachability-analyzers", "dist", "reachability-analyzers-cli.js");
|
|
185089
185089
|
});
|
|
185090
185090
|
var DOCKER_ENV_WHITE_LIST = [
|
|
@@ -185099,7 +185099,8 @@ var DOCKER_ENV_WHITE_LIST = [
|
|
|
185099
185099
|
];
|
|
185100
185100
|
|
|
185101
185101
|
// ../other-modules-communicator/src/other-modules-communicator.ts
|
|
185102
|
-
var
|
|
185102
|
+
var { memoize, once: once5 } = import_lodash7.default;
|
|
185103
|
+
var pullDockerImage = memoize(async (image) => {
|
|
185103
185104
|
const { error, stderr } = await execNeverFail(["docker", "pull", image]);
|
|
185104
185105
|
if (error) {
|
|
185105
185106
|
if (stderr?.includes("Cannot connect"))
|
|
@@ -185117,7 +185118,7 @@ var OtherModulesCommunicator = class {
|
|
|
185117
185118
|
this.apiKey = apiKey;
|
|
185118
185119
|
}
|
|
185119
185120
|
// Memoize temporary directory per subprojectPath
|
|
185120
|
-
getTmpDirForSubproject =
|
|
185121
|
+
getTmpDirForSubproject = memoize(
|
|
185121
185122
|
async (_subprojectPath) => createTmpDirectory(`coana-other-modules-communicator`)
|
|
185122
185123
|
);
|
|
185123
185124
|
getSpinnerTextForPackageManagerCommand(cmd, packageManagerName, subprojectPath) {
|
|
@@ -185154,7 +185155,7 @@ var OtherModulesCommunicator = class {
|
|
|
185154
185155
|
return this.options.runWithoutDocker ? subprojectPath : posix2.resolve("/project", relative5(this.rootWorkingDir, subprojectPath).replaceAll(sep3, posix2.sep));
|
|
185155
185156
|
}
|
|
185156
185157
|
// options shared between package-management and reachability-analyzers
|
|
185157
|
-
commonOptions = (
|
|
185158
|
+
commonOptions = once5(
|
|
185158
185159
|
() => argt`${this.options.debug && "--debug"} ${this.options.silent && "--silent"}
|
|
185159
185160
|
--coana-log-path=${this.options.runWithoutDocker ? this.options.coanaLogPath : LOG_PATH_IN_DOCKER} --silent-spinner`
|
|
185160
185161
|
);
|
|
@@ -185353,14 +185354,14 @@ var OtherModulesCommunicator = class {
|
|
|
185353
185354
|
);
|
|
185354
185355
|
}
|
|
185355
185356
|
};
|
|
185356
|
-
var setUpGoModuleCache = (
|
|
185357
|
+
var setUpGoModuleCache = once5(async () => {
|
|
185357
185358
|
const { stdout, error } = await execNeverFail("go env GOMODCACHE");
|
|
185358
185359
|
if (error ?? !await exists(stdout.trim()))
|
|
185359
185360
|
return;
|
|
185360
185361
|
if (platform() !== "linux") return stdout.trim();
|
|
185361
185362
|
const tmpDir = await createTmpDirectory("coana-go-module-cache-");
|
|
185362
185363
|
let volume;
|
|
185363
|
-
const cleanup = (
|
|
185364
|
+
const cleanup = once5(() => {
|
|
185364
185365
|
if (volume !== void 0)
|
|
185365
185366
|
try {
|
|
185366
185367
|
execFileSync("docker", ["volume", "rm", volume]);
|
|
@@ -187535,7 +187536,7 @@ async function inferExcludeDirsFromSocketConfig(socketConfigFile) {
|
|
|
187535
187536
|
import { readFile as readFile13 } from "fs/promises";
|
|
187536
187537
|
|
|
187537
187538
|
// ../security-auditor/security-auditor-builder/src/mongo-connection.ts
|
|
187538
|
-
var import_mongodb = __toESM(require_lib22());
|
|
187539
|
+
var import_mongodb = __toESM(require_lib22(), 1);
|
|
187539
187540
|
function getMongoClient() {
|
|
187540
187541
|
const mongoUri = process.env.MONGO_URI;
|
|
187541
187542
|
if (!mongoUri) {
|
|
@@ -201409,7 +201410,7 @@ var InMemoryPackageMetadataStore = class {
|
|
|
201409
201410
|
};
|
|
201410
201411
|
|
|
201411
201412
|
// ../security-auditor/security-auditor-builder/src/vulnerability-collection-builder.ts
|
|
201412
|
-
var import_octokit = __toESM(require_dist_node33());
|
|
201413
|
+
var import_octokit = __toESM(require_dist_node33(), 1);
|
|
201413
201414
|
|
|
201414
201415
|
// ../utils/src/slack.ts
|
|
201415
201416
|
var import_web_api = __toESM(require_dist15());
|
|
@@ -202369,7 +202370,7 @@ async function onlineScan(dependencyTree, apiKey, timeout) {
|
|
|
202369
202370
|
}
|
|
202370
202371
|
|
|
202371
202372
|
// dist/version.js
|
|
202372
|
-
var version2 = "14.6.
|
|
202373
|
+
var version2 = "14.6.13";
|
|
202373
202374
|
|
|
202374
202375
|
// dist/cli-core.js
|
|
202375
202376
|
var { omit, partition, pick } = import_lodash12.default;
|