Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
{
"changes": [
{
"packageName": "@microsoft/rush",
"comment": "Upgrade the `pnpm-sync-lib` dependency to `0.3.5` to unblock support for pnpm 11.",
"type": "patch"
}
],
"packageName": "@microsoft/rush",
"email": "martinnaj@users.noreply.github.com"
}
136 changes: 68 additions & 68 deletions common/config/subspaces/build-tests-subspace/pnpm-lock.yaml

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// DO NOT MODIFY THIS FILE MANUALLY BUT DO COMMIT IT. It is generated and used by Rush.
{
"pnpmShrinkwrapHash": "2f7908424d103b2f677e95bcd5d85a385b75eda2",
"pnpmShrinkwrapHash": "86da0b5a9687aea2dce36021c2ff6ffa350749b3",
"preferredVersionsHash": "550b4cee0bef4e97db6c6aad726df5149d20e7d9",
"packageJsonInjectedDependenciesHash": "e8fe4109038ad6e9b1e97cbb83e63d9094d37fe4"
"packageJsonInjectedDependenciesHash": "d1120310a9c0d9fbe00e8c5a11e24514c664ced7"
}
10 changes: 5 additions & 5 deletions common/config/subspaces/default/pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion common/config/subspaces/default/repo-state.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// DO NOT MODIFY THIS FILE MANUALLY BUT DO COMMIT IT. It is generated and used by Rush.
{
"pnpmShrinkwrapHash": "09068e8d50f8dae26938555320be968d7ed7861d",
"pnpmShrinkwrapHash": "0c8d25fecfea2cb0e2877b75e91f572a46e8a698",
"preferredVersionsHash": "029c99bd6e65c5e1f25e2848340509811ff9753c"
}
2 changes: 1 addition & 1 deletion libraries/rush-lib/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@
"js-yaml": "~4.1.0",
"npm-package-arg": "~6.1.0",
"object-hash": "3.0.0",
"pnpm-sync-lib": "0.3.4",
"pnpm-sync-lib": "0.3.5",
"read-package-tree": "~5.1.5",
"rxjs": "~6.6.7",
"semver": "~7.7.4",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -504,8 +504,9 @@ export class RushInstallManager extends BaseInstallManager {
this.rushConfiguration,
{ ...this.options, npmrcFolder: subspace.getSubspaceTempFolderPath() }
);
const keepEnvironment: boolean =
InstallHelpers.shouldProvideNpmrcCredentialsViaEnvironment(this.rushConfiguration);
const keepEnvironment: boolean = InstallHelpers.shouldProvideNpmrcCredentialsViaEnvironment(
this.rushConfiguration
);

const commonNodeModulesFolder: string = path.join(
this.rushConfiguration.commonTempFolder,
Expand Down Expand Up @@ -560,8 +561,7 @@ export class RushInstallManager extends BaseInstallManager {
// eslint-disable-next-line no-console
console.log(`Deleting ${pathToDeleteWithoutStar}\\*`);
// Glob can't handle Windows paths
const normalizedPathToDeleteWithoutStar: string =
Path.convertToSlashes(pathToDeleteWithoutStar);
const normalizedPathToDeleteWithoutStar: string = Path.convertToSlashes(pathToDeleteWithoutStar);

const { default: glob } = await import('fast-glob');
const tempModulePaths: string[] = await glob(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -496,8 +496,9 @@ export class WorkspaceInstallManager extends BaseInstallManager {
this.rushConfiguration,
{ ...this.options, npmrcFolder: subspace.getSubspaceTempFolderPath() }
);
const keepEnvironment: boolean =
InstallHelpers.shouldProvideNpmrcCredentialsViaEnvironment(this.rushConfiguration);
const keepEnvironment: boolean = InstallHelpers.shouldProvideNpmrcCredentialsViaEnvironment(
this.rushConfiguration
);
if (ConsoleTerminalProvider.supportsColor) {
packageManagerEnv.FORCE_COLOR = '1';
}
Expand Down