Skip to content

Commit adc1917

Browse files
Merge branch 'main' of https://github.com/microsoft/rushstack into ating/update-publish-pipeline-to-publish-packages-as-artifacts
2 parents e3a24a9 + a10d613 commit adc1917

185 files changed

Lines changed: 2058 additions & 439 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

apps/api-documenter/CHANGELOG.json

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,18 @@
11
{
22
"name": "@microsoft/api-documenter",
33
"entries": [
4+
{
5+
"version": "7.26.32",
6+
"tag": "@microsoft/api-documenter_v7.26.32",
7+
"date": "Tue, 19 Aug 2025 20:45:02 GMT",
8+
"comments": {
9+
"dependency": [
10+
{
11+
"comment": "Updating dependency \"@rushstack/heft\" to `0.74.3`"
12+
}
13+
]
14+
}
15+
},
416
{
517
"version": "7.26.31",
618
"tag": "@microsoft/api-documenter_v7.26.31",

apps/api-documenter/CHANGELOG.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,11 @@
11
# Change Log - @microsoft/api-documenter
22

3-
This log was last generated on Fri, 01 Aug 2025 00:12:48 GMT and should not be manually modified.
3+
This log was last generated on Tue, 19 Aug 2025 20:45:02 GMT and should not be manually modified.
4+
5+
## 7.26.32
6+
Tue, 19 Aug 2025 20:45:02 GMT
7+
8+
_Version update only_
49

510
## 7.26.31
611
Fri, 01 Aug 2025 00:12:48 GMT

apps/api-documenter/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@microsoft/api-documenter",
3-
"version": "7.26.31",
3+
"version": "7.26.32",
44
"description": "Read JSON files from api-extractor, generate documentation pages",
55
"repository": {
66
"type": "git",

apps/api-extractor/CHANGELOG.json

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,18 @@
11
{
22
"name": "@microsoft/api-extractor",
33
"entries": [
4+
{
5+
"version": "7.52.11",
6+
"tag": "@microsoft/api-extractor_v7.52.11",
7+
"date": "Tue, 19 Aug 2025 20:45:02 GMT",
8+
"comments": {
9+
"patch": [
10+
{
11+
"comment": "Fix self-package import resolution by removing outDir/declarationDir from compiler options"
12+
}
13+
]
14+
}
15+
},
416
{
517
"version": "7.52.10",
618
"tag": "@microsoft/api-extractor_v7.52.10",

apps/api-extractor/CHANGELOG.md

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,13 @@
11
# Change Log - @microsoft/api-extractor
22

3-
This log was last generated on Fri, 01 Aug 2025 00:12:48 GMT and should not be manually modified.
3+
This log was last generated on Tue, 19 Aug 2025 20:45:02 GMT and should not be manually modified.
4+
5+
## 7.52.11
6+
Tue, 19 Aug 2025 20:45:02 GMT
7+
8+
### Patches
9+
10+
- Fix self-package import resolution by removing outDir/declarationDir from compiler options
411

512
## 7.52.10
613
Fri, 01 Aug 2025 00:12:48 GMT

apps/api-extractor/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@microsoft/api-extractor",
3-
"version": "7.52.10",
3+
"version": "7.52.11",
44
"description": "Analyze the exported API for a TypeScript library and generate reviews, documentation, and .d.ts rollups",
55
"keywords": [
66
"typescript",

apps/api-extractor/src/api/CompilerState.ts

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -67,6 +67,15 @@ export class CompilerState {
6767
);
6868
}
6969

70+
// Delete outDir and declarationDir to prevent TypeScript from redirecting self-package
71+
// imports to source files. When these options are set, TypeScript's module resolution
72+
// tries to map output .d.ts files back to their source .ts files to avoid analyzing
73+
// build outputs during compilation. However, API Extractor specifically wants to analyze
74+
// the .d.ts build artifacts, not the source files. Since API Extractor doesn't emit any
75+
// files, these options are unnecessary and interfere with correct module resolution.
76+
delete commandLine.options.outDir;
77+
delete commandLine.options.declarationDir;
78+
7079
const inputFilePaths: string[] = commandLine.fileNames.concat(extractorConfig.mainEntryPointFilePath);
7180
if (options && options.additionalEntryPoints) {
7281
inputFilePaths.push(...options.additionalEntryPoints);

apps/cpu-profile-summarizer/CHANGELOG.json

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,21 @@
11
{
22
"name": "@rushstack/cpu-profile-summarizer",
33
"entries": [
4+
{
5+
"version": "0.1.24",
6+
"tag": "@rushstack/cpu-profile-summarizer_v0.1.24",
7+
"date": "Tue, 19 Aug 2025 20:45:02 GMT",
8+
"comments": {
9+
"dependency": [
10+
{
11+
"comment": "Updating dependency \"@rushstack/worker-pool\" to `0.5.26`"
12+
},
13+
{
14+
"comment": "Updating dependency \"@rushstack/heft\" to `0.74.3`"
15+
}
16+
]
17+
}
18+
},
419
{
520
"version": "0.1.23",
621
"tag": "@rushstack/cpu-profile-summarizer_v0.1.23",

apps/cpu-profile-summarizer/CHANGELOG.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,11 @@
11
# Change Log - @rushstack/cpu-profile-summarizer
22

3-
This log was last generated on Fri, 01 Aug 2025 00:12:48 GMT and should not be manually modified.
3+
This log was last generated on Tue, 19 Aug 2025 20:45:02 GMT and should not be manually modified.
4+
5+
## 0.1.24
6+
Tue, 19 Aug 2025 20:45:02 GMT
7+
8+
_Version update only_
49

510
## 0.1.23
611
Fri, 01 Aug 2025 00:12:48 GMT

apps/cpu-profile-summarizer/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@rushstack/cpu-profile-summarizer",
3-
"version": "0.1.23",
3+
"version": "0.1.24",
44
"description": "CLI tool for running analytics on multiple V8 .cpuprofile files",
55
"repository": {
66
"type": "git",

0 commit comments

Comments
 (0)