Skip to content

Commit

Permalink
chore: move pipe transport utils to server/ (#34787)
Browse files Browse the repository at this point in the history
  • Loading branch information
pavelfeldman authored Feb 13, 2025
1 parent e03402f commit 9ecf2f6
Show file tree
Hide file tree
Showing 6 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion packages/playwright-core/src/cli/driver.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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';
Expand Down
2 changes: 1 addition & 1 deletion packages/playwright-core/src/outofprocess.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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';

Expand Down
4 changes: 2 additions & 2 deletions packages/playwright-core/src/server/android/android.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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';
Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion packages/playwright-core/src/utils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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';

Expand All @@ -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';

Expand Down

0 comments on commit 9ecf2f6

Please sign in to comment.