8000
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 6998c57 commit 477abb7Copy full SHA for 477abb7
libraries/rush-lib/src/api/Subspace.ts
@@ -272,11 +272,9 @@ export class Subspace {
272
* @beta
273
*/
274
public get shouldEnsureConsistentVersions(): boolean {
275
- const subspaceEnsureConsistentVersions: boolean | undefined = this.getCommonVersions().ensureConsistentVersions;
276
- if (
277
- this._rushConfiguration.subspacesFeatureEnabled ||
278
- subspaceEnsureConsistentVersions !== undefined
279
- ) {
+ const subspaceEnsureConsistentVersions: boolean =
+ this.getCommonVersions().ensureConsistentVersions !== undefined;
+ if (this._rushConfiguration.subspacesFeatureEnabled || subspaceEnsureConsistentVersions) {
280
return subspaceEnsureConsistentVersions;
281
}
282
0 commit comments