@optique/core 0.9.5 → 0.9.6
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/facade.cjs +19 -2
- package/dist/facade.js +19 -2
- package/package.json +1 -1
package/dist/facade.cjs
CHANGED
|
@@ -284,9 +284,26 @@ function combineWithHelpVersion(originalParser, helpParsers, versionParsers, com
|
|
|
284
284
|
completion: require_primitives.constant(false),
|
|
285
285
|
result: originalParser
|
|
286
286
|
}));
|
|
287
|
+
const mainParserIndex = parsers.length - 1;
|
|
287
288
|
if (parsers.length === 1) return parsers[0];
|
|
288
|
-
|
|
289
|
-
|
|
289
|
+
let combined;
|
|
290
|
+
if (parsers.length === 2) combined = require_constructs.longestMatch(parsers[0], parsers[1]);
|
|
291
|
+
else combined = require_constructs.longestMatch(...parsers);
|
|
292
|
+
const topUsage = combined.usage[0];
|
|
293
|
+
if (topUsage?.type === "exclusive" && mainParserIndex > 0) {
|
|
294
|
+
const terms = [...topUsage.terms];
|
|
295
|
+
const [mainTerm] = terms.splice(mainParserIndex, 1);
|
|
296
|
+
const lenientCount = (helpParsers.helpOption ? 1 : 0) + (versionParsers.versionOption ? 1 : 0);
|
|
297
|
+
terms.splice(lenientCount, 0, mainTerm);
|
|
298
|
+
combined = {
|
|
299
|
+
...combined,
|
|
300
|
+
usage: [{
|
|
301
|
+
...topUsage,
|
|
302
|
+
terms
|
|
303
|
+
}]
|
|
304
|
+
};
|
|
305
|
+
}
|
|
306
|
+
return combined;
|
|
290
307
|
}
|
|
291
308
|
/**
|
|
292
309
|
* Classifies the parsing result into a discriminated union for cleaner handling.
|
package/dist/facade.js
CHANGED
|
@@ -284,9 +284,26 @@ function combineWithHelpVersion(originalParser, helpParsers, versionParsers, com
|
|
|
284
284
|
completion: constant(false),
|
|
285
285
|
result: originalParser
|
|
286
286
|
}));
|
|
287
|
+
const mainParserIndex = parsers.length - 1;
|
|
287
288
|
if (parsers.length === 1) return parsers[0];
|
|
288
|
-
|
|
289
|
-
|
|
289
|
+
let combined;
|
|
290
|
+
if (parsers.length === 2) combined = longestMatch(parsers[0], parsers[1]);
|
|
291
|
+
else combined = longestMatch(...parsers);
|
|
292
|
+
const topUsage = combined.usage[0];
|
|
293
|
+
if (topUsage?.type === "exclusive" && mainParserIndex > 0) {
|
|
294
|
+
const terms = [...topUsage.terms];
|
|
295
|
+
const [mainTerm] = terms.splice(mainParserIndex, 1);
|
|
296
|
+
const lenientCount = (helpParsers.helpOption ? 1 : 0) + (versionParsers.versionOption ? 1 : 0);
|
|
297
|
+
terms.splice(lenientCount, 0, mainTerm);
|
|
298
|
+
combined = {
|
|
299
|
+
...combined,
|
|
300
|
+
usage: [{
|
|
301
|
+
...topUsage,
|
|
302
|
+
terms
|
|
303
|
+
}]
|
|
304
|
+
};
|
|
305
|
+
}
|
|
306
|
+
return combined;
|
|
290
307
|
}
|
|
291
308
|
/**
|
|
292
309
|
* Classifies the parsing result into a discriminated union for cleaner handling.
|