Skip to content

Commit 83fd760

Browse files
authored
Merge pull request #191 from microsoft/octogonz/upgrade-rush
Upgrade Rush
2 parents 3f3dc73 + a329bfb commit 83fd760

File tree

11 files changed

+8241
-7958
lines changed

11 files changed

+8241
-7958
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -61,6 +61,7 @@ temp
6161
# Rush files
6262
common/temp/**
6363
package-deps.json
64+
.rush/temp/**
6465

6566
lib
6667
dist

common/config/rush/common-versions.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,9 @@
1010
* is typically used to hold an indirect dependency back to a specific version, however generally
1111
* it can be any SemVer range specifier (e.g. "~1.2.3"), and it will narrow any (compatible)
1212
* SemVer range specifier. See the Rush documentation for details about this feature.
13+
*
14+
* After modifying this field, it's recommended to run "rush update --full" so that the package manager
15+
* will recalculate all version selections.
1316
*/
1417
"preferredVersions": {
1518

common/config/rush/experiments.json

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
/**
2+
* This configuration file allows repo maintainers to enable and disable experimental
3+
* Rush features. For full documentation, please see https://rushjs.io
4+
*/
5+
{
6+
"$schema": "https://developer.microsoft.com/json-schemas/rush/v5/experiments.schema.json",
7+
8+
/**
9+
* Rush 5.14.0 improved incremental builds to ignore spurious changes in the pnpm-lock.json file.
10+
* This optimization is enabled by default. If you encounter a problem where "rush build" is neglecting
11+
* to build some projects, please open a GitHub issue. As a workaround you can uncomment this line
12+
* to temporarily restore the old behavior where everything must be rebuilt whenever pnpm-lock.json
13+
* is modified.
14+
*/
15+
// "legacyIncrementalBuildDependencyDetection": true
16+
}

0 commit comments

Comments
 (0)