Skip to content

Commit 0c3279b

Browse files
committed
Some minor updates to README.md
1 parent 61495ab commit 0c3279b

File tree

2 files changed

+13
-7
lines changed

2 files changed

+13
-7
lines changed

README.md

Lines changed: 11 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -6,19 +6,21 @@
66
[![Join the chat at https://gitter.im/web-build-tools](https://badges.gitter.im/web-build-tools.svg)](https://gitter.im/web-build-tools?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)   [![Build Status](https://dev.azure.com/RushStack/Gearbox%20GitHub%20Projects/_apis/build/status/web-build-tools/web-build-tools%20CI%20Build?branchName=master)](https://dev.azure.com/RushStack/Gearbox%20GitHub%20Projects/_build/latest?definitionId=3&branchName=master)
77

88
The home for various projects maintained by the Rush Stack community, whose mission is to develop reusable tooling
9-
for large scale NodeJS monorepos.
9+
for large scale TypeScript monorepos.
1010

1111
## Documentation Links
1212

13-
- [What is Rush Stack?](https://rushstack.io/)
14-
- [Package API reference](https://rushstack.io/pages/api/)
15-
- [Gitter chat room](https://gitter.im/web-build-tools/web-build-tools): chat with the Rush Stack developers
16-
- [Rush](https://rushjs.io/): a scalable NodeJS build orchestrator
17-
- [API Extractor](https://api-extractor.com/): manages API reviews and generates .d.ts rollups
18-
- [API Documenter](https://api-extractor.com/pages/setup/generating_docs/): generates your API documentation website
13+
- [What is Rush Stack?](https://rushstack.io/) - learn about the mission behind these projects
14+
- [API reference](https://rushstack.io/pages/api/) - browse API documentation for NPM packages
15+
- [Gitter chat room](https://gitter.im/web-build-tools/web-build-tools) - chat with the Rush Stack developers
16+
- [Rush](https://rushjs.io/) - a build orchestrator for large scale TypeScript monorepos
17+
- [API Extractor](https://api-extractor.com/) - create .d.ts rollups and track your TypeScript API signatures
18+
- [API Documenter](https://api-extractor.com/pages/setup/generating_docs/) - use TSDoc comments to publish an API documentation website
1919

2020
## Published Packages
2121

22+
<!-- the table below was generated using the ./repo-scripts/repo-toolbox script -->
23+
2224
| Folder | Version | Changelog | Package |
2325
| ------ | ------- | --------- | ------- |
2426
| [/apps/api-documenter](./apps/api-documenter/) | [![npm version](https://badge.fury.io/js/%40microsoft%2Fapi-documenter.svg)](https://badge.fury.io/js/%40microsoft%2Fapi-documenter) | [changelog](./apps/api-documenter/CHANGELOG.md) | [@microsoft/api-documenter](https://www.npmjs.com/package/@microsoft/api-documenter) |
@@ -61,6 +63,8 @@ for large scale NodeJS monorepos.
6163

6264
## Unpublished Local Projects
6365

66+
<!-- the table below was generated using the ./repo-scripts/repo-toolbox script -->
67+
6468
| Folder | Description |
6569
| ------ | -----------|
6670
| [/build-tests/api-documenter-test](./build-tests/api-documenter-test/) | Building this project is a regression test for api-documenter |

repo-scripts/repo-toolbox/src/ReadmeAction.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@ export class ReadmeAction extends CommandLineAction {
2828
Sort.sortBy(orderedProjects, x => x.projectRelativeFolder);
2929

3030
builder.append('## Published Packages\n\n');
31+
builder.append('<!-- the table below was generated using the ./repo-scripts/repo-toolbox script -->\n\n');
3132
builder.append('| Folder | Version | Changelog | Package |\n');
3233
builder.append('| ------ | ------- | --------- | ------- |\n');
3334
for (const project of orderedProjects.filter(x => ReadmeAction._isPublished(x))) {
@@ -65,6 +66,7 @@ export class ReadmeAction extends CommandLineAction {
6566
}
6667

6768
builder.append('\n\n## Unpublished Local Projects\n\n');
69+
builder.append('<!-- the table below was generated using the ./repo-scripts/repo-toolbox script -->\n\n');
6870
builder.append('| Folder | Description |\n');
6971
builder.append('| ------ | -----------|\n');
7072
for (const project of orderedProjects.filter(x => !ReadmeAction._isPublished(x))) {

0 commit comments

Comments
 (0)