swc/bundler/tests/.cache/deno/473fec7cdfecb1bec5d182f2094cb86ed6c3900f.ts
강동윤 1178686a4c
fix(bundler): Fix bundler (#1576)
swc_bundler:
 - Fix remapping of exports. (denoland/deno#9350)
2021-04-16 18:09:38 +00:00

42 lines
1.7 KiB
TypeScript

// Loaded from https://deno.land/x/cliffy@v0.12.1/packages/command/commands/completions/complete.ts
import { encode } from 'https://deno.land/std@0.63.0/encoding/utf8.ts';
import { IFlags } from '../../../flags/lib/types.ts';
import { Command } from '../../lib/command.ts';
import { ICompleteSettings } from '../../lib/types.ts';
/**
* Execute complete method for specific action and command.
*/
export class CompleteCommand extends Command {
public constructor( cmd?: Command ) {
super();
this.description( 'Get completions for given action from given command.' )
.arguments( '<action:action> [command...:command]' )
.action( async ( options: IFlags, action: string, commandNames: string[] ) => {
let parent: Command | undefined;
let completeCommand: Command = commandNames
.reduce( ( cmd: Command, name: string ): Command => {
parent = cmd;
const childCmd: Command | undefined = cmd.getCommand( name, false );
if ( !childCmd ) {
throw new Error( `Auto-completion failed. Command not found: ${ commandNames.join( ' ' ) }` );
}
return childCmd;
}, cmd || this.getMainCommand() );
const completion: ICompleteSettings | undefined = completeCommand.getCompletion( action );
const result: string[] = await completion?.complete( completeCommand, parent ) ?? [];
if ( result?.length ) {
Deno.stdout.writeSync( encode( result.join( ' ' ) ) );
}
} )
.default( 'help' )
.reset();
}
}