diff --git a/apps/api-extractor/package.json b/apps/api-extractor/package.json index 0782a0e84ae..c9813b17604 100644 --- a/apps/api-extractor/package.json +++ b/apps/api-extractor/package.json @@ -49,7 +49,7 @@ "resolve": "~1.22.1", "semver": "~7.5.4", "source-map": "~0.6.1", - "typescript": "5.4.2" + "typescript": "5.7.2" }, "devDependencies": { "@rushstack/heft-node-rig": "2.6.44", diff --git a/apps/api-extractor/src/analyzer/TypeScriptInternals.ts b/apps/api-extractor/src/analyzer/TypeScriptInternals.ts index f3c771d9118..901dc641d38 100644 --- a/apps/api-extractor/src/analyzer/TypeScriptInternals.ts +++ b/apps/api-extractor/src/analyzer/TypeScriptInternals.ts @@ -101,12 +101,12 @@ export class TypeScriptInternals { * Gets the mode required for module resolution required with the addition of Node16/nodenext */ public static getModeForUsageLocation( - file: { impliedNodeFormat?: ts.SourceFile['impliedNodeFormat'] }, + file: ts.SourceFile, usage: ts.StringLiteralLike, compilerOptions: ts.CompilerOptions ): ts.ModuleKind.CommonJS | ts.ModuleKind.ESNext | undefined { // Compiler internal: - // https://github.com/microsoft/TypeScript/blob/v4.7.2/src/compiler/program.ts#L568 + // https://github.com/microsoft/TypeScript/blob/v5.7.2/src/compiler/program.ts#L940 return ts.getModeForUsageLocation?.(file, usage, compilerOptions); } diff --git a/apps/api-extractor/src/generators/ApiModelGenerator.ts b/apps/api-extractor/src/generators/ApiModelGenerator.ts index 9dec797310b..e56f385b98f 100644 --- a/apps/api-extractor/src/generators/ApiModelGenerator.ts +++ b/apps/api-extractor/src/generators/ApiModelGenerator.ts @@ -266,7 +266,7 @@ export class ApiModelGenerator { } private _tryFindFunctionDeclaration(astDeclaration: AstDeclaration): ts.FunctionDeclaration | undefined { - const children: ts.Node[] = astDeclaration.declaration.getChildren( + const children: readonly ts.Node[] = astDeclaration.declaration.getChildren( astDeclaration.declaration.getSourceFile() ); return children.find(ts.isFunctionTypeNode) as ts.FunctionDeclaration | undefined; diff --git a/build-tests/api-documenter-scenarios/tsconfig.json b/build-tests/api-documenter-scenarios/tsconfig.json index 748d07a6ea4..f3f4197e121 100644 --- a/build-tests/api-documenter-scenarios/tsconfig.json +++ b/build-tests/api-documenter-scenarios/tsconfig.json @@ -9,7 +9,7 @@ "experimentalDecorators": true, "strictNullChecks": true, "types": ["node", "jest"], - "lib": ["es5", "scripthost", "es2015.collection", "es2015.promise", "es2015.iterable", "dom"], + "lib": ["es5", "scripthost", "es2015.collection", "es2015.promise", "es2015.iterable"], "outDir": "lib" }, "include": ["src/**/*.ts"] diff --git a/build-tests/api-extractor-d-cts-test/tsconfig.json b/build-tests/api-extractor-d-cts-test/tsconfig.json index 7dec6f5f99d..cd6919ab432 100644 --- a/build-tests/api-extractor-d-cts-test/tsconfig.json +++ b/build-tests/api-extractor-d-cts-test/tsconfig.json @@ -9,7 +9,7 @@ "experimentalDecorators": true, "strictNullChecks": true, "types": ["node", "jest"], - "lib": ["es5", "scripthost", "es2015.collection", "es2015.promise", "es2015.iterable", "dom"], + "lib": ["es5", "scripthost", "es2015.collection", "es2015.promise", "es2015.iterable"], "outDir": "lib" }, "include": ["src/**/*.cts", "typings/tsd.d.ts"] diff --git a/build-tests/api-extractor-d-mts-test/tsconfig.json b/build-tests/api-extractor-d-mts-test/tsconfig.json index 5b46f57a170..24ec663df67 100644 --- a/build-tests/api-extractor-d-mts-test/tsconfig.json +++ b/build-tests/api-extractor-d-mts-test/tsconfig.json @@ -9,7 +9,7 @@ "experimentalDecorators": true, "strictNullChecks": true, "types": ["node", "jest"], - "lib": ["es5", "scripthost", "es2015.collection", "es2015.promise", "es2015.iterable", "dom"], + "lib": ["es5", "scripthost", "es2015.collection", "es2015.promise", "es2015.iterable"], "outDir": "lib" }, "include": ["src/**/*.mts", "typings/tsd.d.ts"] diff --git a/build-tests/api-extractor-lib1-test/tsconfig.json b/build-tests/api-extractor-lib1-test/tsconfig.json index b0538f2bd78..3aa126ee55e 100644 --- a/build-tests/api-extractor-lib1-test/tsconfig.json +++ b/build-tests/api-extractor-lib1-test/tsconfig.json @@ -7,7 +7,7 @@ "sourceMap": true, "experimentalDecorators": true, "strictNullChecks": true, - "lib": ["es5", "scripthost", "es2015.collection", "es2015.promise", "es2015.iterable", "dom"], + "lib": ["es5", "scripthost", "es2015.collection", "es2015.promise", "es2015.iterable"], "outDir": "lib" }, "include": ["src/**/*.ts"] diff --git a/build-tests/api-extractor-lib2-test/tsconfig.json b/build-tests/api-extractor-lib2-test/tsconfig.json index 1799652cc42..86f0b7cd8fa 100644 --- a/build-tests/api-extractor-lib2-test/tsconfig.json +++ b/build-tests/api-extractor-lib2-test/tsconfig.json @@ -9,7 +9,7 @@ "experimentalDecorators": true, "strictNullChecks": true, "types": ["node", "jest"], - "lib": ["es5", "scripthost", "es2015.collection", "es2015.promise", "es2015.iterable", "dom"], + "lib": ["es5", "scripthost", "es2015.collection", "es2015.promise", "es2015.iterable"], "outDir": "lib" }, "include": ["src/**/*.ts", "typings/tsd.d.ts"] diff --git a/build-tests/api-extractor-lib3-test/tsconfig.json b/build-tests/api-extractor-lib3-test/tsconfig.json index 1799652cc42..86f0b7cd8fa 100644 --- a/build-tests/api-extractor-lib3-test/tsconfig.json +++ b/build-tests/api-extractor-lib3-test/tsconfig.json @@ -9,7 +9,7 @@ "experimentalDecorators": true, "strictNullChecks": true, "types": ["node", "jest"], - "lib": ["es5", "scripthost", "es2015.collection", "es2015.promise", "es2015.iterable", "dom"], + "lib": ["es5", "scripthost", "es2015.collection", "es2015.promise", "es2015.iterable"], "outDir": "lib" }, "include": ["src/**/*.ts", "typings/tsd.d.ts"] diff --git a/build-tests/api-extractor-lib4-test/tsconfig.json b/build-tests/api-extractor-lib4-test/tsconfig.json index 1799652cc42..86f0b7cd8fa 100644 --- a/build-tests/api-extractor-lib4-test/tsconfig.json +++ b/build-tests/api-extractor-lib4-test/tsconfig.json @@ -9,7 +9,7 @@ "experimentalDecorators": true, "strictNullChecks": true, "types": ["node", "jest"], - "lib": ["es5", "scripthost", "es2015.collection", "es2015.promise", "es2015.iterable", "dom"], + "lib": ["es5", "scripthost", "es2015.collection", "es2015.promise", "es2015.iterable"], "outDir": "lib" }, "include": ["src/**/*.ts", "typings/tsd.d.ts"] diff --git a/build-tests/api-extractor-lib5-test/tsconfig.json b/build-tests/api-extractor-lib5-test/tsconfig.json index 1799652cc42..86f0b7cd8fa 100644 --- a/build-tests/api-extractor-lib5-test/tsconfig.json +++ b/build-tests/api-extractor-lib5-test/tsconfig.json @@ -9,7 +9,7 @@ "experimentalDecorators": true, "strictNullChecks": true, "types": ["node", "jest"], - "lib": ["es5", "scripthost", "es2015.collection", "es2015.promise", "es2015.iterable", "dom"], + "lib": ["es5", "scripthost", "es2015.collection", "es2015.promise", "es2015.iterable"], "outDir": "lib" }, "include": ["src/**/*.ts", "typings/tsd.d.ts"] diff --git a/build-tests/api-extractor-test-01/tsconfig.json b/build-tests/api-extractor-test-01/tsconfig.json index a48293c1057..4d7f50479a2 100644 --- a/build-tests/api-extractor-test-01/tsconfig.json +++ b/build-tests/api-extractor-test-01/tsconfig.json @@ -10,7 +10,7 @@ "strictNullChecks": true, "esModuleInterop": true, "types": ["node", "jest"], - "lib": ["es5", "scripthost", "es2015.collection", "es2015.promise", "es2015.iterable", "dom"], + "lib": ["es5", "scripthost", "es2015.collection", "es2015.promise", "es2015.iterable"], "outDir": "lib" }, "include": ["src/**/*.ts", "typings/tsd.d.ts"] diff --git a/build-tests/api-extractor-test-02/tsconfig.json b/build-tests/api-extractor-test-02/tsconfig.json index 0a13e0ef163..0d36523cc09 100644 --- a/build-tests/api-extractor-test-02/tsconfig.json +++ b/build-tests/api-extractor-test-02/tsconfig.json @@ -10,7 +10,7 @@ "strictNullChecks": true, "esModuleInterop": true, "types": ["node"], - "lib": ["es5", "scripthost", "es2015.collection", "es2015.promise", "es2015.iterable", "dom"], + "lib": ["es5", "scripthost", "es2015.collection", "es2015.promise", "es2015.iterable"], "outDir": "lib" }, "include": ["src/**/*.ts", "typings/tsd.d.ts"] diff --git a/build-tests/api-extractor-test-03/tsconfig.json b/build-tests/api-extractor-test-03/tsconfig.json index a48293c1057..4d7f50479a2 100644 --- a/build-tests/api-extractor-test-03/tsconfig.json +++ b/build-tests/api-extractor-test-03/tsconfig.json @@ -10,7 +10,7 @@ "strictNullChecks": true, "esModuleInterop": true, "types": ["node", "jest"], - "lib": ["es5", "scripthost", "es2015.collection", "es2015.promise", "es2015.iterable", "dom"], + "lib": ["es5", "scripthost", "es2015.collection", "es2015.promise", "es2015.iterable"], "outDir": "lib" }, "include": ["src/**/*.ts", "typings/tsd.d.ts"] diff --git a/build-tests/api-extractor-test-04/beta-consumer/tsconfig.json b/build-tests/api-extractor-test-04/beta-consumer/tsconfig.json index 805bac5b2e8..a2f349c815e 100644 --- a/build-tests/api-extractor-test-04/beta-consumer/tsconfig.json +++ b/build-tests/api-extractor-test-04/beta-consumer/tsconfig.json @@ -8,7 +8,7 @@ "declarationMap": true, "experimentalDecorators": true, "strictNullChecks": true, - "lib": ["es5", "scripthost", "es2015.collection", "es2015.promise", "es2015.iterable", "dom"], + "lib": ["es5", "scripthost", "es2015.collection", "es2015.promise", "es2015.iterable"], "outDir": "lib" }, "include": ["src/**/*.ts", "typings/tsd.d.ts"] diff --git a/build-tests/api-extractor-test-04/tsconfig.json b/build-tests/api-extractor-test-04/tsconfig.json index 7e2cba55d35..8950b5fc51c 100644 --- a/build-tests/api-extractor-test-04/tsconfig.json +++ b/build-tests/api-extractor-test-04/tsconfig.json @@ -10,7 +10,7 @@ "strictNullChecks": true, "esModuleInterop": true, "types": [], - "lib": ["es5", "scripthost", "es2015.collection", "es2015.promise", "es2015.iterable", "dom"], + "lib": ["es5", "scripthost", "es2015.collection", "es2015.promise", "es2015.iterable"], "outDir": "lib" }, "include": ["src/**/*.ts", "typings/tsd.d.ts"] diff --git a/build-tests/heft-typescript-v2-test/tsconfig.json b/build-tests/heft-typescript-v2-test/tsconfig.json index a24c429ddf6..4596d666047 100644 --- a/build-tests/heft-typescript-v2-test/tsconfig.json +++ b/build-tests/heft-typescript-v2-test/tsconfig.json @@ -18,7 +18,10 @@ "module": "commonjs", "target": "es2017", - "lib": ["es2017"] + "lib": ["es2017"], + + // TODO: REVERT THIS AFTER WE UPGRADE heft-typescript-v2-test TO A NEWER VERSION + "skipLibCheck": true }, "include": ["src/**/*.ts", "src/**/*.tsx"], "exclude": ["node_modules", "lib"] diff --git a/common/changes/@microsoft/api-extractor/main_2024-06-27-03-27.json b/common/changes/@microsoft/api-extractor/main_2024-06-27-03-27.json new file mode 100644 index 00000000000..bb1ee96f7ae --- /dev/null +++ b/common/changes/@microsoft/api-extractor/main_2024-06-27-03-27.json @@ -0,0 +1,10 @@ +{ + "changes": [ + { + "packageName": "@microsoft/api-extractor", + "comment": "Upgrade the bundled compiler engine to TypeScript 5.7.2", + "type": "minor" + } + ], + "packageName": "@microsoft/api-extractor" +} \ No newline at end of file diff --git a/common/config/subspaces/build-tests-subspace/common-versions.json b/common/config/subspaces/build-tests-subspace/common-versions.json index 4c20aea7322..fdf2dced761 100644 --- a/common/config/subspaces/build-tests-subspace/common-versions.json +++ b/common/config/subspaces/build-tests-subspace/common-versions.json @@ -97,7 +97,7 @@ "~4.9.5", // API Extractor bundles a specific TypeScript version because it calls internal APIs - "5.4.2" + "5.7.2" ], "source-map": [ "~0.6.1" // API Extractor is using an older version of source-map because newer versions are async diff --git a/common/config/subspaces/build-tests-subspace/pnpm-lock.yaml b/common/config/subspaces/build-tests-subspace/pnpm-lock.yaml index f6148aaaf44..fd5c6c017a8 100644 --- a/common/config/subspaces/build-tests-subspace/pnpm-lock.yaml +++ b/common/config/subspaces/build-tests-subspace/pnpm-lock.yaml @@ -126,10 +126,10 @@ importers: version: file:../../../apps/heft(@types/node@18.17.15) '@rushstack/heft-lint-plugin': specifier: file:../../heft-plugins/heft-lint-plugin - version: file:../../../heft-plugins/heft-lint-plugin(@rushstack/heft@0.68.10)(@types/node@18.17.15) + version: file:../../../heft-plugins/heft-lint-plugin(@rushstack/heft@0.68.11)(@types/node@18.17.15) '@rushstack/heft-typescript-plugin': specifier: file:../../heft-plugins/heft-typescript-plugin - version: file:../../../heft-plugins/heft-typescript-plugin(@rushstack/heft@0.68.10)(@types/node@18.17.15) + version: file:../../../heft-plugins/heft-typescript-plugin(@rushstack/heft@0.68.11)(@types/node@18.17.15) eslint: specifier: ~8.57.0 version: 8.57.1 @@ -5813,14 +5813,14 @@ packages: hasBin: true dev: true - /typescript@5.4.2: - resolution: {integrity: sha512-+2/g0Fds1ERlP6JsakQQDXjZdZMM+rqpamFZJEKh4kwTIn3iDkgKtby0CeNd5ATNZ4Ry1ax15TMx0W2V+miizQ==} + /typescript@5.4.5: + resolution: {integrity: sha512-vcI4UpRgg81oIRUFwR0WSIHKt11nJ7SAVlYNIu+QpqeyXP+gpQJy/Z4+F0aGxSE4MqwjyXvW/TzgkLAx2AGHwQ==} engines: {node: '>=14.17'} hasBin: true dev: true - /typescript@5.4.5: - resolution: {integrity: sha512-vcI4UpRgg81oIRUFwR0WSIHKt11nJ7SAVlYNIu+QpqeyXP+gpQJy/Z4+F0aGxSE4MqwjyXvW/TzgkLAx2AGHwQ==} + /typescript@5.7.2: + resolution: {integrity: sha512-i5t66RHxDvVN40HfDd1PsEThGNnlMCMT3jMUuoh9/0TaqWevNontacunWyN02LA9/fIbEWlcHZcgTKb9QoaLfg==} engines: {node: '>=14.17'} hasBin: true dev: true @@ -6120,7 +6120,7 @@ packages: resolve: 1.22.8 semver: 7.5.4 source-map: 0.6.1 - typescript: 5.4.2 + typescript: 5.7.2 transitivePeerDependencies: - '@types/node' dev: true @@ -6312,7 +6312,7 @@ packages: - typescript dev: true - file:../../../heft-plugins/heft-api-extractor-plugin(@rushstack/heft@0.68.10)(@types/node@18.17.15): + file:../../../heft-plugins/heft-api-extractor-plugin(@rushstack/heft@0.68.11)(@types/node@18.17.15): resolution: {directory: ../../../heft-plugins/heft-api-extractor-plugin, type: directory} id: file:../../../heft-plugins/heft-api-extractor-plugin name: '@rushstack/heft-api-extractor-plugin' @@ -6327,7 +6327,7 @@ packages: - '@types/node' dev: true - file:../../../heft-plugins/heft-jest-plugin(@rushstack/heft@0.68.10)(@types/node@18.17.15)(jest-environment-node@29.5.0): + file:../../../heft-plugins/heft-jest-plugin(@rushstack/heft@0.68.11)(@types/node@18.17.15)(jest-environment-node@29.5.0): resolution: {directory: ../../../heft-plugins/heft-jest-plugin, type: directory} id: file:../../../heft-plugins/heft-jest-plugin name: '@rushstack/heft-jest-plugin' @@ -6362,7 +6362,7 @@ packages: - ts-node dev: true - file:../../../heft-plugins/heft-lint-plugin(@rushstack/heft@0.68.10)(@types/node@18.17.15): + file:../../../heft-plugins/heft-lint-plugin(@rushstack/heft@0.68.11)(@types/node@18.17.15): resolution: {directory: ../../../heft-plugins/heft-lint-plugin, type: directory} id: file:../../../heft-plugins/heft-lint-plugin name: '@rushstack/heft-lint-plugin' @@ -6376,7 +6376,7 @@ packages: - '@types/node' dev: true - file:../../../heft-plugins/heft-typescript-plugin(@rushstack/heft@0.68.10)(@types/node@18.17.15): + file:../../../heft-plugins/heft-typescript-plugin(@rushstack/heft@0.68.11)(@types/node@18.17.15): resolution: {directory: ../../../heft-plugins/heft-typescript-plugin, type: directory} id: file:../../../heft-plugins/heft-typescript-plugin name: '@rushstack/heft-typescript-plugin' @@ -6603,7 +6603,7 @@ packages: transitivePeerDependencies: - '@types/node' - file:../../../rigs/heft-node-rig(@rushstack/heft@0.68.10)(@types/node@18.17.15): + file:../../../rigs/heft-node-rig(@rushstack/heft@0.68.11)(@types/node@18.17.15): resolution: {directory: ../../../rigs/heft-node-rig, type: directory} id: file:../../../rigs/heft-node-rig name: '@rushstack/heft-node-rig' @@ -6613,10 +6613,10 @@ packages: '@microsoft/api-extractor': file:../../../apps/api-extractor(@types/node@18.17.15) '@rushstack/eslint-config': file:../../../eslint/eslint-config(eslint@8.57.1)(typescript@5.4.5) '@rushstack/heft': file:../../../apps/heft(@types/node@18.17.15) - '@rushstack/heft-api-extractor-plugin': file:../../../heft-plugins/heft-api-extractor-plugin(@rushstack/heft@0.68.10)(@types/node@18.17.15) - '@rushstack/heft-jest-plugin': file:../../../heft-plugins/heft-jest-plugin(@rushstack/heft@0.68.10)(@types/node@18.17.15)(jest-environment-node@29.5.0) - '@rushstack/heft-lint-plugin': file:../../../heft-plugins/heft-lint-plugin(@rushstack/heft@0.68.10)(@types/node@18.17.15) - '@rushstack/heft-typescript-plugin': file:../../../heft-plugins/heft-typescript-plugin(@rushstack/heft@0.68.10)(@types/node@18.17.15) + '@rushstack/heft-api-extractor-plugin': file:../../../heft-plugins/heft-api-extractor-plugin(@rushstack/heft@0.68.11)(@types/node@18.17.15) + '@rushstack/heft-jest-plugin': file:../../../heft-plugins/heft-jest-plugin(@rushstack/heft@0.68.11)(@types/node@18.17.15)(jest-environment-node@29.5.0) + '@rushstack/heft-lint-plugin': file:../../../heft-plugins/heft-lint-plugin(@rushstack/heft@0.68.11)(@types/node@18.17.15) + '@rushstack/heft-typescript-plugin': file:../../../heft-plugins/heft-typescript-plugin(@rushstack/heft@0.68.11)(@types/node@18.17.15) '@types/heft-jest': 1.0.1 eslint: 8.57.1 jest-environment-node: 29.5.0 @@ -6636,7 +6636,7 @@ packages: dependencies: '@microsoft/api-extractor': file:../../../apps/api-extractor(@types/node@18.17.15) '@rushstack/heft': file:../../../apps/heft(@types/node@18.17.15) - '@rushstack/heft-node-rig': file:../../../rigs/heft-node-rig(@rushstack/heft@0.68.10)(@types/node@18.17.15) + '@rushstack/heft-node-rig': file:../../../rigs/heft-node-rig(@rushstack/heft@0.68.11)(@types/node@18.17.15) '@types/heft-jest': 1.0.1 '@types/node': 18.17.15 eslint: 8.57.1 diff --git a/common/config/subspaces/build-tests-subspace/repo-state.json b/common/config/subspaces/build-tests-subspace/repo-state.json index df164086b0a..1cb6f84ccee 100644 --- a/common/config/subspaces/build-tests-subspace/repo-state.json +++ b/common/config/subspaces/build-tests-subspace/repo-state.json @@ -1,6 +1,6 @@ // DO NOT MODIFY THIS FILE MANUALLY BUT DO COMMIT IT. It is generated and used by Rush. { - "pnpmShrinkwrapHash": "bd75fc59a5df40deec1cf3db51e99ab1a7eb35f6", + "pnpmShrinkwrapHash": "cc2a213121844e88f739b521181daa5d860d33b2", "preferredVersionsHash": "ce857ea0536b894ec8f346aaea08cfd85a5af648", - "packageJsonInjectedDependenciesHash": "3f1f7f2e64fc15d64eef6c0311adc38dff344509" + "packageJsonInjectedDependenciesHash": "7b4bb13bdb42ab5aada7a6f5ab8ec6694ea61721" } diff --git a/common/config/subspaces/default/common-versions.json b/common/config/subspaces/default/common-versions.json index 0f5615cd970..5f47e5c3b7f 100644 --- a/common/config/subspaces/default/common-versions.json +++ b/common/config/subspaces/default/common-versions.json @@ -100,7 +100,7 @@ "~4.9.5", // API Extractor bundles a specific TypeScript version because it calls internal APIs - "5.4.2" + "5.7.2" ], "source-map": [ "~0.6.1" // API Extractor is using an older version of source-map because newer versions are async diff --git a/common/config/subspaces/default/pnpm-lock.yaml b/common/config/subspaces/default/pnpm-lock.yaml index 6ae5a6b130c..ed96fd284cd 100644 --- a/common/config/subspaces/default/pnpm-lock.yaml +++ b/common/config/subspaces/default/pnpm-lock.yaml @@ -89,8 +89,8 @@ importers: specifier: ~0.6.1 version: 0.6.1 typescript: - specifier: 5.4.2 - version: 5.4.2 + specifier: 5.7.2 + version: 5.7.2 devDependencies: '@rushstack/heft': specifier: 0.68.10 @@ -27598,6 +27598,12 @@ packages: engines: {node: '>=14.17'} hasBin: true + /typescript@5.7.2: + resolution: {integrity: sha512-i5t66RHxDvVN40HfDd1PsEThGNnlMCMT3jMUuoh9/0TaqWevNontacunWyN02LA9/fIbEWlcHZcgTKb9QoaLfg==} + engines: {node: '>=14.17'} + hasBin: true + dev: false + /uc.micro@1.0.6: resolution: {integrity: sha512-8Y75pvTYkLJW2hWQHXxoqRgV7qb9B+9vFEtidML+7koHUFapnVJAZ6cKs+Qjz5Aw3aZWHMC6u0wJE3At+nSGwA==} dev: true diff --git a/common/config/subspaces/default/repo-state.json b/common/config/subspaces/default/repo-state.json index edf4f924d81..dce23ea51b5 100644 --- a/common/config/subspaces/default/repo-state.json +++ b/common/config/subspaces/default/repo-state.json @@ -1,5 +1,5 @@ // DO NOT MODIFY THIS FILE MANUALLY BUT DO COMMIT IT. It is generated and used by Rush. { - "pnpmShrinkwrapHash": "7b913e5ca364b30654436bba1a36ea570496f25c", + "pnpmShrinkwrapHash": "77d6789469edc916cd005c6b493ab4d37d68ed64", "preferredVersionsHash": "ce857ea0536b894ec8f346aaea08cfd85a5af648" }