We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 41aedf6 commit 75f4237Copy full SHA for 75f4237
src/discovery.ts
@@ -46,8 +46,6 @@ interface YamlCliDefinition {
46
navigateBefore?: boolean | string;
47
}
48
49
-
50
51
function parseStrategy(rawStrategy: string | undefined, fallback: Strategy = Strategy.COOKIE): Strategy {
52
if (!rawStrategy) return fallback;
53
const key = rawStrategy.toUpperCase() as keyof typeof Strategy;
src/execution.ts
@@ -22,7 +22,6 @@ const _loadedModules = new Set<string>();
22
type CommandArgs = Record<string, unknown>;
23
24
25
26
/**
27
* Validates and coerces arguments based on the command's Arg definitions.
28
*/
0 commit comments