mirror of
https://github.com/swc-project/swc.git
synced 2024-12-21 12:41:54 +03:00
1178686a4c
swc_bundler: - Fix remapping of exports. (denoland/deno#9350)
19 lines
507 B
TypeScript
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.' );
|
|
} );
|
|
}
|
|
}
|