Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
21 commits
Select commit Hold shift + click to select a range
78ece37
Move doc comment to the publicly visible signature
octogonz Jul 20, 2022
15680b8
Merge pull request #3469 from zelliott/inheritance-docs
octogonz Jul 20, 2022
7f0adad
Mark FindApiItemsMessageId as "@beta"
octogonz Jul 20, 2022
39a03f6
Merge pull request #3544 from microsoft/octogonz/convert-to-beta
octogonz Jul 20, 2022
0f6e3d5
Improve IFindApiItemMessage messages and two small bug fixes with fin…
zelliott Jul 20, 2022
a94e92f
Re-ran rush rebuild and a few more small fixes
zelliott Jul 20, 2022
36bbe47
Rebase off latest changes
zelliott Jul 20, 2022
f5afd2f
Rebased and re-ran rush rebuild
zelliott Jun 13, 2022
2d23877
Re-ran rush rebuild
zelliott Jul 20, 2022
be00db9
Some minor clean up and testing improvements to api-documenter
zelliott Jul 20, 2022
3321142
Fix typo
zelliott Jul 20, 2022
f1598af
Improve how diagnostic messages are printed
zelliott Jul 21, 2022
31ba791
Update changelogs [skip ci]
rushbot Jul 21, 2022
443342a
Bump versions [skip ci]
rushbot Jul 21, 2022
9b69d4f
Again improve diagnostic message
zelliott Jul 21, 2022
183d212
Merge pull request #3545 from zelliott/inheritance-docs-fixes
octogonz Jul 21, 2022
b95fcfa
Merge remote-tracking branch 'remotes/origin/main' into inheritance-d…
octogonz Jul 21, 2022
3391667
Run "repo-toolbox readme"
octogonz Jul 21, 2022
a371127
Update install-test-workspace/workspace/common/pnpm-lock.yaml
octogonz Jul 21, 2022
42318bc
Workaround for a Docusaurus MDX incompatibility with our generic Mark…
octogonz Jul 21, 2022
baa19e9
rush change
octogonz Jul 21, 2022
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -108,6 +108,7 @@ These GitHub repositories provide supplementary resources for Rush Stack:
| [/build-tests-samples/heft-web-rig-library-tutorial](./build-tests-samples/heft-web-rig-library-tutorial/) | (Copy of sample project) Building this project is a regression test for Heft |
| [/build-tests-samples/heft-webpack-basic-tutorial](./build-tests-samples/heft-webpack-basic-tutorial/) | (Copy of sample project) Building this project is a regression test for Heft |
| [/build-tests-samples/packlets-tutorial](./build-tests-samples/packlets-tutorial/) | (Copy of sample project) Building this project is a regression test for @rushstack/eslint-plugin-packlets |
| [/build-tests/api-documenter-scenarios](./build-tests/api-documenter-scenarios/) | Building this project is a regression test for api-documenter |
| [/build-tests/api-documenter-test](./build-tests/api-documenter-test/) | Building this project is a regression test for api-documenter |
| [/build-tests/api-extractor-lib1-test](./build-tests/api-extractor-lib1-test/) | Building this project is a regression test for api-extractor |
| [/build-tests/api-extractor-lib2-test](./build-tests/api-extractor-lib2-test/) | Building this project is a regression test for api-extractor |
Expand Down
18 changes: 18 additions & 0 deletions apps/api-documenter/CHANGELOG.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,24 @@
{
"name": "@microsoft/api-documenter",
"entries": [
{
"version": "7.18.4",
"tag": "@microsoft/api-documenter_v7.18.4",
"date": "Thu, 21 Jul 2022 00:16:14 GMT",
"comments": {
"dependency": [
{
"comment": "Updating dependency \"@microsoft/api-extractor-model\" to `7.22.0`"
},
{
"comment": "Updating dependency \"@rushstack/heft\" to `0.46.5`"
},
{
"comment": "Updating dependency \"@rushstack/heft-node-rig\" to `1.9.21`"
}
]
}
},
{
"version": "7.18.3",
"tag": "@microsoft/api-documenter_v7.18.3",
Expand Down
7 changes: 6 additions & 1 deletion apps/api-documenter/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
# Change Log - @microsoft/api-documenter

This log was last generated on Wed, 13 Jul 2022 21:31:13 GMT and should not be manually modified.
This log was last generated on Thu, 21 Jul 2022 00:16:14 GMT and should not be manually modified.

## 7.18.4
Thu, 21 Jul 2022 00:16:14 GMT

_Version update only_

## 7.18.3
Wed, 13 Jul 2022 21:31:13 GMT
Expand Down
2 changes: 1 addition & 1 deletion apps/api-documenter/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@microsoft/api-documenter",
"version": "7.18.3",
"version": "7.18.4",
"description": "Read JSON files from api-extractor, generate documentation pages",
"repository": {
"type": "git",
Expand Down
4 changes: 2 additions & 2 deletions apps/api-documenter/src/documenters/DocumenterConfig.ts
Original file line number Diff line number Diff line change
Expand Up @@ -21,14 +21,14 @@ export class DocumenterConfig {
public readonly newlineKind: NewlineKind;

/**
* The JSON Schema for API Extractor config file (api-extractor.schema.json).
* The JSON Schema for API Documenter config file (api-documenter.schema.json).
*/
public static readonly jsonSchema: JsonSchema = JsonSchema.fromFile(
path.join(__dirname, '..', 'schemas', 'api-documenter.schema.json')
);

/**
* The config file name "api-extractor.json".
* The config file name "api-documenter.json".
*/
public static readonly FILENAME: string = 'api-documenter.json';

Expand Down
5 changes: 5 additions & 0 deletions apps/api-documenter/src/documenters/IConfigFile.ts
Original file line number Diff line number Diff line change
Expand Up @@ -103,4 +103,9 @@ export interface IConfigFile {

/** {@inheritDoc IConfigTableOfContents} */
tableOfContents?: IConfigTableOfContents;

/**
* Specifies whether inherited members should also be shown on an API item's page.
*/
showInheritedMembers?: boolean;
}
Loading