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

Sign up
Appearance settings

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

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 } 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

0 commit comments

Comments
(0)

AltStyle によって変換されたページ (->オリジナル) /