@optique/core 0.7.17-dev.396 → 0.7.17-dev.398
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/constructs.cjs +2 -34
- package/dist/constructs.js +1 -33
- package/dist/facade.cjs +2 -2
- package/dist/facade.js +2 -2
- package/dist/primitives.cjs +9 -5
- package/dist/primitives.js +12 -8
- package/dist/usage-internals.cjs +73 -0
- package/dist/usage-internals.js +71 -0
- package/package.json +1 -1
package/dist/constructs.cjs
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
const require_message = require('./message.cjs');
|
|
2
2
|
const require_usage = require('./usage.cjs');
|
|
3
3
|
const require_suggestion = require('./suggestion.cjs');
|
|
4
|
+
const require_usage_internals = require('./usage-internals.cjs');
|
|
4
5
|
|
|
5
6
|
//#region src/constructs.ts
|
|
6
7
|
/**
|
|
@@ -24,43 +25,10 @@ function isOptionRequiringValue(usage, token) {
|
|
|
24
25
|
}
|
|
25
26
|
return traverse(usage);
|
|
26
27
|
}
|
|
27
|
-
function collectLeadingCandidates(terms, optionNames, commandNames) {
|
|
28
|
-
if (!terms || !Array.isArray(terms)) return true;
|
|
29
|
-
for (const term of terms) {
|
|
30
|
-
if (term.type === "option") {
|
|
31
|
-
for (const name of term.names) optionNames.add(name);
|
|
32
|
-
return false;
|
|
33
|
-
}
|
|
34
|
-
if (term.type === "command") {
|
|
35
|
-
commandNames.add(term.name);
|
|
36
|
-
return false;
|
|
37
|
-
}
|
|
38
|
-
if (term.type === "argument") return false;
|
|
39
|
-
if (term.type === "optional") {
|
|
40
|
-
collectLeadingCandidates(term.terms, optionNames, commandNames);
|
|
41
|
-
continue;
|
|
42
|
-
}
|
|
43
|
-
if (term.type === "multiple") {
|
|
44
|
-
collectLeadingCandidates(term.terms, optionNames, commandNames);
|
|
45
|
-
if (term.min === 0) continue;
|
|
46
|
-
return false;
|
|
47
|
-
}
|
|
48
|
-
if (term.type === "exclusive") {
|
|
49
|
-
let allAlternativesSkippable = true;
|
|
50
|
-
for (const exclusiveUsage of term.terms) {
|
|
51
|
-
const alternativeSkippable = collectLeadingCandidates(exclusiveUsage, optionNames, commandNames);
|
|
52
|
-
allAlternativesSkippable = allAlternativesSkippable && alternativeSkippable;
|
|
53
|
-
}
|
|
54
|
-
if (allAlternativesSkippable) continue;
|
|
55
|
-
return false;
|
|
56
|
-
}
|
|
57
|
-
}
|
|
58
|
-
return true;
|
|
59
|
-
}
|
|
60
28
|
function createUnexpectedInputErrorWithScopedSuggestions(baseError, invalidInput, parsers, customFormatter) {
|
|
61
29
|
const options = /* @__PURE__ */ new Set();
|
|
62
30
|
const commands = /* @__PURE__ */ new Set();
|
|
63
|
-
for (const parser of parsers) collectLeadingCandidates(parser.usage, options, commands);
|
|
31
|
+
for (const parser of parsers) require_usage_internals.collectLeadingCandidates(parser.usage, options, commands);
|
|
64
32
|
const candidates = new Set([...options, ...commands]);
|
|
65
33
|
const suggestions = require_suggestion.findSimilar(invalidInput, candidates, require_suggestion.DEFAULT_FIND_SIMILAR_OPTIONS);
|
|
66
34
|
const suggestionMsg = customFormatter ? customFormatter(suggestions) : require_suggestion.createSuggestionMessage(suggestions);
|
package/dist/constructs.js
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { message, optionName, text, values } from "./message.js";
|
|
2
2
|
import { extractArgumentMetavars, extractCommandNames, extractOptionNames } from "./usage.js";
|
|
3
3
|
import { DEFAULT_FIND_SIMILAR_OPTIONS, createErrorWithSuggestions, createSuggestionMessage, findSimilar } from "./suggestion.js";
|
|
4
|
+
import { collectLeadingCandidates } from "./usage-internals.js";
|
|
4
5
|
|
|
5
6
|
//#region src/constructs.ts
|
|
6
7
|
/**
|
|
@@ -24,39 +25,6 @@ function isOptionRequiringValue(usage, token) {
|
|
|
24
25
|
}
|
|
25
26
|
return traverse(usage);
|
|
26
27
|
}
|
|
27
|
-
function collectLeadingCandidates(terms, optionNames, commandNames) {
|
|
28
|
-
if (!terms || !Array.isArray(terms)) return true;
|
|
29
|
-
for (const term of terms) {
|
|
30
|
-
if (term.type === "option") {
|
|
31
|
-
for (const name of term.names) optionNames.add(name);
|
|
32
|
-
return false;
|
|
33
|
-
}
|
|
34
|
-
if (term.type === "command") {
|
|
35
|
-
commandNames.add(term.name);
|
|
36
|
-
return false;
|
|
37
|
-
}
|
|
38
|
-
if (term.type === "argument") return false;
|
|
39
|
-
if (term.type === "optional") {
|
|
40
|
-
collectLeadingCandidates(term.terms, optionNames, commandNames);
|
|
41
|
-
continue;
|
|
42
|
-
}
|
|
43
|
-
if (term.type === "multiple") {
|
|
44
|
-
collectLeadingCandidates(term.terms, optionNames, commandNames);
|
|
45
|
-
if (term.min === 0) continue;
|
|
46
|
-
return false;
|
|
47
|
-
}
|
|
48
|
-
if (term.type === "exclusive") {
|
|
49
|
-
let allAlternativesSkippable = true;
|
|
50
|
-
for (const exclusiveUsage of term.terms) {
|
|
51
|
-
const alternativeSkippable = collectLeadingCandidates(exclusiveUsage, optionNames, commandNames);
|
|
52
|
-
allAlternativesSkippable = allAlternativesSkippable && alternativeSkippable;
|
|
53
|
-
}
|
|
54
|
-
if (allAlternativesSkippable) continue;
|
|
55
|
-
return false;
|
|
56
|
-
}
|
|
57
|
-
}
|
|
58
|
-
return true;
|
|
59
|
-
}
|
|
60
28
|
function createUnexpectedInputErrorWithScopedSuggestions(baseError, invalidInput, parsers, customFormatter) {
|
|
61
29
|
const options = /* @__PURE__ */ new Set();
|
|
62
30
|
const commands = /* @__PURE__ */ new Set();
|
package/dist/facade.cjs
CHANGED
|
@@ -582,8 +582,8 @@ function run(parser, programName, args, options = {}) {
|
|
|
582
582
|
const shouldOverride = !isMetaCommandHelp && !isSubcommandHelp;
|
|
583
583
|
const augmentedDoc = {
|
|
584
584
|
...doc,
|
|
585
|
-
brief: shouldOverride ? brief ?? doc.brief : doc.brief
|
|
586
|
-
description: shouldOverride ? description ?? doc.description : doc.description
|
|
585
|
+
brief: shouldOverride ? brief ?? doc.brief : doc.brief,
|
|
586
|
+
description: shouldOverride ? description ?? doc.description : doc.description,
|
|
587
587
|
footer: shouldOverride ? footer ?? doc.footer : doc.footer ?? footer
|
|
588
588
|
};
|
|
589
589
|
stdout(require_doc.formatDocPage(programName, augmentedDoc, {
|
package/dist/facade.js
CHANGED
|
@@ -582,8 +582,8 @@ function run(parser, programName, args, options = {}) {
|
|
|
582
582
|
const shouldOverride = !isMetaCommandHelp && !isSubcommandHelp;
|
|
583
583
|
const augmentedDoc = {
|
|
584
584
|
...doc,
|
|
585
|
-
brief: shouldOverride ? brief ?? doc.brief : doc.brief
|
|
586
|
-
description: shouldOverride ? description ?? doc.description : doc.description
|
|
585
|
+
brief: shouldOverride ? brief ?? doc.brief : doc.brief,
|
|
586
|
+
description: shouldOverride ? description ?? doc.description : doc.description,
|
|
587
587
|
footer: shouldOverride ? footer ?? doc.footer : doc.footer ?? footer
|
|
588
588
|
};
|
|
589
589
|
stdout(formatDocPage(programName, augmentedDoc, {
|
package/dist/primitives.cjs
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
const require_message = require('./message.cjs');
|
|
2
2
|
const require_usage = require('./usage.cjs');
|
|
3
3
|
const require_suggestion = require('./suggestion.cjs');
|
|
4
|
+
const require_usage_internals = require('./usage-internals.cjs');
|
|
4
5
|
const require_valueparser = require('./valueparser.cjs');
|
|
5
6
|
|
|
6
7
|
//#region src/primitives.ts
|
|
@@ -593,11 +594,10 @@ function command(name, parser, options = {}) {
|
|
|
593
594
|
if (context.state === void 0) {
|
|
594
595
|
if (context.buffer.length < 1 || context.buffer[0] !== name) {
|
|
595
596
|
const actual = context.buffer.length > 0 ? context.buffer[0] : null;
|
|
597
|
+
const leadingCmds = require_usage_internals.extractLeadingCommandNames(context.usage);
|
|
598
|
+
const suggestions = actual ? require_suggestion.findSimilar(actual, leadingCmds, require_suggestion.DEFAULT_FIND_SIMILAR_OPTIONS) : [];
|
|
596
599
|
if (options.errors?.notMatched) {
|
|
597
600
|
const errorMessage = options.errors.notMatched;
|
|
598
|
-
const candidates = /* @__PURE__ */ new Set();
|
|
599
|
-
for (const cmdName of require_usage.extractCommandNames(context.usage)) candidates.add(cmdName);
|
|
600
|
-
const suggestions = actual ? require_suggestion.findSimilar(actual, candidates, require_suggestion.DEFAULT_FIND_SIMILAR_OPTIONS) : [];
|
|
601
601
|
return {
|
|
602
602
|
success: false,
|
|
603
603
|
consumed: 0,
|
|
@@ -610,10 +610,15 @@ function command(name, parser, options = {}) {
|
|
|
610
610
|
error: require_message.message`Expected command ${require_message.optionName(name)}, but got end of input.`
|
|
611
611
|
};
|
|
612
612
|
const baseError = require_message.message`Expected command ${require_message.optionName(name)}, but got ${actual}.`;
|
|
613
|
+
const suggestionMsg = require_suggestion.createSuggestionMessage(suggestions);
|
|
613
614
|
return {
|
|
614
615
|
success: false,
|
|
615
616
|
consumed: 0,
|
|
616
|
-
error:
|
|
617
|
+
error: suggestionMsg.length > 0 ? [
|
|
618
|
+
...baseError,
|
|
619
|
+
require_message.text("\n\n"),
|
|
620
|
+
...suggestionMsg
|
|
621
|
+
] : baseError
|
|
617
622
|
};
|
|
618
623
|
}
|
|
619
624
|
return {
|
|
@@ -725,7 +730,6 @@ function command(name, parser, options = {}) {
|
|
|
725
730
|
const innerFragments = parser.getDocFragments(innerState, defaultValue);
|
|
726
731
|
return {
|
|
727
732
|
...innerFragments,
|
|
728
|
-
brief: innerFragments.brief ?? options.brief,
|
|
729
733
|
description: innerFragments.description ?? options.description,
|
|
730
734
|
footer: innerFragments.footer ?? options.footer
|
|
731
735
|
};
|
package/dist/primitives.js
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
|
-
import { message, metavar, optionName, optionNames } from "./message.js";
|
|
2
|
-
import {
|
|
3
|
-
import { DEFAULT_FIND_SIMILAR_OPTIONS, createErrorWithSuggestions, findSimilar } from "./suggestion.js";
|
|
1
|
+
import { message, metavar, optionName, optionNames, text } from "./message.js";
|
|
2
|
+
import { extractOptionNames } from "./usage.js";
|
|
3
|
+
import { DEFAULT_FIND_SIMILAR_OPTIONS, createErrorWithSuggestions, createSuggestionMessage, findSimilar } from "./suggestion.js";
|
|
4
|
+
import { extractLeadingCommandNames } from "./usage-internals.js";
|
|
4
5
|
import { isValueParser } from "./valueparser.js";
|
|
5
6
|
|
|
6
7
|
//#region src/primitives.ts
|
|
@@ -593,11 +594,10 @@ function command(name, parser, options = {}) {
|
|
|
593
594
|
if (context.state === void 0) {
|
|
594
595
|
if (context.buffer.length < 1 || context.buffer[0] !== name) {
|
|
595
596
|
const actual = context.buffer.length > 0 ? context.buffer[0] : null;
|
|
597
|
+
const leadingCmds = extractLeadingCommandNames(context.usage);
|
|
598
|
+
const suggestions = actual ? findSimilar(actual, leadingCmds, DEFAULT_FIND_SIMILAR_OPTIONS) : [];
|
|
596
599
|
if (options.errors?.notMatched) {
|
|
597
600
|
const errorMessage = options.errors.notMatched;
|
|
598
|
-
const candidates = /* @__PURE__ */ new Set();
|
|
599
|
-
for (const cmdName of extractCommandNames(context.usage)) candidates.add(cmdName);
|
|
600
|
-
const suggestions = actual ? findSimilar(actual, candidates, DEFAULT_FIND_SIMILAR_OPTIONS) : [];
|
|
601
601
|
return {
|
|
602
602
|
success: false,
|
|
603
603
|
consumed: 0,
|
|
@@ -610,10 +610,15 @@ function command(name, parser, options = {}) {
|
|
|
610
610
|
error: message`Expected command ${optionName(name)}, but got end of input.`
|
|
611
611
|
};
|
|
612
612
|
const baseError = message`Expected command ${optionName(name)}, but got ${actual}.`;
|
|
613
|
+
const suggestionMsg = createSuggestionMessage(suggestions);
|
|
613
614
|
return {
|
|
614
615
|
success: false,
|
|
615
616
|
consumed: 0,
|
|
616
|
-
error:
|
|
617
|
+
error: suggestionMsg.length > 0 ? [
|
|
618
|
+
...baseError,
|
|
619
|
+
text("\n\n"),
|
|
620
|
+
...suggestionMsg
|
|
621
|
+
] : baseError
|
|
617
622
|
};
|
|
618
623
|
}
|
|
619
624
|
return {
|
|
@@ -725,7 +730,6 @@ function command(name, parser, options = {}) {
|
|
|
725
730
|
const innerFragments = parser.getDocFragments(innerState, defaultValue);
|
|
726
731
|
return {
|
|
727
732
|
...innerFragments,
|
|
728
|
-
brief: innerFragments.brief ?? options.brief,
|
|
729
733
|
description: innerFragments.description ?? options.description,
|
|
730
734
|
footer: innerFragments.footer ?? options.footer
|
|
731
735
|
};
|
|
@@ -0,0 +1,73 @@
|
|
|
1
|
+
|
|
2
|
+
//#region src/usage-internals.ts
|
|
3
|
+
/**
|
|
4
|
+
* Collects option names and command names that are valid as the *immediate*
|
|
5
|
+
* next token at the current parse position ("leading candidates").
|
|
6
|
+
*
|
|
7
|
+
* Unlike the full-tree extractors in `usage.ts`, this function stops
|
|
8
|
+
* descending into a branch as soon as it hits a required (blocking) term —
|
|
9
|
+
* an option, a command, or a required argument. Optional and zero-or-more
|
|
10
|
+
* terms are traversed but do not block.
|
|
11
|
+
*
|
|
12
|
+
* @param terms The usage terms to inspect.
|
|
13
|
+
* @param optionNames Accumulator for leading option names.
|
|
14
|
+
* @param commandNames Accumulator for leading command names.
|
|
15
|
+
* @returns `true` if every term in `terms` is skippable (i.e., the caller
|
|
16
|
+
* may continue scanning the next sibling term), `false` otherwise.
|
|
17
|
+
*/
|
|
18
|
+
function collectLeadingCandidates(terms, optionNames, commandNames) {
|
|
19
|
+
if (!terms || !Array.isArray(terms)) return true;
|
|
20
|
+
for (const term of terms) {
|
|
21
|
+
if (term.type === "option") {
|
|
22
|
+
for (const name of term.names) optionNames.add(name);
|
|
23
|
+
return false;
|
|
24
|
+
}
|
|
25
|
+
if (term.type === "command") {
|
|
26
|
+
commandNames.add(term.name);
|
|
27
|
+
return false;
|
|
28
|
+
}
|
|
29
|
+
if (term.type === "argument") return false;
|
|
30
|
+
if (term.type === "optional") {
|
|
31
|
+
collectLeadingCandidates(term.terms, optionNames, commandNames);
|
|
32
|
+
continue;
|
|
33
|
+
}
|
|
34
|
+
if (term.type === "multiple") {
|
|
35
|
+
collectLeadingCandidates(term.terms, optionNames, commandNames);
|
|
36
|
+
if (term.min === 0) continue;
|
|
37
|
+
return false;
|
|
38
|
+
}
|
|
39
|
+
if (term.type === "exclusive") {
|
|
40
|
+
let allSkippable = true;
|
|
41
|
+
for (const branch of term.terms) {
|
|
42
|
+
const branchSkippable = collectLeadingCandidates(branch, optionNames, commandNames);
|
|
43
|
+
allSkippable = allSkippable && branchSkippable;
|
|
44
|
+
}
|
|
45
|
+
if (allSkippable) continue;
|
|
46
|
+
return false;
|
|
47
|
+
}
|
|
48
|
+
}
|
|
49
|
+
return true;
|
|
50
|
+
}
|
|
51
|
+
/**
|
|
52
|
+
* Returns the set of command names that are valid as the *immediate* next
|
|
53
|
+
* token, derived from the leading candidates of `usage`.
|
|
54
|
+
*
|
|
55
|
+
* This is the command-only projection of {@link collectLeadingCandidates}
|
|
56
|
+
* and is used to generate accurate "Did you mean?" suggestions in
|
|
57
|
+
* `command()` error messages — suggestions are scoped to commands actually
|
|
58
|
+
* reachable at the current parse position rather than all commands anywhere
|
|
59
|
+
* in the usage tree.
|
|
60
|
+
*
|
|
61
|
+
* @param usage The usage tree to inspect.
|
|
62
|
+
* @returns A `Set` of command names valid as the next input token.
|
|
63
|
+
*/
|
|
64
|
+
function extractLeadingCommandNames(usage) {
|
|
65
|
+
const options = /* @__PURE__ */ new Set();
|
|
66
|
+
const commands = /* @__PURE__ */ new Set();
|
|
67
|
+
collectLeadingCandidates(usage, options, commands);
|
|
68
|
+
return commands;
|
|
69
|
+
}
|
|
70
|
+
|
|
71
|
+
//#endregion
|
|
72
|
+
exports.collectLeadingCandidates = collectLeadingCandidates;
|
|
73
|
+
exports.extractLeadingCommandNames = extractLeadingCommandNames;
|
|
@@ -0,0 +1,71 @@
|
|
|
1
|
+
//#region src/usage-internals.ts
|
|
2
|
+
/**
|
|
3
|
+
* Collects option names and command names that are valid as the *immediate*
|
|
4
|
+
* next token at the current parse position ("leading candidates").
|
|
5
|
+
*
|
|
6
|
+
* Unlike the full-tree extractors in `usage.ts`, this function stops
|
|
7
|
+
* descending into a branch as soon as it hits a required (blocking) term —
|
|
8
|
+
* an option, a command, or a required argument. Optional and zero-or-more
|
|
9
|
+
* terms are traversed but do not block.
|
|
10
|
+
*
|
|
11
|
+
* @param terms The usage terms to inspect.
|
|
12
|
+
* @param optionNames Accumulator for leading option names.
|
|
13
|
+
* @param commandNames Accumulator for leading command names.
|
|
14
|
+
* @returns `true` if every term in `terms` is skippable (i.e., the caller
|
|
15
|
+
* may continue scanning the next sibling term), `false` otherwise.
|
|
16
|
+
*/
|
|
17
|
+
function collectLeadingCandidates(terms, optionNames, commandNames) {
|
|
18
|
+
if (!terms || !Array.isArray(terms)) return true;
|
|
19
|
+
for (const term of terms) {
|
|
20
|
+
if (term.type === "option") {
|
|
21
|
+
for (const name of term.names) optionNames.add(name);
|
|
22
|
+
return false;
|
|
23
|
+
}
|
|
24
|
+
if (term.type === "command") {
|
|
25
|
+
commandNames.add(term.name);
|
|
26
|
+
return false;
|
|
27
|
+
}
|
|
28
|
+
if (term.type === "argument") return false;
|
|
29
|
+
if (term.type === "optional") {
|
|
30
|
+
collectLeadingCandidates(term.terms, optionNames, commandNames);
|
|
31
|
+
continue;
|
|
32
|
+
}
|
|
33
|
+
if (term.type === "multiple") {
|
|
34
|
+
collectLeadingCandidates(term.terms, optionNames, commandNames);
|
|
35
|
+
if (term.min === 0) continue;
|
|
36
|
+
return false;
|
|
37
|
+
}
|
|
38
|
+
if (term.type === "exclusive") {
|
|
39
|
+
let allSkippable = true;
|
|
40
|
+
for (const branch of term.terms) {
|
|
41
|
+
const branchSkippable = collectLeadingCandidates(branch, optionNames, commandNames);
|
|
42
|
+
allSkippable = allSkippable && branchSkippable;
|
|
43
|
+
}
|
|
44
|
+
if (allSkippable) continue;
|
|
45
|
+
return false;
|
|
46
|
+
}
|
|
47
|
+
}
|
|
48
|
+
return true;
|
|
49
|
+
}
|
|
50
|
+
/**
|
|
51
|
+
* Returns the set of command names that are valid as the *immediate* next
|
|
52
|
+
* token, derived from the leading candidates of `usage`.
|
|
53
|
+
*
|
|
54
|
+
* This is the command-only projection of {@link collectLeadingCandidates}
|
|
55
|
+
* and is used to generate accurate "Did you mean?" suggestions in
|
|
56
|
+
* `command()` error messages — suggestions are scoped to commands actually
|
|
57
|
+
* reachable at the current parse position rather than all commands anywhere
|
|
58
|
+
* in the usage tree.
|
|
59
|
+
*
|
|
60
|
+
* @param usage The usage tree to inspect.
|
|
61
|
+
* @returns A `Set` of command names valid as the next input token.
|
|
62
|
+
*/
|
|
63
|
+
function extractLeadingCommandNames(usage) {
|
|
64
|
+
const options = /* @__PURE__ */ new Set();
|
|
65
|
+
const commands = /* @__PURE__ */ new Set();
|
|
66
|
+
collectLeadingCandidates(usage, options, commands);
|
|
67
|
+
return commands;
|
|
68
|
+
}
|
|
69
|
+
|
|
70
|
+
//#endregion
|
|
71
|
+
export { collectLeadingCandidates, extractLeadingCommandNames };
|