chore: move pipe transport utils to server/ (#34787)
This commit is contained in:
parent
e03402f7a7
commit
9ecf2f69ba
|
@ -19,7 +19,7 @@
|
|||
import * as fs from 'fs';
|
||||
|
||||
import * as playwright from '../..';
|
||||
import { PipeTransport } from '../utils/pipeTransport';
|
||||
import { PipeTransport } from '../server/utils/pipeTransport';
|
||||
import { PlaywrightServer } from '../remote/playwrightServer';
|
||||
import { DispatcherConnection, PlaywrightDispatcher, RootDispatcher, createPlaywright } from '../server';
|
||||
import { gracefullyProcessExitDoNotHang } from '../server/utils/processLauncher';
|
||||
|
|
|
@ -18,7 +18,7 @@ import * as childProcess from 'child_process';
|
|||
import * as path from 'path';
|
||||
|
||||
import { Connection } from './client/connection';
|
||||
import { PipeTransport } from './utils/pipeTransport';
|
||||
import { PipeTransport } from './server/utils/pipeTransport';
|
||||
import { ManualPromise } from './utils/isomorphic/manualPromise';
|
||||
import { nodePlatform } from './server/utils/nodePlatform';
|
||||
|
||||
|
|
|
@ -20,11 +20,11 @@ import * as os from 'os';
|
|||
import * as path from 'path';
|
||||
|
||||
import { TimeoutSettings } from '../../utils/isomorphic/timeoutSettings';
|
||||
import { PipeTransport } from '../../utils/pipeTransport';
|
||||
import { PipeTransport } from '../utils/pipeTransport';
|
||||
import { createGuid } from '../utils/crypto';
|
||||
import { isUnderTest } from '../../utils/isomorphic/debug';
|
||||
import { getPackageManagerExecCommand } from '../utils/env';
|
||||
import { makeWaitForNextTask } from '../../utils/task';
|
||||
import { makeWaitForNextTask } from '../utils/task';
|
||||
import { RecentLogsCollector } from '../utils/debugLogger';
|
||||
import { debug } from '../../utilsBundle';
|
||||
import { wsReceiver, wsSender } from '../../utilsBundle';
|
||||
|
|
|
@ -29,7 +29,6 @@ export * from './utils/isomorphic/urlMatch';
|
|||
export * from './utils/isomorphic/headers';
|
||||
export * from './utils/isomorphic/semaphore';
|
||||
export * from './utils/isomorphic/stackTrace';
|
||||
export * from './utils/task';
|
||||
export * from './utils/zipFile';
|
||||
export * from './utils/zones';
|
||||
|
||||
|
@ -49,6 +48,7 @@ export * from './server/utils/processLauncher';
|
|||
export * from './server/utils/profiler';
|
||||
export * from './server/utils/socksProxy';
|
||||
export * from './server/utils/spawnAsync';
|
||||
export * from './server/utils/task';
|
||||
export * from './server/utils/userAgent';
|
||||
export * from './server/utils/wsServer';
|
||||
|
||||
|
|
Loading…
Reference in New Issue