|
9 | 9 | import { logging } from '@angular-devkit/core';
|
10 | 10 | import yargs from 'yargs';
|
11 | 11 | import { Parser } from 'yargs/helpers';
|
12 |
| -import { AddCommandModule } from '../../commands/add/cli'; |
13 |
| -import { AnalyticsCommandModule } from '../../commands/analytics/cli'; |
14 |
| -import { BuildCommandModule } from '../../commands/build/cli'; |
15 |
| -import { ConfigCommandModule } from '../../commands/config/cli'; |
16 |
| -import { DeployCommandModule } from '../../commands/deploy/cli'; |
17 |
| -import { DocCommandModule } from '../../commands/doc/cli'; |
18 |
| -import { E2eCommandModule } from '../../commands/e2e/cli'; |
19 |
| -import { ExtractI18nCommandModule } from '../../commands/extract-i18n/cli'; |
20 |
| -import { GenerateCommandModule } from '../../commands/generate/cli'; |
21 |
| -import { LintCommandModule } from '../../commands/lint/cli'; |
22 |
| -import { AwesomeCommandModule } from '../../commands/make-this-awesome/cli'; |
23 |
| -import { NewCommandModule } from '../../commands/new/cli'; |
24 |
| -import { RunCommandModule } from '../../commands/run/cli'; |
25 |
| -import { ServeCommandModule } from '../../commands/serve/cli'; |
26 |
| -import { TestCommandModule } from '../../commands/test/cli'; |
27 |
| -import { UpdateCommandModule } from '../../commands/update/cli'; |
28 |
| -import { VersionCommandModule } from '../../commands/version/cli'; |
29 |
| -import { colors } from '../../utilities/color'; |
30 |
| -import { |
31 |
| - CommandContext, |
32 |
| - CommandModuleError, |
33 |
| - CommandScope, |
34 |
| -} from '../../utilities/command-builder/command-module'; |
35 |
| -import { jsonHelpUsage } from '../../utilities/command-builder/json-help'; |
36 |
| -import { AngularWorkspace } from '../../utilities/config'; |
| 12 | +import { AddCommandModule } from '../commands/add/cli'; |
| 13 | +import { AnalyticsCommandModule } from '../commands/analytics/cli'; |
| 14 | +import { BuildCommandModule } from '../commands/build/cli'; |
| 15 | +import { ConfigCommandModule } from '../commands/config/cli'; |
| 16 | +import { DeployCommandModule } from '../commands/deploy/cli'; |
| 17 | +import { DocCommandModule } from '../commands/doc/cli'; |
| 18 | +import { E2eCommandModule } from '../commands/e2e/cli'; |
| 19 | +import { ExtractI18nCommandModule } from '../commands/extract-i18n/cli'; |
| 20 | +import { GenerateCommandModule } from '../commands/generate/cli'; |
| 21 | +import { LintCommandModule } from '../commands/lint/cli'; |
| 22 | +import { AwesomeCommandModule } from '../commands/make-this-awesome/cli'; |
| 23 | +import { NewCommandModule } from '../commands/new/cli'; |
| 24 | +import { RunCommandModule } from '../commands/run/cli'; |
| 25 | +import { ServeCommandModule } from '../commands/serve/cli'; |
| 26 | +import { TestCommandModule } from '../commands/test/cli'; |
| 27 | +import { UpdateCommandModule } from '../commands/update/cli'; |
| 28 | +import { VersionCommandModule } from '../commands/version/cli'; |
| 29 | +import { colors } from '../utilities/color'; |
| 30 | +import { AngularWorkspace } from '../utilities/config'; |
| 31 | +import { CommandContext, CommandModuleError, CommandScope } from './command-module'; |
| 32 | +import { jsonHelpUsage } from './utilities/json-help'; |
37 | 33 |
|
38 | 34 | const COMMANDS = [
|
39 | 35 | VersionCommandModule,
|
|
0 commit comments