Skip to content

Commit e476a68

Browse files
authored
Merge pull request #308 from microsoft/automated/update-api-docs
docs: update API documentation
2 parents 234a953 + 2d3033e commit e476a68

File tree

4 files changed

+51
-0
lines changed

4 files changed

+51
-0
lines changed

websites/api.rushstack.io/data/api_nav.json

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4156,6 +4156,11 @@
41564156
"label": "pnpmVerifyStoreIntegrity",
41574157
"id": "pages/rush-lib.environmentconfiguration.pnpmverifystoreintegrity"
41584158
},
4159+
{
4160+
"type": "doc",
4161+
"label": "quietMode",
4162+
"id": "pages/rush-lib.environmentconfiguration.quietmode"
4163+
},
41594164
{
41604165
"type": "doc",
41614166
"label": "reset",

websites/api.rushstack.io/docs/pages/rush-lib.environmentconfiguration.md

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -394,6 +394,29 @@ boolean \| undefined
394394
**_(BETA)_** If specified, enables or disables integrity verification of the pnpm store during install. See
395395

396396

397+
</td></tr>
398+
<tr><td>
399+
400+
[quietMode](./rush-lib.environmentconfiguration.quietmode.md)
401+
402+
403+
</td><td>
404+
405+
`static`
406+
407+
`readonly`
408+
409+
410+
</td><td>
411+
412+
boolean
413+
414+
415+
</td><td>
416+
417+
**_(BETA)_** If `true`<></>, Rush will suppress informational startup messages, equivalent to passing `--quiet`<></>. See
418+
419+
397420
</td></tr>
398421
<tr><td>
399422

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
---
2+
hide_title: true
3+
custom_edit_url: null
4+
pagination_prev: null
5+
pagination_next: null
6+
---
7+
<!-- Do not edit this file. It is automatically generated by API Documenter. -->
8+
9+
[Home](./index.md) &gt; [@microsoft/rush-lib](./rush-lib.md) &gt; [EnvironmentConfiguration](./rush-lib.environmentconfiguration.md) &gt; [quietMode](./rush-lib.environmentconfiguration.quietmode.md)
10+
11+
## EnvironmentConfiguration.quietMode property
12+
13+
> This API is provided as a beta preview for developers and may change based on feedback that we receive. Do not use this API in a production environment.
14+
>
15+
16+
If `true`<></>, Rush will suppress informational startup messages, equivalent to passing `--quiet`<></>. See
17+
18+
**Signature:**
19+
20+
```typescript
21+
static get quietMode(): boolean;
22+
```

websites/api.rushstack.io/docs/pages/rush-lib.environmentvariablenames.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -44,5 +44,6 @@ EnvironmentVariableNames: {
4444
readonly _RUSH_LIB_PATH: "_RUSH_LIB_PATH";
4545
readonly RUSH_INVOKED_FOLDER: "RUSH_INVOKED_FOLDER";
4646
readonly RUSH_INVOKED_ARGS: "RUSH_INVOKED_ARGS";
47+
readonly RUSH_QUIET_MODE: "RUSH_QUIET_MODE";
4748
}
4849
```

0 commit comments

Comments
 (0)