8000 Rename `@microsoft/stream-collator` to `@rushstack/stream-collator` e… · JavaScriptExpert/rushstack@80b83b7 · GitHub
[go: up one dir, main page]

Skip to content
8000

Commit 80b83b7

Browse files
committed
Rename @microsoft/stream-collator to @rushstack/stream-collator everywhere
1 parent e243cac commit 80b83b7

File tree

15 files changed

+17
-17
lines changed

15 files changed

+17
-17
lines changed

apps/rush-lib/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
"dependencies": {
2121
"@rushstack/node-core-library": "3.19.3",
2222
"@rushstack/package-deps-hash": "2.4.4",
23-
"@microsoft/stream-collator": "3.2.4",
23+
"@rushstack/stream-collator": "3.2.4",
2424
"@microsoft/ts-command-line": "4.3.10",
2525
"@pnpm/link-bins": "~5.1.0",
2626
"@yarnpkg/lockfile": "~1.0.2",

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import './mockRushCommandLineParser';
55

66
import * as path from 'path';
77
import { FileSystem } from '@rushstack/node-core-library';
8-
import { Interleaver } from '@microsoft/stream-collator';
8+
import { Interleaver } from '@rushstack/stream-collator';
99
import { RushCommandLineParser } from '../RushCommandLineParser';
1010

1111
/**

apps/rush-lib/src/logic/taskRunner/ITask.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 { ITaskWriter } from '@microsoft/stream-collator';
4+
import { ITaskWriter } from '@rushstack/stream-collator';
55

66
import { Stopwatch } from '../../utilities/Stopwatch';
77
import { TaskStatus } from './TaskStatus';

apps/rush-lib/src/logic/taskRunner/ProjectTask.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
import * as child_process from 'child_process';
55
import * as path from 'path';
66
import { JsonFile, Text, FileSystem, JsonObject } from '@rushstack/node-core-library';
7-
import { ITaskWriter } from '@microsoft/stream-collator';
7+
import { ITaskWriter } from '@rushstack/stream-collator';
88
import { IPackageDeps } from '@rushstack/package-deps-hash';
99

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

apps/rush-lib/src/logic/taskRunner/TaskRunner.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 os from 'os';
5-
import { Interleaver } from '@microsoft/stream-collator';
5+
import { Interleaver } from '@rushstack/stream-collator';
66
import {
77
Terminal,
88
ConsoleTerminalProvider,

apps/rush-lib/src/logic/taskRunner/test/TaskCollection.test.ts 2364

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import { TaskCollection } from '../TaskCollection';
2-
import { ITaskWriter F438 } from '@microsoft/stream-collator';
2+
import { ITaskWriter } from '@rushstack/stream-collator';
33
import { TaskStatus } from '../TaskStatus';
44
import { ITaskDefinition, ITask } from '../ITask';
55
import { StringBufferTerminalProvider } from '@rushstack/node-core-library';

apps/rush-lib/src/logic/taskRunner/test/TaskRunner.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import { EOL } from 'os';
22
import { TaskRunner, ITaskRunnerOptions } from '../TaskRunner';
3-
import { ITaskWriter } from '@microsoft/stream-collator';
3+
import { ITaskWriter } from '@rushstack/stream-collator';
44
import { TaskStatus } from '../TaskStatus';
55
import { ITaskDefinition, ITask } from '../ITask';
66
import { StringBufferTerminalProvider, Terminal } from '@rushstack/node-core-library';

apps/rush/README.md

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

1818
- **Automatic local linking:** Inside a Rush repo, all your projects are automatically symlinked to each other. When you make a change, you can see the downstream effects without publishing anything, and without any `npm link` headaches. If you don't want certain projects to get linked, that's supported, too.
1919

20-
- **Fast builds:** Rush detects your dependency graph and builds your projects in the right order. If two packages don't directly depend on each other, Rush parallelizes their build as separate Node.js processes (and shows live console output in a [readable order](https://www.npmjs.com/package/@microsoft/stream-collator)). In practice this multi-process approach can yield more significant speedups than all those async functions in your single-threaded Gulpfile.
20+
- **Fast builds:** Rush detects your dependency graph and builds your projects in the right order. If two packages don't directly depend on each other, Rush parallelizes their build as separate Node.js processes (and shows live console output in a [readable order](https://www.npmjs.com/package/@rushstack/stream-collator)). In practice this multi-process approach can yield more significant speedups than all those async functions in your single-threaded Gulpfile.
2121

2222
- **Subset and incremental builds:** If you only plan to work with a few projects from your repo, `rush rebuild --to <project>` does a clean build of just your upstream dependencies. After you make changes, `rush rebuild --from <project>` does a clean build of only the affected downstream projects. And if your toolchain is [package-deps-hash](https://www.npmjs.com/package/@rushstack/package-deps-hash) enabled, `rush build` delivers a powerful cross-project incremental build (that also supports subset builds).
2323

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,7 @@
127127
"allowedCategories": [ "libraries" ]
128128
},
129129
{
130-
"name": "@microsoft/stream-collator",
130+
"name": "@rushstack/stream-collator",
131131
"allowedCategories": [ "libraries" ]
132132
},
133133
{

common/reviews/api/stream-collator.api.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
## API Report File for "@microsoft/stream-collator"
1+
## API Report File for "@rushstack/stream-collator"
22

33
> Do not edit this file. It is a report generated by [API Extractor](https://api-extractor.com/).
44

libraries/stream-collator/LICENSE

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

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

libraries/stream-collator/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -33,17 +33,17 @@ This is where the **stream-collator** comes in!
3333

3434
Install the stream-collator:
3535

36-
`npm install --save @microsoft/stream-collator`
36+
`npm install --save @rushstack/stream-collator`
3737

3838

3939
Import the collator:
4040

4141
```javascript
42-
import StreamCollator from '@microsoft/stream-collator'; // es6
42+
import StreamCollator from '@rushstack/stream-collator'; // es6
4343
```
4444

4545
```javascript
46-
const StreamCollator = require('@microsoft/stream-collator'); // commonjs
46+
const StreamCollator = require('@rushstack/stream-collator'); // commonjs
4747
```
4848

4949
A stream collator adheres to the [NodeJS Stream API](https://nodejs.org/api/stream.html), meaning that it effectively

libraries/stream-collator/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"name": "@microsoft/stream-collator",
2+
"name": "@rushstack/stream-collator",
33
"version": "3.2.4",
44
"description": "Display intelligible realtime output from your asynchronous streams",
55
"repository": {

libraries/stream-collator/src/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
*
88
* @remarks
99
*
10-
* For more info, please see the package {@link https://www.npmjs.com/package/@microsoft/stream-collator
10+
* For more info, please see the package {@link https://www.npmjs.com/package/@rushstack/stream-collator
1111
* | README}.
1212
*
1313
* @packageDocumentation

rush.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -674,7 +674,7 @@
674674
"shouldPublish": false
675675
},
676676
{
677-
"packageName": "@microsoft/stream-collator",
677+
"packageName": "@rushstack/stream-collator",
678678
"projectFolder": "libraries/stream-collator",
679679
"reviewCategory": "libraries",
680680
"shouldPublish": true

0 commit comments

Comments
 (0)
0