chore: move pipe transport utils to server/ (#34787)

This commit is contained in:
Pavel Feldman 2025-02-13 12:30:53 -08:00 committed by GitHub
parent e03402f7a7
commit 9ecf2f69ba
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
6 changed files with 5 additions and 5 deletions

View file

@ -19,7 +19,7 @@
import * as fs from 'fs'; import * as fs from 'fs';
import * as playwright from '../..'; import * as playwright from '../..';
import { PipeTransport } from '../utils/pipeTransport'; import { PipeTransport } from '../server/utils/pipeTransport';
import { PlaywrightServer } from '../remote/playwrightServer'; import { PlaywrightServer } from '../remote/playwrightServer';
import { DispatcherConnection, PlaywrightDispatcher, RootDispatcher, createPlaywright } from '../server'; import { DispatcherConnection, PlaywrightDispatcher, RootDispatcher, createPlaywright } from '../server';
import { gracefullyProcessExitDoNotHang } from '../server/utils/processLauncher'; import { gracefullyProcessExitDoNotHang } from '../server/utils/processLauncher';

View file

@ -18,7 +18,7 @@ import * as childProcess from 'child_process';
import * as path from 'path'; import * as path from 'path';
import { Connection } from './client/connection'; import { Connection } from './client/connection';
import { PipeTransport } from './utils/pipeTransport'; import { PipeTransport } from './server/utils/pipeTransport';
import { ManualPromise } from './utils/isomorphic/manualPromise'; import { ManualPromise } from './utils/isomorphic/manualPromise';
import { nodePlatform } from './server/utils/nodePlatform'; import { nodePlatform } from './server/utils/nodePlatform';

View file

@ -20,11 +20,11 @@ import * as os from 'os';
import * as path from 'path'; import * as path from 'path';
import { TimeoutSettings } from '../../utils/isomorphic/timeoutSettings'; import { TimeoutSettings } from '../../utils/isomorphic/timeoutSettings';
import { PipeTransport } from '../../utils/pipeTransport'; import { PipeTransport } from '../utils/pipeTransport';
import { createGuid } from '../utils/crypto'; import { createGuid } from '../utils/crypto';
import { isUnderTest } from '../../utils/isomorphic/debug'; import { isUnderTest } from '../../utils/isomorphic/debug';
import { getPackageManagerExecCommand } from '../utils/env'; import { getPackageManagerExecCommand } from '../utils/env';
import { makeWaitForNextTask } from '../../utils/task'; import { makeWaitForNextTask } from '../utils/task';
import { RecentLogsCollector } from '../utils/debugLogger'; import { RecentLogsCollector } from '../utils/debugLogger';
import { debug } from '../../utilsBundle'; import { debug } from '../../utilsBundle';
import { wsReceiver, wsSender } from '../../utilsBundle'; import { wsReceiver, wsSender } from '../../utilsBundle';

View file

@ -29,7 +29,6 @@ export * from './utils/isomorphic/urlMatch';
export * from './utils/isomorphic/headers'; export * from './utils/isomorphic/headers';
export * from './utils/isomorphic/semaphore'; export * from './utils/isomorphic/semaphore';
export * from './utils/isomorphic/stackTrace'; export * from './utils/isomorphic/stackTrace';
export * from './utils/task';
export * from './utils/zipFile'; export * from './utils/zipFile';
export * from './utils/zones'; export * from './utils/zones';
@ -49,6 +48,7 @@ export * from './server/utils/processLauncher';
export * from './server/utils/profiler'; export * from './server/utils/profiler';
export * from './server/utils/socksProxy'; export * from './server/utils/socksProxy';
export * from './server/utils/spawnAsync'; export * from './server/utils/spawnAsync';
export * from './server/utils/task';
export * from './server/utils/userAgent'; export * from './server/utils/userAgent';
export * from './server/utils/wsServer'; export * from './server/utils/wsServer';