Movatterモバイル変換


[0]ホーム

URL:


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

Commite243cac

Browse files
committed
Rename@microsoft/package-deps-hash to@rushstack/package-deps-hash everywhere
1 parent598640b commite243cac

File tree

12 files changed

+13
-13
lines changed

12 files changed

+13
-13
lines changed

‎apps/rush-lib/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
"license":"MIT",
2020
"dependencies": {
2121
"@rushstack/node-core-library":"3.19.3",
22-
"@microsoft/package-deps-hash":"2.4.4",
22+
"@rushstack/package-deps-hash":"2.4.4",
2323
"@microsoft/stream-collator":"3.2.4",
2424
"@microsoft/ts-command-line":"4.3.10",
2525
"@pnpm/link-bins":"~5.1.0",

‎apps/rush-lib/src/logic/PackageChangeAnalyzer.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import {
88
getPackageDeps,
99
getGitHashForFiles,
1010
IPackageDeps
11-
}from'@microsoft/package-deps-hash';
11+
}from'@rushstack/package-deps-hash';
1212
import{
1313
Path,
1414
InternalError,

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

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

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

‎apps/rush-lib/src/logic/test/PackageChangeAnalyzer.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import { RushConfiguration } from '../../api/RushConfiguration';
88

99
import{
1010
IPackageDeps
11-
}from'@microsoft/package-deps-hash';
11+
}from'@rushstack/package-deps-hash';
1212

1313
constpackageA:string='project-a';
1414
constpackageAPath:string=path.join('tools',packageA);

‎apps/rush/README.md

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

2020
-**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.
2121

22-
-**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/@microsoft/package-deps-hash) enabled,`rush build` delivers a powerful cross-project incremental build (that also supports subset builds).
22+
-**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

2424
-**Cyclic dependencies:** If you have hammers that build hammer-factory-factories, Rush has you covered! When a package indirectly depends on an older version of itself, projects in the cycle use the last published version, whereas other projects still get the latest bits.
2525

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@
5555
"allowedCategories": ["libraries","tests" ]
5656
},
5757
{
58-
"name":"@microsoft/package-deps-hash",
58+
"name":"@rushstack/package-deps-hash",
5959
"allowedCategories": ["libraries" ]
6060
},
6161
{

‎common/reviews/api/package-deps-hash.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/package-deps-hash"
1+
##API Report File for "@rushstack/package-deps-hash"
22

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

‎libraries/package-deps-hash/LICENSE

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

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

‎libraries/package-deps-hash/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#@microsoft/package-deps-hash
1+
#@rushstack/package-deps-hash
22

33
The`package-deps-hash` library generates a JSON object containing the git hashes of all files used to produce
44
a given package. This is useful for scenarios where you want to define a "change receipt" file to be published
@@ -16,7 +16,7 @@ NOTE: Git is required to be accessible in the command line path.
1616

1717
```ts
1818
let _=require('lodash');
19-
let { getPackageDeps }=require('@microsoft/package-deps-hash');
19+
let { getPackageDeps }=require('@rushstack/package-deps-hash');
2020

2121
// Gets the current deps object for the current working directory
2222
let deps=getPackageDeps();

‎libraries/package-deps-hash/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"name":"@microsoft/package-deps-hash",
2+
"name":"@rushstack/package-deps-hash",
33
"version":"2.4.4",
44
"description":"",
55
"main":"lib/index.js",

‎libraries/package-deps-hash/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/package-deps-hash
10+
* For more info, please see the package {@link https://www.npmjs.com/package/@rushstack/package-deps-hash
1111
* | README}.
1212
*
1313
*@packageDocumentation

‎rush.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -662,7 +662,7 @@
662662
]
663663
},
664664
{
665-
"packageName":"@microsoft/package-deps-hash",
665+
"packageName":"@rushstack/package-deps-hash",
666666
"projectFolder":"libraries/package-deps-hash",
667667
"reviewCategory":"libraries",
668668
"shouldPublish":true

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp