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

19 lines
507 B
TypeScript

// Loaded from https://deno.land/x/cliffy@v0.12.1/packages/command/commands/completions/bash.ts
import { Command } from '../../lib/command.ts';
/**
* Generates bash completion code.
*/
export class BashCompletionsCommand extends Command {
public constructor( _cmd?: Command ) {
super();
this.description( 'Generate bash shell completions.' )
.action( () => {
throw new Error( 'Bash completions not supported at this moment.' );
} );
}
}