We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 98984bf commit 33ec5e7Copy full SHA for 33ec5e7
packages/angular/cli/src/command-builder/command-module.ts
@@ -17,15 +17,11 @@ import {
17
CommandModule as YargsCommandModule,
18
Options as YargsOptions,
19
} from 'yargs';
20
-import { Parser } from 'yargs/helpers';
+import { Parser as yargsParser } from 'yargs/helpers';
21
import { createAnalytics } from '../analytics/analytics';
22
import { AngularWorkspace } from '../utilities/config';
23
import { Option } from './utilities/json-schema';
24
25
-const yargsParser = Parser as unknown as typeof Parser.default & {
26
- camelCase(str: string): string;
27
-};
28
-
29
export type Options<T> = { [key in keyof T as CamelCaseKey<key>]: T[key] };
30
31
export enum CommandScope {
0 commit comments