mirror of
https://github.com/angular/angular-cli.git
synced 2025-05-22 06:41:45 +08:00
18 lines
504 B
TypeScript
18 lines
504 B
TypeScript
import { Command, Option } from '../models/command';
|
|
|
|
export interface Options {
|
|
keyword: string;
|
|
search?: boolean;
|
|
}
|
|
|
|
export default class GetSetCommand extends Command {
|
|
public readonly name = 'getset';
|
|
public readonly description = 'Deprecated in favor of config command.';
|
|
public readonly arguments: string[] = [];
|
|
public readonly options: Option[] = [];
|
|
|
|
public async run(_options: Options) {
|
|
this.logger.warn('get/set have been deprecated in favor of the config command.');
|
|
}
|
|
}
|