Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
chore: pin TSDoc related dependencies (#6063)
Without the API-* dependencies pinned different versions may be
installed on local machines vs CI. One of the checks we do is to check
that the checked in docs matches what is generated on CI. Therefore we
need to ensure devs locally run the exact version that CI runs such that
they generate the same output. So in this case we pin to a particular
version of the dependencies.
  • Loading branch information
jackfranklin committed Jun 22, 2020
1 parent 750f5ee commit ace31d6
Show file tree
Hide file tree
Showing 11 changed files with 13 additions and 2 deletions.
1 change: 1 addition & 0 deletions new-docs/puppeteer.browser.md
Expand Up @@ -9,6 +9,7 @@
```typescript
export declare class Browser extends EventEmitter
```
<b>Extends:</b> [EventEmitter](./puppeteer.eventemitter.md)
## Constructors
Expand Down
1 change: 1 addition & 0 deletions new-docs/puppeteer.browsercontext.md
Expand Up @@ -9,6 +9,7 @@
```typescript
export declare class BrowserContext extends EventEmitter
```
<b>Extends:</b> [EventEmitter](./puppeteer.eventemitter.md)
## Constructors
Expand Down
1 change: 1 addition & 0 deletions new-docs/puppeteer.cdpsession.md
Expand Up @@ -9,6 +9,7 @@
```typescript
export declare class CDPSession extends EventEmitter
```
<b>Extends:</b> [EventEmitter](./puppeteer.eventemitter.md)
## Constructors
Expand Down
1 change: 1 addition & 0 deletions new-docs/puppeteer.connection.md
Expand Up @@ -9,6 +9,7 @@
```typescript
export declare class Connection extends EventEmitter
```
<b>Extends:</b> [EventEmitter](./puppeteer.eventemitter.md)
## Constructors
Expand Down
1 change: 1 addition & 0 deletions new-docs/puppeteer.elementhandle.md
Expand Up @@ -9,6 +9,7 @@
```typescript
export declare class ElementHandle extends JSHandle
```
<b>Extends:</b> [JSHandle](./puppeteer.jshandle.md)
## Constructors
Expand Down
1 change: 1 addition & 0 deletions new-docs/puppeteer.eventemitter.md
Expand Up @@ -11,6 +11,7 @@ The EventEmitter class that many Puppeteer classes extend.
```typescript
export declare class EventEmitter implements CommonEventEmitter
```
<b>Implements:</b> CommonEventEmitter
## Remarks
Expand Down
1 change: 1 addition & 0 deletions new-docs/puppeteer.framemanager.md
Expand Up @@ -9,6 +9,7 @@
```typescript
export declare class FrameManager extends EventEmitter
```
<b>Extends:</b> [EventEmitter](./puppeteer.eventemitter.md)
## Constructors
Expand Down
1 change: 1 addition & 0 deletions new-docs/puppeteer.page.md
Expand Up @@ -11,6 +11,7 @@ Page provides methods to interact with a single tab or \[extension background pa
```typescript
export declare class Page extends EventEmitter
```
<b>Extends:</b> [EventEmitter](./puppeteer.eventemitter.md)
## Remarks
Expand Down
2 changes: 2 additions & 0 deletions new-docs/puppeteer.timeouterror.md
Expand Up @@ -9,3 +9,5 @@
```typescript
export declare class TimeoutError extends CustomError
```
<b>Extends:</b> CustomError
1 change: 1 addition & 0 deletions new-docs/puppeteer.webworker.md
Expand Up @@ -11,6 +11,7 @@ The WebWorker class represents a [WebWorker](https://developer.mozilla.org/en-US
```typescript
export declare class WebWorker extends EventEmitter
```
<b>Extends:</b> [EventEmitter](./puppeteer.eventemitter.md)
## Remarks
Expand Down
4 changes: 2 additions & 2 deletions package.json
Expand Up @@ -59,8 +59,8 @@
"ws": "^7.2.3"
},
"devDependencies": {
"@microsoft/api-documenter": "^7.8.8",
"@microsoft/api-extractor": "^7.8.8",
"@microsoft/api-documenter": "7.8.14",
"@microsoft/api-extractor": "7.8.12",
"@types/debug": "0.0.31",
"@types/mime": "^2.0.0",
"@types/node": "^10.17.14",
Expand Down

0 comments on commit ace31d6

Please sign in to comment.