We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a420d74 commit 3979262Copy full SHA for 3979262
apps/rush-lib/src/logic/InstallManager.ts
@@ -860,7 +860,10 @@ export class InstallManager {
860
// Additionally, if they pulled an updated npm-shrinkwrap.json file from Git,
861
// then we can't skip this install
862
potentiallyChangedFiles.push(this._rushConfiguration.getCommittedShrinkwrapFilename(options.variant));
863
-
+
864
+ // Add common-versions.json file in potentially changed file list.
865
+ potentiallyChangedFiles.push(this._rushConfiguration.getCommonVersionsFilePath(options.variant));
866
867
if (this._rushConfiguration.packageManager === 'pnpm') {
868
// If the repo is using pnpmfile.js, consider that also
869
const pnpmFileFilename: string = this._rushConfiguration.getPnpmfilePath(options.variant);
0 commit comments