Skip to content

Commit 99a0b70

Browse files
Export StagingMode as legacy/alpha (#25377)
Adds a legacy/alpha entrypoint to runtime-definitions, and exports staging mode as legacy/alpha. --------- Co-authored-by: Joshua Smithrud <54606601+Josmithr@users.noreply.github.com>
1 parent 7c74aaf commit 99a0b70

File tree

14 files changed

+654
-85
lines changed

14 files changed

+654
-85
lines changed

.github/CODEOWNERS

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,6 @@
5858
# API report changes
5959
/**/api-report/*.public.api.md @microsoft/fluid-cr-api
6060
/**/api-report/*.beta.api.md @microsoft/fluid-cr-api
61-
/**/api-report/*.legacy.*.api.md @microsoft/fluid-cr-api
6261
/tools/**/api-report/*.api.md # Do not require API review for tools packages
6362

6463
# Changesets and release notes
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
{
2+
"$schema": "https://developer.microsoft.com/json-schemas/api-extractor/v7/api-extractor.schema.json",
3+
"extends": "<projectFolder>/../../../common/build/build-common/api-extractor-lint.entrypoint.json",
4+
"mainEntryPointFilePath": "<projectFolder>/dist/legacyAlpha.d.ts"
5+
}
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
{
2+
"$schema": "https://developer.microsoft.com/json-schemas/api-extractor/v7/api-extractor.schema.json",
3+
"extends": "<projectFolder>/../../../common/build/build-common/api-extractor-lint.entrypoint.json",
4+
"mainEntryPointFilePath": "<projectFolder>/lib/legacyAlpha.d.ts"
5+
}
Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,8 @@
11
{
22
"$schema": "https://developer.microsoft.com/json-schemas/api-extractor/v7/api-extractor.schema.json",
3-
"extends": "<projectFolder>/../../../common/build/build-common/api-extractor-report.esm.legacy.json"
3+
"extends": "<projectFolder>/../../../common/build/build-common/api-extractor-report.esm.legacy.json",
4+
"mainEntryPointFilePath": "<projectFolder>/lib/legacyAlpha.d.ts",
5+
"apiReport": {
6+
"reportVariants": ["public", "beta", "alpha"]
7+
}
48
}

0 commit comments

Comments
 (0)