Hans de7ec84872 feat(@angular/cli): add --helpJson (or --help-json) too all commands
And other refactors.

The interface for the JSON is available in command.ts (the CommandDescription).
2018-09-06 07:37:48 -07:00

29 lines
786 B
TypeScript

/**
* @license
* Copyright Google Inc. All Rights Reserved.
*
* Use of this source code is governed by an MIT-style license that can be
* found in the LICENSE file at https://angular.io/license
*/
import { BaseCommandOptions, Command } from '../models/command';
const opn = require('opn');
export interface DocCommandOptions extends BaseCommandOptions {
keyword: string;
search?: boolean;
}
export class DocCommand<T extends DocCommandOptions = DocCommandOptions> extends Command<T> {
public async run(options: T) {
let searchUrl = `https://angular.io/api?query=${options.keyword}`;
if (options.search) {
searchUrl = `https://www.google.com/search?q=site%3Aangular.io+${options.keyword}`;
}
return opn(searchUrl, {
wait: false,
});
}
}