Skip to content

Commit fc791bb

Browse files
committed
Rename @microsoft/ts-command-line to @rushstack/ts-command-line everywhere
1 parent 80b83b7 commit fc791bb

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

42 files changed

+43
-43
lines changed

apps/api-documenter/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
"dependencies": {
2020
"@microsoft/api-extractor-model": "7.7.7",
2121
"@rushstack/node-core-library": "3.19.3",
22-
"@microsoft/ts-command-line": "4.3.10",
22+
"@rushstack/ts-command-line": "4.3.10",
2323
"@microsoft/tsdoc": "0.12.14",
2424
"colors": "~1.2.1",
2525
"js-yaml": "~3.13.1",

apps/api-documenter/src/cli/ApiDocumenterCommandLine.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
// Copyright (c) Microsoft Corporation. All rights reserved. Licensed under the MIT license.
22
// See LICENSE in the project root for license information.
33

4-
import { CommandLineParser } from '@microsoft/ts-command-line';
4+
import { CommandLineParser } from '@rushstack/ts-command-line';
55
import { MarkdownAction } from './MarkdownAction';
66
import { YamlAction } from './YamlAction';
77
import { GenerateAction } from './GenerateAction';

apps/api-documenter/src/cli/BaseAction.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import * as colors from 'colors';
88
import {
99
CommandLineAction,
1010
CommandLineStringParameter
11-
} from '@microsoft/ts-command-line';
11+
} from '@rushstack/ts-command-line';
1212
import { FileSystem } from '@rushstack/node-core-library';
1313
import {
1414
ApiModel,

apps/api-documenter/src/cli/YamlAction.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
import {
55
CommandLineFlagParameter
6-
} from '@microsoft/ts-command-line';
6+
} from '@rushstack/ts-command-line';
77

88
import { ApiDocumenterCommandLine } from './ApiDocumenterCommandLine';
99
import { BaseAction } from './BaseAction';

apps/api-extractor/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434
"dependencies": {
3535
"@microsoft/api-extractor-model": "7.7.7",
3636
"@rushstack/node-core-library": "3.19.3",
37-
"@microsoft/ts-command-line": "4.3.10",
37+
"@rushstack/ts-command-line": "4.3.10",
3838
"@microsoft/tsdoc": "0.12.14",
3939
"colors": "~1.2.1",
4040
"lodash": "~4.17.15",

apps/api-extractor/src/cli/ApiExtractorCommandLine.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
import * as colors from 'colors';
55
import * as os from 'os';
66

7-
import { CommandLineParser, CommandLineFlagParameter } from '@microsoft/ts-command-line';
7+
import { CommandLineParser, CommandLineFlagParameter } from '@rushstack/ts-command-line';
88
import { InternalError } from '@rushstack/node-core-library';
99

1010
import { RunAction } from './RunAction';

apps/api-extractor/src/cli/InitAction.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
import * as colors from 'colors';
55
import * as path from 'path';
66
import { FileSystem } from '@rushstack/node-core-library';
7-
import { CommandLineAction } from '@microsoft/ts-command-line';
7+
import { CommandLineAction } from '@rushstack/ts-command-line';
88

99
import { ApiExtractorCommandLine } from './ApiExtractorCommandLine';
1010
import { ExtractorConfig } from '../api/ExtractorConfig';

apps/api-extractor/src/cli/RunAction.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ import {
1414
CommandLineAction,
1515
CommandLineStringParameter,
1616
CommandLineFlagParameter
17-
} from '@microsoft/ts-command-line';
17+
} from '@rushstack/ts-command-line';
1818

1919
import { Extractor, ExtractorResult } from '../api/Extractor';
2020
import { IConfigFile } from '../api/IConfigFile';

apps/rush-buildxl/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
"dependencies": {
2222
"@rushstack/node-core-library": "3.19.3",
2323
"@microsoft/rush-lib": "5.21.0",
24-
"@microsoft/ts-command-line": "4.3.10"
24+
"@rushstack/ts-command-line": "4.3.10"
2525
},
2626
"devDependencies": {
2727
"@microsoft/node-library-build": "6.4.4",

apps/rush-buildxl/src/cli/RushBuildXLCommandLineParser.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
// Copyright (c) Microsoft Corporation. All rights reserved. Licensed under the MIT license.
22
// See LICENSE in the project root for license information.
33

4-
import { CommandLineParser } from '@microsoft/ts-command-line';
4+
import { CommandLineParser } from '@rushstack/ts-command-line';
55
import { Terminal } from '@rushstack/node-core-library';
66

77
import { CleanAction } from './actions/CleanAction';

0 commit comments

Comments
 (0)