From 41a552f42198b75161d965f50ac6dea459a01e1e Mon Sep 17 00:00:00 2001 From: Simon Knott Date: Mon, 13 Jan 2025 11:19:01 +0100 Subject: [PATCH] move to third_party --- .../src/server/registry/oopDownloadBrowserMain.ts | 2 +- .../playwright-core/src/utils/{ => third_party}/tar/README.md | 0 .../playwright-core/src/utils/{ => third_party}/tar/extract.js | 0 .../playwright-core/src/utils/{ => third_party}/tar/headers.js | 0 .../playwright-core/src/utils/{ => third_party}/tar/index.js | 0 5 files changed, 1 insertion(+), 1 deletion(-) rename packages/playwright-core/src/utils/{ => third_party}/tar/README.md (100%) rename packages/playwright-core/src/utils/{ => third_party}/tar/extract.js (100%) rename packages/playwright-core/src/utils/{ => third_party}/tar/headers.js (100%) rename packages/playwright-core/src/utils/{ => third_party}/tar/index.js (100%) diff --git a/packages/playwright-core/src/server/registry/oopDownloadBrowserMain.ts b/packages/playwright-core/src/server/registry/oopDownloadBrowserMain.ts index 285bcb7b83..0e2685ac19 100644 --- a/packages/playwright-core/src/server/registry/oopDownloadBrowserMain.ts +++ b/packages/playwright-core/src/server/registry/oopDownloadBrowserMain.ts @@ -20,7 +20,7 @@ import path from 'path'; import { httpRequest } from '../../utils/network'; import { ManualPromise } from '../../utils/manualPromise'; import { extract } from '../../zipBundle'; -import tar from '../../utils/tar'; +import tar from '../../utils/third_party/tar'; import { pipeline } from 'stream/promises'; import { createBrotliDecompress } from 'zlib'; import type { Writable } from 'stream'; diff --git a/packages/playwright-core/src/utils/tar/README.md b/packages/playwright-core/src/utils/third_party/tar/README.md similarity index 100% rename from packages/playwright-core/src/utils/tar/README.md rename to packages/playwright-core/src/utils/third_party/tar/README.md diff --git a/packages/playwright-core/src/utils/tar/extract.js b/packages/playwright-core/src/utils/third_party/tar/extract.js similarity index 100% rename from packages/playwright-core/src/utils/tar/extract.js rename to packages/playwright-core/src/utils/third_party/tar/extract.js diff --git a/packages/playwright-core/src/utils/tar/headers.js b/packages/playwright-core/src/utils/third_party/tar/headers.js similarity index 100% rename from packages/playwright-core/src/utils/tar/headers.js rename to packages/playwright-core/src/utils/third_party/tar/headers.js diff --git a/packages/playwright-core/src/utils/tar/index.js b/packages/playwright-core/src/utils/third_party/tar/index.js similarity index 100% rename from packages/playwright-core/src/utils/tar/index.js rename to packages/playwright-core/src/utils/third_party/tar/index.js