8000 Rename `@microsoft/ts-command-line` to `@rushstack/ts-command-line` e… · JavaScriptExpert/rushstack@fc791bb · GitHub
[go: up one dir, main page]

Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

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';

apps/rush-buildxl/src/cli/actions/CleanAction.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
// See LICENSE in the project root for license information.
33

44
import * as path from 'path';
5-
import { CommandLineAction } from '@microsoft/ts-command-line';
5+
import { CommandLineAction } from '@rushstack/ts-command-line';
66
import {
77
Terminal,
88
FileSystem

apps/rush-buildxl/src/cli/actions/GenerateAction.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 { CommandLineAction } from '@microsoft/ts-command-line';
4+
import { CommandLineAction } from '@rushstack/ts-command-line';
55
import { Terminal } from '@rushstack/node-core-library';
66
import { RushConfiguration } from '@microsoft/rush-lib';
77

apps/rush-lib/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
"@rushstack/node-core-library": "3.19.3",
2222
"@rushstack/package-deps-hash": "2.4.4",
2323
"@rushstack/stream-collator": "3.2.4",
24-
"@microsoft/ts-command-line": "4.3.10",
24+
"@rushstack/ts-command-line": "4.3.10",
2525
"@pnpm/link-bins": "~5.1.0",
2626
"@yarnpkg/lockfile": "~1.0.2",
2727
"builtin-modules": "~3.1.0",

apps/rush-lib/src/api/Variants.ts

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

22
import {
33
ICommandLineStringDefinition
4-
} from '@microsoft/ts-command-line';
4+
} from '@rushstack/ts-command-line';
55

66
/**
77
* Namespace for utilities relating to the Variants feature.

apps/rush-lib/src/cli/RushCommandLineParser.ts

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

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

1111
import { RushConfiguration } from '../api/RushConfiguration';

apps/rush-lib/src/cli/actions/AddAction.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import * as semver from 'semver';
77
import {
88
CommandLineFlagParameter,
99
CommandLineStringParameter
10-
} from '@microsoft/ts-command-line';
10+
} from '@rushstack/ts-command-line';
1111

1212
import { RushConfigurationProject } from '../../api/RushConfigurationProject';
1313
import { BaseRushAction } from './BaseRushAction';

apps/rush-lib/src/cli/actions/BaseInstallAction.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import {
88
CommandLineFlagParameter,
99
CommandLineIntegerParameter,
1010
CommandLineStringParameter
11-
} from '@microsoft/ts-command-line';
11+
} from '@rushstack/ts-command-line';
1212

1313
import { BaseRushAction } from './BaseRushAction';
1414
import { Event } from '../../api/EventHooks';

apps/rush-lib/src/cli/actions/BaseRushAction.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import * as path from 'path';
88
import {
99
CommandLineAction,
1010
ICommandL 10000 ineActionOptions
11-
} from '@microsoft/ts-command-line';
11+
} from '@rushstack/ts-command-line';
1212

1313
import { LockFile } from '@rushstack/node-core-library';
1414

apps/rush-lib/src/cli/actions/ChangeAction.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ import {
1111
CommandLineFlagParameter,
1212
CommandLineStringParameter,
1313
CommandLineChoiceParameter
14-
} from '@microsoft/ts-command-line';
14+
} from '@rushstack/ts-command-line';
1515
import {
1616
FileSystem,
1717
Path

apps/rush-lib/src/cli/actions/CheckAction.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import * as colors from 'colors';
55
import {
66
CommandLineStringParameter,
77
CommandLineFlagParameter
8-
} from '@microsoft/ts-command-line';
8+
} from '@rushstack/ts-command-line';
99

1010
import { RushCommandLineParser } from '../RushCommandLineParser';
1111
import { BaseRushAction } from './BaseRushAction';

apps/rush-lib/src/cli/actions/InitAction.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ import { RushCommandLineParser } from '../RushCommandLineParser';
1010
import { BaseConfiglessRushAction } from './BaseRushAction';
1111
import { AlreadyReportedError } from '../../utilities/AlreadyReportedError';
1212
import { FileSystem, NewlineKind, InternalError } from '@rushstack/node-core-library';
13-
import { CommandLineFlagParameter } from '@microsoft/ts-command-line';
13+
import { CommandLineFlagParameter } from '@rushstack/ts-command-line';
1414
import { Rush } from '../../api/Rush';
1515

1616
export class InitAction extends BaseConfiglessRushAction {

apps/rush-lib/src/cli/actions/LinkAction.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 { CommandLineFlagParameter } from '@microsoft/ts-command-line';
4+
import { CommandLineFlagParameter } from '@rushstack/ts-command-line';
55

66
import { RushCommandLineParser } from '../RushCommandLineParser';
77
import { LinkManagerFactory } from '../../logic/LinkManagerFactory';

apps/rush-lib/src/cli/actions/ListAction.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import { BaseRushAction } from './BaseRushAction';
22
import { RushCommandLineParser } from '../RushCommandLineParser';
3-
import { CommandLineFlagParameter } from '@microsoft/ts-command-line';
3+
import { CommandLineFlagParameter } from '@rushstack/ts-command-line';
44
import { RushConfigurationProject } from '../../api/RushConfigurationProject';
55
import * as Table from 'cli-table';
66

apps/rush-lib/src/cli/actions/PublishAction.ts

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

1414
import {

apps/rush-lib/src/cli/actions/PurgeAction.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 { CommandLineFlagParameter } from '@microsoft/ts-command-line';
7+
import { CommandLineFlagParameter } from '@rushstack/ts-command-line';
88

99
import { BaseRushAction } from './BaseRushAction';
1010
import { RushCommandLineParser } from '../RushCommandLineParser';

apps/rush-lib/src/cli/actions/UpdateAction.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 { CommandLineFlagParameter } from '@microsoft/ts-command-line';
4+
import { CommandLineFlagParameter } from '@rushstack/ts-command-line';
55

66
import { BaseInstallAction } from './BaseInstallAction';
77
import { IInstallManagerOptions } from '../../logic/InstallManager';

apps/rush-lib/src/cli/actions/VersionAction.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ import {
99
import {
1010
CommandLineFlagParameter,
1111
CommandLineStringParameter
12-
} from '@microsoft/ts-command-line';
12+
} from '@rushstack/ts-command-line';
1313

1414
import { BumpType, LockStepVersionPolicy } from '../../api/VersionPolicy';
1515
import { VersionPolicyConfiguration } from '../../api/VersionPolicyConfiguration';

apps/rush-lib/src/cli/scriptActions/BaseScriptAction.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 { CommandLineParameter } from '@microsoft/ts-command-line';
4+
import { CommandLineParameter } from '@rushstack/ts-command-line';
55
import { BaseRushAction, IBaseRushActionOptions } from '../actions/BaseRushAction';
66
import { CommandLineConfiguration } from '../../api/CommandLineConfiguration';
77
import { RushConstants } from '../../logic/RushConstants';

apps/rush-lib/src/cli/scriptActions/BulkScriptAction.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ import {
1313
CommandLineStringParameter,
1414
CommandLineStringListParameter,
1515
CommandLineParameterKind
16-
} from '@microsoft/ts-command-line';
16+
} from '@rushstack/ts-command-line';
1717

1818
import { SetupChecks } from '../../logic/SetupChecks';
1919
import { TaskSelector } from '../../logic/TaskSelector';

common/config/rush/nonbrowser-approved-packages.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,7 @@
135135
"allowedCategories": [ "tests" ]
136136
},
137137
{
138-
"name": "@microsoft/ts-command-line",
138+
"name": "@rushstack/ts-command-line",
139139
"allowedCategories": [ "libraries" ]
140140
},
141141
{

common/config/rush/pnpm-lock.yaml

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

common/reviews/api/ts-command-line.api.md

Lines changed: 1 addition & 1 deletion

libraries/ts-command-line/LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
@microsoft/ts-command-line
1+
@rushstack/ts-command-line
22

33
Copyright (c) Microsoft Corporation. All rights reserved.
44

libraries/ts-command-line/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"name": "@microsoft/ts-command-line",
2+
"name": "@rushstack/ts-command-line",
33
"version": "4.3.10",
44
"description": "An object-oriented command-line parser for TypeScript",
55
"repository": {

repo-scripts/repo-toolbox/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
"dependencies": {
1212
"@rushstack/node-core-library": "3.19.3",
1313
"@microsoft/rush-lib": "5.21.0",
14-
"@microsoft/ts-command-line": "4.3.10"
14+
"@rushstack/ts-command-line": "4.3.10"
1515
},
1616
"devDependencies": {
1717
"@microsoft/rush-stack-compiler-3.5": "0.4.3",

repo-scripts/repo-toolbox/src/ReadmeAction.ts

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

99
export class ReadmeAction extends CommandLineAction {
1010
public constructor() {

repo-scripts/repo-toolbox/src/ToolboxCommandLine.ts

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

44
import {
55
CommandLineParser
6-
} from '@microsoft/ts-command-line';
6+
} from '@rushstack/ts-command-line';
77
import { ReadmeAction } from './ReadmeAction';
88

99
export class ToolboxCommandLine extends CommandLineParser {

rush.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -680,7 +680,7 @@
680680
"shouldPublish": true
681681
},
682682
{
683-
"packageName": "@microsoft/ts-command-line",
683+
"packageName": "@rushstack/ts-command-line",
684684
"projectFolder": "libraries/ts-command-line",
685685
"reviewCategory": "libraries",
686686
"shouldPublish": true,

stack/rush-stack/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
},
2727
"dependencies": {
2828
"@rushstack/node-core-library": "3.19.3",
29-
"@microsoft/ts-command-line": "4.3.10",
29+
"@rushstack/ts-command-line": "4.3.10",
3030
"colors": "~1.2.1"
3131
},
3232
"devDependencies": {

stack/rush-stack/src/cli/BuildAction.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 { CommandLineAction } from '@microsoft/ts-command-line';
4+
import { CommandLineAction } from '@rushstack/ts-command-line';
55
import { RushStackCommandLine } from './RushStackCommandLine';
66
import { BasicTasks } from '../logic/BasicTasks';
77
import { BuildContext } from '../logic/BuildContext';

stack/rush-stack/src/cli/CleanAction.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 { CommandLineAction } from '@microsoft/ts-command-line';
4+
import { CommandLineAction } from '@rushstack/ts-command-line';
55
import { RushStackCommandLine } from './RushStackCommandLine';
66
import { BasicTasks } from '../logic/BasicTasks';
77
import { BuildContext } from '../logic/BuildContext';

stack/rush-stack/src/cli/RushStackCommandLine.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

66
import { BuildAction } from './BuildAction';
77
import { CleanAction } from './CleanAction';

0 commit comments

Comments
 (0)
2A9B
0