Skip to content

Commit

Permalink
fix: add missing file extension to TaskQueue import
Browse files Browse the repository at this point in the history
  • Loading branch information
Dmitry Steblyuk committed Apr 1, 2021
1 parent d5993f8 commit 14cb970
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/common/Browser.ts
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ import { EventEmitter } from './EventEmitter.js';
import { Connection, ConnectionEmittedEvents } from './Connection.js';
import { Protocol } from 'devtools-protocol';
import { Page } from './Page.js';
import { TaskQueue } from './TaskQueue';
import { TaskQueue } from './TaskQueue.js';
import { ChildProcess } from 'child_process';
import { Viewport } from './PuppeteerViewport.js';

Expand Down
2 changes: 1 addition & 1 deletion src/common/Page.ts
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ import {
} from './EvalTypes.js';
import { PDFOptions, paperFormats } from './PDFOptions.js';
import { isNode } from '../environment.js';
import { TaskQueue } from './TaskQueue';
import { TaskQueue } from './TaskQueue.js';

/**
* @public
Expand Down
2 changes: 1 addition & 1 deletion src/common/Target.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ import { CDPSession } from './Connection.js';
import { Browser, BrowserContext } from './Browser.js';
import { Viewport } from './PuppeteerViewport.js';
import { Protocol } from 'devtools-protocol';
import { TaskQueue } from './TaskQueue';
import { TaskQueue } from './TaskQueue.js';

/**
* @public
Expand Down

0 comments on commit 14cb970

Please sign in to comment.