From 80a4ba3b81202db296ee6fe8f1f177c755a9750a Mon Sep 17 00:00:00 2001 From: Mike Maietta Date: Tue, 9 Dec 2025 08:23:27 -0800 Subject: [PATCH 01/61] updating all engines to node 22 --- .changeset/small-times-scream.md | 16 ++++++++++++++++ package.json | 2 +- packages/app-builder-lib/package.json | 2 +- packages/builder-util-runtime/package.json | 2 +- packages/builder-util/package.json | 3 +++ packages/dmg-builder/package.json | 3 +++ .../package.json | 3 +++ packages/electron-builder/package.json | 2 +- .../electron-forge-maker-appimage/package.json | 3 +++ .../electron-forge-maker-nsis-web/package.json | 3 +++ packages/electron-forge-maker-nsis/package.json | 3 +++ packages/electron-forge-maker-snap/package.json | 3 +++ packages/electron-publish/package.json | 3 +++ packages/electron-updater/package.json | 3 +++ 14 files changed, 47 insertions(+), 4 deletions(-) create mode 100644 .changeset/small-times-scream.md diff --git a/.changeset/small-times-scream.md b/.changeset/small-times-scream.md new file mode 100644 index 00000000000..4abe247b365 --- /dev/null +++ b/.changeset/small-times-scream.md @@ -0,0 +1,16 @@ +--- +"electron-builder-squirrel-windows": major +"electron-forge-maker-appimage": major +"electron-forge-maker-nsis-web": major +"electron-forge-maker-nsis": major +"electron-forge-maker-snap": major +"builder-util-runtime": major +"electron-builder": major +"electron-publish": major +"electron-updater": major +"app-builder-lib": major +"builder-util": major +"dmg-builder": major +--- + +chore(node): bumping all engines to node 22 to support latest versions of `electron/*` packages diff --git a/package.json b/package.json index 980d7a79c03..c07b2e19375 100644 --- a/package.json +++ b/package.json @@ -62,7 +62,7 @@ "vitest": "^3.2.2" }, "engines": { - "node": ">=14.14", + "node": ">=22.12.0", "pnpm": ">=10" }, "packageManager": "pnpm@10.18.0+sha512.e804f889f1cecc40d572db084eec3e4881739f8dec69c0ff10d2d1beff9a4e309383ba27b5b750059d7f4c149535b6cd0d2cb1ed3aeb739239a4284a68f40cfa", diff --git a/packages/app-builder-lib/package.json b/packages/app-builder-lib/package.json index 951ea77442e..9da387c8b7a 100644 --- a/packages/app-builder-lib/package.json +++ b/packages/app-builder-lib/package.json @@ -16,7 +16,7 @@ "directory": "packages/app-builder-lib" }, "engines": { - "node": ">=14.0.0" + "node": ">=22.12.0" }, "keywords": [ "electron", diff --git a/packages/builder-util-runtime/package.json b/packages/builder-util-runtime/package.json index 4071ff5c327..d9373986996 100644 --- a/packages/builder-util-runtime/package.json +++ b/packages/builder-util-runtime/package.json @@ -15,7 +15,7 @@ "out" ], "engines": { - "node": ">=12.0.0" + "node": ">=22.12.0" }, "dependencies": { "debug": "^4.3.4", diff --git a/packages/builder-util/package.json b/packages/builder-util/package.json index e1d231e61f6..83e1e82326f 100644 --- a/packages/builder-util/package.json +++ b/packages/builder-util/package.json @@ -33,6 +33,9 @@ "tiny-async-pool": "1.3.0" }, "typings": "./out/util.d.ts", + "engines": { + "node": ">=22.12.0" + }, "devDependencies": { "@types/cross-spawn": "6.0.6", "@types/fs-extra": "^9.0.11", diff --git a/packages/dmg-builder/package.json b/packages/dmg-builder/package.json index 466918e9869..f530ccbd5af 100644 --- a/packages/dmg-builder/package.json +++ b/packages/dmg-builder/package.json @@ -23,6 +23,9 @@ "iconv-lite": "^0.6.2", "js-yaml": "^4.1.0" }, + "engines": { + "node": ">=22.12.0" + }, "optionalDependencies": { "dmg-license": "^1.0.11" }, diff --git a/packages/electron-builder-squirrel-windows/package.json b/packages/electron-builder-squirrel-windows/package.json index c590445ca22..c3025e7f22e 100644 --- a/packages/electron-builder-squirrel-windows/package.json +++ b/packages/electron-builder-squirrel-windows/package.json @@ -20,6 +20,9 @@ "builder-util": "workspace:*", "electron-winstaller": "5.4.0" }, + "engines": { + "node": ">=22.12.0" + }, "devDependencies": { "@types/archiver": "5.3.1", "@types/fs-extra": "9.0.13" diff --git a/packages/electron-builder/package.json b/packages/electron-builder/package.json index afe7c6427f7..efc5a566d8b 100644 --- a/packages/electron-builder/package.json +++ b/packages/electron-builder/package.json @@ -16,7 +16,7 @@ "directory": "packages/electron-builder" }, "engines": { - "node": ">=14.0.0" + "node": ">=22.12.0" }, "keywords": [ "electron", diff --git a/packages/electron-forge-maker-appimage/package.json b/packages/electron-forge-maker-appimage/package.json index b02e93d7b5d..46e6d986377 100644 --- a/packages/electron-forge-maker-appimage/package.json +++ b/packages/electron-forge-maker-appimage/package.json @@ -16,5 +16,8 @@ ], "dependencies": { "app-builder-lib": "workspace:*" + }, + "engines": { + "node": ">=22.12.0" } } diff --git a/packages/electron-forge-maker-nsis-web/package.json b/packages/electron-forge-maker-nsis-web/package.json index 5458eb65127..64d34635195 100644 --- a/packages/electron-forge-maker-nsis-web/package.json +++ b/packages/electron-forge-maker-nsis-web/package.json @@ -16,5 +16,8 @@ ], "dependencies": { "app-builder-lib": "workspace:*" + }, + "engines": { + "node": ">=22.12.0" } } diff --git a/packages/electron-forge-maker-nsis/package.json b/packages/electron-forge-maker-nsis/package.json index a50e51cf5f5..8e5ee18fa6f 100644 --- a/packages/electron-forge-maker-nsis/package.json +++ b/packages/electron-forge-maker-nsis/package.json @@ -16,5 +16,8 @@ ], "dependencies": { "app-builder-lib": "workspace:*" + }, + "engines": { + "node": ">=22.12.0" } } diff --git a/packages/electron-forge-maker-snap/package.json b/packages/electron-forge-maker-snap/package.json index e5e2151c7c1..9e69665a535 100644 --- a/packages/electron-forge-maker-snap/package.json +++ b/packages/electron-forge-maker-snap/package.json @@ -16,5 +16,8 @@ ], "dependencies": { "app-builder-lib": "workspace:*" + }, + "engines": { + "node": ">=22.12.0" } } diff --git a/packages/electron-publish/package.json b/packages/electron-publish/package.json index 41f3b5d915f..b3bcd8a6a3a 100644 --- a/packages/electron-publish/package.json +++ b/packages/electron-publish/package.json @@ -27,5 +27,8 @@ "typings": "./out/index.d.ts", "devDependencies": { "@types/mime": "2.0.3" + }, + "engines": { + "node": ">=22.12.0" } } diff --git a/packages/electron-updater/package.json b/packages/electron-updater/package.json index f9683ff9040..19ddfdb8fad 100644 --- a/packages/electron-updater/package.json +++ b/packages/electron-updater/package.json @@ -36,5 +36,8 @@ "typings": "./out/main.d.ts", "publishConfig": { "tag": "next" + }, + "engines": { + "node": ">=22.12.0" } } From 5a5d2b7d95961315f4e4624d57034ab98aa09708 Mon Sep 17 00:00:00 2001 From: Mike Maietta Date: Tue, 9 Dec 2025 08:45:18 -0800 Subject: [PATCH 02/61] tmp save for .js extension migration --- package.json | 1 + packages/app-builder-lib/package.json | 3 +- packages/app-builder-lib/src/Framework.ts | 4 +- .../app-builder-lib/src/ProtonFramework.ts | 8 ++-- packages/app-builder-lib/src/appInfo.ts | 6 +-- packages/app-builder-lib/src/asar/asarUtil.ts | 2 +- .../app-builder-lib/src/asar/integrity.ts | 2 +- .../src/codeSign/macCodeSign.ts | 2 +- .../src/codeSign/signManager.ts | 4 +- .../src/codeSign/windowsSignAzureManager.ts | 6 +-- .../src/codeSign/windowsSignToolManager.ts | 6 +-- packages/app-builder-lib/src/configuration.ts | 34 +++++++------- .../src/electron/ElectronFramework.ts | 8 ++-- .../src/electron/electronMac.ts | 2 +- .../src/electron/electronVersion.ts | 2 +- .../src/electron/injectFFMPEG.ts | 2 +- packages/app-builder-lib/src/fileMatcher.ts | 6 +-- .../app-builder-lib/src/fileTransformer.ts | 4 +- packages/app-builder-lib/src/forge-maker.ts | 4 +- packages/app-builder-lib/src/index.ts | 8 ++-- packages/app-builder-lib/src/linuxPackager.ts | 20 ++++----- packages/app-builder-lib/src/macPackager.ts | 28 ++++++------ .../bunNodeModulesCollector.ts | 6 +-- .../src/node-module-collector/index.ts | 14 +++--- .../src/node-module-collector/moduleCache.ts | 2 +- .../nodeModulesCollector.ts | 8 ++-- .../npmNodeModulesCollector.ts | 6 +-- .../pnpmNodeModulesCollector.ts | 6 +-- .../yarnBerryNodeModulesCollector.ts | 6 +-- .../yarnNodeModulesCollector.ts | 6 +-- .../app-builder-lib/src/options/MsiOptions.ts | 2 +- .../src/options/MsiWrappedOptions.ts | 2 +- .../options/PlatformSpecificBuildOptions.ts | 2 +- .../src/options/SnapOptions.ts | 2 +- packages/app-builder-lib/src/packager.ts | 44 +++++++++---------- packages/app-builder-lib/src/packagerApi.ts | 8 ++-- .../app-builder-lib/src/platformPackager.ts | 24 +++++----- .../src/publish/PublishManager.ts | 2 +- .../src/publish/updateInfoBuilder.ts | 2 +- .../src/targets/AppImageTarget.ts | 4 +- .../app-builder-lib/src/targets/AppxTarget.ts | 2 +- .../src/targets/ArchiveTarget.ts | 4 +- .../src/targets/FlatpakTarget.ts | 4 +- .../app-builder-lib/src/targets/FpmTarget.ts | 4 +- .../app-builder-lib/src/targets/MsiTarget.ts | 2 +- .../src/targets/MsiWrappedTarget.ts | 2 +- .../app-builder-lib/src/targets/archive.ts | 2 +- .../targets/differentialUpdateInfoBuilder.ts | 2 +- .../src/targets/nsis/Defines.ts | 2 +- .../src/targets/nsis/NsisTarget.ts | 14 +++--- .../src/targets/nsis/WebInstallerTarget.ts | 6 +-- .../src/targets/nsis/nsisLang.ts | 6 +-- .../src/targets/nsis/nsisLicense.ts | 6 +-- .../src/targets/nsis/nsisUtil.ts | 4 +- packages/app-builder-lib/src/targets/snap.ts | 4 +- .../src/targets/targetFactory.ts | 2 +- .../src/util/NodeModuleCopyHelper.ts | 6 +-- .../app-builder-lib/src/util/appFileCopier.ts | 6 +-- .../app-builder-lib/src/util/config/config.ts | 2 +- packages/app-builder-lib/src/util/license.ts | 2 +- .../src/util/packageDependencies.ts | 2 +- .../src/util/packageMetadata.ts | 2 +- packages/app-builder-lib/src/util/yarn.ts | 6 +-- packages/app-builder-lib/src/vm/MonoVm.ts | 2 +- .../app-builder-lib/src/vm/ParallelsVm.ts | 2 +- packages/app-builder-lib/src/vm/PwshVm.ts | 2 +- packages/app-builder-lib/src/vm/WineVm.ts | 2 +- packages/app-builder-lib/src/vm/vm.ts | 2 +- packages/app-builder-lib/src/winPackager.ts | 42 +++++++++--------- packages/builder-util-runtime/package.json | 3 +- .../src/ProgressCallbackTransform.ts | 2 +- .../builder-util-runtime/src/httpExecutor.ts | 8 ++-- packages/builder-util-runtime/src/retry.ts | 2 +- packages/builder-util-runtime/src/uuid.ts | 2 +- packages/builder-util-runtime/src/xml.ts | 2 +- packages/builder-util/src/DebugLogger.ts | 4 +- packages/builder-util/src/asyncTaskManager.ts | 4 +- packages/builder-util/src/deepAssign.ts | 2 +- packages/builder-util/src/fs.ts | 4 +- packages/builder-util/src/util.ts | 4 +- packages/dmg-builder/package.json | 3 +- packages/dmg-builder/src/dmg.ts | 6 +-- packages/dmg-builder/src/dmgLicense.ts | 2 +- packages/dmg-builder/src/dmgUtil.ts | 4 +- packages/dmg-builder/src/hdiuil.ts | 2 +- packages/dmg-builder/src/licenseButtons.ts | 4 +- .../package.json | 3 +- packages/electron-builder/package.json | 3 +- packages/electron-builder/src/cli/cli.ts | 6 +-- packages/electron-builder/src/publish.ts | 2 +- packages/electron-publish/package.json | 3 +- .../src/bitbucketPublisher.ts | 2 +- .../electron-publish/src/gitHubPublisher.ts | 6 +-- .../electron-publish/src/gitlabPublisher.ts | 4 +- .../electron-publish/src/httpPublisher.ts | 2 +- packages/electron-publish/src/index.ts | 2 +- .../electron-publish/src/keygenPublisher.ts | 2 +- .../electron-publish/src/multiProgress.ts | 2 +- packages/electron-publish/src/publisher.ts | 2 +- .../electron-publish/src/s3/s3Publisher.ts | 2 +- .../src/s3/spacesPublisher.ts | 2 +- .../src/snapStorePublisher.ts | 2 +- packages/electron-updater/package.json | 3 +- .../electron-updater/src/AppImageUpdater.ts | 12 ++--- packages/electron-updater/src/AppUpdater.ts | 22 +++++----- packages/electron-updater/src/BaseUpdater.ts | 4 +- packages/electron-updater/src/DebUpdater.ts | 12 ++--- .../src/DownloadedUpdateHelper.ts | 4 +- .../src/ElectronAppAdapter.ts | 2 +- packages/electron-updater/src/LinuxUpdater.ts | 4 +- packages/electron-updater/src/MacUpdater.ts | 10 ++--- packages/electron-updater/src/NsisUpdater.ts | 18 ++++---- .../electron-updater/src/PacmanUpdater.ts | 12 ++--- packages/electron-updater/src/RpmUpdater.ts | 12 ++--- .../differentialDownloader/DataSplitter.ts | 2 +- .../DifferentialDownloader.ts | 8 ++-- ...hEmbeddedBlockMapDifferentialDownloader.ts | 2 +- .../GenericDifferentialDownloader.ts | 2 +- .../multipleRangeDownloader.ts | 6 +-- packages/electron-updater/src/main.ts | 2 +- .../electron-updater/src/providerFactory.ts | 16 +++---- .../src/providers/BitbucketProvider.ts | 2 +- .../src/providers/GenericProvider.ts | 2 +- .../src/providers/GitHubProvider.ts | 2 +- .../src/providers/GitLabProvider.ts | 2 +- .../src/providers/KeygenProvider.ts | 2 +- .../src/providers/PrivateGitHubProvider.ts | 4 +- packages/electron-updater/src/types.ts | 2 +- .../windowsExecutableCodeSignatureVerifier.ts | 2 +- pnpm-lock.yaml | 8 ++++ test/src/BuildTest.ts | 6 +-- test/src/ExtraBuildResourcesTest.ts | 8 ++-- test/src/HoistedNodeModuleTest.ts | 4 +- test/src/PublishManagerTest.ts | 4 +- test/src/concurrentBuildsTest.ts | 2 +- test/src/configurationValidationTest.ts | 2 +- test/src/extraMetadataTest.ts | 4 +- test/src/filesTest.ts | 4 +- test/src/globTest.ts | 6 +-- test/src/helpers/downloadElectron.ts | 2 +- test/src/helpers/packTester.ts | 6 +-- test/src/helpers/updaterTestUtil.ts | 4 +- test/src/helpers/verifySmartUnpack.ts | 2 +- test/src/helpers/winHelper.ts | 6 +-- test/src/ignoreTest.ts | 4 +- test/src/mainEntryTest.ts | 2 +- test/src/packageManagerTest.ts | 6 +-- test/src/protonTest.ts | 2 +- .../GitlabPublisher.integration.test.ts | 4 +- .../publisher/gitlab/GitlabPublisherTest.ts | 2 +- test/src/rebuilderTest.ts | 6 +-- tsconfig-base.json | 8 ++-- 152 files changed, 421 insertions(+), 407 deletions(-) diff --git a/package.json b/package.json index c07b2e19375..8aa3ca411f8 100644 --- a/package.json +++ b/package.json @@ -40,6 +40,7 @@ "@eslint/eslintrc": "^3.3.1", "@eslint/js": "^9.37.0", "@stylistic/eslint-plugin": "^2.8.0", + "@tsconfig/node22": "^22.0.5", "@types/node": "^22.7.4", "@typescript-eslint/eslint-plugin": "8.17.0", "@typescript-eslint/parser": "8.17.0", diff --git a/packages/app-builder-lib/package.json b/packages/app-builder-lib/package.json index 9da387c8b7a..1a84b37eedb 100644 --- a/packages/app-builder-lib/package.json +++ b/packages/app-builder-lib/package.json @@ -2,7 +2,8 @@ "name": "app-builder-lib", "description": "electron-builder lib", "version": "26.3.5", - "main": "out/index.js", + "type": "module", + "exports": "./out/index.js", "files": [ "out", "templates", diff --git a/packages/app-builder-lib/src/Framework.ts b/packages/app-builder-lib/src/Framework.ts index a875efe8c1e..cec5b8e064d 100644 --- a/packages/app-builder-lib/src/Framework.ts +++ b/packages/app-builder-lib/src/Framework.ts @@ -1,6 +1,6 @@ import { FileTransformer } from "builder-util" -import { AsarIntegrity } from "./asar/integrity" -import { AfterPackContext, ElectronPlatformName, Platform, PlatformPackager } from "./index" +import { AsarIntegrity } from "./asar/integrity.js.js" +import { AfterPackContext, ElectronPlatformName, Platform, PlatformPackager } from "./index.js.js" export interface Framework { readonly name: string diff --git a/packages/app-builder-lib/src/ProtonFramework.ts b/packages/app-builder-lib/src/ProtonFramework.ts index ebf1b2efb71..77797b1c351 100644 --- a/packages/app-builder-lib/src/ProtonFramework.ts +++ b/packages/app-builder-lib/src/ProtonFramework.ts @@ -1,9 +1,9 @@ import { FileTransformer, log } from "builder-util" import { safeStringifyJson } from "builder-util-runtime" -import { Platform } from "./core" -import { NODE_MODULES_PATTERN } from "./fileTransformer" -import { LibUiFramework } from "./frameworks/LibUiFramework" -import { getTemplatePath } from "./util/pathManager" +import { Platform } from "./core.js.js" +import { NODE_MODULES_PATTERN } from "./fileTransformer.js.js" +import { LibUiFramework } from "./frameworks/LibUiFramework.js.js" +import { getTemplatePath } from "./util/pathManager.js.js" export class ProtonFramework extends LibUiFramework { readonly name = "proton" diff --git a/packages/app-builder-lib/src/appInfo.ts b/packages/app-builder-lib/src/appInfo.ts index 1b053977d64..0c37ccb1a6d 100644 --- a/packages/app-builder-lib/src/appInfo.ts +++ b/packages/app-builder-lib/src/appInfo.ts @@ -2,9 +2,9 @@ import { isEmptyOrSpaces, log } from "builder-util" import { Nullish } from "builder-util-runtime" import { sanitizeFileName } from "builder-util/out/filename" import { prerelease } from "semver" -import { PlatformSpecificBuildOptions } from "./options/PlatformSpecificBuildOptions" -import { Packager } from "./packager" -import { expandMacro } from "./util/macroExpander" +import { PlatformSpecificBuildOptions } from "./options/PlatformSpecificBuildOptions.js.js" +import { Packager } from "./packager.js.js" +import { expandMacro } from "./util/macroExpander.js.js" // fpm bug - rpm build --description is not escaped, well... decided to replace quite to smart quote // http://leancrew.com/all-this/2010/11/smart-quotes-in-javascript/ diff --git a/packages/app-builder-lib/src/asar/asarUtil.ts b/packages/app-builder-lib/src/asar/asarUtil.ts index 88580499a8e..1ece2af90b1 100644 --- a/packages/app-builder-lib/src/asar/asarUtil.ts +++ b/packages/app-builder-lib/src/asar/asarUtil.ts @@ -7,7 +7,7 @@ import * as path from "path" import { AsarOptions } from "../options/PlatformSpecificBuildOptions" import { PlatformPackager } from "../platformPackager" import { ResolvedFileSet, getDestinationPath } from "../util/appFileCopier" -import { detectUnpackedDirs } from "./unpackDetector" +import { detectUnpackedDirs } from "./unpackDetector.js.js" import { Readable } from "stream" import * as os from "os" diff --git a/packages/app-builder-lib/src/asar/integrity.ts b/packages/app-builder-lib/src/asar/integrity.ts index 10012924b94..8ee052c6d81 100644 --- a/packages/app-builder-lib/src/asar/integrity.ts +++ b/packages/app-builder-lib/src/asar/integrity.ts @@ -3,7 +3,7 @@ import { createHash } from "crypto" import { readdir } from "fs/promises" import * as path from "path" import { FileMatcher } from "../fileMatcher" -import { readAsarHeader } from "./asar" +import { readAsarHeader } from "./asar.js.js" export interface AsarIntegrityOptions { readonly resourcesPath: string diff --git a/packages/app-builder-lib/src/codeSign/macCodeSign.ts b/packages/app-builder-lib/src/codeSign/macCodeSign.ts index 20b838848df..0cbd10460ff 100644 --- a/packages/app-builder-lib/src/codeSign/macCodeSign.ts +++ b/packages/app-builder-lib/src/codeSign/macCodeSign.ts @@ -10,7 +10,7 @@ import { homedir, tmpdir } from "os" import * as path from "path" import { getTempName } from "temp-file" import { isAutoDiscoveryCodeSignIdentity } from "../util/flags" -import { importCertificate } from "./codesign" +import { importCertificate } from "./codesign.js.js" export const appleCertificatePrefixes = ["Developer ID Application:", "Developer ID Installer:", "3rd Party Mac Developer Application:", "3rd Party Mac Developer Installer:"] diff --git a/packages/app-builder-lib/src/codeSign/signManager.ts b/packages/app-builder-lib/src/codeSign/signManager.ts index 6825c355017..23b44daddd7 100644 --- a/packages/app-builder-lib/src/codeSign/signManager.ts +++ b/packages/app-builder-lib/src/codeSign/signManager.ts @@ -2,8 +2,8 @@ import { MemoLazy, Nullish } from "builder-util-runtime" import { Lazy } from "lazy-val" import { Target } from "../core" import { WindowsConfiguration } from "../options/winOptions" -import { WindowsSignOptions } from "./windowsCodeSign" -import { CertificateFromStoreInfo, FileCodeSigningInfo } from "./windowsSignToolManager" +import { WindowsSignOptions } from "./windowsCodeSign.js.js" +import { CertificateFromStoreInfo, FileCodeSigningInfo } from "./windowsSignToolManager.js.js" export interface SignManager { readonly computedPublisherName: Lazy | null> diff --git a/packages/app-builder-lib/src/codeSign/windowsSignAzureManager.ts b/packages/app-builder-lib/src/codeSign/windowsSignAzureManager.ts index 35e75add43d..b5123e1585c 100644 --- a/packages/app-builder-lib/src/codeSign/windowsSignAzureManager.ts +++ b/packages/app-builder-lib/src/codeSign/windowsSignAzureManager.ts @@ -3,9 +3,9 @@ import { MemoLazy } from "builder-util-runtime" import { Lazy } from "lazy-val" import { WindowsAzureSigningConfiguration, WindowsConfiguration } from "../options/winOptions" import { WinPackager } from "../winPackager" -import { SignManager } from "./signManager" -import { WindowsSignOptions } from "./windowsCodeSign" -import { CertificateFromStoreInfo, FileCodeSigningInfo } from "./windowsSignToolManager" +import { SignManager } from "./signManager.js.js" +import { WindowsSignOptions } from "./windowsCodeSign.js.js" +import { CertificateFromStoreInfo, FileCodeSigningInfo } from "./windowsSignToolManager.js.js" export class WindowsSignAzureManager implements SignManager { private readonly platformSpecificBuildOptions: WindowsConfiguration diff --git a/packages/app-builder-lib/src/codeSign/windowsSignToolManager.ts b/packages/app-builder-lib/src/codeSign/windowsSignToolManager.ts index 00aeeec2a94..506ea63069c 100644 --- a/packages/app-builder-lib/src/codeSign/windowsSignToolManager.ts +++ b/packages/app-builder-lib/src/codeSign/windowsSignToolManager.ts @@ -14,9 +14,9 @@ import { isUseSystemSigncode } from "../util/flags" import { resolveFunction } from "../util/resolve" import { VmManager } from "../vm/vm" import { WinPackager } from "../winPackager" -import { importCertificate } from "./codesign" -import { SignManager } from "./signManager" -import { WindowsSignOptions } from "./windowsCodeSign" +import { importCertificate } from "./codesign.js.js" +import { SignManager } from "./signManager.js.js" +import { WindowsSignOptions } from "./windowsCodeSign.js.js" export function getSignVendorPath() { return getBin("winCodeSign") diff --git a/packages/app-builder-lib/src/configuration.ts b/packages/app-builder-lib/src/configuration.ts index 1d7283e3ff5..e747a0e47c7 100644 --- a/packages/app-builder-lib/src/configuration.ts +++ b/packages/app-builder-lib/src/configuration.ts @@ -1,21 +1,21 @@ import { Arch } from "builder-util" -import { BeforeBuildContext, Target } from "./core" -import { ElectronBrandingOptions, ElectronDownloadOptions } from "./electron/ElectronFramework" -import { PrepareApplicationStageDirectoryOptions } from "./Framework" -import { AppXOptions } from "./options/AppXOptions" -import { AppImageOptions, DebOptions, FlatpakOptions, LinuxConfiguration, LinuxTargetSpecificOptions } from "./options/linuxOptions" -import { DmgOptions, MacConfiguration, MasConfiguration } from "./options/macOptions" -import { MsiOptions } from "./options/MsiOptions" -import { MsiWrappedOptions } from "./options/MsiWrappedOptions" -import { PkgOptions } from "./options/pkgOptions" -import { PlatformSpecificBuildOptions } from "./options/PlatformSpecificBuildOptions" -import { SnapOptions } from "./options/SnapOptions" -import { SquirrelWindowsOptions } from "./options/SquirrelWindowsOptions" -import { WindowsConfiguration } from "./options/winOptions" -import { BuildResult } from "./packager" -import { ArtifactBuildStarted, ArtifactCreated } from "./packagerApi" -import { PlatformPackager } from "./platformPackager" -import { NsisOptions, NsisWebOptions, PortableOptions } from "./targets/nsis/nsisOptions" +import { BeforeBuildContext, Target } from "./core.js.js" +import { ElectronBrandingOptions, ElectronDownloadOptions } from "./electron/ElectronFramework.js.js" +import { PrepareApplicationStageDirectoryOptions } from "./Framework.js.js" +import { AppXOptions } from "./options/AppXOptions.js.js" +import { AppImageOptions, DebOptions, FlatpakOptions, LinuxConfiguration, LinuxTargetSpecificOptions } from "./options/linuxOptions.js.js" +import { DmgOptions, MacConfiguration, MasConfiguration } from "./options/macOptions.js.js" +import { MsiOptions } from "./options/MsiOptions.js.js" +import { MsiWrappedOptions } from "./options/MsiWrappedOptions.js.js" +import { PkgOptions } from "./options/pkgOptions.js.js" +import { PlatformSpecificBuildOptions } from "./options/PlatformSpecificBuildOptions.js.js" +import { SnapOptions } from "./options/SnapOptions.js.js" +import { SquirrelWindowsOptions } from "./options/SquirrelWindowsOptions.js.js" +import { WindowsConfiguration } from "./options/winOptions.js.js" +import { BuildResult } from "./packager.js.js" +import { ArtifactBuildStarted, ArtifactCreated } from "./packagerApi.js.js" +import { PlatformPackager } from "./platformPackager.js.js" +import { NsisOptions, NsisWebOptions, PortableOptions } from "./targets/nsis/nsisOptions.js.js" // duplicate appId here because it is important /** diff --git a/packages/app-builder-lib/src/electron/ElectronFramework.ts b/packages/app-builder-lib/src/electron/ElectronFramework.ts index e9c1cc5ada7..d326a337b62 100644 --- a/packages/app-builder-lib/src/electron/ElectronFramework.ts +++ b/packages/app-builder-lib/src/electron/ElectronFramework.ts @@ -9,10 +9,10 @@ import { LinuxPackager } from "../linuxPackager" import { MacPackager } from "../macPackager" import { getTemplatePath } from "../util/pathManager" import { resolveFunction } from "../util/resolve" -import { createMacApp } from "./electronMac" -import { computeElectronVersion, getElectronVersionFromInstalled } from "./electronVersion" -import { addWinAsarIntegrity } from "./electronWin" -import injectFFMPEG from "./injectFFMPEG" +import { createMacApp } from "./electronMac.js.js" +import { computeElectronVersion, getElectronVersionFromInstalled } from "./electronVersion.js.js" +import { addWinAsarIntegrity } from "./electronWin.js.js" +import injectFFMPEG from "./injectFFMPEG.js.js" export type ElectronPlatformName = "darwin" | "linux" | "win32" | "mas" diff --git a/packages/app-builder-lib/src/electron/electronMac.ts b/packages/app-builder-lib/src/electron/electronMac.ts index 5b46b793fd3..edba4cfdb17 100644 --- a/packages/app-builder-lib/src/electron/electronMac.ts +++ b/packages/app-builder-lib/src/electron/electronMac.ts @@ -7,7 +7,7 @@ import { AsarIntegrity } from "../asar/integrity" import { MacPackager } from "../macPackager" import { normalizeExt } from "../platformPackager" import { savePlistFile, parsePlistFile, PlistObject, PlistValue } from "../util/plist" -import { createBrandingOpts } from "./ElectronFramework" +import { createBrandingOpts } from "./ElectronFramework.js.js" function doRename(basePath: string, oldName: string, newName: string) { return rename(path.join(basePath, oldName), path.join(basePath, newName)) diff --git a/packages/app-builder-lib/src/electron/electronVersion.ts b/packages/app-builder-lib/src/electron/electronVersion.ts index 8d5ba107e8f..583a05b2c99 100644 --- a/packages/app-builder-lib/src/electron/electronVersion.ts +++ b/packages/app-builder-lib/src/electron/electronVersion.ts @@ -7,7 +7,7 @@ import * as semver from "semver" import { Configuration } from "../configuration" import { getConfig } from "../util/config/config" import { orNullIfFileNotExist } from "../util/config/load" -import { getProjectRootPath } from "./search-module" +import { getProjectRootPath } from "./search-module.js.js" export type MetadataValue = Lazy | null> diff --git a/packages/app-builder-lib/src/electron/injectFFMPEG.ts b/packages/app-builder-lib/src/electron/injectFFMPEG.ts index 0d4815d47b4..3880fc853b2 100644 --- a/packages/app-builder-lib/src/electron/injectFFMPEG.ts +++ b/packages/app-builder-lib/src/electron/injectFFMPEG.ts @@ -1,6 +1,6 @@ import * as fs from "fs" import * as path from "path" -import { ElectronPlatformName } from "./ElectronFramework" +import { ElectronPlatformName } from "./ElectronFramework.js.js" import { log } from "builder-util" import { getBin } from "../binDownload" diff --git a/packages/app-builder-lib/src/fileMatcher.ts b/packages/app-builder-lib/src/fileMatcher.ts index dfbdb908bf6..34a7cc5b594 100644 --- a/packages/app-builder-lib/src/fileMatcher.ts +++ b/packages/app-builder-lib/src/fileMatcher.ts @@ -3,9 +3,9 @@ import { Nullish } from "builder-util-runtime" import { mkdir } from "fs/promises" import { Minimatch } from "minimatch" import * as path from "path" -import { Configuration, FileSet, Packager, PlatformSpecificBuildOptions } from "./index" -import { PlatformPackager } from "./platformPackager" -import { createFilter, hasMagic } from "./util/filter" +import { Configuration, FileSet, Packager, PlatformSpecificBuildOptions } from "./index.js.js" +import { PlatformPackager } from "./platformPackager.js.js" +import { createFilter, hasMagic } from "./util/filter.js.js" // https://github.com/electron-userland/electron-builder/issues/733 const minimatchOptions = { dot: true } diff --git a/packages/app-builder-lib/src/fileTransformer.ts b/packages/app-builder-lib/src/fileTransformer.ts index ac3054cd777..4ec24835026 100644 --- a/packages/app-builder-lib/src/fileTransformer.ts +++ b/packages/app-builder-lib/src/fileTransformer.ts @@ -1,8 +1,8 @@ import { debug, deepAssign, FileTransformer, log } from "builder-util" import { readFile } from "fs/promises" import * as path from "path" -import { Configuration } from "./configuration" -import { Packager } from "./packager" +import { Configuration } from "./configuration.js.js" +import { Packager } from "./packager.js.js" /** @internal */ export const NODE_MODULES_PATTERN = `${path.sep}node_modules${path.sep}` diff --git a/packages/app-builder-lib/src/forge-maker.ts b/packages/app-builder-lib/src/forge-maker.ts index 640e1f37675..88733be7648 100644 --- a/packages/app-builder-lib/src/forge-maker.ts +++ b/packages/app-builder-lib/src/forge-maker.ts @@ -1,6 +1,6 @@ import * as path from "path" -import { build } from "./index" -import { PackagerOptions } from "./packagerApi" +import { build } from "./index.js.js" +import { PackagerOptions } from "./packagerApi.js.js" export interface ForgeOptions { readonly dir: string diff --git a/packages/app-builder-lib/src/index.ts b/packages/app-builder-lib/src/index.ts index b2c2b69707b..c51edd92112 100644 --- a/packages/app-builder-lib/src/index.ts +++ b/packages/app-builder-lib/src/index.ts @@ -1,10 +1,10 @@ import { InvalidConfigurationError, executeFinally, log } from "builder-util" import { asArray } from "builder-util-runtime" import { PublishOptions } from "electron-publish" -import { Packager } from "./packager" -import { PackagerOptions } from "./packagerApi" -import { PublishManager } from "./publish/PublishManager" -import { resolveFunction } from "./util/resolve" +import { Packager } from "./packager.js.js" +import { PackagerOptions } from "./packagerApi.js.js" +import { PublishManager } from "./publish/PublishManager.js.js" +import { resolveFunction } from "./util/resolve.js.js" export { Arch, archFromString, getArchSuffix } from "builder-util" export { AppInfo } from "./appInfo" diff --git a/packages/app-builder-lib/src/linuxPackager.ts b/packages/app-builder-lib/src/linuxPackager.ts index a772e2fef9d..8ca43096352 100644 --- a/packages/app-builder-lib/src/linuxPackager.ts +++ b/packages/app-builder-lib/src/linuxPackager.ts @@ -1,15 +1,15 @@ import { Arch } from "builder-util" import { sanitizeFileName } from "builder-util/out/filename" -import { DIR_TARGET, Platform, Target } from "./core" -import { LinuxConfiguration } from "./options/linuxOptions" -import { Packager } from "./packager" -import { PlatformPackager } from "./platformPackager" -import AppImageTarget from "./targets/AppImageTarget" -import FlatpakTarget from "./targets/FlatpakTarget" -import FpmTarget from "./targets/FpmTarget" -import { LinuxTargetHelper } from "./targets/LinuxTargetHelper" -import SnapTarget from "./targets/snap" -import { createCommonTarget } from "./targets/targetFactory" +import { DIR_TARGET, Platform, Target } from "./core.js.js" +import { LinuxConfiguration } from "./options/linuxOptions.js.js" +import { Packager } from "./packager.js.js" +import { PlatformPackager } from "./platformPackager.js.js" +import AppImageTarget from "./targets/AppImageTarget.js.js" +import FlatpakTarget from "./targets/FlatpakTarget.js.js" +import FpmTarget from "./targets/FpmTarget.js.js" +import { LinuxTargetHelper } from "./targets/LinuxTargetHelper.js.js" +import SnapTarget from "./targets/snap.js.js" +import { createCommonTarget } from "./targets/targetFactory.js.js" export class LinuxPackager extends PlatformPackager { readonly executableName: string diff --git a/packages/app-builder-lib/src/macPackager.ts b/packages/app-builder-lib/src/macPackager.ts index a84fa7c88bc..e456d55f0d2 100644 --- a/packages/app-builder-lib/src/macPackager.ts +++ b/packages/app-builder-lib/src/macPackager.ts @@ -22,20 +22,20 @@ import * as fs from "fs/promises" import { mkdir, readdir } from "fs/promises" import { Lazy } from "lazy-val" import * as path from "path" -import { AppInfo } from "./appInfo" -import { CertType, CodeSigningInfo, createKeychain, CreateKeychainOptions, findIdentity, isSignAllowed, removeKeychain, reportError, sign } from "./codeSign/macCodeSign" -import { DIR_TARGET, Platform, Target } from "./core" -import { AfterPackContext, ElectronPlatformName } from "./index" -import { MacConfiguration, MasConfiguration } from "./options/macOptions" -import { Packager } from "./packager" -import { chooseNotNull, DoPackOptions, PlatformPackager } from "./platformPackager" -import { ArchiveTarget } from "./targets/ArchiveTarget" -import { PkgTarget, prepareProductBuildArgs } from "./targets/pkg" -import { createCommonTarget, NoOpTarget } from "./targets/targetFactory" -import { isMacOsHighSierra } from "./util/macosVersion" -import { getTemplatePath } from "./util/pathManager" -import { resolveFunction } from "./util/resolve" -import { expandMacro as doExpandMacro } from "./util/macroExpander" +import { AppInfo } from "./appInfo.js.js" +import { CertType, CodeSigningInfo, createKeychain, CreateKeychainOptions, findIdentity, isSignAllowed, removeKeychain, reportError, sign } from "./codeSign/macCodeSign.js.js" +import { DIR_TARGET, Platform, Target } from "./core.js.js" +import { AfterPackContext, ElectronPlatformName } from "./index.js.js" +import { MacConfiguration, MasConfiguration } from "./options/macOptions.js.js" +import { Packager } from "./packager.js.js" +import { chooseNotNull, DoPackOptions, PlatformPackager } from "./platformPackager.js.js" +import { ArchiveTarget } from "./targets/ArchiveTarget.js.js" +import { PkgTarget, prepareProductBuildArgs } from "./targets/pkg.js.js" +import { createCommonTarget, NoOpTarget } from "./targets/targetFactory.js.js" +import { isMacOsHighSierra } from "./util/macosVersion.js.js" +import { getTemplatePath } from "./util/pathManager.js.js" +import { resolveFunction } from "./util/resolve.js.js" +import { expandMacro as doExpandMacro } from "./util/macroExpander.js.js" import { makeUniversalApp } from "@electron/universal" export type CustomMacSignOptions = SignOptions diff --git a/packages/app-builder-lib/src/node-module-collector/bunNodeModulesCollector.ts b/packages/app-builder-lib/src/node-module-collector/bunNodeModulesCollector.ts index 412d8f35599..4009560de88 100644 --- a/packages/app-builder-lib/src/node-module-collector/bunNodeModulesCollector.ts +++ b/packages/app-builder-lib/src/node-module-collector/bunNodeModulesCollector.ts @@ -1,7 +1,7 @@ import { log } from "builder-util" -import { NpmNodeModulesCollector } from "./npmNodeModulesCollector" -import { PM } from "./packageManager" -import { NpmDependency } from "./types" +import { NpmNodeModulesCollector } from "./npmNodeModulesCollector.js.js" +import { PM } from "./packageManager.js.js" +import { NpmDependency } from "./types.js.js" export class BunNodeModulesCollector extends NpmNodeModulesCollector { public readonly installOptions = { manager: PM.BUN, lockfile: "bun.lock" } diff --git a/packages/app-builder-lib/src/node-module-collector/index.ts b/packages/app-builder-lib/src/node-module-collector/index.ts index 926a3b5e08e..4c4191515cd 100644 --- a/packages/app-builder-lib/src/node-module-collector/index.ts +++ b/packages/app-builder-lib/src/node-module-collector/index.ts @@ -1,12 +1,12 @@ import { CancellationToken, Nullish } from "builder-util-runtime" import { TmpDir } from "temp-file" -import { NpmNodeModulesCollector } from "./npmNodeModulesCollector" -import { detectPackageManager, getPackageManagerCommand, PM } from "./packageManager" -import { PnpmNodeModulesCollector } from "./pnpmNodeModulesCollector" -import { NodeModuleInfo } from "./types" -import { YarnBerryNodeModulesCollector } from "./yarnBerryNodeModulesCollector" -import { YarnNodeModulesCollector } from "./yarnNodeModulesCollector" -import { BunNodeModulesCollector } from "./bunNodeModulesCollector" +import { NpmNodeModulesCollector } from "./npmNodeModulesCollector.js.js" +import { detectPackageManager, getPackageManagerCommand, PM } from "./packageManager.js.js" +import { PnpmNodeModulesCollector } from "./pnpmNodeModulesCollector.js.js" +import { NodeModuleInfo } from "./types.js.js" +import { YarnBerryNodeModulesCollector } from "./yarnBerryNodeModulesCollector.js.js" +import { YarnNodeModulesCollector } from "./yarnNodeModulesCollector.js.js" +import { BunNodeModulesCollector } from "./bunNodeModulesCollector.js.js" import { Lazy } from "lazy-val" import { spawn, log, exists } from "builder-util" import * as fs from "fs-extra" diff --git a/packages/app-builder-lib/src/node-module-collector/moduleCache.ts b/packages/app-builder-lib/src/node-module-collector/moduleCache.ts index 95b740bf58f..85343dd4401 100644 --- a/packages/app-builder-lib/src/node-module-collector/moduleCache.ts +++ b/packages/app-builder-lib/src/node-module-collector/moduleCache.ts @@ -1,5 +1,5 @@ import { exists, log } from "builder-util" -import { PackageJson } from "./types" +import { PackageJson } from "./types.js.js" import * as fs from "fs-extra" import { resolve } from "path" diff --git a/packages/app-builder-lib/src/node-module-collector/nodeModulesCollector.ts b/packages/app-builder-lib/src/node-module-collector/nodeModulesCollector.ts index 30265052928..7e645c9b57c 100644 --- a/packages/app-builder-lib/src/node-module-collector/nodeModulesCollector.ts +++ b/packages/app-builder-lib/src/node-module-collector/nodeModulesCollector.ts @@ -6,10 +6,10 @@ import { createWriteStream } from "fs-extra" import { Lazy } from "lazy-val" import * as path from "path" import * as semver from "semver" -import { hoist, type HoisterResult, type HoisterTree } from "./hoist" -import { ModuleCache } from "./moduleCache" -import { getPackageManagerCommand, PM } from "./packageManager" -import type { Dependency, DependencyGraph, NodeModuleInfo } from "./types" +import { hoist, type HoisterResult, type HoisterTree } from "./hoist.js.js" +import { ModuleCache } from "./moduleCache.js.js" +import { getPackageManagerCommand, PM } from "./packageManager.js.js" +import type { Dependency, DependencyGraph, NodeModuleInfo } from "./types.js.js" type Result = { packageDir: string; version: string } | null export abstract class NodeModulesCollector, OptionalDepType> { diff --git a/packages/app-builder-lib/src/node-module-collector/npmNodeModulesCollector.ts b/packages/app-builder-lib/src/node-module-collector/npmNodeModulesCollector.ts index 0eff617a7a6..f2086d468bb 100644 --- a/packages/app-builder-lib/src/node-module-collector/npmNodeModulesCollector.ts +++ b/packages/app-builder-lib/src/node-module-collector/npmNodeModulesCollector.ts @@ -1,8 +1,8 @@ import { log } from "builder-util" import * as path from "path" -import { NodeModulesCollector } from "./nodeModulesCollector" -import { PM } from "./packageManager" -import { NpmDependency, PackageJson } from "./types" +import { NodeModulesCollector } from "./nodeModulesCollector.js.js" +import { PM } from "./packageManager.js.js" +import { NpmDependency, PackageJson } from "./types.js.js" export class NpmNodeModulesCollector extends NodeModulesCollector { public readonly installOptions = { diff --git a/packages/app-builder-lib/src/node-module-collector/pnpmNodeModulesCollector.ts b/packages/app-builder-lib/src/node-module-collector/pnpmNodeModulesCollector.ts index 266daa8121b..4972b2e2799 100644 --- a/packages/app-builder-lib/src/node-module-collector/pnpmNodeModulesCollector.ts +++ b/packages/app-builder-lib/src/node-module-collector/pnpmNodeModulesCollector.ts @@ -1,8 +1,8 @@ import { isEmptyOrSpaces, log } from "builder-util" import * as path from "path" -import { NodeModulesCollector } from "./nodeModulesCollector" -import { PM } from "./packageManager" -import { PackageJson, PnpmDependency } from "./types" +import { NodeModulesCollector } from "./nodeModulesCollector.js.js" +import { PM } from "./packageManager.js.js" +import { PackageJson, PnpmDependency } from "./types.js.js" export class PnpmNodeModulesCollector extends NodeModulesCollector { public readonly installOptions = { diff --git a/packages/app-builder-lib/src/node-module-collector/yarnBerryNodeModulesCollector.ts b/packages/app-builder-lib/src/node-module-collector/yarnBerryNodeModulesCollector.ts index 02122454db0..de65a2f0573 100644 --- a/packages/app-builder-lib/src/node-module-collector/yarnBerryNodeModulesCollector.ts +++ b/packages/app-builder-lib/src/node-module-collector/yarnBerryNodeModulesCollector.ts @@ -1,8 +1,8 @@ import { log } from "builder-util" import { Lazy } from "lazy-val" -import { NpmNodeModulesCollector } from "./npmNodeModulesCollector" -import { PM } from "./packageManager" -import { NpmDependency } from "./types" +import { NpmNodeModulesCollector } from "./npmNodeModulesCollector.js.js" +import { PM } from "./packageManager.js.js" +import { NpmDependency } from "./types.js.js" type YarnSetupInfo = { yarnVersion: string | null diff --git a/packages/app-builder-lib/src/node-module-collector/yarnNodeModulesCollector.ts b/packages/app-builder-lib/src/node-module-collector/yarnNodeModulesCollector.ts index cdec2f9e63c..9a923cc13f5 100644 --- a/packages/app-builder-lib/src/node-module-collector/yarnNodeModulesCollector.ts +++ b/packages/app-builder-lib/src/node-module-collector/yarnNodeModulesCollector.ts @@ -1,9 +1,9 @@ import { log } from "builder-util" import { Lazy } from "lazy-val" import * as path from "path" -import { NodeModulesCollector } from "./nodeModulesCollector" -import { PM } from "./packageManager" -import { PackageJson, YarnDependency } from "./types" +import { NodeModulesCollector } from "./nodeModulesCollector.js.js" +import { PM } from "./packageManager.js.js" +import { PackageJson, YarnDependency } from "./types.js.js" type YarnListJsonLine = | { diff --git a/packages/app-builder-lib/src/options/MsiOptions.ts b/packages/app-builder-lib/src/options/MsiOptions.ts index 3b905847941..1b6fede0e72 100644 --- a/packages/app-builder-lib/src/options/MsiOptions.ts +++ b/packages/app-builder-lib/src/options/MsiOptions.ts @@ -1,5 +1,5 @@ import { TargetSpecificOptions } from "../core" -import { CommonWindowsInstallerConfiguration } from "./CommonWindowsInstallerConfiguration" +import { CommonWindowsInstallerConfiguration } from "./CommonWindowsInstallerConfiguration.js.js" export interface MsiOptions extends CommonWindowsInstallerConfiguration, TargetSpecificOptions { /** diff --git a/packages/app-builder-lib/src/options/MsiWrappedOptions.ts b/packages/app-builder-lib/src/options/MsiWrappedOptions.ts index 282693f775b..39cf1028717 100644 --- a/packages/app-builder-lib/src/options/MsiWrappedOptions.ts +++ b/packages/app-builder-lib/src/options/MsiWrappedOptions.ts @@ -1,5 +1,5 @@ import { TargetSpecificOptions } from "../core" -import { CommonWindowsInstallerConfiguration } from "./CommonWindowsInstallerConfiguration" +import { CommonWindowsInstallerConfiguration } from "./CommonWindowsInstallerConfiguration.js.js" export interface MsiWrappedOptions extends CommonWindowsInstallerConfiguration, TargetSpecificOptions { /** diff --git a/packages/app-builder-lib/src/options/PlatformSpecificBuildOptions.ts b/packages/app-builder-lib/src/options/PlatformSpecificBuildOptions.ts index 9017928eac8..f3029c9608c 100644 --- a/packages/app-builder-lib/src/options/PlatformSpecificBuildOptions.ts +++ b/packages/app-builder-lib/src/options/PlatformSpecificBuildOptions.ts @@ -1,5 +1,5 @@ import { CompressionLevel, Publish, TargetConfiguration, TargetSpecificOptions } from "../core" -import { FileAssociation } from "./FileAssociation" +import { FileAssociation } from "./FileAssociation.js.js" export interface FileSet { /** diff --git a/packages/app-builder-lib/src/options/SnapOptions.ts b/packages/app-builder-lib/src/options/SnapOptions.ts index 1ea3fbcb59a..d43d2355c15 100644 --- a/packages/app-builder-lib/src/options/SnapOptions.ts +++ b/packages/app-builder-lib/src/options/SnapOptions.ts @@ -1,5 +1,5 @@ import { TargetSpecificOptions } from "../core" -import { CommonLinuxOptions } from "./linuxOptions" +import { CommonLinuxOptions } from "./linuxOptions.js.js" export interface SnapOptions extends CommonLinuxOptions, TargetSpecificOptions { /** diff --git a/packages/app-builder-lib/src/packager.ts b/packages/app-builder-lib/src/packager.ts index 17728e2d8d4..236c362c527 100644 --- a/packages/app-builder-lib/src/packager.ts +++ b/packages/app-builder-lib/src/packager.ts @@ -21,29 +21,29 @@ import { isCI } from "ci-info" import { Lazy } from "lazy-val" import { release as getOsRelease } from "os" import * as path from "path" -import { AppInfo } from "./appInfo" -import { readAsarJson } from "./asar/asar" -import { AfterExtractContext, AfterPackContext, BeforePackContext, Configuration, Hook } from "./configuration" -import { Platform, SourceRepositoryInfo, Target } from "./core" -import { createElectronFrameworkSupport } from "./electron/ElectronFramework" -import { Framework } from "./Framework" -import { LibUiFramework } from "./frameworks/LibUiFramework" -import { Metadata } from "./options/metadata" -import { ArtifactBuildStarted, ArtifactCreated, PackagerOptions } from "./packagerApi" -import { PlatformPackager } from "./platformPackager" -import { ProtonFramework } from "./ProtonFramework" -import { computeArchToTargetNamesMap, createTargets, NoOpTarget } from "./targets/targetFactory" -import { computeDefaultAppDirectory, getConfig, validateConfiguration } from "./util/config/config" -import { expandMacro } from "./util/macroExpander" -import { createLazyProductionDeps, NodeModuleDirInfo, NodeModuleInfo } from "./util/packageDependencies" -import { checkMetadata, readPackageJson } from "./util/packageMetadata" -import { getRepositoryInfo } from "./util/repositoryInfo" -import { resolveFunction } from "./util/resolve" -import { installOrRebuild, nodeGypRebuild } from "./util/yarn" -import { PACKAGE_VERSION } from "./version" -import { AsyncEventEmitter, HandlerType } from "./util/asyncEventEmitter" +import { AppInfo } from "./appInfo.js.js" +import { readAsarJson } from "./asar/asar.js.js" +import { AfterExtractContext, AfterPackContext, BeforePackContext, Configuration, Hook } from "./configuration.js.js" +import { Platform, SourceRepositoryInfo, Target } from "./core.js.js" +import { createElectronFrameworkSupport } from "./electron/ElectronFramework.js.js" +import { Framework } from "./Framework.js.js" +import { LibUiFramework } from "./frameworks/LibUiFramework.js.js" +import { Metadata } from "./options/metadata.js.js" +import { ArtifactBuildStarted, ArtifactCreated, PackagerOptions } from "./packagerApi.js.js" +import { PlatformPackager } from "./platformPackager.js.js" +import { ProtonFramework } from "./ProtonFramework.js.js" +import { computeArchToTargetNamesMap, createTargets, NoOpTarget } from "./targets/targetFactory.js.js" +import { computeDefaultAppDirectory, getConfig, validateConfiguration } from "./util/config/config.js.js" +import { expandMacro } from "./util/macroExpander.js.js" +import { createLazyProductionDeps, NodeModuleDirInfo, NodeModuleInfo } from "./util/packageDependencies.js.js" +import { checkMetadata, readPackageJson } from "./util/packageMetadata.js.js" +import { getRepositoryInfo } from "./util/repositoryInfo.js.js" +import { resolveFunction } from "./util/resolve.js.js" +import { installOrRebuild, nodeGypRebuild } from "./util/yarn.js.js" +import { PACKAGE_VERSION } from "./version.js.js" +import { AsyncEventEmitter, HandlerType } from "./util/asyncEventEmitter.js.js" import asyncPool from "tiny-async-pool" -import { determinePackageManagerEnv, PM } from "./node-module-collector" +import { determinePackageManagerEnv, PM } from "./node-module-collector.js.js" async function createFrameworkInfo(configuration: Configuration, packager: Packager): Promise { let framework = configuration.framework diff --git a/packages/app-builder-lib/src/packagerApi.ts b/packages/app-builder-lib/src/packagerApi.ts index 28a490c146a..6ea6145af03 100644 --- a/packages/app-builder-lib/src/packagerApi.ts +++ b/packages/app-builder-lib/src/packagerApi.ts @@ -1,10 +1,10 @@ import { Arch } from "builder-util" import { PublishConfiguration } from "builder-util-runtime" import { UploadTask } from "electron-publish" -import { Configuration } from "./configuration" -import { Platform, Target } from "./core" -import { Packager } from "./packager" -import { PlatformPackager } from "./platformPackager" +import { Configuration } from "./configuration.js.js" +import { Platform, Target } from "./core.js.js" +import { Packager } from "./packager.js.js" +import { PlatformPackager } from "./platformPackager.js.js" export interface PackagerOptions { targets?: Map>> diff --git a/packages/app-builder-lib/src/platformPackager.ts b/packages/app-builder-lib/src/platformPackager.ts index 4889b51722e..076290393e0 100644 --- a/packages/app-builder-lib/src/platformPackager.ts +++ b/packages/app-builder-lib/src/platformPackager.ts @@ -22,14 +22,14 @@ import { Minimatch } from "minimatch" import * as path from "path" import * as fs from "fs/promises" import * as os from "os" -import { AppInfo } from "./appInfo" -import { checkFileInArchive } from "./asar/asarFileChecker" -import { AsarPackager } from "./asar/asarUtil" -import { AsarIntegrity, computeData } from "./asar/integrity" -import { FuseOptionsV1 } from "./configuration" -import { copyFiles, FileMatcher, getFileMatchers, GetFileMatchersOptions, getMainFileMatchers, getNodeModuleFileMatcher } from "./fileMatcher" -import { createTransformer, isElectronCompileUsed } from "./fileTransformer" -import { Framework, isElectronBased } from "./Framework" +import { AppInfo } from "./appInfo.js.js" +import { checkFileInArchive } from "./asar/asarFileChecker.js.js" +import { AsarPackager } from "./asar/asarUtil.js.js" +import { AsarIntegrity, computeData } from "./asar/integrity.js.js" +import { FuseOptionsV1 } from "./configuration.js.js" +import { copyFiles, FileMatcher, getFileMatchers, GetFileMatchersOptions, getMainFileMatchers, getNodeModuleFileMatcher } from "./fileMatcher.js.js" +import { createTransformer, isElectronCompileUsed } from "./fileTransformer.js.js" +import { Framework, isElectronBased } from "./Framework.js.js" import { AfterPackContext, AsarOptions, @@ -45,10 +45,10 @@ import { Target, TargetSpecificOptions, } from "./index" -import { executeAppBuilderAsJson } from "./util/appBuilder" -import { computeFileSets, computeNodeModuleFileSets, copyAppFiles, ELECTRON_COMPILE_SHIM_FILENAME, transformFiles } from "./util/appFileCopier" -import { expandMacro as doExpandMacro } from "./util/macroExpander" -import { AssetCatalogResult, generateAssetCatalogForIcon } from "./util/macosIconComposer" +import { executeAppBuilderAsJson } from "./util/appBuilder.js.js" +import { computeFileSets, computeNodeModuleFileSets, copyAppFiles, ELECTRON_COMPILE_SHIM_FILENAME, transformFiles } from "./util/appFileCopier.js.js" +import { expandMacro as doExpandMacro } from "./util/macroExpander.js.js" +import { AssetCatalogResult, generateAssetCatalogForIcon } from "./util/macosIconComposer.js.js" export type DoPackOptions = { outDir: string diff --git a/packages/app-builder-lib/src/publish/PublishManager.ts b/packages/app-builder-lib/src/publish/PublishManager.ts index 4937da21301..642191b0b27 100644 --- a/packages/app-builder-lib/src/publish/PublishManager.ts +++ b/packages/app-builder-lib/src/publish/PublishManager.ts @@ -40,7 +40,7 @@ import { Packager } from "../packager" import { PlatformPackager } from "../platformPackager" import { expandMacro } from "../util/macroExpander" import { WinPackager } from "../winPackager" -import { createUpdateInfoTasks, UpdateInfoFileTask, writeUpdateInfoFiles } from "./updateInfoBuilder" +import { createUpdateInfoTasks, UpdateInfoFileTask, writeUpdateInfoFiles } from "./updateInfoBuilder.js.js" import { resolveModule } from "../util/resolve" const publishForPrWarning = diff --git a/packages/app-builder-lib/src/publish/updateInfoBuilder.ts b/packages/app-builder-lib/src/publish/updateInfoBuilder.ts index 76f3bce4213..819dc5d522e 100644 --- a/packages/app-builder-lib/src/publish/updateInfoBuilder.ts +++ b/packages/app-builder-lib/src/publish/updateInfoBuilder.ts @@ -11,7 +11,7 @@ import { Packager } from "../packager" import { ArtifactCreated } from "../packagerApi" import { PlatformPackager } from "../platformPackager" import { hashFile } from "../util/hash" -import { computeDownloadUrl, getPublishConfigsForUpdateInfo } from "./PublishManager" +import { computeDownloadUrl, getPublishConfigsForUpdateInfo } from "./PublishManager.js.js" async function getReleaseInfo(packager: PlatformPackager) { const releaseInfo: ReleaseInfo = { ...(packager.platformSpecificBuildOptions.releaseInfo || packager.config.releaseInfo) } diff --git a/packages/app-builder-lib/src/targets/AppImageTarget.ts b/packages/app-builder-lib/src/targets/AppImageTarget.ts index 797420aff1e..95f032dffb8 100644 --- a/packages/app-builder-lib/src/targets/AppImageTarget.ts +++ b/packages/app-builder-lib/src/targets/AppImageTarget.ts @@ -8,8 +8,8 @@ import { AppImageOptions } from "../options/linuxOptions" import { getAppUpdatePublishConfiguration } from "../publish/PublishManager" import { executeAppBuilderAsJson, objectToArgs } from "../util/appBuilder" import { getNotLocalizedLicenseFile } from "../util/license" -import { LinuxTargetHelper } from "./LinuxTargetHelper" -import { createStageDir } from "./targetUtil" +import { LinuxTargetHelper } from "./LinuxTargetHelper.js.js" +import { createStageDir } from "./targetUtil.js.js" // https://unix.stackexchange.com/questions/375191/append-to-sub-directory-inside-squashfs-file export default class AppImageTarget extends Target { diff --git a/packages/app-builder-lib/src/targets/AppxTarget.ts b/packages/app-builder-lib/src/targets/AppxTarget.ts index 07f71532e8c..e9f6663afde 100644 --- a/packages/app-builder-lib/src/targets/AppxTarget.ts +++ b/packages/app-builder-lib/src/targets/AppxTarget.ts @@ -8,7 +8,7 @@ import { Target } from "../core" import { getTemplatePath } from "../util/pathManager" import { VmManager } from "../vm/vm" import { WinPackager } from "../winPackager" -import { createStageDir } from "./targetUtil" +import { createStageDir } from "./targetUtil.js.js" const APPX_ASSETS_DIR_NAME = "appx" diff --git a/packages/app-builder-lib/src/targets/ArchiveTarget.ts b/packages/app-builder-lib/src/targets/ArchiveTarget.ts index 272c25fc76d..86414c12efe 100644 --- a/packages/app-builder-lib/src/targets/ArchiveTarget.ts +++ b/packages/app-builder-lib/src/targets/ArchiveTarget.ts @@ -3,8 +3,8 @@ import * as path from "path" import { Platform, Target, TargetSpecificOptions } from "../core" import { copyFiles, getFileMatchers } from "../fileMatcher" import { PlatformPackager } from "../platformPackager" -import { archive, tar } from "./archive" -import { appendBlockmap, createBlockmap } from "./differentialUpdateInfoBuilder" +import { archive, tar } from "./archive.js.js" +import { appendBlockmap, createBlockmap } from "./differentialUpdateInfoBuilder.js.js" export class ArchiveTarget extends Target { readonly options: TargetSpecificOptions = (this.packager.config as any)[this.name] diff --git a/packages/app-builder-lib/src/targets/FlatpakTarget.ts b/packages/app-builder-lib/src/targets/FlatpakTarget.ts index c19013873f2..33d938fd2ae 100644 --- a/packages/app-builder-lib/src/targets/FlatpakTarget.ts +++ b/packages/app-builder-lib/src/targets/FlatpakTarget.ts @@ -6,8 +6,8 @@ import { Target } from "../core" import { LinuxPackager } from "../linuxPackager" import { FlatpakOptions } from "../options/linuxOptions" import { getNotLocalizedLicenseFile } from "../util/license" -import { LinuxTargetHelper } from "./LinuxTargetHelper" -import { createStageDir, StageDir } from "./targetUtil" +import { LinuxTargetHelper } from "./LinuxTargetHelper.js.js" +import { createStageDir, StageDir } from "./targetUtil.js.js" export default class FlatpakTarget extends Target { readonly options: FlatpakOptions = { diff --git a/packages/app-builder-lib/src/targets/FpmTarget.ts b/packages/app-builder-lib/src/targets/FpmTarget.ts index 87e6235e9b3..502e364427f 100644 --- a/packages/app-builder-lib/src/targets/FpmTarget.ts +++ b/packages/app-builder-lib/src/targets/FpmTarget.ts @@ -15,8 +15,8 @@ import { computeEnv } from "../util/bundledTool" import { hashFile } from "../util/hash" import { isMacOsSierra } from "../util/macosVersion" import { getTemplatePath } from "../util/pathManager" -import { installPrefix, LinuxTargetHelper } from "./LinuxTargetHelper" -import { getFpmPath, getLinuxToolsPath } from "./tools" +import { installPrefix, LinuxTargetHelper } from "./LinuxTargetHelper.js.js" +import { getFpmPath, getLinuxToolsPath } from "./tools.js.js" interface FpmOptions { name: string diff --git a/packages/app-builder-lib/src/targets/MsiTarget.ts b/packages/app-builder-lib/src/targets/MsiTarget.ts index cc323a020f2..e172dbc91da 100644 --- a/packages/app-builder-lib/src/targets/MsiTarget.ts +++ b/packages/app-builder-lib/src/targets/MsiTarget.ts @@ -14,7 +14,7 @@ import { getTemplatePath } from "../util/pathManager" import { VmManager } from "../vm/vm" import { WineVmManager } from "../vm/WineVm" import { WinPackager } from "../winPackager" -import { createStageDir, getWindowsInstallationDirName } from "./targetUtil" +import { createStageDir, getWindowsInstallationDirName } from "./targetUtil.js.js" const ELECTRON_BUILDER_UPGRADE_CODE_NS_UUID = UUID.parse("d752fe43-5d44-44d5-9fc9-6dd1bf19d5cc") const ROOT_DIR_ID = "APPLICATIONFOLDER" diff --git a/packages/app-builder-lib/src/targets/MsiWrappedTarget.ts b/packages/app-builder-lib/src/targets/MsiWrappedTarget.ts index fa69fb343f7..c59a03fa101 100644 --- a/packages/app-builder-lib/src/targets/MsiWrappedTarget.ts +++ b/packages/app-builder-lib/src/targets/MsiWrappedTarget.ts @@ -5,7 +5,7 @@ import { MsiWrappedOptions } from "../" import { TargetConfiguration } from "../core" import { FinalCommonWindowsInstallerOptions } from "../options/CommonWindowsInstallerConfiguration" import { WinPackager } from "../winPackager" -import MsiTarget from "./MsiTarget" +import MsiTarget from "./MsiTarget.js.js" const ELECTRON_MSI_WRAPPED_NS_UUID = UUID.parse("467f7bb2-a83c-442f-b776-394d316e8e53") diff --git a/packages/app-builder-lib/src/targets/archive.ts b/packages/app-builder-lib/src/targets/archive.ts index be66e4c5e63..b4883fb7f72 100644 --- a/packages/app-builder-lib/src/targets/archive.ts +++ b/packages/app-builder-lib/src/targets/archive.ts @@ -4,7 +4,7 @@ import * as path from "path" import { create, CreateOptions, FileOptions } from "tar" import { TmpDir } from "temp-file" import { CompressionLevel } from "../core" -import { getLinuxToolsPath } from "./tools" +import { getLinuxToolsPath } from "./tools.js.js" /** @internal */ export async function tar(compression: CompressionLevel | any, format: string, outFile: string, dirToArchive: string, isMacApp: boolean, tempDirManager: TmpDir): Promise { diff --git a/packages/app-builder-lib/src/targets/differentialUpdateInfoBuilder.ts b/packages/app-builder-lib/src/targets/differentialUpdateInfoBuilder.ts index b5c71541367..71869cf1f0b 100644 --- a/packages/app-builder-lib/src/targets/differentialUpdateInfoBuilder.ts +++ b/packages/app-builder-lib/src/targets/differentialUpdateInfoBuilder.ts @@ -4,7 +4,7 @@ import * as path from "path" import { Target } from "../core" import { PlatformPackager } from "../platformPackager" import { executeAppBuilderAsJson } from "../util/appBuilder" -import { ArchiveOptions } from "./archive" +import { ArchiveOptions } from "./archive.js.js" export const BLOCK_MAP_FILE_SUFFIX = ".blockmap" diff --git a/packages/app-builder-lib/src/targets/nsis/Defines.ts b/packages/app-builder-lib/src/targets/nsis/Defines.ts index 912f07993f7..aa5e8052d85 100644 --- a/packages/app-builder-lib/src/targets/nsis/Defines.ts +++ b/packages/app-builder-lib/src/targets/nsis/Defines.ts @@ -1,4 +1,4 @@ -import { PortableOptions } from "./nsisOptions" +import { PortableOptions } from "./nsisOptions.js.js" /** * Parameters declared as environment variables in NSIS scripts. * The documentation vaguely explains "All other electron-builder specific flags (e.g. ONE_CLICK) are still defined." diff --git a/packages/app-builder-lib/src/targets/nsis/NsisTarget.ts b/packages/app-builder-lib/src/targets/nsis/NsisTarget.ts index d95633edaf2..d0358d8355f 100644 --- a/packages/app-builder-lib/src/targets/nsis/NsisTarget.ts +++ b/packages/app-builder-lib/src/targets/nsis/NsisTarget.ts @@ -31,13 +31,13 @@ import { WinPackager } from "../../winPackager" import { archive, ArchiveOptions } from "../archive" import { appendBlockmap, configureDifferentialAwareArchiveOptions, createBlockmap, createNsisWebDifferentialUpdateInfo } from "../differentialUpdateInfoBuilder" import { getWindowsInstallationAppPackageName, getWindowsInstallationDirName } from "../targetUtil" -import { Commands } from "./Commands" -import { Defines } from "./Defines" -import { addCustomMessageFileInclude, createAddLangsMacro, LangConfigurator } from "./nsisLang" -import { computeLicensePage } from "./nsisLicense" -import { NsisOptions, PortableOptions } from "./nsisOptions" -import { NsisScriptGenerator } from "./nsisScriptGenerator" -import { AppPackageHelper, NSIS_PATH, NSIS_RESOURCES_PATH, NsisTargetOptions, nsisTemplatesDir, UninstallerReader } from "./nsisUtil" +import { Commands } from "./Commands.js.js" +import { Defines } from "./Defines.js.js" +import { addCustomMessageFileInclude, createAddLangsMacro, LangConfigurator } from "./nsisLang.js.js" +import { computeLicensePage } from "./nsisLicense.js.js" +import { NsisOptions, PortableOptions } from "./nsisOptions.js.js" +import { NsisScriptGenerator } from "./nsisScriptGenerator.js.js" +import { AppPackageHelper, NSIS_PATH, NSIS_RESOURCES_PATH, NsisTargetOptions, nsisTemplatesDir, UninstallerReader } from "./nsisUtil.js.js" const debug = _debug("electron-builder:nsis") diff --git a/packages/app-builder-lib/src/targets/nsis/WebInstallerTarget.ts b/packages/app-builder-lib/src/targets/nsis/WebInstallerTarget.ts index cad495bdc36..de96916cd1b 100644 --- a/packages/app-builder-lib/src/targets/nsis/WebInstallerTarget.ts +++ b/packages/app-builder-lib/src/targets/nsis/WebInstallerTarget.ts @@ -1,9 +1,9 @@ import { Arch, log } from "builder-util" import { computeDownloadUrl, getPublishConfigs, getPublishConfigsForUpdateInfo } from "../../publish/PublishManager" import { WinPackager } from "../../winPackager" -import { NsisWebOptions } from "./nsisOptions" -import { NsisTarget } from "./NsisTarget" -import { AppPackageHelper } from "./nsisUtil" +import { NsisWebOptions } from "./nsisOptions.js.js" +import { NsisTarget } from "./NsisTarget.js.js" +import { AppPackageHelper } from "./nsisUtil.js.js" /** @private */ export class WebInstallerTarget extends NsisTarget { diff --git a/packages/app-builder-lib/src/targets/nsis/nsisLang.ts b/packages/app-builder-lib/src/targets/nsis/nsisLang.ts index c93779eb350..778fb6f67c8 100644 --- a/packages/app-builder-lib/src/targets/nsis/nsisLang.ts +++ b/packages/app-builder-lib/src/targets/nsis/nsisLang.ts @@ -5,9 +5,9 @@ import { load } from "js-yaml" import * as path from "path" import { PlatformPackager } from "../../platformPackager" import { bundledLanguages, langIdToName, lcid, toLangWithRegion } from "../../util/langs" -import { NsisOptions } from "./nsisOptions" -import { NsisScriptGenerator } from "./nsisScriptGenerator" -import { nsisTemplatesDir } from "./nsisUtil" +import { NsisOptions } from "./nsisOptions.js.js" +import { NsisScriptGenerator } from "./nsisScriptGenerator.js.js" +import { nsisTemplatesDir } from "./nsisUtil.js.js" const debug = _debug("electron-builder:nsis") diff --git a/packages/app-builder-lib/src/targets/nsis/nsisLicense.ts b/packages/app-builder-lib/src/targets/nsis/nsisLicense.ts index a5cfaf799cd..b08ebe1d1be 100644 --- a/packages/app-builder-lib/src/targets/nsis/nsisLicense.ts +++ b/packages/app-builder-lib/src/targets/nsis/nsisLicense.ts @@ -4,9 +4,9 @@ import * as path from "path" import { lcid } from "../../util/langs" import { getLicenseFiles, getNotLocalizedLicenseFile } from "../../util/license" import { WinPackager } from "../../winPackager" -import { NsisOptions } from "./nsisOptions" -import { NsisScriptGenerator } from "./nsisScriptGenerator" -import { nsisTemplatesDir } from "./nsisUtil" +import { NsisOptions } from "./nsisOptions.js.js" +import { NsisScriptGenerator } from "./nsisScriptGenerator.js.js" +import { nsisTemplatesDir } from "./nsisUtil.js.js" function convertFileToUtf8WithBOMSync(filePath: string): boolean { try { diff --git a/packages/app-builder-lib/src/targets/nsis/nsisUtil.ts b/packages/app-builder-lib/src/targets/nsis/nsisUtil.ts index c0efb72cd61..61f9e4f8f26 100644 --- a/packages/app-builder-lib/src/targets/nsis/nsisUtil.ts +++ b/packages/app-builder-lib/src/targets/nsis/nsisUtil.ts @@ -5,8 +5,8 @@ import * as path from "path" import * as zlib from "zlib" import { getBinFromCustomLoc, getBinFromUrl } from "../../binDownload" import { getTemplatePath } from "../../util/pathManager" -import { NsisOptions } from "./nsisOptions" -import { NsisTarget } from "./NsisTarget" +import { NsisOptions } from "./nsisOptions.js.js" +import { NsisTarget } from "./NsisTarget.js.js" export const nsisTemplatesDir = getTemplatePath("nsis") diff --git a/packages/app-builder-lib/src/targets/snap.ts b/packages/app-builder-lib/src/targets/snap.ts index 6dfc35a1552..3e279e725d3 100644 --- a/packages/app-builder-lib/src/targets/snap.ts +++ b/packages/app-builder-lib/src/targets/snap.ts @@ -9,8 +9,8 @@ import { Publish, Target } from "../core" import { LinuxPackager } from "../linuxPackager" import { PlugDescriptor, SnapOptions } from "../options/SnapOptions" import { getTemplatePath } from "../util/pathManager" -import { LinuxTargetHelper } from "./LinuxTargetHelper" -import { createStageDirPath } from "./targetUtil" +import { LinuxTargetHelper } from "./LinuxTargetHelper.js.js" +import { createStageDirPath } from "./targetUtil.js.js" const defaultPlugs = ["desktop", "desktop-legacy", "home", "x11", "wayland", "unity7", "browser-support", "network", "gsettings", "audio-playback", "pulseaudio", "opengl"] diff --git a/packages/app-builder-lib/src/targets/targetFactory.ts b/packages/app-builder-lib/src/targets/targetFactory.ts index 744d13a1f3a..baa61c53e12 100644 --- a/packages/app-builder-lib/src/targets/targetFactory.ts +++ b/packages/app-builder-lib/src/targets/targetFactory.ts @@ -1,7 +1,7 @@ import { addValue, Arch, archFromString, ArchType, asArray } from "builder-util" import { DEFAULT_TARGET, DIR_TARGET, Platform, Target, TargetConfiguration } from "../core" import { PlatformPackager } from "../platformPackager" -import { ArchiveTarget } from "./ArchiveTarget" +import { ArchiveTarget } from "./ArchiveTarget.js.js" const archiveTargets = new Set(["zip", "7z", "tar.xz", "tar.lz", "tar.gz", "tar.bz2"]) diff --git a/packages/app-builder-lib/src/util/NodeModuleCopyHelper.ts b/packages/app-builder-lib/src/util/NodeModuleCopyHelper.ts index 2d1b8333a5b..63c19a3f9f9 100644 --- a/packages/app-builder-lib/src/util/NodeModuleCopyHelper.ts +++ b/packages/app-builder-lib/src/util/NodeModuleCopyHelper.ts @@ -5,9 +5,9 @@ import * as path from "path" import asyncPool from "tiny-async-pool" import { excludedNames, FileMatcher } from "../fileMatcher" import { Packager } from "../packager" -import { FileCopyHelper } from "./AppFileWalker" -import { NodeModuleInfo } from "./packageDependencies" -import { resolveFunction } from "./resolve" +import { FileCopyHelper } from "./AppFileWalker.js.js" +import { NodeModuleInfo } from "./packageDependencies.js.js" +import { resolveFunction } from "./resolve.js.js" const excludedFiles = new Set( [ diff --git a/packages/app-builder-lib/src/util/appFileCopier.ts b/packages/app-builder-lib/src/util/appFileCopier.ts index d0fc6d3a996..87707e63e7b 100644 --- a/packages/app-builder-lib/src/util/appFileCopier.ts +++ b/packages/app-builder-lib/src/util/appFileCopier.ts @@ -10,9 +10,9 @@ import { excludedExts, FileMatcher } from "../fileMatcher" import { createElectronCompilerHost, NODE_MODULES_PATTERN } from "../fileTransformer" import { Packager } from "../packager" import { PlatformPackager } from "../platformPackager" -import { AppFileWalker } from "./AppFileWalker" -import { NodeModuleCopyHelper } from "./NodeModuleCopyHelper" -import { NodeModuleInfo } from "./packageDependencies" +import { AppFileWalker } from "./AppFileWalker.js.js" +import { NodeModuleCopyHelper } from "./NodeModuleCopyHelper.js.js" +import { NodeModuleInfo } from "./packageDependencies.js.js" import { getNodeModules } from "../node-module-collector" const BOWER_COMPONENTS_PATTERN = `${path.sep}bower_components${path.sep}` diff --git a/packages/app-builder-lib/src/util/config/config.ts b/packages/app-builder-lib/src/util/config/config.ts index 4bcefb9b9c3..9b908189e89 100644 --- a/packages/app-builder-lib/src/util/config/config.ts +++ b/packages/app-builder-lib/src/util/config/config.ts @@ -7,7 +7,7 @@ import { Configuration } from "../../configuration" import { FileSet } from "../../options/PlatformSpecificBuildOptions" import { reactCra } from "../../presets/rectCra" import { PACKAGE_VERSION } from "../../version" -import { getConfig as _getConfig, loadParentConfig, orNullIfFileNotExist, ReadConfigRequest } from "./load" +import { getConfig as _getConfig, loadParentConfig, orNullIfFileNotExist, ReadConfigRequest } from "./load.js.js" const validateSchema = require("@develar/schema-utils") // https://github.com/electron-userland/electron-builder/issues/1847 diff --git a/packages/app-builder-lib/src/util/license.ts b/packages/app-builder-lib/src/util/license.ts index 7b9f06eeee6..835320830a3 100644 --- a/packages/app-builder-lib/src/util/license.ts +++ b/packages/app-builder-lib/src/util/license.ts @@ -1,7 +1,7 @@ import { Nullish } from "builder-util-runtime" import * as path from "path" import { PlatformPackager } from "../platformPackager" -import { langIdToName, toLangWithRegion } from "./langs" +import { langIdToName, toLangWithRegion } from "./langs.js.js" export function getLicenseAssets(fileNames: Array, packager: PlatformPackager) { return fileNames diff --git a/packages/app-builder-lib/src/util/packageDependencies.ts b/packages/app-builder-lib/src/util/packageDependencies.ts index 86e11442a57..25990054904 100644 --- a/packages/app-builder-lib/src/util/packageDependencies.ts +++ b/packages/app-builder-lib/src/util/packageDependencies.ts @@ -1,5 +1,5 @@ import { Lazy } from "lazy-val" -import { executeAppBuilderAsJson } from "./appBuilder" +import { executeAppBuilderAsJson } from "./appBuilder.js.js" export function createLazyProductionDeps(projectDir: string, excludedDependencies: Array | null, flatten: T) { return new Lazy(async () => { diff --git a/packages/app-builder-lib/src/util/packageMetadata.ts b/packages/app-builder-lib/src/util/packageMetadata.ts index 7379225ac75..7d0ea1dcc34 100644 --- a/packages/app-builder-lib/src/util/packageMetadata.ts +++ b/packages/app-builder-lib/src/util/packageMetadata.ts @@ -4,7 +4,7 @@ import { readFile, readJson, readJsonSync } from "fs-extra" import * as path from "path" import * as semver from "semver" import { Metadata } from "../options/metadata" -import { normalizePackageData } from "./normalizePackageData" +import { normalizePackageData } from "./normalizePackageData.js.js" /** @internal */ export async function readPackageJson(file: string): Promise { diff --git a/packages/app-builder-lib/src/util/yarn.ts b/packages/app-builder-lib/src/util/yarn.ts index a4b004cff4e..0113e7f9ea1 100644 --- a/packages/app-builder-lib/src/util/yarn.ts +++ b/packages/app-builder-lib/src/util/yarn.ts @@ -4,11 +4,11 @@ import { Lazy } from "lazy-val" import { homedir } from "os" import * as path from "path" import { Configuration } from "../configuration" -import { executeAppBuilderAndWriteJson } from "./appBuilder" +import { executeAppBuilderAndWriteJson } from "./appBuilder.js.js" import { PM, getPackageManagerCommand } from "../node-module-collector" import { detectPackageManager } from "../node-module-collector/packageManager" -import { NodeModuleDirInfo } from "./packageDependencies" -import { rebuild as remoteRebuild } from "./rebuild" +import { NodeModuleDirInfo } from "./packageDependencies.js.js" +import { rebuild as remoteRebuild } from "./rebuild.js.js" import * as which from "which" import { RebuildOptions as ElectronRebuildOptions } from "@electron/rebuild" import { Nullish } from "builder-util-runtime" diff --git a/packages/app-builder-lib/src/vm/MonoVm.ts b/packages/app-builder-lib/src/vm/MonoVm.ts index fc97d8361fb..8cfb85be537 100644 --- a/packages/app-builder-lib/src/vm/MonoVm.ts +++ b/packages/app-builder-lib/src/vm/MonoVm.ts @@ -1,6 +1,6 @@ import { exec, ExtraSpawnOptions, spawn } from "builder-util" import { ExecFileOptions, SpawnOptions } from "child_process" -import { VmManager } from "./vm" +import { VmManager } from "./vm.js.js" export class MonoVmManager extends VmManager { constructor() { diff --git a/packages/app-builder-lib/src/vm/ParallelsVm.ts b/packages/app-builder-lib/src/vm/ParallelsVm.ts index 58c25190221..7179b40e06f 100644 --- a/packages/app-builder-lib/src/vm/ParallelsVm.ts +++ b/packages/app-builder-lib/src/vm/ParallelsVm.ts @@ -1,6 +1,6 @@ import { DebugLogger, ExtraSpawnOptions, exec, log, spawn } from "builder-util" import { ExecFileOptions, SpawnOptions, execFileSync } from "child_process" -import { VmManager } from "./vm" +import { VmManager } from "./vm.js.js" /** @internal */ export async function parseVmList(debugLogger: DebugLogger) { diff --git a/packages/app-builder-lib/src/vm/PwshVm.ts b/packages/app-builder-lib/src/vm/PwshVm.ts index 17a73e774ed..97545aba757 100644 --- a/packages/app-builder-lib/src/vm/PwshVm.ts +++ b/packages/app-builder-lib/src/vm/PwshVm.ts @@ -1,6 +1,6 @@ import { log } from "builder-util" import { Lazy } from "lazy-val" -import { isPwshAvailable, VmManager } from "./vm" +import { isPwshAvailable, VmManager } from "./vm.js.js" export class PwshVmManager extends VmManager { constructor() { diff --git a/packages/app-builder-lib/src/vm/WineVm.ts b/packages/app-builder-lib/src/vm/WineVm.ts index 2158ba865bd..6425964063f 100644 --- a/packages/app-builder-lib/src/vm/WineVm.ts +++ b/packages/app-builder-lib/src/vm/WineVm.ts @@ -2,7 +2,7 @@ import { ExtraSpawnOptions } from "builder-util" import { ExecFileOptions, SpawnOptions } from "child_process" import * as path from "path" import { execWine } from "../wine" -import { VmManager } from "./vm" +import { VmManager } from "./vm.js.js" export class WineVmManager extends VmManager { constructor() { diff --git a/packages/app-builder-lib/src/vm/vm.ts b/packages/app-builder-lib/src/vm/vm.ts index fd59430fa4a..3813863b886 100644 --- a/packages/app-builder-lib/src/vm/vm.ts +++ b/packages/app-builder-lib/src/vm/vm.ts @@ -2,7 +2,7 @@ import { DebugLogger, exec, ExtraSpawnOptions, InvalidConfigurationError, log, s import { ExecFileOptions, SpawnOptions } from "child_process" import { Lazy } from "lazy-val" import * as path from "path" -import { ParallelsVm } from "./ParallelsVm" +import { ParallelsVm } from "./ParallelsVm.js.js" export class VmManager { get pathSep(): string { return path.sep diff --git a/packages/app-builder-lib/src/winPackager.ts b/packages/app-builder-lib/src/winPackager.ts index 66932c00433..941bc6c68fc 100644 --- a/packages/app-builder-lib/src/winPackager.ts +++ b/packages/app-builder-lib/src/winPackager.ts @@ -5,27 +5,27 @@ import { readdir } from "fs/promises" import { isCI } from "ci-info" import { Lazy } from "lazy-val" import * as path from "path" -import { SignManager } from "./codeSign/signManager" -import { signWindows, WindowsSignOptions } from "./codeSign/windowsCodeSign" -import { WindowsSignAzureManager } from "./codeSign/windowsSignAzureManager" -import { FileCodeSigningInfo, getSignVendorPath, WindowsSignToolManager } from "./codeSign/windowsSignToolManager" -import { AfterPackContext } from "./configuration" -import { DIR_TARGET, Platform, Target } from "./core" -import { RequestedExecutionLevel, WindowsConfiguration } from "./options/winOptions" -import { Packager } from "./packager" -import { chooseNotNull, PlatformPackager } from "./platformPackager" -import AppXTarget from "./targets/AppxTarget" -import MsiTarget from "./targets/MsiTarget" -import MsiWrappedTarget from "./targets/MsiWrappedTarget" -import { NsisTarget } from "./targets/nsis/NsisTarget" -import { AppPackageHelper, CopyElevateHelper } from "./targets/nsis/nsisUtil" -import { WebInstallerTarget } from "./targets/nsis/WebInstallerTarget" -import { createCommonTarget } from "./targets/targetFactory" -import { BuildCacheManager, digest } from "./util/cacheManager" -import { isBuildCacheEnabled } from "./util/flags" -import { time } from "./util/timer" -import { getWindowsVm, VmManager } from "./vm/vm" -import { execWine } from "./wine" +import { SignManager } from "./codeSign/signManager.js.js" +import { signWindows, WindowsSignOptions } from "./codeSign/windowsCodeSign.js.js" +import { WindowsSignAzureManager } from "./codeSign/windowsSignAzureManager.js.js" +import { FileCodeSigningInfo, getSignVendorPath, WindowsSignToolManager } from "./codeSign/windowsSignToolManager.js.js" +import { AfterPackContext } from "./configuration.js.js" +import { DIR_TARGET, Platform, Target } from "./core.js.js" +import { RequestedExecutionLevel, WindowsConfiguration } from "./options/winOptions.js.js" +import { Packager } from "./packager.js.js" +import { chooseNotNull, PlatformPackager } from "./platformPackager.js.js" +import AppXTarget from "./targets/AppxTarget.js.js" +import MsiTarget from "./targets/MsiTarget.js.js" +import MsiWrappedTarget from "./targets/MsiWrappedTarget.js.js" +import { NsisTarget } from "./targets/nsis/NsisTarget.js.js" +import { AppPackageHelper, CopyElevateHelper } from "./targets/nsis/nsisUtil.js.js" +import { WebInstallerTarget } from "./targets/nsis/WebInstallerTarget.js.js" +import { createCommonTarget } from "./targets/targetFactory.js.js" +import { BuildCacheManager, digest } from "./util/cacheManager.js.js" +import { isBuildCacheEnabled } from "./util/flags.js.js" +import { time } from "./util/timer.js.js" +import { getWindowsVm, VmManager } from "./vm/vm.js.js" +import { execWine } from "./wine.js.js" export class WinPackager extends PlatformPackager { _iconPath = new Lazy(() => this.getOrConvertIcon("ico")) diff --git a/packages/builder-util-runtime/package.json b/packages/builder-util-runtime/package.json index d9373986996..971acbdeeaf 100644 --- a/packages/builder-util-runtime/package.json +++ b/packages/builder-util-runtime/package.json @@ -1,7 +1,8 @@ { "name": "builder-util-runtime", "version": "9.5.1", - "main": "out/index.js", + "type": "module", + "exports": "./out/index.js", "author": "Vladimir Krivosheev", "license": "MIT", "repository": { diff --git a/packages/builder-util-runtime/src/ProgressCallbackTransform.ts b/packages/builder-util-runtime/src/ProgressCallbackTransform.ts index 39fd25ea75a..1e9e8562232 100644 --- a/packages/builder-util-runtime/src/ProgressCallbackTransform.ts +++ b/packages/builder-util-runtime/src/ProgressCallbackTransform.ts @@ -1,5 +1,5 @@ import { Transform } from "stream" -import { CancellationToken } from "./CancellationToken" +import { CancellationToken } from "./CancellationToken.js" export interface ProgressInfo { total: number diff --git a/packages/builder-util-runtime/src/httpExecutor.ts b/packages/builder-util-runtime/src/httpExecutor.ts index 3502ac33351..9d8aa574d15 100644 --- a/packages/builder-util-runtime/src/httpExecutor.ts +++ b/packages/builder-util-runtime/src/httpExecutor.ts @@ -5,10 +5,10 @@ import { IncomingMessage, OutgoingHttpHeader, OutgoingHttpHeaders, RequestOption import { Socket } from "net" import { Transform } from "stream" import { URL } from "url" -import { Nullish } from "." -import { CancellationToken } from "./CancellationToken" -import { newError } from "./error" -import { ProgressCallbackTransform, ProgressInfo } from "./ProgressCallbackTransform" +import { Nullish } from "./index.js.js.js" +import { CancellationToken } from "./CancellationToken.js.js.js" +import { newError } from "./error.js.js.js" +import { ProgressCallbackTransform, ProgressInfo } from "./ProgressCallbackTransform.js.js.js" const debug = _debug("electron-builder") diff --git a/packages/builder-util-runtime/src/retry.ts b/packages/builder-util-runtime/src/retry.ts index d55dc5fa986..dee771a9e3a 100644 --- a/packages/builder-util-runtime/src/retry.ts +++ b/packages/builder-util-runtime/src/retry.ts @@ -1,4 +1,4 @@ -import { CancellationToken } from "./CancellationToken" +import { CancellationToken } from "./CancellationToken.js.js" export async function retry( task: () => Promise, diff --git a/packages/builder-util-runtime/src/uuid.ts b/packages/builder-util-runtime/src/uuid.ts index 74d5f6f1ca2..cab21137910 100644 --- a/packages/builder-util-runtime/src/uuid.ts +++ b/packages/builder-util-runtime/src/uuid.ts @@ -1,5 +1,5 @@ import { createHash, randomBytes } from "crypto" -import { newError } from "./error" +import { newError } from "./error.js.js" const invalidName = "options.name must be either a string or a Buffer" diff --git a/packages/builder-util-runtime/src/xml.ts b/packages/builder-util-runtime/src/xml.ts index d172124e0f4..ea53572a7c5 100644 --- a/packages/builder-util-runtime/src/xml.ts +++ b/packages/builder-util-runtime/src/xml.ts @@ -1,5 +1,5 @@ import * as sax from "sax" -import { newError } from "./error" +import { newError } from "./error.js.js" export class XElement { value = "" diff --git a/packages/builder-util/src/DebugLogger.ts b/packages/builder-util/src/DebugLogger.ts index 52517934f76..e39e0c2cf61 100644 --- a/packages/builder-util/src/DebugLogger.ts +++ b/packages/builder-util/src/DebugLogger.ts @@ -1,6 +1,6 @@ import { outputFile } from "fs-extra" -import { serializeToYaml } from "./util" -import { mapToObject } from "./mapper" +import { serializeToYaml } from "./util.js.js" +import { mapToObject } from "./mapper.js.js" export class DebugLogger { readonly data = new Map() diff --git a/packages/builder-util/src/asyncTaskManager.ts b/packages/builder-util/src/asyncTaskManager.ts index f27ca28b8d7..7a74e4002fe 100644 --- a/packages/builder-util/src/asyncTaskManager.ts +++ b/packages/builder-util/src/asyncTaskManager.ts @@ -1,6 +1,6 @@ import { CancellationToken } from "builder-util-runtime" -import { log } from "./log" -import { NestedError } from "./promise" +import { log } from "./log.js.js" +import { NestedError } from "./promise.js.js" export class AsyncTaskManager { readonly tasks: Array> = [] diff --git a/packages/builder-util/src/deepAssign.ts b/packages/builder-util/src/deepAssign.ts index 478b1842043..e3c5fce2d99 100644 --- a/packages/builder-util/src/deepAssign.ts +++ b/packages/builder-util/src/deepAssign.ts @@ -1,4 +1,4 @@ -import { isValidKey } from "./mapper" +import { isValidKey } from "./mapper.js.js" function isObject(x: any) { if (Array.isArray(x)) { diff --git a/packages/builder-util/src/fs.ts b/packages/builder-util/src/fs.ts index 40c4498fe2f..9d44e0f4eeb 100644 --- a/packages/builder-util/src/fs.ts +++ b/packages/builder-util/src/fs.ts @@ -6,8 +6,8 @@ import { platform } from "os" import * as path from "path" import { Mode } from "stat-mode" import asyncPool from "tiny-async-pool" -import { log } from "./log" -import { orIfFileNotExist, orNullIfFileNotExist } from "./promise" +import { log } from "./log.js.js" +import { orIfFileNotExist, orNullIfFileNotExist } from "./promise.js.js" export const MAX_FILE_REQUESTS = 8 diff --git a/packages/builder-util/src/util.ts b/packages/builder-util/src/util.ts index 360631a4266..bbd571c80cf 100644 --- a/packages/builder-util/src/util.ts +++ b/packages/builder-util/src/util.ts @@ -8,8 +8,8 @@ import _debug from "debug" import { dump } from "js-yaml" import * as path from "path" import { install as installSourceMap } from "source-map-support" -import { getPath7za } from "./7za" -import { debug, log } from "./log" +import { getPath7za } from "./7za.js.js" +import { debug, log } from "./log.js.js" if (process.env.JEST_WORKER_ID == null) { installSourceMap() diff --git a/packages/dmg-builder/package.json b/packages/dmg-builder/package.json index f530ccbd5af..3cca82a6cf6 100644 --- a/packages/dmg-builder/package.json +++ b/packages/dmg-builder/package.json @@ -1,7 +1,8 @@ { "name": "dmg-builder", "version": "26.3.5", - "main": "out/dmgUtil.js", + "type": "module", + "exports": "./out/dmgUtil.js", "author": "Vladimir Krivosheev", "license": "MIT", "repository": { diff --git a/packages/dmg-builder/src/dmg.ts b/packages/dmg-builder/src/dmg.ts index 29c004e66f5..ccb4ac55ee3 100644 --- a/packages/dmg-builder/src/dmg.ts +++ b/packages/dmg-builder/src/dmg.ts @@ -6,9 +6,9 @@ import { Arch, exec, getArchSuffix, InvalidConfigurationError, isEmptyOrSpaces } import { sanitizeFileName } from "builder-util/out/filename" import { release as getOsRelease } from "os" import * as path from "path" -import { addLicenseToDmg } from "./dmgLicense" -import { computeBackground, customizeDmg } from "./dmgUtil" -import { hdiUtil } from "./hdiuil" +import { addLicenseToDmg } from "./dmgLicense.js.js" +import { computeBackground, customizeDmg } from "./dmgUtil.js.js" +import { hdiUtil } from "./hdiuil.js.js" export interface DmgBuildConfig { title: string diff --git a/packages/dmg-builder/src/dmgLicense.ts b/packages/dmg-builder/src/dmgLicense.ts index 22f99542a73..b9589811015 100644 --- a/packages/dmg-builder/src/dmgLicense.ts +++ b/packages/dmg-builder/src/dmgLicense.ts @@ -4,7 +4,7 @@ import { log } from "builder-util" import { dmgLicenseFromJSON } from "dmg-license" import { readFile, readJson } from "fs-extra" import { load } from "js-yaml" -import { getLicenseButtonsFile } from "./licenseButtons" +import { getLicenseButtonsFile } from "./licenseButtons.js.js" // License Specifications // https://github.com/argv-minus-one/dmg-license/blob/HEAD/docs/License%20Specifications.md diff --git a/packages/dmg-builder/src/dmgUtil.ts b/packages/dmg-builder/src/dmgUtil.ts index add70ea24d4..691e25323c4 100644 --- a/packages/dmg-builder/src/dmgUtil.ts +++ b/packages/dmg-builder/src/dmgUtil.ts @@ -1,9 +1,9 @@ import { DmgOptions, MacPackager, PlatformPackager } from "app-builder-lib" import { exec, executeFinally, exists, isEmptyOrSpaces, TmpDir } from "builder-util" import * as path from "path" -import { hdiUtil, hdiutilTransientExitCodes } from "./hdiuil" +import { hdiUtil, hdiutilTransientExitCodes } from "./hdiuil.js.js" import { writeFile } from "fs-extra" -import { DmgBuildConfig } from "./dmg" +import { DmgBuildConfig } from "./dmg.js.js" export { DmgTarget } from "./dmg" diff --git a/packages/dmg-builder/src/hdiuil.ts b/packages/dmg-builder/src/hdiuil.ts index 2df92c9eb39..31bf7e36dd6 100644 --- a/packages/dmg-builder/src/hdiuil.ts +++ b/packages/dmg-builder/src/hdiuil.ts @@ -52,7 +52,7 @@ const shouldRetry = (args: string[]) => (error: any) => { } export async function hdiUtil(args: string[]): Promise { - return retry(() => exec("hdiutil", args), { + return await retry(() => exec("hdiutil", args), { retries: 5, interval: 5000, backoff: 2000, diff --git a/packages/dmg-builder/src/licenseButtons.ts b/packages/dmg-builder/src/licenseButtons.ts index aac1ae12c58..e26a07d2193 100644 --- a/packages/dmg-builder/src/licenseButtons.ts +++ b/packages/dmg-builder/src/licenseButtons.ts @@ -4,8 +4,8 @@ import { log } from "builder-util" import { readFile } from "fs-extra" import * as iconv from "iconv-lite" import { load } from "js-yaml" -import { serializeString } from "./dmgUtil" -import { getDefaultButtons } from "./licenseDefaultButtons" +import { serializeString } from "./dmgUtil.js.js" +import { getDefaultButtons } from "./licenseDefaultButtons.js.js" export async function getLicenseButtonsFile(packager: PlatformPackager): Promise> { return getLicenseAssets( diff --git a/packages/electron-builder-squirrel-windows/package.json b/packages/electron-builder-squirrel-windows/package.json index c3025e7f22e..dd9e4acd7aa 100644 --- a/packages/electron-builder-squirrel-windows/package.json +++ b/packages/electron-builder-squirrel-windows/package.json @@ -1,7 +1,8 @@ { "name": "electron-builder-squirrel-windows", "version": "26.3.5", - "main": "out/SquirrelWindowsTarget.js", + "type": "module", + "exports": "./out/SquirrelWindowsTarget.js", "author": "Vladimir Krivosheev", "license": "MIT", "repository": { diff --git a/packages/electron-builder/package.json b/packages/electron-builder/package.json index efc5a566d8b..cd0e52bbd46 100644 --- a/packages/electron-builder/package.json +++ b/packages/electron-builder/package.json @@ -2,7 +2,8 @@ "name": "electron-builder", "description": "A complete solution to package and build a ready for distribution Electron app for MacOS, Windows and Linux with “auto update” support out of the box", "version": "26.3.5", - "main": "out/index.js", + "type": "module", + "exports": "./out/index.js", "files": [ "out" ], diff --git a/packages/electron-builder/src/cli/cli.ts b/packages/electron-builder/src/cli/cli.ts index 114b9df2380..315e98fadc8 100644 --- a/packages/electron-builder/src/cli/cli.ts +++ b/packages/electron-builder/src/cli/cli.ts @@ -10,9 +10,9 @@ import { isCI } from "ci-info" import * as path from "path" import { build, configureBuildCommand, createYargs } from "../builder" import { configurePublishCommand, publish } from "../publish" -import { createSelfSignedCert } from "./create-self-signed-cert" -import { configureInstallAppDepsCommand, installAppDeps } from "./install-app-deps" -import { start } from "./start" +import { createSelfSignedCert } from "./create-self-signed-cert.js.js" +import { configureInstallAppDepsCommand, installAppDeps } from "./install-app-deps.js.js" +import { start } from "./start.js.js" // tslint:disable:no-unused-expression void createYargs() diff --git a/packages/electron-builder/src/publish.ts b/packages/electron-builder/src/publish.ts index 626ed6247be..bfea0dee611 100644 --- a/packages/electron-builder/src/publish.ts +++ b/packages/electron-builder/src/publish.ts @@ -9,7 +9,7 @@ import { PublishPolicy } from "electron-publish" import * as chalk from "chalk" import * as path from "path" import * as yargs from "yargs" -import { BuildOptions, normalizeOptions } from "./builder" +import { BuildOptions, normalizeOptions } from "./builder.js.js" /** @internal */ export function configurePublishCommand(yargs: yargs.Argv): yargs.Argv { diff --git a/packages/electron-publish/package.json b/packages/electron-publish/package.json index b3bcd8a6a3a..c505f274608 100644 --- a/packages/electron-publish/package.json +++ b/packages/electron-publish/package.json @@ -1,7 +1,8 @@ { "name": "electron-publish", "version": "26.3.4", - "main": "out/index.js", + "type": "module", + "exports": "./out/index.js", "author": "Vladimir Krivosheev", "license": "MIT", "repository": { diff --git a/packages/electron-publish/src/bitbucketPublisher.ts b/packages/electron-publish/src/bitbucketPublisher.ts index 5fc1397b234..e176e3dacf0 100644 --- a/packages/electron-publish/src/bitbucketPublisher.ts +++ b/packages/electron-publish/src/bitbucketPublisher.ts @@ -5,7 +5,7 @@ import * as FormData from "form-data" import { readFile } from "fs-extra" import { ClientRequest, RequestOptions } from "http" import { PublishContext } from "./" -import { HttpPublisher } from "./httpPublisher" +import { HttpPublisher } from "./httpPublisher.js.js" export class BitbucketPublisher extends HttpPublisher { readonly providerName = "bitbucket" diff --git a/packages/electron-publish/src/gitHubPublisher.ts b/packages/electron-publish/src/gitHubPublisher.ts index 922ad6b2ca2..afc9c1cbdd7 100644 --- a/packages/electron-publish/src/gitHubPublisher.ts +++ b/packages/electron-publish/src/gitHubPublisher.ts @@ -4,9 +4,9 @@ import { ClientRequest } from "http" import { Lazy } from "lazy-val" import * as mime from "mime" import { parse as parseUrl, UrlWithStringQuery } from "url" -import { HttpPublisher } from "./httpPublisher" -import { PublishContext, PublishOptions } from "./index" -import { getCiTag } from "./publisher" +import { HttpPublisher } from "./httpPublisher.js.js" +import { PublishContext, PublishOptions } from "./index.js.js" +import { getCiTag } from "./publisher.js.js" export interface Release { id: number diff --git a/packages/electron-publish/src/gitlabPublisher.ts b/packages/electron-publish/src/gitlabPublisher.ts index 9250fb0fb63..ad2c41a0061 100644 --- a/packages/electron-publish/src/gitlabPublisher.ts +++ b/packages/electron-publish/src/gitlabPublisher.ts @@ -8,8 +8,8 @@ import { Lazy } from "lazy-val" import * as mime from "mime" import * as FormData from "form-data" import { URL } from "url" -import { HttpPublisher } from "./httpPublisher" -import { PublishContext } from "./index" +import { HttpPublisher } from "./httpPublisher.js.js" +import { PublishContext } from "./index.js.js" type RequestProcessor = (request: ClientRequest, reject: (error: Error) => void) => void diff --git a/packages/electron-publish/src/httpPublisher.ts b/packages/electron-publish/src/httpPublisher.ts index 8c19d036575..40618cf7370 100644 --- a/packages/electron-publish/src/httpPublisher.ts +++ b/packages/electron-publish/src/httpPublisher.ts @@ -3,7 +3,7 @@ import { stat } from "fs-extra" import { ClientRequest } from "http" import { basename } from "path" import { PublishContext, UploadTask } from "." -import { Publisher } from "./publisher" +import { Publisher } from "./publisher.js.js" export abstract class HttpPublisher extends Publisher { protected constructor( diff --git a/packages/electron-publish/src/index.ts b/packages/electron-publish/src/index.ts index b2471778988..c043f271f6b 100644 --- a/packages/electron-publish/src/index.ts +++ b/packages/electron-publish/src/index.ts @@ -1,6 +1,6 @@ import { Arch } from "builder-util" import { CancellationToken } from "builder-util-runtime" -import { MultiProgress } from "./multiProgress" +import { MultiProgress } from "./multiProgress.js.js" export { BitbucketPublisher } from "./bitbucketPublisher" export { GitHubPublisher } from "./gitHubPublisher" diff --git a/packages/electron-publish/src/keygenPublisher.ts b/packages/electron-publish/src/keygenPublisher.ts index 9e5a709de53..cfedf1fc6f4 100644 --- a/packages/electron-publish/src/keygenPublisher.ts +++ b/packages/electron-publish/src/keygenPublisher.ts @@ -4,7 +4,7 @@ import { KeygenOptions } from "builder-util-runtime/out/publishOptions" import { getCompleteExtname } from "builder-util/out/filename" import { ClientRequest, RequestOptions } from "http" import { PublishContext } from "./" -import { HttpPublisher } from "./httpPublisher" +import { HttpPublisher } from "./httpPublisher.js.js" type RecursivePartial = { [P in keyof T]?: RecursivePartial diff --git a/packages/electron-publish/src/multiProgress.ts b/packages/electron-publish/src/multiProgress.ts index 6321d51141d..31ac916b627 100644 --- a/packages/electron-publish/src/multiProgress.ts +++ b/packages/electron-publish/src/multiProgress.ts @@ -1,5 +1,5 @@ import { setPrinter } from "builder-util" -import { ProgressBar } from "./progress" +import { ProgressBar } from "./progress.js.js" export class MultiProgress { private readonly stream = process.stdout as any diff --git a/packages/electron-publish/src/publisher.ts b/packages/electron-publish/src/publisher.ts index 57fbd51c3ea..b0e5050139c 100644 --- a/packages/electron-publish/src/publisher.ts +++ b/packages/electron-publish/src/publisher.ts @@ -3,7 +3,7 @@ import { ProgressCallbackTransform, PublishProvider } from "builder-util-runtime import * as chalk from "chalk" import { createReadStream, Stats } from "fs-extra" import { PublishContext, UploadTask } from "." -import { ProgressBar } from "./progress" +import { ProgressBar } from "./progress.js.js" const progressBarOptions = { incomplete: " ", diff --git a/packages/electron-publish/src/s3/s3Publisher.ts b/packages/electron-publish/src/s3/s3Publisher.ts index 404805fe6c8..cad7762885f 100644 --- a/packages/electron-publish/src/s3/s3Publisher.ts +++ b/packages/electron-publish/src/s3/s3Publisher.ts @@ -1,7 +1,7 @@ import { executeAppBuilder, InvalidConfigurationError, log } from "builder-util" import { S3Options } from "builder-util-runtime" import { PublishContext } from ".." -import { BaseS3Publisher } from "./baseS3Publisher" +import { BaseS3Publisher } from "./baseS3Publisher.js.js" export class S3Publisher extends BaseS3Publisher { readonly providerName = "s3" diff --git a/packages/electron-publish/src/s3/spacesPublisher.ts b/packages/electron-publish/src/s3/spacesPublisher.ts index d5149602910..551314a126d 100644 --- a/packages/electron-publish/src/s3/spacesPublisher.ts +++ b/packages/electron-publish/src/s3/spacesPublisher.ts @@ -1,7 +1,7 @@ import { InvalidConfigurationError, isEmptyOrSpaces } from "builder-util" import { SpacesOptions } from "builder-util-runtime" import { PublishContext } from "../" -import { BaseS3Publisher } from "./baseS3Publisher" +import { BaseS3Publisher } from "./baseS3Publisher.js.js" export class SpacesPublisher extends BaseS3Publisher { readonly providerName = "spaces" diff --git a/packages/electron-publish/src/snapStorePublisher.ts b/packages/electron-publish/src/snapStorePublisher.ts index 52a31c9f54e..a86c823d69e 100644 --- a/packages/electron-publish/src/snapStorePublisher.ts +++ b/packages/electron-publish/src/snapStorePublisher.ts @@ -2,7 +2,7 @@ import { executeAppBuilder } from "builder-util" import { SnapStoreOptions } from "builder-util-runtime/out/publishOptions" import * as path from "path" import { PublishContext, UploadTask } from "." -import { Publisher } from "./publisher" +import { Publisher } from "./publisher.js.js" export class SnapStorePublisher extends Publisher { readonly providerName = "snapStore" diff --git a/packages/electron-updater/package.json b/packages/electron-updater/package.json index 19ddfdb8fad..4a922f6bcf7 100644 --- a/packages/electron-updater/package.json +++ b/packages/electron-updater/package.json @@ -2,7 +2,8 @@ "name": "electron-updater", "version": "6.7.3", "description": "Cross platform updater for electron applications", - "main": "out/main.js", + "type": "module", + "exports": "./out/index.js", "author": "Vladimir Krivosheev", "license": "MIT", "repository": { diff --git a/packages/electron-updater/src/AppImageUpdater.ts b/packages/electron-updater/src/AppImageUpdater.ts index 15c95a71e66..866ad3c1c69 100644 --- a/packages/electron-updater/src/AppImageUpdater.ts +++ b/packages/electron-updater/src/AppImageUpdater.ts @@ -3,12 +3,12 @@ import { execFileSync } from "child_process" import { chmod } from "fs-extra" import { unlinkSync } from "fs" import * as path from "path" -import { DownloadUpdateOptions } from "./AppUpdater" -import { BaseUpdater, InstallOptions } from "./BaseUpdater" -import { DifferentialDownloaderOptions } from "./differentialDownloader/DifferentialDownloader" -import { FileWithEmbeddedBlockMapDifferentialDownloader } from "./differentialDownloader/FileWithEmbeddedBlockMapDifferentialDownloader" -import { findFile, Provider } from "./providers/Provider" -import { DOWNLOAD_PROGRESS, ResolvedUpdateFileInfo } from "./types" +import { DownloadUpdateOptions } from "./AppUpdater.js.js" +import { BaseUpdater, InstallOptions } from "./BaseUpdater.js.js" +import { DifferentialDownloaderOptions } from "./differentialDownloader/DifferentialDownloader.js.js" +import { FileWithEmbeddedBlockMapDifferentialDownloader } from "./differentialDownloader/FileWithEmbeddedBlockMapDifferentialDownloader.js.js" +import { findFile, Provider } from "./providers/Provider.js.js" +import { DOWNLOAD_PROGRESS, ResolvedUpdateFileInfo } from "./types.js.js" export class AppImageUpdater extends BaseUpdater { constructor(options?: AllPublishOptions | null, app?: any) { diff --git a/packages/electron-updater/src/AppUpdater.ts b/packages/electron-updater/src/AppUpdater.ts index e69afe62d35..303c548b2fa 100644 --- a/packages/electron-updater/src/AppUpdater.ts +++ b/packages/electron-updater/src/AppUpdater.ts @@ -21,21 +21,21 @@ import { load } from "js-yaml" import { Lazy } from "lazy-val" import * as path from "path" import { eq as isVersionsEqual, gt as isVersionGreaterThan, lt as isVersionLessThan, parse as parseVersion, prerelease as getVersionPreleaseComponents, SemVer } from "semver" -import { AppAdapter } from "./AppAdapter" -import { createTempUpdateFile, DownloadedUpdateHelper } from "./DownloadedUpdateHelper" -import { ElectronAppAdapter } from "./ElectronAppAdapter" -import { ElectronHttpExecutor, getNetSession, LoginCallback } from "./electronHttpExecutor" -import { GenericProvider } from "./providers/GenericProvider" -import { createClient, isUrlProbablySupportMultiRangeRequests } from "./providerFactory" -import { Provider, ProviderPlatform } from "./providers/Provider" +import { AppAdapter } from "./AppAdapter.js.js" +import { createTempUpdateFile, DownloadedUpdateHelper } from "./DownloadedUpdateHelper.js.js" +import { ElectronAppAdapter } from "./ElectronAppAdapter.js.js" +import { ElectronHttpExecutor, getNetSession, LoginCallback } from "./electronHttpExecutor.js.js" +import { GenericProvider } from "./providers/GenericProvider.js.js" +import { createClient, isUrlProbablySupportMultiRangeRequests } from "./providerFactory.js.js" +import { Provider, ProviderPlatform } from "./providers/Provider.js.js" import type { TypedEmitter } from "tiny-typed-emitter" import Session = Electron.Session import type { AuthInfo } from "electron" import { gunzipSync, gzipSync } from "zlib" -import { DifferentialDownloaderOptions } from "./differentialDownloader/DifferentialDownloader" -import { GenericDifferentialDownloader } from "./differentialDownloader/GenericDifferentialDownloader" -import { DOWNLOAD_PROGRESS, Logger, ResolvedUpdateFileInfo, UPDATE_DOWNLOADED, UpdateCheckResult, UpdateDownloadedEvent, UpdaterSignal } from "./types" -import { VerifyUpdateSupport } from "./main" +import { DifferentialDownloaderOptions } from "./differentialDownloader/DifferentialDownloader.js.js" +import { GenericDifferentialDownloader } from "./differentialDownloader/GenericDifferentialDownloader.js.js" +import { DOWNLOAD_PROGRESS, Logger, ResolvedUpdateFileInfo, UPDATE_DOWNLOADED, UpdateCheckResult, UpdateDownloadedEvent, UpdaterSignal } from "./types.js.js" +import { VerifyUpdateSupport } from "./main.js.js" export type AppUpdaterEvents = { error: (error: Error, message?: string) => void diff --git a/packages/electron-updater/src/BaseUpdater.ts b/packages/electron-updater/src/BaseUpdater.ts index f8fc13964aa..d4473b83fae 100644 --- a/packages/electron-updater/src/BaseUpdater.ts +++ b/packages/electron-updater/src/BaseUpdater.ts @@ -1,7 +1,7 @@ import { AllPublishOptions } from "builder-util-runtime" import { spawn, SpawnOptions, spawnSync, StdioOptions } from "child_process" -import { AppAdapter } from "./AppAdapter" -import { AppUpdater, DownloadExecutorTask } from "./AppUpdater" +import { AppAdapter } from "./AppAdapter.js.js" +import { AppUpdater, DownloadExecutorTask } from "./AppUpdater.js.js" export abstract class BaseUpdater extends AppUpdater { protected quitAndInstallCalled = false diff --git a/packages/electron-updater/src/DebUpdater.ts b/packages/electron-updater/src/DebUpdater.ts index c3512c8f72e..9ec87e72790 100644 --- a/packages/electron-updater/src/DebUpdater.ts +++ b/packages/electron-updater/src/DebUpdater.ts @@ -1,10 +1,10 @@ import { AllPublishOptions } from "builder-util-runtime" -import { AppAdapter } from "./AppAdapter" -import { DownloadUpdateOptions } from "./AppUpdater" -import { InstallOptions } from "./BaseUpdater" -import { findFile } from "./providers/Provider" -import { DOWNLOAD_PROGRESS, Logger } from "./types" -import { LinuxUpdater } from "./LinuxUpdater" +import { AppAdapter } from "./AppAdapter.js.js" +import { DownloadUpdateOptions } from "./AppUpdater.js.js" +import { InstallOptions } from "./BaseUpdater.js.js" +import { findFile } from "./providers/Provider.js.js" +import { DOWNLOAD_PROGRESS, Logger } from "./types.js.js" +import { LinuxUpdater } from "./LinuxUpdater.js.js" export class DebUpdater extends LinuxUpdater { constructor(options?: AllPublishOptions | null, app?: AppAdapter) { diff --git a/packages/electron-updater/src/DownloadedUpdateHelper.ts b/packages/electron-updater/src/DownloadedUpdateHelper.ts index c032d790892..db7fe0de6c1 100644 --- a/packages/electron-updater/src/DownloadedUpdateHelper.ts +++ b/packages/electron-updater/src/DownloadedUpdateHelper.ts @@ -3,8 +3,8 @@ import { createHash } from "crypto" import { createReadStream } from "fs" // @ts-ignore import * as isEqual from "lodash.isequal" -import { ResolvedUpdateFileInfo } from "./types" -import { Logger } from "./types" +import { ResolvedUpdateFileInfo } from "./types.js.js" +import { Logger } from "./types.js.js" import { pathExists, readJson, emptyDir, outputJson, unlink } from "fs-extra" import * as path from "path" diff --git a/packages/electron-updater/src/ElectronAppAdapter.ts b/packages/electron-updater/src/ElectronAppAdapter.ts index a4480f8624f..b3dc0cd3819 100644 --- a/packages/electron-updater/src/ElectronAppAdapter.ts +++ b/packages/electron-updater/src/ElectronAppAdapter.ts @@ -1,5 +1,5 @@ import * as path from "path" -import { AppAdapter, getAppCacheDir } from "./AppAdapter" +import { AppAdapter, getAppCacheDir } from "./AppAdapter.js.js" export class ElectronAppAdapter implements AppAdapter { constructor(private readonly app = require("electron").app) {} diff --git a/packages/electron-updater/src/LinuxUpdater.ts b/packages/electron-updater/src/LinuxUpdater.ts index 53a5eadf3a6..d362e1ddbba 100644 --- a/packages/electron-updater/src/LinuxUpdater.ts +++ b/packages/electron-updater/src/LinuxUpdater.ts @@ -1,6 +1,6 @@ import { AllPublishOptions } from "builder-util-runtime" -import { AppAdapter } from "./AppAdapter" -import { BaseUpdater } from "./BaseUpdater" +import { AppAdapter } from "./AppAdapter.js.js" +import { BaseUpdater } from "./BaseUpdater.js.js" export abstract class LinuxUpdater extends BaseUpdater { constructor(options?: AllPublishOptions | null, app?: AppAdapter) { diff --git a/packages/electron-updater/src/MacUpdater.ts b/packages/electron-updater/src/MacUpdater.ts index 0a76b2a1701..3d95523bca6 100644 --- a/packages/electron-updater/src/MacUpdater.ts +++ b/packages/electron-updater/src/MacUpdater.ts @@ -3,11 +3,11 @@ import { pathExistsSync, stat, copyFile } from "fs-extra" import { createReadStream } from "fs" import * as path from "path" import { createServer, IncomingMessage, Server, ServerResponse } from "http" -import { AppAdapter } from "./AppAdapter" -import { AppUpdater, DownloadUpdateOptions } from "./AppUpdater" -import { ResolvedUpdateFileInfo } from "./main" -import { UpdateDownloadedEvent } from "./types" -import { findFile } from "./providers/Provider" +import { AppAdapter } from "./AppAdapter.js.js" +import { AppUpdater, DownloadUpdateOptions } from "./AppUpdater.js.js" +import { ResolvedUpdateFileInfo } from "./main.js.js" +import { UpdateDownloadedEvent } from "./types.js.js" +import { findFile } from "./providers/Provider.js.js" import AutoUpdater = Electron.AutoUpdater import { execFileSync } from "child_process" import { randomBytes } from "crypto" diff --git a/packages/electron-updater/src/NsisUpdater.ts b/packages/electron-updater/src/NsisUpdater.ts index ada9e9ed7ba..492f1b191a7 100644 --- a/packages/electron-updater/src/NsisUpdater.ts +++ b/packages/electron-updater/src/NsisUpdater.ts @@ -1,15 +1,15 @@ import { AllPublishOptions, newError, PackageFileInfo, CURRENT_APP_INSTALLER_FILE_NAME, CURRENT_APP_PACKAGE_FILE_NAME } from "builder-util-runtime" import * as path from "path" -import { AppAdapter } from "./AppAdapter" -import { DownloadUpdateOptions } from "./AppUpdater" -import { BaseUpdater, InstallOptions } from "./BaseUpdater" -import { DifferentialDownloaderOptions } from "./differentialDownloader/DifferentialDownloader" -import { FileWithEmbeddedBlockMapDifferentialDownloader } from "./differentialDownloader/FileWithEmbeddedBlockMapDifferentialDownloader" -import { DOWNLOAD_PROGRESS } from "./types" -import { VerifyUpdateCodeSignature } from "./main" -import { findFile, Provider } from "./providers/Provider" +import { AppAdapter } from "./AppAdapter.js.js" +import { DownloadUpdateOptions } from "./AppUpdater.js.js" +import { BaseUpdater, InstallOptions } from "./BaseUpdater.js.js" +import { DifferentialDownloaderOptions } from "./differentialDownloader/DifferentialDownloader.js.js" +import { FileWithEmbeddedBlockMapDifferentialDownloader } from "./differentialDownloader/FileWithEmbeddedBlockMapDifferentialDownloader.js.js" +import { DOWNLOAD_PROGRESS } from "./types.js.js" +import { VerifyUpdateCodeSignature } from "./main.js.js" +import { findFile, Provider } from "./providers/Provider.js.js" import { unlink } from "fs-extra" -import { verifySignature } from "./windowsExecutableCodeSignatureVerifier" +import { verifySignature } from "./windowsExecutableCodeSignatureVerifier.js.js" import { URL } from "url" export class NsisUpdater extends BaseUpdater { diff --git a/packages/electron-updater/src/PacmanUpdater.ts b/packages/electron-updater/src/PacmanUpdater.ts index c329c8a9e86..86c0eabdbb7 100644 --- a/packages/electron-updater/src/PacmanUpdater.ts +++ b/packages/electron-updater/src/PacmanUpdater.ts @@ -1,10 +1,10 @@ import { AllPublishOptions } from "builder-util-runtime" -import { AppAdapter } from "./AppAdapter" -import { DownloadUpdateOptions } from "./AppUpdater" -import { InstallOptions } from "./BaseUpdater" -import { DOWNLOAD_PROGRESS, Logger } from "./types" -import { findFile } from "./providers/Provider" -import { LinuxUpdater } from "./LinuxUpdater" +import { AppAdapter } from "./AppAdapter.js.js" +import { DownloadUpdateOptions } from "./AppUpdater.js.js" +import { InstallOptions } from "./BaseUpdater.js.js" +import { DOWNLOAD_PROGRESS, Logger } from "./types.js.js" +import { findFile } from "./providers/Provider.js.js" +import { LinuxUpdater } from "./LinuxUpdater.js.js" export class PacmanUpdater extends LinuxUpdater { constructor(options?: AllPublishOptions | null, app?: AppAdapter) { diff --git a/packages/electron-updater/src/RpmUpdater.ts b/packages/electron-updater/src/RpmUpdater.ts index eb2b360ed5e..9b17c5f648e 100644 --- a/packages/electron-updater/src/RpmUpdater.ts +++ b/packages/electron-updater/src/RpmUpdater.ts @@ -1,10 +1,10 @@ import { AllPublishOptions } from "builder-util-runtime" -import { AppAdapter } from "./AppAdapter" -import { DownloadUpdateOptions } from "./AppUpdater" -import { InstallOptions } from "./BaseUpdater" -import { DOWNLOAD_PROGRESS, Logger } from "./types" -import { findFile } from "./providers/Provider" -import { LinuxUpdater } from "./LinuxUpdater" +import { AppAdapter } from "./AppAdapter.js.js" +import { DownloadUpdateOptions } from "./AppUpdater.js.js" +import { InstallOptions } from "./BaseUpdater.js.js" +import { DOWNLOAD_PROGRESS, Logger } from "./types.js.js" +import { findFile } from "./providers/Provider.js.js" +import { LinuxUpdater } from "./LinuxUpdater.js.js" export class RpmUpdater extends LinuxUpdater { constructor(options?: AllPublishOptions | null, app?: AppAdapter) { diff --git a/packages/electron-updater/src/differentialDownloader/DataSplitter.ts b/packages/electron-updater/src/differentialDownloader/DataSplitter.ts index 08625290256..905952768e2 100644 --- a/packages/electron-updater/src/differentialDownloader/DataSplitter.ts +++ b/packages/electron-updater/src/differentialDownloader/DataSplitter.ts @@ -1,7 +1,7 @@ import { newError } from "builder-util-runtime" import { createReadStream } from "fs" import { Writable } from "stream" -import { Operation, OperationKind } from "./downloadPlanBuilder" +import { Operation, OperationKind } from "./downloadPlanBuilder.js.js" const DOUBLE_CRLF = Buffer.from("\r\n\r\n") diff --git a/packages/electron-updater/src/differentialDownloader/DifferentialDownloader.ts b/packages/electron-updater/src/differentialDownloader/DifferentialDownloader.ts index e92faab4e33..029368ddcce 100644 --- a/packages/electron-updater/src/differentialDownloader/DifferentialDownloader.ts +++ b/packages/electron-updater/src/differentialDownloader/DifferentialDownloader.ts @@ -5,11 +5,11 @@ import { createWriteStream } from "fs" import { OutgoingHttpHeaders, RequestOptions } from "http" import { ProgressInfo, CancellationToken } from "builder-util-runtime" import { Logger } from "../types" -import { copyData } from "./DataSplitter" +import { copyData } from "./DataSplitter.js.js" import { URL } from "url" -import { computeOperations, Operation, OperationKind } from "./downloadPlanBuilder" -import { checkIsRangesSupported, executeTasksUsingMultipleRangeRequests } from "./multipleRangeDownloader" -import { ProgressDifferentialDownloadCallbackTransform, ProgressDifferentialDownloadInfo } from "./ProgressDifferentialDownloadCallbackTransform" +import { computeOperations, Operation, OperationKind } from "./downloadPlanBuilder.js.js" +import { checkIsRangesSupported, executeTasksUsingMultipleRangeRequests } from "./multipleRangeDownloader.js.js" +import { ProgressDifferentialDownloadCallbackTransform, ProgressDifferentialDownloadInfo } from "./ProgressDifferentialDownloadCallbackTransform.js.js" export interface DifferentialDownloaderOptions { readonly oldFile: string diff --git a/packages/electron-updater/src/differentialDownloader/FileWithEmbeddedBlockMapDifferentialDownloader.ts b/packages/electron-updater/src/differentialDownloader/FileWithEmbeddedBlockMapDifferentialDownloader.ts index d4446db1d7a..c03ef51b16b 100644 --- a/packages/electron-updater/src/differentialDownloader/FileWithEmbeddedBlockMapDifferentialDownloader.ts +++ b/packages/electron-updater/src/differentialDownloader/FileWithEmbeddedBlockMapDifferentialDownloader.ts @@ -1,6 +1,6 @@ import { BlockMap } from "builder-util-runtime/out/blockMapApi" import { close, fstat, open, read } from "fs-extra" -import { DifferentialDownloader } from "./DifferentialDownloader" +import { DifferentialDownloader } from "./DifferentialDownloader.js.js" import { inflateRawSync } from "zlib" export class FileWithEmbeddedBlockMapDifferentialDownloader extends DifferentialDownloader { diff --git a/packages/electron-updater/src/differentialDownloader/GenericDifferentialDownloader.ts b/packages/electron-updater/src/differentialDownloader/GenericDifferentialDownloader.ts index b7727d6c564..03b43de19ac 100644 --- a/packages/electron-updater/src/differentialDownloader/GenericDifferentialDownloader.ts +++ b/packages/electron-updater/src/differentialDownloader/GenericDifferentialDownloader.ts @@ -1,5 +1,5 @@ import { BlockMap } from "builder-util-runtime/out/blockMapApi" -import { DifferentialDownloader } from "./DifferentialDownloader" +import { DifferentialDownloader } from "./DifferentialDownloader.js.js" export class GenericDifferentialDownloader extends DifferentialDownloader { download(oldBlockMap: BlockMap, newBlockMap: BlockMap): Promise { diff --git a/packages/electron-updater/src/differentialDownloader/multipleRangeDownloader.ts b/packages/electron-updater/src/differentialDownloader/multipleRangeDownloader.ts index b4255e1064c..a8024aed462 100644 --- a/packages/electron-updater/src/differentialDownloader/multipleRangeDownloader.ts +++ b/packages/electron-updater/src/differentialDownloader/multipleRangeDownloader.ts @@ -1,9 +1,9 @@ import { createHttpError, safeGetHeader } from "builder-util-runtime" import { IncomingMessage } from "http" import { Writable } from "stream" -import { copyData, DataSplitter, PartListDataTask } from "./DataSplitter" -import { DifferentialDownloader } from "./DifferentialDownloader" -import { Operation, OperationKind } from "./downloadPlanBuilder" +import { copyData, DataSplitter, PartListDataTask } from "./DataSplitter.js.js" +import { DifferentialDownloader } from "./DifferentialDownloader.js.js" +import { Operation, OperationKind } from "./downloadPlanBuilder.js.js" export function executeTasksUsingMultipleRangeRequests( differentialDownloader: DifferentialDownloader, diff --git a/packages/electron-updater/src/main.ts b/packages/electron-updater/src/main.ts index 2b9a02904fb..e70aafdcfa5 100644 --- a/packages/electron-updater/src/main.ts +++ b/packages/electron-updater/src/main.ts @@ -1,6 +1,6 @@ import { existsSync, readFileSync } from "fs-extra" import * as path from "path" -import { AppUpdater } from "./AppUpdater" +import { AppUpdater } from "./AppUpdater.js.js" import { UpdateInfo } from "builder-util-runtime" export { BaseUpdater } from "./BaseUpdater" diff --git a/packages/electron-updater/src/providerFactory.ts b/packages/electron-updater/src/providerFactory.ts index 8f1e35a4c4d..fc1ab575f5a 100644 --- a/packages/electron-updater/src/providerFactory.ts +++ b/packages/electron-updater/src/providerFactory.ts @@ -11,14 +11,14 @@ import { newError, PublishConfiguration, } from "builder-util-runtime" -import { AppUpdater } from "./AppUpdater" -import { BitbucketProvider } from "./providers/BitbucketProvider" -import { GenericProvider } from "./providers/GenericProvider" -import { GitHubProvider } from "./providers/GitHubProvider" -import { GitLabProvider } from "./providers/GitLabProvider" -import { KeygenProvider } from "./providers/KeygenProvider" -import { PrivateGitHubProvider } from "./providers/PrivateGitHubProvider" -import { Provider, ProviderRuntimeOptions } from "./providers/Provider" +import { AppUpdater } from "./AppUpdater.js.js" +import { BitbucketProvider } from "./providers/BitbucketProvider.js.js" +import { GenericProvider } from "./providers/GenericProvider.js.js" +import { GitHubProvider } from "./providers/GitHubProvider.js.js" +import { GitLabProvider } from "./providers/GitLabProvider.js.js" +import { KeygenProvider } from "./providers/KeygenProvider.js.js" +import { PrivateGitHubProvider } from "./providers/PrivateGitHubProvider.js.js" +import { Provider, ProviderRuntimeOptions } from "./providers/Provider.js.js" export function isUrlProbablySupportMultiRangeRequests(url: string): boolean { return !url.includes("s3.amazonaws.com") diff --git a/packages/electron-updater/src/providers/BitbucketProvider.ts b/packages/electron-updater/src/providers/BitbucketProvider.ts index 824a5fca77f..334e5d48e6b 100644 --- a/packages/electron-updater/src/providers/BitbucketProvider.ts +++ b/packages/electron-updater/src/providers/BitbucketProvider.ts @@ -2,7 +2,7 @@ import { CancellationToken, BitbucketOptions, newError, UpdateInfo } from "build import { AppUpdater } from "../AppUpdater" import { ResolvedUpdateFileInfo } from "../types" import { getChannelFilename, newBaseUrl, newUrlFromBase } from "../util" -import { parseUpdateInfo, Provider, ProviderRuntimeOptions, resolveFiles } from "./Provider" +import { parseUpdateInfo, Provider, ProviderRuntimeOptions, resolveFiles } from "./Provider.js.js" export class BitbucketProvider extends Provider { private readonly baseUrl: URL diff --git a/packages/electron-updater/src/providers/GenericProvider.ts b/packages/electron-updater/src/providers/GenericProvider.ts index b5a23d0013c..263ca938d05 100644 --- a/packages/electron-updater/src/providers/GenericProvider.ts +++ b/packages/electron-updater/src/providers/GenericProvider.ts @@ -2,7 +2,7 @@ import { GenericServerOptions, HttpError, newError, UpdateInfo } from "builder-u import { AppUpdater } from "../AppUpdater" import { ResolvedUpdateFileInfo } from "../types" import { getChannelFilename, newBaseUrl, newUrlFromBase } from "../util" -import { parseUpdateInfo, Provider, ProviderRuntimeOptions, resolveFiles } from "./Provider" +import { parseUpdateInfo, Provider, ProviderRuntimeOptions, resolveFiles } from "./Provider.js.js" export class GenericProvider extends Provider { private readonly baseUrl = newBaseUrl(this.configuration.url) diff --git a/packages/electron-updater/src/providers/GitHubProvider.ts b/packages/electron-updater/src/providers/GitHubProvider.ts index 3a14f0f6df8..d86ffb9cb36 100644 --- a/packages/electron-updater/src/providers/GitHubProvider.ts +++ b/packages/electron-updater/src/providers/GitHubProvider.ts @@ -4,7 +4,7 @@ import { URL } from "url" import { AppUpdater } from "../AppUpdater" import { ResolvedUpdateFileInfo } from "../types" import { getChannelFilename, newBaseUrl, newUrlFromBase } from "../util" -import { parseUpdateInfo, Provider, ProviderRuntimeOptions, resolveFiles } from "./Provider" +import { parseUpdateInfo, Provider, ProviderRuntimeOptions, resolveFiles } from "./Provider.js.js" const hrefRegExp = /\/tag\/([^/]+)$/ diff --git a/packages/electron-updater/src/providers/GitLabProvider.ts b/packages/electron-updater/src/providers/GitLabProvider.ts index 8b9a3bd0285..2e5eb752512 100644 --- a/packages/electron-updater/src/providers/GitLabProvider.ts +++ b/packages/electron-updater/src/providers/GitLabProvider.ts @@ -5,7 +5,7 @@ import * as escapeRegExp from "lodash.escaperegexp" import { AppUpdater } from "../AppUpdater" import { ResolvedUpdateFileInfo } from "../types" import { getChannelFilename, newBaseUrl, newUrlFromBase } from "../util" -import { getFileList, parseUpdateInfo, Provider, ProviderRuntimeOptions } from "./Provider" +import { getFileList, parseUpdateInfo, Provider, ProviderRuntimeOptions } from "./Provider.js.js" interface GitlabUpdateInfo extends UpdateInfo { tag: string diff --git a/packages/electron-updater/src/providers/KeygenProvider.ts b/packages/electron-updater/src/providers/KeygenProvider.ts index 6842628a030..d2dd94d3cdd 100644 --- a/packages/electron-updater/src/providers/KeygenProvider.ts +++ b/packages/electron-updater/src/providers/KeygenProvider.ts @@ -2,7 +2,7 @@ import { CancellationToken, KeygenOptions, newError, UpdateInfo } from "builder- import { AppUpdater } from "../AppUpdater" import { ResolvedUpdateFileInfo } from "../types" import { getChannelFilename, newBaseUrl, newUrlFromBase } from "../util" -import { parseUpdateInfo, Provider, ProviderRuntimeOptions, resolveFiles } from "./Provider" +import { parseUpdateInfo, Provider, ProviderRuntimeOptions, resolveFiles } from "./Provider.js.js" export class KeygenProvider extends Provider { private readonly defaultHostname = "api.keygen.sh" diff --git a/packages/electron-updater/src/providers/PrivateGitHubProvider.ts b/packages/electron-updater/src/providers/PrivateGitHubProvider.ts index 708d50a2c32..bffdb0e2f44 100644 --- a/packages/electron-updater/src/providers/PrivateGitHubProvider.ts +++ b/packages/electron-updater/src/providers/PrivateGitHubProvider.ts @@ -5,9 +5,9 @@ import * as path from "path" import { AppUpdater } from "../AppUpdater" import { URL } from "url" import { getChannelFilename, newUrlFromBase } from "../util" -import { BaseGitHubProvider } from "./GitHubProvider" +import { BaseGitHubProvider } from "./GitHubProvider.js.js" import { ResolvedUpdateFileInfo } from "../types" -import { getFileList, ProviderRuntimeOptions } from "./Provider" +import { getFileList, ProviderRuntimeOptions } from "./Provider.js.js" export interface PrivateGitHubUpdateInfo extends UpdateInfo { assets: Array diff --git a/packages/electron-updater/src/types.ts b/packages/electron-updater/src/types.ts index d4e92de3c24..237f101c97b 100644 --- a/packages/electron-updater/src/types.ts +++ b/packages/electron-updater/src/types.ts @@ -1,7 +1,7 @@ import { CancellationToken, PackageFileInfo, ProgressInfo, UpdateFileInfo, UpdateInfo } from "builder-util-runtime" import { EventEmitter } from "events" import { URL } from "url" -import { LoginCallback } from "./electronHttpExecutor" +import { LoginCallback } from "./electronHttpExecutor.js.js" export { CancellationToken, PackageFileInfo, ProgressInfo, UpdateFileInfo, UpdateInfo } diff --git a/packages/electron-updater/src/windowsExecutableCodeSignatureVerifier.ts b/packages/electron-updater/src/windowsExecutableCodeSignatureVerifier.ts index f35f2aa88d3..0f592d3f2d3 100644 --- a/packages/electron-updater/src/windowsExecutableCodeSignatureVerifier.ts +++ b/packages/electron-updater/src/windowsExecutableCodeSignatureVerifier.ts @@ -1,7 +1,7 @@ import { parseDn } from "builder-util-runtime" import { execFile, execFileSync, ExecFileOptions } from "child_process" import * as os from "os" -import { Logger } from "./types" +import { Logger } from "./types.js.js" import * as path from "path" function preparePowerShellExec(command: string, timeout?: number) { diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 83603d52e46..49b20e6992b 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -38,6 +38,9 @@ importers: '@stylistic/eslint-plugin': specifier: ^2.8.0 version: 2.13.0(eslint@9.39.1(jiti@2.4.2))(typescript@5.8.2) + '@tsconfig/node22': + specifier: ^22.0.5 + version: 22.0.5 '@types/node': specifier: ^22.7.4 version: 22.13.17 @@ -2258,6 +2261,9 @@ packages: '@tsconfig/node16@1.0.4': resolution: {integrity: sha512-vxhUy4J8lyeyinH7Azl1pdd43GJhZH/tP2weN8TntQblOY+A0XbT8DJk1/oCPuOOyg/Ja757rG0CgHcWC8OfMA==} + '@tsconfig/node22@22.0.5': + resolution: {integrity: sha512-hLf2ld+sYN/BtOJjHUWOk568dvjFQkHnLNa6zce25GIH+vxKfvTgm3qpaH6ToF5tu/NN0IH66s+Bb5wElHrLcw==} + '@types/adm-zip@0.5.6': resolution: {integrity: sha512-lRlcSLg5Yoo7C2H2AUiAoYlvifWoCx/se7iUNiCBTfEVVYFVn+Tr9ZGed4K73tYgLe9O4PjdJvbxlkdAOx/qiw==} @@ -7243,6 +7249,8 @@ snapshots: '@tsconfig/node16@1.0.4': {} + '@tsconfig/node22@22.0.5': {} + '@types/adm-zip@0.5.6': dependencies: '@types/node': 22.13.17 diff --git a/test/src/BuildTest.ts b/test/src/BuildTest.ts index 3bf8ad93554..35663b1572b 100644 --- a/test/src/BuildTest.ts +++ b/test/src/BuildTest.ts @@ -5,9 +5,9 @@ import { createYargs } from "electron-builder/out/builder" import { promises as fs } from "fs" import { outputFile, outputJson } from "fs-extra" import * as path from "path" -import { app, appTwo, appTwoThrows, assertPack, getFixtureDir, linuxDirTarget, modifyPackageJson, packageJson, toSystemIndependentPath } from "./helpers/packTester" -import { ELECTRON_VERSION } from "./helpers/testConfig" -import { verifySmartUnpack } from "./helpers/verifySmartUnpack" +import { app, appTwo, appTwoThrows, assertPack, getFixtureDir, linuxDirTarget, modifyPackageJson, packageJson, toSystemIndependentPath } from "./helpers/packTester.js" +import { ELECTRON_VERSION } from "./helpers/testConfig.js" +import { verifySmartUnpack } from "./helpers/verifySmartUnpack.js" import { PM } from "app-builder-lib/src/node-module-collector/packageManager" test.ifLinux("cli", ({ expect }) => { diff --git a/test/src/ExtraBuildResourcesTest.ts b/test/src/ExtraBuildResourcesTest.ts index 3652f279f6a..00ec42dd7e3 100644 --- a/test/src/ExtraBuildResourcesTest.ts +++ b/test/src/ExtraBuildResourcesTest.ts @@ -1,10 +1,10 @@ import { Arch, build, PackagerOptions, Platform } from "electron-builder" import * as fs from "fs" import * as path from "path" -import { assertThat } from "./helpers/fileAssert" -import { app, assertPack, linuxDirTarget, modifyPackageJson } from "./helpers/packTester" -import { ELECTRON_VERSION, getElectronCacheDir } from "./helpers/testConfig" -import { expectUpdateMetadata } from "./helpers/winHelper" +import { assertThat } from "./helpers/fileAssert.js" +import { app, assertPack, linuxDirTarget, modifyPackageJson } from "./helpers/packTester.js" +import { ELECTRON_VERSION, getElectronCacheDir } from "./helpers/testConfig.js" +import { expectUpdateMetadata } from "./helpers/winHelper.js" import { ExpectStatic } from "vitest" import * as unzipper from "unzipper" import { TmpDir } from "temp-file" diff --git a/test/src/HoistedNodeModuleTest.ts b/test/src/HoistedNodeModuleTest.ts index 5d190271803..688e6468a8b 100644 --- a/test/src/HoistedNodeModuleTest.ts +++ b/test/src/HoistedNodeModuleTest.ts @@ -3,8 +3,8 @@ import { spawn } from "builder-util/out/util" import { Arch, DIR_TARGET, Platform } from "electron-builder" import { copySync, mkdirSync, outputFile, readJsonSync, rmSync, symlink, writeJsonSync } from "fs-extra" import * as path from "path" -import { appTwoThrows, assertPack, linuxDirTarget, modifyPackageJson, verifyAsarFileTree } from "./helpers/packTester" -import { ELECTRON_VERSION } from "./helpers/testConfig" +import { appTwoThrows, assertPack, linuxDirTarget, modifyPackageJson, verifyAsarFileTree } from "./helpers/packTester.js" +import { ELECTRON_VERSION } from "./helpers/testConfig.js" import { execSync } from "child_process" test("yarn workspace", ({ expect }) => diff --git a/test/src/PublishManagerTest.ts b/test/src/PublishManagerTest.ts index 5685dbe551e..00eceb83552 100644 --- a/test/src/PublishManagerTest.ts +++ b/test/src/PublishManagerTest.ts @@ -2,8 +2,8 @@ import { GenericServerOptions, GithubOptions, KeygenOptions, SpacesOptions } fro import { Arch, createTargets, Platform } from "electron-builder" import { outputFile } from "fs-extra" import * as path from "path" -import { assertThat } from "./helpers/fileAssert" -import { app, checkDirContents } from "./helpers/packTester" +import { assertThat } from "./helpers/fileAssert.js" +import { app, checkDirContents } from "./helpers/packTester.js" function spacesPublisher(publishAutoUpdate = true): SpacesOptions { return { diff --git a/test/src/concurrentBuildsTest.ts b/test/src/concurrentBuildsTest.ts index 3436494efd3..c9e86f0d1f6 100644 --- a/test/src/concurrentBuildsTest.ts +++ b/test/src/concurrentBuildsTest.ts @@ -1,7 +1,7 @@ import { Arch, Configuration, DIR_TARGET, Platform } from "app-builder-lib" import { deepAssign } from "builder-util" import { TmpDir } from "temp-file" -import { assertPack, modifyPackageJson } from "./helpers/packTester" +import { assertPack, modifyPackageJson } from "./helpers/packTester.js" const options = { timeout: 15 * 60 * 1000 } diff --git a/test/src/configurationValidationTest.ts b/test/src/configurationValidationTest.ts index 3a62d14d860..4165c402c86 100644 --- a/test/src/configurationValidationTest.ts +++ b/test/src/configurationValidationTest.ts @@ -2,7 +2,7 @@ import { validateConfiguration } from "app-builder-lib/out/util/config/config" import { Arch, DebugLogger } from "builder-util" import { Configuration, Platform } from "electron-builder" import { CliOptions, configureBuildCommand, createYargs, normalizeOptions } from "electron-builder/out/builder" -import { app, appThrows, linuxDirTarget } from "./helpers/packTester" +import { app, appThrows, linuxDirTarget } from "./helpers/packTester.js" test.ifDevOrLinuxCi("validation", ({ expect }) => appThrows( diff --git a/test/src/extraMetadataTest.ts b/test/src/extraMetadataTest.ts index 04d8ebdff69..68b3c7ca0d1 100644 --- a/test/src/extraMetadataTest.ts +++ b/test/src/extraMetadataTest.ts @@ -3,8 +3,8 @@ import { Platform } from "electron-builder" import { coerceTypes } from "electron-builder/out/builder" import { readJson } from "fs-extra" import * as path from "path" -import { assertThat } from "./helpers/fileAssert" -import { app, linuxDirTarget, modifyPackageJson } from "./helpers/packTester" +import { assertThat } from "./helpers/fileAssert.js" +import { app, linuxDirTarget, modifyPackageJson } from "./helpers/packTester.js" import { ExpectStatic } from "vitest" function createExtraMetadataTest(expect: ExpectStatic, asar: boolean) { diff --git a/test/src/filesTest.ts b/test/src/filesTest.ts index 8dbb245daf2..b5d597e72c7 100644 --- a/test/src/filesTest.ts +++ b/test/src/filesTest.ts @@ -4,8 +4,8 @@ import { outputFile } from "fs-extra" import * as fs from "fs/promises" import * as path from "path" import { Mode, RWX } from "stat-mode" -import { assertThat } from "./helpers/fileAssert" -import { app, appThrows, assertPack, checkDirContents, linuxDirTarget, modifyPackageJson } from "./helpers/packTester" +import { assertThat } from "./helpers/fileAssert.js" +import { app, appThrows, assertPack, checkDirContents, linuxDirTarget, modifyPackageJson } from "./helpers/packTester.js" import { ExpectStatic } from "vitest" test.ifDevOrLinuxCi("expand not defined env", ({ expect }) => diff --git a/test/src/globTest.ts b/test/src/globTest.ts index c4fe600a553..49161445cfa 100644 --- a/test/src/globTest.ts +++ b/test/src/globTest.ts @@ -5,9 +5,9 @@ import { outputFile } from "fs-extra" import * as fs from "fs/promises" import * as path from "path" import { ExpectStatic } from "vitest" -import { assertThat } from "./helpers/fileAssert" -import { app, appThrows, assertPack, linuxDirTarget, modifyPackageJson, PackedContext, removeUnstableProperties, verifyAsarFileTree } from "./helpers/packTester" -import { verifySmartUnpack } from "./helpers/verifySmartUnpack" +import { assertThat } from "./helpers/fileAssert.js" +import { app, appThrows, assertPack, linuxDirTarget, modifyPackageJson, PackedContext, removeUnstableProperties, verifyAsarFileTree } from "./helpers/packTester.js" +import { verifySmartUnpack } from "./helpers/verifySmartUnpack.js" async function createFiles(appDir: string) { await Promise.all([ diff --git a/test/src/helpers/downloadElectron.ts b/test/src/helpers/downloadElectron.ts index 62510d67c00..ff50c547a43 100644 --- a/test/src/helpers/downloadElectron.ts +++ b/test/src/helpers/downloadElectron.ts @@ -2,7 +2,7 @@ import { isCI as isCi } from "ci-info" import * as fs from "fs/promises" import * as path from "path" import { gte } from "semver" -import { ELECTRON_VERSION, getElectronCacheDir } from "./testConfig" +import { ELECTRON_VERSION, getElectronCacheDir } from "./testConfig.js" const executeAppBuilder: (options: any) => Promise = require(path.join(__dirname, "../../..", "packages/builder-util")).executeAppBuilder diff --git a/test/src/helpers/packTester.ts b/test/src/helpers/packTester.ts index 7f937324d32..802f6d7eae7 100644 --- a/test/src/helpers/packTester.ts +++ b/test/src/helpers/packTester.ts @@ -18,15 +18,15 @@ import { NtExecutable, NtExecutableResource } from "resedit" import { TmpDir } from "temp-file" import { getCollectorByPackageManager, PM } from "app-builder-lib/out/node-module-collector" import { promisify } from "util" -import { CSC_LINK, WIN_CSC_LINK } from "./codeSignData" -import { assertThat } from "./fileAssert" +import { CSC_LINK, WIN_CSC_LINK } from "./codeSignData.js" +import { assertThat } from "./fileAssert.js" import AdmZip from "adm-zip" // @ts-ignore import sanitizeFileName from "sanitize-filename" import type { ExpectStatic } from "vitest" import { computeDefaultAppDirectory } from "app-builder-lib/out/util/config/config" import { installDependencies } from "app-builder-lib/out/util/yarn" -import { ELECTRON_VERSION } from "./testConfig" +import { ELECTRON_VERSION } from "./testConfig.js" import { createLazyProductionDeps } from "app-builder-lib/out/util/packageDependencies" import { execSync } from "child_process" import { detectPackageManager } from "app-builder-lib/out/node-module-collector/packageManager" diff --git a/test/src/helpers/updaterTestUtil.ts b/test/src/helpers/updaterTestUtil.ts index 3fcb17f77eb..90efb4a6331 100644 --- a/test/src/helpers/updaterTestUtil.ts +++ b/test/src/helpers/updaterTestUtil.ts @@ -4,8 +4,8 @@ import { AppUpdater, MacUpdater, NsisUpdater } from "electron-updater" import { NoOpLogger, TestOnlyUpdaterOptions } from "electron-updater/out/AppUpdater" import { outputFile, writeFile } from "fs-extra" import * as path from "path" -import { assertThat } from "./fileAssert" -import { TestAppAdapter } from "./TestAppAdapter" +import { assertThat } from "./fileAssert.js" +import { TestAppAdapter } from "./TestAppAdapter.js" import { ExpectStatic } from "vitest" const tmpDir = new TmpDir("updater-test-util") diff --git a/test/src/helpers/verifySmartUnpack.ts b/test/src/helpers/verifySmartUnpack.ts index 4f846e36f5d..554a70a05a1 100644 --- a/test/src/helpers/verifySmartUnpack.ts +++ b/test/src/helpers/verifySmartUnpack.ts @@ -2,7 +2,7 @@ import { AsarFilesystem, readAsar } from "app-builder-lib/out/asar/asar" import { walk } from "builder-util" import { readFileSync } from "fs" import * as path from "path" -import { toSystemIndependentPath } from "./packTester" +import { toSystemIndependentPath } from "./packTester.js" import { ExpectStatic } from "vitest" export function removeUnstableProperties(data: any) { diff --git a/test/src/helpers/winHelper.ts b/test/src/helpers/winHelper.ts index e1f38cbaa37..c6d7a1f8a94 100644 --- a/test/src/helpers/winHelper.ts +++ b/test/src/helpers/winHelper.ts @@ -5,9 +5,9 @@ import { outputFile } from "fs-extra" import * as fs from "fs/promises" import { load } from "js-yaml" import * as path from "path" -import { assertThat } from "./fileAssert" -import { PackedContext } from "./packTester" -import { diff, WineManager } from "./wine" +import { assertThat } from "./fileAssert.js" +import { PackedContext } from "./packTester.js" +import { diff, WineManager } from "./wine.js" import { ExpectStatic } from "vitest" export async function expectUpdateMetadata(expect: ExpectStatic, context: PackedContext, arch: Arch = Arch.ia32, requireCodeSign: boolean = false): Promise { diff --git a/test/src/ignoreTest.ts b/test/src/ignoreTest.ts index 05d98687098..c3f2420f914 100644 --- a/test/src/ignoreTest.ts +++ b/test/src/ignoreTest.ts @@ -1,8 +1,8 @@ import { DIR_TARGET, Platform, archFromString } from "electron-builder" import { outputFile } from "fs-extra" import * as path from "path" -import { assertThat } from "./helpers/fileAssert" -import { app, checkDirContents, linuxDirTarget, modifyPackageJson } from "./helpers/packTester" +import { assertThat } from "./helpers/fileAssert.js" +import { app, checkDirContents, linuxDirTarget, modifyPackageJson } from "./helpers/packTester.js" import { PM } from "app-builder-lib/out/node-module-collector/packageManager" const currentProcessTarget = Platform.LINUX.createTarget(DIR_TARGET, archFromString(process.arch)) diff --git a/test/src/mainEntryTest.ts b/test/src/mainEntryTest.ts index dc459285f1e..1512c5ff277 100644 --- a/test/src/mainEntryTest.ts +++ b/test/src/mainEntryTest.ts @@ -1,7 +1,7 @@ import { createTargets, DIR_TARGET, Platform } from "electron-builder" import * as fs from "fs/promises" import * as path from "path" -import { appTwoThrows, assertPack, modifyPackageJson } from "./helpers/packTester" +import { appTwoThrows, assertPack, modifyPackageJson } from "./helpers/packTester.js" const packagerOptions = { targets: createTargets([Platform.LINUX, Platform.MAC], DIR_TARGET), diff --git a/test/src/packageManagerTest.ts b/test/src/packageManagerTest.ts index 6d09f141844..2bd33f9999d 100644 --- a/test/src/packageManagerTest.ts +++ b/test/src/packageManagerTest.ts @@ -3,9 +3,9 @@ import { PM } from "app-builder-lib/src/node-module-collector" import { execSync } from "child_process" import { copyFile, outputFile, rm, writeFile } from "fs-extra" import * as path from "path" -import { assertThat } from "./helpers/fileAssert" -import { app, assertPack, getFixtureDir, getPackageManagerWithVersion, linuxDirTarget, modifyPackageJson, verifyAsarFileTree } from "./helpers/packTester" -import { ELECTRON_VERSION } from "./helpers/testConfig" +import { assertThat } from "./helpers/fileAssert.js" +import { app, assertPack, getFixtureDir, getPackageManagerWithVersion, linuxDirTarget, modifyPackageJson, verifyAsarFileTree } from "./helpers/packTester.js" +import { ELECTRON_VERSION } from "./helpers/testConfig.js" const yarnVersion = getPackageManagerWithVersion(PM.YARN).prepareEntry const yarnBerryVersion = getPackageManagerWithVersion(PM.YARN_BERRY).prepareEntry diff --git a/test/src/protonTest.ts b/test/src/protonTest.ts index 3fd5d184746..8cbae14874f 100644 --- a/test/src/protonTest.ts +++ b/test/src/protonTest.ts @@ -1,6 +1,6 @@ import { copyDir } from "builder-util" import { Arch, Platform } from "electron-builder" -import { app, AssertPackOptions } from "./helpers/packTester" +import { app, AssertPackOptions } from "./helpers/packTester.js" const checkOptions: AssertPackOptions = { projectDirCreated: async projectDir => { diff --git a/test/src/publisher/gitlab/GitlabPublisher.integration.test.ts b/test/src/publisher/gitlab/GitlabPublisher.integration.test.ts index f60f69487c9..026bbfa0a04 100644 --- a/test/src/publisher/gitlab/GitlabPublisher.integration.test.ts +++ b/test/src/publisher/gitlab/GitlabPublisher.integration.test.ts @@ -2,8 +2,8 @@ import { Arch } from "builder-util" import { CancellationToken } from "builder-util-runtime" import { GitlabPublisher, PublishContext } from "electron-publish" import { afterAll, beforeEach, describe, expect, test } from "vitest" -import { GitlabTestFixtures } from "./GitlabTestFixtures" -import { GitlabTestHelper } from "./GitlabTestHelper" +import { GitlabTestFixtures } from "./GitlabTestFixtures.js" +import { GitlabTestHelper } from "./GitlabTestHelper.js" /** * GitLab Publisher Integration Tests diff --git a/test/src/publisher/gitlab/GitlabPublisherTest.ts b/test/src/publisher/gitlab/GitlabPublisherTest.ts index 8563fb86e1d..c09ac27b953 100644 --- a/test/src/publisher/gitlab/GitlabPublisherTest.ts +++ b/test/src/publisher/gitlab/GitlabPublisherTest.ts @@ -1,7 +1,7 @@ import { CancellationToken, GitlabOptions } from "builder-util-runtime" import { GitlabPublisher, PublishContext } from "electron-publish" import { beforeEach, describe, test, vi } from "vitest" -import { GitlabTestFixtures } from "./GitlabTestFixtures" +import { GitlabTestFixtures } from "./GitlabTestFixtures.js" // Mock the HTTP executor to avoid real network calls vi.mock("builder-util", async () => { diff --git a/test/src/rebuilderTest.ts b/test/src/rebuilderTest.ts index 931fa843de7..fad00e97f76 100644 --- a/test/src/rebuilderTest.ts +++ b/test/src/rebuilderTest.ts @@ -2,9 +2,9 @@ import { Configuration, Platform } from "app-builder-lib" import { PM } from "app-builder-lib/out/node-module-collector" import { exists } from "builder-util/src/util" import path from "path" -import { assertPack, linuxDirTarget, modifyPackageJson } from "./helpers/packTester" -import { ELECTRON_VERSION } from "./helpers/testConfig" -import { verifySmartUnpack } from "./helpers/verifySmartUnpack" +import { assertPack, linuxDirTarget, modifyPackageJson } from "./helpers/packTester.js" +import { ELECTRON_VERSION } from "./helpers/testConfig.js" +import { verifySmartUnpack } from "./helpers/verifySmartUnpack.js" const packageConfig = (data: any) => { data.name = "@packageManagers/test-app-yarn-workspace" diff --git a/tsconfig-base.json b/tsconfig-base.json index f05e98abd57..9285427129d 100644 --- a/tsconfig-base.json +++ b/tsconfig-base.json @@ -1,15 +1,13 @@ { + "extends": "@tsconfig/node22/tsconfig.json", "compilerOptions": { - "target": "es2019", - "module": "CommonJS", - "esModuleInterop": false, "forceConsistentCasingInFileNames": true, - "moduleResolution": "node", "skipLibCheck": true, - "strict": true, + "noUnusedLocals": true, "noFallthroughCasesInSwitch": true, "noImplicitReturns": true, + "allowJs": true, "inlineSources": true, From d26567f581342ee571135ae1a80772ebc39364a4 Mon Sep 17 00:00:00 2001 From: Mike Maietta Date: Tue, 9 Dec 2025 09:18:12 -0800 Subject: [PATCH 03/61] tmp save --- packages/app-builder-lib/src/asar/asarUtil.ts | 6 ++--- .../app-builder-lib/src/asar/integrity.ts | 2 +- .../src/asar/unpackDetector.ts | 2 +- .../app-builder-lib/src/codeSign/codesign.ts | 2 +- .../src/codeSign/macCodeSign.ts | 2 +- .../src/codeSign/signManager.ts | 4 ++-- .../src/codeSign/windowsCodeSign.ts | 4 ++-- .../src/codeSign/windowsSignAzureManager.ts | 4 ++-- .../src/codeSign/windowsSignToolManager.ts | 20 ++++++++-------- .../src/electron/ElectronFramework.ts | 14 +++++------ .../src/electron/electronMac.ts | 10 ++++---- .../src/electron/electronVersion.ts | 6 ++--- .../src/electron/electronWin.ts | 2 +- .../src/electron/injectFFMPEG.ts | 4 ++-- .../src/frameworks/LibUiFramework.ts | 12 +++++----- packages/app-builder-lib/src/index.ts | 2 +- .../src/options/AppXOptions.ts | 2 +- .../CommonWindowsInstallerConfiguration.ts | 2 +- .../app-builder-lib/src/options/MsiOptions.ts | 2 +- .../src/options/MsiWrappedOptions.ts | 2 +- .../options/PlatformSpecificBuildOptions.ts | 2 +- .../src/options/SnapOptions.ts | 2 +- .../src/options/SquirrelWindowsOptions.ts | 2 +- .../src/options/linuxOptions.ts | 2 +- .../app-builder-lib/src/options/macOptions.ts | 4 ++-- .../app-builder-lib/src/options/metadata.ts | 2 +- .../app-builder-lib/src/options/pkgOptions.ts | 2 +- .../app-builder-lib/src/options/winOptions.ts | 4 ++-- .../app-builder-lib/src/platformPackager.ts | 2 +- .../app-builder-lib/src/presets/rectCra.ts | 2 +- .../src/publish/PublishManager.ts | 12 +++++----- .../src/publish/updateInfoBuilder.ts | 12 +++++----- .../src/targets/AppImageTarget.ts | 12 +++++----- .../app-builder-lib/src/targets/AppxTarget.ts | 10 ++++---- .../src/targets/ArchiveTarget.ts | 6 ++--- .../src/targets/FlatpakTarget.ts | 8 +++---- .../app-builder-lib/src/targets/FpmTarget.ts | 24 +++++++++---------- .../src/targets/LinuxTargetHelper.ts | 6 ++--- .../app-builder-lib/src/targets/MsiTarget.ts | 16 ++++++------- .../src/targets/MsiWrappedTarget.ts | 6 ++--- .../app-builder-lib/src/targets/archive.ts | 2 +- .../targets/differentialUpdateInfoBuilder.ts | 6 ++--- .../src/targets/nsis/NsisTarget.ts | 22 ++++++++--------- .../src/targets/nsis/WebInstallerTarget.ts | 4 ++-- .../src/targets/nsis/nsisLang.ts | 4 ++-- .../src/targets/nsis/nsisLicense.ts | 6 ++--- .../src/targets/nsis/nsisOptions.ts | 4 ++-- .../src/targets/nsis/nsisUtil.ts | 4 ++-- packages/app-builder-lib/src/targets/pkg.ts | 14 +++++------ packages/app-builder-lib/src/targets/snap.ts | 10 ++++---- .../src/targets/targetFactory.ts | 4 ++-- .../app-builder-lib/src/targets/targetUtil.ts | 2 +- packages/app-builder-lib/src/targets/tools.ts | 2 +- .../app-builder-lib/src/util/AppFileWalker.ts | 4 ++-- .../src/util/NodeModuleCopyHelper.ts | 4 ++-- .../app-builder-lib/src/util/appFileCopier.ts | 14 +++++------ .../app-builder-lib/src/util/config/config.ts | 8 +++---- .../app-builder-lib/src/util/config/load.ts | 2 +- packages/app-builder-lib/src/util/license.ts | 2 +- .../app-builder-lib/src/util/macroExpander.ts | 2 +- .../src/util/packageMetadata.ts | 2 +- .../src/util/repositoryInfo.ts | 4 ++-- packages/app-builder-lib/src/util/resolve.ts | 2 +- packages/app-builder-lib/src/util/yarn.ts | 6 ++--- packages/app-builder-lib/src/vm/WineVm.ts | 2 +- packages/builder-util/src/util.ts | 2 +- packages/dmg-builder/src/dmgUtil.ts | 2 +- packages/electron-builder/src/cli/cli.ts | 4 ++-- packages/electron-publish/src/index.ts | 2 +- .../src/s3/baseS3Publisher.ts | 2 +- .../DifferentialDownloader.ts | 2 +- .../downloadPlanBuilder.ts | 2 +- packages/electron-updater/src/main.ts | 2 +- .../src/providers/BitbucketProvider.ts | 6 ++--- .../src/providers/GenericProvider.ts | 6 ++--- .../src/providers/GitHubProvider.ts | 6 ++--- .../src/providers/GitLabProvider.ts | 6 ++--- .../src/providers/KeygenProvider.ts | 6 ++--- .../src/providers/PrivateGitHubProvider.ts | 6 ++--- .../src/providers/Provider.ts | 6 ++--- 80 files changed, 218 insertions(+), 218 deletions(-) diff --git a/packages/app-builder-lib/src/asar/asarUtil.ts b/packages/app-builder-lib/src/asar/asarUtil.ts index 1ece2af90b1..4bf37172a1a 100644 --- a/packages/app-builder-lib/src/asar/asarUtil.ts +++ b/packages/app-builder-lib/src/asar/asarUtil.ts @@ -4,9 +4,9 @@ import { exists, Filter } from "builder-util/out/fs" import * as fs from "fs-extra" import { readlink } from "fs-extra" import * as path from "path" -import { AsarOptions } from "../options/PlatformSpecificBuildOptions" -import { PlatformPackager } from "../platformPackager" -import { ResolvedFileSet, getDestinationPath } from "../util/appFileCopier" +import { AsarOptions } from "../options/PlatformSpecificBuildOptions.js" +import { PlatformPackager } from "../platformPackager.js" +import { ResolvedFileSet, getDestinationPath } from "../util/appFileCopier.js" import { detectUnpackedDirs } from "./unpackDetector.js.js" import { Readable } from "stream" import * as os from "os" diff --git a/packages/app-builder-lib/src/asar/integrity.ts b/packages/app-builder-lib/src/asar/integrity.ts index 8ee052c6d81..4ae3abb687e 100644 --- a/packages/app-builder-lib/src/asar/integrity.ts +++ b/packages/app-builder-lib/src/asar/integrity.ts @@ -2,7 +2,7 @@ import { FilterStats, log, statOrNull, walk } from "builder-util" import { createHash } from "crypto" import { readdir } from "fs/promises" import * as path from "path" -import { FileMatcher } from "../fileMatcher" +import { FileMatcher } from "../fileMatcher.js" import { readAsarHeader } from "./asar.js.js" export interface AsarIntegrityOptions { diff --git a/packages/app-builder-lib/src/asar/unpackDetector.ts b/packages/app-builder-lib/src/asar/unpackDetector.ts index fce460c4c2d..5be0d6d2c88 100644 --- a/packages/app-builder-lib/src/asar/unpackDetector.ts +++ b/packages/app-builder-lib/src/asar/unpackDetector.ts @@ -1,7 +1,7 @@ import { FilterStats, log } from "builder-util" import { isBinaryFileSync } from "isbinaryfile" import * as path from "path" -import { ResolvedFileSet } from "../util/appFileCopier" +import { ResolvedFileSet } from "../util/appFileCopier.js" export function isLibOrExe(file: string): boolean { // https://github.com/electron-userland/electron-builder/issues/3038 diff --git a/packages/app-builder-lib/src/codeSign/codesign.ts b/packages/app-builder-lib/src/codeSign/codesign.ts index 4a8d0e2d292..cce2b4d5edf 100644 --- a/packages/app-builder-lib/src/codeSign/codesign.ts +++ b/packages/app-builder-lib/src/codeSign/codesign.ts @@ -3,7 +3,7 @@ import { outputFile } from "fs-extra" import { homedir } from "os" import * as path from "path" import { TmpDir } from "temp-file" -import { download } from "../binDownload" +import { download } from "../binDownload.js" /** @private */ export async function importCertificate(cscLink: string, tmpDir: TmpDir, currentDir: string): Promise { diff --git a/packages/app-builder-lib/src/codeSign/macCodeSign.ts b/packages/app-builder-lib/src/codeSign/macCodeSign.ts index 0cbd10460ff..d0d1759c24e 100644 --- a/packages/app-builder-lib/src/codeSign/macCodeSign.ts +++ b/packages/app-builder-lib/src/codeSign/macCodeSign.ts @@ -9,7 +9,7 @@ import { Lazy } from "lazy-val" import { homedir, tmpdir } from "os" import * as path from "path" import { getTempName } from "temp-file" -import { isAutoDiscoveryCodeSignIdentity } from "../util/flags" +import { isAutoDiscoveryCodeSignIdentity } from "../util/flags.js" import { importCertificate } from "./codesign.js.js" export const appleCertificatePrefixes = ["Developer ID Application:", "Developer ID Installer:", "3rd Party Mac Developer Application:", "3rd Party Mac Developer Installer:"] diff --git a/packages/app-builder-lib/src/codeSign/signManager.ts b/packages/app-builder-lib/src/codeSign/signManager.ts index 23b44daddd7..ccc8987b06b 100644 --- a/packages/app-builder-lib/src/codeSign/signManager.ts +++ b/packages/app-builder-lib/src/codeSign/signManager.ts @@ -1,7 +1,7 @@ import { MemoLazy, Nullish } from "builder-util-runtime" import { Lazy } from "lazy-val" -import { Target } from "../core" -import { WindowsConfiguration } from "../options/winOptions" +import { Target } from "../core.js" +import { WindowsConfiguration } from "../options/winOptions.js" import { WindowsSignOptions } from "./windowsCodeSign.js.js" import { CertificateFromStoreInfo, FileCodeSigningInfo } from "./windowsSignToolManager.js.js" diff --git a/packages/app-builder-lib/src/codeSign/windowsCodeSign.ts b/packages/app-builder-lib/src/codeSign/windowsCodeSign.ts index 8eb63b66774..71a196dd3cf 100644 --- a/packages/app-builder-lib/src/codeSign/windowsCodeSign.ts +++ b/packages/app-builder-lib/src/codeSign/windowsCodeSign.ts @@ -1,6 +1,6 @@ import { log, retry } from "builder-util" -import { WindowsConfiguration } from "../options/winOptions" -import { WinPackager } from "../winPackager" +import { WindowsConfiguration } from "../options/winOptions.js" +import { WinPackager } from "../winPackager.js" export interface WindowsSignOptions { readonly path: string diff --git a/packages/app-builder-lib/src/codeSign/windowsSignAzureManager.ts b/packages/app-builder-lib/src/codeSign/windowsSignAzureManager.ts index b5123e1585c..b81d6eff553 100644 --- a/packages/app-builder-lib/src/codeSign/windowsSignAzureManager.ts +++ b/packages/app-builder-lib/src/codeSign/windowsSignAzureManager.ts @@ -1,8 +1,8 @@ import { asArray, InvalidConfigurationError, log } from "builder-util" import { MemoLazy } from "builder-util-runtime" import { Lazy } from "lazy-val" -import { WindowsAzureSigningConfiguration, WindowsConfiguration } from "../options/winOptions" -import { WinPackager } from "../winPackager" +import { WindowsAzureSigningConfiguration, WindowsConfiguration } from "../options/winOptions.js" +import { WinPackager } from "../winPackager.js" import { SignManager } from "./signManager.js.js" import { WindowsSignOptions } from "./windowsCodeSign.js.js" import { CertificateFromStoreInfo, FileCodeSigningInfo } from "./windowsSignToolManager.js.js" diff --git a/packages/app-builder-lib/src/codeSign/windowsSignToolManager.ts b/packages/app-builder-lib/src/codeSign/windowsSignToolManager.ts index 506ea63069c..8f9f84a717a 100644 --- a/packages/app-builder-lib/src/codeSign/windowsSignToolManager.ts +++ b/packages/app-builder-lib/src/codeSign/windowsSignToolManager.ts @@ -4,16 +4,16 @@ import { rename } from "fs-extra" import { Lazy } from "lazy-val" import * as os from "os" import * as path from "path" -import { getBin } from "../binDownload" -import { Target } from "../core" -import { WindowsConfiguration } from "../options/winOptions" -import AppXTarget from "../targets/AppxTarget" -import { executeAppBuilderAsJson } from "../util/appBuilder" -import { computeToolEnv, ToolInfo } from "../util/bundledTool" -import { isUseSystemSigncode } from "../util/flags" -import { resolveFunction } from "../util/resolve" -import { VmManager } from "../vm/vm" -import { WinPackager } from "../winPackager" +import { getBin } from "../binDownload.js" +import { Target } from "../core.js" +import { WindowsConfiguration } from "../options/winOptions.js" +import AppXTarget from "../targets/AppxTarget.js" +import { executeAppBuilderAsJson } from "../util/appBuilder.js" +import { computeToolEnv, ToolInfo } from "../util/bundledTool.js" +import { isUseSystemSigncode } from "../util/flags.js" +import { resolveFunction } from "../util/resolve.js" +import { VmManager } from "../vm/vm.js" +import { WinPackager } from "../winPackager.js" import { importCertificate } from "./codesign.js.js" import { SignManager } from "./signManager.js.js" import { WindowsSignOptions } from "./windowsCodeSign.js.js" diff --git a/packages/app-builder-lib/src/electron/ElectronFramework.ts b/packages/app-builder-lib/src/electron/ElectronFramework.ts index d326a337b62..004cfd2fb3c 100644 --- a/packages/app-builder-lib/src/electron/ElectronFramework.ts +++ b/packages/app-builder-lib/src/electron/ElectronFramework.ts @@ -2,13 +2,13 @@ import { asArray, copyDir, DO_NOT_USE_HARD_LINKS, executeAppBuilder, isEmptyOrSp import { emptyDir, readdir, rename, rm } from "fs-extra" import * as path from "path" import asyncPool from "tiny-async-pool" -import { Configuration } from "../configuration" -import { BeforeCopyExtraFilesOptions, Framework, PrepareApplicationStageDirectoryOptions } from "../Framework" -import { Packager, Platform } from "../index" -import { LinuxPackager } from "../linuxPackager" -import { MacPackager } from "../macPackager" -import { getTemplatePath } from "../util/pathManager" -import { resolveFunction } from "../util/resolve" +import { Configuration } from "../configuration.js" +import { BeforeCopyExtraFilesOptions, Framework, PrepareApplicationStageDirectoryOptions } from "../Framework.js" +import { Packager, Platform } from "../index.js" +import { LinuxPackager } from "../linuxPackager.js" +import { MacPackager } from "../macPackager.js" +import { getTemplatePath } from "../util/pathManager.js" +import { resolveFunction } from "../util/resolve.js" import { createMacApp } from "./electronMac.js.js" import { computeElectronVersion, getElectronVersionFromInstalled } from "./electronVersion.js.js" import { addWinAsarIntegrity } from "./electronWin.js.js" diff --git a/packages/app-builder-lib/src/electron/electronMac.ts b/packages/app-builder-lib/src/electron/electronMac.ts index edba4cfdb17..e44d35762ca 100644 --- a/packages/app-builder-lib/src/electron/electronMac.ts +++ b/packages/app-builder-lib/src/electron/electronMac.ts @@ -2,11 +2,11 @@ import { asArray, copyOrLinkFile, getPlatformIconFileName, InvalidConfigurationE import { rename, utimes } from "fs/promises" import * as path from "path" import * as fs from "fs" -import { filterCFBundleIdentifier } from "../appInfo" -import { AsarIntegrity } from "../asar/integrity" -import { MacPackager } from "../macPackager" -import { normalizeExt } from "../platformPackager" -import { savePlistFile, parsePlistFile, PlistObject, PlistValue } from "../util/plist" +import { filterCFBundleIdentifier } from "../appInfo.js" +import { AsarIntegrity } from "../asar/integrity.js" +import { MacPackager } from "../macPackager.js" +import { normalizeExt } from "../platformPackager.js" +import { savePlistFile, parsePlistFile, PlistObject, PlistValue } from "../util/plist.js" import { createBrandingOpts } from "./ElectronFramework.js.js" function doRename(basePath: string, oldName: string, newName: string) { diff --git a/packages/app-builder-lib/src/electron/electronVersion.ts b/packages/app-builder-lib/src/electron/electronVersion.ts index 583a05b2c99..b5fa119c488 100644 --- a/packages/app-builder-lib/src/electron/electronVersion.ts +++ b/packages/app-builder-lib/src/electron/electronVersion.ts @@ -4,9 +4,9 @@ import { readJson } from "fs-extra" import { Lazy } from "lazy-val" import * as path from "path" import * as semver from "semver" -import { Configuration } from "../configuration" -import { getConfig } from "../util/config/config" -import { orNullIfFileNotExist } from "../util/config/load" +import { Configuration } from "../configuration.js" +import { getConfig } from "../util/config/config.js" +import { orNullIfFileNotExist } from "../util/config/load.js" import { getProjectRootPath } from "./search-module.js.js" export type MetadataValue = Lazy | null> diff --git a/packages/app-builder-lib/src/electron/electronWin.ts b/packages/app-builder-lib/src/electron/electronWin.ts index aa36f88c735..75f1925d4b5 100644 --- a/packages/app-builder-lib/src/electron/electronWin.ts +++ b/packages/app-builder-lib/src/electron/electronWin.ts @@ -2,7 +2,7 @@ import { log } from "builder-util" import { readFile, writeFile } from "fs/promises" import * as path from "path" import { NtExecutable, NtExecutableResource, Resource } from "resedit" -import { AsarIntegrity } from "../asar/integrity" +import { AsarIntegrity } from "../asar/integrity.js" /** @internal */ export async function addWinAsarIntegrity(executablePath: string, asarIntegrity: AsarIntegrity) { diff --git a/packages/app-builder-lib/src/electron/injectFFMPEG.ts b/packages/app-builder-lib/src/electron/injectFFMPEG.ts index 3880fc853b2..ccbfb4149b7 100644 --- a/packages/app-builder-lib/src/electron/injectFFMPEG.ts +++ b/packages/app-builder-lib/src/electron/injectFFMPEG.ts @@ -3,8 +3,8 @@ import * as path from "path" import { ElectronPlatformName } from "./ElectronFramework.js.js" import { log } from "builder-util" -import { getBin } from "../binDownload" -import { PrepareApplicationStageDirectoryOptions } from "../Framework" +import { getBin } from "../binDownload.js" +import { PrepareApplicationStageDirectoryOptions } from "../Framework.js" // NOTE: Adapted from https://github.com/MarshallOfSound/electron-packager-plugin-non-proprietary-codecs-ffmpeg to resolve dependency vulnerabilities const downloadFFMPEG = async (electronVersion: string, platform: ElectronPlatformName, arch: string) => { diff --git a/packages/app-builder-lib/src/frameworks/LibUiFramework.ts b/packages/app-builder-lib/src/frameworks/LibUiFramework.ts index 82f7de429ff..92b74f517e5 100644 --- a/packages/app-builder-lib/src/frameworks/LibUiFramework.ts +++ b/packages/app-builder-lib/src/frameworks/LibUiFramework.ts @@ -2,12 +2,12 @@ import { executeAppBuilder } from "builder-util" import { emptyDir } from "fs-extra" import { chmod, mkdir, rename, writeFile } from "fs/promises" import * as path from "path" -import { AfterPackContext } from "../configuration" -import { Platform } from "../core" -import { Framework, PrepareApplicationStageDirectoryOptions } from "../Framework" -import { LinuxPackager } from "../linuxPackager" -import { MacPackager } from "../macPackager" -import { savePlistFile } from "../util/plist" +import { AfterPackContext } from "../configuration.js" +import { Platform } from "../core.js" +import { Framework, PrepareApplicationStageDirectoryOptions } from "../Framework.js" +import { LinuxPackager } from "../linuxPackager.js" +import { MacPackager } from "../macPackager.js" +import { savePlistFile } from "../util/plist.js" export class LibUiFramework implements Framework { readonly name: string = "libui" diff --git a/packages/app-builder-lib/src/index.ts b/packages/app-builder-lib/src/index.ts index c51edd92112..22a1e5f4d82 100644 --- a/packages/app-builder-lib/src/index.ts +++ b/packages/app-builder-lib/src/index.ts @@ -7,7 +7,7 @@ import { PublishManager } from "./publish/PublishManager.js.js" import { resolveFunction } from "./util/resolve.js.js" export { Arch, archFromString, getArchSuffix } from "builder-util" -export { AppInfo } from "./appInfo" +export { AppInfo } from "./appInfo.js" export { AfterExtractContext, AfterPackContext, diff --git a/packages/app-builder-lib/src/options/AppXOptions.ts b/packages/app-builder-lib/src/options/AppXOptions.ts index d5f0ee39d0c..4b0a913964d 100644 --- a/packages/app-builder-lib/src/options/AppXOptions.ts +++ b/packages/app-builder-lib/src/options/AppXOptions.ts @@ -1,4 +1,4 @@ -import { TargetSpecificOptions } from "../core" +import { TargetSpecificOptions } from "../core.js" export interface AppXOptions extends TargetSpecificOptions { /** diff --git a/packages/app-builder-lib/src/options/CommonWindowsInstallerConfiguration.ts b/packages/app-builder-lib/src/options/CommonWindowsInstallerConfiguration.ts index af503c8ae0d..9d33ca0e000 100644 --- a/packages/app-builder-lib/src/options/CommonWindowsInstallerConfiguration.ts +++ b/packages/app-builder-lib/src/options/CommonWindowsInstallerConfiguration.ts @@ -1,6 +1,6 @@ import { InvalidConfigurationError, isEmptyOrSpaces } from "builder-util" import { sanitizeFileName } from "builder-util/out/filename" -import { WinPackager } from "../winPackager" +import { WinPackager } from "../winPackager.js" export interface CommonWindowsInstallerConfiguration { readonly oneClick?: boolean diff --git a/packages/app-builder-lib/src/options/MsiOptions.ts b/packages/app-builder-lib/src/options/MsiOptions.ts index 1b6fede0e72..756355356c8 100644 --- a/packages/app-builder-lib/src/options/MsiOptions.ts +++ b/packages/app-builder-lib/src/options/MsiOptions.ts @@ -1,4 +1,4 @@ -import { TargetSpecificOptions } from "../core" +import { TargetSpecificOptions } from "../core.js" import { CommonWindowsInstallerConfiguration } from "./CommonWindowsInstallerConfiguration.js.js" export interface MsiOptions extends CommonWindowsInstallerConfiguration, TargetSpecificOptions { diff --git a/packages/app-builder-lib/src/options/MsiWrappedOptions.ts b/packages/app-builder-lib/src/options/MsiWrappedOptions.ts index 39cf1028717..5a1d16293eb 100644 --- a/packages/app-builder-lib/src/options/MsiWrappedOptions.ts +++ b/packages/app-builder-lib/src/options/MsiWrappedOptions.ts @@ -1,4 +1,4 @@ -import { TargetSpecificOptions } from "../core" +import { TargetSpecificOptions } from "../core.js" import { CommonWindowsInstallerConfiguration } from "./CommonWindowsInstallerConfiguration.js.js" export interface MsiWrappedOptions extends CommonWindowsInstallerConfiguration, TargetSpecificOptions { diff --git a/packages/app-builder-lib/src/options/PlatformSpecificBuildOptions.ts b/packages/app-builder-lib/src/options/PlatformSpecificBuildOptions.ts index f3029c9608c..8c14c36f567 100644 --- a/packages/app-builder-lib/src/options/PlatformSpecificBuildOptions.ts +++ b/packages/app-builder-lib/src/options/PlatformSpecificBuildOptions.ts @@ -1,4 +1,4 @@ -import { CompressionLevel, Publish, TargetConfiguration, TargetSpecificOptions } from "../core" +import { CompressionLevel, Publish, TargetConfiguration, TargetSpecificOptions } from "../core.js" import { FileAssociation } from "./FileAssociation.js.js" export interface FileSet { diff --git a/packages/app-builder-lib/src/options/SnapOptions.ts b/packages/app-builder-lib/src/options/SnapOptions.ts index d43d2355c15..df0449f2370 100644 --- a/packages/app-builder-lib/src/options/SnapOptions.ts +++ b/packages/app-builder-lib/src/options/SnapOptions.ts @@ -1,4 +1,4 @@ -import { TargetSpecificOptions } from "../core" +import { TargetSpecificOptions } from "../core.js" import { CommonLinuxOptions } from "./linuxOptions.js.js" export interface SnapOptions extends CommonLinuxOptions, TargetSpecificOptions { diff --git a/packages/app-builder-lib/src/options/SquirrelWindowsOptions.ts b/packages/app-builder-lib/src/options/SquirrelWindowsOptions.ts index 9bb97db6e3e..c9176c70e7f 100644 --- a/packages/app-builder-lib/src/options/SquirrelWindowsOptions.ts +++ b/packages/app-builder-lib/src/options/SquirrelWindowsOptions.ts @@ -1,7 +1,7 @@ /** * Squirrel.Windows options. */ -import { TargetSpecificOptions } from "../core" +import { TargetSpecificOptions } from "../core.js" export interface SquirrelWindowsOptions extends TargetSpecificOptions { /** diff --git a/packages/app-builder-lib/src/options/linuxOptions.ts b/packages/app-builder-lib/src/options/linuxOptions.ts index ef9fbd16637..2688e585f58 100644 --- a/packages/app-builder-lib/src/options/linuxOptions.ts +++ b/packages/app-builder-lib/src/options/linuxOptions.ts @@ -1,4 +1,4 @@ -import { PlatformSpecificBuildOptions, TargetConfigType, TargetSpecificOptions } from "../index" +import { PlatformSpecificBuildOptions, TargetConfigType, TargetSpecificOptions } from "../index.js" /** * Example Spec: https://specifications.freedesktop.org/desktop-entry-spec/latest/example.html diff --git a/packages/app-builder-lib/src/options/macOptions.ts b/packages/app-builder-lib/src/options/macOptions.ts index 3fd756bd8e1..b3adfbfff16 100644 --- a/packages/app-builder-lib/src/options/macOptions.ts +++ b/packages/app-builder-lib/src/options/macOptions.ts @@ -1,5 +1,5 @@ -import { PlatformSpecificBuildOptions, TargetConfiguration, TargetSpecificOptions } from "../index" -import { CustomMacSign } from "../macPackager" +import { PlatformSpecificBuildOptions, TargetConfiguration, TargetSpecificOptions } from "../index.js" +import { CustomMacSign } from "../macPackager.js" export type MacOsTargetName = "default" | "dmg" | "mas" | "mas-dev" | "pkg" | "7z" | "zip" | "tar.xz" | "tar.lz" | "tar.gz" | "tar.bz2" | "dir" diff --git a/packages/app-builder-lib/src/options/metadata.ts b/packages/app-builder-lib/src/options/metadata.ts index 223362255a7..24d1b93e301 100644 --- a/packages/app-builder-lib/src/options/metadata.ts +++ b/packages/app-builder-lib/src/options/metadata.ts @@ -1,4 +1,4 @@ -import { Configuration } from "../configuration" +import { Configuration } from "../configuration.js" export interface Metadata { /** diff --git a/packages/app-builder-lib/src/options/pkgOptions.ts b/packages/app-builder-lib/src/options/pkgOptions.ts index 4c6f0079e99..de0fedb1320 100644 --- a/packages/app-builder-lib/src/options/pkgOptions.ts +++ b/packages/app-builder-lib/src/options/pkgOptions.ts @@ -1,4 +1,4 @@ -import { TargetSpecificOptions } from "../core" +import { TargetSpecificOptions } from "../core.js" // noinspection SpellCheckingInspection export type BackgroundAlignment = "center" | "left" | "right" | "top" | "bottom" | "topleft" | "topright" | "bottomleft" | "bottomright" diff --git a/packages/app-builder-lib/src/options/winOptions.ts b/packages/app-builder-lib/src/options/winOptions.ts index 6f4568b9b41..a82a746382f 100644 --- a/packages/app-builder-lib/src/options/winOptions.ts +++ b/packages/app-builder-lib/src/options/winOptions.ts @@ -1,6 +1,6 @@ import { Nullish } from "builder-util-runtime" -import { CustomWindowsSign } from "../codeSign/windowsSignToolManager" -import { PlatformSpecificBuildOptions, TargetConfigType } from "../index" +import { CustomWindowsSign } from "../codeSign/windowsSignToolManager.js" +import { PlatformSpecificBuildOptions, TargetConfigType } from "../index.js" export interface WindowsConfiguration extends PlatformSpecificBuildOptions { /** diff --git a/packages/app-builder-lib/src/platformPackager.ts b/packages/app-builder-lib/src/platformPackager.ts index 076290393e0..277d974403e 100644 --- a/packages/app-builder-lib/src/platformPackager.ts +++ b/packages/app-builder-lib/src/platformPackager.ts @@ -44,7 +44,7 @@ import { PlatformSpecificBuildOptions, Target, TargetSpecificOptions, -} from "./index" +} from "./index.js" import { executeAppBuilderAsJson } from "./util/appBuilder.js.js" import { computeFileSets, computeNodeModuleFileSets, copyAppFiles, ELECTRON_COMPILE_SHIM_FILENAME, transformFiles } from "./util/appFileCopier.js.js" import { expandMacro as doExpandMacro } from "./util/macroExpander.js.js" diff --git a/packages/app-builder-lib/src/presets/rectCra.ts b/packages/app-builder-lib/src/presets/rectCra.ts index 5d610cf64e6..311a17f9076 100644 --- a/packages/app-builder-lib/src/presets/rectCra.ts +++ b/packages/app-builder-lib/src/presets/rectCra.ts @@ -1,6 +1,6 @@ import { log, statOrNull } from "builder-util" import * as path from "path" -import { Configuration } from "../configuration" +import { Configuration } from "../configuration.js" /** @internal */ export async function reactCra(projectDir: string): Promise { diff --git a/packages/app-builder-lib/src/publish/PublishManager.ts b/packages/app-builder-lib/src/publish/PublishManager.ts index 642191b0b27..493f4e35a4a 100644 --- a/packages/app-builder-lib/src/publish/PublishManager.ts +++ b/packages/app-builder-lib/src/publish/PublishManager.ts @@ -35,13 +35,13 @@ import { isCI } from "ci-info" import * as path from "path" import { WriteStream as TtyWriteStream } from "tty" import * as url from "url" -import { AppInfo, ArtifactCreated, Configuration, Platform, PlatformSpecificBuildOptions, Target } from "../index" -import { Packager } from "../packager" -import { PlatformPackager } from "../platformPackager" -import { expandMacro } from "../util/macroExpander" -import { WinPackager } from "../winPackager" +import { AppInfo, ArtifactCreated, Configuration, Platform, PlatformSpecificBuildOptions, Target } from "../index.js" +import { Packager } from "../packager.js" +import { PlatformPackager } from "../platformPackager.js" +import { expandMacro } from "../util/macroExpander.js" +import { WinPackager } from "../winPackager.js" import { createUpdateInfoTasks, UpdateInfoFileTask, writeUpdateInfoFiles } from "./updateInfoBuilder.js.js" -import { resolveModule } from "../util/resolve" +import { resolveModule } from "../util/resolve.js" const publishForPrWarning = "There are serious security concerns with PUBLISH_FOR_PULL_REQUEST=true (see the CircleCI documentation (https://circleci.com/docs/1.0/fork-pr-builds/) for details)" + diff --git a/packages/app-builder-lib/src/publish/updateInfoBuilder.ts b/packages/app-builder-lib/src/publish/updateInfoBuilder.ts index 819dc5d522e..a0ac118e3ae 100644 --- a/packages/app-builder-lib/src/publish/updateInfoBuilder.ts +++ b/packages/app-builder-lib/src/publish/updateInfoBuilder.ts @@ -5,12 +5,12 @@ import { outputFile, outputJson, readFile } from "fs-extra" import { Lazy } from "lazy-val" import * as path from "path" import * as semver from "semver" -import { Platform } from "../core" -import { ReleaseInfo } from "../options/PlatformSpecificBuildOptions" -import { Packager } from "../packager" -import { ArtifactCreated } from "../packagerApi" -import { PlatformPackager } from "../platformPackager" -import { hashFile } from "../util/hash" +import { Platform } from "../core.js" +import { ReleaseInfo } from "../options/PlatformSpecificBuildOptions.js" +import { Packager } from "../packager.js" +import { ArtifactCreated } from "../packagerApi.js" +import { PlatformPackager } from "../platformPackager.js" +import { hashFile } from "../util/hash.js" import { computeDownloadUrl, getPublishConfigsForUpdateInfo } from "./PublishManager.js.js" async function getReleaseInfo(packager: PlatformPackager) { diff --git a/packages/app-builder-lib/src/targets/AppImageTarget.ts b/packages/app-builder-lib/src/targets/AppImageTarget.ts index 95f032dffb8..0d30d8495e1 100644 --- a/packages/app-builder-lib/src/targets/AppImageTarget.ts +++ b/packages/app-builder-lib/src/targets/AppImageTarget.ts @@ -2,12 +2,12 @@ import { Arch, serializeToYaml } from "builder-util" import { outputFile } from "fs-extra" import { Lazy } from "lazy-val" import * as path from "path" -import { Target } from "../core" -import { LinuxPackager } from "../linuxPackager" -import { AppImageOptions } from "../options/linuxOptions" -import { getAppUpdatePublishConfiguration } from "../publish/PublishManager" -import { executeAppBuilderAsJson, objectToArgs } from "../util/appBuilder" -import { getNotLocalizedLicenseFile } from "../util/license" +import { Target } from "../core.js" +import { LinuxPackager } from "../linuxPackager.js" +import { AppImageOptions } from "../options/linuxOptions.js" +import { getAppUpdatePublishConfiguration } from "../publish/PublishManager.js" +import { executeAppBuilderAsJson, objectToArgs } from "../util/appBuilder.js" +import { getNotLocalizedLicenseFile } from "../util/license.js" import { LinuxTargetHelper } from "./LinuxTargetHelper.js.js" import { createStageDir } from "./targetUtil.js.js" diff --git a/packages/app-builder-lib/src/targets/AppxTarget.ts b/packages/app-builder-lib/src/targets/AppxTarget.ts index e9f6663afde..1a1ac94b3d9 100644 --- a/packages/app-builder-lib/src/targets/AppxTarget.ts +++ b/packages/app-builder-lib/src/targets/AppxTarget.ts @@ -3,11 +3,11 @@ import { Nullish } from "builder-util-runtime" import { emptyDir, readdir, readFile, writeFile } from "fs-extra" import * as path from "path" import { AppXOptions } from "../" -import { getSignVendorPath, isOldWin6 } from "../codeSign/windowsSignToolManager" -import { Target } from "../core" -import { getTemplatePath } from "../util/pathManager" -import { VmManager } from "../vm/vm" -import { WinPackager } from "../winPackager" +import { getSignVendorPath, isOldWin6 } from "../codeSign/windowsSignToolManager.js" +import { Target } from "../core.js" +import { getTemplatePath } from "../util/pathManager.js" +import { VmManager } from "../vm/vm.js" +import { WinPackager } from "../winPackager.js" import { createStageDir } from "./targetUtil.js.js" const APPX_ASSETS_DIR_NAME = "appx" diff --git a/packages/app-builder-lib/src/targets/ArchiveTarget.ts b/packages/app-builder-lib/src/targets/ArchiveTarget.ts index 86414c12efe..da9d07497aa 100644 --- a/packages/app-builder-lib/src/targets/ArchiveTarget.ts +++ b/packages/app-builder-lib/src/targets/ArchiveTarget.ts @@ -1,8 +1,8 @@ import { Arch, defaultArchFromString } from "builder-util" import * as path from "path" -import { Platform, Target, TargetSpecificOptions } from "../core" -import { copyFiles, getFileMatchers } from "../fileMatcher" -import { PlatformPackager } from "../platformPackager" +import { Platform, Target, TargetSpecificOptions } from "../core.js" +import { copyFiles, getFileMatchers } from "../fileMatcher.js" +import { PlatformPackager } from "../platformPackager.js" import { archive, tar } from "./archive.js.js" import { appendBlockmap, createBlockmap } from "./differentialUpdateInfoBuilder.js.js" diff --git a/packages/app-builder-lib/src/targets/FlatpakTarget.ts b/packages/app-builder-lib/src/targets/FlatpakTarget.ts index 33d938fd2ae..b2906178f83 100644 --- a/packages/app-builder-lib/src/targets/FlatpakTarget.ts +++ b/packages/app-builder-lib/src/targets/FlatpakTarget.ts @@ -2,10 +2,10 @@ import { bundle as bundleFlatpak, FlatpakBundlerBuildOptions, FlatpakManifest } import { Arch, copyFile, toLinuxArchString } from "builder-util" import { chmod, outputFile } from "fs-extra" import * as path from "path" -import { Target } from "../core" -import { LinuxPackager } from "../linuxPackager" -import { FlatpakOptions } from "../options/linuxOptions" -import { getNotLocalizedLicenseFile } from "../util/license" +import { Target } from "../core.js" +import { LinuxPackager } from "../linuxPackager.js" +import { FlatpakOptions } from "../options/linuxOptions.js" +import { getNotLocalizedLicenseFile } from "../util/license.js" import { LinuxTargetHelper } from "./LinuxTargetHelper.js.js" import { createStageDir, StageDir } from "./targetUtil.js.js" diff --git a/packages/app-builder-lib/src/targets/FpmTarget.ts b/packages/app-builder-lib/src/targets/FpmTarget.ts index 502e364427f..2f83004f40c 100644 --- a/packages/app-builder-lib/src/targets/FpmTarget.ts +++ b/packages/app-builder-lib/src/targets/FpmTarget.ts @@ -3,18 +3,18 @@ import { Nullish } from "builder-util-runtime" import { copyFile, outputFile, stat } from "fs-extra" import { mkdir, readFile } from "fs/promises" import * as path from "path" -import { smarten } from "../appInfo" -import { Target } from "../core" -import * as errorMessages from "../errorMessages" -import { LinuxPackager } from "../linuxPackager" -import { DebOptions, LinuxTargetSpecificOptions } from "../options/linuxOptions" -import { ArtifactCreated } from "../packagerApi" -import { getAppUpdatePublishConfiguration } from "../publish/PublishManager" -import { objectToArgs } from "../util/appBuilder" -import { computeEnv } from "../util/bundledTool" -import { hashFile } from "../util/hash" -import { isMacOsSierra } from "../util/macosVersion" -import { getTemplatePath } from "../util/pathManager" +import { smarten } from "../appInfo.js" +import { Target } from "../core.js" +import * as errorMessages from "../errorMessages.js" +import { LinuxPackager } from "../linuxPackager.js" +import { DebOptions, LinuxTargetSpecificOptions } from "../options/linuxOptions.js" +import { ArtifactCreated } from "../packagerApi.js" +import { getAppUpdatePublishConfiguration } from "../publish/PublishManager.js" +import { objectToArgs } from "../util/appBuilder.js" +import { computeEnv } from "../util/bundledTool.js" +import { hashFile } from "../util/hash.js" +import { isMacOsSierra } from "../util/macosVersion.js" +import { getTemplatePath } from "../util/pathManager.js" import { installPrefix, LinuxTargetHelper } from "./LinuxTargetHelper.js.js" import { getFpmPath, getLinuxToolsPath } from "./tools.js.js" diff --git a/packages/app-builder-lib/src/targets/LinuxTargetHelper.ts b/packages/app-builder-lib/src/targets/LinuxTargetHelper.ts index 14f24257c71..71ae9033a4a 100644 --- a/packages/app-builder-lib/src/targets/LinuxTargetHelper.ts +++ b/packages/app-builder-lib/src/targets/LinuxTargetHelper.ts @@ -2,9 +2,9 @@ import { asArray, exists, isEmptyOrSpaces, log } from "builder-util" import { outputFile } from "fs-extra" import { Lazy } from "lazy-val" import { join } from "path" -import { LinuxPackager } from "../linuxPackager" -import { LinuxTargetSpecificOptions } from "../options/linuxOptions" -import { IconInfo } from "../platformPackager" +import { LinuxPackager } from "../linuxPackager.js" +import { LinuxTargetSpecificOptions } from "../options/linuxOptions.js" +import { IconInfo } from "../platformPackager.js" export const installPrefix = "/opt" diff --git a/packages/app-builder-lib/src/targets/MsiTarget.ts b/packages/app-builder-lib/src/targets/MsiTarget.ts index e172dbc91da..b064cca44e4 100644 --- a/packages/app-builder-lib/src/targets/MsiTarget.ts +++ b/packages/app-builder-lib/src/targets/MsiTarget.ts @@ -6,14 +6,14 @@ import { readFile, writeFile } from "fs/promises" import { Lazy } from "lazy-val" import * as path from "path" import { MsiOptions } from "../" -import { getBinFromUrl } from "../binDownload" -import { Target } from "../core" -import { DesktopShortcutCreationPolicy, FinalCommonWindowsInstallerOptions, getEffectiveOptions } from "../options/CommonWindowsInstallerConfiguration" -import { normalizeExt } from "../platformPackager" -import { getTemplatePath } from "../util/pathManager" -import { VmManager } from "../vm/vm" -import { WineVmManager } from "../vm/WineVm" -import { WinPackager } from "../winPackager" +import { getBinFromUrl } from "../binDownload.js" +import { Target } from "../core.js" +import { DesktopShortcutCreationPolicy, FinalCommonWindowsInstallerOptions, getEffectiveOptions } from "../options/CommonWindowsInstallerConfiguration.js" +import { normalizeExt } from "../platformPackager.js" +import { getTemplatePath } from "../util/pathManager.js" +import { VmManager } from "../vm/vm.js" +import { WineVmManager } from "../vm/WineVm.js" +import { WinPackager } from "../winPackager.js" import { createStageDir, getWindowsInstallationDirName } from "./targetUtil.js.js" const ELECTRON_BUILDER_UPGRADE_CODE_NS_UUID = UUID.parse("d752fe43-5d44-44d5-9fc9-6dd1bf19d5cc") diff --git a/packages/app-builder-lib/src/targets/MsiWrappedTarget.ts b/packages/app-builder-lib/src/targets/MsiWrappedTarget.ts index c59a03fa101..4c7b5c12ccf 100644 --- a/packages/app-builder-lib/src/targets/MsiWrappedTarget.ts +++ b/packages/app-builder-lib/src/targets/MsiWrappedTarget.ts @@ -2,9 +2,9 @@ import { Arch, deepAssign } from "builder-util" import { UUID } from "builder-util-runtime" import * as path from "path" import { MsiWrappedOptions } from "../" -import { TargetConfiguration } from "../core" -import { FinalCommonWindowsInstallerOptions } from "../options/CommonWindowsInstallerConfiguration" -import { WinPackager } from "../winPackager" +import { TargetConfiguration } from "../core.js" +import { FinalCommonWindowsInstallerOptions } from "../options/CommonWindowsInstallerConfiguration.js" +import { WinPackager } from "../winPackager.js" import MsiTarget from "./MsiTarget.js.js" const ELECTRON_MSI_WRAPPED_NS_UUID = UUID.parse("467f7bb2-a83c-442f-b776-394d316e8e53") diff --git a/packages/app-builder-lib/src/targets/archive.ts b/packages/app-builder-lib/src/targets/archive.ts index b4883fb7f72..9e6429eb869 100644 --- a/packages/app-builder-lib/src/targets/archive.ts +++ b/packages/app-builder-lib/src/targets/archive.ts @@ -3,7 +3,7 @@ import { move } from "fs-extra" import * as path from "path" import { create, CreateOptions, FileOptions } from "tar" import { TmpDir } from "temp-file" -import { CompressionLevel } from "../core" +import { CompressionLevel } from "../core.js" import { getLinuxToolsPath } from "./tools.js.js" /** @internal */ diff --git a/packages/app-builder-lib/src/targets/differentialUpdateInfoBuilder.ts b/packages/app-builder-lib/src/targets/differentialUpdateInfoBuilder.ts index 71869cf1f0b..32c66d9b5ab 100644 --- a/packages/app-builder-lib/src/targets/differentialUpdateInfoBuilder.ts +++ b/packages/app-builder-lib/src/targets/differentialUpdateInfoBuilder.ts @@ -1,9 +1,9 @@ import { log } from "builder-util" import { BlockMapDataHolder, PackageFileInfo } from "builder-util-runtime" import * as path from "path" -import { Target } from "../core" -import { PlatformPackager } from "../platformPackager" -import { executeAppBuilderAsJson } from "../util/appBuilder" +import { Target } from "../core.js" +import { PlatformPackager } from "../platformPackager.js" +import { executeAppBuilderAsJson } from "../util/appBuilder.js" import { ArchiveOptions } from "./archive.js.js" export const BLOCK_MAP_FILE_SUFFIX = ".blockmap" diff --git a/packages/app-builder-lib/src/targets/nsis/NsisTarget.ts b/packages/app-builder-lib/src/targets/nsis/NsisTarget.ts index d0358d8355f..d3eb1723632 100644 --- a/packages/app-builder-lib/src/targets/nsis/NsisTarget.ts +++ b/packages/app-builder-lib/src/targets/nsis/NsisTarget.ts @@ -20,17 +20,17 @@ import _debug from "debug" import * as fs from "fs" import { readFile, stat, unlink } from "fs-extra" import * as path from "path" -import { Target } from "../../core" -import { DesktopShortcutCreationPolicy, getEffectiveOptions } from "../../options/CommonWindowsInstallerConfiguration" -import { chooseNotNull, computeSafeArtifactNameIfNeeded, normalizeExt } from "../../platformPackager" -import { hashFile } from "../../util/hash" -import { isMacOsCatalina } from "../../util/macosVersion" -import { time } from "../../util/timer" -import { execWine } from "../../wine" -import { WinPackager } from "../../winPackager" -import { archive, ArchiveOptions } from "../archive" -import { appendBlockmap, configureDifferentialAwareArchiveOptions, createBlockmap, createNsisWebDifferentialUpdateInfo } from "../differentialUpdateInfoBuilder" -import { getWindowsInstallationAppPackageName, getWindowsInstallationDirName } from "../targetUtil" +import { Target } from "../../core.js" +import { DesktopShortcutCreationPolicy, getEffectiveOptions } from "../../options/CommonWindowsInstallerConfiguration.js" +import { chooseNotNull, computeSafeArtifactNameIfNeeded, normalizeExt } from "../../platformPackager.js" +import { hashFile } from "../../util/hash.js" +import { isMacOsCatalina } from "../../util/macosVersion.js" +import { time } from "../../util/timer.js" +import { execWine } from "../../wine.js" +import { WinPackager } from "../../winPackager.js" +import { archive, ArchiveOptions } from "../archive.js" +import { appendBlockmap, configureDifferentialAwareArchiveOptions, createBlockmap, createNsisWebDifferentialUpdateInfo } from "../differentialUpdateInfoBuilder.js" +import { getWindowsInstallationAppPackageName, getWindowsInstallationDirName } from "../targetUtil.js" import { Commands } from "./Commands.js.js" import { Defines } from "./Defines.js.js" import { addCustomMessageFileInclude, createAddLangsMacro, LangConfigurator } from "./nsisLang.js.js" diff --git a/packages/app-builder-lib/src/targets/nsis/WebInstallerTarget.ts b/packages/app-builder-lib/src/targets/nsis/WebInstallerTarget.ts index de96916cd1b..bc16c003062 100644 --- a/packages/app-builder-lib/src/targets/nsis/WebInstallerTarget.ts +++ b/packages/app-builder-lib/src/targets/nsis/WebInstallerTarget.ts @@ -1,6 +1,6 @@ import { Arch, log } from "builder-util" -import { computeDownloadUrl, getPublishConfigs, getPublishConfigsForUpdateInfo } from "../../publish/PublishManager" -import { WinPackager } from "../../winPackager" +import { computeDownloadUrl, getPublishConfigs, getPublishConfigsForUpdateInfo } from "../../publish/PublishManager.js" +import { WinPackager } from "../../winPackager.js" import { NsisWebOptions } from "./nsisOptions.js.js" import { NsisTarget } from "./NsisTarget.js.js" import { AppPackageHelper } from "./nsisUtil.js.js" diff --git a/packages/app-builder-lib/src/targets/nsis/nsisLang.ts b/packages/app-builder-lib/src/targets/nsis/nsisLang.ts index 778fb6f67c8..e673c58bc03 100644 --- a/packages/app-builder-lib/src/targets/nsis/nsisLang.ts +++ b/packages/app-builder-lib/src/targets/nsis/nsisLang.ts @@ -3,8 +3,8 @@ import _debug from "debug" import { outputFile, readFile } from "fs-extra" import { load } from "js-yaml" import * as path from "path" -import { PlatformPackager } from "../../platformPackager" -import { bundledLanguages, langIdToName, lcid, toLangWithRegion } from "../../util/langs" +import { PlatformPackager } from "../../platformPackager.js" +import { bundledLanguages, langIdToName, lcid, toLangWithRegion } from "../../util/langs.js" import { NsisOptions } from "./nsisOptions.js.js" import { NsisScriptGenerator } from "./nsisScriptGenerator.js.js" import { nsisTemplatesDir } from "./nsisUtil.js.js" diff --git a/packages/app-builder-lib/src/targets/nsis/nsisLicense.ts b/packages/app-builder-lib/src/targets/nsis/nsisLicense.ts index b08ebe1d1be..c8cee8aae0f 100644 --- a/packages/app-builder-lib/src/targets/nsis/nsisLicense.ts +++ b/packages/app-builder-lib/src/targets/nsis/nsisLicense.ts @@ -1,9 +1,9 @@ import { log } from "builder-util" import * as fs from "fs" import * as path from "path" -import { lcid } from "../../util/langs" -import { getLicenseFiles, getNotLocalizedLicenseFile } from "../../util/license" -import { WinPackager } from "../../winPackager" +import { lcid } from "../../util/langs.js" +import { getLicenseFiles, getNotLocalizedLicenseFile } from "../../util/license.js" +import { WinPackager } from "../../winPackager.js" import { NsisOptions } from "./nsisOptions.js.js" import { NsisScriptGenerator } from "./nsisScriptGenerator.js.js" import { nsisTemplatesDir } from "./nsisUtil.js.js" diff --git a/packages/app-builder-lib/src/targets/nsis/nsisOptions.ts b/packages/app-builder-lib/src/targets/nsis/nsisOptions.ts index f6c17f655a4..ff97b067d61 100644 --- a/packages/app-builder-lib/src/targets/nsis/nsisOptions.ts +++ b/packages/app-builder-lib/src/targets/nsis/nsisOptions.ts @@ -1,5 +1,5 @@ -import { CommonWindowsInstallerConfiguration } from "../.." -import { TargetSpecificOptions } from "../../core" +import { CommonWindowsInstallerConfiguration } from "../...js" +import { TargetSpecificOptions } from "../../core.js" export interface CustomNsisBinary { /** diff --git a/packages/app-builder-lib/src/targets/nsis/nsisUtil.ts b/packages/app-builder-lib/src/targets/nsis/nsisUtil.ts index 61f9e4f8f26..b8dd6a0b1c6 100644 --- a/packages/app-builder-lib/src/targets/nsis/nsisUtil.ts +++ b/packages/app-builder-lib/src/targets/nsis/nsisUtil.ts @@ -3,8 +3,8 @@ import { PackageFileInfo } from "builder-util-runtime" import * as fs from "fs/promises" import * as path from "path" import * as zlib from "zlib" -import { getBinFromCustomLoc, getBinFromUrl } from "../../binDownload" -import { getTemplatePath } from "../../util/pathManager" +import { getBinFromCustomLoc, getBinFromUrl } from "../../binDownload.js" +import { getTemplatePath } from "../../util/pathManager.js" import { NsisOptions } from "./nsisOptions.js.js" import { NsisTarget } from "./NsisTarget.js.js" diff --git a/packages/app-builder-lib/src/targets/pkg.ts b/packages/app-builder-lib/src/targets/pkg.ts index 8bf509e41fb..e4fc0f4e621 100644 --- a/packages/app-builder-lib/src/targets/pkg.ts +++ b/packages/app-builder-lib/src/targets/pkg.ts @@ -3,13 +3,13 @@ import { Nullish } from "builder-util-runtime" import { readdirSync } from "fs" import { readFile, unlink, writeFile } from "fs/promises" import * as path from "path" -import { filterCFBundleIdentifier } from "../appInfo" -import { findIdentity, Identity } from "../codeSign/macCodeSign" -import { Target } from "../core" -import { MacPackager } from "../macPackager" -import { PkgOptions } from "../options/pkgOptions" -import { savePlistFile, parsePlistFile, PlistObject } from "../util/plist" -import { getNotLocalizedLicenseFile } from "../util/license" +import { filterCFBundleIdentifier } from "../appInfo.js" +import { findIdentity, Identity } from "../codeSign/macCodeSign.js" +import { Target } from "../core.js" +import { MacPackager } from "../macPackager.js" +import { PkgOptions } from "../options/pkgOptions.js" +import { savePlistFile, parsePlistFile, PlistObject } from "../util/plist.js" +import { getNotLocalizedLicenseFile } from "../util/license.js" const certType = "Developer ID Installer" diff --git a/packages/app-builder-lib/src/targets/snap.ts b/packages/app-builder-lib/src/targets/snap.ts index 3e279e725d3..31cdae30c6c 100644 --- a/packages/app-builder-lib/src/targets/snap.ts +++ b/packages/app-builder-lib/src/targets/snap.ts @@ -4,11 +4,11 @@ import { outputFile, readFile } from "fs-extra" import { load } from "js-yaml" import * as path from "path" import * as semver from "semver" -import { Configuration } from "../configuration" -import { Publish, Target } from "../core" -import { LinuxPackager } from "../linuxPackager" -import { PlugDescriptor, SnapOptions } from "../options/SnapOptions" -import { getTemplatePath } from "../util/pathManager" +import { Configuration } from "../configuration.js" +import { Publish, Target } from "../core.js" +import { LinuxPackager } from "../linuxPackager.js" +import { PlugDescriptor, SnapOptions } from "../options/SnapOptions.js" +import { getTemplatePath } from "../util/pathManager.js" import { LinuxTargetHelper } from "./LinuxTargetHelper.js.js" import { createStageDirPath } from "./targetUtil.js.js" diff --git a/packages/app-builder-lib/src/targets/targetFactory.ts b/packages/app-builder-lib/src/targets/targetFactory.ts index baa61c53e12..cfdf6392e17 100644 --- a/packages/app-builder-lib/src/targets/targetFactory.ts +++ b/packages/app-builder-lib/src/targets/targetFactory.ts @@ -1,6 +1,6 @@ import { addValue, Arch, archFromString, ArchType, asArray } from "builder-util" -import { DEFAULT_TARGET, DIR_TARGET, Platform, Target, TargetConfiguration } from "../core" -import { PlatformPackager } from "../platformPackager" +import { DEFAULT_TARGET, DIR_TARGET, Platform, Target, TargetConfiguration } from "../core.js" +import { PlatformPackager } from "../platformPackager.js" import { ArchiveTarget } from "./ArchiveTarget.js.js" const archiveTargets = new Set(["zip", "7z", "tar.xz", "tar.lz", "tar.gz", "tar.bz2"]) diff --git a/packages/app-builder-lib/src/targets/targetUtil.ts b/packages/app-builder-lib/src/targets/targetUtil.ts index cb7fb2a8cff..1c62fd9afde 100644 --- a/packages/app-builder-lib/src/targets/targetUtil.ts +++ b/packages/app-builder-lib/src/targets/targetUtil.ts @@ -2,7 +2,7 @@ import { Arch, debug } from "builder-util" import * as fs from "fs/promises" import * as path from "path" import { AppInfo, Target } from "../" -import { PlatformPackager } from "../platformPackager" +import { PlatformPackager } from "../platformPackager.js" export class StageDir { constructor(readonly dir: string) {} diff --git a/packages/app-builder-lib/src/targets/tools.ts b/packages/app-builder-lib/src/targets/tools.ts index c3a4f535a3a..089df14cf95 100644 --- a/packages/app-builder-lib/src/targets/tools.ts +++ b/packages/app-builder-lib/src/targets/tools.ts @@ -1,5 +1,5 @@ import * as path from "path" -import { getBinFromUrl } from "../binDownload" +import { getBinFromUrl } from "../binDownload.js" export function getLinuxToolsPath() { return getBinFromUrl("linux-tools-mac-10.12.3", "linux-tools-mac-10.12.3.7z", "SQ8fqIRVXuQVWnVgaMTDWyf2TLAJjJYw3tRSqQJECmgF6qdM7Kogfa6KD49RbGzzMYIFca9Uw3MdsxzOPRWcYw==") diff --git a/packages/app-builder-lib/src/util/AppFileWalker.ts b/packages/app-builder-lib/src/util/AppFileWalker.ts index c0f5a4c7b2e..107c4480e70 100644 --- a/packages/app-builder-lib/src/util/AppFileWalker.ts +++ b/packages/app-builder-lib/src/util/AppFileWalker.ts @@ -1,8 +1,8 @@ import { FileConsumer, Filter, FilterStats } from "builder-util" import { readlink, stat, Stats } from "fs-extra" import * as path from "path" -import { FileMatcher } from "../fileMatcher" -import { Packager } from "../packager" +import { FileMatcher } from "../fileMatcher.js" +import { Packager } from "../packager.js" function addAllPatternIfNeed(matcher: FileMatcher) { if (!matcher.isSpecifiedAsEmptyArray && (matcher.isEmpty() || matcher.containsOnlyIgnore())) { diff --git a/packages/app-builder-lib/src/util/NodeModuleCopyHelper.ts b/packages/app-builder-lib/src/util/NodeModuleCopyHelper.ts index 63c19a3f9f9..a408e317969 100644 --- a/packages/app-builder-lib/src/util/NodeModuleCopyHelper.ts +++ b/packages/app-builder-lib/src/util/NodeModuleCopyHelper.ts @@ -3,8 +3,8 @@ import { realpathSync } from "fs" import { lstat, lstatSync, readdir } from "fs-extra" import * as path from "path" import asyncPool from "tiny-async-pool" -import { excludedNames, FileMatcher } from "../fileMatcher" -import { Packager } from "../packager" +import { excludedNames, FileMatcher } from "../fileMatcher.js" +import { Packager } from "../packager.js" import { FileCopyHelper } from "./AppFileWalker.js.js" import { NodeModuleInfo } from "./packageDependencies.js.js" import { resolveFunction } from "./resolve.js.js" diff --git a/packages/app-builder-lib/src/util/appFileCopier.ts b/packages/app-builder-lib/src/util/appFileCopier.ts index 87707e63e7b..98963811d65 100644 --- a/packages/app-builder-lib/src/util/appFileCopier.ts +++ b/packages/app-builder-lib/src/util/appFileCopier.ts @@ -4,16 +4,16 @@ import { ensureSymlink } from "fs-extra" import { mkdir, readlink } from "fs/promises" import * as path from "path" import asyncPool from "tiny-async-pool" -import { isLibOrExe } from "../asar/unpackDetector" -import { Platform } from "../core" -import { excludedExts, FileMatcher } from "../fileMatcher" -import { createElectronCompilerHost, NODE_MODULES_PATTERN } from "../fileTransformer" -import { Packager } from "../packager" -import { PlatformPackager } from "../platformPackager" +import { isLibOrExe } from "../asar/unpackDetector.js" +import { Platform } from "../core.js" +import { excludedExts, FileMatcher } from "../fileMatcher.js" +import { createElectronCompilerHost, NODE_MODULES_PATTERN } from "../fileTransformer.js" +import { Packager } from "../packager.js" +import { PlatformPackager } from "../platformPackager.js" import { AppFileWalker } from "./AppFileWalker.js.js" import { NodeModuleCopyHelper } from "./NodeModuleCopyHelper.js.js" import { NodeModuleInfo } from "./packageDependencies.js.js" -import { getNodeModules } from "../node-module-collector" +import { getNodeModules } from "../node-module-collector.js" const BOWER_COMPONENTS_PATTERN = `${path.sep}bower_components${path.sep}` /** @internal */ diff --git a/packages/app-builder-lib/src/util/config/config.ts b/packages/app-builder-lib/src/util/config/config.ts index 9b908189e89..18a8d052b23 100644 --- a/packages/app-builder-lib/src/util/config/config.ts +++ b/packages/app-builder-lib/src/util/config/config.ts @@ -3,10 +3,10 @@ import { Nullish } from "builder-util-runtime" import { readJson } from "fs-extra" import { Lazy } from "lazy-val" import * as path from "path" -import { Configuration } from "../../configuration" -import { FileSet } from "../../options/PlatformSpecificBuildOptions" -import { reactCra } from "../../presets/rectCra" -import { PACKAGE_VERSION } from "../../version" +import { Configuration } from "../../configuration.js" +import { FileSet } from "../../options/PlatformSpecificBuildOptions.js" +import { reactCra } from "../../presets/rectCra.js" +import { PACKAGE_VERSION } from "../../version.js" import { getConfig as _getConfig, loadParentConfig, orNullIfFileNotExist, ReadConfigRequest } from "./load.js.js" const validateSchema = require("@develar/schema-utils") diff --git a/packages/app-builder-lib/src/util/config/load.ts b/packages/app-builder-lib/src/util/config/load.ts index 2c398084dd4..a0b883207db 100644 --- a/packages/app-builder-lib/src/util/config/load.ts +++ b/packages/app-builder-lib/src/util/config/load.ts @@ -6,7 +6,7 @@ import { createJiti } from "jiti" import { load } from "js-yaml" import { Lazy } from "lazy-val" import * as path from "path" -import { resolveModule } from "../resolve" +import { resolveModule } from "../resolve.js" const jiti = createJiti(__filename) diff --git a/packages/app-builder-lib/src/util/license.ts b/packages/app-builder-lib/src/util/license.ts index 835320830a3..8f268f45b0c 100644 --- a/packages/app-builder-lib/src/util/license.ts +++ b/packages/app-builder-lib/src/util/license.ts @@ -1,6 +1,6 @@ import { Nullish } from "builder-util-runtime" import * as path from "path" -import { PlatformPackager } from "../platformPackager" +import { PlatformPackager } from "../platformPackager.js" import { langIdToName, toLangWithRegion } from "./langs.js.js" export function getLicenseAssets(fileNames: Array, packager: PlatformPackager) { diff --git a/packages/app-builder-lib/src/util/macroExpander.ts b/packages/app-builder-lib/src/util/macroExpander.ts index 33e9109e92c..8ae9a4baccf 100644 --- a/packages/app-builder-lib/src/util/macroExpander.ts +++ b/packages/app-builder-lib/src/util/macroExpander.ts @@ -1,6 +1,6 @@ import { InvalidConfigurationError } from "builder-util" import { Nullish } from "builder-util-runtime" -import { AppInfo } from "../appInfo" +import { AppInfo } from "../appInfo.js" export function expandMacro(pattern: string, arch: string | Nullish, appInfo: AppInfo, extra: any = {}, isProductNameSanitized = true): string { if (arch == null) { diff --git a/packages/app-builder-lib/src/util/packageMetadata.ts b/packages/app-builder-lib/src/util/packageMetadata.ts index 7d0ea1dcc34..74714b094a0 100644 --- a/packages/app-builder-lib/src/util/packageMetadata.ts +++ b/packages/app-builder-lib/src/util/packageMetadata.ts @@ -3,7 +3,7 @@ import { Nullish } from "builder-util-runtime" import { readFile, readJson, readJsonSync } from "fs-extra" import * as path from "path" import * as semver from "semver" -import { Metadata } from "../options/metadata" +import { Metadata } from "../options/metadata.js" import { normalizePackageData } from "./normalizePackageData.js.js" /** @internal */ diff --git a/packages/app-builder-lib/src/util/repositoryInfo.ts b/packages/app-builder-lib/src/util/repositoryInfo.ts index 2a24592f259..c5a6ee98e02 100644 --- a/packages/app-builder-lib/src/util/repositoryInfo.ts +++ b/packages/app-builder-lib/src/util/repositoryInfo.ts @@ -2,8 +2,8 @@ import { orNullIfFileNotExist } from "builder-util" import { readFile } from "fs-extra" import GitHost, { fromUrl } from "hosted-git-info" import * as path from "path" -import { SourceRepositoryInfo } from "../core" -import { Metadata, RepositoryInfo } from "../options/metadata" +import { SourceRepositoryInfo } from "../core.js" +import { Metadata, RepositoryInfo } from "../options/metadata.js" export function getRepositoryInfo(projectDir: string, metadata?: Metadata, devMetadata?: Metadata | null): Promise { return _getInfo(projectDir, (devMetadata == null ? null : devMetadata.repository) || (metadata == null ? null : metadata.repository)) diff --git a/packages/app-builder-lib/src/util/resolve.ts b/packages/app-builder-lib/src/util/resolve.ts index 6fabf84197f..93bf6822fe9 100644 --- a/packages/app-builder-lib/src/util/resolve.ts +++ b/packages/app-builder-lib/src/util/resolve.ts @@ -1,7 +1,7 @@ import { log } from "builder-util/out/log" import debug from "debug" import * as path from "path" -import * as requireMaybe from "../../helpers/dynamic-import" +import * as requireMaybe from "../../helpers/dynamic-import.js" export async function resolveModule(type: string | undefined, name: string): Promise { try { diff --git a/packages/app-builder-lib/src/util/yarn.ts b/packages/app-builder-lib/src/util/yarn.ts index 0113e7f9ea1..fd447abb010 100644 --- a/packages/app-builder-lib/src/util/yarn.ts +++ b/packages/app-builder-lib/src/util/yarn.ts @@ -3,10 +3,10 @@ import { pathExists } from "fs-extra" import { Lazy } from "lazy-val" import { homedir } from "os" import * as path from "path" -import { Configuration } from "../configuration" +import { Configuration } from "../configuration.js" import { executeAppBuilderAndWriteJson } from "./appBuilder.js.js" -import { PM, getPackageManagerCommand } from "../node-module-collector" -import { detectPackageManager } from "../node-module-collector/packageManager" +import { PM, getPackageManagerCommand } from "../node-module-collector.js" +import { detectPackageManager } from "../node-module-collector/packageManager.js" import { NodeModuleDirInfo } from "./packageDependencies.js.js" import { rebuild as remoteRebuild } from "./rebuild.js.js" import * as which from "which" diff --git a/packages/app-builder-lib/src/vm/WineVm.ts b/packages/app-builder-lib/src/vm/WineVm.ts index 6425964063f..956d5c97e34 100644 --- a/packages/app-builder-lib/src/vm/WineVm.ts +++ b/packages/app-builder-lib/src/vm/WineVm.ts @@ -1,7 +1,7 @@ import { ExtraSpawnOptions } from "builder-util" import { ExecFileOptions, SpawnOptions } from "child_process" import * as path from "path" -import { execWine } from "../wine" +import { execWine } from "../wine.js" import { VmManager } from "./vm.js.js" export class WineVmManager extends VmManager { diff --git a/packages/builder-util/src/util.ts b/packages/builder-util/src/util.ts index bbd571c80cf..5727744db00 100644 --- a/packages/builder-util/src/util.ts +++ b/packages/builder-util/src/util.ts @@ -17,7 +17,7 @@ if (process.env.JEST_WORKER_ID == null) { export { safeStringifyJson, retry } from "builder-util-runtime" export { TmpDir } from "temp-file" -export * from "./arch" +export * from "./arch.js" export { Arch, archFromString, ArchType, defaultArchFromString, getArchCliNames, getArchSuffix, toLinuxArchString } from "./arch" export { AsyncTaskManager } from "./asyncTaskManager" export { DebugLogger } from "./DebugLogger" diff --git a/packages/dmg-builder/src/dmgUtil.ts b/packages/dmg-builder/src/dmgUtil.ts index 691e25323c4..cf0b4538835 100644 --- a/packages/dmg-builder/src/dmgUtil.ts +++ b/packages/dmg-builder/src/dmgUtil.ts @@ -5,7 +5,7 @@ import { hdiUtil, hdiutilTransientExitCodes } from "./hdiuil.js.js" import { writeFile } from "fs-extra" import { DmgBuildConfig } from "./dmg.js.js" -export { DmgTarget } from "./dmg" +export { DmgTarget } from "./dmg.js" const root = path.join(__dirname, "..") diff --git a/packages/electron-builder/src/cli/cli.ts b/packages/electron-builder/src/cli/cli.ts index 315e98fadc8..1961aa47c0e 100644 --- a/packages/electron-builder/src/cli/cli.ts +++ b/packages/electron-builder/src/cli/cli.ts @@ -8,8 +8,8 @@ import * as chalk from "chalk" import { readJson } from "fs-extra" import { isCI } from "ci-info" import * as path from "path" -import { build, configureBuildCommand, createYargs } from "../builder" -import { configurePublishCommand, publish } from "../publish" +import { build, configureBuildCommand, createYargs } from "../builder.js" +import { configurePublishCommand, publish } from "../publish.js" import { createSelfSignedCert } from "./create-self-signed-cert.js.js" import { configureInstallAppDepsCommand, installAppDeps } from "./install-app-deps.js.js" import { start } from "./start.js.js" diff --git a/packages/electron-publish/src/index.ts b/packages/electron-publish/src/index.ts index c043f271f6b..afa128c61e3 100644 --- a/packages/electron-publish/src/index.ts +++ b/packages/electron-publish/src/index.ts @@ -2,7 +2,7 @@ import { Arch } from "builder-util" import { CancellationToken } from "builder-util-runtime" import { MultiProgress } from "./multiProgress.js.js" -export { BitbucketPublisher } from "./bitbucketPublisher" +export { BitbucketPublisher } from "./bitbucketPublisher.js" export { GitHubPublisher } from "./gitHubPublisher" export { GitlabPublisher } from "./gitlabPublisher" export { KeygenPublisher } from "./keygenPublisher" diff --git a/packages/electron-publish/src/s3/baseS3Publisher.ts b/packages/electron-publish/src/s3/baseS3Publisher.ts index ca4016864a5..dd258174f81 100644 --- a/packages/electron-publish/src/s3/baseS3Publisher.ts +++ b/packages/electron-publish/src/s3/baseS3Publisher.ts @@ -3,7 +3,7 @@ import { BaseS3Options } from "builder-util-runtime" import { mkdir, symlink } from "fs/promises" import * as path from "path" import { PublishContext, UploadTask } from ".." -import { Publisher } from "../publisher" +import { Publisher } from "../publisher.js" export abstract class BaseS3Publisher extends Publisher { protected constructor( diff --git a/packages/electron-updater/src/differentialDownloader/DifferentialDownloader.ts b/packages/electron-updater/src/differentialDownloader/DifferentialDownloader.ts index 029368ddcce..7889fa24fb3 100644 --- a/packages/electron-updater/src/differentialDownloader/DifferentialDownloader.ts +++ b/packages/electron-updater/src/differentialDownloader/DifferentialDownloader.ts @@ -4,7 +4,7 @@ import { close, open } from "fs-extra" import { createWriteStream } from "fs" import { OutgoingHttpHeaders, RequestOptions } from "http" import { ProgressInfo, CancellationToken } from "builder-util-runtime" -import { Logger } from "../types" +import { Logger } from "../types.js" import { copyData } from "./DataSplitter.js.js" import { URL } from "url" import { computeOperations, Operation, OperationKind } from "./downloadPlanBuilder.js.js" diff --git a/packages/electron-updater/src/differentialDownloader/downloadPlanBuilder.ts b/packages/electron-updater/src/differentialDownloader/downloadPlanBuilder.ts index 7a7c1612c0a..fbf900ccbc4 100644 --- a/packages/electron-updater/src/differentialDownloader/downloadPlanBuilder.ts +++ b/packages/electron-updater/src/differentialDownloader/downloadPlanBuilder.ts @@ -1,5 +1,5 @@ import { BlockMap, BlockMapFile } from "builder-util-runtime/out/blockMapApi" -import { Logger } from "../types" +import { Logger } from "../types.js" export enum OperationKind { COPY, diff --git a/packages/electron-updater/src/main.ts b/packages/electron-updater/src/main.ts index e70aafdcfa5..bb1ca9ddfde 100644 --- a/packages/electron-updater/src/main.ts +++ b/packages/electron-updater/src/main.ts @@ -3,7 +3,7 @@ import * as path from "path" import { AppUpdater } from "./AppUpdater.js.js" import { UpdateInfo } from "builder-util-runtime" -export { BaseUpdater } from "./BaseUpdater" +export { BaseUpdater } from "./BaseUpdater.js" export { AppUpdater, NoOpLogger } from "./AppUpdater" export { Provider } from "./providers/Provider" export { AppImageUpdater } from "./AppImageUpdater" diff --git a/packages/electron-updater/src/providers/BitbucketProvider.ts b/packages/electron-updater/src/providers/BitbucketProvider.ts index 334e5d48e6b..24da7a04546 100644 --- a/packages/electron-updater/src/providers/BitbucketProvider.ts +++ b/packages/electron-updater/src/providers/BitbucketProvider.ts @@ -1,7 +1,7 @@ import { CancellationToken, BitbucketOptions, newError, UpdateInfo } from "builder-util-runtime" -import { AppUpdater } from "../AppUpdater" -import { ResolvedUpdateFileInfo } from "../types" -import { getChannelFilename, newBaseUrl, newUrlFromBase } from "../util" +import { AppUpdater } from "../AppUpdater.js" +import { ResolvedUpdateFileInfo } from "../types.js" +import { getChannelFilename, newBaseUrl, newUrlFromBase } from "../util.js" import { parseUpdateInfo, Provider, ProviderRuntimeOptions, resolveFiles } from "./Provider.js.js" export class BitbucketProvider extends Provider { diff --git a/packages/electron-updater/src/providers/GenericProvider.ts b/packages/electron-updater/src/providers/GenericProvider.ts index 263ca938d05..f4a74b4dfa2 100644 --- a/packages/electron-updater/src/providers/GenericProvider.ts +++ b/packages/electron-updater/src/providers/GenericProvider.ts @@ -1,7 +1,7 @@ import { GenericServerOptions, HttpError, newError, UpdateInfo } from "builder-util-runtime" -import { AppUpdater } from "../AppUpdater" -import { ResolvedUpdateFileInfo } from "../types" -import { getChannelFilename, newBaseUrl, newUrlFromBase } from "../util" +import { AppUpdater } from "../AppUpdater.js" +import { ResolvedUpdateFileInfo } from "../types.js" +import { getChannelFilename, newBaseUrl, newUrlFromBase } from "../util.js" import { parseUpdateInfo, Provider, ProviderRuntimeOptions, resolveFiles } from "./Provider.js.js" export class GenericProvider extends Provider { diff --git a/packages/electron-updater/src/providers/GitHubProvider.ts b/packages/electron-updater/src/providers/GitHubProvider.ts index d86ffb9cb36..e8ba6b0c895 100644 --- a/packages/electron-updater/src/providers/GitHubProvider.ts +++ b/packages/electron-updater/src/providers/GitHubProvider.ts @@ -1,9 +1,9 @@ import { CancellationToken, GithubOptions, githubUrl, HttpError, newError, parseXml, ReleaseNoteInfo, UpdateInfo, XElement } from "builder-util-runtime" import * as semver from "semver" import { URL } from "url" -import { AppUpdater } from "../AppUpdater" -import { ResolvedUpdateFileInfo } from "../types" -import { getChannelFilename, newBaseUrl, newUrlFromBase } from "../util" +import { AppUpdater } from "../AppUpdater.js" +import { ResolvedUpdateFileInfo } from "../types.js" +import { getChannelFilename, newBaseUrl, newUrlFromBase } from "../util.js" import { parseUpdateInfo, Provider, ProviderRuntimeOptions, resolveFiles } from "./Provider.js.js" const hrefRegExp = /\/tag\/([^/]+)$/ diff --git a/packages/electron-updater/src/providers/GitLabProvider.ts b/packages/electron-updater/src/providers/GitLabProvider.ts index 2e5eb752512..a7c831ea678 100644 --- a/packages/electron-updater/src/providers/GitLabProvider.ts +++ b/packages/electron-updater/src/providers/GitLabProvider.ts @@ -2,9 +2,9 @@ import { CancellationToken, GitlabOptions, HttpError, newError, UpdateFileInfo, import { URL } from "url" // @ts-ignore import * as escapeRegExp from "lodash.escaperegexp" -import { AppUpdater } from "../AppUpdater" -import { ResolvedUpdateFileInfo } from "../types" -import { getChannelFilename, newBaseUrl, newUrlFromBase } from "../util" +import { AppUpdater } from "../AppUpdater.js" +import { ResolvedUpdateFileInfo } from "../types.js" +import { getChannelFilename, newBaseUrl, newUrlFromBase } from "../util.js" import { getFileList, parseUpdateInfo, Provider, ProviderRuntimeOptions } from "./Provider.js.js" interface GitlabUpdateInfo extends UpdateInfo { diff --git a/packages/electron-updater/src/providers/KeygenProvider.ts b/packages/electron-updater/src/providers/KeygenProvider.ts index d2dd94d3cdd..6aeb8ed773c 100644 --- a/packages/electron-updater/src/providers/KeygenProvider.ts +++ b/packages/electron-updater/src/providers/KeygenProvider.ts @@ -1,7 +1,7 @@ import { CancellationToken, KeygenOptions, newError, UpdateInfo } from "builder-util-runtime" -import { AppUpdater } from "../AppUpdater" -import { ResolvedUpdateFileInfo } from "../types" -import { getChannelFilename, newBaseUrl, newUrlFromBase } from "../util" +import { AppUpdater } from "../AppUpdater.js" +import { ResolvedUpdateFileInfo } from "../types.js" +import { getChannelFilename, newBaseUrl, newUrlFromBase } from "../util.js" import { parseUpdateInfo, Provider, ProviderRuntimeOptions, resolveFiles } from "./Provider.js.js" export class KeygenProvider extends Provider { diff --git a/packages/electron-updater/src/providers/PrivateGitHubProvider.ts b/packages/electron-updater/src/providers/PrivateGitHubProvider.ts index bffdb0e2f44..5f922c2f9c7 100644 --- a/packages/electron-updater/src/providers/PrivateGitHubProvider.ts +++ b/packages/electron-updater/src/providers/PrivateGitHubProvider.ts @@ -2,11 +2,11 @@ import { CancellationToken, GithubOptions, HttpError, newError, UpdateInfo } fro import { OutgoingHttpHeaders, RequestOptions } from "http" import { load } from "js-yaml" import * as path from "path" -import { AppUpdater } from "../AppUpdater" +import { AppUpdater } from "../AppUpdater.js" import { URL } from "url" -import { getChannelFilename, newUrlFromBase } from "../util" +import { getChannelFilename, newUrlFromBase } from "../util.js" import { BaseGitHubProvider } from "./GitHubProvider.js.js" -import { ResolvedUpdateFileInfo } from "../types" +import { ResolvedUpdateFileInfo } from "../types.js" import { getFileList, ProviderRuntimeOptions } from "./Provider.js.js" export interface PrivateGitHubUpdateInfo extends UpdateInfo { diff --git a/packages/electron-updater/src/providers/Provider.ts b/packages/electron-updater/src/providers/Provider.ts index 4d247325b33..6098a1f62d5 100644 --- a/packages/electron-updater/src/providers/Provider.ts +++ b/packages/electron-updater/src/providers/Provider.ts @@ -2,9 +2,9 @@ import { CancellationToken, configureRequestUrl, newError, safeStringifyJson, Up import { OutgoingHttpHeaders, RequestOptions } from "http" import { load } from "js-yaml" import { URL } from "url" -import { ElectronHttpExecutor } from "../electronHttpExecutor" -import { ResolvedUpdateFileInfo } from "../types" -import { newUrlFromBase } from "../util" +import { ElectronHttpExecutor } from "../electronHttpExecutor.js" +import { ResolvedUpdateFileInfo } from "../types.js" +import { newUrlFromBase } from "../util.js" // @ts-ignore import * as escapeRegExp from "lodash.escaperegexp" From c92b222656cf899208e406382ce5577e728fa550 Mon Sep 17 00:00:00 2001 From: Mike Maietta Date: Tue, 9 Dec 2025 19:11:15 -0800 Subject: [PATCH 04/61] tmp save for .js extension migration --- packages/app-builder-lib/src/Framework.ts | 4 +- .../app-builder-lib/src/ProtonFramework.ts | 8 +-- packages/app-builder-lib/src/appInfo.ts | 11 ++-- .../src/asar/asarFileChecker.ts | 2 +- packages/app-builder-lib/src/asar/asarUtil.ts | 4 +- .../app-builder-lib/src/asar/integrity.ts | 2 +- packages/app-builder-lib/src/binDownload.ts | 2 +- .../src/codeSign/macCodeSign.ts | 8 +-- .../src/codeSign/signManager.ts | 4 +- .../src/codeSign/windowsSignAzureManager.ts | 6 +- .../src/codeSign/windowsSignToolManager.ts | 6 +- packages/app-builder-lib/src/configuration.ts | 34 +++++----- .../src/electron/ElectronFramework.ts | 8 +-- .../src/electron/electronMac.ts | 2 +- .../src/electron/electronVersion.ts | 2 +- .../src/electron/electronWin.ts | 4 +- .../src/electron/injectFFMPEG.ts | 2 +- packages/app-builder-lib/src/fileMatcher.ts | 6 +- .../app-builder-lib/src/fileTransformer.ts | 4 +- packages/app-builder-lib/src/forge-maker.ts | 4 +- packages/app-builder-lib/src/index.ts | 65 ++++++++++--------- packages/app-builder-lib/src/linuxPackager.ts | 22 +++---- packages/app-builder-lib/src/macPackager.ts | 34 +++++----- .../bunNodeModulesCollector.ts | 6 +- .../src/node-module-collector/index.ts | 14 ++-- .../src/node-module-collector/moduleCache.ts | 2 +- .../nodeModulesCollector.ts | 8 +-- .../npmNodeModulesCollector.ts | 6 +- .../pnpmNodeModulesCollector.ts | 6 +- .../yarnBerryNodeModulesCollector.ts | 6 +- .../yarnNodeModulesCollector.ts | 6 +- .../CommonWindowsInstallerConfiguration.ts | 2 +- .../app-builder-lib/src/options/MsiOptions.ts | 2 +- .../src/options/MsiWrappedOptions.ts | 2 +- .../options/PlatformSpecificBuildOptions.ts | 2 +- .../src/options/SnapOptions.ts | 2 +- packages/app-builder-lib/src/packager.ts | 50 +++++++------- packages/app-builder-lib/src/packagerApi.ts | 8 +-- .../app-builder-lib/src/platformPackager.ts | 24 +++---- .../src/publish/PublishManager.ts | 4 +- .../src/publish/updateInfoBuilder.ts | 2 +- .../src/targets/AppImageTarget.ts | 7 +- .../app-builder-lib/src/targets/AppxTarget.ts | 7 +- .../src/targets/ArchiveTarget.ts | 7 +- .../src/targets/FlatpakTarget.ts | 13 ++-- .../app-builder-lib/src/targets/FpmTarget.ts | 7 +- .../app-builder-lib/src/targets/MsiTarget.ts | 7 +- .../src/targets/MsiWrappedTarget.ts | 4 +- .../app-builder-lib/src/targets/archive.ts | 2 +- .../targets/differentialUpdateInfoBuilder.ts | 2 +- .../src/targets/nsis/Defines.ts | 2 +- .../src/targets/nsis/NsisTarget.ts | 14 ++-- .../src/targets/nsis/WebInstallerTarget.ts | 6 +- .../src/targets/nsis/nsisLang.ts | 6 +- .../src/targets/nsis/nsisLicense.ts | 6 +- .../src/targets/nsis/nsisOptions.ts | 2 +- .../src/targets/nsis/nsisUtil.ts | 4 +- packages/app-builder-lib/src/targets/pkg.ts | 13 ++-- packages/app-builder-lib/src/targets/snap.ts | 7 +- .../src/targets/targetFactory.ts | 2 +- .../app-builder-lib/src/targets/targetUtil.ts | 2 +- .../src/util/NodeModuleCopyHelper.ts | 6 +- .../app-builder-lib/src/util/appFileCopier.ts | 8 +-- .../app-builder-lib/src/util/config/config.ts | 2 +- packages/app-builder-lib/src/util/license.ts | 2 +- .../src/util/packageDependencies.ts | 2 +- .../src/util/packageMetadata.ts | 2 +- packages/app-builder-lib/src/util/resolve.ts | 2 +- packages/app-builder-lib/src/util/yarn.ts | 8 +-- packages/app-builder-lib/src/vm/MonoVm.ts | 2 +- .../app-builder-lib/src/vm/ParallelsVm.ts | 2 +- packages/app-builder-lib/src/vm/PwshVm.ts | 2 +- packages/app-builder-lib/src/vm/WineVm.ts | 2 +- packages/app-builder-lib/src/vm/vm.ts | 2 +- packages/app-builder-lib/src/winPackager.ts | 42 ++++++------ .../builder-util-runtime/src/httpExecutor.ts | 8 +-- packages/builder-util-runtime/src/index.ts | 24 +++---- .../src/publishOptions.ts | 2 +- packages/builder-util-runtime/src/retry.ts | 2 +- packages/builder-util-runtime/src/uuid.ts | 2 +- packages/builder-util-runtime/src/xml.ts | 2 +- packages/builder-util/src/DebugLogger.ts | 4 +- packages/builder-util/src/asyncTaskManager.ts | 4 +- packages/builder-util/src/deepAssign.ts | 2 +- packages/builder-util/src/fs.ts | 4 +- packages/builder-util/src/util.ts | 5 +- packages/dmg-builder/src/dmg.ts | 14 ++-- packages/dmg-builder/src/dmgLicense.ts | 2 +- packages/dmg-builder/src/dmgUtil.ts | 4 +- packages/dmg-builder/src/licenseButtons.ts | 4 +- .../src/SquirrelWindowsTarget.ts | 2 +- packages/electron-builder/src/cli/cli.ts | 6 +- .../src/cli/create-self-signed-cert.ts | 2 +- packages/electron-builder/src/publish.ts | 2 +- .../src/bitbucketPublisher.ts | 8 +-- .../electron-publish/src/gitHubPublisher.ts | 6 +- .../electron-publish/src/gitlabPublisher.ts | 6 +- .../electron-publish/src/httpPublisher.ts | 4 +- packages/electron-publish/src/index.ts | 21 +++--- .../electron-publish/src/keygenPublisher.ts | 8 +-- .../electron-publish/src/multiProgress.ts | 2 +- packages/electron-publish/src/publisher.ts | 4 +- .../src/s3/baseS3Publisher.ts | 2 +- .../electron-publish/src/s3/s3Publisher.ts | 4 +- .../src/s3/spacesPublisher.ts | 4 +- .../src/snapStorePublisher.ts | 6 +- .../electron-updater/src/AppImageUpdater.ts | 12 ++-- packages/electron-updater/src/AppUpdater.ts | 22 +++---- packages/electron-updater/src/BaseUpdater.ts | 4 +- packages/electron-updater/src/DebUpdater.ts | 12 ++-- .../src/DownloadedUpdateHelper.ts | 4 +- .../src/ElectronAppAdapter.ts | 2 +- packages/electron-updater/src/LinuxUpdater.ts | 4 +- packages/electron-updater/src/MacUpdater.ts | 10 +-- packages/electron-updater/src/NsisUpdater.ts | 18 ++--- .../electron-updater/src/PacmanUpdater.ts | 12 ++-- packages/electron-updater/src/RpmUpdater.ts | 12 ++-- .../differentialDownloader/DataSplitter.ts | 2 +- .../DifferentialDownloader.ts | 8 +-- ...hEmbeddedBlockMapDifferentialDownloader.ts | 2 +- .../GenericDifferentialDownloader.ts | 2 +- .../multipleRangeDownloader.ts | 6 +- packages/electron-updater/src/main.ts | 2 +- .../electron-updater/src/providerFactory.ts | 16 ++--- .../src/providers/BitbucketProvider.ts | 2 +- .../src/providers/GenericProvider.ts | 2 +- .../src/providers/GitHubProvider.ts | 2 +- .../src/providers/GitLabProvider.ts | 2 +- .../src/providers/KeygenProvider.ts | 2 +- .../src/providers/PrivateGitHubProvider.ts | 4 +- packages/electron-updater/src/types.ts | 2 +- .../windowsExecutableCodeSignatureVerifier.ts | 2 +- test/src/filenameUtilTest.ts | 2 +- 133 files changed, 476 insertions(+), 464 deletions(-) diff --git a/packages/app-builder-lib/src/Framework.ts b/packages/app-builder-lib/src/Framework.ts index cec5b8e064d..e9aa387244d 100644 --- a/packages/app-builder-lib/src/Framework.ts +++ b/packages/app-builder-lib/src/Framework.ts @@ -1,6 +1,6 @@ import { FileTransformer } from "builder-util" -import { AsarIntegrity } from "./asar/integrity.js.js" -import { AfterPackContext, ElectronPlatformName, Platform, PlatformPackager } from "./index.js.js" +import { AsarIntegrity } from "./asar/integrity.js" +import { AfterPackContext, ElectronPlatformName, Platform, PlatformPackager } from "./index.js" export interface Framework { readonly name: string diff --git a/packages/app-builder-lib/src/ProtonFramework.ts b/packages/app-builder-lib/src/ProtonFramework.ts index 77797b1c351..b8015285020 100644 --- a/packages/app-builder-lib/src/ProtonFramework.ts +++ b/packages/app-builder-lib/src/ProtonFramework.ts @@ -1,9 +1,9 @@ import { FileTransformer, log } from "builder-util" import { safeStringifyJson } from "builder-util-runtime" -import { Platform } from "./core.js.js" -import { NODE_MODULES_PATTERN } from "./fileTransformer.js.js" -import { LibUiFramework } from "./frameworks/LibUiFramework.js.js" -import { getTemplatePath } from "./util/pathManager.js.js" +import { Platform } from "./core.js" +import { NODE_MODULES_PATTERN } from "./fileTransformer.js" +import { LibUiFramework } from "./frameworks/LibUiFramework.js" +import { getTemplatePath } from "./util/pathManager.js" export class ProtonFramework extends LibUiFramework { readonly name = "proton" diff --git a/packages/app-builder-lib/src/appInfo.ts b/packages/app-builder-lib/src/appInfo.ts index 0c37ccb1a6d..e1b38b4bf9d 100644 --- a/packages/app-builder-lib/src/appInfo.ts +++ b/packages/app-builder-lib/src/appInfo.ts @@ -1,10 +1,10 @@ import { isEmptyOrSpaces, log } from "builder-util" import { Nullish } from "builder-util-runtime" -import { sanitizeFileName } from "builder-util/out/filename" +import { sanitizeFileName } from "builder-util" import { prerelease } from "semver" -import { PlatformSpecificBuildOptions } from "./options/PlatformSpecificBuildOptions.js.js" -import { Packager } from "./packager.js.js" -import { expandMacro } from "./util/macroExpander.js.js" +import { PlatformSpecificBuildOptions } from "./options/PlatformSpecificBuildOptions.js" +import { Packager } from "./packager.js" +import { expandMacro } from "./util/macroExpander.js" // fpm bug - rpm build --description is not escaped, well... decided to replace quite to smart quote // http://leancrew.com/all-this/2010/11/smart-quotes-in-javascript/ @@ -21,7 +21,7 @@ export function smarten(s: string): string { } export class AppInfo { - readonly description = smarten(this.info.metadata.description || "") + readonly description: string readonly version: string readonly type: string | undefined readonly shortVersion: string | undefined @@ -40,6 +40,7 @@ export class AppInfo { private readonly platformSpecificOptions: PlatformSpecificBuildOptions | null = null, normalizeNfd = false ) { + this.description = smarten(this.info.metadata.description || "") this.version = info.metadata.version! this.type = info.metadata.type diff --git a/packages/app-builder-lib/src/asar/asarFileChecker.ts b/packages/app-builder-lib/src/asar/asarFileChecker.ts index da9daa56a9a..16e44783fd5 100644 --- a/packages/app-builder-lib/src/asar/asarFileChecker.ts +++ b/packages/app-builder-lib/src/asar/asarFileChecker.ts @@ -1,5 +1,5 @@ import * as asar from "@electron/asar" -import { FilesystemEntry, FilesystemFileEntry } from "@electron/asar/lib/filesystem" +import { FilesystemEntry, FilesystemFileEntry } from "@electron/asar/lib/filesystem.js" export function checkFileInArchive(asarFile: string, relativeFile: string, messagePrefix: string) { function error(text: string) { diff --git a/packages/app-builder-lib/src/asar/asarUtil.ts b/packages/app-builder-lib/src/asar/asarUtil.ts index 4bf37172a1a..3b2ea0e793a 100644 --- a/packages/app-builder-lib/src/asar/asarUtil.ts +++ b/packages/app-builder-lib/src/asar/asarUtil.ts @@ -1,13 +1,13 @@ import { createPackageFromStreams, AsarStreamType, AsarDirectory } from "@electron/asar" import { log } from "builder-util" -import { exists, Filter } from "builder-util/out/fs" +import { exists, Filter } from "builder-util" import * as fs from "fs-extra" import { readlink } from "fs-extra" import * as path from "path" import { AsarOptions } from "../options/PlatformSpecificBuildOptions.js" import { PlatformPackager } from "../platformPackager.js" import { ResolvedFileSet, getDestinationPath } from "../util/appFileCopier.js" -import { detectUnpackedDirs } from "./unpackDetector.js.js" +import { detectUnpackedDirs } from "./unpackDetector.js" import { Readable } from "stream" import * as os from "os" diff --git a/packages/app-builder-lib/src/asar/integrity.ts b/packages/app-builder-lib/src/asar/integrity.ts index 4ae3abb687e..868285d10db 100644 --- a/packages/app-builder-lib/src/asar/integrity.ts +++ b/packages/app-builder-lib/src/asar/integrity.ts @@ -3,7 +3,7 @@ import { createHash } from "crypto" import { readdir } from "fs/promises" import * as path from "path" import { FileMatcher } from "../fileMatcher.js" -import { readAsarHeader } from "./asar.js.js" +import { readAsarHeader } from "./asar.js" export interface AsarIntegrityOptions { readonly resourcesPath: string diff --git a/packages/app-builder-lib/src/binDownload.ts b/packages/app-builder-lib/src/binDownload.ts index 88d50264787..07360c57c8a 100644 --- a/packages/app-builder-lib/src/binDownload.ts +++ b/packages/app-builder-lib/src/binDownload.ts @@ -1,6 +1,6 @@ import { executeAppBuilder } from "builder-util" import { Nullish } from "builder-util-runtime" -import { sanitizeFileName } from "builder-util/out/filename" +import { sanitizeFileName } from "builder-util" import * as path from "path" const versionToPromise = new Map>() diff --git a/packages/app-builder-lib/src/codeSign/macCodeSign.ts b/packages/app-builder-lib/src/codeSign/macCodeSign.ts index d0d1759c24e..6dc833e2295 100644 --- a/packages/app-builder-lib/src/codeSign/macCodeSign.ts +++ b/packages/app-builder-lib/src/codeSign/macCodeSign.ts @@ -1,6 +1,4 @@ -import { signAsync } from "@electron/osx-sign" -import { SignOptions } from "@electron/osx-sign/dist/cjs/types" -import { Identity as _Identity } from "@electron/osx-sign/dist/cjs/util-identities" +import { signAsync, SignOptions } from "@electron/osx-sign" import { copyFile, exec, Fields, InvalidConfigurationError, isEmptyOrSpaces, isEnvTrue, isPullRequest, log, Logger, retry, TmpDir, unlinkIfExists } from "builder-util" import { Nullish } from "builder-util-runtime" import { createHash, randomBytes } from "crypto" @@ -10,7 +8,7 @@ import { homedir, tmpdir } from "os" import * as path from "path" import { getTempName } from "temp-file" import { isAutoDiscoveryCodeSignIdentity } from "../util/flags.js" -import { importCertificate } from "./codesign.js.js" +import { importCertificate } from "./codesign.js" export const appleCertificatePrefixes = ["Developer ID Application:", "Developer ID Installer:", "3rd Party Mac Developer Application:", "3rd Party Mac Developer Installer:"] @@ -318,7 +316,7 @@ function parseIdentity(line: string): Identity { const firstQuoteIndex = line.indexOf('"') const name = line.substring(firstQuoteIndex + 1, line.lastIndexOf('"')) const hash = line.substring(0, firstQuoteIndex - 1) - return new _Identity(name, hash) + return new Identity(name, hash) } export function findIdentity(certType: CertType, qualifier?: string | null, keychain?: string | null): Promise { diff --git a/packages/app-builder-lib/src/codeSign/signManager.ts b/packages/app-builder-lib/src/codeSign/signManager.ts index ccc8987b06b..ee6ac00ed8b 100644 --- a/packages/app-builder-lib/src/codeSign/signManager.ts +++ b/packages/app-builder-lib/src/codeSign/signManager.ts @@ -2,8 +2,8 @@ import { MemoLazy, Nullish } from "builder-util-runtime" import { Lazy } from "lazy-val" import { Target } from "../core.js" import { WindowsConfiguration } from "../options/winOptions.js" -import { WindowsSignOptions } from "./windowsCodeSign.js.js" -import { CertificateFromStoreInfo, FileCodeSigningInfo } from "./windowsSignToolManager.js.js" +import { WindowsSignOptions } from "./windowsCodeSign.js" +import { CertificateFromStoreInfo, FileCodeSigningInfo } from "./windowsSignToolManager.js" export interface SignManager { readonly computedPublisherName: Lazy | null> diff --git a/packages/app-builder-lib/src/codeSign/windowsSignAzureManager.ts b/packages/app-builder-lib/src/codeSign/windowsSignAzureManager.ts index b81d6eff553..b5007865847 100644 --- a/packages/app-builder-lib/src/codeSign/windowsSignAzureManager.ts +++ b/packages/app-builder-lib/src/codeSign/windowsSignAzureManager.ts @@ -3,9 +3,9 @@ import { MemoLazy } from "builder-util-runtime" import { Lazy } from "lazy-val" import { WindowsAzureSigningConfiguration, WindowsConfiguration } from "../options/winOptions.js" import { WinPackager } from "../winPackager.js" -import { SignManager } from "./signManager.js.js" -import { WindowsSignOptions } from "./windowsCodeSign.js.js" -import { CertificateFromStoreInfo, FileCodeSigningInfo } from "./windowsSignToolManager.js.js" +import { SignManager } from "./signManager.js" +import { WindowsSignOptions } from "./windowsCodeSign.js" +import { CertificateFromStoreInfo, FileCodeSigningInfo } from "./windowsSignToolManager.js" export class WindowsSignAzureManager implements SignManager { private readonly platformSpecificBuildOptions: WindowsConfiguration diff --git a/packages/app-builder-lib/src/codeSign/windowsSignToolManager.ts b/packages/app-builder-lib/src/codeSign/windowsSignToolManager.ts index 8f9f84a717a..9f3020159e3 100644 --- a/packages/app-builder-lib/src/codeSign/windowsSignToolManager.ts +++ b/packages/app-builder-lib/src/codeSign/windowsSignToolManager.ts @@ -14,9 +14,9 @@ import { isUseSystemSigncode } from "../util/flags.js" import { resolveFunction } from "../util/resolve.js" import { VmManager } from "../vm/vm.js" import { WinPackager } from "../winPackager.js" -import { importCertificate } from "./codesign.js.js" -import { SignManager } from "./signManager.js.js" -import { WindowsSignOptions } from "./windowsCodeSign.js.js" +import { importCertificate } from "./codesign.js" +import { SignManager } from "./signManager.js" +import { WindowsSignOptions } from "./windowsCodeSign.js" export function getSignVendorPath() { return getBin("winCodeSign") diff --git a/packages/app-builder-lib/src/configuration.ts b/packages/app-builder-lib/src/configuration.ts index e747a0e47c7..c11c6f4d438 100644 --- a/packages/app-builder-lib/src/configuration.ts +++ b/packages/app-builder-lib/src/configuration.ts @@ -1,21 +1,21 @@ import { Arch } from "builder-util" -import { BeforeBuildContext, Target } from "./core.js.js" -import { ElectronBrandingOptions, ElectronDownloadOptions } from "./electron/ElectronFramework.js.js" -import { PrepareApplicationStageDirectoryOptions } from "./Framework.js.js" -import { AppXOptions } from "./options/AppXOptions.js.js" -import { AppImageOptions, DebOptions, FlatpakOptions, LinuxConfiguration, LinuxTargetSpecificOptions } from "./options/linuxOptions.js.js" -import { DmgOptions, MacConfiguration, MasConfiguration } from "./options/macOptions.js.js" -import { MsiOptions } from "./options/MsiOptions.js.js" -import { MsiWrappedOptions } from "./options/MsiWrappedOptions.js.js" -import { PkgOptions } from "./options/pkgOptions.js.js" -import { PlatformSpecificBuildOptions } from "./options/PlatformSpecificBuildOptions.js.js" -import { SnapOptions } from "./options/SnapOptions.js.js" -import { SquirrelWindowsOptions } from "./options/SquirrelWindowsOptions.js.js" -import { WindowsConfiguration } from "./options/winOptions.js.js" -import { BuildResult } from "./packager.js.js" -import { ArtifactBuildStarted, ArtifactCreated } from "./packagerApi.js.js" -import { PlatformPackager } from "./platformPackager.js.js" -import { NsisOptions, NsisWebOptions, PortableOptions } from "./targets/nsis/nsisOptions.js.js" +import { BeforeBuildContext, Target } from "./core.js" +import { ElectronBrandingOptions, ElectronDownloadOptions } from "./electron/ElectronFramework.js" +import { PrepareApplicationStageDirectoryOptions } from "./Framework.js" +import { AppXOptions } from "./options/AppXOptions.js" +import { AppImageOptions, DebOptions, FlatpakOptions, LinuxConfiguration, LinuxTargetSpecificOptions } from "./options/linuxOptions.js" +import { DmgOptions, MacConfiguration, MasConfiguration } from "./options/macOptions.js" +import { MsiOptions } from "./options/MsiOptions.js" +import { MsiWrappedOptions } from "./options/MsiWrappedOptions.js" +import { PkgOptions } from "./options/pkgOptions.js" +import { PlatformSpecificBuildOptions } from "./options/PlatformSpecificBuildOptions.js" +import { SnapOptions } from "./options/SnapOptions.js" +import { SquirrelWindowsOptions } from "./options/SquirrelWindowsOptions.js" +import { WindowsConfiguration } from "./options/winOptions.js" +import { BuildResult } from "./packager.js" +import { ArtifactBuildStarted, ArtifactCreated } from "./packagerApi.js" +import { PlatformPackager } from "./platformPackager.js" +import { NsisOptions, NsisWebOptions, PortableOptions } from "./targets/nsis/nsisOptions.js" // duplicate appId here because it is important /** diff --git a/packages/app-builder-lib/src/electron/ElectronFramework.ts b/packages/app-builder-lib/src/electron/ElectronFramework.ts index 004cfd2fb3c..8b445267e5c 100644 --- a/packages/app-builder-lib/src/electron/ElectronFramework.ts +++ b/packages/app-builder-lib/src/electron/ElectronFramework.ts @@ -9,10 +9,10 @@ import { LinuxPackager } from "../linuxPackager.js" import { MacPackager } from "../macPackager.js" import { getTemplatePath } from "../util/pathManager.js" import { resolveFunction } from "../util/resolve.js" -import { createMacApp } from "./electronMac.js.js" -import { computeElectronVersion, getElectronVersionFromInstalled } from "./electronVersion.js.js" -import { addWinAsarIntegrity } from "./electronWin.js.js" -import injectFFMPEG from "./injectFFMPEG.js.js" +import { createMacApp } from "./electronMac.js" +import { computeElectronVersion, getElectronVersionFromInstalled } from "./electronVersion.js" +import { addWinAsarIntegrity } from "./electronWin.js" +import injectFFMPEG from "./injectFFMPEG.js" export type ElectronPlatformName = "darwin" | "linux" | "win32" | "mas" diff --git a/packages/app-builder-lib/src/electron/electronMac.ts b/packages/app-builder-lib/src/electron/electronMac.ts index e44d35762ca..8f252cf55bf 100644 --- a/packages/app-builder-lib/src/electron/electronMac.ts +++ b/packages/app-builder-lib/src/electron/electronMac.ts @@ -7,7 +7,7 @@ import { AsarIntegrity } from "../asar/integrity.js" import { MacPackager } from "../macPackager.js" import { normalizeExt } from "../platformPackager.js" import { savePlistFile, parsePlistFile, PlistObject, PlistValue } from "../util/plist.js" -import { createBrandingOpts } from "./ElectronFramework.js.js" +import { createBrandingOpts } from "./ElectronFramework.js" function doRename(basePath: string, oldName: string, newName: string) { return rename(path.join(basePath, oldName), path.join(basePath, newName)) diff --git a/packages/app-builder-lib/src/electron/electronVersion.ts b/packages/app-builder-lib/src/electron/electronVersion.ts index b5fa119c488..01358aaff82 100644 --- a/packages/app-builder-lib/src/electron/electronVersion.ts +++ b/packages/app-builder-lib/src/electron/electronVersion.ts @@ -7,7 +7,7 @@ import * as semver from "semver" import { Configuration } from "../configuration.js" import { getConfig } from "../util/config/config.js" import { orNullIfFileNotExist } from "../util/config/load.js" -import { getProjectRootPath } from "./search-module.js.js" +import { getProjectRootPath } from "./search-module.js" export type MetadataValue = Lazy | null> diff --git a/packages/app-builder-lib/src/electron/electronWin.ts b/packages/app-builder-lib/src/electron/electronWin.ts index 75f1925d4b5..b4d2f483247 100644 --- a/packages/app-builder-lib/src/electron/electronWin.ts +++ b/packages/app-builder-lib/src/electron/electronWin.ts @@ -27,10 +27,12 @@ export async function addWinAsarIntegrity(executablePath: string, asarIntegrity: value, })) + const encoder = new TextEncoder() + resource.entries.push({ type: "INTEGRITY", id: "ELECTRONASAR", - bin: Buffer.from(JSON.stringify(integrityList)), + bin: encoder.encode(JSON.stringify(integrityList)).buffer as ArrayBuffer, lang: languages[0].lang, codepage: languages[0].codepage, }) diff --git a/packages/app-builder-lib/src/electron/injectFFMPEG.ts b/packages/app-builder-lib/src/electron/injectFFMPEG.ts index ccbfb4149b7..94cb7c2139f 100644 --- a/packages/app-builder-lib/src/electron/injectFFMPEG.ts +++ b/packages/app-builder-lib/src/electron/injectFFMPEG.ts @@ -1,6 +1,6 @@ import * as fs from "fs" import * as path from "path" -import { ElectronPlatformName } from "./ElectronFramework.js.js" +import { ElectronPlatformName } from "./ElectronFramework.js" import { log } from "builder-util" import { getBin } from "../binDownload.js" diff --git a/packages/app-builder-lib/src/fileMatcher.ts b/packages/app-builder-lib/src/fileMatcher.ts index 34a7cc5b594..acedaec63f8 100644 --- a/packages/app-builder-lib/src/fileMatcher.ts +++ b/packages/app-builder-lib/src/fileMatcher.ts @@ -3,9 +3,9 @@ import { Nullish } from "builder-util-runtime" import { mkdir } from "fs/promises" import { Minimatch } from "minimatch" import * as path from "path" -import { Configuration, FileSet, Packager, PlatformSpecificBuildOptions } from "./index.js.js" -import { PlatformPackager } from "./platformPackager.js.js" -import { createFilter, hasMagic } from "./util/filter.js.js" +import { Configuration, FileSet, Packager, PlatformSpecificBuildOptions } from "./index.js" +import { PlatformPackager } from "./platformPackager.js" +import { createFilter, hasMagic } from "./util/filter.js" // https://github.com/electron-userland/electron-builder/issues/733 const minimatchOptions = { dot: true } diff --git a/packages/app-builder-lib/src/fileTransformer.ts b/packages/app-builder-lib/src/fileTransformer.ts index 4ec24835026..e411de8e303 100644 --- a/packages/app-builder-lib/src/fileTransformer.ts +++ b/packages/app-builder-lib/src/fileTransformer.ts @@ -1,8 +1,8 @@ import { debug, deepAssign, FileTransformer, log } from "builder-util" import { readFile } from "fs/promises" import * as path from "path" -import { Configuration } from "./configuration.js.js" -import { Packager } from "./packager.js.js" +import { Configuration } from "./configuration.js" +import { Packager } from "./packager.js" /** @internal */ export const NODE_MODULES_PATTERN = `${path.sep}node_modules${path.sep}` diff --git a/packages/app-builder-lib/src/forge-maker.ts b/packages/app-builder-lib/src/forge-maker.ts index 88733be7648..64b589a21cd 100644 --- a/packages/app-builder-lib/src/forge-maker.ts +++ b/packages/app-builder-lib/src/forge-maker.ts @@ -1,6 +1,6 @@ import * as path from "path" -import { build } from "./index.js.js" -import { PackagerOptions } from "./packagerApi.js.js" +import { build } from "./index.js" +import { PackagerOptions } from "./packagerApi.js" export interface ForgeOptions { readonly dir: string diff --git a/packages/app-builder-lib/src/index.ts b/packages/app-builder-lib/src/index.ts index 22a1e5f4d82..5d513af9683 100644 --- a/packages/app-builder-lib/src/index.ts +++ b/packages/app-builder-lib/src/index.ts @@ -1,10 +1,10 @@ import { InvalidConfigurationError, executeFinally, log } from "builder-util" import { asArray } from "builder-util-runtime" import { PublishOptions } from "electron-publish" -import { Packager } from "./packager.js.js" -import { PackagerOptions } from "./packagerApi.js.js" -import { PublishManager } from "./publish/PublishManager.js.js" -import { resolveFunction } from "./util/resolve.js.js" +import { Packager } from "./packager.js" +import { PackagerOptions } from "./packagerApi.js" +import { PublishManager } from "./publish/PublishManager.js" +import { resolveFunction } from "./util/resolve.js" export { Arch, archFromString, getArchSuffix } from "builder-util" export { AppInfo } from "./appInfo.js" @@ -19,7 +19,7 @@ export { Hooks, MetadataDirectories, PackContext, -} from "./configuration" +} from "./configuration.js" export { BeforeBuildContext, CompressionLevel, @@ -31,42 +31,43 @@ export { TargetConfigType, TargetConfiguration, TargetSpecificOptions, -} from "./core" -export { ElectronBrandingOptions, ElectronDownloadOptions, ElectronPlatformName } from "./electron/ElectronFramework" -export { AppXOptions } from "./options/AppXOptions" -export { CommonWindowsInstallerConfiguration } from "./options/CommonWindowsInstallerConfiguration" -export { FileAssociation } from "./options/FileAssociation" -export { AppImageOptions, CommonLinuxOptions, DebOptions, FlatpakOptions, LinuxConfiguration, LinuxDesktopFile, LinuxTargetSpecificOptions } from "./options/linuxOptions" -export { DmgContent, DmgOptions, DmgWindow, MacConfiguration, MacOsTargetName, MasConfiguration } from "./options/macOptions" -export { AuthorMetadata, Metadata, RepositoryInfo } from "./options/metadata" -export { MsiOptions } from "./options/MsiOptions" -export { MsiWrappedOptions } from "./options/MsiWrappedOptions" -export { BackgroundAlignment, BackgroundScaling, PkgBackgroundOptions, PkgOptions } from "./options/pkgOptions" -export { AsarOptions, FileSet, FilesBuildOptions, PlatformSpecificBuildOptions, Protocol, ReleaseInfo } from "./options/PlatformSpecificBuildOptions" -export { PlugDescriptor, SlotDescriptor, SnapOptions } from "./options/SnapOptions" -export { SquirrelWindowsOptions } from "./options/SquirrelWindowsOptions" -export { WindowsAzureSigningConfiguration, WindowsConfiguration, WindowsSigntoolConfiguration } from "./options/winOptions" -export { BuildResult, Packager } from "./packager" -export { ArtifactBuildStarted, ArtifactCreated, PackagerOptions } from "./packagerApi" -export { CommonNsisOptions, CustomNsisBinary, NsisOptions, NsisWebOptions, PortableOptions } from "./targets/nsis/nsisOptions" +} from "./core.js" +export { ElectronBrandingOptions, ElectronDownloadOptions, ElectronPlatformName } from "./electron/ElectronFramework.js" +export { AppXOptions } from "./options/AppXOptions.js" +export { CommonWindowsInstallerConfiguration } from "./options/CommonWindowsInstallerConfiguration.js" +export { FileAssociation } from "./options/FileAssociation.js" +export { AppImageOptions, CommonLinuxOptions, DebOptions, FlatpakOptions, LinuxConfiguration, LinuxDesktopFile, LinuxTargetSpecificOptions } from "./options/linuxOptions.js" +export { DmgContent, DmgOptions, DmgWindow, MacConfiguration, MacOsTargetName, MasConfiguration } from "./options/macOptions.js" +export { AuthorMetadata, Metadata, RepositoryInfo } from "./options/metadata.js" +export { MsiOptions } from "./options/MsiOptions.js" +export { MsiWrappedOptions } from "./options/MsiWrappedOptions.js" +export { BackgroundAlignment, BackgroundScaling, PkgBackgroundOptions, PkgOptions } from "./options/pkgOptions.js" +export { AsarOptions, FileSet, FilesBuildOptions, PlatformSpecificBuildOptions, Protocol, ReleaseInfo } from "./options/PlatformSpecificBuildOptions.js" +export { PlugDescriptor, SlotDescriptor, SnapOptions } from "./options/SnapOptions.js" +export { SquirrelWindowsOptions } from "./options/SquirrelWindowsOptions.js" +export { WindowsAzureSigningConfiguration, WindowsConfiguration, WindowsSigntoolConfiguration } from "./options/winOptions.js" +export { BuildResult, Packager } from "./packager.js" +export { ArtifactBuildStarted, ArtifactCreated, PackagerOptions } from "./packagerApi.js" +export { CommonNsisOptions, CustomNsisBinary, NsisOptions, NsisWebOptions, PortableOptions } from "./targets/nsis/nsisOptions.js" export { CancellationToken, ProgressInfo } from "builder-util-runtime" export { PublishOptions, UploadTask } from "electron-publish" -export { WindowsSignOptions } from "./codeSign/windowsCodeSign" +export { WindowsSignOptions } from "./codeSign/windowsCodeSign.js" export { CertificateFromStoreInfo, CustomWindowsSign, CustomWindowsSignTaskConfiguration, FileCodeSigningInfo, WindowsSignTaskConfiguration, -} from "./codeSign/windowsSignToolManager" -export { ForgeOptions, buildForge } from "./forge-maker" -export { Framework, PrepareApplicationStageDirectoryOptions } from "./Framework" -export { LinuxPackager } from "./linuxPackager" -export { CustomMacSign, CustomMacSignOptions, MacPackager } from "./macPackager" -export { PlatformPackager } from "./platformPackager" -export { PublishManager } from "./publish/PublishManager" -export { WinPackager } from "./winPackager" +} from "./codeSign/windowsSignToolManager.js" +export { ForgeOptions, buildForge } from "./forge-maker.js" +export { Framework, PrepareApplicationStageDirectoryOptions } from "./Framework.js" +export { LinuxPackager } from "./linuxPackager.js" +export { CustomMacSign, CustomMacSignOptions, MacPackager } from "./macPackager.js" +export { PlatformPackager } from "./platformPackager.js" +export { PublishManager } from "./publish/PublishManager.js" +export { WinPackager } from "./winPackager.js" +export { findIdentity, isSignAllowed } from "./codeSign/macCodeSign.js" const expectedOptions = new Set(["publish", "targets", "mac", "win", "linux", "projectDir", "platformPackagerFactory", "config", "effectiveOptionComputed", "prepackaged"]) diff --git a/packages/app-builder-lib/src/linuxPackager.ts b/packages/app-builder-lib/src/linuxPackager.ts index 8ca43096352..f488ac03520 100644 --- a/packages/app-builder-lib/src/linuxPackager.ts +++ b/packages/app-builder-lib/src/linuxPackager.ts @@ -1,15 +1,15 @@ import { Arch } from "builder-util" -import { sanitizeFileName } from "builder-util/out/filename" -import { DIR_TARGET, Platform, Target } from "./core.js.js" -import { LinuxConfiguration } from "./options/linuxOptions.js.js" -import { Packager } from "./packager.js.js" -import { PlatformPackager } from "./platformPackager.js.js" -import AppImageTarget from "./targets/AppImageTarget.js.js" -import FlatpakTarget from "./targets/FlatpakTarget.js.js" -import FpmTarget from "./targets/FpmTarget.js.js" -import { LinuxTargetHelper } from "./targets/LinuxTargetHelper.js.js" -import SnapTarget from "./targets/snap.js.js" -import { createCommonTarget } from "./targets/targetFactory.js.js" +import { sanitizeFileName } from "builder-util" +import { DIR_TARGET, Platform, Target } from "./core.js" +import { LinuxConfiguration } from "./options/linuxOptions.js" +import { Packager } from "./packager.js" +import { PlatformPackager } from "./platformPackager.js" +import AppImageTarget from "./targets/AppImageTarget.js" +import FlatpakTarget from "./targets/FlatpakTarget.js" +import FpmTarget from "./targets/FpmTarget.js" +import { LinuxTargetHelper } from "./targets/LinuxTargetHelper.js" +import SnapTarget from "./targets/snap.js" +import { createCommonTarget } from "./targets/targetFactory.js" export class LinuxPackager extends PlatformPackager { readonly executableName: string diff --git a/packages/app-builder-lib/src/macPackager.ts b/packages/app-builder-lib/src/macPackager.ts index e456d55f0d2..53a9d9c4775 100644 --- a/packages/app-builder-lib/src/macPackager.ts +++ b/packages/app-builder-lib/src/macPackager.ts @@ -1,7 +1,7 @@ import { notarize } from "@electron/notarize" -import { NotarizeOptionsNotaryTool, NotaryToolKeychainCredentials } from "@electron/notarize/lib/types" -import { PerFileSignOptions, SignOptions } from "@electron/osx-sign/dist/cjs/types" -import { Identity } from "@electron/osx-sign/dist/cjs/util-identities" +import { NotarizeOptionsNotaryTool, NotaryToolKeychainCredentials } from "@electron/notarize/lib/types.js" +import { PerFileSignOptions, SignOptions } from "@electron/osx-sign/dist/cjs/types.js" +import { Identity } from "@electron/osx-sign/dist/cjs/util-identities.js" import { Arch, AsyncTaskManager, @@ -22,20 +22,20 @@ import * as fs from "fs/promises" import { mkdir, readdir } from "fs/promises" import { Lazy } from "lazy-val" import * as path from "path" -import { AppInfo } from "./appInfo.js.js" -import { CertType, CodeSigningInfo, createKeychain, CreateKeychainOptions, findIdentity, isSignAllowed, removeKeychain, reportError, sign } from "./codeSign/macCodeSign.js.js" -import { DIR_TARGET, Platform, Target } from "./core.js.js" -import { AfterPackContext, ElectronPlatformName } from "./index.js.js" -import { MacConfiguration, MasConfiguration } from "./options/macOptions.js.js" -import { Packager } from "./packager.js.js" -import { chooseNotNull, DoPackOptions, PlatformPackager } from "./platformPackager.js.js" -import { ArchiveTarget } from "./targets/ArchiveTarget.js.js" -import { PkgTarget, prepareProductBuildArgs } from "./targets/pkg.js.js" -import { createCommonTarget, NoOpTarget } from "./targets/targetFactory.js.js" -import { isMacOsHighSierra } from "./util/macosVersion.js.js" -import { getTemplatePath } from "./util/pathManager.js.js" -import { resolveFunction } from "./util/resolve.js.js" -import { expandMacro as doExpandMacro } from "./util/macroExpander.js.js" +import { AppInfo } from "./appInfo.js" +import { CertType, CodeSigningInfo, createKeychain, CreateKeychainOptions, findIdentity, isSignAllowed, removeKeychain, reportError, sign } from "./codeSign/macCodeSign.js" +import { DIR_TARGET, Platform, Target } from "./core.js" +import { AfterPackContext, ElectronPlatformName } from "./index.js" +import { MacConfiguration, MasConfiguration } from "./options/macOptions.js" +import { Packager } from "./packager.js" +import { chooseNotNull, DoPackOptions, PlatformPackager } from "./platformPackager.js" +import { ArchiveTarget } from "./targets/ArchiveTarget.js" +import { PkgTarget, prepareProductBuildArgs } from "./targets/pkg.js" +import { createCommonTarget, NoOpTarget } from "./targets/targetFactory.js" +import { isMacOsHighSierra } from "./util/macosVersion.js" +import { getTemplatePath } from "./util/pathManager.js" +import { resolveFunction } from "./util/resolve.js" +import { expandMacro as doExpandMacro } from "./util/macroExpander.js" import { makeUniversalApp } from "@electron/universal" export type CustomMacSignOptions = SignOptions diff --git a/packages/app-builder-lib/src/node-module-collector/bunNodeModulesCollector.ts b/packages/app-builder-lib/src/node-module-collector/bunNodeModulesCollector.ts index 4009560de88..bfb6d99f2ef 100644 --- a/packages/app-builder-lib/src/node-module-collector/bunNodeModulesCollector.ts +++ b/packages/app-builder-lib/src/node-module-collector/bunNodeModulesCollector.ts @@ -1,7 +1,7 @@ import { log } from "builder-util" -import { NpmNodeModulesCollector } from "./npmNodeModulesCollector.js.js" -import { PM } from "./packageManager.js.js" -import { NpmDependency } from "./types.js.js" +import { NpmNodeModulesCollector } from "./npmNodeModulesCollector.js" +import { PM } from "./packageManager.js" +import { NpmDependency } from "./types.js" export class BunNodeModulesCollector extends NpmNodeModulesCollector { public readonly installOptions = { manager: PM.BUN, lockfile: "bun.lock" } diff --git a/packages/app-builder-lib/src/node-module-collector/index.ts b/packages/app-builder-lib/src/node-module-collector/index.ts index 4c4191515cd..afc11d70e5f 100644 --- a/packages/app-builder-lib/src/node-module-collector/index.ts +++ b/packages/app-builder-lib/src/node-module-collector/index.ts @@ -1,12 +1,12 @@ import { CancellationToken, Nullish } from "builder-util-runtime" import { TmpDir } from "temp-file" -import { NpmNodeModulesCollector } from "./npmNodeModulesCollector.js.js" -import { detectPackageManager, getPackageManagerCommand, PM } from "./packageManager.js.js" -import { PnpmNodeModulesCollector } from "./pnpmNodeModulesCollector.js.js" -import { NodeModuleInfo } from "./types.js.js" -import { YarnBerryNodeModulesCollector } from "./yarnBerryNodeModulesCollector.js.js" -import { YarnNodeModulesCollector } from "./yarnNodeModulesCollector.js.js" -import { BunNodeModulesCollector } from "./bunNodeModulesCollector.js.js" +import { NpmNodeModulesCollector } from "./npmNodeModulesCollector.js" +import { detectPackageManager, getPackageManagerCommand, PM } from "./packageManager.js" +import { PnpmNodeModulesCollector } from "./pnpmNodeModulesCollector.js" +import { NodeModuleInfo } from "./types.js" +import { YarnBerryNodeModulesCollector } from "./yarnBerryNodeModulesCollector.js" +import { YarnNodeModulesCollector } from "./yarnNodeModulesCollector.js" +import { BunNodeModulesCollector } from "./bunNodeModulesCollector.js" import { Lazy } from "lazy-val" import { spawn, log, exists } from "builder-util" import * as fs from "fs-extra" diff --git a/packages/app-builder-lib/src/node-module-collector/moduleCache.ts b/packages/app-builder-lib/src/node-module-collector/moduleCache.ts index 85343dd4401..d0f29bde382 100644 --- a/packages/app-builder-lib/src/node-module-collector/moduleCache.ts +++ b/packages/app-builder-lib/src/node-module-collector/moduleCache.ts @@ -1,5 +1,5 @@ import { exists, log } from "builder-util" -import { PackageJson } from "./types.js.js" +import { PackageJson } from "./types.js" import * as fs from "fs-extra" import { resolve } from "path" diff --git a/packages/app-builder-lib/src/node-module-collector/nodeModulesCollector.ts b/packages/app-builder-lib/src/node-module-collector/nodeModulesCollector.ts index 7e645c9b57c..559dc10e1f9 100644 --- a/packages/app-builder-lib/src/node-module-collector/nodeModulesCollector.ts +++ b/packages/app-builder-lib/src/node-module-collector/nodeModulesCollector.ts @@ -6,10 +6,10 @@ import { createWriteStream } from "fs-extra" import { Lazy } from "lazy-val" import * as path from "path" import * as semver from "semver" -import { hoist, type HoisterResult, type HoisterTree } from "./hoist.js.js" -import { ModuleCache } from "./moduleCache.js.js" -import { getPackageManagerCommand, PM } from "./packageManager.js.js" -import type { Dependency, DependencyGraph, NodeModuleInfo } from "./types.js.js" +import { hoist, type HoisterResult, type HoisterTree } from "./hoist.js" +import { ModuleCache } from "./moduleCache.js" +import { getPackageManagerCommand, PM } from "./packageManager.js" +import type { Dependency, DependencyGraph, NodeModuleInfo } from "./types.js" type Result = { packageDir: string; version: string } | null export abstract class NodeModulesCollector, OptionalDepType> { diff --git a/packages/app-builder-lib/src/node-module-collector/npmNodeModulesCollector.ts b/packages/app-builder-lib/src/node-module-collector/npmNodeModulesCollector.ts index f2086d468bb..af58725edff 100644 --- a/packages/app-builder-lib/src/node-module-collector/npmNodeModulesCollector.ts +++ b/packages/app-builder-lib/src/node-module-collector/npmNodeModulesCollector.ts @@ -1,8 +1,8 @@ import { log } from "builder-util" import * as path from "path" -import { NodeModulesCollector } from "./nodeModulesCollector.js.js" -import { PM } from "./packageManager.js.js" -import { NpmDependency, PackageJson } from "./types.js.js" +import { NodeModulesCollector } from "./nodeModulesCollector.js" +import { PM } from "./packageManager.js" +import { NpmDependency, PackageJson } from "./types.js" export class NpmNodeModulesCollector extends NodeModulesCollector { public readonly installOptions = { diff --git a/packages/app-builder-lib/src/node-module-collector/pnpmNodeModulesCollector.ts b/packages/app-builder-lib/src/node-module-collector/pnpmNodeModulesCollector.ts index 4972b2e2799..4c1315f6e56 100644 --- a/packages/app-builder-lib/src/node-module-collector/pnpmNodeModulesCollector.ts +++ b/packages/app-builder-lib/src/node-module-collector/pnpmNodeModulesCollector.ts @@ -1,8 +1,8 @@ import { isEmptyOrSpaces, log } from "builder-util" import * as path from "path" -import { NodeModulesCollector } from "./nodeModulesCollector.js.js" -import { PM } from "./packageManager.js.js" -import { PackageJson, PnpmDependency } from "./types.js.js" +import { NodeModulesCollector } from "./nodeModulesCollector.js" +import { PM } from "./packageManager.js" +import { PackageJson, PnpmDependency } from "./types.js" export class PnpmNodeModulesCollector extends NodeModulesCollector { public readonly installOptions = { diff --git a/packages/app-builder-lib/src/node-module-collector/yarnBerryNodeModulesCollector.ts b/packages/app-builder-lib/src/node-module-collector/yarnBerryNodeModulesCollector.ts index de65a2f0573..b3d28d9504f 100644 --- a/packages/app-builder-lib/src/node-module-collector/yarnBerryNodeModulesCollector.ts +++ b/packages/app-builder-lib/src/node-module-collector/yarnBerryNodeModulesCollector.ts @@ -1,8 +1,8 @@ import { log } from "builder-util" import { Lazy } from "lazy-val" -import { NpmNodeModulesCollector } from "./npmNodeModulesCollector.js.js" -import { PM } from "./packageManager.js.js" -import { NpmDependency } from "./types.js.js" +import { NpmNodeModulesCollector } from "./npmNodeModulesCollector.js" +import { PM } from "./packageManager.js" +import { NpmDependency } from "./types.js" type YarnSetupInfo = { yarnVersion: string | null diff --git a/packages/app-builder-lib/src/node-module-collector/yarnNodeModulesCollector.ts b/packages/app-builder-lib/src/node-module-collector/yarnNodeModulesCollector.ts index 9a923cc13f5..ce114dc9862 100644 --- a/packages/app-builder-lib/src/node-module-collector/yarnNodeModulesCollector.ts +++ b/packages/app-builder-lib/src/node-module-collector/yarnNodeModulesCollector.ts @@ -1,9 +1,9 @@ import { log } from "builder-util" import { Lazy } from "lazy-val" import * as path from "path" -import { NodeModulesCollector } from "./nodeModulesCollector.js.js" -import { PM } from "./packageManager.js.js" -import { PackageJson, YarnDependency } from "./types.js.js" +import { NodeModulesCollector } from "./nodeModulesCollector.js" +import { PM } from "./packageManager.js" +import { PackageJson, YarnDependency } from "./types.js" type YarnListJsonLine = | { diff --git a/packages/app-builder-lib/src/options/CommonWindowsInstallerConfiguration.ts b/packages/app-builder-lib/src/options/CommonWindowsInstallerConfiguration.ts index 9d33ca0e000..04739580a91 100644 --- a/packages/app-builder-lib/src/options/CommonWindowsInstallerConfiguration.ts +++ b/packages/app-builder-lib/src/options/CommonWindowsInstallerConfiguration.ts @@ -1,5 +1,5 @@ import { InvalidConfigurationError, isEmptyOrSpaces } from "builder-util" -import { sanitizeFileName } from "builder-util/out/filename" +import { sanitizeFileName } from "builder-util" import { WinPackager } from "../winPackager.js" export interface CommonWindowsInstallerConfiguration { diff --git a/packages/app-builder-lib/src/options/MsiOptions.ts b/packages/app-builder-lib/src/options/MsiOptions.ts index 756355356c8..1a18b784fdc 100644 --- a/packages/app-builder-lib/src/options/MsiOptions.ts +++ b/packages/app-builder-lib/src/options/MsiOptions.ts @@ -1,5 +1,5 @@ import { TargetSpecificOptions } from "../core.js" -import { CommonWindowsInstallerConfiguration } from "./CommonWindowsInstallerConfiguration.js.js" +import { CommonWindowsInstallerConfiguration } from "./CommonWindowsInstallerConfiguration.js" export interface MsiOptions extends CommonWindowsInstallerConfiguration, TargetSpecificOptions { /** diff --git a/packages/app-builder-lib/src/options/MsiWrappedOptions.ts b/packages/app-builder-lib/src/options/MsiWrappedOptions.ts index 5a1d16293eb..e937333b53b 100644 --- a/packages/app-builder-lib/src/options/MsiWrappedOptions.ts +++ b/packages/app-builder-lib/src/options/MsiWrappedOptions.ts @@ -1,5 +1,5 @@ import { TargetSpecificOptions } from "../core.js" -import { CommonWindowsInstallerConfiguration } from "./CommonWindowsInstallerConfiguration.js.js" +import { CommonWindowsInstallerConfiguration } from "./CommonWindowsInstallerConfiguration.js" export interface MsiWrappedOptions extends CommonWindowsInstallerConfiguration, TargetSpecificOptions { /** diff --git a/packages/app-builder-lib/src/options/PlatformSpecificBuildOptions.ts b/packages/app-builder-lib/src/options/PlatformSpecificBuildOptions.ts index 8c14c36f567..3e7d399f95b 100644 --- a/packages/app-builder-lib/src/options/PlatformSpecificBuildOptions.ts +++ b/packages/app-builder-lib/src/options/PlatformSpecificBuildOptions.ts @@ -1,5 +1,5 @@ import { CompressionLevel, Publish, TargetConfiguration, TargetSpecificOptions } from "../core.js" -import { FileAssociation } from "./FileAssociation.js.js" +import { FileAssociation } from "./FileAssociation.js" export interface FileSet { /** diff --git a/packages/app-builder-lib/src/options/SnapOptions.ts b/packages/app-builder-lib/src/options/SnapOptions.ts index df0449f2370..930e676d52a 100644 --- a/packages/app-builder-lib/src/options/SnapOptions.ts +++ b/packages/app-builder-lib/src/options/SnapOptions.ts @@ -1,5 +1,5 @@ import { TargetSpecificOptions } from "../core.js" -import { CommonLinuxOptions } from "./linuxOptions.js.js" +import { CommonLinuxOptions } from "./linuxOptions.js" export interface SnapOptions extends CommonLinuxOptions, TargetSpecificOptions { /** diff --git a/packages/app-builder-lib/src/packager.ts b/packages/app-builder-lib/src/packager.ts index 236c362c527..297ff43aeb6 100644 --- a/packages/app-builder-lib/src/packager.ts +++ b/packages/app-builder-lib/src/packager.ts @@ -21,29 +21,29 @@ import { isCI } from "ci-info" import { Lazy } from "lazy-val" import { release as getOsRelease } from "os" import * as path from "path" -import { AppInfo } from "./appInfo.js.js" -import { readAsarJson } from "./asar/asar.js.js" -import { AfterExtractContext, AfterPackContext, BeforePackContext, Configuration, Hook } from "./configuration.js.js" -import { Platform, SourceRepositoryInfo, Target } from "./core.js.js" -import { createElectronFrameworkSupport } from "./electron/ElectronFramework.js.js" -import { Framework } from "./Framework.js.js" -import { LibUiFramework } from "./frameworks/LibUiFramework.js.js" -import { Metadata } from "./options/metadata.js.js" -import { ArtifactBuildStarted, ArtifactCreated, PackagerOptions } from "./packagerApi.js.js" -import { PlatformPackager } from "./platformPackager.js.js" -import { ProtonFramework } from "./ProtonFramework.js.js" -import { computeArchToTargetNamesMap, createTargets, NoOpTarget } from "./targets/targetFactory.js.js" -import { computeDefaultAppDirectory, getConfig, validateConfiguration } from "./util/config/config.js.js" -import { expandMacro } from "./util/macroExpander.js.js" -import { createLazyProductionDeps, NodeModuleDirInfo, NodeModuleInfo } from "./util/packageDependencies.js.js" -import { checkMetadata, readPackageJson } from "./util/packageMetadata.js.js" -import { getRepositoryInfo } from "./util/repositoryInfo.js.js" -import { resolveFunction } from "./util/resolve.js.js" -import { installOrRebuild, nodeGypRebuild } from "./util/yarn.js.js" -import { PACKAGE_VERSION } from "./version.js.js" -import { AsyncEventEmitter, HandlerType } from "./util/asyncEventEmitter.js.js" +import { AppInfo } from "./appInfo.js" +import { readAsarJson } from "./asar/asar.js" +import { AfterExtractContext, AfterPackContext, BeforePackContext, Configuration, Hook } from "./configuration.js" +import { Platform, SourceRepositoryInfo, Target } from "./core.js" +import { createElectronFrameworkSupport } from "./electron/ElectronFramework.js" +import { Framework } from "./Framework.js" +import { LibUiFramework } from "./frameworks/LibUiFramework.js" +import { Metadata } from "./options/metadata.js" +import { ArtifactBuildStarted, ArtifactCreated, PackagerOptions } from "./packagerApi.js" +import { PlatformPackager } from "./platformPackager.js" +import { ProtonFramework } from "./ProtonFramework.js" +import { computeArchToTargetNamesMap, createTargets, NoOpTarget } from "./targets/targetFactory.js" +import { computeDefaultAppDirectory, getConfig, validateConfiguration } from "./util/config/config.js" +import { expandMacro } from "./util/macroExpander.js" +import { createLazyProductionDeps, NodeModuleDirInfo, NodeModuleInfo } from "./util/packageDependencies.js" +import { checkMetadata, readPackageJson } from "./util/packageMetadata.js" +import { getRepositoryInfo } from "./util/repositoryInfo.js" +import { resolveFunction } from "./util/resolve.js" +import { installOrRebuild, nodeGypRebuild } from "./util/yarn.js" +import { PACKAGE_VERSION } from "./version.js" +import { AsyncEventEmitter, HandlerType } from "./util/asyncEventEmitter.js" import asyncPool from "tiny-async-pool" -import { determinePackageManagerEnv, PM } from "./node-module-collector.js.js" +import { determinePackageManagerEnv, PM } from "./node-module-collector/index.js" async function createFrameworkInfo(configuration: Configuration, packager: Packager): Promise { let framework = configuration.framework @@ -579,17 +579,17 @@ export class Packager { switch (platform) { case Platform.MAC: { - const helperClass = (await import("./macPackager")).MacPackager + const helperClass = (await import("./macPackager.js")).MacPackager return new helperClass(this) } case Platform.WINDOWS: { - const helperClass = (await import("./winPackager")).WinPackager + const helperClass = (await import("./winPackager.js")).WinPackager return new helperClass(this) } case Platform.LINUX: - return new (await import("./linuxPackager")).LinuxPackager(this) + return new (await import("./linuxPackager.js")).LinuxPackager(this) default: throw new Error(`Unknown platform: ${platform}`) diff --git a/packages/app-builder-lib/src/packagerApi.ts b/packages/app-builder-lib/src/packagerApi.ts index 6ea6145af03..16c5a42a9ba 100644 --- a/packages/app-builder-lib/src/packagerApi.ts +++ b/packages/app-builder-lib/src/packagerApi.ts @@ -1,10 +1,10 @@ import { Arch } from "builder-util" import { PublishConfiguration } from "builder-util-runtime" import { UploadTask } from "electron-publish" -import { Configuration } from "./configuration.js.js" -import { Platform, Target } from "./core.js.js" -import { Packager } from "./packager.js.js" -import { PlatformPackager } from "./platformPackager.js.js" +import { Configuration } from "./configuration.js" +import { Platform, Target } from "./core.js" +import { Packager } from "./packager.js" +import { PlatformPackager } from "./platformPackager.js" export interface PackagerOptions { targets?: Map>> diff --git a/packages/app-builder-lib/src/platformPackager.ts b/packages/app-builder-lib/src/platformPackager.ts index 277d974403e..738db00ccad 100644 --- a/packages/app-builder-lib/src/platformPackager.ts +++ b/packages/app-builder-lib/src/platformPackager.ts @@ -22,14 +22,14 @@ import { Minimatch } from "minimatch" import * as path from "path" import * as fs from "fs/promises" import * as os from "os" -import { AppInfo } from "./appInfo.js.js" -import { checkFileInArchive } from "./asar/asarFileChecker.js.js" -import { AsarPackager } from "./asar/asarUtil.js.js" -import { AsarIntegrity, computeData } from "./asar/integrity.js.js" -import { FuseOptionsV1 } from "./configuration.js.js" -import { copyFiles, FileMatcher, getFileMatchers, GetFileMatchersOptions, getMainFileMatchers, getNodeModuleFileMatcher } from "./fileMatcher.js.js" -import { createTransformer, isElectronCompileUsed } from "./fileTransformer.js.js" -import { Framework, isElectronBased } from "./Framework.js.js" +import { AppInfo } from "./appInfo.js" +import { checkFileInArchive } from "./asar/asarFileChecker.js" +import { AsarPackager } from "./asar/asarUtil.js" +import { AsarIntegrity, computeData } from "./asar/integrity.js" +import { FuseOptionsV1 } from "./configuration.js" +import { copyFiles, FileMatcher, getFileMatchers, GetFileMatchersOptions, getMainFileMatchers, getNodeModuleFileMatcher } from "./fileMatcher.js" +import { createTransformer, isElectronCompileUsed } from "./fileTransformer.js" +import { Framework, isElectronBased } from "./Framework.js" import { AfterPackContext, AsarOptions, @@ -45,10 +45,10 @@ import { Target, TargetSpecificOptions, } from "./index.js" -import { executeAppBuilderAsJson } from "./util/appBuilder.js.js" -import { computeFileSets, computeNodeModuleFileSets, copyAppFiles, ELECTRON_COMPILE_SHIM_FILENAME, transformFiles } from "./util/appFileCopier.js.js" -import { expandMacro as doExpandMacro } from "./util/macroExpander.js.js" -import { AssetCatalogResult, generateAssetCatalogForIcon } from "./util/macosIconComposer.js.js" +import { executeAppBuilderAsJson } from "./util/appBuilder.js" +import { computeFileSets, computeNodeModuleFileSets, copyAppFiles, ELECTRON_COMPILE_SHIM_FILENAME, transformFiles } from "./util/appFileCopier.js" +import { expandMacro as doExpandMacro } from "./util/macroExpander.js" +import { AssetCatalogResult, generateAssetCatalogForIcon } from "./util/macosIconComposer.js" export type DoPackOptions = { outDir: string diff --git a/packages/app-builder-lib/src/publish/PublishManager.ts b/packages/app-builder-lib/src/publish/PublishManager.ts index 493f4e35a4a..9da6be6341b 100644 --- a/packages/app-builder-lib/src/publish/PublishManager.ts +++ b/packages/app-builder-lib/src/publish/PublishManager.ts @@ -29,7 +29,7 @@ import { SpacesPublisher, UploadTask, } from "electron-publish" -import { MultiProgress } from "electron-publish/out/multiProgress" +import { MultiProgress } from "electron-publish" import { writeFile } from "fs/promises" import { isCI } from "ci-info" import * as path from "path" @@ -40,7 +40,7 @@ import { Packager } from "../packager.js" import { PlatformPackager } from "../platformPackager.js" import { expandMacro } from "../util/macroExpander.js" import { WinPackager } from "../winPackager.js" -import { createUpdateInfoTasks, UpdateInfoFileTask, writeUpdateInfoFiles } from "./updateInfoBuilder.js.js" +import { createUpdateInfoTasks, UpdateInfoFileTask, writeUpdateInfoFiles } from "./updateInfoBuilder.js" import { resolveModule } from "../util/resolve.js" const publishForPrWarning = diff --git a/packages/app-builder-lib/src/publish/updateInfoBuilder.ts b/packages/app-builder-lib/src/publish/updateInfoBuilder.ts index a0ac118e3ae..2590df52b37 100644 --- a/packages/app-builder-lib/src/publish/updateInfoBuilder.ts +++ b/packages/app-builder-lib/src/publish/updateInfoBuilder.ts @@ -11,7 +11,7 @@ import { Packager } from "../packager.js" import { ArtifactCreated } from "../packagerApi.js" import { PlatformPackager } from "../platformPackager.js" import { hashFile } from "../util/hash.js" -import { computeDownloadUrl, getPublishConfigsForUpdateInfo } from "./PublishManager.js.js" +import { computeDownloadUrl, getPublishConfigsForUpdateInfo } from "./PublishManager.js" async function getReleaseInfo(packager: PlatformPackager) { const releaseInfo: ReleaseInfo = { ...(packager.platformSpecificBuildOptions.releaseInfo || packager.config.releaseInfo) } diff --git a/packages/app-builder-lib/src/targets/AppImageTarget.ts b/packages/app-builder-lib/src/targets/AppImageTarget.ts index 0d30d8495e1..81e3705d16d 100644 --- a/packages/app-builder-lib/src/targets/AppImageTarget.ts +++ b/packages/app-builder-lib/src/targets/AppImageTarget.ts @@ -8,12 +8,12 @@ import { AppImageOptions } from "../options/linuxOptions.js" import { getAppUpdatePublishConfiguration } from "../publish/PublishManager.js" import { executeAppBuilderAsJson, objectToArgs } from "../util/appBuilder.js" import { getNotLocalizedLicenseFile } from "../util/license.js" -import { LinuxTargetHelper } from "./LinuxTargetHelper.js.js" -import { createStageDir } from "./targetUtil.js.js" +import { LinuxTargetHelper } from "./LinuxTargetHelper.js" +import { createStageDir } from "./targetUtil.js" // https://unix.stackexchange.com/questions/375191/append-to-sub-directory-inside-squashfs-file export default class AppImageTarget extends Target { - readonly options: AppImageOptions = { ...this.packager.platformSpecificBuildOptions, ...(this.packager.config as any)[this.name] } + readonly options: AppImageOptions private readonly desktopEntry: Lazy constructor( @@ -23,6 +23,7 @@ export default class AppImageTarget extends Target { readonly outDir: string ) { super("appImage") + this.options = { ...this.packager.platformSpecificBuildOptions, ...(this.packager.config as any)[this.name] } this.desktopEntry = new Lazy(() => { const args = this.options.executableArgs?.join(" ") || "--no-sandbox" diff --git a/packages/app-builder-lib/src/targets/AppxTarget.ts b/packages/app-builder-lib/src/targets/AppxTarget.ts index 1a1ac94b3d9..7ea1a725685 100644 --- a/packages/app-builder-lib/src/targets/AppxTarget.ts +++ b/packages/app-builder-lib/src/targets/AppxTarget.ts @@ -2,13 +2,13 @@ import { Arch, asArray, copyOrLinkFile, deepAssign, InvalidConfigurationError, l import { Nullish } from "builder-util-runtime" import { emptyDir, readdir, readFile, writeFile } from "fs-extra" import * as path from "path" -import { AppXOptions } from "../" +import { AppXOptions } from "../index.js" import { getSignVendorPath, isOldWin6 } from "../codeSign/windowsSignToolManager.js" import { Target } from "../core.js" import { getTemplatePath } from "../util/pathManager.js" import { VmManager } from "../vm/vm.js" import { WinPackager } from "../winPackager.js" -import { createStageDir } from "./targetUtil.js.js" +import { createStageDir } from "./targetUtil.js" const APPX_ASSETS_DIR_NAME = "appx" @@ -47,7 +47,7 @@ const restrictedApplicationIdValues = [ const DEFAULT_RESOURCE_LANG = "en-US" export default class AppXTarget extends Target { - readonly options: AppXOptions = deepAssign({}, this.packager.platformSpecificBuildOptions, this.packager.config.appx) + readonly options: AppXOptions isAsyncSupported = false @@ -56,6 +56,7 @@ export default class AppXTarget extends Target { readonly outDir: string ) { super("appx") + this.options = deepAssign({}, this.packager.platformSpecificBuildOptions, this.packager.config.appx) if (process.platform !== "darwin" && (process.platform !== "win32" || isOldWin6())) { throw new Error("AppX is supported only on Windows 10 or Windows Server 2012 R2 (version number 6.3+)") diff --git a/packages/app-builder-lib/src/targets/ArchiveTarget.ts b/packages/app-builder-lib/src/targets/ArchiveTarget.ts index da9d07497aa..14f305fd3e2 100644 --- a/packages/app-builder-lib/src/targets/ArchiveTarget.ts +++ b/packages/app-builder-lib/src/targets/ArchiveTarget.ts @@ -3,11 +3,11 @@ import * as path from "path" import { Platform, Target, TargetSpecificOptions } from "../core.js" import { copyFiles, getFileMatchers } from "../fileMatcher.js" import { PlatformPackager } from "../platformPackager.js" -import { archive, tar } from "./archive.js.js" -import { appendBlockmap, createBlockmap } from "./differentialUpdateInfoBuilder.js.js" +import { archive, tar } from "./archive.js" +import { appendBlockmap, createBlockmap } from "./differentialUpdateInfoBuilder.js" export class ArchiveTarget extends Target { - readonly options: TargetSpecificOptions = (this.packager.config as any)[this.name] + readonly options: TargetSpecificOptions constructor( name: string, @@ -16,6 +16,7 @@ export class ArchiveTarget extends Target { private readonly isWriteUpdateInfo = false ) { super(name) + this.options = (this.packager.config as any)[this.name] } async build(appOutDir: string, arch: Arch): Promise { diff --git a/packages/app-builder-lib/src/targets/FlatpakTarget.ts b/packages/app-builder-lib/src/targets/FlatpakTarget.ts index b2906178f83..c3e09c15212 100644 --- a/packages/app-builder-lib/src/targets/FlatpakTarget.ts +++ b/packages/app-builder-lib/src/targets/FlatpakTarget.ts @@ -6,14 +6,11 @@ import { Target } from "../core.js" import { LinuxPackager } from "../linuxPackager.js" import { FlatpakOptions } from "../options/linuxOptions.js" import { getNotLocalizedLicenseFile } from "../util/license.js" -import { LinuxTargetHelper } from "./LinuxTargetHelper.js.js" -import { createStageDir, StageDir } from "./targetUtil.js.js" +import { LinuxTargetHelper } from "./LinuxTargetHelper.js" +import { createStageDir, StageDir } from "./targetUtil.js" export default class FlatpakTarget extends Target { - readonly options: FlatpakOptions = { - ...this.packager.platformSpecificBuildOptions, - ...(this.packager.config as any)[this.name], - } + readonly options: FlatpakOptions constructor( name: string, @@ -22,6 +19,10 @@ export default class FlatpakTarget extends Target { readonly outDir: string ) { super(name) + this.options = { + ...this.packager.platformSpecificBuildOptions, + ...(this.packager.config as any)[this.name], + } } get appId(): string { diff --git a/packages/app-builder-lib/src/targets/FpmTarget.ts b/packages/app-builder-lib/src/targets/FpmTarget.ts index 2f83004f40c..c8dd1e0c144 100644 --- a/packages/app-builder-lib/src/targets/FpmTarget.ts +++ b/packages/app-builder-lib/src/targets/FpmTarget.ts @@ -15,8 +15,8 @@ import { computeEnv } from "../util/bundledTool.js" import { hashFile } from "../util/hash.js" import { isMacOsSierra } from "../util/macosVersion.js" import { getTemplatePath } from "../util/pathManager.js" -import { installPrefix, LinuxTargetHelper } from "./LinuxTargetHelper.js.js" -import { getFpmPath, getLinuxToolsPath } from "./tools.js.js" +import { installPrefix, LinuxTargetHelper } from "./LinuxTargetHelper.js" +import { getFpmPath, getLinuxToolsPath } from "./tools.js" interface FpmOptions { name: string @@ -32,7 +32,7 @@ interface ScriptFiles { } export default class FpmTarget extends Target { - readonly options: LinuxTargetSpecificOptions = { ...this.packager.platformSpecificBuildOptions, ...(this.packager.config as any)[this.name] } + readonly options: LinuxTargetSpecificOptions private readonly scriptFiles: Promise @@ -43,6 +43,7 @@ export default class FpmTarget extends Target { readonly outDir: string ) { super(name, false) + this.options = { ...this.packager.platformSpecificBuildOptions, ...(this.packager.config as any)[this.name] } this.scriptFiles = this.createScripts() } diff --git a/packages/app-builder-lib/src/targets/MsiTarget.ts b/packages/app-builder-lib/src/targets/MsiTarget.ts index b064cca44e4..8bb158d0c7a 100644 --- a/packages/app-builder-lib/src/targets/MsiTarget.ts +++ b/packages/app-builder-lib/src/targets/MsiTarget.ts @@ -5,7 +5,7 @@ import * as ejs from "ejs" import { readFile, writeFile } from "fs/promises" import { Lazy } from "lazy-val" import * as path from "path" -import { MsiOptions } from "../" +import { MsiOptions } from "../index.js" import { getBinFromUrl } from "../binDownload.js" import { Target } from "../core.js" import { DesktopShortcutCreationPolicy, FinalCommonWindowsInstallerOptions, getEffectiveOptions } from "../options/CommonWindowsInstallerConfiguration.js" @@ -14,7 +14,7 @@ import { getTemplatePath } from "../util/pathManager.js" import { VmManager } from "../vm/vm.js" import { WineVmManager } from "../vm/WineVm.js" import { WinPackager } from "../winPackager.js" -import { createStageDir, getWindowsInstallationDirName } from "./targetUtil.js.js" +import { createStageDir, getWindowsInstallationDirName } from "./targetUtil.js" const ELECTRON_BUILDER_UPGRADE_CODE_NS_UUID = UUID.parse("d752fe43-5d44-44d5-9fc9-6dd1bf19d5cc") const ROOT_DIR_ID = "APPLICATIONFOLDER" @@ -23,7 +23,7 @@ const ROOT_DIR_ID = "APPLICATIONFOLDER" export default class MsiTarget extends Target { protected readonly vm = process.platform === "win32" ? new VmManager() : new WineVmManager() - readonly options: MsiOptions = deepAssign(this.packager.platformSpecificBuildOptions, this.packager.config.msi) + readonly options: MsiOptions constructor( protected readonly packager: WinPackager, @@ -32,6 +32,7 @@ export default class MsiTarget extends Target { isAsyncSupported = true ) { super(name, isAsyncSupported) + this.options = deepAssign(this.packager.platformSpecificBuildOptions, this.packager.config.msi) } protected projectTemplate = new Lazy<(data: any) => string>(async () => { diff --git a/packages/app-builder-lib/src/targets/MsiWrappedTarget.ts b/packages/app-builder-lib/src/targets/MsiWrappedTarget.ts index 4c7b5c12ccf..6496086682c 100644 --- a/packages/app-builder-lib/src/targets/MsiWrappedTarget.ts +++ b/packages/app-builder-lib/src/targets/MsiWrappedTarget.ts @@ -1,11 +1,11 @@ import { Arch, deepAssign } from "builder-util" import { UUID } from "builder-util-runtime" import * as path from "path" -import { MsiWrappedOptions } from "../" +import { MsiWrappedOptions } from "../index.js" import { TargetConfiguration } from "../core.js" import { FinalCommonWindowsInstallerOptions } from "../options/CommonWindowsInstallerConfiguration.js" import { WinPackager } from "../winPackager.js" -import MsiTarget from "./MsiTarget.js.js" +import MsiTarget from "./MsiTarget.js" const ELECTRON_MSI_WRAPPED_NS_UUID = UUID.parse("467f7bb2-a83c-442f-b776-394d316e8e53") diff --git a/packages/app-builder-lib/src/targets/archive.ts b/packages/app-builder-lib/src/targets/archive.ts index 9e6429eb869..eaec0ac25fc 100644 --- a/packages/app-builder-lib/src/targets/archive.ts +++ b/packages/app-builder-lib/src/targets/archive.ts @@ -4,7 +4,7 @@ import * as path from "path" import { create, CreateOptions, FileOptions } from "tar" import { TmpDir } from "temp-file" import { CompressionLevel } from "../core.js" -import { getLinuxToolsPath } from "./tools.js.js" +import { getLinuxToolsPath } from "./tools.js" /** @internal */ export async function tar(compression: CompressionLevel | any, format: string, outFile: string, dirToArchive: string, isMacApp: boolean, tempDirManager: TmpDir): Promise { diff --git a/packages/app-builder-lib/src/targets/differentialUpdateInfoBuilder.ts b/packages/app-builder-lib/src/targets/differentialUpdateInfoBuilder.ts index 32c66d9b5ab..a06ed91e8aa 100644 --- a/packages/app-builder-lib/src/targets/differentialUpdateInfoBuilder.ts +++ b/packages/app-builder-lib/src/targets/differentialUpdateInfoBuilder.ts @@ -4,7 +4,7 @@ import * as path from "path" import { Target } from "../core.js" import { PlatformPackager } from "../platformPackager.js" import { executeAppBuilderAsJson } from "../util/appBuilder.js" -import { ArchiveOptions } from "./archive.js.js" +import { ArchiveOptions } from "./archive.js" export const BLOCK_MAP_FILE_SUFFIX = ".blockmap" diff --git a/packages/app-builder-lib/src/targets/nsis/Defines.ts b/packages/app-builder-lib/src/targets/nsis/Defines.ts index aa5e8052d85..fcad4e185ff 100644 --- a/packages/app-builder-lib/src/targets/nsis/Defines.ts +++ b/packages/app-builder-lib/src/targets/nsis/Defines.ts @@ -1,4 +1,4 @@ -import { PortableOptions } from "./nsisOptions.js.js" +import { PortableOptions } from "./nsisOptions.js" /** * Parameters declared as environment variables in NSIS scripts. * The documentation vaguely explains "All other electron-builder specific flags (e.g. ONE_CLICK) are still defined." diff --git a/packages/app-builder-lib/src/targets/nsis/NsisTarget.ts b/packages/app-builder-lib/src/targets/nsis/NsisTarget.ts index d3eb1723632..31e353c42f4 100644 --- a/packages/app-builder-lib/src/targets/nsis/NsisTarget.ts +++ b/packages/app-builder-lib/src/targets/nsis/NsisTarget.ts @@ -31,13 +31,13 @@ import { WinPackager } from "../../winPackager.js" import { archive, ArchiveOptions } from "../archive.js" import { appendBlockmap, configureDifferentialAwareArchiveOptions, createBlockmap, createNsisWebDifferentialUpdateInfo } from "../differentialUpdateInfoBuilder.js" import { getWindowsInstallationAppPackageName, getWindowsInstallationDirName } from "../targetUtil.js" -import { Commands } from "./Commands.js.js" -import { Defines } from "./Defines.js.js" -import { addCustomMessageFileInclude, createAddLangsMacro, LangConfigurator } from "./nsisLang.js.js" -import { computeLicensePage } from "./nsisLicense.js.js" -import { NsisOptions, PortableOptions } from "./nsisOptions.js.js" -import { NsisScriptGenerator } from "./nsisScriptGenerator.js.js" -import { AppPackageHelper, NSIS_PATH, NSIS_RESOURCES_PATH, NsisTargetOptions, nsisTemplatesDir, UninstallerReader } from "./nsisUtil.js.js" +import { Commands } from "./Commands.js" +import { Defines } from "./Defines.js" +import { addCustomMessageFileInclude, createAddLangsMacro, LangConfigurator } from "./nsisLang.js" +import { computeLicensePage } from "./nsisLicense.js" +import { NsisOptions, PortableOptions } from "./nsisOptions.js" +import { NsisScriptGenerator } from "./nsisScriptGenerator.js" +import { AppPackageHelper, NSIS_PATH, NSIS_RESOURCES_PATH, NsisTargetOptions, nsisTemplatesDir, UninstallerReader } from "./nsisUtil.js" const debug = _debug("electron-builder:nsis") diff --git a/packages/app-builder-lib/src/targets/nsis/WebInstallerTarget.ts b/packages/app-builder-lib/src/targets/nsis/WebInstallerTarget.ts index bc16c003062..235c00fc6ca 100644 --- a/packages/app-builder-lib/src/targets/nsis/WebInstallerTarget.ts +++ b/packages/app-builder-lib/src/targets/nsis/WebInstallerTarget.ts @@ -1,9 +1,9 @@ import { Arch, log } from "builder-util" import { computeDownloadUrl, getPublishConfigs, getPublishConfigsForUpdateInfo } from "../../publish/PublishManager.js" import { WinPackager } from "../../winPackager.js" -import { NsisWebOptions } from "./nsisOptions.js.js" -import { NsisTarget } from "./NsisTarget.js.js" -import { AppPackageHelper } from "./nsisUtil.js.js" +import { NsisWebOptions } from "./nsisOptions.js" +import { NsisTarget } from "./NsisTarget.js" +import { AppPackageHelper } from "./nsisUtil.js" /** @private */ export class WebInstallerTarget extends NsisTarget { diff --git a/packages/app-builder-lib/src/targets/nsis/nsisLang.ts b/packages/app-builder-lib/src/targets/nsis/nsisLang.ts index e673c58bc03..36a1e5455e5 100644 --- a/packages/app-builder-lib/src/targets/nsis/nsisLang.ts +++ b/packages/app-builder-lib/src/targets/nsis/nsisLang.ts @@ -5,9 +5,9 @@ import { load } from "js-yaml" import * as path from "path" import { PlatformPackager } from "../../platformPackager.js" import { bundledLanguages, langIdToName, lcid, toLangWithRegion } from "../../util/langs.js" -import { NsisOptions } from "./nsisOptions.js.js" -import { NsisScriptGenerator } from "./nsisScriptGenerator.js.js" -import { nsisTemplatesDir } from "./nsisUtil.js.js" +import { NsisOptions } from "./nsisOptions.js" +import { NsisScriptGenerator } from "./nsisScriptGenerator.js" +import { nsisTemplatesDir } from "./nsisUtil.js" const debug = _debug("electron-builder:nsis") diff --git a/packages/app-builder-lib/src/targets/nsis/nsisLicense.ts b/packages/app-builder-lib/src/targets/nsis/nsisLicense.ts index c8cee8aae0f..436689606ef 100644 --- a/packages/app-builder-lib/src/targets/nsis/nsisLicense.ts +++ b/packages/app-builder-lib/src/targets/nsis/nsisLicense.ts @@ -4,9 +4,9 @@ import * as path from "path" import { lcid } from "../../util/langs.js" import { getLicenseFiles, getNotLocalizedLicenseFile } from "../../util/license.js" import { WinPackager } from "../../winPackager.js" -import { NsisOptions } from "./nsisOptions.js.js" -import { NsisScriptGenerator } from "./nsisScriptGenerator.js.js" -import { nsisTemplatesDir } from "./nsisUtil.js.js" +import { NsisOptions } from "./nsisOptions.js" +import { NsisScriptGenerator } from "./nsisScriptGenerator.js" +import { nsisTemplatesDir } from "./nsisUtil.js" function convertFileToUtf8WithBOMSync(filePath: string): boolean { try { diff --git a/packages/app-builder-lib/src/targets/nsis/nsisOptions.ts b/packages/app-builder-lib/src/targets/nsis/nsisOptions.ts index ff97b067d61..4540a65d61d 100644 --- a/packages/app-builder-lib/src/targets/nsis/nsisOptions.ts +++ b/packages/app-builder-lib/src/targets/nsis/nsisOptions.ts @@ -1,4 +1,4 @@ -import { CommonWindowsInstallerConfiguration } from "../...js" +import { CommonWindowsInstallerConfiguration } from "../../options/CommonWindowsInstallerConfiguration.js" import { TargetSpecificOptions } from "../../core.js" export interface CustomNsisBinary { diff --git a/packages/app-builder-lib/src/targets/nsis/nsisUtil.ts b/packages/app-builder-lib/src/targets/nsis/nsisUtil.ts index b8dd6a0b1c6..9e741a60d19 100644 --- a/packages/app-builder-lib/src/targets/nsis/nsisUtil.ts +++ b/packages/app-builder-lib/src/targets/nsis/nsisUtil.ts @@ -5,8 +5,8 @@ import * as path from "path" import * as zlib from "zlib" import { getBinFromCustomLoc, getBinFromUrl } from "../../binDownload.js" import { getTemplatePath } from "../../util/pathManager.js" -import { NsisOptions } from "./nsisOptions.js.js" -import { NsisTarget } from "./NsisTarget.js.js" +import { NsisOptions } from "./nsisOptions.js" +import { NsisTarget } from "./NsisTarget.js" export const nsisTemplatesDir = getTemplatePath("nsis") diff --git a/packages/app-builder-lib/src/targets/pkg.ts b/packages/app-builder-lib/src/targets/pkg.ts index e4fc0f4e621..eba3a4fa04b 100644 --- a/packages/app-builder-lib/src/targets/pkg.ts +++ b/packages/app-builder-lib/src/targets/pkg.ts @@ -39,18 +39,19 @@ type ExtraPackages = { // productbuild --scripts doesn't work (because scripts in this case not added to our package) // https://github.com/electron-userland/@electron/osx-sign/issues/96#issuecomment-274986942 export class PkgTarget extends Target { - readonly options: PkgOptions = { - allowAnywhere: true, - allowCurrentUserHome: true, - allowRootDirectory: true, - ...this.packager.config.pkg, - } + readonly options: PkgOptions constructor( private readonly packager: MacPackager, readonly outDir: string ) { super("pkg") + this.options = { + allowAnywhere: true, + allowCurrentUserHome: true, + allowRootDirectory: true, + ...this.packager.config.pkg, + } } async build(appPath: string, arch: Arch): Promise { diff --git a/packages/app-builder-lib/src/targets/snap.ts b/packages/app-builder-lib/src/targets/snap.ts index 31cdae30c6c..434aace4609 100644 --- a/packages/app-builder-lib/src/targets/snap.ts +++ b/packages/app-builder-lib/src/targets/snap.ts @@ -9,13 +9,13 @@ import { Publish, Target } from "../core.js" import { LinuxPackager } from "../linuxPackager.js" import { PlugDescriptor, SnapOptions } from "../options/SnapOptions.js" import { getTemplatePath } from "../util/pathManager.js" -import { LinuxTargetHelper } from "./LinuxTargetHelper.js.js" -import { createStageDirPath } from "./targetUtil.js.js" +import { LinuxTargetHelper } from "./LinuxTargetHelper.js" +import { createStageDirPath } from "./targetUtil.js" const defaultPlugs = ["desktop", "desktop-legacy", "home", "x11", "wayland", "unity7", "browser-support", "network", "gsettings", "audio-playback", "pulseaudio", "opengl"] export default class SnapTarget extends Target { - readonly options: SnapOptions = { ...this.packager.platformSpecificBuildOptions, ...(this.packager.config as any)[this.name] } + readonly options: SnapOptions public isUseTemplateApp = false @@ -26,6 +26,7 @@ export default class SnapTarget extends Target { readonly outDir: string ) { super(name) + this.options = { ...this.packager.platformSpecificBuildOptions, ...(this.packager.config as any)[this.name] } } private replaceDefault(inList: Array | Nullish, defaultList: Array) { diff --git a/packages/app-builder-lib/src/targets/targetFactory.ts b/packages/app-builder-lib/src/targets/targetFactory.ts index cfdf6392e17..8d1cf37b542 100644 --- a/packages/app-builder-lib/src/targets/targetFactory.ts +++ b/packages/app-builder-lib/src/targets/targetFactory.ts @@ -1,7 +1,7 @@ import { addValue, Arch, archFromString, ArchType, asArray } from "builder-util" import { DEFAULT_TARGET, DIR_TARGET, Platform, Target, TargetConfiguration } from "../core.js" import { PlatformPackager } from "../platformPackager.js" -import { ArchiveTarget } from "./ArchiveTarget.js.js" +import { ArchiveTarget } from "./ArchiveTarget.js" const archiveTargets = new Set(["zip", "7z", "tar.xz", "tar.lz", "tar.gz", "tar.bz2"]) diff --git a/packages/app-builder-lib/src/targets/targetUtil.ts b/packages/app-builder-lib/src/targets/targetUtil.ts index 1c62fd9afde..70a3668c14d 100644 --- a/packages/app-builder-lib/src/targets/targetUtil.ts +++ b/packages/app-builder-lib/src/targets/targetUtil.ts @@ -1,7 +1,7 @@ import { Arch, debug } from "builder-util" import * as fs from "fs/promises" import * as path from "path" -import { AppInfo, Target } from "../" +import { AppInfo, Target } from "../index.js" import { PlatformPackager } from "../platformPackager.js" export class StageDir { diff --git a/packages/app-builder-lib/src/util/NodeModuleCopyHelper.ts b/packages/app-builder-lib/src/util/NodeModuleCopyHelper.ts index a408e317969..87264106008 100644 --- a/packages/app-builder-lib/src/util/NodeModuleCopyHelper.ts +++ b/packages/app-builder-lib/src/util/NodeModuleCopyHelper.ts @@ -5,9 +5,9 @@ import * as path from "path" import asyncPool from "tiny-async-pool" import { excludedNames, FileMatcher } from "../fileMatcher.js" import { Packager } from "../packager.js" -import { FileCopyHelper } from "./AppFileWalker.js.js" -import { NodeModuleInfo } from "./packageDependencies.js.js" -import { resolveFunction } from "./resolve.js.js" +import { FileCopyHelper } from "./AppFileWalker.js" +import { NodeModuleInfo } from "./packageDependencies.js" +import { resolveFunction } from "./resolve.js" const excludedFiles = new Set( [ diff --git a/packages/app-builder-lib/src/util/appFileCopier.ts b/packages/app-builder-lib/src/util/appFileCopier.ts index 98963811d65..783cc12d6e1 100644 --- a/packages/app-builder-lib/src/util/appFileCopier.ts +++ b/packages/app-builder-lib/src/util/appFileCopier.ts @@ -10,10 +10,10 @@ import { excludedExts, FileMatcher } from "../fileMatcher.js" import { createElectronCompilerHost, NODE_MODULES_PATTERN } from "../fileTransformer.js" import { Packager } from "../packager.js" import { PlatformPackager } from "../platformPackager.js" -import { AppFileWalker } from "./AppFileWalker.js.js" -import { NodeModuleCopyHelper } from "./NodeModuleCopyHelper.js.js" -import { NodeModuleInfo } from "./packageDependencies.js.js" -import { getNodeModules } from "../node-module-collector.js" +import { AppFileWalker } from "./AppFileWalker.js" +import { NodeModuleCopyHelper } from "./NodeModuleCopyHelper.js" +import { NodeModuleInfo } from "./packageDependencies.js" +import { getNodeModules } from "../node-module-collector/index.js" const BOWER_COMPONENTS_PATTERN = `${path.sep}bower_components${path.sep}` /** @internal */ diff --git a/packages/app-builder-lib/src/util/config/config.ts b/packages/app-builder-lib/src/util/config/config.ts index 18a8d052b23..4cf14807e94 100644 --- a/packages/app-builder-lib/src/util/config/config.ts +++ b/packages/app-builder-lib/src/util/config/config.ts @@ -7,7 +7,7 @@ import { Configuration } from "../../configuration.js" import { FileSet } from "../../options/PlatformSpecificBuildOptions.js" import { reactCra } from "../../presets/rectCra.js" import { PACKAGE_VERSION } from "../../version.js" -import { getConfig as _getConfig, loadParentConfig, orNullIfFileNotExist, ReadConfigRequest } from "./load.js.js" +import { getConfig as _getConfig, loadParentConfig, orNullIfFileNotExist, ReadConfigRequest } from "./load.js" const validateSchema = require("@develar/schema-utils") // https://github.com/electron-userland/electron-builder/issues/1847 diff --git a/packages/app-builder-lib/src/util/license.ts b/packages/app-builder-lib/src/util/license.ts index 8f268f45b0c..da20e4dd392 100644 --- a/packages/app-builder-lib/src/util/license.ts +++ b/packages/app-builder-lib/src/util/license.ts @@ -1,7 +1,7 @@ import { Nullish } from "builder-util-runtime" import * as path from "path" import { PlatformPackager } from "../platformPackager.js" -import { langIdToName, toLangWithRegion } from "./langs.js.js" +import { langIdToName, toLangWithRegion } from "./langs.js" export function getLicenseAssets(fileNames: Array, packager: PlatformPackager) { return fileNames diff --git a/packages/app-builder-lib/src/util/packageDependencies.ts b/packages/app-builder-lib/src/util/packageDependencies.ts index 25990054904..9d586f0f6a0 100644 --- a/packages/app-builder-lib/src/util/packageDependencies.ts +++ b/packages/app-builder-lib/src/util/packageDependencies.ts @@ -1,5 +1,5 @@ import { Lazy } from "lazy-val" -import { executeAppBuilderAsJson } from "./appBuilder.js.js" +import { executeAppBuilderAsJson } from "./appBuilder.js" export function createLazyProductionDeps(projectDir: string, excludedDependencies: Array | null, flatten: T) { return new Lazy(async () => { diff --git a/packages/app-builder-lib/src/util/packageMetadata.ts b/packages/app-builder-lib/src/util/packageMetadata.ts index 74714b094a0..b00255ab915 100644 --- a/packages/app-builder-lib/src/util/packageMetadata.ts +++ b/packages/app-builder-lib/src/util/packageMetadata.ts @@ -4,7 +4,7 @@ import { readFile, readJson, readJsonSync } from "fs-extra" import * as path from "path" import * as semver from "semver" import { Metadata } from "../options/metadata.js" -import { normalizePackageData } from "./normalizePackageData.js.js" +import { normalizePackageData } from "./normalizePackageData.js" /** @internal */ export async function readPackageJson(file: string): Promise { diff --git a/packages/app-builder-lib/src/util/resolve.ts b/packages/app-builder-lib/src/util/resolve.ts index 93bf6822fe9..85792d89a75 100644 --- a/packages/app-builder-lib/src/util/resolve.ts +++ b/packages/app-builder-lib/src/util/resolve.ts @@ -1,4 +1,4 @@ -import { log } from "builder-util/out/log" +import { log } from "builder-util" import debug from "debug" import * as path from "path" import * as requireMaybe from "../../helpers/dynamic-import.js" diff --git a/packages/app-builder-lib/src/util/yarn.ts b/packages/app-builder-lib/src/util/yarn.ts index fd447abb010..073cffaa576 100644 --- a/packages/app-builder-lib/src/util/yarn.ts +++ b/packages/app-builder-lib/src/util/yarn.ts @@ -4,11 +4,11 @@ import { Lazy } from "lazy-val" import { homedir } from "os" import * as path from "path" import { Configuration } from "../configuration.js" -import { executeAppBuilderAndWriteJson } from "./appBuilder.js.js" -import { PM, getPackageManagerCommand } from "../node-module-collector.js" +import { executeAppBuilderAndWriteJson } from "./appBuilder.js" +import { PM, getPackageManagerCommand } from "../node-module-collector/index.js" import { detectPackageManager } from "../node-module-collector/packageManager.js" -import { NodeModuleDirInfo } from "./packageDependencies.js.js" -import { rebuild as remoteRebuild } from "./rebuild.js.js" +import { NodeModuleDirInfo } from "./packageDependencies.js" +import { rebuild as remoteRebuild } from "./rebuild.js" import * as which from "which" import { RebuildOptions as ElectronRebuildOptions } from "@electron/rebuild" import { Nullish } from "builder-util-runtime" diff --git a/packages/app-builder-lib/src/vm/MonoVm.ts b/packages/app-builder-lib/src/vm/MonoVm.ts index 8cfb85be537..ad354bfb3a9 100644 --- a/packages/app-builder-lib/src/vm/MonoVm.ts +++ b/packages/app-builder-lib/src/vm/MonoVm.ts @@ -1,6 +1,6 @@ import { exec, ExtraSpawnOptions, spawn } from "builder-util" import { ExecFileOptions, SpawnOptions } from "child_process" -import { VmManager } from "./vm.js.js" +import { VmManager } from "./vm.js" export class MonoVmManager extends VmManager { constructor() { diff --git a/packages/app-builder-lib/src/vm/ParallelsVm.ts b/packages/app-builder-lib/src/vm/ParallelsVm.ts index 7179b40e06f..948a4e46bdf 100644 --- a/packages/app-builder-lib/src/vm/ParallelsVm.ts +++ b/packages/app-builder-lib/src/vm/ParallelsVm.ts @@ -1,6 +1,6 @@ import { DebugLogger, ExtraSpawnOptions, exec, log, spawn } from "builder-util" import { ExecFileOptions, SpawnOptions, execFileSync } from "child_process" -import { VmManager } from "./vm.js.js" +import { VmManager } from "./vm.js" /** @internal */ export async function parseVmList(debugLogger: DebugLogger) { diff --git a/packages/app-builder-lib/src/vm/PwshVm.ts b/packages/app-builder-lib/src/vm/PwshVm.ts index 97545aba757..2f8df53f949 100644 --- a/packages/app-builder-lib/src/vm/PwshVm.ts +++ b/packages/app-builder-lib/src/vm/PwshVm.ts @@ -1,6 +1,6 @@ import { log } from "builder-util" import { Lazy } from "lazy-val" -import { isPwshAvailable, VmManager } from "./vm.js.js" +import { isPwshAvailable, VmManager } from "./vm.js" export class PwshVmManager extends VmManager { constructor() { diff --git a/packages/app-builder-lib/src/vm/WineVm.ts b/packages/app-builder-lib/src/vm/WineVm.ts index 956d5c97e34..f0a6a974948 100644 --- a/packages/app-builder-lib/src/vm/WineVm.ts +++ b/packages/app-builder-lib/src/vm/WineVm.ts @@ -2,7 +2,7 @@ import { ExtraSpawnOptions } from "builder-util" import { ExecFileOptions, SpawnOptions } from "child_process" import * as path from "path" import { execWine } from "../wine.js" -import { VmManager } from "./vm.js.js" +import { VmManager } from "./vm.js" export class WineVmManager extends VmManager { constructor() { diff --git a/packages/app-builder-lib/src/vm/vm.ts b/packages/app-builder-lib/src/vm/vm.ts index 3813863b886..aa03a6baab2 100644 --- a/packages/app-builder-lib/src/vm/vm.ts +++ b/packages/app-builder-lib/src/vm/vm.ts @@ -2,7 +2,7 @@ import { DebugLogger, exec, ExtraSpawnOptions, InvalidConfigurationError, log, s import { ExecFileOptions, SpawnOptions } from "child_process" import { Lazy } from "lazy-val" import * as path from "path" -import { ParallelsVm } from "./ParallelsVm.js.js" +import { ParallelsVm } from "./ParallelsVm.js" export class VmManager { get pathSep(): string { return path.sep diff --git a/packages/app-builder-lib/src/winPackager.ts b/packages/app-builder-lib/src/winPackager.ts index 941bc6c68fc..d608a1d9b40 100644 --- a/packages/app-builder-lib/src/winPackager.ts +++ b/packages/app-builder-lib/src/winPackager.ts @@ -5,27 +5,27 @@ import { readdir } from "fs/promises" import { isCI } from "ci-info" import { Lazy } from "lazy-val" import * as path from "path" -import { SignManager } from "./codeSign/signManager.js.js" -import { signWindows, WindowsSignOptions } from "./codeSign/windowsCodeSign.js.js" -import { WindowsSignAzureManager } from "./codeSign/windowsSignAzureManager.js.js" -import { FileCodeSigningInfo, getSignVendorPath, WindowsSignToolManager } from "./codeSign/windowsSignToolManager.js.js" -import { AfterPackContext } from "./configuration.js.js" -import { DIR_TARGET, Platform, Target } from "./core.js.js" -import { RequestedExecutionLevel, WindowsConfiguration } from "./options/winOptions.js.js" -import { Packager } from "./packager.js.js" -import { chooseNotNull, PlatformPackager } from "./platformPackager.js.js" -import AppXTarget from "./targets/AppxTarget.js.js" -import MsiTarget from "./targets/MsiTarget.js.js" -import MsiWrappedTarget from "./targets/MsiWrappedTarget.js.js" -import { NsisTarget } from "./targets/nsis/NsisTarget.js.js" -import { AppPackageHelper, CopyElevateHelper } from "./targets/nsis/nsisUtil.js.js" -import { WebInstallerTarget } from "./targets/nsis/WebInstallerTarget.js.js" -import { createCommonTarget } from "./targets/targetFactory.js.js" -import { BuildCacheManager, digest } from "./util/cacheManager.js.js" -import { isBuildCacheEnabled } from "./util/flags.js.js" -import { time } from "./util/timer.js.js" -import { getWindowsVm, VmManager } from "./vm/vm.js.js" -import { execWine } from "./wine.js.js" +import { SignManager } from "./codeSign/signManager.js" +import { signWindows, WindowsSignOptions } from "./codeSign/windowsCodeSign.js" +import { WindowsSignAzureManager } from "./codeSign/windowsSignAzureManager.js" +import { FileCodeSigningInfo, getSignVendorPath, WindowsSignToolManager } from "./codeSign/windowsSignToolManager.js" +import { AfterPackContext } from "./configuration.js" +import { DIR_TARGET, Platform, Target } from "./core.js" +import { RequestedExecutionLevel, WindowsConfiguration } from "./options/winOptions.js" +import { Packager } from "./packager.js" +import { chooseNotNull, PlatformPackager } from "./platformPackager.js" +import AppXTarget from "./targets/AppxTarget.js" +import MsiTarget from "./targets/MsiTarget.js" +import MsiWrappedTarget from "./targets/MsiWrappedTarget.js" +import { NsisTarget } from "./targets/nsis/NsisTarget.js" +import { AppPackageHelper, CopyElevateHelper } from "./targets/nsis/nsisUtil.js" +import { WebInstallerTarget } from "./targets/nsis/WebInstallerTarget.js" +import { createCommonTarget } from "./targets/targetFactory.js" +import { BuildCacheManager, digest } from "./util/cacheManager.js" +import { isBuildCacheEnabled } from "./util/flags.js" +import { time } from "./util/timer.js" +import { getWindowsVm, VmManager } from "./vm/vm.js" +import { execWine } from "./wine.js" export class WinPackager extends PlatformPackager { _iconPath = new Lazy(() => this.getOrConvertIcon("ico")) diff --git a/packages/builder-util-runtime/src/httpExecutor.ts b/packages/builder-util-runtime/src/httpExecutor.ts index 9d8aa574d15..0dfd2d290f4 100644 --- a/packages/builder-util-runtime/src/httpExecutor.ts +++ b/packages/builder-util-runtime/src/httpExecutor.ts @@ -5,10 +5,10 @@ import { IncomingMessage, OutgoingHttpHeader, OutgoingHttpHeaders, RequestOption import { Socket } from "net" import { Transform } from "stream" import { URL } from "url" -import { Nullish } from "./index.js.js.js" -import { CancellationToken } from "./CancellationToken.js.js.js" -import { newError } from "./error.js.js.js" -import { ProgressCallbackTransform, ProgressInfo } from "./ProgressCallbackTransform.js.js.js" +import { Nullish } from "./index.js" +import { CancellationToken } from "./CancellationToken.js" +import { newError } from "./error.js" +import { ProgressCallbackTransform, ProgressInfo } from "./ProgressCallbackTransform.js" const debug = _debug("electron-builder") diff --git a/packages/builder-util-runtime/src/index.ts b/packages/builder-util-runtime/src/index.ts index 4f1fd21686f..3ff2a6930f4 100644 --- a/packages/builder-util-runtime/src/index.ts +++ b/packages/builder-util-runtime/src/index.ts @@ -1,6 +1,6 @@ -export { BlockMap } from "./blockMapApi" -export { CancellationError, CancellationToken } from "./CancellationToken" -export { newError } from "./error" +export { BlockMap } from "./blockMapApi.js" +export { CancellationError, CancellationToken } from "./CancellationToken.js" +export { newError } from "./error.js" export { configureRequestOptions, configureRequestOptionsFromUrl, @@ -14,9 +14,9 @@ export { RequestHeaders, safeGetHeader, safeStringifyJson, -} from "./httpExecutor" -export { MemoLazy } from "./MemoLazy" -export { ProgressCallbackTransform, ProgressInfo } from "./ProgressCallbackTransform" +} from "./httpExecutor.js" +export { MemoLazy } from "./MemoLazy.js" +export { ProgressCallbackTransform, ProgressInfo } from "./ProgressCallbackTransform.js" export { AllPublishOptions, BaseS3Options, @@ -36,12 +36,12 @@ export { SpacesOptions, GitlabReleaseInfo, GitlabReleaseAsset, -} from "./publishOptions" -export { retry } from "./retry" -export { parseDn } from "./rfc2253Parser" -export { BlockMapDataHolder, PackageFileInfo, ReleaseNoteInfo, UpdateFileInfo, UpdateInfo, WindowsUpdateInfo } from "./updateInfo" -export { UUID } from "./uuid" -export { parseXml, XElement } from "./xml" +} from "./publishOptions.js" +export { retry } from "./retry.js" +export { parseDn } from "./rfc2253Parser.js" +export { BlockMapDataHolder, PackageFileInfo, ReleaseNoteInfo, UpdateFileInfo, UpdateInfo, WindowsUpdateInfo } from "./updateInfo.js" +export { UUID } from "./uuid.js" +export { parseXml, XElement } from "./xml.js" // nsis export const CURRENT_APP_INSTALLER_FILE_NAME = "installer.exe" diff --git a/packages/builder-util-runtime/src/publishOptions.ts b/packages/builder-util-runtime/src/publishOptions.ts index c2a366fd158..02c86ba07ee 100644 --- a/packages/builder-util-runtime/src/publishOptions.ts +++ b/packages/builder-util-runtime/src/publishOptions.ts @@ -1,5 +1,5 @@ import { OutgoingHttpHeaders } from "http" -import { Nullish } from "." +import { Nullish } from "./index.js" export type PublishProvider = "github" | "gitlab" | "s3" | "spaces" | "generic" | "custom" | "snapStore" | "keygen" | "bitbucket" diff --git a/packages/builder-util-runtime/src/retry.ts b/packages/builder-util-runtime/src/retry.ts index dee771a9e3a..041262eaf9f 100644 --- a/packages/builder-util-runtime/src/retry.ts +++ b/packages/builder-util-runtime/src/retry.ts @@ -1,4 +1,4 @@ -import { CancellationToken } from "./CancellationToken.js.js" +import { CancellationToken } from "./CancellationToken.js" export async function retry( task: () => Promise, diff --git a/packages/builder-util-runtime/src/uuid.ts b/packages/builder-util-runtime/src/uuid.ts index cab21137910..224ce9fe6aa 100644 --- a/packages/builder-util-runtime/src/uuid.ts +++ b/packages/builder-util-runtime/src/uuid.ts @@ -1,5 +1,5 @@ import { createHash, randomBytes } from "crypto" -import { newError } from "./error.js.js" +import { newError } from "./error.js" const invalidName = "options.name must be either a string or a Buffer" diff --git a/packages/builder-util-runtime/src/xml.ts b/packages/builder-util-runtime/src/xml.ts index ea53572a7c5..6985419c24e 100644 --- a/packages/builder-util-runtime/src/xml.ts +++ b/packages/builder-util-runtime/src/xml.ts @@ -1,5 +1,5 @@ import * as sax from "sax" -import { newError } from "./error.js.js" +import { newError } from "./error.js" export class XElement { value = "" diff --git a/packages/builder-util/src/DebugLogger.ts b/packages/builder-util/src/DebugLogger.ts index e39e0c2cf61..637239445e8 100644 --- a/packages/builder-util/src/DebugLogger.ts +++ b/packages/builder-util/src/DebugLogger.ts @@ -1,6 +1,6 @@ import { outputFile } from "fs-extra" -import { serializeToYaml } from "./util.js.js" -import { mapToObject } from "./mapper.js.js" +import { serializeToYaml } from "./util.js" +import { mapToObject } from "./mapper.js" export class DebugLogger { readonly data = new Map() diff --git a/packages/builder-util/src/asyncTaskManager.ts b/packages/builder-util/src/asyncTaskManager.ts index 7a74e4002fe..b02467c3b45 100644 --- a/packages/builder-util/src/asyncTaskManager.ts +++ b/packages/builder-util/src/asyncTaskManager.ts @@ -1,6 +1,6 @@ import { CancellationToken } from "builder-util-runtime" -import { log } from "./log.js.js" -import { NestedError } from "./promise.js.js" +import { log } from "./log.js" +import { NestedError } from "./promise.js" export class AsyncTaskManager { readonly tasks: Array> = [] diff --git a/packages/builder-util/src/deepAssign.ts b/packages/builder-util/src/deepAssign.ts index e3c5fce2d99..0e00591cee7 100644 --- a/packages/builder-util/src/deepAssign.ts +++ b/packages/builder-util/src/deepAssign.ts @@ -1,4 +1,4 @@ -import { isValidKey } from "./mapper.js.js" +import { isValidKey } from "./mapper.js" function isObject(x: any) { if (Array.isArray(x)) { diff --git a/packages/builder-util/src/fs.ts b/packages/builder-util/src/fs.ts index 9d44e0f4eeb..5e33a8d7cd7 100644 --- a/packages/builder-util/src/fs.ts +++ b/packages/builder-util/src/fs.ts @@ -6,8 +6,8 @@ import { platform } from "os" import * as path from "path" import { Mode } from "stat-mode" import asyncPool from "tiny-async-pool" -import { log } from "./log.js.js" -import { orIfFileNotExist, orNullIfFileNotExist } from "./promise.js.js" +import { log } from "./log.js" +import { orIfFileNotExist, orNullIfFileNotExist } from "./promise.js" export const MAX_FILE_REQUESTS = 8 diff --git a/packages/builder-util/src/util.ts b/packages/builder-util/src/util.ts index 5727744db00..bf55d7b3219 100644 --- a/packages/builder-util/src/util.ts +++ b/packages/builder-util/src/util.ts @@ -8,13 +8,14 @@ import _debug from "debug" import { dump } from "js-yaml" import * as path from "path" import { install as installSourceMap } from "source-map-support" -import { getPath7za } from "./7za.js.js" -import { debug, log } from "./log.js.js" +import { getPath7za } from "./7za.js" +import { debug, log } from "./log.js" if (process.env.JEST_WORKER_ID == null) { installSourceMap() } +export { getCompleteExtname, sanitizeFileName } from "./filename" export { safeStringifyJson, retry } from "builder-util-runtime" export { TmpDir } from "temp-file" export * from "./arch.js" diff --git a/packages/dmg-builder/src/dmg.ts b/packages/dmg-builder/src/dmg.ts index ccb4ac55ee3..371c9829d2b 100644 --- a/packages/dmg-builder/src/dmg.ts +++ b/packages/dmg-builder/src/dmg.ts @@ -1,14 +1,14 @@ import { DmgOptions, Target } from "app-builder-lib" -import { findIdentity, isSignAllowed } from "app-builder-lib/out/codeSign/macCodeSign" -import { MacPackager } from "app-builder-lib/out/macPackager" -import { createBlockmap } from "app-builder-lib/out/targets/differentialUpdateInfoBuilder" +import { findIdentity, isSignAllowed } from "app-builder-lib" +import { MacPackager } from "app-builder-lib/out/macPackager.js" +import { createBlockmap } from "app-builder-lib/out/targets/differentialUpdateInfoBuilder.js" import { Arch, exec, getArchSuffix, InvalidConfigurationError, isEmptyOrSpaces } from "builder-util" -import { sanitizeFileName } from "builder-util/out/filename" +import { sanitizeFileName } from "builder-util" import { release as getOsRelease } from "os" import * as path from "path" -import { addLicenseToDmg } from "./dmgLicense.js.js" -import { computeBackground, customizeDmg } from "./dmgUtil.js.js" -import { hdiUtil } from "./hdiuil.js.js" +import { addLicenseToDmg } from "./dmgLicense.js" +import { computeBackground, customizeDmg } from "./dmgUtil.js" +import { hdiUtil } from "./hdiuil.js" export interface DmgBuildConfig { title: string diff --git a/packages/dmg-builder/src/dmgLicense.ts b/packages/dmg-builder/src/dmgLicense.ts index b9589811015..de6b5f7b0be 100644 --- a/packages/dmg-builder/src/dmgLicense.ts +++ b/packages/dmg-builder/src/dmgLicense.ts @@ -4,7 +4,7 @@ import { log } from "builder-util" import { dmgLicenseFromJSON } from "dmg-license" import { readFile, readJson } from "fs-extra" import { load } from "js-yaml" -import { getLicenseButtonsFile } from "./licenseButtons.js.js" +import { getLicenseButtonsFile } from "./licenseButtons.js" // License Specifications // https://github.com/argv-minus-one/dmg-license/blob/HEAD/docs/License%20Specifications.md diff --git a/packages/dmg-builder/src/dmgUtil.ts b/packages/dmg-builder/src/dmgUtil.ts index cf0b4538835..779026f15cf 100644 --- a/packages/dmg-builder/src/dmgUtil.ts +++ b/packages/dmg-builder/src/dmgUtil.ts @@ -1,9 +1,9 @@ import { DmgOptions, MacPackager, PlatformPackager } from "app-builder-lib" import { exec, executeFinally, exists, isEmptyOrSpaces, TmpDir } from "builder-util" import * as path from "path" -import { hdiUtil, hdiutilTransientExitCodes } from "./hdiuil.js.js" +import { hdiUtil, hdiutilTransientExitCodes } from "./hdiuil.js" import { writeFile } from "fs-extra" -import { DmgBuildConfig } from "./dmg.js.js" +import { DmgBuildConfig } from "./dmg.js" export { DmgTarget } from "./dmg.js" diff --git a/packages/dmg-builder/src/licenseButtons.ts b/packages/dmg-builder/src/licenseButtons.ts index e26a07d2193..890de834dc4 100644 --- a/packages/dmg-builder/src/licenseButtons.ts +++ b/packages/dmg-builder/src/licenseButtons.ts @@ -4,8 +4,8 @@ import { log } from "builder-util" import { readFile } from "fs-extra" import * as iconv from "iconv-lite" import { load } from "js-yaml" -import { serializeString } from "./dmgUtil.js.js" -import { getDefaultButtons } from "./licenseDefaultButtons.js.js" +import { serializeString } from "./dmgUtil.js" +import { getDefaultButtons } from "./licenseDefaultButtons.js" export async function getLicenseButtonsFile(packager: PlatformPackager): Promise> { return getLicenseAssets( diff --git a/packages/electron-builder-squirrel-windows/src/SquirrelWindowsTarget.ts b/packages/electron-builder-squirrel-windows/src/SquirrelWindowsTarget.ts index e92edc95ad5..a4b513ce956 100644 --- a/packages/electron-builder-squirrel-windows/src/SquirrelWindowsTarget.ts +++ b/packages/electron-builder-squirrel-windows/src/SquirrelWindowsTarget.ts @@ -1,7 +1,7 @@ import { InvalidConfigurationError, log, isEmptyOrSpaces } from "builder-util" import { execWine } from "app-builder-lib/out/wine" import { getBinFromUrl } from "app-builder-lib/out/binDownload" -import { sanitizeFileName } from "builder-util/out/filename" +import { sanitizeFileName } from "builder-util" import { Arch, getArchSuffix, SquirrelWindowsOptions, Target, WinPackager } from "app-builder-lib" import * as path from "path" import * as fs from "fs" diff --git a/packages/electron-builder/src/cli/cli.ts b/packages/electron-builder/src/cli/cli.ts index 1961aa47c0e..797ae0f7bf4 100644 --- a/packages/electron-builder/src/cli/cli.ts +++ b/packages/electron-builder/src/cli/cli.ts @@ -10,9 +10,9 @@ import { isCI } from "ci-info" import * as path from "path" import { build, configureBuildCommand, createYargs } from "../builder.js" import { configurePublishCommand, publish } from "../publish.js" -import { createSelfSignedCert } from "./create-self-signed-cert.js.js" -import { configureInstallAppDepsCommand, installAppDeps } from "./install-app-deps.js.js" -import { start } from "./start.js.js" +import { createSelfSignedCert } from "./create-self-signed-cert.js" +import { configureInstallAppDepsCommand, installAppDeps } from "./install-app-deps.js" +import { start } from "./start.js" // tslint:disable:no-unused-expression void createYargs() diff --git a/packages/electron-builder/src/cli/create-self-signed-cert.ts b/packages/electron-builder/src/cli/create-self-signed-cert.ts index 1ce7ec3eac5..8e9b629bffb 100644 --- a/packages/electron-builder/src/cli/create-self-signed-cert.ts +++ b/packages/electron-builder/src/cli/create-self-signed-cert.ts @@ -1,6 +1,6 @@ import { getSignVendorPath } from "app-builder-lib/out/codeSign/windowsSignToolManager" import { exec, log, spawn, TmpDir, unlinkIfExists } from "builder-util" -import { sanitizeFileName } from "builder-util/out/filename" +import { sanitizeFileName } from "builder-util" import * as chalk from "chalk" import { mkdir } from "fs/promises" import * as path from "path" diff --git a/packages/electron-builder/src/publish.ts b/packages/electron-builder/src/publish.ts index bfea0dee611..a673095a0a2 100644 --- a/packages/electron-builder/src/publish.ts +++ b/packages/electron-builder/src/publish.ts @@ -9,7 +9,7 @@ import { PublishPolicy } from "electron-publish" import * as chalk from "chalk" import * as path from "path" import * as yargs from "yargs" -import { BuildOptions, normalizeOptions } from "./builder.js.js" +import { BuildOptions, normalizeOptions } from "./builder.js" /** @internal */ export function configurePublishCommand(yargs: yargs.Argv): yargs.Argv { diff --git a/packages/electron-publish/src/bitbucketPublisher.ts b/packages/electron-publish/src/bitbucketPublisher.ts index e176e3dacf0..f055a5b9616 100644 --- a/packages/electron-publish/src/bitbucketPublisher.ts +++ b/packages/electron-publish/src/bitbucketPublisher.ts @@ -1,11 +1,11 @@ import { Arch, httpExecutor, InvalidConfigurationError, isEmptyOrSpaces, log } from "builder-util" import { configureRequestOptions, HttpExecutor } from "builder-util-runtime" -import { BitbucketOptions } from "builder-util-runtime/out/publishOptions" -import * as FormData from "form-data" +import { BitbucketOptions } from "builder-util-runtime" +import FormData from "form-data" import { readFile } from "fs-extra" import { ClientRequest, RequestOptions } from "http" -import { PublishContext } from "./" -import { HttpPublisher } from "./httpPublisher.js.js" +import { PublishContext } from "./index.js" +import { HttpPublisher } from "./httpPublisher.js" export class BitbucketPublisher extends HttpPublisher { readonly providerName = "bitbucket" diff --git a/packages/electron-publish/src/gitHubPublisher.ts b/packages/electron-publish/src/gitHubPublisher.ts index afc9c1cbdd7..fbdc44b21c1 100644 --- a/packages/electron-publish/src/gitHubPublisher.ts +++ b/packages/electron-publish/src/gitHubPublisher.ts @@ -4,9 +4,9 @@ import { ClientRequest } from "http" import { Lazy } from "lazy-val" import * as mime from "mime" import { parse as parseUrl, UrlWithStringQuery } from "url" -import { HttpPublisher } from "./httpPublisher.js.js" -import { PublishContext, PublishOptions } from "./index.js.js" -import { getCiTag } from "./publisher.js.js" +import { HttpPublisher } from "./httpPublisher.js" +import { PublishContext, PublishOptions } from "./index.js" +import { getCiTag } from "./publisher.js" export interface Release { id: number diff --git a/packages/electron-publish/src/gitlabPublisher.ts b/packages/electron-publish/src/gitlabPublisher.ts index ad2c41a0061..5784203fa0a 100644 --- a/packages/electron-publish/src/gitlabPublisher.ts +++ b/packages/electron-publish/src/gitlabPublisher.ts @@ -6,10 +6,10 @@ import { configureRequestOptions, GitlabOptions, GitlabReleaseInfo, parseJson, H import { ClientRequest } from "http" import { Lazy } from "lazy-val" import * as mime from "mime" -import * as FormData from "form-data" +import FormData from "form-data" import { URL } from "url" -import { HttpPublisher } from "./httpPublisher.js.js" -import { PublishContext } from "./index.js.js" +import { HttpPublisher } from "./httpPublisher.js" +import { PublishContext } from "./index.js" type RequestProcessor = (request: ClientRequest, reject: (error: Error) => void) => void diff --git a/packages/electron-publish/src/httpPublisher.ts b/packages/electron-publish/src/httpPublisher.ts index 40618cf7370..903775386be 100644 --- a/packages/electron-publish/src/httpPublisher.ts +++ b/packages/electron-publish/src/httpPublisher.ts @@ -2,8 +2,8 @@ import { Arch } from "builder-util" import { stat } from "fs-extra" import { ClientRequest } from "http" import { basename } from "path" -import { PublishContext, UploadTask } from "." -import { Publisher } from "./publisher.js.js" +import { PublishContext, UploadTask } from "./index.js" +import { Publisher } from "./publisher.js" export abstract class HttpPublisher extends Publisher { protected constructor( diff --git a/packages/electron-publish/src/index.ts b/packages/electron-publish/src/index.ts index afa128c61e3..4795b4c4d1e 100644 --- a/packages/electron-publish/src/index.ts +++ b/packages/electron-publish/src/index.ts @@ -1,25 +1,26 @@ import { Arch } from "builder-util" import { CancellationToken } from "builder-util-runtime" -import { MultiProgress } from "./multiProgress.js.js" +import { MultiProgress } from "./multiProgress.js" export { BitbucketPublisher } from "./bitbucketPublisher.js" -export { GitHubPublisher } from "./gitHubPublisher" -export { GitlabPublisher } from "./gitlabPublisher" -export { KeygenPublisher } from "./keygenPublisher" -export { S3Publisher } from "./s3/s3Publisher" -export { SpacesPublisher } from "./s3/spacesPublisher" -export { SnapStorePublisher } from "./snapStorePublisher" +export { GitHubPublisher } from "./gitHubPublisher.js" +export { GitlabPublisher } from "./gitlabPublisher.js" +export { KeygenPublisher } from "./keygenPublisher.js" +export { S3Publisher } from "./s3/s3Publisher.js" +export { SpacesPublisher } from "./s3/spacesPublisher.js" +export { SnapStorePublisher } from "./snapStorePublisher.js" export type PublishPolicy = "onTag" | "onTagOrDraft" | "always" | "never" -export { ProgressCallback } from "./progress" +export { MultiProgress } +export { ProgressCallback } from "./progress.js" export interface PublishOptions { publish?: PublishPolicy | null } -export { HttpPublisher } from "./httpPublisher" -export { getCiTag, Publisher } from "./publisher" +export { HttpPublisher } from "./httpPublisher.js" +export { getCiTag, Publisher } from "./publisher.js" export interface PublishContext { readonly cancellationToken: CancellationToken diff --git a/packages/electron-publish/src/keygenPublisher.ts b/packages/electron-publish/src/keygenPublisher.ts index cfedf1fc6f4..d15383675fc 100644 --- a/packages/electron-publish/src/keygenPublisher.ts +++ b/packages/electron-publish/src/keygenPublisher.ts @@ -1,10 +1,10 @@ import { Arch, httpExecutor, InvalidConfigurationError, isEmptyOrSpaces, log } from "builder-util" import { configureRequestOptions, HttpExecutor, parseJson } from "builder-util-runtime" -import { KeygenOptions } from "builder-util-runtime/out/publishOptions" -import { getCompleteExtname } from "builder-util/out/filename" +import { KeygenOptions } from "builder-util-runtime" +import { getCompleteExtname } from "builder-util" import { ClientRequest, RequestOptions } from "http" -import { PublishContext } from "./" -import { HttpPublisher } from "./httpPublisher.js.js" +import { PublishContext } from "./index.js" +import { HttpPublisher } from "./httpPublisher.js" type RecursivePartial = { [P in keyof T]?: RecursivePartial diff --git a/packages/electron-publish/src/multiProgress.ts b/packages/electron-publish/src/multiProgress.ts index 31ac916b627..7da359a9965 100644 --- a/packages/electron-publish/src/multiProgress.ts +++ b/packages/electron-publish/src/multiProgress.ts @@ -1,5 +1,5 @@ import { setPrinter } from "builder-util" -import { ProgressBar } from "./progress.js.js" +import { ProgressBar } from "./progress.js" export class MultiProgress { private readonly stream = process.stdout as any diff --git a/packages/electron-publish/src/publisher.ts b/packages/electron-publish/src/publisher.ts index b0e5050139c..ae7946c2f51 100644 --- a/packages/electron-publish/src/publisher.ts +++ b/packages/electron-publish/src/publisher.ts @@ -2,8 +2,8 @@ import { log, PADDING } from "builder-util" import { ProgressCallbackTransform, PublishProvider } from "builder-util-runtime" import * as chalk from "chalk" import { createReadStream, Stats } from "fs-extra" -import { PublishContext, UploadTask } from "." -import { ProgressBar } from "./progress.js.js" +import { PublishContext, UploadTask } from "./index.js" +import { ProgressBar } from "./progress.js" const progressBarOptions = { incomplete: " ", diff --git a/packages/electron-publish/src/s3/baseS3Publisher.ts b/packages/electron-publish/src/s3/baseS3Publisher.ts index dd258174f81..7b37c688d8e 100644 --- a/packages/electron-publish/src/s3/baseS3Publisher.ts +++ b/packages/electron-publish/src/s3/baseS3Publisher.ts @@ -2,7 +2,7 @@ import { executeAppBuilder, log } from "builder-util" import { BaseS3Options } from "builder-util-runtime" import { mkdir, symlink } from "fs/promises" import * as path from "path" -import { PublishContext, UploadTask } from ".." +import { PublishContext, UploadTask } from "../index.js" import { Publisher } from "../publisher.js" export abstract class BaseS3Publisher extends Publisher { diff --git a/packages/electron-publish/src/s3/s3Publisher.ts b/packages/electron-publish/src/s3/s3Publisher.ts index cad7762885f..e2c4d4d4747 100644 --- a/packages/electron-publish/src/s3/s3Publisher.ts +++ b/packages/electron-publish/src/s3/s3Publisher.ts @@ -1,7 +1,7 @@ import { executeAppBuilder, InvalidConfigurationError, log } from "builder-util" import { S3Options } from "builder-util-runtime" -import { PublishContext } from ".." -import { BaseS3Publisher } from "./baseS3Publisher.js.js" +import { PublishContext } from "../index.js" +import { BaseS3Publisher } from "./baseS3Publisher.js" export class S3Publisher extends BaseS3Publisher { readonly providerName = "s3" diff --git a/packages/electron-publish/src/s3/spacesPublisher.ts b/packages/electron-publish/src/s3/spacesPublisher.ts index 551314a126d..b39cfab82ff 100644 --- a/packages/electron-publish/src/s3/spacesPublisher.ts +++ b/packages/electron-publish/src/s3/spacesPublisher.ts @@ -1,7 +1,7 @@ import { InvalidConfigurationError, isEmptyOrSpaces } from "builder-util" import { SpacesOptions } from "builder-util-runtime" -import { PublishContext } from "../" -import { BaseS3Publisher } from "./baseS3Publisher.js.js" +import { PublishContext } from "../index.js" +import { BaseS3Publisher } from "./baseS3Publisher.js" export class SpacesPublisher extends BaseS3Publisher { readonly providerName = "spaces" diff --git a/packages/electron-publish/src/snapStorePublisher.ts b/packages/electron-publish/src/snapStorePublisher.ts index a86c823d69e..313cca391fe 100644 --- a/packages/electron-publish/src/snapStorePublisher.ts +++ b/packages/electron-publish/src/snapStorePublisher.ts @@ -1,8 +1,8 @@ import { executeAppBuilder } from "builder-util" -import { SnapStoreOptions } from "builder-util-runtime/out/publishOptions" +import { SnapStoreOptions } from "builder-util-runtime" import * as path from "path" -import { PublishContext, UploadTask } from "." -import { Publisher } from "./publisher.js.js" +import { PublishContext, UploadTask } from "./index.js" +import { Publisher } from "./publisher.js" export class SnapStorePublisher extends Publisher { readonly providerName = "snapStore" diff --git a/packages/electron-updater/src/AppImageUpdater.ts b/packages/electron-updater/src/AppImageUpdater.ts index 866ad3c1c69..108b591fa6d 100644 --- a/packages/electron-updater/src/AppImageUpdater.ts +++ b/packages/electron-updater/src/AppImageUpdater.ts @@ -3,12 +3,12 @@ import { execFileSync } from "child_process" import { chmod } from "fs-extra" import { unlinkSync } from "fs" import * as path from "path" -import { DownloadUpdateOptions } from "./AppUpdater.js.js" -import { BaseUpdater, InstallOptions } from "./BaseUpdater.js.js" -import { DifferentialDownloaderOptions } from "./differentialDownloader/DifferentialDownloader.js.js" -import { FileWithEmbeddedBlockMapDifferentialDownloader } from "./differentialDownloader/FileWithEmbeddedBlockMapDifferentialDownloader.js.js" -import { findFile, Provider } from "./providers/Provider.js.js" -import { DOWNLOAD_PROGRESS, ResolvedUpdateFileInfo } from "./types.js.js" +import { DownloadUpdateOptions } from "./AppUpdater.js" +import { BaseUpdater, InstallOptions } from "./BaseUpdater.js" +import { DifferentialDownloaderOptions } from "./differentialDownloader/DifferentialDownloader.js" +import { FileWithEmbeddedBlockMapDifferentialDownloader } from "./differentialDownloader/FileWithEmbeddedBlockMapDifferentialDownloader.js" +import { findFile, Provider } from "./providers/Provider.js" +import { DOWNLOAD_PROGRESS, ResolvedUpdateFileInfo } from "./types.js" export class AppImageUpdater extends BaseUpdater { constructor(options?: AllPublishOptions | null, app?: any) { diff --git a/packages/electron-updater/src/AppUpdater.ts b/packages/electron-updater/src/AppUpdater.ts index 303c548b2fa..637822ebed0 100644 --- a/packages/electron-updater/src/AppUpdater.ts +++ b/packages/electron-updater/src/AppUpdater.ts @@ -21,21 +21,21 @@ import { load } from "js-yaml" import { Lazy } from "lazy-val" import * as path from "path" import { eq as isVersionsEqual, gt as isVersionGreaterThan, lt as isVersionLessThan, parse as parseVersion, prerelease as getVersionPreleaseComponents, SemVer } from "semver" -import { AppAdapter } from "./AppAdapter.js.js" -import { createTempUpdateFile, DownloadedUpdateHelper } from "./DownloadedUpdateHelper.js.js" -import { ElectronAppAdapter } from "./ElectronAppAdapter.js.js" -import { ElectronHttpExecutor, getNetSession, LoginCallback } from "./electronHttpExecutor.js.js" -import { GenericProvider } from "./providers/GenericProvider.js.js" -import { createClient, isUrlProbablySupportMultiRangeRequests } from "./providerFactory.js.js" -import { Provider, ProviderPlatform } from "./providers/Provider.js.js" +import { AppAdapter } from "./AppAdapter.js" +import { createTempUpdateFile, DownloadedUpdateHelper } from "./DownloadedUpdateHelper.js" +import { ElectronAppAdapter } from "./ElectronAppAdapter.js" +import { ElectronHttpExecutor, getNetSession, LoginCallback } from "./electronHttpExecutor.js" +import { GenericProvider } from "./providers/GenericProvider.js" +import { createClient, isUrlProbablySupportMultiRangeRequests } from "./providerFactory.js" +import { Provider, ProviderPlatform } from "./providers/Provider.js" import type { TypedEmitter } from "tiny-typed-emitter" import Session = Electron.Session import type { AuthInfo } from "electron" import { gunzipSync, gzipSync } from "zlib" -import { DifferentialDownloaderOptions } from "./differentialDownloader/DifferentialDownloader.js.js" -import { GenericDifferentialDownloader } from "./differentialDownloader/GenericDifferentialDownloader.js.js" -import { DOWNLOAD_PROGRESS, Logger, ResolvedUpdateFileInfo, UPDATE_DOWNLOADED, UpdateCheckResult, UpdateDownloadedEvent, UpdaterSignal } from "./types.js.js" -import { VerifyUpdateSupport } from "./main.js.js" +import { DifferentialDownloaderOptions } from "./differentialDownloader/DifferentialDownloader.js" +import { GenericDifferentialDownloader } from "./differentialDownloader/GenericDifferentialDownloader.js" +import { DOWNLOAD_PROGRESS, Logger, ResolvedUpdateFileInfo, UPDATE_DOWNLOADED, UpdateCheckResult, UpdateDownloadedEvent, UpdaterSignal } from "./types.js" +import { VerifyUpdateSupport } from "./main.js" export type AppUpdaterEvents = { error: (error: Error, message?: string) => void diff --git a/packages/electron-updater/src/BaseUpdater.ts b/packages/electron-updater/src/BaseUpdater.ts index d4473b83fae..e516a358ffb 100644 --- a/packages/electron-updater/src/BaseUpdater.ts +++ b/packages/electron-updater/src/BaseUpdater.ts @@ -1,7 +1,7 @@ import { AllPublishOptions } from "builder-util-runtime" import { spawn, SpawnOptions, spawnSync, StdioOptions } from "child_process" -import { AppAdapter } from "./AppAdapter.js.js" -import { AppUpdater, DownloadExecutorTask } from "./AppUpdater.js.js" +import { AppAdapter } from "./AppAdapter.js" +import { AppUpdater, DownloadExecutorTask } from "./AppUpdater.js" export abstract class BaseUpdater extends AppUpdater { protected quitAndInstallCalled = false diff --git a/packages/electron-updater/src/DebUpdater.ts b/packages/electron-updater/src/DebUpdater.ts index 9ec87e72790..9c0d537af3b 100644 --- a/packages/electron-updater/src/DebUpdater.ts +++ b/packages/electron-updater/src/DebUpdater.ts @@ -1,10 +1,10 @@ import { AllPublishOptions } from "builder-util-runtime" -import { AppAdapter } from "./AppAdapter.js.js" -import { DownloadUpdateOptions } from "./AppUpdater.js.js" -import { InstallOptions } from "./BaseUpdater.js.js" -import { findFile } from "./providers/Provider.js.js" -import { DOWNLOAD_PROGRESS, Logger } from "./types.js.js" -import { LinuxUpdater } from "./LinuxUpdater.js.js" +import { AppAdapter } from "./AppAdapter.js" +import { DownloadUpdateOptions } from "./AppUpdater.js" +import { InstallOptions } from "./BaseUpdater.js" +import { findFile } from "./providers/Provider.js" +import { DOWNLOAD_PROGRESS, Logger } from "./types.js" +import { LinuxUpdater } from "./LinuxUpdater.js" export class DebUpdater extends LinuxUpdater { constructor(options?: AllPublishOptions | null, app?: AppAdapter) { diff --git a/packages/electron-updater/src/DownloadedUpdateHelper.ts b/packages/electron-updater/src/DownloadedUpdateHelper.ts index db7fe0de6c1..0844727b0ae 100644 --- a/packages/electron-updater/src/DownloadedUpdateHelper.ts +++ b/packages/electron-updater/src/DownloadedUpdateHelper.ts @@ -3,8 +3,8 @@ import { createHash } from "crypto" import { createReadStream } from "fs" // @ts-ignore import * as isEqual from "lodash.isequal" -import { ResolvedUpdateFileInfo } from "./types.js.js" -import { Logger } from "./types.js.js" +import { ResolvedUpdateFileInfo } from "./types.js" +import { Logger } from "./types.js" import { pathExists, readJson, emptyDir, outputJson, unlink } from "fs-extra" import * as path from "path" diff --git a/packages/electron-updater/src/ElectronAppAdapter.ts b/packages/electron-updater/src/ElectronAppAdapter.ts index b3dc0cd3819..748e6930d18 100644 --- a/packages/electron-updater/src/ElectronAppAdapter.ts +++ b/packages/electron-updater/src/ElectronAppAdapter.ts @@ -1,5 +1,5 @@ import * as path from "path" -import { AppAdapter, getAppCacheDir } from "./AppAdapter.js.js" +import { AppAdapter, getAppCacheDir } from "./AppAdapter.js" export class ElectronAppAdapter implements AppAdapter { constructor(private readonly app = require("electron").app) {} diff --git a/packages/electron-updater/src/LinuxUpdater.ts b/packages/electron-updater/src/LinuxUpdater.ts index d362e1ddbba..f2081c4f7f4 100644 --- a/packages/electron-updater/src/LinuxUpdater.ts +++ b/packages/electron-updater/src/LinuxUpdater.ts @@ -1,6 +1,6 @@ import { AllPublishOptions } from "builder-util-runtime" -import { AppAdapter } from "./AppAdapter.js.js" -import { BaseUpdater } from "./BaseUpdater.js.js" +import { AppAdapter } from "./AppAdapter.js" +import { BaseUpdater } from "./BaseUpdater.js" export abstract class LinuxUpdater extends BaseUpdater { constructor(options?: AllPublishOptions | null, app?: AppAdapter) { diff --git a/packages/electron-updater/src/MacUpdater.ts b/packages/electron-updater/src/MacUpdater.ts index 3d95523bca6..640f9d3fb1c 100644 --- a/packages/electron-updater/src/MacUpdater.ts +++ b/packages/electron-updater/src/MacUpdater.ts @@ -3,11 +3,11 @@ import { pathExistsSync, stat, copyFile } from "fs-extra" import { createReadStream } from "fs" import * as path from "path" import { createServer, IncomingMessage, Server, ServerResponse } from "http" -import { AppAdapter } from "./AppAdapter.js.js" -import { AppUpdater, DownloadUpdateOptions } from "./AppUpdater.js.js" -import { ResolvedUpdateFileInfo } from "./main.js.js" -import { UpdateDownloadedEvent } from "./types.js.js" -import { findFile } from "./providers/Provider.js.js" +import { AppAdapter } from "./AppAdapter.js" +import { AppUpdater, DownloadUpdateOptions } from "./AppUpdater.js" +import { ResolvedUpdateFileInfo } from "./main.js" +import { UpdateDownloadedEvent } from "./types.js" +import { findFile } from "./providers/Provider.js" import AutoUpdater = Electron.AutoUpdater import { execFileSync } from "child_process" import { randomBytes } from "crypto" diff --git a/packages/electron-updater/src/NsisUpdater.ts b/packages/electron-updater/src/NsisUpdater.ts index 492f1b191a7..70966a1fb37 100644 --- a/packages/electron-updater/src/NsisUpdater.ts +++ b/packages/electron-updater/src/NsisUpdater.ts @@ -1,15 +1,15 @@ import { AllPublishOptions, newError, PackageFileInfo, CURRENT_APP_INSTALLER_FILE_NAME, CURRENT_APP_PACKAGE_FILE_NAME } from "builder-util-runtime" import * as path from "path" -import { AppAdapter } from "./AppAdapter.js.js" -import { DownloadUpdateOptions } from "./AppUpdater.js.js" -import { BaseUpdater, InstallOptions } from "./BaseUpdater.js.js" -import { DifferentialDownloaderOptions } from "./differentialDownloader/DifferentialDownloader.js.js" -import { FileWithEmbeddedBlockMapDifferentialDownloader } from "./differentialDownloader/FileWithEmbeddedBlockMapDifferentialDownloader.js.js" -import { DOWNLOAD_PROGRESS } from "./types.js.js" -import { VerifyUpdateCodeSignature } from "./main.js.js" -import { findFile, Provider } from "./providers/Provider.js.js" +import { AppAdapter } from "./AppAdapter.js" +import { DownloadUpdateOptions } from "./AppUpdater.js" +import { BaseUpdater, InstallOptions } from "./BaseUpdater.js" +import { DifferentialDownloaderOptions } from "./differentialDownloader/DifferentialDownloader.js" +import { FileWithEmbeddedBlockMapDifferentialDownloader } from "./differentialDownloader/FileWithEmbeddedBlockMapDifferentialDownloader.js" +import { DOWNLOAD_PROGRESS } from "./types.js" +import { VerifyUpdateCodeSignature } from "./main.js" +import { findFile, Provider } from "./providers/Provider.js" import { unlink } from "fs-extra" -import { verifySignature } from "./windowsExecutableCodeSignatureVerifier.js.js" +import { verifySignature } from "./windowsExecutableCodeSignatureVerifier.js" import { URL } from "url" export class NsisUpdater extends BaseUpdater { diff --git a/packages/electron-updater/src/PacmanUpdater.ts b/packages/electron-updater/src/PacmanUpdater.ts index 86c0eabdbb7..8c3b5b6f1b1 100644 --- a/packages/electron-updater/src/PacmanUpdater.ts +++ b/packages/electron-updater/src/PacmanUpdater.ts @@ -1,10 +1,10 @@ import { AllPublishOptions } from "builder-util-runtime" -import { AppAdapter } from "./AppAdapter.js.js" -import { DownloadUpdateOptions } from "./AppUpdater.js.js" -import { InstallOptions } from "./BaseUpdater.js.js" -import { DOWNLOAD_PROGRESS, Logger } from "./types.js.js" -import { findFile } from "./providers/Provider.js.js" -import { LinuxUpdater } from "./LinuxUpdater.js.js" +import { AppAdapter } from "./AppAdapter.js" +import { DownloadUpdateOptions } from "./AppUpdater.js" +import { InstallOptions } from "./BaseUpdater.js" +import { DOWNLOAD_PROGRESS, Logger } from "./types.js" +import { findFile } from "./providers/Provider.js" +import { LinuxUpdater } from "./LinuxUpdater.js" export class PacmanUpdater extends LinuxUpdater { constructor(options?: AllPublishOptions | null, app?: AppAdapter) { diff --git a/packages/electron-updater/src/RpmUpdater.ts b/packages/electron-updater/src/RpmUpdater.ts index 9b17c5f648e..3df356a8a71 100644 --- a/packages/electron-updater/src/RpmUpdater.ts +++ b/packages/electron-updater/src/RpmUpdater.ts @@ -1,10 +1,10 @@ import { AllPublishOptions } from "builder-util-runtime" -import { AppAdapter } from "./AppAdapter.js.js" -import { DownloadUpdateOptions } from "./AppUpdater.js.js" -import { InstallOptions } from "./BaseUpdater.js.js" -import { DOWNLOAD_PROGRESS, Logger } from "./types.js.js" -import { findFile } from "./providers/Provider.js.js" -import { LinuxUpdater } from "./LinuxUpdater.js.js" +import { AppAdapter } from "./AppAdapter.js" +import { DownloadUpdateOptions } from "./AppUpdater.js" +import { InstallOptions } from "./BaseUpdater.js" +import { DOWNLOAD_PROGRESS, Logger } from "./types.js" +import { findFile } from "./providers/Provider.js" +import { LinuxUpdater } from "./LinuxUpdater.js" export class RpmUpdater extends LinuxUpdater { constructor(options?: AllPublishOptions | null, app?: AppAdapter) { diff --git a/packages/electron-updater/src/differentialDownloader/DataSplitter.ts b/packages/electron-updater/src/differentialDownloader/DataSplitter.ts index 905952768e2..84c38d94216 100644 --- a/packages/electron-updater/src/differentialDownloader/DataSplitter.ts +++ b/packages/electron-updater/src/differentialDownloader/DataSplitter.ts @@ -1,7 +1,7 @@ import { newError } from "builder-util-runtime" import { createReadStream } from "fs" import { Writable } from "stream" -import { Operation, OperationKind } from "./downloadPlanBuilder.js.js" +import { Operation, OperationKind } from "./downloadPlanBuilder.js" const DOUBLE_CRLF = Buffer.from("\r\n\r\n") diff --git a/packages/electron-updater/src/differentialDownloader/DifferentialDownloader.ts b/packages/electron-updater/src/differentialDownloader/DifferentialDownloader.ts index 7889fa24fb3..2365a97ac80 100644 --- a/packages/electron-updater/src/differentialDownloader/DifferentialDownloader.ts +++ b/packages/electron-updater/src/differentialDownloader/DifferentialDownloader.ts @@ -5,11 +5,11 @@ import { createWriteStream } from "fs" import { OutgoingHttpHeaders, RequestOptions } from "http" import { ProgressInfo, CancellationToken } from "builder-util-runtime" import { Logger } from "../types.js" -import { copyData } from "./DataSplitter.js.js" +import { copyData } from "./DataSplitter.js" import { URL } from "url" -import { computeOperations, Operation, OperationKind } from "./downloadPlanBuilder.js.js" -import { checkIsRangesSupported, executeTasksUsingMultipleRangeRequests } from "./multipleRangeDownloader.js.js" -import { ProgressDifferentialDownloadCallbackTransform, ProgressDifferentialDownloadInfo } from "./ProgressDifferentialDownloadCallbackTransform.js.js" +import { computeOperations, Operation, OperationKind } from "./downloadPlanBuilder.js" +import { checkIsRangesSupported, executeTasksUsingMultipleRangeRequests } from "./multipleRangeDownloader.js" +import { ProgressDifferentialDownloadCallbackTransform, ProgressDifferentialDownloadInfo } from "./ProgressDifferentialDownloadCallbackTransform.js" export interface DifferentialDownloaderOptions { readonly oldFile: string diff --git a/packages/electron-updater/src/differentialDownloader/FileWithEmbeddedBlockMapDifferentialDownloader.ts b/packages/electron-updater/src/differentialDownloader/FileWithEmbeddedBlockMapDifferentialDownloader.ts index c03ef51b16b..39bed50475a 100644 --- a/packages/electron-updater/src/differentialDownloader/FileWithEmbeddedBlockMapDifferentialDownloader.ts +++ b/packages/electron-updater/src/differentialDownloader/FileWithEmbeddedBlockMapDifferentialDownloader.ts @@ -1,6 +1,6 @@ import { BlockMap } from "builder-util-runtime/out/blockMapApi" import { close, fstat, open, read } from "fs-extra" -import { DifferentialDownloader } from "./DifferentialDownloader.js.js" +import { DifferentialDownloader } from "./DifferentialDownloader.js" import { inflateRawSync } from "zlib" export class FileWithEmbeddedBlockMapDifferentialDownloader extends DifferentialDownloader { diff --git a/packages/electron-updater/src/differentialDownloader/GenericDifferentialDownloader.ts b/packages/electron-updater/src/differentialDownloader/GenericDifferentialDownloader.ts index 03b43de19ac..a0501375cff 100644 --- a/packages/electron-updater/src/differentialDownloader/GenericDifferentialDownloader.ts +++ b/packages/electron-updater/src/differentialDownloader/GenericDifferentialDownloader.ts @@ -1,5 +1,5 @@ import { BlockMap } from "builder-util-runtime/out/blockMapApi" -import { DifferentialDownloader } from "./DifferentialDownloader.js.js" +import { DifferentialDownloader } from "./DifferentialDownloader.js" export class GenericDifferentialDownloader extends DifferentialDownloader { download(oldBlockMap: BlockMap, newBlockMap: BlockMap): Promise { diff --git a/packages/electron-updater/src/differentialDownloader/multipleRangeDownloader.ts b/packages/electron-updater/src/differentialDownloader/multipleRangeDownloader.ts index a8024aed462..650739b5891 100644 --- a/packages/electron-updater/src/differentialDownloader/multipleRangeDownloader.ts +++ b/packages/electron-updater/src/differentialDownloader/multipleRangeDownloader.ts @@ -1,9 +1,9 @@ import { createHttpError, safeGetHeader } from "builder-util-runtime" import { IncomingMessage } from "http" import { Writable } from "stream" -import { copyData, DataSplitter, PartListDataTask } from "./DataSplitter.js.js" -import { DifferentialDownloader } from "./DifferentialDownloader.js.js" -import { Operation, OperationKind } from "./downloadPlanBuilder.js.js" +import { copyData, DataSplitter, PartListDataTask } from "./DataSplitter.js" +import { DifferentialDownloader } from "./DifferentialDownloader.js" +import { Operation, OperationKind } from "./downloadPlanBuilder.js" export function executeTasksUsingMultipleRangeRequests( differentialDownloader: DifferentialDownloader, diff --git a/packages/electron-updater/src/main.ts b/packages/electron-updater/src/main.ts index bb1ca9ddfde..6a8d4ce9fb5 100644 --- a/packages/electron-updater/src/main.ts +++ b/packages/electron-updater/src/main.ts @@ -1,6 +1,6 @@ import { existsSync, readFileSync } from "fs-extra" import * as path from "path" -import { AppUpdater } from "./AppUpdater.js.js" +import { AppUpdater } from "./AppUpdater.js" import { UpdateInfo } from "builder-util-runtime" export { BaseUpdater } from "./BaseUpdater.js" diff --git a/packages/electron-updater/src/providerFactory.ts b/packages/electron-updater/src/providerFactory.ts index fc1ab575f5a..91f13e17b75 100644 --- a/packages/electron-updater/src/providerFactory.ts +++ b/packages/electron-updater/src/providerFactory.ts @@ -11,14 +11,14 @@ import { newError, PublishConfiguration, } from "builder-util-runtime" -import { AppUpdater } from "./AppUpdater.js.js" -import { BitbucketProvider } from "./providers/BitbucketProvider.js.js" -import { GenericProvider } from "./providers/GenericProvider.js.js" -import { GitHubProvider } from "./providers/GitHubProvider.js.js" -import { GitLabProvider } from "./providers/GitLabProvider.js.js" -import { KeygenProvider } from "./providers/KeygenProvider.js.js" -import { PrivateGitHubProvider } from "./providers/PrivateGitHubProvider.js.js" -import { Provider, ProviderRuntimeOptions } from "./providers/Provider.js.js" +import { AppUpdater } from "./AppUpdater.js" +import { BitbucketProvider } from "./providers/BitbucketProvider.js" +import { GenericProvider } from "./providers/GenericProvider.js" +import { GitHubProvider } from "./providers/GitHubProvider.js" +import { GitLabProvider } from "./providers/GitLabProvider.js" +import { KeygenProvider } from "./providers/KeygenProvider.js" +import { PrivateGitHubProvider } from "./providers/PrivateGitHubProvider.js" +import { Provider, ProviderRuntimeOptions } from "./providers/Provider.js" export function isUrlProbablySupportMultiRangeRequests(url: string): boolean { return !url.includes("s3.amazonaws.com") diff --git a/packages/electron-updater/src/providers/BitbucketProvider.ts b/packages/electron-updater/src/providers/BitbucketProvider.ts index 24da7a04546..d36e7d797de 100644 --- a/packages/electron-updater/src/providers/BitbucketProvider.ts +++ b/packages/electron-updater/src/providers/BitbucketProvider.ts @@ -2,7 +2,7 @@ import { CancellationToken, BitbucketOptions, newError, UpdateInfo } from "build import { AppUpdater } from "../AppUpdater.js" import { ResolvedUpdateFileInfo } from "../types.js" import { getChannelFilename, newBaseUrl, newUrlFromBase } from "../util.js" -import { parseUpdateInfo, Provider, ProviderRuntimeOptions, resolveFiles } from "./Provider.js.js" +import { parseUpdateInfo, Provider, ProviderRuntimeOptions, resolveFiles } from "./Provider.js" export class BitbucketProvider extends Provider { private readonly baseUrl: URL diff --git a/packages/electron-updater/src/providers/GenericProvider.ts b/packages/electron-updater/src/providers/GenericProvider.ts index f4a74b4dfa2..a1604b8ba55 100644 --- a/packages/electron-updater/src/providers/GenericProvider.ts +++ b/packages/electron-updater/src/providers/GenericProvider.ts @@ -2,7 +2,7 @@ import { GenericServerOptions, HttpError, newError, UpdateInfo } from "builder-u import { AppUpdater } from "../AppUpdater.js" import { ResolvedUpdateFileInfo } from "../types.js" import { getChannelFilename, newBaseUrl, newUrlFromBase } from "../util.js" -import { parseUpdateInfo, Provider, ProviderRuntimeOptions, resolveFiles } from "./Provider.js.js" +import { parseUpdateInfo, Provider, ProviderRuntimeOptions, resolveFiles } from "./Provider.js" export class GenericProvider extends Provider { private readonly baseUrl = newBaseUrl(this.configuration.url) diff --git a/packages/electron-updater/src/providers/GitHubProvider.ts b/packages/electron-updater/src/providers/GitHubProvider.ts index e8ba6b0c895..000a9d9c639 100644 --- a/packages/electron-updater/src/providers/GitHubProvider.ts +++ b/packages/electron-updater/src/providers/GitHubProvider.ts @@ -4,7 +4,7 @@ import { URL } from "url" import { AppUpdater } from "../AppUpdater.js" import { ResolvedUpdateFileInfo } from "../types.js" import { getChannelFilename, newBaseUrl, newUrlFromBase } from "../util.js" -import { parseUpdateInfo, Provider, ProviderRuntimeOptions, resolveFiles } from "./Provider.js.js" +import { parseUpdateInfo, Provider, ProviderRuntimeOptions, resolveFiles } from "./Provider.js" const hrefRegExp = /\/tag\/([^/]+)$/ diff --git a/packages/electron-updater/src/providers/GitLabProvider.ts b/packages/electron-updater/src/providers/GitLabProvider.ts index a7c831ea678..5f507930104 100644 --- a/packages/electron-updater/src/providers/GitLabProvider.ts +++ b/packages/electron-updater/src/providers/GitLabProvider.ts @@ -5,7 +5,7 @@ import * as escapeRegExp from "lodash.escaperegexp" import { AppUpdater } from "../AppUpdater.js" import { ResolvedUpdateFileInfo } from "../types.js" import { getChannelFilename, newBaseUrl, newUrlFromBase } from "../util.js" -import { getFileList, parseUpdateInfo, Provider, ProviderRuntimeOptions } from "./Provider.js.js" +import { getFileList, parseUpdateInfo, Provider, ProviderRuntimeOptions } from "./Provider.js" interface GitlabUpdateInfo extends UpdateInfo { tag: string diff --git a/packages/electron-updater/src/providers/KeygenProvider.ts b/packages/electron-updater/src/providers/KeygenProvider.ts index 6aeb8ed773c..5007598e9a8 100644 --- a/packages/electron-updater/src/providers/KeygenProvider.ts +++ b/packages/electron-updater/src/providers/KeygenProvider.ts @@ -2,7 +2,7 @@ import { CancellationToken, KeygenOptions, newError, UpdateInfo } from "builder- import { AppUpdater } from "../AppUpdater.js" import { ResolvedUpdateFileInfo } from "../types.js" import { getChannelFilename, newBaseUrl, newUrlFromBase } from "../util.js" -import { parseUpdateInfo, Provider, ProviderRuntimeOptions, resolveFiles } from "./Provider.js.js" +import { parseUpdateInfo, Provider, ProviderRuntimeOptions, resolveFiles } from "./Provider.js" export class KeygenProvider extends Provider { private readonly defaultHostname = "api.keygen.sh" diff --git a/packages/electron-updater/src/providers/PrivateGitHubProvider.ts b/packages/electron-updater/src/providers/PrivateGitHubProvider.ts index 5f922c2f9c7..1ffbd183b59 100644 --- a/packages/electron-updater/src/providers/PrivateGitHubProvider.ts +++ b/packages/electron-updater/src/providers/PrivateGitHubProvider.ts @@ -5,9 +5,9 @@ import * as path from "path" import { AppUpdater } from "../AppUpdater.js" import { URL } from "url" import { getChannelFilename, newUrlFromBase } from "../util.js" -import { BaseGitHubProvider } from "./GitHubProvider.js.js" +import { BaseGitHubProvider } from "./GitHubProvider.js" import { ResolvedUpdateFileInfo } from "../types.js" -import { getFileList, ProviderRuntimeOptions } from "./Provider.js.js" +import { getFileList, ProviderRuntimeOptions } from "./Provider.js" export interface PrivateGitHubUpdateInfo extends UpdateInfo { assets: Array diff --git a/packages/electron-updater/src/types.ts b/packages/electron-updater/src/types.ts index 237f101c97b..94a394c9827 100644 --- a/packages/electron-updater/src/types.ts +++ b/packages/electron-updater/src/types.ts @@ -1,7 +1,7 @@ import { CancellationToken, PackageFileInfo, ProgressInfo, UpdateFileInfo, UpdateInfo } from "builder-util-runtime" import { EventEmitter } from "events" import { URL } from "url" -import { LoginCallback } from "./electronHttpExecutor.js.js" +import { LoginCallback } from "./electronHttpExecutor.js" export { CancellationToken, PackageFileInfo, ProgressInfo, UpdateFileInfo, UpdateInfo } diff --git a/packages/electron-updater/src/windowsExecutableCodeSignatureVerifier.ts b/packages/electron-updater/src/windowsExecutableCodeSignatureVerifier.ts index 0f592d3f2d3..e7f23c8f612 100644 --- a/packages/electron-updater/src/windowsExecutableCodeSignatureVerifier.ts +++ b/packages/electron-updater/src/windowsExecutableCodeSignatureVerifier.ts @@ -1,7 +1,7 @@ import { parseDn } from "builder-util-runtime" import { execFile, execFileSync, ExecFileOptions } from "child_process" import * as os from "os" -import { Logger } from "./types.js.js" +import { Logger } from "./types.js" import * as path from "path" function preparePowerShellExec(command: string, timeout?: number) { diff --git a/test/src/filenameUtilTest.ts b/test/src/filenameUtilTest.ts index f9ba2726789..6b4c2b8209e 100644 --- a/test/src/filenameUtilTest.ts +++ b/test/src/filenameUtilTest.ts @@ -1,4 +1,4 @@ -import { getCompleteExtname } from "builder-util/out/filename" +import { getCompleteExtname } from "builder-util" // [inputFilename, expectedExtname] const tests = [ From c9512585235e5d3f9bee30c7dd36b716ce29980c Mon Sep 17 00:00:00 2001 From: Mike Maietta Date: Wed, 10 Dec 2025 14:03:25 -0800 Subject: [PATCH 05/61] tmp save --- packages/app-builder-lib/src/index.ts | 15 +++ .../nodeModulesCollector.ts | 90 +++++++++++++++++- .../npmNodeModulesCollector.ts | 91 ------------------- packages/app-builder-lib/src/vm/vm.ts | 4 +- packages/dmg-builder/src/dmg.ts | 3 +- packages/dmg-builder/src/dmgLicense.ts | 2 +- packages/dmg-builder/src/licenseButtons.ts | 2 +- packages/electron-builder/src/cli/cli.ts | 6 +- .../src/cli/create-self-signed-cert.ts | 2 +- .../src/cli/install-app-deps.ts | 17 ++-- 10 files changed, 121 insertions(+), 111 deletions(-) diff --git a/packages/app-builder-lib/src/index.ts b/packages/app-builder-lib/src/index.ts index 5d513af9683..7907db404c7 100644 --- a/packages/app-builder-lib/src/index.ts +++ b/packages/app-builder-lib/src/index.ts @@ -68,6 +68,21 @@ export { PlatformPackager } from "./platformPackager.js" export { PublishManager } from "./publish/PublishManager.js" export { WinPackager } from "./winPackager.js" export { findIdentity, isSignAllowed } from "./codeSign/macCodeSign.js" +export { getLicenseFiles, getLicenseAssets } from "./util/license.js" + +export { resolveFunction } from "./util/resolve.js" +export { executeAppBuilderAsJson } from "./util/appBuilder.js" +export { getElectronVersion } from "./electron/electronVersion.js" +export { loadEnv } from "./util/config/load.js" +export { nodeGypRebuild } from "./util/yarn.js" +export { getSignVendorPath } from "./codeSign/windowsSignToolManager.js" + +export { computeDefaultAppDirectory, getConfig } from "./util/config/config.js" +export { orNullIfFileNotExist } from "./util/config/load.js" +export { createLazyProductionDeps } from "./util/packageDependencies.js" +export { installOrRebuild } from "./util/yarn.js" +export { PACKAGE_VERSION } from "./version.js" +export { determinePackageManagerEnv } from "./node-module-collector/index.js" const expectedOptions = new Set(["publish", "targets", "mac", "win", "linux", "projectDir", "platformPackagerFactory", "config", "effectiveOptionComputed", "prepackaged"]) diff --git a/packages/app-builder-lib/src/node-module-collector/nodeModulesCollector.ts b/packages/app-builder-lib/src/node-module-collector/nodeModulesCollector.ts index 559dc10e1f9..2887860e422 100644 --- a/packages/app-builder-lib/src/node-module-collector/nodeModulesCollector.ts +++ b/packages/app-builder-lib/src/node-module-collector/nodeModulesCollector.ts @@ -9,7 +9,7 @@ import * as semver from "semver" import { hoist, type HoisterResult, type HoisterTree } from "./hoist.js" import { ModuleCache } from "./moduleCache.js" import { getPackageManagerCommand, PM } from "./packageManager.js" -import type { Dependency, DependencyGraph, NodeModuleInfo } from "./types.js" +import type { Dependency, DependencyGraph, NodeModuleInfo, PackageJson } from "./types.js" type Result = { packageDir: string; version: string } | null export abstract class NodeModulesCollector, OptionalDepType> { @@ -119,7 +119,11 @@ export abstract class NodeModulesCollector { + log.info({ pm: this.installOptions.manager, error: error.message }, "unable to process dependency tree, falling back to using manual node_modules traversal") + // node_modules linker fallback. (Slower due to system ops, so we only use it as a fallback) [such as when corepack env will not allow npm CLI to extract tree] + return this.buildNodeModulesTreeManually(this.rootDir) + }) } protected cacheKey(pkg: ProdDepType): string { @@ -256,6 +260,7 @@ export abstract class NodeModulesCollector { + // Track visited packages by their resolved path to prevent infinite loops + const visited = new Set() + + /** + * Recursively builds dependency tree starting from a package directory. + */ + const buildFromPackage = async (packageDir: string): Promise => { + const pkgPath = path.join(packageDir, "package.json") + + log.debug({ pkgPath }, "building dependency node from package.json") + + if (!(await this.cache.exists[pkgPath])) { + throw new Error(`package.json not found at ${pkgPath}`) + } + + const pkg: PackageJson = await this.cache.packageJson[pkgPath] + const resolvedPackageDir = await this.cache.realPath[packageDir] + + // Use resolved path as the unique identifier to prevent circular dependencies + if (visited.has(resolvedPackageDir)) { + log.debug({ name: pkg.name, version: pkg.version, path: resolvedPackageDir }, "skipping already visited package") + return { + name: pkg.name, + version: pkg.version, + path: resolvedPackageDir, + } + } + + visited.add(resolvedPackageDir) + + const prodDeps: Record = {} + const allProdDepNames = { + ...pkg.dependencies, + ...pkg.optionalDependencies, + } + + // Process all production and optional dependencies + for (const [depName, depVersion] of Object.entries(allProdDepNames)) { + try { + const depPath = await this.locatePackageVersion(resolvedPackageDir, depName, depVersion) + + if (!depPath || depPath.packageDir.length === 0) { + log.warn({ package: pkg.name, dependency: depName, version: depVersion }, "dependency not found, skipping") + continue + } + + const resolvedDepPath = await this.cache.realPath[depPath.packageDir] + const logFields = { package: pkg.name, dependency: depName, resolvedPath: resolvedDepPath } + + // Skip if this dependency resolves to the base directory or any parent we're already processing + if (resolvedDepPath === resolvedPackageDir || resolvedDepPath === (await this.cache.realPath[baseDir])) { + log.debug(logFields, "skipping self-referential dependency") + continue + } + + log.debug(logFields, "processing production dependency") + + // Recursively build the dependency tree for this dependency + prodDeps[depName] = await buildFromPackage(resolvedDepPath) + } catch (error: any) { + log.warn({ package: pkg.name, dependency: depName, error: error.message }, "failed to process dependency, skipping") + } + } + + return { + name: pkg.name, + version: pkg.version, + path: resolvedPackageDir, + dependencies: Object.keys(prodDeps).length > 0 ? prodDeps : undefined, + optionalDependencies: pkg.optionalDependencies, + } + } + + return buildFromPackage(baseDir) + } + protected async locatePackageVersion(parentDir: string, pkgName: string, requiredRange?: string): Promise { // 1) check direct parent node_modules/pkgName first const direct = path.join(path.resolve(parentDir), "node_modules", pkgName, "package.json") diff --git a/packages/app-builder-lib/src/node-module-collector/npmNodeModulesCollector.ts b/packages/app-builder-lib/src/node-module-collector/npmNodeModulesCollector.ts index af58725edff..7446a18d4ad 100644 --- a/packages/app-builder-lib/src/node-module-collector/npmNodeModulesCollector.ts +++ b/packages/app-builder-lib/src/node-module-collector/npmNodeModulesCollector.ts @@ -14,16 +14,6 @@ export class NpmNodeModulesCollector extends NodeModulesCollector { - try { - return await super.getDependenciesTree(pm) - } catch (error: any) { - log.info({ pm: this.installOptions.manager, parser: PM.NPM, error: error.message }, "unable to process dependency tree, falling back to using manual node_modules traversal") - } - // node_modules linker fallback. (Slower due to system ops, so we only use it as a fallback) [such as when corepack env will not allow npm CLI to extract tree] - return this.buildNodeModulesTreeManually(this.rootDir) - } - protected async collectAllDependencies(tree: NpmDependency) { for (const [, value] of Object.entries(tree.dependencies || {})) { if (this.isDuplicatedNpmDependency(value)) { @@ -72,87 +62,6 @@ export class NpmNodeModulesCollector extends NodeModulesCollector { - // Track visited packages by their resolved path to prevent infinite loops - const visited = new Set() - - /** - * Recursively builds dependency tree starting from a package directory. - */ - const buildFromPackage = async (packageDir: string): Promise => { - const pkgPath = path.join(packageDir, "package.json") - - log.debug({ pkgPath }, "building dependency node from package.json") - - if (!(await this.cache.exists[pkgPath])) { - throw new Error(`package.json not found at ${pkgPath}`) - } - - const pkg: PackageJson = await this.cache.packageJson[pkgPath] - const resolvedPackageDir = await this.cache.realPath[packageDir] - - // Use resolved path as the unique identifier to prevent circular dependencies - if (visited.has(resolvedPackageDir)) { - log.debug({ name: pkg.name, version: pkg.version, path: resolvedPackageDir }, "skipping already visited package") - return { - name: pkg.name, - version: pkg.version, - path: resolvedPackageDir, - } - } - - visited.add(resolvedPackageDir) - - const prodDeps: Record = {} - const allProdDepNames = { - ...pkg.dependencies, - ...pkg.optionalDependencies, - } - - // Process all production and optional dependencies - for (const [depName, depVersion] of Object.entries(allProdDepNames)) { - try { - const depPath = await this.locatePackageVersion(resolvedPackageDir, depName, depVersion) - - if (!depPath || depPath.packageDir.length === 0) { - log.warn({ package: pkg.name, dependency: depName, version: depVersion }, "dependency not found, skipping") - continue - } - - const resolvedDepPath = await this.cache.realPath[depPath.packageDir] - const logFields = { package: pkg.name, dependency: depName, resolvedPath: resolvedDepPath } - - // Skip if this dependency resolves to the base directory or any parent we're already processing - if (resolvedDepPath === resolvedPackageDir || resolvedDepPath === (await this.cache.realPath[baseDir])) { - log.debug(logFields, "skipping self-referential dependency") - continue - } - - log.debug(logFields, "processing production dependency") - - // Recursively build the dependency tree for this dependency - prodDeps[depName] = await buildFromPackage(resolvedDepPath) - } catch (error: any) { - log.warn({ package: pkg.name, dependency: depName, error: error.message }, "failed to process dependency, skipping") - } - } - - return { - name: pkg.name, - version: pkg.version, - path: resolvedPackageDir, - dependencies: Object.keys(prodDeps).length > 0 ? prodDeps : undefined, - optionalDependencies: pkg.optionalDependencies, - } - } - - return buildFromPackage(baseDir) - } - protected async parseDependenciesTree(jsonBlob: string): Promise { return Promise.resolve(JSON.parse(jsonBlob)) } diff --git a/packages/app-builder-lib/src/vm/vm.ts b/packages/app-builder-lib/src/vm/vm.ts index aa03a6baab2..0a8c3bc3e28 100644 --- a/packages/app-builder-lib/src/vm/vm.ts +++ b/packages/app-builder-lib/src/vm/vm.ts @@ -34,13 +34,13 @@ export class VmManager { } export async function getWindowsVm(debugLogger: DebugLogger): Promise { - const parallelsVmModule = await import("./ParallelsVm") + const parallelsVmModule = await import("./ParallelsVm.js") let vmList: ParallelsVm[] = [] try { vmList = (await parallelsVmModule.parseVmList(debugLogger)).filter(it => ["win-10", "win-11"].includes(it.os)) } catch (_error) { if ((await isPwshAvailable.value) && (await isWineAvailable.value)) { - const vmModule = await import("./PwshVm") + const vmModule = await import("./PwshVm.js") return new vmModule.PwshVmManager() } } diff --git a/packages/dmg-builder/src/dmg.ts b/packages/dmg-builder/src/dmg.ts index 371c9829d2b..541fb3754ee 100644 --- a/packages/dmg-builder/src/dmg.ts +++ b/packages/dmg-builder/src/dmg.ts @@ -43,7 +43,7 @@ export interface DmgBuildConfig { }> } export class DmgTarget extends Target { - readonly options: DmgOptions = this.packager.config.dmg || Object.create(null) + readonly options: DmgOptions isAsyncSupported = false @@ -52,6 +52,7 @@ export class DmgTarget extends Target { readonly outDir: string ) { super("dmg") + this.options = this.packager.config.dmg || Object.create(null) } async build(appPath: string, arch: Arch) { diff --git a/packages/dmg-builder/src/dmgLicense.ts b/packages/dmg-builder/src/dmgLicense.ts index de6b5f7b0be..104a00289f9 100644 --- a/packages/dmg-builder/src/dmgLicense.ts +++ b/packages/dmg-builder/src/dmgLicense.ts @@ -1,10 +1,10 @@ import { PlatformPackager } from "app-builder-lib" -import { getLicenseFiles } from "app-builder-lib/out/util/license" import { log } from "builder-util" import { dmgLicenseFromJSON } from "dmg-license" import { readFile, readJson } from "fs-extra" import { load } from "js-yaml" import { getLicenseButtonsFile } from "./licenseButtons.js" +import { getLicenseFiles } from "app-builder-lib" // License Specifications // https://github.com/argv-minus-one/dmg-license/blob/HEAD/docs/License%20Specifications.md diff --git a/packages/dmg-builder/src/licenseButtons.ts b/packages/dmg-builder/src/licenseButtons.ts index 890de834dc4..029bbb85369 100644 --- a/packages/dmg-builder/src/licenseButtons.ts +++ b/packages/dmg-builder/src/licenseButtons.ts @@ -1,5 +1,5 @@ import { PlatformPackager } from "app-builder-lib" -import { getLicenseAssets } from "app-builder-lib/out/util/license" +import { getLicenseAssets } from "app-builder-lib" import { log } from "builder-util" import { readFile } from "fs-extra" import * as iconv from "iconv-lite" diff --git a/packages/electron-builder/src/cli/cli.ts b/packages/electron-builder/src/cli/cli.ts index 797ae0f7bf4..ef55c4e2b8a 100644 --- a/packages/electron-builder/src/cli/cli.ts +++ b/packages/electron-builder/src/cli/cli.ts @@ -1,8 +1,8 @@ #! /usr/bin/env node -import { getElectronVersion } from "app-builder-lib/out/electron/electronVersion" -import { loadEnv } from "app-builder-lib/out/util/config/load" -import { nodeGypRebuild } from "app-builder-lib/out/util/yarn" +import { getElectronVersion } from "app-builder-lib" +import { loadEnv } from "app-builder-lib" +import { nodeGypRebuild } from "app-builder-lib" import { ExecError, InvalidConfigurationError, log } from "builder-util" import * as chalk from "chalk" import { readJson } from "fs-extra" diff --git a/packages/electron-builder/src/cli/create-self-signed-cert.ts b/packages/electron-builder/src/cli/create-self-signed-cert.ts index 8e9b629bffb..a6edf45639c 100644 --- a/packages/electron-builder/src/cli/create-self-signed-cert.ts +++ b/packages/electron-builder/src/cli/create-self-signed-cert.ts @@ -1,4 +1,4 @@ -import { getSignVendorPath } from "app-builder-lib/out/codeSign/windowsSignToolManager" +import { getSignVendorPath } from "app-builder-lib" import { exec, log, spawn, TmpDir, unlinkIfExists } from "builder-util" import { sanitizeFileName } from "builder-util" import * as chalk from "chalk" diff --git a/packages/electron-builder/src/cli/install-app-deps.ts b/packages/electron-builder/src/cli/install-app-deps.ts index b18f0c7aa5c..dbe86e23970 100644 --- a/packages/electron-builder/src/cli/install-app-deps.ts +++ b/packages/electron-builder/src/cli/install-app-deps.ts @@ -1,13 +1,12 @@ #! /usr/bin/env node - -import { getElectronVersion } from "app-builder-lib/out/electron/electronVersion" -import { computeDefaultAppDirectory, getConfig } from "app-builder-lib/out/util/config/config" -import { orNullIfFileNotExist } from "app-builder-lib/out/util/config/load" -import { createLazyProductionDeps } from "app-builder-lib/out/util/packageDependencies" -import { installOrRebuild } from "app-builder-lib/out/util/yarn" -import { PACKAGE_VERSION } from "app-builder-lib/out/version" -import { determinePackageManagerEnv } from "app-builder-lib/out/node-module-collector" -import { getArchCliNames, log, printErrorAndExit } from "builder-util" +import { getElectronVersion } from "app-builder-lib" +import { determinePackageManagerEnv } from "app-builder-lib/src/node-module-collector/index.js" +import { computeDefaultAppDirectory } from "app-builder-lib/src/util/config/config.js" +import { getConfig } from "app-builder-lib/src/util/config/config.js" +import { createLazyProductionDeps } from "app-builder-lib/src/util/packageDependencies.js" +import { installOrRebuild } from "app-builder-lib/src/util/yarn.js" +import { PACKAGE_VERSION } from "app-builder-lib/src/version.js" +import { getArchCliNames, log, orNullIfFileNotExist, printErrorAndExit } from "builder-util" import { readJson } from "fs-extra" import { Lazy } from "lazy-val" import * as path from "path" From 850646b29a49be6dd834957c05565f4cd1c4a797 Mon Sep 17 00:00:00 2001 From: Mike Maietta Date: Wed, 10 Dec 2025 14:18:27 -0800 Subject: [PATCH 06/61] move the manual node module traversal to the root abstract class. Add `env: { COREPACK_ENABLE_STRICT: "0", ...process.env },` to allow `npm list` to work across environments. extract fallback node collector (Traversal) to separate class due to differing parsing logic from NPM collector --- .changeset/some-taxis-double.md | 5 + .../bunNodeModulesCollector.ts | 14 +- .../src/node-module-collector/index.ts | 4 + .../nodeModulesCollector.ts | 244 ++++--- .../npmNodeModulesCollector.ts | 102 +-- .../node-module-collector/packageManager.ts | 2 + .../traversalNodeModulesCollector.ts | 122 ++++ .../src/node-module-collector/types.ts | 5 +- .../yarnBerryNodeModulesCollector.ts | 4 +- .../yarnNodeModulesCollector.ts | 16 - .../app-builder-lib/src/util/appFileCopier.ts | 32 +- test/fixtures/build-hook.cjs | 2 +- test/fixtures/build-hook.mjs | 2 +- test/snapshots/HoistedNodeModuleTest.js.snap | 650 +++++++++--------- test/src/concurrentBuildsTest.ts | 2 +- test/src/helpers/packTester.ts | 7 +- test/src/packageManagerTest.ts | 2 +- vite.config.ts | 6 +- 18 files changed, 647 insertions(+), 574 deletions(-) create mode 100644 .changeset/some-taxis-double.md create mode 100644 packages/app-builder-lib/src/node-module-collector/traversalNodeModulesCollector.ts diff --git a/.changeset/some-taxis-double.md b/.changeset/some-taxis-double.md new file mode 100644 index 00000000000..c167228b827 --- /dev/null +++ b/.changeset/some-taxis-double.md @@ -0,0 +1,5 @@ +--- +"app-builder-lib": patch +--- + +chore: move the manual node module traversal to the separate class. Add `env: { COREPACK_ENABLE_STRICT: "0", ...process.env },` to allow `npm list` to work across environments. diff --git a/packages/app-builder-lib/src/node-module-collector/bunNodeModulesCollector.ts b/packages/app-builder-lib/src/node-module-collector/bunNodeModulesCollector.ts index 412d8f35599..2817ae10a54 100644 --- a/packages/app-builder-lib/src/node-module-collector/bunNodeModulesCollector.ts +++ b/packages/app-builder-lib/src/node-module-collector/bunNodeModulesCollector.ts @@ -1,17 +1,13 @@ import { log } from "builder-util" -import { NpmNodeModulesCollector } from "./npmNodeModulesCollector" import { PM } from "./packageManager" import { NpmDependency } from "./types" +import { TraversalNodeModulesCollector } from "./traversalNodeModulesCollector" -export class BunNodeModulesCollector extends NpmNodeModulesCollector { +export class BunNodeModulesCollector extends TraversalNodeModulesCollector { public readonly installOptions = { manager: PM.BUN, lockfile: "bun.lock" } - protected async getDependenciesTree(_pm: PM): Promise { - log.info(null, "bun does not support any CLI for dependency tree extraction, falling back to NPM node module collector") - return super.getDependenciesTree(PM.NPM) - } - - protected isProdDependency(packageName: string, tree: NpmDependency): boolean { - return tree.dependencies?.[packageName] != null || tree.optionalDependencies?.[packageName] != null + protected async getDependenciesTree(pm: PM): Promise { + log.info(null, "note: bun does not support any CLI for dependency tree extraction, utilizing manual traversal of node_modules") + return super.getDependenciesTree(pm) } } diff --git a/packages/app-builder-lib/src/node-module-collector/index.ts b/packages/app-builder-lib/src/node-module-collector/index.ts index 926a3b5e08e..aa9d01a5427 100644 --- a/packages/app-builder-lib/src/node-module-collector/index.ts +++ b/packages/app-builder-lib/src/node-module-collector/index.ts @@ -11,6 +11,7 @@ import { Lazy } from "lazy-val" import { spawn, log, exists } from "builder-util" import * as fs from "fs-extra" import * as path from "path" +import { TraversalNodeModulesCollector } from "./traversalNodeModulesCollector" export { getPackageManagerCommand, PM } @@ -26,6 +27,9 @@ export function getCollectorByPackageManager(pm: PM, rootDir: string, tempDirMan return new BunNodeModulesCollector(rootDir, tempDirManager) case PM.NPM: return new NpmNodeModulesCollector(rootDir, tempDirManager) + // should never access this case (as it's internally a fallback), but TS needs a default and we need to satisfy it + case PM.TRAVERSAL: + return new TraversalNodeModulesCollector(rootDir, tempDirManager) } } diff --git a/packages/app-builder-lib/src/node-module-collector/nodeModulesCollector.ts b/packages/app-builder-lib/src/node-module-collector/nodeModulesCollector.ts index 30265052928..aeacd287613 100644 --- a/packages/app-builder-lib/src/node-module-collector/nodeModulesCollector.ts +++ b/packages/app-builder-lib/src/node-module-collector/nodeModulesCollector.ts @@ -1,22 +1,22 @@ import { log, retry, TmpDir } from "builder-util" import { CancellationToken } from "builder-util-runtime" import * as childProcess from "child_process" -import * as fs from "fs-extra" import { createWriteStream } from "fs-extra" import { Lazy } from "lazy-val" +import { hoist, type HoisterResult, type HoisterTree } from "./hoist.js" +import { ModuleCache } from "./moduleCache.js" +import { getPackageManagerCommand, PM } from "./packageManager.js" +import type { Dependency, DependencyGraph, NodeModuleInfo } from "./types.js" import * as path from "path" import * as semver from "semver" -import { hoist, type HoisterResult, type HoisterTree } from "./hoist" -import { ModuleCache } from "./moduleCache" -import { getPackageManagerCommand, PM } from "./packageManager" -import type { Dependency, DependencyGraph, NodeModuleInfo } from "./types" -type Result = { packageDir: string; version: string } | null +import * as fs from "fs-extra" export abstract class NodeModulesCollector, OptionalDepType> { private readonly nodeModules: NodeModuleInfo[] = [] protected readonly allDependencies: Map = new Map() protected readonly productionGraph: DependencyGraph = {} protected readonly cache: ModuleCache = new ModuleCache() + // private readonly manualNodeModulesCollector = new TraversalNodeModulesCollector(this.rootDir, this.tempDirManager) protected isHoisted = new Lazy(async () => { const { manager } = this.installOptions @@ -39,29 +39,16 @@ export abstract class NodeModulesCollector { + public async getNodeModules({ packageName }: { cancellationToken: CancellationToken; packageName: string }): Promise { const tree: ProdDepType = await this.getDependenciesTree(this.installOptions.manager) - - if (cancellationToken.cancelled) { - throw new Error("getNodeModules cancelled after fetching dependency tree") - } - await this.collectAllDependencies(tree, packageName) - const realTree: ProdDepType = await this.getTreeFromWorkspaces(tree, packageName) await this.extractProductionDependencyGraph(realTree, packageName) - - if (cancellationToken.cancelled) { - throw new Error("getNodeModules cancelled after building production graph") - } - const hoisterResult: HoisterResult = hoist(this.transformToHoisterTree(this.productionGraph, packageName), { check: log.isDebugEnabled, }) - await this._getNodeModules(hoisterResult.dependencies, this.nodeModules) log.debug({ packageName, depCount: this.nodeModules.length }, "node modules collection complete") - return this.nodeModules } @@ -72,9 +59,33 @@ export abstract class NodeModulesCollector - protected abstract extractProductionDependencyGraph(tree: Dependency, dependencyId: string): Promise protected abstract collectAllDependencies(tree: Dependency, appPackageName: string): Promise + protected async extractProductionDependencyGraph(tree: ProdDepType, dependencyId: string): Promise { + if (this.productionGraph[dependencyId]) { + return + } + // Initialize with empty dependencies array first to mark this dependency as "in progress" + // After initialization, if there are libraries with the same name+version later, they will not be searched recursively again + // This will prevents infinite loops when circular dependencies are encountered. + this.productionGraph[dependencyId] = { dependencies: [] } + + const resolvedDeps = tree.dependencies + const collectedDependencies: string[] = [] + if (resolvedDeps && Object.keys(resolvedDeps).length > 0) { + for (const packageName in resolvedDeps) { + if (!this.isProdDependency(packageName, tree)) { + continue + } + const dependency = resolvedDeps[packageName] + const childDependencyId = this.packageVersionString(dependency) + await this.extractProductionDependencyGraph(dependency, childDependencyId) + collectedDependencies.push(childDependencyId) + } + } + this.productionGraph[dependencyId] = { dependencies: collectedDependencies } + } + protected async getDependenciesTree(pm: PM): Promise { const command = getPackageManagerCommand(pm) const args = this.getArgs() @@ -122,29 +133,6 @@ export abstract class NodeModulesCollector { if (!(tree.workspaces && tree.dependencies)) { return tree @@ -221,70 +209,39 @@ export abstract class NodeModulesCollector a.name.localeCompare(b.name)) } - async asyncExec(command: string, args: string[], cwd: string = this.rootDir): Promise<{ stdout: string | undefined; stderr: string | undefined }> { - const file = await this.tempDirManager.getTempFile({ prefix: "exec-", suffix: ".txt" }) - try { - await this.streamCollectorCommandToFile(command, args, cwd, file) - const result = await fs.readFile(file, { encoding: "utf8" }) - return { stdout: result?.trim(), stderr: undefined } - } catch (error: any) { - log.debug({ error: error.message }, "failed to execute command") - return { stdout: undefined, stderr: error.message } - } + protected isProdDependency(packageName: string, tree: ProdDepType): boolean { + return tree.dependencies?.[packageName] != null || tree.optionalDependencies?.[packageName] != null } - async streamCollectorCommandToFile(command: string, args: string[], cwd: string, tempOutputFile: string) { - const execName = path.basename(command, path.extname(command)) - const isWindowsScriptFile = process.platform === "win32" && path.extname(command).toLowerCase() === ".cmd" - if (isWindowsScriptFile) { - // If the command is a Windows script file (.cmd), we need to wrap it in a .bat file to ensure it runs correctly with cmd.exe - // This is necessary because .cmd files are not directly executable in the same way as .bat files. - // We create a temporary .bat file that calls the .cmd file with the provided arguments. The .bat file will be executed by cmd.exe. - // Note: This is a workaround for Windows command execution quirks for specifically when `shell: false` - const tempBatFile = await this.tempDirManager.getTempFile({ - prefix: execName, - suffix: ".bat", - }) - const batScript = `@echo off\r\n"${command}" %*\r\n` // <-- CRLF required for .bat - await fs.writeFile(tempBatFile, batScript, { encoding: "utf8" }) - command = "cmd.exe" - args = ["/c", tempBatFile, ...args] - } - - await new Promise((resolve, reject) => { - const outStream = createWriteStream(tempOutputFile) - - const child = childProcess.spawn(command, args, { - cwd, - shell: false, // required to prevent console logs polution from shell profile loading when `true` - }) + // ----- PROTECTED HELPERS FOR ALL COLLECTORS ----- + protected cacheKey(pkg: ProdDepType): string { + const rel = path.relative(this.rootDir, pkg.path) + return `${pkg.name}::${pkg.version}::${rel ?? "."}` + } - let stderr = "" - child.stdout.pipe(outStream) - child.stderr.on("data", chunk => { - stderr += chunk.toString() - }) - child.on("error", err => { - reject(new Error(`Node module collector spawn failed: ${err.message}`)) - }) + protected packageVersionString(pkg: Pick): string { + return `${pkg.name}@${pkg.version}` + } - child.on("close", code => { - outStream.close() - // https://github.com/npm/npm/issues/17624 - const shouldIgnore = code === 1 && "npm" === execName.toLowerCase() && args.includes("list") - if (shouldIgnore) { - log.debug(null, "`npm list` returned non-zero exit code, but it MIGHT be expected (https://github.com/npm/npm/issues/17624). Check stderr for details.") - } - if (stderr.length > 0) { - log.debug({ stderr }, "note: there was node module collector output on stderr") - } - const shouldResolve = code === 0 || shouldIgnore - return shouldResolve ? resolve() : reject(new Error(`Node module collector process exited with code ${code}:\n${stderr}`)) - }) - }) + /** + * Parse a dependency identifier like "@scope/pkg@1.2.3" or "pkg@1.2.3" + */ + protected parseNameVersion(identifier: string): { name: string; version: string } { + const lastAt = identifier.lastIndexOf("@") + if (lastAt <= 0) { + // fallback for scoped packages or malformed strings + return { name: identifier, version: "unknown" } + } + const name = identifier.slice(0, lastAt) + const version = identifier.slice(lastAt + 1) + return { name, version } } - protected async locatePackageVersion(parentDir: string, pkgName: string, requiredRange?: string): Promise { + // ---------------------------------------------------------------- + // ----- PROTECTED HELPERS FOR MANUAL NODE_MODULES TRAVERSAL ------ + // ---------------------------------------------------------------- + + protected async locatePackageVersion(parentDir: string, pkgName: string, requiredRange?: string): Promise<{ packageDir: string; version: string } | null> { // 1) check direct parent node_modules/pkgName first const direct = path.join(path.resolve(parentDir), "node_modules", pkgName, "package.json") if (await this.cache.exists[direct]) { @@ -340,7 +297,7 @@ export abstract class NodeModulesCollector { + private async upwardSearch(parentDir: string, pkgName: string, requiredRange?: string): Promise<{ packageDir: string; version: string } | null> { let current = path.resolve(parentDir) const root = path.parse(current).root while (true) { @@ -368,7 +325,13 @@ export abstract class NodeModulesCollector { + private async downwardSearch( + parentDir: string, + pkgName: string, + requiredRange?: string, + maxExplored = 2000, + maxDepth = 6 + ): Promise<{ packageDir: string; version: string } | null> { const start = path.join(path.resolve(parentDir), "node_modules") if (!(await this.cache.exists[start]) || !(await this.cache.lstat[start]).isDirectory()) { return null @@ -465,4 +428,77 @@ export abstract class NodeModulesCollector { + const file = await this.tempDirManager.getTempFile({ prefix: "exec-", suffix: ".txt" }) + try { + await this.streamCollectorCommandToFile(command, args, cwd, file) + const result = await fs.readFile(file, { encoding: "utf8" }) + return { stdout: result?.trim(), stderr: undefined } + } catch (error: any) { + log.debug({ command, args, error: error.message }, "failed to execute command") + return { stdout: undefined, stderr: error.message } + } + } + + async streamCollectorCommandToFile(command: string, args: string[], cwd: string, tempOutputFile: string) { + const execName = path.basename(command, path.extname(command)) + const isWindowsScriptFile = process.platform === "win32" && path.extname(command).toLowerCase() === ".cmd" + if (isWindowsScriptFile) { + // If the command is a Windows script file (.cmd), we need to wrap it in a .bat file to ensure it runs correctly with cmd.exe + // This is necessary because .cmd files are not directly executable in the same way as .bat files. + // We create a temporary .bat file that calls the .cmd file with the provided arguments. The .bat file will be executed by cmd.exe. + // Note: This is a workaround for Windows command execution quirks for specifically when `shell: false` + const tempBatFile = await this.tempDirManager.getTempFile({ + prefix: execName, + suffix: ".bat", + }) + const batScript = `@echo off\r\n"${command}" %*\r\n` // <-- CRLF required for .bat + await fs.writeFile(tempBatFile, batScript, { encoding: "utf8" }) + command = "cmd.exe" + args = ["/c", tempBatFile, ...args] + } + + await new Promise((resolve, reject) => { + const outStream = createWriteStream(tempOutputFile) + + const child = childProcess.spawn(command, args, { + cwd, + env: { COREPACK_ENABLE_STRICT: "0", ...process.env }, + shell: false, // required to prevent console logs polution from shell profile loading when `true` + }) + + let stderr = "" + child.stdout.pipe(outStream) + child.stderr.on("data", chunk => { + stderr += chunk.toString() + }) + child.on("error", err => { + reject(new Error(`Node module collector spawn failed: ${err.message}`)) + }) + + child.on("close", code => { + outStream.close() + // https://github.com/npm/npm/issues/17624 + const shouldIgnore = code === 1 && "npm" === execName.toLowerCase() && args.includes("list") + if (shouldIgnore) { + log.debug(null, "`npm list` returned non-zero exit code, but it MIGHT be expected (https://github.com/npm/npm/issues/17624). Check stderr for details.") + } + if (stderr.length > 0) { + log.debug({ stderr }, "note: there was node module collector output on stderr") + } + const shouldResolve = code === 0 || shouldIgnore + return shouldResolve ? resolve() : reject(new Error(`Node module collector process exited with code ${code}:\n${stderr}`)) + }) + // this.cancellationToken.onCancel(() => { + // outStream.close() + // child.kill("SIGINT") + // reject(new Error("Node module collector process was cancelled")) + // }) + }) + } } diff --git a/packages/app-builder-lib/src/node-module-collector/npmNodeModulesCollector.ts b/packages/app-builder-lib/src/node-module-collector/npmNodeModulesCollector.ts index 1d646740b28..777127abd06 100644 --- a/packages/app-builder-lib/src/node-module-collector/npmNodeModulesCollector.ts +++ b/packages/app-builder-lib/src/node-module-collector/npmNodeModulesCollector.ts @@ -1,8 +1,6 @@ -import { log } from "builder-util" -import * as path from "path" -import { NodeModulesCollector } from "./nodeModulesCollector" -import { PM } from "./packageManager" -import { NpmDependency, PackageJson } from "./types" +import { NodeModulesCollector } from "./nodeModulesCollector.js" +import { PM } from "./packageManager.js" +import { NpmDependency } from "./types.js" export class NpmNodeModulesCollector extends NodeModulesCollector { public readonly installOptions = { @@ -14,16 +12,6 @@ export class NpmNodeModulesCollector extends NodeModulesCollector { - try { - return await super.getDependenciesTree(pm) - } catch (error: any) { - log.info({ pm: this.installOptions.manager, parser: PM.NPM, error: error.message }, "unable to process dependency tree, falling back to using manual node_modules traversal") - } - // node_modules linker fallback. (Slower due to system ops, so we only use it as a fallback) [such as when corepack env will not allow npm CLI to extract tree] - return this.buildNodeModulesTreeManually(this.rootDir) - } - protected async collectAllDependencies(tree: NpmDependency) { for (const [, value] of Object.entries(tree.dependencies || {})) { if (this.isDuplicatedNpmDependency(value)) { @@ -69,89 +57,9 @@ export class NpmNodeModulesCollector extends NodeModulesCollector { - // Track visited packages by their resolved path to prevent infinite loops - const visited = new Set() - - /** - * Recursively builds dependency tree starting from a package directory. - */ - const buildFromPackage = async (packageDir: string): Promise => { - const pkgPath = path.join(packageDir, "package.json") - - log.debug({ pkgPath }, "building dependency node from package.json") - - if (!(await this.cache.exists[pkgPath])) { - throw new Error(`package.json not found at ${pkgPath}`) - } - - const pkg: PackageJson = await this.cache.packageJson[pkgPath] - const resolvedPackageDir = await this.cache.realPath[packageDir] - - // Use resolved path as the unique identifier to prevent circular dependencies - if (visited.has(resolvedPackageDir)) { - log.debug({ name: pkg.name, version: pkg.version, path: resolvedPackageDir }, "skipping already visited package") - return { - name: pkg.name, - version: pkg.version, - path: resolvedPackageDir, - } - } - - visited.add(resolvedPackageDir) - - const prodDeps: Record = {} - const allProdDepNames = { - ...pkg.dependencies, - ...pkg.optionalDependencies, - } - - // Process all production and optional dependencies - for (const [depName, depVersion] of Object.entries(allProdDepNames)) { - try { - const depPath = await this.locatePackageVersion(resolvedPackageDir, depName, depVersion) - - if (!depPath || depPath.packageDir.length === 0) { - log.warn({ package: pkg.name, dependency: depName, version: depVersion }, "dependency not found, skipping") - continue - } - - const resolvedDepPath = await this.cache.realPath[depPath.packageDir] - const logFields = { package: pkg.name, dependency: depName, resolvedPath: resolvedDepPath } - - // Skip if this dependency resolves to the base directory or any parent we're already processing - if (resolvedDepPath === resolvedPackageDir || resolvedDepPath === (await this.cache.realPath[baseDir])) { - log.debug(logFields, "skipping self-referential dependency") - continue - } - - log.debug(logFields, "processing production dependency") - - // Recursively build the dependency tree for this dependency - prodDeps[depName] = await buildFromPackage(resolvedDepPath) - } catch (error: any) { - log.warn({ package: pkg.name, dependency: depName, error: error.message }, "failed to process dependency, skipping") - } - } - - return { - name: pkg.name, - version: pkg.version, - path: resolvedPackageDir, - dependencies: Object.keys(prodDeps).length > 0 ? prodDeps : undefined, - optionalDependencies: pkg.optionalDependencies, - } - } - - return buildFromPackage(baseDir) + return tree._dependencies?.[packageName] != null // || super.isProdDependency(packageName, tree) } protected async parseDependenciesTree(jsonBlob: string): Promise { diff --git a/packages/app-builder-lib/src/node-module-collector/packageManager.ts b/packages/app-builder-lib/src/node-module-collector/packageManager.ts index 9064d6752ad..5e8ba6f7082 100644 --- a/packages/app-builder-lib/src/node-module-collector/packageManager.ts +++ b/packages/app-builder-lib/src/node-module-collector/packageManager.ts @@ -9,6 +9,7 @@ export enum PM { YARN_BERRY = "yarn-berry", BUN = "bun", NPM = "npm", + TRAVERSAL = "traversal", } // Cache for resolved paths @@ -18,6 +19,7 @@ const pmPathCache: Record = { [PM.PNPM]: undefined, [PM.YARN_BERRY]: undefined, [PM.BUN]: undefined, + [PM.TRAVERSAL]: undefined, } function resolveCommand(pm: PM): string { diff --git a/packages/app-builder-lib/src/node-module-collector/traversalNodeModulesCollector.ts b/packages/app-builder-lib/src/node-module-collector/traversalNodeModulesCollector.ts new file mode 100644 index 00000000000..04ee6fb29c4 --- /dev/null +++ b/packages/app-builder-lib/src/node-module-collector/traversalNodeModulesCollector.ts @@ -0,0 +1,122 @@ +import { log } from "builder-util" +import { NodeModulesCollector } from "./nodeModulesCollector" +import { PM } from "./packageManager.js" +import { Dependency, PackageJson, TraversedDependency } from "./types.js" +import * as path from "path" + +// manual traversal of node_modules for package managers without CLI support for dependency tree extraction (e.g., bun) OR as a fallback (e.g. corepack enabled w/ strict mode) +export class TraversalNodeModulesCollector extends NodeModulesCollector { + // so that tests can still install deps and verify manual collection + // public installOptions = { + // manager: PM.NPM, + // lockfile: "package-lock.json", + // } + public installOptions = { + manager: PM.TRAVERSAL, + lockfile: "none", + } + protected getArgs(): string[] { + return [] + } + + protected getDependenciesTree(_pm: PM): Promise { + return this.buildNodeModulesTreeManually(this.rootDir) + } + + protected async collectAllDependencies(tree: Dependency, appPackageName: string) { + for (const [, value] of Object.entries(tree.dependencies || {})) { + this.allDependencies.set(this.packageVersionString(value), value) + await this.collectAllDependencies(value, appPackageName) + } + } + + protected isProdDependency(packageName: string, tree: Dependency): boolean { + return tree.dependencies?.[packageName] != null || tree.optionalDependencies?.[packageName] != null + } + + protected async parseDependenciesTree(jsonBlob: string): Promise { + return Promise.resolve(JSON.parse(jsonBlob)) + } + + /** + * Builds a dependency tree using only package.json dependencies and optionalDependencies. + * This skips devDependencies and uses Node.js module resolution (require.resolve). + */ + private buildNodeModulesTreeManually(baseDir: string): Promise { + // Track visited packages by their resolved path to prevent infinite loops + const visited = new Set() + + /** + * Recursively builds dependency tree starting from a package directory. + */ + const buildFromPackage = async (packageDir: string): Promise => { + const pkgPath = path.join(packageDir, "package.json") + + log.debug({ pkgPath }, "building dependency node from package.json") + + if (!(await this.cache.exists[pkgPath])) { + throw new Error(`package.json not found at ${pkgPath}`) + } + + const pkg: PackageJson = await this.cache.packageJson[pkgPath] + const resolvedPackageDir = await this.cache.realPath[packageDir] + + // Use resolved path as the unique identifier to prevent circular dependencies + if (visited.has(resolvedPackageDir)) { + log.debug({ name: pkg.name, version: pkg.version, path: resolvedPackageDir }, "skipping already visited package") + + return { + name: pkg.name, + version: pkg.version, + path: resolvedPackageDir, + } + } + + visited.add(resolvedPackageDir) + + const prodDeps: Record = {} + const allProdDepNames = { + ...pkg.dependencies, + ...pkg.optionalDependencies, + } + + // Process all production and optional dependencies + for (const [depName, depVersion] of Object.entries(allProdDepNames)) { + try { + const depPath = await this.locatePackageVersion(resolvedPackageDir, depName, depVersion) + + if (!depPath || depPath.packageDir.length === 0) { + log.warn({ package: pkg.name, dependency: depName, version: depVersion }, "dependency not found, skipping") + continue + } + + const resolvedDepPath = await this.cache.realPath[depPath.packageDir] + const logFields = { package: pkg.name, dependency: depName, resolvedPath: resolvedDepPath } + + // Skip if this dependency resolves to the base directory or any parent we're already processing + if (resolvedDepPath === resolvedPackageDir || resolvedDepPath === (await this.cache.realPath[baseDir])) { + log.debug(logFields, "skipping self-referential dependency") + continue + } + + log.debug(logFields, "processing production dependency") + + // Recursively build the dependency tree for this dependency + prodDeps[depName] = await buildFromPackage(resolvedDepPath) + } catch (error: any) { + log.warn({ package: pkg.name, dependency: depName, error: error.message }, "failed to process dependency, skipping") + } + } + + return { + name: pkg.name, + version: pkg.version, + path: resolvedPackageDir, + dependencies: Object.keys(prodDeps).length > 0 ? prodDeps : undefined, + optionalDependencies: pkg.optionalDependencies, + } + } + + return buildFromPackage(baseDir) + } +} diff --git a/packages/app-builder-lib/src/node-module-collector/types.ts b/packages/app-builder-lib/src/node-module-collector/types.ts index 6fe8d5eb604..794b63fe502 100644 --- a/packages/app-builder-lib/src/node-module-collector/types.ts +++ b/packages/app-builder-lib/src/node-module-collector/types.ts @@ -38,7 +38,7 @@ export interface PnpmDependency extends Dependency { readonly resolved?: string - // implicit dependencies + // implicit dependencies, returned only through `npm list` readonly _dependencies?: { [packageName: string]: string } @@ -50,6 +50,9 @@ export interface YarnBerryDependency extends Dependency {} +// eslint-disable-next-line @typescript-eslint/no-empty-object-type +export interface TraversedDependency extends Dependency {} + export type Dependency = Dependencies & ParsedDependencyTree export type Dependencies = { diff --git a/packages/app-builder-lib/src/node-module-collector/yarnBerryNodeModulesCollector.ts b/packages/app-builder-lib/src/node-module-collector/yarnBerryNodeModulesCollector.ts index 9aff7906b91..8fc7b637607 100644 --- a/packages/app-builder-lib/src/node-module-collector/yarnBerryNodeModulesCollector.ts +++ b/packages/app-builder-lib/src/node-module-collector/yarnBerryNodeModulesCollector.ts @@ -29,14 +29,14 @@ export class YarnBerryNodeModulesCollector extends NpmNodeModulesCollector { protected async getDependenciesTree(_pm: PM): Promise { const isPnp = await this.yarnSetupInfo.value.then(info => !!info.isPnP) if (isPnp) { - log.warn(null, "Yarn PnP extraction not supported directly due to virtual file paths (.zip/), falling back to NPM node module collector") + log.warn(null, "Yarn PnP extraction not supported directly due to virtual file paths (.zip/), utilizing NPM node module collector") } return super.getDependenciesTree(PM.NPM) } protected isProdDependency(packageName: string, tree: NpmDependency): boolean { - return tree._dependencies?.[packageName] != null || tree.dependencies?.[packageName] != null || tree.optionalDependencies?.[packageName] != null + return super.isProdDependency(packageName, tree) || tree.dependencies?.[packageName] != null || tree.optionalDependencies?.[packageName] == null } private async detectYarnSetup(rootDir: string): Promise { diff --git a/packages/app-builder-lib/src/node-module-collector/yarnNodeModulesCollector.ts b/packages/app-builder-lib/src/node-module-collector/yarnNodeModulesCollector.ts index cdec2f9e63c..7caa95a7c8b 100644 --- a/packages/app-builder-lib/src/node-module-collector/yarnNodeModulesCollector.ts +++ b/packages/app-builder-lib/src/node-module-collector/yarnNodeModulesCollector.ts @@ -64,22 +64,6 @@ export class YarnNodeModulesCollector extends NodeModulesCollector { const lines = jsonBlob .split("\n") diff --git a/packages/app-builder-lib/src/util/appFileCopier.ts b/packages/app-builder-lib/src/util/appFileCopier.ts index d0fc6d3a996..59ecc9be221 100644 --- a/packages/app-builder-lib/src/util/appFileCopier.ts +++ b/packages/app-builder-lib/src/util/appFileCopier.ts @@ -13,7 +13,7 @@ import { PlatformPackager } from "../platformPackager" import { AppFileWalker } from "./AppFileWalker" import { NodeModuleCopyHelper } from "./NodeModuleCopyHelper" import { NodeModuleInfo } from "./packageDependencies" -import { getNodeModules } from "../node-module-collector" +import { getNodeModules, PM } from "../node-module-collector" const BOWER_COMPONENTS_PATTERN = `${path.sep}bower_components${path.sep}` /** @internal */ @@ -183,20 +183,26 @@ export async function computeNodeModuleFileSets(platformPackager: PlatformPackag let deps: Array = [] const searchDirectories = Array.from(new Set([projectDir, appDir, await packager.getWorkspaceRoot()])).filter((it): it is string => it != null) - for (const dir of searchDirectories) { - if (cancellationToken.cancelled) { - throw new Error("user cancelled") - } + const pmApproaches = [await packager.getPackageManager(), PM.TRAVERSAL] + for (const pm of pmApproaches) { + for (const dir of searchDirectories) { + if (cancellationToken.cancelled) { + throw new Error("user cancelled") + } - const dirDeps = await getNodeModules(await packager.getPackageManager(), { rootDir: dir, tempDirManager, cancellationToken, packageName: packager.metadata.name! }) - if (dirDeps.length > 0) { - log.debug({ dir, nodeModules: dirDeps }, "collected node modules") - deps = dirDeps - break + const options = { rootDir: dir, tempDirManager, cancellationToken, packageName: packager.metadata.name! } + deps = await getNodeModules(pm, options) + if (deps.length > 0) { + break + } + const attempt = searchDirectories.indexOf(dir) + if (attempt < searchDirectories.length - 1) { + log.info({ searchDir: dir, attempt }, "no node modules found in collection, trying next search directory") + } } - const attempt = searchDirectories.indexOf(dir) - if (attempt < searchDirectories.length - 1) { - log.info({ searchDir: dir, attempt }, "no node modules found in collection, trying next search directory") + if (deps.length > 0) { + log.debug({ pm, nodeModules: deps }, "collected node modules") + break } } if (deps.length === 0) { diff --git a/test/fixtures/build-hook.cjs b/test/fixtures/build-hook.cjs index 3893a36aa9a..d579a0daa63 100644 --- a/test/fixtures/build-hook.cjs +++ b/test/fixtures/build-hook.cjs @@ -1 +1 @@ -module.exports = console.log \ No newline at end of file +module.exports = ({packager, target, ...obj}) => console.log(obj) \ No newline at end of file diff --git a/test/fixtures/build-hook.mjs b/test/fixtures/build-hook.mjs index 4d147fb5f2a..d4a5700a23f 100644 --- a/test/fixtures/build-hook.mjs +++ b/test/fixtures/build-hook.mjs @@ -1,4 +1,4 @@ -const func = console.log +const func = ({packager, target, ...obj}) => console.log(obj) export const artifactBuildStarted = func export const artifactBuildCompleted = func diff --git a/test/snapshots/HoistedNodeModuleTest.js.snap b/test/snapshots/HoistedNodeModuleTest.js.snap index 94369184591..c795eaa954c 100644 --- a/test/snapshots/HoistedNodeModuleTest.js.snap +++ b/test/snapshots/HoistedNodeModuleTest.js.snap @@ -90355,11 +90355,11 @@ exports[`yarn ms 2`] = ` { "files": { "index.html": { - "offset": "50445469", + "offset": "50445467", "size": 378, }, "index.js": { - "offset": "50445847", + "offset": "50445845", "size": 619, }, "node_modules": { @@ -119340,11 +119340,11 @@ exports[`yarn ms 2`] = ` "undici-types": { "files": { "LICENSE": { - "offset": "48549792", + "offset": "48549791", "size": 1090, }, "package.json": { - "offset": "48550882", + "offset": "48550881", "size": 325, }, }, @@ -119353,7 +119353,7 @@ exports[`yarn ms 2`] = ` }, "package.json": { "offset": "48549041", - "size": 751, + "size": 750, }, }, }, @@ -119361,12 +119361,12 @@ exports[`yarn ms 2`] = ` "files": { "LICENSE": { "executable": true, - "offset": "48551207", + "offset": "48551206", "size": 1141, }, "package.json": { "executable": true, - "offset": "48552348", + "offset": "48552347", "size": 611, }, }, @@ -119374,11 +119374,11 @@ exports[`yarn ms 2`] = ` "pg-pool": { "files": { "LICENSE": { - "offset": "48552959", + "offset": "48552958", "size": 1141, }, "package.json": { - "offset": "48554100", + "offset": "48554099", "size": 579, }, }, @@ -119386,11 +119386,11 @@ exports[`yarn ms 2`] = ` "shimmer": { "files": { "LICENSE": { - "offset": "48554679", + "offset": "48554678", "size": 1141, }, "package.json": { - "offset": "48555820", + "offset": "48555819", "size": 555, }, }, @@ -119398,7 +119398,7 @@ exports[`yarn ms 2`] = ` "tedious": { "files": { "LICENSE": { - "offset": "48556375", + "offset": "48556374", "size": 1141, }, "node_modules": { @@ -119408,12 +119408,12 @@ exports[`yarn ms 2`] = ` "node": { "files": { "LICENSE": { - "offset": "48558098", + "offset": "48558097", "size": 1141, }, "package.json": { - "offset": "48559239", - "size": 751, + "offset": "48559238", + "size": 750, }, }, }, @@ -119422,7 +119422,7 @@ exports[`yarn ms 2`] = ` }, }, "package.json": { - "offset": "48557516", + "offset": "48557515", "size": 582, }, }, @@ -119432,14 +119432,14 @@ exports[`yarn ms 2`] = ` "acorn": { "files": { "LICENSE": { - "offset": "48559990", + "offset": "48559988", "size": 1099, }, "bin": { "files": { "acorn": { "executable": true, - "offset": "48561089", + "offset": "48561087", "size": 60, }, }, @@ -119447,25 +119447,25 @@ exports[`yarn ms 2`] = ` "dist": { "files": { "acorn.d.mts": { - "offset": "48561149", + "offset": "48561147", "size": 21989, }, "acorn.js": { - "offset": "48583138", + "offset": "48583136", "size": 241575, }, "acorn.mjs": { - "offset": "48824713", + "offset": "48824711", "size": 229792, }, "bin.js": { - "offset": "49054505", + "offset": "49054503", "size": 3329, }, }, }, "package.json": { - "offset": "49057834", + "offset": "49057832", "size": 997, }, }, @@ -119473,29 +119473,29 @@ exports[`yarn ms 2`] = ` "acorn-import-attributes": { "files": { "LICENSE": { - "offset": "49058831", + "offset": "49058829", "size": 1069, }, "lib": { "files": { "index.js": { - "offset": "49059900", + "offset": "49059898", "size": 10482, }, "index.mjs": { - "offset": "49070382", + "offset": "49070380", "size": 9400, }, }, }, "package.json": { - "offset": "49079782", + "offset": "49079780", "size": 1002, }, "src": { "files": { "index.js": { - "offset": "49080784", + "offset": "49080782", "size": 9400, }, }, @@ -119506,29 +119506,29 @@ exports[`yarn ms 2`] = ` "files": { "LICENSE": { "executable": true, - "offset": "49090184", + "offset": "49090182", "size": 1085, }, "dist": { "files": { "lexer.js": { - "offset": "49091269", + "offset": "49091267", "size": 33507, }, "lexer.mjs": { - "offset": "49124776", + "offset": "49124774", "size": 33480, }, }, }, "lexer.js": { "executable": true, - "offset": "49158256", + "offset": "49158254", "size": 53714, }, "package.json": { "executable": true, - "offset": "49211970", + "offset": "49211968", "size": 829, }, }, @@ -119536,7 +119536,7 @@ exports[`yarn ms 2`] = ` "debug": { "files": { "LICENSE": { - "offset": "49212799", + "offset": "49212797", "size": 1139, }, "node_modules": { @@ -119544,15 +119544,15 @@ exports[`yarn ms 2`] = ` "ms": { "files": { "index.js": { - "offset": "49232908", + "offset": "49232906", "size": 3024, }, "license.md": { - "offset": "49235932", + "offset": "49235930", "size": 1079, }, "package.json": { - "offset": "49237011", + "offset": "49237009", "size": 497, }, }, @@ -119560,25 +119560,25 @@ exports[`yarn ms 2`] = ` }, }, "package.json": { - "offset": "49213938", + "offset": "49213936", "size": 910, }, "src": { "files": { "browser.js": { - "offset": "49214848", + "offset": "49214846", "size": 6103, }, "common.js": { - "offset": "49220951", + "offset": "49220949", "size": 6915, }, "index.js": { - "offset": "49227866", + "offset": "49227864", "size": 314, }, "node.js": { - "offset": "49228180", + "offset": "49228178", "size": 4728, }, }, @@ -119588,39 +119588,39 @@ exports[`yarn ms 2`] = ` "deepmerge": { "files": { ".editorconfig": { - "offset": "49237508", + "offset": "49237506", "size": 113, }, ".eslintcache": { - "offset": "49237621", + "offset": "49237619", "size": 382, }, "dist": { "files": { "cjs.js": { - "offset": "49238003", + "offset": "49238001", "size": 4048, }, "umd.js": { - "offset": "49242051", + "offset": "49242049", "size": 4420, }, }, }, "index.js": { - "offset": "49246471", + "offset": "49246469", "size": 3293, }, "license.txt": { - "offset": "49249764", + "offset": "49249762", "size": 1116, }, "package.json": { - "offset": "49250880", + "offset": "49250878", "size": 729, }, "rollup.config.js": { - "offset": "49251609", + "offset": "49251607", "size": 343, }, }, @@ -119628,19 +119628,19 @@ exports[`yarn ms 2`] = ` "electron-clear-data": { "files": { "LICENSE.md": { - "offset": "49251952", + "offset": "49251950", "size": 1059, }, "dist": { "files": { "main.js": { - "offset": "49253011", + "offset": "49253009", "size": 1734, }, }, }, "package.json": { - "offset": "49254745", + "offset": "49254743", "size": 960, }, }, @@ -119648,27 +119648,27 @@ exports[`yarn ms 2`] = ` "forwarded-parse": { "files": { "LICENSE": { - "offset": "49255705", + "offset": "49255703", "size": 1055, }, "index.js": { - "offset": "49256760", + "offset": "49256758", "size": 4192, }, "lib": { "files": { "ascii.js": { - "offset": "49260952", + "offset": "49260950", "size": 2230, }, "error.js": { - "offset": "49263182", + "offset": "49263180", "size": 465, }, }, }, "package.json": { - "offset": "49263647", + "offset": "49263645", "size": 465, }, }, @@ -119676,23 +119676,23 @@ exports[`yarn ms 2`] = ` "function-bind": { "files": { ".nycrc": { - "offset": "49264112", + "offset": "49264110", "size": 216, }, "LICENSE": { - "offset": "49264328", + "offset": "49264326", "size": 1052, }, "implementation.js": { - "offset": "49265380", + "offset": "49265378", "size": 2043, }, "index.js": { - "offset": "49267423", + "offset": "49267421", "size": 126, }, "package.json": { - "offset": "49267549", + "offset": "49267547", "size": 1329, }, }, @@ -119700,15 +119700,15 @@ exports[`yarn ms 2`] = ` "hasown": { "files": { ".nycrc": { - "offset": "49268878", + "offset": "49268876", "size": 216, }, "LICENSE": { - "offset": "49269094", + "offset": "49269092", "size": 1083, }, "index.js": { - "offset": "49270177", + "offset": "49270175", "size": 206, }, "node_modules": { @@ -119716,23 +119716,23 @@ exports[`yarn ms 2`] = ` "function-bind": { "files": { ".nycrc": { - "offset": "49271930", + "offset": "49271928", "size": 216, }, "LICENSE": { - "offset": "49272146", + "offset": "49272144", "size": 1052, }, "implementation.js": { - "offset": "49273198", + "offset": "49273196", "size": 2043, }, "index.js": { - "offset": "49275241", + "offset": "49275239", "size": 126, }, "package.json": { - "offset": "49275367", + "offset": "49275365", "size": 1329, }, }, @@ -119740,11 +119740,11 @@ exports[`yarn ms 2`] = ` }, }, "package.json": { - "offset": "49270383", + "offset": "49270381", "size": 1474, }, "tsconfig.json": { - "offset": "49271857", + "offset": "49271855", "size": 73, }, }, @@ -119752,65 +119752,65 @@ exports[`yarn ms 2`] = ` "import-in-the-middle": { "files": { ".editorconfig": { - "offset": "49276696", + "offset": "49276694", "size": 215, }, ".eslintrc.yaml": { - "offset": "49276911", + "offset": "49276909", "size": 551, }, ".release-please-manifest.json": { - "offset": "49277462", + "offset": "49277460", "size": 20, }, "CODE_OF_CONDUCT.md": { - "offset": "49277482", + "offset": "49277480", "size": 148, }, "CONTRIBUTING.md": { - "offset": "49277630", + "offset": "49277628", "size": 1409, }, "GOVERNANCE.md": { - "offset": "49279039", + "offset": "49279037", "size": 1267, }, "LICENSE": { - "offset": "49280306", + "offset": "49280304", "size": 11357, }, "LICENSE-3rdparty.csv": { - "offset": "49291663", + "offset": "49291661", "size": 203, }, "NOTICE": { - "offset": "49291866", + "offset": "49291864", "size": 1491, }, "hook.js": { - "offset": "49293357", + "offset": "49293355", "size": 14810, }, "hook.mjs": { - "offset": "49308167", + "offset": "49308165", "size": 412, }, "index.js": { - "offset": "49308579", + "offset": "49308577", "size": 4716, }, "lib": { "files": { "get-esm-exports.js": { - "offset": "49313295", + "offset": "49313293", "size": 3441, }, "get-exports.js": { - "offset": "49316736", + "offset": "49316734", "size": 6405, }, "register.js": { - "offset": "49323141", + "offset": "49323139", "size": 1712, }, }, @@ -119820,14 +119820,14 @@ exports[`yarn ms 2`] = ` "acorn": { "files": { "LICENSE": { - "offset": "49326857", + "offset": "49326855", "size": 1099, }, "bin": { "files": { "acorn": { "executable": true, - "offset": "49327956", + "offset": "49327954", "size": 60, }, }, @@ -119835,25 +119835,25 @@ exports[`yarn ms 2`] = ` "dist": { "files": { "acorn.d.mts": { - "offset": "49328016", + "offset": "49328014", "size": 21989, }, "acorn.js": { - "offset": "49350005", + "offset": "49350003", "size": 241575, }, "acorn.mjs": { - "offset": "49591580", + "offset": "49591578", "size": 229792, }, "bin.js": { - "offset": "49821372", + "offset": "49821370", "size": 3329, }, }, }, "package.json": { - "offset": "49824701", + "offset": "49824699", "size": 997, }, }, @@ -119861,29 +119861,29 @@ exports[`yarn ms 2`] = ` "acorn-import-attributes": { "files": { "LICENSE": { - "offset": "49825698", + "offset": "49825696", "size": 1069, }, "lib": { "files": { "index.js": { - "offset": "49826767", + "offset": "49826765", "size": 10482, }, "index.mjs": { - "offset": "49837249", + "offset": "49837247", "size": 9400, }, }, }, "package.json": { - "offset": "49846649", + "offset": "49846647", "size": 1002, }, "src": { "files": { "index.js": { - "offset": "49847651", + "offset": "49847649", "size": 9400, }, }, @@ -119894,29 +119894,29 @@ exports[`yarn ms 2`] = ` "files": { "LICENSE": { "executable": true, - "offset": "49857051", + "offset": "49857049", "size": 1085, }, "dist": { "files": { "lexer.js": { - "offset": "49858136", + "offset": "49858134", "size": 33507, }, "lexer.mjs": { - "offset": "49891643", + "offset": "49891641", "size": 33480, }, }, }, "lexer.js": { "executable": true, - "offset": "49925123", + "offset": "49925121", "size": 53714, }, "package.json": { "executable": true, - "offset": "49978837", + "offset": "49978835", "size": 829, }, }, @@ -119924,15 +119924,15 @@ exports[`yarn ms 2`] = ` "module-details-from-path": { "files": { "LICENSE": { - "offset": "49979666", + "offset": "49979664", "size": 1091, }, "index.js": { - "offset": "49980757", + "offset": "49980755", "size": 965, }, "package.json": { - "offset": "49981722", + "offset": "49981720", "size": 675, }, }, @@ -119940,15 +119940,15 @@ exports[`yarn ms 2`] = ` }, }, "package.json": { - "offset": "49324853", + "offset": "49324851", "size": 1399, }, "release-please-config.json": { - "offset": "49326252", + "offset": "49326250", "size": 300, }, "tsconfig.json": { - "offset": "49326552", + "offset": "49326550", "size": 305, }, }, @@ -119956,19 +119956,19 @@ exports[`yarn ms 2`] = ` "is-core-module": { "files": { ".nycrc": { - "offset": "49982397", + "offset": "49982395", "size": 139, }, "LICENSE": { - "offset": "49982536", + "offset": "49982534", "size": 1078, }, "core.json": { - "offset": "49983614", + "offset": "49983612", "size": 5953, }, "index.js": { - "offset": "49989567", + "offset": "49989565", "size": 1766, }, "node_modules": { @@ -119976,23 +119976,23 @@ exports[`yarn ms 2`] = ` "hasown": { "files": { ".nycrc": { - "offset": "49992569", + "offset": "49992567", "size": 216, }, "LICENSE": { - "offset": "49992785", + "offset": "49992783", "size": 1083, }, "index.js": { - "offset": "49993868", + "offset": "49993866", "size": 206, }, "package.json": { - "offset": "49994074", + "offset": "49994072", "size": 1474, }, "tsconfig.json": { - "offset": "49995548", + "offset": "49995546", "size": 73, }, }, @@ -120000,7 +120000,7 @@ exports[`yarn ms 2`] = ` }, }, "package.json": { - "offset": "49991333", + "offset": "49991331", "size": 1236, }, }, @@ -120008,15 +120008,15 @@ exports[`yarn ms 2`] = ` "module-details-from-path": { "files": { "LICENSE": { - "offset": "49995621", + "offset": "49995619", "size": 1091, }, "index.js": { - "offset": "49996712", + "offset": "49996710", "size": 965, }, "package.json": { - "offset": "49997677", + "offset": "49997675", "size": 675, }, }, @@ -120024,15 +120024,15 @@ exports[`yarn ms 2`] = ` "ms": { "files": { "index.js": { - "offset": "49998352", + "offset": "49998350", "size": 3024, }, "license.md": { - "offset": "50001376", + "offset": "50001374", "size": 1079, }, "package.json": { - "offset": "50002455", + "offset": "50002453", "size": 497, }, }, @@ -120040,15 +120040,15 @@ exports[`yarn ms 2`] = ` "path-parse": { "files": { "LICENSE": { - "offset": "50002952", + "offset": "50002950", "size": 1080, }, "index.js": { - "offset": "50004032", + "offset": "50004030", "size": 1893, }, "package.json": { - "offset": "50005925", + "offset": "50005923", "size": 362, }, }, @@ -120056,15 +120056,15 @@ exports[`yarn ms 2`] = ` "pg-int8": { "files": { "LICENSE": { - "offset": "50006287", + "offset": "50006285", "size": 750, }, "index.js": { - "offset": "50007037", + "offset": "50007035", "size": 1572, }, "package.json": { - "offset": "50008609", + "offset": "50008607", "size": 402, }, }, @@ -120072,81 +120072,81 @@ exports[`yarn ms 2`] = ` "pg-protocol": { "files": { "LICENSE": { - "offset": "50009011", + "offset": "50009009", "size": 1077, }, "dist": { "files": { "b.js": { - "offset": "50010088", + "offset": "50010086", "size": 636, }, "b.js.map": { - "offset": "50010724", + "offset": "50010722", "size": 792, }, "buffer-reader.js": { - "offset": "50011516", + "offset": "50011514", "size": 1639, }, "buffer-reader.js.map": { - "offset": "50013155", + "offset": "50013153", "size": 1747, }, "buffer-writer.js": { - "offset": "50014902", + "offset": "50014900", "size": 2772, }, "buffer-writer.js.map": { - "offset": "50017674", + "offset": "50017672", "size": 3087, }, "inbound-parser.test.js": { - "offset": "50020761", + "offset": "50020759", "size": 19234, }, "inbound-parser.test.js.map": { - "offset": "50039995", + "offset": "50039993", "size": 14688, }, "index.js": { - "offset": "50054683", + "offset": "50054681", "size": 791, }, "index.js.map": { - "offset": "50055474", + "offset": "50055472", "size": 522, }, "messages.js": { - "offset": "50055996", + "offset": "50055994", "size": 4973, }, "messages.js.map": { - "offset": "50060969", + "offset": "50060967", "size": 3383, }, "outbound-serializer.test.js": { - "offset": "50064352", + "offset": "50064350", "size": 11065, }, "outbound-serializer.test.js.map": { - "offset": "50075417", + "offset": "50075415", "size": 10276, }, "parser.js": { - "offset": "50085693", + "offset": "50085691", "size": 13824, }, "parser.js.map": { - "offset": "50099517", + "offset": "50099515", "size": 11246, }, "serializer.js": { - "offset": "50110763", + "offset": "50110761", "size": 6937, }, "serializer.js.map": { - "offset": "50117700", + "offset": "50117698", "size": 7124, }, }, @@ -120154,61 +120154,61 @@ exports[`yarn ms 2`] = ` "esm": { "files": { "index.js": { - "offset": "50124824", + "offset": "50124822", "size": 325, }, }, }, "package.json": { - "offset": "50125149", + "offset": "50125147", "size": 871, }, "src": { "files": { "b.ts": { - "offset": "50126020", + "offset": "50126018", "size": 473, }, "buffer-reader.ts": { - "offset": "50126493", + "offset": "50126491", "size": 1440, }, "buffer-writer.ts": { - "offset": "50127933", + "offset": "50127931", "size": 2503, }, "inbound-parser.test.ts": { - "offset": "50130436", + "offset": "50130434", "size": 15158, }, "index.ts": { - "offset": "50145594", + "offset": "50145592", "size": 443, }, "messages.ts": { - "offset": "50146037", + "offset": "50146035", "size": 6458, }, "outbound-serializer.test.ts": { - "offset": "50152495", + "offset": "50152493", "size": 8562, }, "parser.ts": { - "offset": "50161057", + "offset": "50161055", "size": 13469, }, "serializer.ts": { - "offset": "50174526", + "offset": "50174524", "size": 7193, }, "testing": { "files": { "buffer-list.ts": { - "offset": "50181719", + "offset": "50181717", "size": 1727, }, "test-buffers.ts": { - "offset": "50183446", + "offset": "50183444", "size": 4360, }, }, @@ -120220,33 +120220,33 @@ exports[`yarn ms 2`] = ` "pg-types": { "files": { "Makefile": { - "offset": "50187806", + "offset": "50187804", "size": 232, }, "index.js": { - "offset": "50188038", + "offset": "50188036", "size": 1214, }, "index.test-d.ts": { - "offset": "50189252", + "offset": "50189250", "size": 759, }, "lib": { "files": { "arrayParser.js": { - "offset": "50190011", + "offset": "50190009", "size": 208, }, "binaryParsers.js": { - "offset": "50190219", + "offset": "50190217", "size": 6063, }, "builtins.js": { - "offset": "50196282", + "offset": "50196280", "size": 1564, }, "textParsers.js": { - "offset": "50197846", + "offset": "50197844", "size": 5367, }, }, @@ -120256,15 +120256,15 @@ exports[`yarn ms 2`] = ` "postgres-array": { "files": { "index.js": { - "offset": "50203920", + "offset": "50203918", "size": 2320, }, "license": { - "offset": "50206240", + "offset": "50206238", "size": 1111, }, "package.json": { - "offset": "50207351", + "offset": "50207349", "size": 526, }, }, @@ -120272,15 +120272,15 @@ exports[`yarn ms 2`] = ` "postgres-bytea": { "files": { "index.js": { - "offset": "50207877", + "offset": "50207875", "size": 823, }, "license": { - "offset": "50208700", + "offset": "50208698", "size": 1111, }, "package.json": { - "offset": "50209811", + "offset": "50209809", "size": 480, }, }, @@ -120288,15 +120288,15 @@ exports[`yarn ms 2`] = ` "postgres-date": { "files": { "index.js": { - "offset": "50210291", + "offset": "50210289", "size": 2676, }, "license": { - "offset": "50212967", + "offset": "50212965", "size": 1111, }, "package.json": { - "offset": "50214078", + "offset": "50214076", "size": 485, }, }, @@ -120304,15 +120304,15 @@ exports[`yarn ms 2`] = ` "postgres-interval": { "files": { "index.js": { - "offset": "50214563", + "offset": "50214561", "size": 3413, }, "license": { - "offset": "50217976", + "offset": "50217974", "size": 1111, }, "package.json": { - "offset": "50219087", + "offset": "50219085", "size": 540, }, }, @@ -120320,7 +120320,7 @@ exports[`yarn ms 2`] = ` }, }, "package.json": { - "offset": "50203213", + "offset": "50203211", "size": 707, }, }, @@ -120328,15 +120328,15 @@ exports[`yarn ms 2`] = ` "postgres-array": { "files": { "index.js": { - "offset": "50219627", + "offset": "50219625", "size": 2320, }, "license": { - "offset": "50221947", + "offset": "50221945", "size": 1111, }, "package.json": { - "offset": "50223058", + "offset": "50223056", "size": 526, }, }, @@ -120344,15 +120344,15 @@ exports[`yarn ms 2`] = ` "postgres-bytea": { "files": { "index.js": { - "offset": "50223584", + "offset": "50223582", "size": 823, }, "license": { - "offset": "50224407", + "offset": "50224405", "size": 1111, }, "package.json": { - "offset": "50225518", + "offset": "50225516", "size": 480, }, }, @@ -120360,15 +120360,15 @@ exports[`yarn ms 2`] = ` "postgres-date": { "files": { "index.js": { - "offset": "50225998", + "offset": "50225996", "size": 2676, }, "license": { - "offset": "50228674", + "offset": "50228672", "size": 1111, }, "package.json": { - "offset": "50229785", + "offset": "50229783", "size": 485, }, }, @@ -120376,11 +120376,11 @@ exports[`yarn ms 2`] = ` "postgres-interval": { "files": { "index.js": { - "offset": "50230270", + "offset": "50230268", "size": 3413, }, "license": { - "offset": "50233683", + "offset": "50233681", "size": 1111, }, "node_modules": { @@ -120388,23 +120388,23 @@ exports[`yarn ms 2`] = ` "xtend": { "files": { "LICENSE": { - "offset": "50235334", + "offset": "50235332", "size": 1078, }, "immutable.js": { - "offset": "50236412", + "offset": "50236410", "size": 384, }, "mutable.js": { - "offset": "50236796", + "offset": "50236794", "size": 369, }, "package.json": { - "offset": "50237165", + "offset": "50237163", "size": 701, }, "test.js": { - "offset": "50237866", + "offset": "50237864", "size": 2307, }, }, @@ -120412,7 +120412,7 @@ exports[`yarn ms 2`] = ` }, }, "package.json": { - "offset": "50234794", + "offset": "50234792", "size": 540, }, }, @@ -120420,11 +120420,11 @@ exports[`yarn ms 2`] = ` "require-in-the-middle": { "files": { "LICENSE": { - "offset": "50240173", + "offset": "50240171", "size": 1192, }, "index.js": { - "offset": "50241365", + "offset": "50241363", "size": 14148, }, "node_modules": { @@ -120432,29 +120432,29 @@ exports[`yarn ms 2`] = ` "debug": { "files": { "LICENSE": { - "offset": "50256483", + "offset": "50256481", "size": 1139, }, "package.json": { - "offset": "50257622", + "offset": "50257620", "size": 910, }, "src": { "files": { "browser.js": { - "offset": "50258532", + "offset": "50258530", "size": 6103, }, "common.js": { - "offset": "50264635", + "offset": "50264633", "size": 6915, }, "index.js": { - "offset": "50271550", + "offset": "50271548", "size": 314, }, "node.js": { - "offset": "50271864", + "offset": "50271862", "size": 4728, }, }, @@ -120464,80 +120464,80 @@ exports[`yarn ms 2`] = ` "resolve": { "files": { ".editorconfig": { - "offset": "50276592", + "offset": "50276590", "size": 605, }, "LICENSE": { - "offset": "50277197", + "offset": "50277195", "size": 1071, }, "SECURITY.md": { - "offset": "50278268", + "offset": "50278266", "size": 357, }, "async.js": { - "offset": "50278625", + "offset": "50278623", "size": 56, }, "bin": { "files": { "resolve": { "executable": true, - "offset": "50278681", + "offset": "50278679", "size": 1535, }, }, }, "index.js": { - "offset": "50280216", + "offset": "50280214", "size": 174, }, "lib": { "files": { "async.js": { - "offset": "50280390", + "offset": "50280388", "size": 11517, }, "caller.js": { - "offset": "50291907", + "offset": "50291905", "size": 354, }, "core.js": { - "offset": "50292261", + "offset": "50292259", "size": 309, }, "core.json": { - "offset": "50292570", + "offset": "50292568", "size": 5953, }, "homedir.js": { - "offset": "50298523", + "offset": "50298521", "size": 805, }, "is-core.js": { - "offset": "50299328", + "offset": "50299326", "size": 116, }, "node-modules-paths.js": { - "offset": "50299444", + "offset": "50299442", "size": 1365, }, "normalize-options.js": { - "offset": "50300809", + "offset": "50300807", "size": 348, }, "sync.js": { - "offset": "50301157", + "offset": "50301155", "size": 7147, }, }, }, "package.json": { - "offset": "50308304", + "offset": "50308302", "size": 1318, }, "sync.js": { - "offset": "50309622", + "offset": "50309620", "size": 55, }, }, @@ -120545,7 +120545,7 @@ exports[`yarn ms 2`] = ` }, }, "package.json": { - "offset": "50255513", + "offset": "50255511", "size": 970, }, }, @@ -120553,70 +120553,70 @@ exports[`yarn ms 2`] = ` "resolve": { "files": { ".editorconfig": { - "offset": "50309677", + "offset": "50309675", "size": 605, }, "LICENSE": { - "offset": "50310282", + "offset": "50310280", "size": 1071, }, "SECURITY.md": { - "offset": "50311353", + "offset": "50311351", "size": 357, }, "async.js": { - "offset": "50311710", + "offset": "50311708", "size": 56, }, "bin": { "files": { "resolve": { "executable": true, - "offset": "50311766", + "offset": "50311764", "size": 1535, }, }, }, "index.js": { - "offset": "50313301", + "offset": "50313299", "size": 174, }, "lib": { "files": { "async.js": { - "offset": "50313475", + "offset": "50313473", "size": 11517, }, "caller.js": { - "offset": "50324992", + "offset": "50324990", "size": 354, }, "core.js": { - "offset": "50325346", + "offset": "50325344", "size": 309, }, "core.json": { - "offset": "50325655", + "offset": "50325653", "size": 5953, }, "homedir.js": { - "offset": "50331608", + "offset": "50331606", "size": 805, }, "is-core.js": { - "offset": "50332413", + "offset": "50332411", "size": 116, }, "node-modules-paths.js": { - "offset": "50332529", + "offset": "50332527", "size": 1365, }, "normalize-options.js": { - "offset": "50333894", + "offset": "50333892", "size": 348, }, "sync.js": { - "offset": "50334242", + "offset": "50334240", "size": 7147, }, }, @@ -120626,23 +120626,23 @@ exports[`yarn ms 2`] = ` "is-core-module": { "files": { ".nycrc": { - "offset": "50342762", + "offset": "50342760", "size": 139, }, "LICENSE": { - "offset": "50342901", + "offset": "50342899", "size": 1078, }, "core.json": { - "offset": "50343979", + "offset": "50343977", "size": 5953, }, "index.js": { - "offset": "50349932", + "offset": "50349930", "size": 1766, }, "package.json": { - "offset": "50351698", + "offset": "50351696", "size": 1236, }, }, @@ -120650,15 +120650,15 @@ exports[`yarn ms 2`] = ` "path-parse": { "files": { "LICENSE": { - "offset": "50352934", + "offset": "50352932", "size": 1080, }, "index.js": { - "offset": "50354014", + "offset": "50354012", "size": 1893, }, "package.json": { - "offset": "50355907", + "offset": "50355905", "size": 362, }, }, @@ -120666,23 +120666,23 @@ exports[`yarn ms 2`] = ` "supports-preserve-symlinks-flag": { "files": { ".nycrc": { - "offset": "50356269", + "offset": "50356267", "size": 139, }, "LICENSE": { - "offset": "50356408", + "offset": "50356406", "size": 1067, }, "browser.js": { - "offset": "50357475", + "offset": "50357473", "size": 38, }, "index.js": { - "offset": "50357513", + "offset": "50357511", "size": 293, }, "package.json": { - "offset": "50357806", + "offset": "50357804", "size": 1266, }, }, @@ -120690,11 +120690,11 @@ exports[`yarn ms 2`] = ` }, }, "package.json": { - "offset": "50341389", + "offset": "50341387", "size": 1318, }, "sync.js": { - "offset": "50342707", + "offset": "50342705", "size": 55, }, }, @@ -120702,14 +120702,14 @@ exports[`yarn ms 2`] = ` "semver": { "files": { "LICENSE": { - "offset": "50359072", + "offset": "50359070", "size": 765, }, "bin": { "files": { "semver.js": { "executable": true, - "offset": "50359837", + "offset": "50359835", "size": 4739, }, }, @@ -120717,19 +120717,19 @@ exports[`yarn ms 2`] = ` "classes": { "files": { "comparator.js": { - "offset": "50364576", + "offset": "50364574", "size": 3631, }, "index.js": { - "offset": "50368207", + "offset": "50368205", "size": 143, }, "range.js": { - "offset": "50368350", + "offset": "50368348", "size": 14977, }, "semver.js": { - "offset": "50383327", + "offset": "50383325", "size": 9480, }, }, @@ -120737,191 +120737,191 @@ exports[`yarn ms 2`] = ` "functions": { "files": { "clean.js": { - "offset": "50392807", + "offset": "50392805", "size": 205, }, "cmp.js": { - "offset": "50393012", + "offset": "50393010", "size": 961, }, "coerce.js": { - "offset": "50393973", + "offset": "50393971", "size": 2004, }, "compare-build.js": { - "offset": "50395977", + "offset": "50395975", "size": 281, }, "compare-loose.js": { - "offset": "50396258", + "offset": "50396256", "size": 132, }, "compare.js": { - "offset": "50396390", + "offset": "50396388", "size": 170, }, "diff.js": { - "offset": "50396560", + "offset": "50396558", "size": 1421, }, "eq.js": { - "offset": "50397981", + "offset": "50397979", "size": 126, }, "gt.js": { - "offset": "50398107", + "offset": "50398105", "size": 124, }, "gte.js": { - "offset": "50398231", + "offset": "50398229", "size": 127, }, "inc.js": { - "offset": "50398358", + "offset": "50398356", "size": 478, }, "lt.js": { - "offset": "50398836", + "offset": "50398834", "size": 124, }, "lte.js": { - "offset": "50398960", + "offset": "50398958", "size": 127, }, "major.js": { - "offset": "50399087", + "offset": "50399085", "size": 136, }, "minor.js": { - "offset": "50399223", + "offset": "50399221", "size": 136, }, "neq.js": { - "offset": "50399359", + "offset": "50399357", "size": 128, }, "parse.js": { - "offset": "50399487", + "offset": "50399485", "size": 331, }, "patch.js": { - "offset": "50399818", + "offset": "50399816", "size": 136, }, "prerelease.js": { - "offset": "50399954", + "offset": "50399952", "size": 234, }, "rcompare.js": { - "offset": "50400188", + "offset": "50400186", "size": 132, }, "rsort.js": { - "offset": "50400320", + "offset": "50400318", "size": 163, }, "satisfies.js": { - "offset": "50400483", + "offset": "50400481", "size": 247, }, "sort.js": { - "offset": "50400730", + "offset": "50400728", "size": 161, }, "valid.js": { - "offset": "50400891", + "offset": "50400889", "size": 176, }, }, }, "index.js": { - "offset": "50401067", + "offset": "50401065", "size": 2630, }, "internal": { "files": { "constants.js": { - "offset": "50403697", + "offset": "50403695", "size": 873, }, "debug.js": { - "offset": "50404570", + "offset": "50404568", "size": 240, }, "identifiers.js": { - "offset": "50404810", + "offset": "50404808", "size": 525, }, "lrucache.js": { - "offset": "50405335", + "offset": "50405333", "size": 802, }, "parse-options.js": { - "offset": "50406137", + "offset": "50406135", "size": 338, }, "re.js": { - "offset": "50406475", + "offset": "50406473", "size": 8141, }, }, }, "package.json": { - "offset": "50414616", + "offset": "50414614", "size": 1350, }, "preload.js": { - "offset": "50415966", + "offset": "50415964", "size": 83, }, "range.bnf": { - "offset": "50416049", + "offset": "50416047", "size": 619, }, "ranges": { "files": { "gtr.js": { - "offset": "50416668", + "offset": "50416666", "size": 231, }, "intersects.js": { - "offset": "50416899", + "offset": "50416897", "size": 224, }, "ltr.js": { - "offset": "50417123", + "offset": "50417121", "size": 227, }, "max-satisfying.js": { - "offset": "50417350", + "offset": "50417348", "size": 593, }, "min-satisfying.js": { - "offset": "50417943", + "offset": "50417941", "size": 591, }, "min-version.js": { - "offset": "50418534", + "offset": "50418532", "size": 1514, }, "outside.js": { - "offset": "50420048", + "offset": "50420046", "size": 2204, }, "simplify.js": { - "offset": "50422252", + "offset": "50422250", "size": 1355, }, "subset.js": { - "offset": "50423607", + "offset": "50423605", "size": 7524, }, "to-comparators.js": { - "offset": "50431131", + "offset": "50431129", "size": 282, }, "valid.js": { - "offset": "50431413", + "offset": "50431411", "size": 326, }, }, @@ -120931,15 +120931,15 @@ exports[`yarn ms 2`] = ` "shimmer": { "files": { "LICENSE": { - "offset": "50431739", + "offset": "50431737", "size": 1327, }, "index.js": { - "offset": "50433066", + "offset": "50433064", "size": 2943, }, "package.json": { - "offset": "50436009", + "offset": "50436007", "size": 403, }, }, @@ -120947,23 +120947,23 @@ exports[`yarn ms 2`] = ` "supports-preserve-symlinks-flag": { "files": { ".nycrc": { - "offset": "50436412", + "offset": "50436410", "size": 139, }, "LICENSE": { - "offset": "50436551", + "offset": "50436549", "size": 1067, }, "browser.js": { - "offset": "50437618", + "offset": "50437616", "size": 38, }, "index.js": { - "offset": "50437656", + "offset": "50437654", "size": 293, }, "package.json": { - "offset": "50437949", + "offset": "50437947", "size": 1266, }, }, @@ -120971,11 +120971,11 @@ exports[`yarn ms 2`] = ` "undici-types": { "files": { "LICENSE": { - "offset": "50439215", + "offset": "50439213", "size": 1090, }, "package.json": { - "offset": "50440305", + "offset": "50440303", "size": 325, }, }, @@ -120983,23 +120983,23 @@ exports[`yarn ms 2`] = ` "xtend": { "files": { "LICENSE": { - "offset": "50440630", + "offset": "50440628", "size": 1078, }, "immutable.js": { - "offset": "50441708", + "offset": "50441706", "size": 384, }, "mutable.js": { - "offset": "50442092", + "offset": "50442090", "size": 369, }, "package.json": { - "offset": "50442461", + "offset": "50442459", "size": 701, }, "test.js": { - "offset": "50443162", + "offset": "50443160", "size": 2307, }, }, @@ -121007,7 +121007,7 @@ exports[`yarn ms 2`] = ` }, }, "package.json": { - "offset": "50446466", + "offset": "50446464", "size": 409, }, }, diff --git a/test/src/concurrentBuildsTest.ts b/test/src/concurrentBuildsTest.ts index 3436494efd3..b44941baaa6 100644 --- a/test/src/concurrentBuildsTest.ts +++ b/test/src/concurrentBuildsTest.ts @@ -3,7 +3,7 @@ import { deepAssign } from "builder-util" import { TmpDir } from "temp-file" import { assertPack, modifyPackageJson } from "./helpers/packTester" -const options = { timeout: 15 * 60 * 1000 } +const options = { timeout: 20 * 60 * 1000 } const winTargets = Platform.WINDOWS.createTarget([DIR_TARGET, "nsis"], Arch.x64, Arch.arm64) const macTargets = Platform.MAC.createTarget([DIR_TARGET, "zip", "dmg", "mas"], Arch.arm64, Arch.x64) diff --git a/test/src/helpers/packTester.ts b/test/src/helpers/packTester.ts index 7f937324d32..31b725be480 100644 --- a/test/src/helpers/packTester.ts +++ b/test/src/helpers/packTester.ts @@ -37,6 +37,7 @@ const PACKAGE_MANAGER_VERSION_MAP = { [PM.YARN_BERRY]: { cli: "yarn", version: "3.5.0" }, [PM.PNPM]: { cli: "pnpm", version: "10.18.0" }, [PM.BUN]: { cli: "bun", version: "1.3.2" }, + [PM.TRAVERSAL]: { cli: "npm", version: "9.8.1" }, // use npm to install, we're testing manual node traversal, but we still need something to install the dependencies } export function getPackageManagerWithVersion(pm: PM, packageManagerAndVersionString?: string) { @@ -148,7 +149,11 @@ export async function assertPack(expect: ExpectStatic, fixtureName: string, pack (async () => { const packageManagerOverride = checkOptions.packageManager || PM.NPM await modifyPackageJson(projectDir, data => { - if (data.packageManager == null) { + if ( + data.packageManager == null && + // these will block `npm list` with "Unsupported package manager specification (bun@1.3.2)" + ![PM.BUN, PM.TRAVERSAL].includes(packageManagerOverride) + ) { data.packageManager = getPackageManagerWithVersion(packageManagerOverride).prepareEntry } }) diff --git a/test/src/packageManagerTest.ts b/test/src/packageManagerTest.ts index 6d09f141844..9d8518f7321 100644 --- a/test/src/packageManagerTest.ts +++ b/test/src/packageManagerTest.ts @@ -370,7 +370,7 @@ test("bun workspace --linker=hoisted - multiple conflicting versions", ({ expect // Test for local file:// protocol Object.values(PM) - .filter(pm => pm !== PM.BUN) // bun is not supported for file: protocol + .filter(pm => ![PM.BUN, PM.TRAVERSAL].includes(pm)) // bun is not supported for file: protocol .forEach(pm => { test(`local file:// protocol with ${pm} for project outside workspace`, ({ expect }) => { return assertPack( diff --git a/vite.config.ts b/vite.config.ts index 1ea023de1f1..2a832598509 100644 --- a/vite.config.ts +++ b/vite.config.ts @@ -43,12 +43,14 @@ export default () => { }, }, + slowTestThreshold: 60 * 1000, + // disk operations can be slow. We're generous with the timeout here to account for less-performant (local?) machines. + // GH runners are fast, but we're still running tests concurrently, so collectively, they take less time, but individually, they can take longer due to parallelism. + testTimeout: 15 * 60 * 1000, sequence: { concurrent: process.env.TEST_SEQUENTIAL !== "true", }, - slowTestThreshold: 60 * 1000, - testTimeout: 10 * 60 * 1000, // disk operations can be slow. We're generous with the timeout here to account for less-performant hardware coverage: { reporter: ["lcov", "text"], }, From 123544607380e17f2fafafa7d3cef6383aba7936 Mon Sep 17 00:00:00 2001 From: Mike Maietta Date: Wed, 10 Dec 2025 14:35:40 -0800 Subject: [PATCH 07/61] tmp save --- packages/app-builder-lib/src/index.ts | 4 ++++ .../bunNodeModulesCollector.ts | 6 +++--- .../src/node-module-collector/index.ts | 2 +- .../traversalNodeModulesCollector.ts | 2 +- .../app-builder-lib/src/util/appFileCopier.ts | 20 +++++++++---------- .../src/SquirrelWindowsTarget.ts | 2 +- packages/electron-builder/src/index.ts | 4 ++-- packages/electron-builder/src/publish.ts | 6 +++--- 8 files changed, 25 insertions(+), 21 deletions(-) diff --git a/packages/app-builder-lib/src/index.ts b/packages/app-builder-lib/src/index.ts index 7907db404c7..f00cc345292 100644 --- a/packages/app-builder-lib/src/index.ts +++ b/packages/app-builder-lib/src/index.ts @@ -84,6 +84,10 @@ export { installOrRebuild } from "./util/yarn.js" export { PACKAGE_VERSION } from "./version.js" export { determinePackageManagerEnv } from "./node-module-collector/index.js" +export { execWine } from "./wine.js" +export { Publish } from "./core.js" +export { computeSafeArtifactNameIfNeeded } from "./platformPackager.js" + const expectedOptions = new Set(["publish", "targets", "mac", "win", "linux", "projectDir", "platformPackagerFactory", "config", "effectiveOptionComputed", "prepackaged"]) export function checkBuildRequestOptions(options: PackagerOptions & PublishOptions) { diff --git a/packages/app-builder-lib/src/node-module-collector/bunNodeModulesCollector.ts b/packages/app-builder-lib/src/node-module-collector/bunNodeModulesCollector.ts index 2817ae10a54..d5924fdd74f 100644 --- a/packages/app-builder-lib/src/node-module-collector/bunNodeModulesCollector.ts +++ b/packages/app-builder-lib/src/node-module-collector/bunNodeModulesCollector.ts @@ -1,7 +1,7 @@ import { log } from "builder-util" -import { PM } from "./packageManager" -import { NpmDependency } from "./types" -import { TraversalNodeModulesCollector } from "./traversalNodeModulesCollector" +import { PM } from "./packageManager.js" +import { NpmDependency } from "./types.js" +import { TraversalNodeModulesCollector } from "./traversalNodeModulesCollector.js" export class BunNodeModulesCollector extends TraversalNodeModulesCollector { public readonly installOptions = { manager: PM.BUN, lockfile: "bun.lock" } diff --git a/packages/app-builder-lib/src/node-module-collector/index.ts b/packages/app-builder-lib/src/node-module-collector/index.ts index d5e5cfa9f0b..33286731591 100644 --- a/packages/app-builder-lib/src/node-module-collector/index.ts +++ b/packages/app-builder-lib/src/node-module-collector/index.ts @@ -11,7 +11,7 @@ import { Lazy } from "lazy-val" import { spawn, log, exists } from "builder-util" import * as fs from "fs-extra" import * as path from "path" -import { TraversalNodeModulesCollector } from "./traversalNodeModulesCollector" +import { TraversalNodeModulesCollector } from "./traversalNodeModulesCollector.js" export { getPackageManagerCommand, PM } diff --git a/packages/app-builder-lib/src/node-module-collector/traversalNodeModulesCollector.ts b/packages/app-builder-lib/src/node-module-collector/traversalNodeModulesCollector.ts index 04ee6fb29c4..1260bae4ef2 100644 --- a/packages/app-builder-lib/src/node-module-collector/traversalNodeModulesCollector.ts +++ b/packages/app-builder-lib/src/node-module-collector/traversalNodeModulesCollector.ts @@ -1,5 +1,5 @@ import { log } from "builder-util" -import { NodeModulesCollector } from "./nodeModulesCollector" +import { NodeModulesCollector } from "./nodeModulesCollector.js" import { PM } from "./packageManager.js" import { Dependency, PackageJson, TraversedDependency } from "./types.js" import * as path from "path" diff --git a/packages/app-builder-lib/src/util/appFileCopier.ts b/packages/app-builder-lib/src/util/appFileCopier.ts index 59ecc9be221..be18ad297e0 100644 --- a/packages/app-builder-lib/src/util/appFileCopier.ts +++ b/packages/app-builder-lib/src/util/appFileCopier.ts @@ -4,16 +4,16 @@ import { ensureSymlink } from "fs-extra" import { mkdir, readlink } from "fs/promises" import * as path from "path" import asyncPool from "tiny-async-pool" -import { isLibOrExe } from "../asar/unpackDetector" -import { Platform } from "../core" -import { excludedExts, FileMatcher } from "../fileMatcher" -import { createElectronCompilerHost, NODE_MODULES_PATTERN } from "../fileTransformer" -import { Packager } from "../packager" -import { PlatformPackager } from "../platformPackager" -import { AppFileWalker } from "./AppFileWalker" -import { NodeModuleCopyHelper } from "./NodeModuleCopyHelper" -import { NodeModuleInfo } from "./packageDependencies" -import { getNodeModules, PM } from "../node-module-collector" +import { isLibOrExe } from "../asar/unpackDetector.js" +import { Platform } from "../core.js" +import { excludedExts, FileMatcher } from "../fileMatcher.js" +import { createElectronCompilerHost, NODE_MODULES_PATTERN } from "../fileTransformer.js" +import { Packager } from "../packager.js" +import { PlatformPackager } from "../platformPackager.js" +import { AppFileWalker } from "./AppFileWalker.js" +import { NodeModuleCopyHelper } from "./NodeModuleCopyHelper.js" +import { NodeModuleInfo } from "./packageDependencies.js" +import { getNodeModules, PM } from "../node-module-collector/index.js" const BOWER_COMPONENTS_PATTERN = `${path.sep}bower_components${path.sep}` /** @internal */ diff --git a/packages/electron-builder-squirrel-windows/src/SquirrelWindowsTarget.ts b/packages/electron-builder-squirrel-windows/src/SquirrelWindowsTarget.ts index a4b513ce956..9f39ebed79c 100644 --- a/packages/electron-builder-squirrel-windows/src/SquirrelWindowsTarget.ts +++ b/packages/electron-builder-squirrel-windows/src/SquirrelWindowsTarget.ts @@ -1,5 +1,5 @@ import { InvalidConfigurationError, log, isEmptyOrSpaces } from "builder-util" -import { execWine } from "app-builder-lib/out/wine" +import { execWine } from "app-builder-lib" import { getBinFromUrl } from "app-builder-lib/out/binDownload" import { sanitizeFileName } from "builder-util" import { Arch, getArchSuffix, SquirrelWindowsOptions, Target, WinPackager } from "app-builder-lib" diff --git a/packages/electron-builder/src/index.ts b/packages/electron-builder/src/index.ts index a50a67e4613..f7812eaa48e 100644 --- a/packages/electron-builder/src/index.ts +++ b/packages/electron-builder/src/index.ts @@ -1,6 +1,6 @@ export { getArchSuffix, Arch, archFromString, log } from "builder-util" -export { build, CliOptions, createTargets } from "./builder" -export { publish, publishArtifactsWithOptions } from "./publish" +export { build, CliOptions, createTargets } from "./builder.js" +export { publish, publishArtifactsWithOptions } from "./publish.js" export { TargetConfiguration, Platform, diff --git a/packages/electron-builder/src/publish.ts b/packages/electron-builder/src/publish.ts index a673095a0a2..5e3fce40657 100644 --- a/packages/electron-builder/src/publish.ts +++ b/packages/electron-builder/src/publish.ts @@ -1,9 +1,9 @@ #! /usr/bin/env node import { AppInfo, CancellationToken, Packager, PackagerOptions, PublishManager, PublishOptions, UploadTask, checkBuildRequestOptions } from "app-builder-lib" -import { Publish } from "app-builder-lib/out/core" -import { computeSafeArtifactNameIfNeeded } from "app-builder-lib/out/platformPackager" -import { getConfig } from "app-builder-lib/out/util/config/config" +import { Publish } from "app-builder-lib" +import { computeSafeArtifactNameIfNeeded } from "app-builder-lib" +import { getConfig } from "app-builder-lib" import { InvalidConfigurationError, archFromString, log, printErrorAndExit } from "builder-util" import { PublishPolicy } from "electron-publish" import * as chalk from "chalk" From fa1ceb2871defca5a2d300a8a2af7ad780ec2c8e Mon Sep 17 00:00:00 2001 From: Mike Maietta Date: Wed, 10 Dec 2025 14:56:50 -0800 Subject: [PATCH 08/61] got it all compiling --- packages/app-builder-lib/src/index.ts | 2 ++ packages/builder-util-runtime/src/index.ts | 2 +- packages/dmg-builder/src/dmg.ts | 4 ++-- .../src/SquirrelWindowsTarget.ts | 6 +++--- packages/electron-builder/package.json | 1 + packages/electron-builder/src/builder.ts | 9 +++++---- .../src/cli/install-app-deps.ts | 7 ++++--- packages/electron-builder/src/publish.ts | 8 ++++---- packages/electron-updater/src/MacUpdater.ts | 2 +- .../DifferentialDownloader.ts | 2 +- ...thEmbeddedBlockMapDifferentialDownloader.ts | 2 +- .../GenericDifferentialDownloader.ts | 2 +- .../downloadPlanBuilder.ts | 2 +- packages/electron-updater/src/main.ts | 18 +++++++++--------- .../src/providers/GenericProvider.ts | 3 ++- pnpm-lock.yaml | 7 +++++-- test/src/windows/winCodeSignTest.ts | 3 ++- tsconfig-base.json | 3 ++- 18 files changed, 47 insertions(+), 36 deletions(-) diff --git a/packages/app-builder-lib/src/index.ts b/packages/app-builder-lib/src/index.ts index f00cc345292..a94c084b1f9 100644 --- a/packages/app-builder-lib/src/index.ts +++ b/packages/app-builder-lib/src/index.ts @@ -87,6 +87,8 @@ export { determinePackageManagerEnv } from "./node-module-collector/index.js" export { execWine } from "./wine.js" export { Publish } from "./core.js" export { computeSafeArtifactNameIfNeeded } from "./platformPackager.js" +export { createBlockmap } from "./targets/differentialUpdateInfoBuilder.js" +export { getBinFromUrl } from "./binDownload.js" const expectedOptions = new Set(["publish", "targets", "mac", "win", "linux", "projectDir", "platformPackagerFactory", "config", "effectiveOptionComputed", "prepackaged"]) diff --git a/packages/builder-util-runtime/src/index.ts b/packages/builder-util-runtime/src/index.ts index 3ff2a6930f4..bd0e2cec2c5 100644 --- a/packages/builder-util-runtime/src/index.ts +++ b/packages/builder-util-runtime/src/index.ts @@ -1,4 +1,4 @@ -export { BlockMap } from "./blockMapApi.js" +export { BlockMap, BlockMapFile } from "./blockMapApi.js" export { CancellationError, CancellationToken } from "./CancellationToken.js" export { newError } from "./error.js" export { diff --git a/packages/dmg-builder/src/dmg.ts b/packages/dmg-builder/src/dmg.ts index 541fb3754ee..69ecb15365a 100644 --- a/packages/dmg-builder/src/dmg.ts +++ b/packages/dmg-builder/src/dmg.ts @@ -1,7 +1,7 @@ import { DmgOptions, Target } from "app-builder-lib" import { findIdentity, isSignAllowed } from "app-builder-lib" -import { MacPackager } from "app-builder-lib/out/macPackager.js" -import { createBlockmap } from "app-builder-lib/out/targets/differentialUpdateInfoBuilder.js" +import { MacPackager } from "app-builder-lib" +import { createBlockmap } from "app-builder-lib" import { Arch, exec, getArchSuffix, InvalidConfigurationError, isEmptyOrSpaces } from "builder-util" import { sanitizeFileName } from "builder-util" import { release as getOsRelease } from "os" diff --git a/packages/electron-builder-squirrel-windows/src/SquirrelWindowsTarget.ts b/packages/electron-builder-squirrel-windows/src/SquirrelWindowsTarget.ts index 9f39ebed79c..e6415e89b67 100644 --- a/packages/electron-builder-squirrel-windows/src/SquirrelWindowsTarget.ts +++ b/packages/electron-builder-squirrel-windows/src/SquirrelWindowsTarget.ts @@ -1,6 +1,6 @@ import { InvalidConfigurationError, log, isEmptyOrSpaces } from "builder-util" import { execWine } from "app-builder-lib" -import { getBinFromUrl } from "app-builder-lib/out/binDownload" +import { getBinFromUrl } from "app-builder-lib" import { sanitizeFileName } from "builder-util" import { Arch, getArchSuffix, SquirrelWindowsOptions, Target, WinPackager } from "app-builder-lib" import * as path from "path" @@ -9,8 +9,7 @@ import * as os from "os" import { Options as SquirrelOptions, createWindowsInstaller, convertVersion } from "electron-winstaller" export default class SquirrelWindowsTarget extends Target { - //tslint:disable-next-line:no-object-literal-type-assertion - readonly options: SquirrelWindowsOptions = { ...this.packager.platformSpecificBuildOptions, ...this.packager.config.squirrelWindows } as SquirrelWindowsOptions + readonly options: SquirrelWindowsOptions isAsyncSupported = false @@ -19,6 +18,7 @@ export default class SquirrelWindowsTarget extends Target { readonly outDir: string ) { super("squirrel") + this.options = { ...this.packager.platformSpecificBuildOptions, ...this.packager.config.squirrelWindows } } private async prepareSignedVendorDirectory(): Promise { diff --git a/packages/electron-builder/package.json b/packages/electron-builder/package.json index 50bfd70a181..4e8bd3df884 100644 --- a/packages/electron-builder/package.json +++ b/packages/electron-builder/package.json @@ -55,6 +55,7 @@ "app-builder-lib": "workspace:*", "builder-util": "workspace:*", "builder-util-runtime": "workspace:*", + "electron-publish": "workspace:*", "chalk": "^4.1.2", "ci-info": "^4.2.0", "dmg-builder": "workspace:*", diff --git a/packages/electron-builder/src/builder.ts b/packages/electron-builder/src/builder.ts index 295f480bc9b..3ef9d9992f1 100644 --- a/packages/electron-builder/src/builder.ts +++ b/packages/electron-builder/src/builder.ts @@ -2,10 +2,11 @@ import { build as _build, Configuration, DIR_TARGET, Packager, PackagerOptions, import { addValue, Arch, archFromString, deepAssign } from "builder-util" import * as chalk from "chalk" import { PublishOptions } from "electron-publish" -import * as yargs from "yargs" +import yargs, { Argv } from "yargs" +import { hideBin } from 'yargs/helpers'; -export function createYargs(): yargs.Argv { - return yargs.parserConfiguration({ +export function createYargs(): Argv { + return yargs(hideBin(process.argv)).parserConfiguration({ "camel-case-expansion": false, }) } @@ -215,7 +216,7 @@ export function build(rawOptions?: CliOptions): Promise> { /** * @private */ -export function configureBuildCommand(yargs: yargs.Argv): yargs.Argv { +export function configureBuildCommand(yargs: Argv): Argv { const publishGroup = "Publishing:" const buildGroup = "Building:" return yargs diff --git a/packages/electron-builder/src/cli/install-app-deps.ts b/packages/electron-builder/src/cli/install-app-deps.ts index dbe86e23970..ce6d914b5ce 100644 --- a/packages/electron-builder/src/cli/install-app-deps.ts +++ b/packages/electron-builder/src/cli/install-app-deps.ts @@ -10,10 +10,11 @@ import { getArchCliNames, log, orNullIfFileNotExist, printErrorAndExit } from "b import { readJson } from "fs-extra" import { Lazy } from "lazy-val" import * as path from "path" -import * as yargs from "yargs" +import { Argv } from "yargs" +import { createYargs } from "../builder.js" /** @internal */ -export function configureInstallAppDepsCommand(yargs: yargs.Argv): yargs.Argv { +export function configureInstallAppDepsCommand(yargs: Argv): Argv { // https://github.com/yargs/yargs/issues/760 // demandOption is required to be set return yargs @@ -70,7 +71,7 @@ export async function installAppDeps(args: any) { } function main() { - return installAppDeps(configureInstallAppDepsCommand(yargs).argv) + return installAppDeps(configureInstallAppDepsCommand(createYargs()).argv) } if (require.main === module) { diff --git a/packages/electron-builder/src/publish.ts b/packages/electron-builder/src/publish.ts index 5e3fce40657..a05ef9855e2 100644 --- a/packages/electron-builder/src/publish.ts +++ b/packages/electron-builder/src/publish.ts @@ -8,11 +8,11 @@ import { InvalidConfigurationError, archFromString, log, printErrorAndExit } fro import { PublishPolicy } from "electron-publish" import * as chalk from "chalk" import * as path from "path" -import * as yargs from "yargs" -import { BuildOptions, normalizeOptions } from "./builder.js" +import { Argv } from "yargs" +import { BuildOptions, createYargs, normalizeOptions } from "./builder.js" /** @internal */ -export function configurePublishCommand(yargs: yargs.Argv): yargs.Argv { +export function configurePublishCommand(yargs: Argv): Argv { // https://github.com/yargs/yargs/issues/760 // demandOption is required to be set return yargs @@ -121,7 +121,7 @@ async function publishPackageWithTasks( } function main() { - return publish(configurePublishCommand(yargs).argv as any) + return publish(configurePublishCommand(createYargs()).argv as any) } if (require.main === module) { diff --git a/packages/electron-updater/src/MacUpdater.ts b/packages/electron-updater/src/MacUpdater.ts index 640f9d3fb1c..6d324a61b62 100644 --- a/packages/electron-updater/src/MacUpdater.ts +++ b/packages/electron-updater/src/MacUpdater.ts @@ -5,7 +5,7 @@ import * as path from "path" import { createServer, IncomingMessage, Server, ServerResponse } from "http" import { AppAdapter } from "./AppAdapter.js" import { AppUpdater, DownloadUpdateOptions } from "./AppUpdater.js" -import { ResolvedUpdateFileInfo } from "./main.js" +import { ResolvedUpdateFileInfo } from "./types.js" import { UpdateDownloadedEvent } from "./types.js" import { findFile } from "./providers/Provider.js" import AutoUpdater = Electron.AutoUpdater diff --git a/packages/electron-updater/src/differentialDownloader/DifferentialDownloader.ts b/packages/electron-updater/src/differentialDownloader/DifferentialDownloader.ts index 2365a97ac80..a37eb254ded 100644 --- a/packages/electron-updater/src/differentialDownloader/DifferentialDownloader.ts +++ b/packages/electron-updater/src/differentialDownloader/DifferentialDownloader.ts @@ -1,5 +1,5 @@ import { BlockMapDataHolder, createHttpError, DigestTransform, HttpExecutor, configureRequestUrl, configureRequestOptions } from "builder-util-runtime" -import { BlockMap } from "builder-util-runtime/out/blockMapApi" +import { BlockMap } from "builder-util-runtime" import { close, open } from "fs-extra" import { createWriteStream } from "fs" import { OutgoingHttpHeaders, RequestOptions } from "http" diff --git a/packages/electron-updater/src/differentialDownloader/FileWithEmbeddedBlockMapDifferentialDownloader.ts b/packages/electron-updater/src/differentialDownloader/FileWithEmbeddedBlockMapDifferentialDownloader.ts index 39bed50475a..bbe2707f8b1 100644 --- a/packages/electron-updater/src/differentialDownloader/FileWithEmbeddedBlockMapDifferentialDownloader.ts +++ b/packages/electron-updater/src/differentialDownloader/FileWithEmbeddedBlockMapDifferentialDownloader.ts @@ -1,4 +1,4 @@ -import { BlockMap } from "builder-util-runtime/out/blockMapApi" +import { BlockMap } from "builder-util-runtime" import { close, fstat, open, read } from "fs-extra" import { DifferentialDownloader } from "./DifferentialDownloader.js" import { inflateRawSync } from "zlib" diff --git a/packages/electron-updater/src/differentialDownloader/GenericDifferentialDownloader.ts b/packages/electron-updater/src/differentialDownloader/GenericDifferentialDownloader.ts index a0501375cff..fc4f73c613a 100644 --- a/packages/electron-updater/src/differentialDownloader/GenericDifferentialDownloader.ts +++ b/packages/electron-updater/src/differentialDownloader/GenericDifferentialDownloader.ts @@ -1,4 +1,4 @@ -import { BlockMap } from "builder-util-runtime/out/blockMapApi" +import { BlockMap } from "builder-util-runtime" import { DifferentialDownloader } from "./DifferentialDownloader.js" export class GenericDifferentialDownloader extends DifferentialDownloader { diff --git a/packages/electron-updater/src/differentialDownloader/downloadPlanBuilder.ts b/packages/electron-updater/src/differentialDownloader/downloadPlanBuilder.ts index fbf900ccbc4..0f9f237b820 100644 --- a/packages/electron-updater/src/differentialDownloader/downloadPlanBuilder.ts +++ b/packages/electron-updater/src/differentialDownloader/downloadPlanBuilder.ts @@ -1,4 +1,4 @@ -import { BlockMap, BlockMapFile } from "builder-util-runtime/out/blockMapApi" +import { BlockMap, BlockMapFile } from "builder-util-runtime" import { Logger } from "../types.js" export enum OperationKind { diff --git a/packages/electron-updater/src/main.ts b/packages/electron-updater/src/main.ts index 6a8d4ce9fb5..a3107bb0442 100644 --- a/packages/electron-updater/src/main.ts +++ b/packages/electron-updater/src/main.ts @@ -4,16 +4,16 @@ import { AppUpdater } from "./AppUpdater.js" import { UpdateInfo } from "builder-util-runtime" export { BaseUpdater } from "./BaseUpdater.js" -export { AppUpdater, NoOpLogger } from "./AppUpdater" -export { Provider } from "./providers/Provider" -export { AppImageUpdater } from "./AppImageUpdater" -export { DebUpdater } from "./DebUpdater" -export { PacmanUpdater } from "./PacmanUpdater" -export { RpmUpdater } from "./RpmUpdater" -export { MacUpdater } from "./MacUpdater" -export { NsisUpdater } from "./NsisUpdater" +export { AppUpdater, NoOpLogger } from "./AppUpdater.js" +export { Provider } from "./providers/Provider.js" +export { AppImageUpdater } from "./AppImageUpdater.js" +export { DebUpdater } from "./DebUpdater.js" +export { PacmanUpdater } from "./PacmanUpdater.js" +export { RpmUpdater } from "./RpmUpdater.js" +export { MacUpdater } from "./MacUpdater.js" +export { NsisUpdater } from "./NsisUpdater.js" -export * from "./types" +export * from "./types.js" // autoUpdater to mimic electron bundled autoUpdater let _autoUpdater: any diff --git a/packages/electron-updater/src/providers/GenericProvider.ts b/packages/electron-updater/src/providers/GenericProvider.ts index a1604b8ba55..1e32ccba297 100644 --- a/packages/electron-updater/src/providers/GenericProvider.ts +++ b/packages/electron-updater/src/providers/GenericProvider.ts @@ -5,7 +5,7 @@ import { getChannelFilename, newBaseUrl, newUrlFromBase } from "../util.js" import { parseUpdateInfo, Provider, ProviderRuntimeOptions, resolveFiles } from "./Provider.js" export class GenericProvider extends Provider { - private readonly baseUrl = newBaseUrl(this.configuration.url) + private readonly baseUrl: URL constructor( private readonly configuration: GenericServerOptions, @@ -13,6 +13,7 @@ export class GenericProvider extends Provider { runtimeOptions: ProviderRuntimeOptions ) { super(runtimeOptions) + this.baseUrl = newBaseUrl(this.configuration.url) } private get channel(): string { diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 49b20e6992b..ef01cb32d77 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -436,6 +436,9 @@ importers: dmg-builder: specifier: workspace:* version: link:../dmg-builder + electron-publish: + specifier: workspace:* + version: link:../electron-publish fs-extra: specifier: ^10.1.0 version: 10.1.0 @@ -692,7 +695,7 @@ importers: version: 1.6.3 vitest: specifier: ^3.0.4 - version: 3.1.1(@types/node@22.13.17)(@vitest/ui@3.0.4(vitest@3.2.3))(jiti@2.4.2)(sass@1.86.1)(yaml@2.7.1) + version: 3.1.1(@types/node@22.13.17)(@vitest/ui@3.0.4)(jiti@2.4.2)(sass@1.86.1)(yaml@2.7.1) vitest-mock-commonjs: specifier: ^1.0.2 version: 1.0.2 @@ -10452,7 +10455,7 @@ snapshots: vitest-mock-commonjs@1.0.2: {} - vitest@3.1.1(@types/node@22.13.17)(@vitest/ui@3.0.4(vitest@3.2.3))(jiti@2.4.2)(sass@1.86.1)(yaml@2.7.1): + vitest@3.1.1(@types/node@22.13.17)(@vitest/ui@3.0.4)(jiti@2.4.2)(sass@1.86.1)(yaml@2.7.1): dependencies: '@vitest/expect': 3.1.1 '@vitest/mocker': 3.1.1(vite@6.2.4(@types/node@22.13.17)(jiti@2.4.2)(sass@1.86.1)(yaml@2.7.1)) diff --git a/test/src/windows/winCodeSignTest.ts b/test/src/windows/winCodeSignTest.ts index 9a2622a2ce4..ec4a40d5274 100644 --- a/test/src/windows/winCodeSignTest.ts +++ b/test/src/windows/winCodeSignTest.ts @@ -64,7 +64,7 @@ test("certificateFile/password - sign as async/await", ({ expect }) => return Promise.resolve() })) test("certificateFile/password - sign as Promise", ({ expect }) => testCustomSign(expect, () => Promise.resolve())) -test("certificateFile/password - sign as function", async ({ expect }) => testCustomSign(expect, (await import("../helpers/customWindowsSign")).default)) +test("certificateFile/password - sign as function", async ({ expect }) => testCustomSign(expect, (await import("../helpers/customWindowsSign.js")).default)) test("certificateFile/password - sign as path", ({ expect }) => testCustomSign(expect, path.join(__dirname, "../helpers/customWindowsSign.mjs"))) test("custom sign if no code sign info", ({ expect }) => { @@ -81,6 +81,7 @@ test("custom sign if no code sign info", ({ expect }) => { signtoolOptions: { sign: async () => { called = true + return Promise.resolve() }, }, }, diff --git a/tsconfig-base.json b/tsconfig-base.json index 9285427129d..a0c2bc0f0b2 100644 --- a/tsconfig-base.json +++ b/tsconfig-base.json @@ -1,8 +1,9 @@ { "extends": "@tsconfig/node22/tsconfig.json", "compilerOptions": { + "lib": ["es2024", "WebWorker", "ESNext.Array", "ESNext.Collection", "ESNext.Iterator"], + "forceConsistentCasingInFileNames": true, - "skipLibCheck": true, "noUnusedLocals": true, "noFallthroughCasesInSwitch": true, From fb7cff66841c918d9675c6886b8832f2f8012b18 Mon Sep 17 00:00:00 2001 From: Mike Maietta Date: Wed, 10 Dec 2025 15:19:46 -0800 Subject: [PATCH 09/61] esm complete on tests as well? --- packages/app-builder-lib/src/configuration.ts | 2 +- packages/app-builder-lib/src/index.ts | 41 +++++++++++++++---- .../src/publish/PublishManager.ts | 2 +- .../app-builder-lib/src/util/config/config.ts | 2 +- packages/builder-util/src/util.ts | 2 +- packages/dmg-builder/src/dmg.ts | 2 + packages/electron-builder/src/index.ts | 2 +- packages/electron-updater/src/main.ts | 15 ++++++- test/src/ArtifactPublisherTest.ts | 2 +- test/src/BuildTest.ts | 8 ++-- test/src/HoistTest.ts | 2 +- test/src/HoistedNodeModuleTest.ts | 4 +- test/src/RepoSlugTest.ts | 2 +- test/src/binDownloadTest.ts | 2 +- test/src/configurationValidationTest.ts | 4 +- test/src/extraMetadataTest.ts | 6 +-- test/src/globTest.ts | 4 +- test/src/helpers/CheckingPackager.ts | 4 +- test/src/helpers/TestAppAdapter.ts | 2 +- test/src/helpers/downloadElectron.ts | 2 +- test/src/helpers/packTester.ts | 23 +++-------- test/src/helpers/updaterTestUtil.ts | 2 +- test/src/helpers/verifySmartUnpack.ts | 2 +- test/src/helpers/winHelper.ts | 2 +- test/src/httpExecutorTest.ts | 2 +- test/src/ignoreTest.ts | 2 +- test/src/mac/dmgTest.ts | 2 +- test/src/mac/macCodeSignTest.ts | 2 +- test/src/mac/macIconTest.ts | 2 +- test/src/macroExpanderTest.ts | 2 +- test/src/packageManagerTest.ts | 2 +- test/src/rebuilderTest.ts | 4 +- test/src/updater/blackboxUpdateTest.ts | 4 +- test/src/updater/differentialUpdateTest.ts | 2 +- test/src/updater/macUpdaterTest.ts | 2 +- test/src/updater/nsisUpdaterTest.ts | 4 +- test/src/urlUtilTest.ts | 6 +-- tsconfig-base.json | 2 +- 38 files changed, 101 insertions(+), 76 deletions(-) diff --git a/packages/app-builder-lib/src/configuration.ts b/packages/app-builder-lib/src/configuration.ts index c11c6f4d438..ad7c9dc6560 100644 --- a/packages/app-builder-lib/src/configuration.ts +++ b/packages/app-builder-lib/src/configuration.ts @@ -362,7 +362,7 @@ Configuration in the same way as `afterPack` (see above). readonly beforeBuild?: Hook | string | null /** * The function (or path to file or module id) to be run when staging the electron artifact environment. - * Returns the path to custom Electron build (e.g. `~/electron/out/R`) or folder of electron zips. + * Returns the path to custom Electron build (e.g. `~/electron/src/R`) or folder of electron zips. * * Zip files must follow the pattern `electron-v${version}-${platformName}-${arch}.zip`, otherwise it will be assumed to be an unpacked Electron app directory */ diff --git a/packages/app-builder-lib/src/index.ts b/packages/app-builder-lib/src/index.ts index a94c084b1f9..fd32f26a228 100644 --- a/packages/app-builder-lib/src/index.ts +++ b/packages/app-builder-lib/src/index.ts @@ -52,6 +52,7 @@ export { CommonNsisOptions, CustomNsisBinary, NsisOptions, NsisWebOptions, Porta export { CancellationToken, ProgressInfo } from "builder-util-runtime" export { PublishOptions, UploadTask } from "electron-publish" +export { findIdentity, isSignAllowed } from "./codeSign/macCodeSign.js" export { WindowsSignOptions } from "./codeSign/windowsCodeSign.js" export { CertificateFromStoreInfo, @@ -66,29 +67,51 @@ export { LinuxPackager } from "./linuxPackager.js" export { CustomMacSign, CustomMacSignOptions, MacPackager } from "./macPackager.js" export { PlatformPackager } from "./platformPackager.js" export { PublishManager } from "./publish/PublishManager.js" +export { getLicenseAssets, getLicenseFiles } from "./util/license.js" export { WinPackager } from "./winPackager.js" -export { findIdentity, isSignAllowed } from "./codeSign/macCodeSign.js" -export { getLicenseFiles, getLicenseAssets } from "./util/license.js" -export { resolveFunction } from "./util/resolve.js" -export { executeAppBuilderAsJson } from "./util/appBuilder.js" +export { getSignVendorPath } from "./codeSign/windowsSignToolManager.js" export { getElectronVersion } from "./electron/electronVersion.js" +export { executeAppBuilderAsJson } from "./util/appBuilder.js" export { loadEnv } from "./util/config/load.js" +export { resolveFunction } from "./util/resolve.js" export { nodeGypRebuild } from "./util/yarn.js" -export { getSignVendorPath } from "./codeSign/windowsSignToolManager.js" -export { computeDefaultAppDirectory, getConfig } from "./util/config/config.js" +export { determinePackageManagerEnv } from "./node-module-collector/index.js" +export { computeDefaultAppDirectory, getConfig, doMergeConfigs } from "./util/config/config.js" export { orNullIfFileNotExist } from "./util/config/load.js" export { createLazyProductionDeps } from "./util/packageDependencies.js" export { installOrRebuild } from "./util/yarn.js" export { PACKAGE_VERSION } from "./version.js" -export { determinePackageManagerEnv } from "./node-module-collector/index.js" -export { execWine } from "./wine.js" +export { getBinFromUrl } from "./binDownload.js" export { Publish } from "./core.js" export { computeSafeArtifactNameIfNeeded } from "./platformPackager.js" +export { createPublisher } from "./publish/PublishManager.js" export { createBlockmap } from "./targets/differentialUpdateInfoBuilder.js" -export { getBinFromUrl } from "./binDownload.js" +export { execWine } from "./wine.js" + +export { validateConfiguration } from "./util/config/config.js" +export { PM } from "./node-module-collector/packageManager.js" +export { readAsarJson, readAsar, AsarFilesystem } from "./asar/asar.js" + +export { computeArchToTargetNamesMap } from "./targets/targetFactory.js" + +export { expandMacro } from "./util/macroExpander.js" +export { hoist, HoisterTree, HoisterResult, HoisterDependencyKind } from "./node-module-collector/hoist.js" +export { getLinuxToolsPath } from "./targets/tools.js" +export { parsePlistFile, PlistObject } from "./util/plist.js" +export { AsarIntegrity } from "./asar/integrity.js" +export { getCollectorByPackageManager } from "./node-module-collector/index.js" +export { installDependencies } from "./util/yarn.js" +export { detectPackageManager } from "./node-module-collector/packageManager.js" + +export { getRepositoryInfo } from "./util/repositoryInfo.js" +export { Identity } from "./codeSign/macCodeSign.js" +export { DoPackOptions } from "./platformPackager.js" + +export { createKeychain } from "./codeSign/macCodeSign.js" + const expectedOptions = new Set(["publish", "targets", "mac", "win", "linux", "projectDir", "platformPackagerFactory", "config", "effectiveOptionComputed", "prepackaged"]) diff --git a/packages/app-builder-lib/src/publish/PublishManager.ts b/packages/app-builder-lib/src/publish/PublishManager.ts index 9da6be6341b..8e57f33e76b 100644 --- a/packages/app-builder-lib/src/publish/PublishManager.ts +++ b/packages/app-builder-lib/src/publish/PublishManager.ts @@ -596,7 +596,7 @@ async function getResolvedPublishConfig( if (isGithub) { if ((options as GithubOptions).token != null && !(options as GithubOptions).private) { - log.warn('"token" specified in the github publish options. It should be used only for [setFeedURL](module:electron-updater/out/AppUpdater.AppUpdater+setFeedURL).') + log.warn('"token" specified in the github publish options. It should be used only for [setFeedURL](module:electron-updater/src/AppUpdater.AppUpdater+setFeedURL).') } //tslint:disable-next-line:no-object-literal-type-assertion return { owner, repo: project, ...options } as GithubOptions diff --git a/packages/app-builder-lib/src/util/config/config.ts b/packages/app-builder-lib/src/util/config/config.ts index 4cf14807e94..31d7db3fe06 100644 --- a/packages/app-builder-lib/src/util/config/config.ts +++ b/packages/app-builder-lib/src/util/config/config.ts @@ -57,7 +57,7 @@ export async function getConfig( if ((dependencies != null && "react-scripts" in dependencies) || (devDependencies != null && "react-scripts" in devDependencies)) { config.extends = "react-cra" } else if (devDependencies != null && "electron-webpack" in devDependencies) { - let file = "electron-webpack/out/electron-builder.js" + let file = "electron-webpack/src/electron-builder.js" try { file = require.resolve(file) } catch (_ignore) { diff --git a/packages/builder-util/src/util.ts b/packages/builder-util/src/util.ts index bf55d7b3219..475666e9fa5 100644 --- a/packages/builder-util/src/util.ts +++ b/packages/builder-util/src/util.ts @@ -15,7 +15,7 @@ if (process.env.JEST_WORKER_ID == null) { installSourceMap() } -export { getCompleteExtname, sanitizeFileName } from "./filename" +export { getCompleteExtname, sanitizeFileName } from "./filename.js" export { safeStringifyJson, retry } from "builder-util-runtime" export { TmpDir } from "temp-file" export * from "./arch.js" diff --git a/packages/dmg-builder/src/dmg.ts b/packages/dmg-builder/src/dmg.ts index 69ecb15365a..215b5a09d82 100644 --- a/packages/dmg-builder/src/dmg.ts +++ b/packages/dmg-builder/src/dmg.ts @@ -10,6 +10,8 @@ import { addLicenseToDmg } from "./dmgLicense.js" import { computeBackground, customizeDmg } from "./dmgUtil.js" import { hdiUtil } from "./hdiuil.js" +export { attachAndExecute, getDmgTemplatePath } from "./dmgUtil.js" + export interface DmgBuildConfig { title: string icon?: string | null diff --git a/packages/electron-builder/src/index.ts b/packages/electron-builder/src/index.ts index f7812eaa48e..8dac3a65a69 100644 --- a/packages/electron-builder/src/index.ts +++ b/packages/electron-builder/src/index.ts @@ -1,5 +1,5 @@ export { getArchSuffix, Arch, archFromString, log } from "builder-util" -export { build, CliOptions, createTargets } from "./builder.js" +export { build, CliOptions, configureBuildCommand, createYargs, normalizeOptions, coerceTypes, createTargets } from "./builder.js" export { publish, publishArtifactsWithOptions } from "./publish.js" export { TargetConfiguration, diff --git a/packages/electron-updater/src/main.ts b/packages/electron-updater/src/main.ts index a3107bb0442..a398a8a0c39 100644 --- a/packages/electron-updater/src/main.ts +++ b/packages/electron-updater/src/main.ts @@ -1,11 +1,15 @@ import { existsSync, readFileSync } from "fs-extra" import * as path from "path" import { AppUpdater } from "./AppUpdater.js" + +export { ElectronAppAdapter } from "./ElectronAppAdapter.js" + import { UpdateInfo } from "builder-util-runtime" export { BaseUpdater } from "./BaseUpdater.js" -export { AppUpdater, NoOpLogger } from "./AppUpdater.js" -export { Provider } from "./providers/Provider.js" +export { AppUpdater, NoOpLogger, TestOnlyUpdaterOptions } from "./AppUpdater.js" + + export { AppImageUpdater } from "./AppImageUpdater.js" export { DebUpdater } from "./DebUpdater.js" export { PacmanUpdater } from "./PacmanUpdater.js" @@ -13,7 +17,14 @@ export { RpmUpdater } from "./RpmUpdater.js" export { MacUpdater } from "./MacUpdater.js" export { NsisUpdater } from "./NsisUpdater.js" + +export { Provider } from "./providers/Provider.js" +export { GitHubProvider } from "./providers/GitHubProvider.js" +export { GitLabProvider } from "./providers/GitLabProvider.js" + + export * from "./types.js" +export * as utils from "./util.js" // autoUpdater to mimic electron bundled autoUpdater let _autoUpdater: any diff --git a/test/src/ArtifactPublisherTest.ts b/test/src/ArtifactPublisherTest.ts index c6be615c7c6..0d87fc23f45 100644 --- a/test/src/ArtifactPublisherTest.ts +++ b/test/src/ArtifactPublisherTest.ts @@ -1,5 +1,5 @@ import { Platform } from "app-builder-lib" -import { createPublisher } from "app-builder-lib/out/publish/PublishManager" +import { createPublisher } from "app-builder-lib" import { Arch } from "builder-util" import { BitbucketOptions, CancellationToken, HttpError, KeygenOptions, S3Options, SpacesOptions } from "builder-util-runtime" import { publishArtifactsWithOptions } from "electron-builder" diff --git a/test/src/BuildTest.ts b/test/src/BuildTest.ts index 35663b1572b..80706812cb8 100644 --- a/test/src/BuildTest.ts +++ b/test/src/BuildTest.ts @@ -1,18 +1,18 @@ import { checkBuildRequestOptions } from "app-builder-lib" -import { doMergeConfigs } from "app-builder-lib/out/util/config/config" +import { doMergeConfigs } from "app-builder-lib" import { Arch, createTargets, DIR_TARGET, Platform } from "electron-builder" -import { createYargs } from "electron-builder/out/builder" +import { createYargs } from "electron-builder" import { promises as fs } from "fs" import { outputFile, outputJson } from "fs-extra" import * as path from "path" import { app, appTwo, appTwoThrows, assertPack, getFixtureDir, linuxDirTarget, modifyPackageJson, packageJson, toSystemIndependentPath } from "./helpers/packTester.js" import { ELECTRON_VERSION } from "./helpers/testConfig.js" import { verifySmartUnpack } from "./helpers/verifySmartUnpack.js" -import { PM } from "app-builder-lib/src/node-module-collector/packageManager" +import { PM } from "app-builder-lib" test.ifLinux("cli", ({ expect }) => { // because these methods are internal - const { configureBuildCommand, normalizeOptions } = require("electron-builder/out/builder") + const { configureBuildCommand, normalizeOptions } = require("electron-builder/out/builder.js") const yargs = createYargs() configureBuildCommand(yargs) diff --git a/test/src/HoistTest.ts b/test/src/HoistTest.ts index 9b3bdfdb895..f31f714f3f2 100644 --- a/test/src/HoistTest.ts +++ b/test/src/HoistTest.ts @@ -1,5 +1,5 @@ // copy from https://github.com/yarnpkg/berry/blob/master/packages/yarnpkg-nm/tests/hoist.test.ts -import { hoist, HoisterTree, HoisterResult, HoisterDependencyKind } from "app-builder-lib/out/node-module-collector/hoist" +import { hoist, HoisterTree, HoisterResult, HoisterDependencyKind } from "app-builder-lib" import { expect } from "vitest" const toTree = (obj: any, key: string = `.`, nodes = new Map()): HoisterTree => { diff --git a/test/src/HoistedNodeModuleTest.ts b/test/src/HoistedNodeModuleTest.ts index 688e6468a8b..6173b8e195b 100644 --- a/test/src/HoistedNodeModuleTest.ts +++ b/test/src/HoistedNodeModuleTest.ts @@ -1,5 +1,5 @@ -import { PM } from "app-builder-lib/out/node-module-collector" -import { spawn } from "builder-util/out/util" +import { PM } from "app-builder-lib" +import { spawn } from "builder-util" import { Arch, DIR_TARGET, Platform } from "electron-builder" import { copySync, mkdirSync, outputFile, readJsonSync, rmSync, symlink, writeJsonSync } from "fs-extra" import * as path from "path" diff --git a/test/src/RepoSlugTest.ts b/test/src/RepoSlugTest.ts index 2bc245fd339..cac56766bfd 100644 --- a/test/src/RepoSlugTest.ts +++ b/test/src/RepoSlugTest.ts @@ -1,4 +1,4 @@ -import { getRepositoryInfo } from "app-builder-lib/out/util/repositoryInfo" +import { getRepositoryInfo } from "app-builder-lib" import { ExpectStatic } from "vitest" function checkInfo(expect: ExpectStatic, info: any) { diff --git a/test/src/binDownloadTest.ts b/test/src/binDownloadTest.ts index 3ed5706c5c7..d194ffa132a 100644 --- a/test/src/binDownloadTest.ts +++ b/test/src/binDownloadTest.ts @@ -1,4 +1,4 @@ -import { getBinFromUrl } from "app-builder-lib/out/binDownload" +import { getBinFromUrl } from "app-builder-lib" test("download binary from Github", async ({ expect }) => { const bin = await getBinFromUrl( diff --git a/test/src/configurationValidationTest.ts b/test/src/configurationValidationTest.ts index 4165c402c86..e7ae98a58ba 100644 --- a/test/src/configurationValidationTest.ts +++ b/test/src/configurationValidationTest.ts @@ -1,7 +1,7 @@ -import { validateConfiguration } from "app-builder-lib/out/util/config/config" +import { validateConfiguration } from "app-builder-lib" import { Arch, DebugLogger } from "builder-util" import { Configuration, Platform } from "electron-builder" -import { CliOptions, configureBuildCommand, createYargs, normalizeOptions } from "electron-builder/out/builder" +import { CliOptions, configureBuildCommand, createYargs, normalizeOptions } from "electron-builder" import { app, appThrows, linuxDirTarget } from "./helpers/packTester.js" test.ifDevOrLinuxCi("validation", ({ expect }) => diff --git a/test/src/extraMetadataTest.ts b/test/src/extraMetadataTest.ts index 68b3c7ca0d1..aadd4718ec1 100644 --- a/test/src/extraMetadataTest.ts +++ b/test/src/extraMetadataTest.ts @@ -1,6 +1,6 @@ -import { readAsarJson } from "app-builder-lib/out/asar/asar" +import { readAsarJson } from "app-builder-lib" import { Platform } from "electron-builder" -import { coerceTypes } from "electron-builder/out/builder" +import { coerceTypes } from "electron-builder" import { readJson } from "fs-extra" import * as path from "path" import { assertThat } from "./helpers/fileAssert.js" @@ -56,7 +56,7 @@ test("extra metadata (no asar)", ({ expect }) => createExtraMetadataTest(expect, test("cli", ({ expect }) => { // because these methods are internal - const { configureBuildCommand, normalizeOptions } = require("electron-builder/out/builder") + const { configureBuildCommand, normalizeOptions } = require("electron-builder/out/builder.js") const yargs = require("yargs") .strict() .fail((message: string, error: Error | null) => { diff --git a/test/src/globTest.ts b/test/src/globTest.ts index 49161445cfa..c823aa5298b 100644 --- a/test/src/globTest.ts +++ b/test/src/globTest.ts @@ -1,6 +1,6 @@ import { Platform } from "app-builder-lib" -import { readAsar } from "app-builder-lib/out/asar/asar" -import { PM } from "app-builder-lib/out/node-module-collector/packageManager" +import { readAsar } from "app-builder-lib" +import { PM } from "app-builder-lib" import { outputFile } from "fs-extra" import * as fs from "fs/promises" import * as path from "path" diff --git a/test/src/helpers/CheckingPackager.ts b/test/src/helpers/CheckingPackager.ts index 2852e2ab842..1e1e14f922e 100644 --- a/test/src/helpers/CheckingPackager.ts +++ b/test/src/helpers/CheckingPackager.ts @@ -1,6 +1,6 @@ import { SignOptions as MacSignOptions } from "@electron/osx-sign/dist/cjs/types" -import { Identity } from "app-builder-lib/out/codeSign/macCodeSign" -import { DoPackOptions } from "app-builder-lib/out/platformPackager" +import { Identity } from "app-builder-lib" +import { DoPackOptions } from "app-builder-lib" import { WinPackager, getArchSuffix, MacPackager } from "app-builder-lib" import { AsyncTaskManager } from "builder-util" import { DmgTarget } from "dmg-builder" diff --git a/test/src/helpers/TestAppAdapter.ts b/test/src/helpers/TestAppAdapter.ts index 25947245605..0e3f3a6880e 100644 --- a/test/src/helpers/TestAppAdapter.ts +++ b/test/src/helpers/TestAppAdapter.ts @@ -1,4 +1,4 @@ -import { ElectronAppAdapter } from "electron-updater/out/ElectronAppAdapter" +import { ElectronAppAdapter } from "electron-updater" // do not implement AppAdapter directly, test that our ElectronAppAdapter implementation is correct export class TestAppAdapter extends ElectronAppAdapter { diff --git a/test/src/helpers/downloadElectron.ts b/test/src/helpers/downloadElectron.ts index ff50c547a43..93b813c8fa1 100644 --- a/test/src/helpers/downloadElectron.ts +++ b/test/src/helpers/downloadElectron.ts @@ -47,7 +47,7 @@ export function downloadAllRequiredElectronVersions(): Promise { ? ["x64"] : platform === "win32" ? ["ia32", "x64"] - : require(`${path.join(__dirname, "../../..")}/packages/builder-util/out/util`).getArchCliNames() + : require(`${path.join(__dirname, "../../..")}/packages/builder-util/out/util.js`).getArchCliNames() for (const arch of archs) { if (gte(ELECTRON_VERSION, "19.0.0") && platform === "linux" && arch === "ia32") { // Chromium dropped support for ia32 linux binaries in 102.0.4999.0 diff --git a/test/src/helpers/packTester.ts b/test/src/helpers/packTester.ts index 69b6461454a..1527ab188e9 100644 --- a/test/src/helpers/packTester.ts +++ b/test/src/helpers/packTester.ts @@ -1,35 +1,24 @@ -import { PublishManager } from "app-builder-lib" -import { readAsar } from "app-builder-lib/out/asar/asar" -import { computeArchToTargetNamesMap } from "app-builder-lib/out/targets/targetFactory" -import { getLinuxToolsPath } from "app-builder-lib/out/targets/tools" -import { parsePlistFile, PlistObject } from "app-builder-lib/out/util/plist" -import { AsarIntegrity } from "app-builder-lib/out/asar/integrity" +import AdmZip from "adm-zip" +import { AsarIntegrity, computeArchToTargetNamesMap, computeDefaultAppDirectory, createLazyProductionDeps, detectPackageManager, getCollectorByPackageManager, getLinuxToolsPath, installDependencies, parsePlistFile, PlistObject, PM, PublishManager, readAsar } from "app-builder-lib" import { addValue, copyDir, deepAssign, exec, executeFinally, exists, FileCopier, log, USE_HARD_LINKS, walk } from "builder-util" import { CancellationToken, UpdateFileInfo } from "builder-util-runtime" +import { execSync } from "child_process" import { Arch, ArtifactCreated, Configuration, DIR_TARGET, getArchSuffix, MacOsTargetName, Packager, PackagerOptions, Platform, Target } from "electron-builder" -import { convertVersion } from "electron-winstaller" import { PublishPolicy } from "electron-publish" +import { convertVersion } from "electron-winstaller" import { copyFile, emptyDir, mkdir, writeJson } from "fs-extra" import * as fs from "fs/promises" import { load } from "js-yaml" import * as path from "path" import pathSorter from "path-sort" import { NtExecutable, NtExecutableResource } from "resedit" +import sanitizeFileName from "sanitize-filename" import { TmpDir } from "temp-file" -import { getCollectorByPackageManager, PM } from "app-builder-lib/out/node-module-collector" import { promisify } from "util" +import type { ExpectStatic } from "vitest" import { CSC_LINK, WIN_CSC_LINK } from "./codeSignData.js" import { assertThat } from "./fileAssert.js" -import AdmZip from "adm-zip" -// @ts-ignore -import sanitizeFileName from "sanitize-filename" -import type { ExpectStatic } from "vitest" -import { computeDefaultAppDirectory } from "app-builder-lib/out/util/config/config" -import { installDependencies } from "app-builder-lib/out/util/yarn" import { ELECTRON_VERSION } from "./testConfig.js" -import { createLazyProductionDeps } from "app-builder-lib/out/util/packageDependencies" -import { execSync } from "child_process" -import { detectPackageManager } from "app-builder-lib/out/node-module-collector/packageManager" const PACKAGE_MANAGER_VERSION_MAP = { [PM.NPM]: { cli: "npm", version: "9.8.1" }, diff --git a/test/src/helpers/updaterTestUtil.ts b/test/src/helpers/updaterTestUtil.ts index 90efb4a6331..2c4220f3fa2 100644 --- a/test/src/helpers/updaterTestUtil.ts +++ b/test/src/helpers/updaterTestUtil.ts @@ -1,7 +1,7 @@ import { NodeHttpExecutor, serializeToYaml, TmpDir } from "builder-util" import { AllPublishOptions, DownloadOptions } from "builder-util-runtime" import { AppUpdater, MacUpdater, NsisUpdater } from "electron-updater" -import { NoOpLogger, TestOnlyUpdaterOptions } from "electron-updater/out/AppUpdater" +import { NoOpLogger, TestOnlyUpdaterOptions } from "electron-updater" import { outputFile, writeFile } from "fs-extra" import * as path from "path" import { assertThat } from "./fileAssert.js" diff --git a/test/src/helpers/verifySmartUnpack.ts b/test/src/helpers/verifySmartUnpack.ts index 554a70a05a1..4d4b625e26f 100644 --- a/test/src/helpers/verifySmartUnpack.ts +++ b/test/src/helpers/verifySmartUnpack.ts @@ -1,4 +1,4 @@ -import { AsarFilesystem, readAsar } from "app-builder-lib/out/asar/asar" +import { AsarFilesystem, readAsar } from "app-builder-lib" import { walk } from "builder-util" import { readFileSync } from "fs" import * as path from "path" diff --git a/test/src/helpers/winHelper.ts b/test/src/helpers/winHelper.ts index c6d7a1f8a94..ddb5bf1193b 100644 --- a/test/src/helpers/winHelper.ts +++ b/test/src/helpers/winHelper.ts @@ -1,4 +1,4 @@ -import { readAsarJson } from "app-builder-lib/out/asar/asar" +import { readAsarJson } from "app-builder-lib" import { walk } from "builder-util" import { Arch, Platform } from "electron-builder" import { outputFile } from "fs-extra" diff --git a/test/src/httpExecutorTest.ts b/test/src/httpExecutorTest.ts index 40614f82877..4ce1875d7d8 100644 --- a/test/src/httpExecutorTest.ts +++ b/test/src/httpExecutorTest.ts @@ -1,5 +1,5 @@ import { expect, test, describe } from "vitest" -import { HttpExecutor } from "builder-util-runtime/src/httpExecutor" +import { HttpExecutor } from "builder-util-runtime" import { RequestOptions } from "http" describe("HttpExecutor.prepareRedirectUrlOptions", () => { diff --git a/test/src/ignoreTest.ts b/test/src/ignoreTest.ts index c3f2420f914..be999f2a484 100644 --- a/test/src/ignoreTest.ts +++ b/test/src/ignoreTest.ts @@ -3,7 +3,7 @@ import { outputFile } from "fs-extra" import * as path from "path" import { assertThat } from "./helpers/fileAssert.js" import { app, checkDirContents, linuxDirTarget, modifyPackageJson } from "./helpers/packTester.js" -import { PM } from "app-builder-lib/out/node-module-collector/packageManager" +import { PM } from "app-builder-lib" const currentProcessTarget = Platform.LINUX.createTarget(DIR_TARGET, archFromString(process.arch)) diff --git a/test/src/mac/dmgTest.ts b/test/src/mac/dmgTest.ts index ba790c5d2b6..85ebffaa73c 100644 --- a/test/src/mac/dmgTest.ts +++ b/test/src/mac/dmgTest.ts @@ -5,7 +5,7 @@ import * as fs from "fs/promises" import * as path from "path" import { assertThat } from "../helpers/fileAssert" import { app, assertPack, copyTestAsset } from "../helpers/packTester" -import { attachAndExecute, getDmgTemplatePath } from "dmg-builder/out/dmgUtil" +import { attachAndExecute, getDmgTemplatePath } from "dmg-builder" const dmgTarget = Platform.MAC.createTarget("dmg", Arch.x64) const defaultTarget = Platform.MAC.createTarget(undefined, Arch.x64) diff --git a/test/src/mac/macCodeSignTest.ts b/test/src/mac/macCodeSignTest.ts index 8e59701c9f4..29483f4d50d 100644 --- a/test/src/mac/macCodeSignTest.ts +++ b/test/src/mac/macCodeSignTest.ts @@ -1,4 +1,4 @@ -import { createKeychain } from "app-builder-lib/out/codeSign/macCodeSign" +import { createKeychain } from "app-builder-lib" import { removePassword, TmpDir } from "builder-util" import { CSC_LINK } from "../helpers/codeSignData" import { afterEach } from "vitest" diff --git a/test/src/mac/macIconTest.ts b/test/src/mac/macIconTest.ts index 18473bd5b7d..cf810df08c1 100644 --- a/test/src/mac/macIconTest.ts +++ b/test/src/mac/macIconTest.ts @@ -1,4 +1,4 @@ -import { parsePlistFile, PlistObject } from "app-builder-lib/out/util/plist" +import { parsePlistFile, PlistObject } from "app-builder-lib" import { Arch, DIR_TARGET, Platform } from "electron-builder" import * as fs from "fs/promises" import * as path from "path" diff --git a/test/src/macroExpanderTest.ts b/test/src/macroExpanderTest.ts index 6cdb81fc3a4..978c361b17b 100644 --- a/test/src/macroExpanderTest.ts +++ b/test/src/macroExpanderTest.ts @@ -1,4 +1,4 @@ -import { expandMacro } from "app-builder-lib/out/util/macroExpander" +import { expandMacro } from "app-builder-lib" const appInfoStub: any = { sanitizedProductName: "1", diff --git a/test/src/packageManagerTest.ts b/test/src/packageManagerTest.ts index 8171a6f196d..d630b28da6c 100644 --- a/test/src/packageManagerTest.ts +++ b/test/src/packageManagerTest.ts @@ -1,5 +1,5 @@ import { Platform } from "app-builder-lib" -import { PM } from "app-builder-lib/src/node-module-collector" +import { PM } from "app-builder-lib" import { execSync } from "child_process" import { copyFile, outputFile, rm, writeFile } from "fs-extra" import * as path from "path" diff --git a/test/src/rebuilderTest.ts b/test/src/rebuilderTest.ts index fad00e97f76..02f020c492c 100644 --- a/test/src/rebuilderTest.ts +++ b/test/src/rebuilderTest.ts @@ -1,6 +1,6 @@ import { Configuration, Platform } from "app-builder-lib" -import { PM } from "app-builder-lib/out/node-module-collector" -import { exists } from "builder-util/src/util" +import { PM } from "app-builder-lib" +import { exists } from "builder-util" import path from "path" import { assertPack, linuxDirTarget, modifyPackageJson } from "./helpers/packTester.js" import { ELECTRON_VERSION } from "./helpers/testConfig.js" diff --git a/test/src/updater/blackboxUpdateTest.ts b/test/src/updater/blackboxUpdateTest.ts index 81a78de1079..a597fd13d41 100644 --- a/test/src/updater/blackboxUpdateTest.ts +++ b/test/src/updater/blackboxUpdateTest.ts @@ -1,6 +1,6 @@ -import { getBinFromUrl } from "app-builder-lib/out/binDownload" +import { getBinFromUrl } from "app-builder-lib" import { GenericServerOptions, Nullish } from "builder-util-runtime" -import { archFromString, doSpawn, getArchSuffix, isEmptyOrSpaces, log, TmpDir } from "builder-util/out/util" +import { archFromString, doSpawn, getArchSuffix, isEmptyOrSpaces, log, TmpDir } from "builder-util" import { Arch, Configuration, Platform } from "electron-builder" import fs, { existsSync, outputFile } from "fs-extra" import path from "path" diff --git a/test/src/updater/differentialUpdateTest.ts b/test/src/updater/differentialUpdateTest.ts index 9083ab9ea6f..fdb0e338eee 100644 --- a/test/src/updater/differentialUpdateTest.ts +++ b/test/src/updater/differentialUpdateTest.ts @@ -1,5 +1,5 @@ import { Arch, Configuration, Platform } from "app-builder-lib" -import { getBinFromUrl } from "app-builder-lib/out/binDownload" +import { getBinFromUrl } from "app-builder-lib" import { doSpawn, getArchSuffix } from "builder-util" import { GenericServerOptions, Nullish, S3Options } from "builder-util-runtime" import { AppImageUpdater, BaseUpdater, MacUpdater, NsisUpdater } from "electron-updater" diff --git a/test/src/updater/macUpdaterTest.ts b/test/src/updater/macUpdaterTest.ts index f107e4d66dc..a685b8ed4a0 100644 --- a/test/src/updater/macUpdaterTest.ts +++ b/test/src/updater/macUpdaterTest.ts @@ -1,5 +1,5 @@ import { configureRequestOptionsFromUrl, GithubOptions } from "builder-util-runtime" -import { MacUpdater } from "electron-updater/out/MacUpdater" +import { MacUpdater } from "electron-updater" import { EventEmitter } from "events" import { assertThat } from "../helpers/fileAssert" import { createTestAppAdapter, httpExecutor, trackEvents, tuneTestUpdater, writeUpdateConfig } from "../helpers/updaterTestUtil" diff --git a/test/src/updater/nsisUpdaterTest.ts b/test/src/updater/nsisUpdaterTest.ts index 3e60a63d404..5fe6f22f728 100644 --- a/test/src/updater/nsisUpdaterTest.ts +++ b/test/src/updater/nsisUpdaterTest.ts @@ -8,8 +8,8 @@ import { assertThat } from "../helpers/fileAssert" import { removeUnstableProperties } from "../helpers/packTester" import { createNsisUpdater, trackEvents, validateDownload, writeUpdateConfig } from "../helpers/updaterTestUtil" import { ExpectStatic } from "vitest" -import { GitLabProvider } from "electron-updater/src/providers/GitLabProvider" -import { GitHubProvider } from "electron-updater/src/providers/GitHubProvider" +import { GitLabProvider } from "electron-updater" +import { GitHubProvider } from "electron-updater" const config = { retry: 3 } diff --git a/test/src/urlUtilTest.ts b/test/src/urlUtilTest.ts index 93635d211df..545687e8459 100644 --- a/test/src/urlUtilTest.ts +++ b/test/src/urlUtilTest.ts @@ -1,14 +1,14 @@ -import { newUrlFromBase } from "electron-updater/out/util" +import { utils } from "electron-updater" import { URL } from "url" test("newUrlFromBase", ({ expect }) => { const fileUrl = new URL("https://AWS_S3_HOST/bucket-yashraj/electron%20Setup%2011.0.3.exe") - const newBlockMapUrl = newUrlFromBase(`${fileUrl.pathname}.blockmap`, fileUrl) + const newBlockMapUrl = utils.newUrlFromBase(`${fileUrl.pathname}.blockmap`, fileUrl) expect(newBlockMapUrl.href).toBe("https://aws_s3_host/bucket-yashraj/electron%20Setup%2011.0.3.exe.blockmap") }) test("add no cache", ({ expect }) => { const baseUrl = new URL("https://gitlab.com/artifacts/master/raw/dist?job=build_electron_win") - const newBlockMapUrl = newUrlFromBase("latest.yml", baseUrl, true) + const newBlockMapUrl = utils.newUrlFromBase("latest.yml", baseUrl, true) expect(newBlockMapUrl.href).toBe("https://gitlab.com/artifacts/master/raw/latest.yml?job=build_electron_win") }) diff --git a/tsconfig-base.json b/tsconfig-base.json index a0c2bc0f0b2..16243ca9c3b 100644 --- a/tsconfig-base.json +++ b/tsconfig-base.json @@ -1,7 +1,7 @@ { "extends": "@tsconfig/node22/tsconfig.json", "compilerOptions": { - "lib": ["es2024", "WebWorker", "ESNext.Array", "ESNext.Collection", "ESNext.Iterator"], + "lib": ["es2024", "WebWorker", "esnext"], "forceConsistentCasingInFileNames": true, From c978ab45ef24b0c2dafc3cc462f8a5ab5a963d77 Mon Sep 17 00:00:00 2001 From: Mike Maietta Date: Wed, 10 Dec 2025 15:24:21 -0800 Subject: [PATCH 10/61] tests run --- packages/app-builder-lib/helpers/remote-rebuild.js | 6 ++---- packages/builder-util/src/filename.ts | 3 +-- 2 files changed, 3 insertions(+), 6 deletions(-) diff --git a/packages/app-builder-lib/helpers/remote-rebuild.js b/packages/app-builder-lib/helpers/remote-rebuild.js index 58fea60009c..7d82d390e5f 100644 --- a/packages/app-builder-lib/helpers/remote-rebuild.js +++ b/packages/app-builder-lib/helpers/remote-rebuild.js @@ -25,11 +25,9 @@ const rebuilder = rebuilder => { }) } -const main = () => { +const main = async () => { const options = JSON.parse(process.argv[2]) - - const dynamicImport = require("./dynamic-import").dynamicImportMaybe - return dynamicImport("@electron/rebuild").then(module => { + return import("@electron/rebuild").then(module => { const { rebuild } = module return rebuilder(rebuild(options)) }) diff --git a/packages/builder-util/src/filename.ts b/packages/builder-util/src/filename.ts index 623a0e1c34a..3144af6046c 100644 --- a/packages/builder-util/src/filename.ts +++ b/packages/builder-util/src/filename.ts @@ -1,6 +1,5 @@ import * as path from "path" -// @ts-ignore -import * as _sanitizeFileName from "sanitize-filename" +import _sanitizeFileName from "sanitize-filename" export function sanitizeFileName(s: string, normalizeNfd = false): string { const sanitized = _sanitizeFileName(s) From f31595852d6c42285885ca1a7334cab1072a05f8 Mon Sep 17 00:00:00 2001 From: Mike Maietta Date: Wed, 28 Jan 2026 00:21:54 -0800 Subject: [PATCH 11/61] it builds --- packages/app-builder-lib/src/targets/FlatpakTarget.ts | 9 +++++---- packages/app-builder-lib/src/targets/archive.ts | 3 +-- .../src/differentialDownloader/DataSplitter.ts | 4 ++-- test/src/helpers/CheckingPackager.ts | 5 ++--- 4 files changed, 10 insertions(+), 11 deletions(-) diff --git a/packages/app-builder-lib/src/targets/FlatpakTarget.ts b/packages/app-builder-lib/src/targets/FlatpakTarget.ts index 5d7eea68043..b05937c7bc1 100644 --- a/packages/app-builder-lib/src/targets/FlatpakTarget.ts +++ b/packages/app-builder-lib/src/targets/FlatpakTarget.ts @@ -11,10 +11,7 @@ import { createStageDir, StageDir } from "./targetUtil" import { Nullish } from "builder-util-runtime" export default class FlatpakTarget extends Target { - readonly options: FlatpakOptions = { - ...this.packager.platformSpecificBuildOptions, - ...(this.packager.config as any)[this.name], - } + readonly options: FlatpakOptions constructor( name: string, @@ -23,6 +20,10 @@ export default class FlatpakTarget extends Target { readonly outDir: string ) { super(name) + this.options = { + ...this.packager.platformSpecificBuildOptions, + ...(this.packager.config as any)[this.name], + } } get appId(): string { diff --git a/packages/app-builder-lib/src/targets/archive.ts b/packages/app-builder-lib/src/targets/archive.ts index da354564d24..5114fd7fff8 100644 --- a/packages/app-builder-lib/src/targets/archive.ts +++ b/packages/app-builder-lib/src/targets/archive.ts @@ -1,11 +1,10 @@ import { debug7z, exec, exists, getPath7za, log, statOrNull, unlinkIfExists } from "builder-util" import { move } from "fs-extra" import * as path from "path" -import { create } from "tar" +import { create, TarOptionsWithAliasesAsync } from "tar" import { TmpDir } from "temp-file" import { CompressionLevel } from "../core" import { getLinuxToolsPath } from "./tools" -import { TarOptionsWithAliasesAsync } from "tar/dist/commonjs/options" /** @internal */ export async function tar(compression: CompressionLevel | any, format: string, outFile: string, dirToArchive: string, isMacApp: boolean, tempDirManager: TmpDir): Promise { diff --git a/packages/electron-updater/src/differentialDownloader/DataSplitter.ts b/packages/electron-updater/src/differentialDownloader/DataSplitter.ts index 326c9ea0ed9..23faabb90bc 100644 --- a/packages/electron-updater/src/differentialDownloader/DataSplitter.ts +++ b/packages/electron-updater/src/differentialDownloader/DataSplitter.ts @@ -1,8 +1,8 @@ import { newError } from "builder-util-runtime" import { createReadStream } from "fs" import { Writable } from "stream" -import { Operation, OperationKind } from "./downloadPlanBuilder" -import { ProgressInfo } from "./ProgressDifferentialDownloadCallbackTransform" +import { Operation, OperationKind } from "./downloadPlanBuilder.js" +import { ProgressInfo } from "./ProgressDifferentialDownloadCallbackTransform.js" const DOUBLE_CRLF = Buffer.from("\r\n\r\n") diff --git a/test/src/helpers/CheckingPackager.ts b/test/src/helpers/CheckingPackager.ts index 1e1e14f922e..db341a3e89c 100644 --- a/test/src/helpers/CheckingPackager.ts +++ b/test/src/helpers/CheckingPackager.ts @@ -5,7 +5,6 @@ import { WinPackager, getArchSuffix, MacPackager } from "app-builder-lib" import { AsyncTaskManager } from "builder-util" import { DmgTarget } from "dmg-builder" import { Arch, MacConfiguration, Packager, Target } from "electron-builder" -import SquirrelWindowsTarget from "electron-builder-squirrel-windows" import * as path from "path" export class CheckingWinPackager extends WinPackager { @@ -18,8 +17,8 @@ export class CheckingWinPackager extends WinPackager { //noinspection JSUnusedLocalSymbols async pack(outDir: string, arch: Arch, targets: Array, taskManager: AsyncTaskManager): Promise { // skip pack - const helperClass: typeof SquirrelWindowsTarget = (await import("electron-builder-squirrel-windows")).default - const newClass = new helperClass(this, outDir) + const helperClass = (await import("electron-builder-squirrel-windows")).default + const newClass = new (helperClass as any)(this, outDir) const setupFile = this.expandArtifactNamePattern(newClass.options, "exe", arch, "${productName} Setup ${version}.${ext}") const installerOutDir = path.join(outDir, `squirrel-windows${getArchSuffix(arch)}`) this.effectiveDistOptions = await newClass.computeEffectiveDistOptions(installerOutDir, outDir, setupFile) From 87d5cf7d8e19bf827cecd0dd0ae8ee6c43322fd0 Mon Sep 17 00:00:00 2001 From: Mike Maietta Date: Wed, 28 Jan 2026 00:37:06 -0800 Subject: [PATCH 12/61] cleanup --- .changeset/config.json | 4 - .changeset/small-times-scream.md | 6 +- .changeset/some-taxis-double.md | 5 -- packages/app-builder-lib/src/configuration.ts | 2 +- .../src/node-module-collector/moduleCache.ts | 73 ------------------- .../node-module-collector/moduleManager.ts | 2 +- 6 files changed, 3 insertions(+), 89 deletions(-) delete mode 100644 .changeset/some-taxis-double.md delete mode 100644 packages/app-builder-lib/src/node-module-collector/moduleCache.ts diff --git a/.changeset/config.json b/.changeset/config.json index b318d41c1bc..c0564b78fad 100644 --- a/.changeset/config.json +++ b/.changeset/config.json @@ -8,10 +8,6 @@ "dmg-builder", "electron-builder", "electron-builder-squirrel-windows", - "electron-forge-maker-appimage", - "electron-forge-maker-nsis", - "electron-forge-maker-nsis-web", - "electron-forge-maker-snap", "electron-publish" ]], "access": "public", diff --git a/.changeset/small-times-scream.md b/.changeset/small-times-scream.md index 4abe247b365..891d81b92c1 100644 --- a/.changeset/small-times-scream.md +++ b/.changeset/small-times-scream.md @@ -1,9 +1,5 @@ --- "electron-builder-squirrel-windows": major -"electron-forge-maker-appimage": major -"electron-forge-maker-nsis-web": major -"electron-forge-maker-nsis": major -"electron-forge-maker-snap": major "builder-util-runtime": major "electron-builder": major "electron-publish": major @@ -13,4 +9,4 @@ "dmg-builder": major --- -chore(node): bumping all engines to node 22 to support latest versions of `electron/*` packages +chore(node): migrating to ESM and updating all engines to node 22 to support latest versions of `electron/*` packages diff --git a/.changeset/some-taxis-double.md b/.changeset/some-taxis-double.md deleted file mode 100644 index c167228b827..00000000000 --- a/.changeset/some-taxis-double.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"app-builder-lib": patch ---- - -chore: move the manual node module traversal to the separate class. Add `env: { COREPACK_ENABLE_STRICT: "0", ...process.env },` to allow `npm list` to work across environments. diff --git a/packages/app-builder-lib/src/configuration.ts b/packages/app-builder-lib/src/configuration.ts index ad7c9dc6560..c11c6f4d438 100644 --- a/packages/app-builder-lib/src/configuration.ts +++ b/packages/app-builder-lib/src/configuration.ts @@ -362,7 +362,7 @@ Configuration in the same way as `afterPack` (see above). readonly beforeBuild?: Hook | string | null /** * The function (or path to file or module id) to be run when staging the electron artifact environment. - * Returns the path to custom Electron build (e.g. `~/electron/src/R`) or folder of electron zips. + * Returns the path to custom Electron build (e.g. `~/electron/out/R`) or folder of electron zips. * * Zip files must follow the pattern `electron-v${version}-${platformName}-${arch}.zip`, otherwise it will be assumed to be an unpacked Electron app directory */ diff --git a/packages/app-builder-lib/src/node-module-collector/moduleCache.ts b/packages/app-builder-lib/src/node-module-collector/moduleCache.ts deleted file mode 100644 index d0f29bde382..00000000000 --- a/packages/app-builder-lib/src/node-module-collector/moduleCache.ts +++ /dev/null @@ -1,73 +0,0 @@ -import { exists, log } from "builder-util" -import { PackageJson } from "./types.js" -import * as fs from "fs-extra" -import { resolve } from "path" - -// Type aliases for clarity -type PackageJsonCache = Record> -type RealPathCache = Record> -type ExistsCache = Record> -type LstatCache = Record> -type RequireResolveCache = Record> - -export class ModuleCache { - /** Cache for package.json contents (readJson/require) */ - readonly packageJson: PackageJsonCache - /** Cache for resolved real paths (realpath) */ - readonly realPath: RealPathCache - /** Cache for file/directory existence checks */ - readonly exists: ExistsCache - /** Cache for lstat results */ - readonly lstat: LstatCache - /** Cache for require.resolve results (key: "packageName::fromDir") */ - readonly requireResolve: RequireResolveCache - - private readonly packageJsonMap: Map = new Map() - private readonly realPathMap: Map = new Map() - private readonly existsMap: Map = new Map() - private readonly lstatMap: Map = new Map() - private readonly requireResolveMap: Map = new Map() - - constructor() { - this.packageJson = this.createAsyncProxy(this.packageJsonMap, (path: string) => fs.readJson(path)) - this.exists = this.createAsyncProxy(this.existsMap, (path: string) => exists(path)) - this.lstat = this.createAsyncProxy(this.lstatMap, (path: string) => fs.lstat(path)) - this.requireResolve = this.createAsyncProxy(this.requireResolveMap, (path: string) => require.resolve(path)) - this.realPath = this.createAsyncProxy(this.realPathMap, async (path: string) => { - const p = resolve(path) - try { - const stats = await this.lstat[p] - if (stats.isSymbolicLink()) { - return await fs.realpath(p) - } - return p - } catch (error: any) { - log.debug({ filePath: p, message: error.message || error.stack }, "error resolving path") - } - return p - }) - } - - // this allows dot-notation access while still supporting async retrieval - // e.g., cache.packageJson[somePath] returns Promise - private createAsyncProxy(map: Map, compute: (key: string) => T | Promise): Record> { - return new Proxy({} as Record>, { - async get(_, key: string) { - if (map.has(key)) { - return Promise.resolve(map.get(key)!) - } - return await Promise.resolve(compute(key)).then(value => { - map.set(key, value) - return value - }) - }, - set(_, key: string, value: T) { - map.set(key, value) - return true - }, - has(_, key: string) { - return map.has(key) - }, - }) - } -} diff --git a/packages/app-builder-lib/src/node-module-collector/moduleManager.ts b/packages/app-builder-lib/src/node-module-collector/moduleManager.ts index 71d47e45b8c..f5f8b8ffc41 100644 --- a/packages/app-builder-lib/src/node-module-collector/moduleManager.ts +++ b/packages/app-builder-lib/src/node-module-collector/moduleManager.ts @@ -1,5 +1,5 @@ import { exists, isEmptyOrSpaces, log } from "builder-util" -import { PackageJson } from "./types" +import { PackageJson } from "./types.js" import * as fs from "fs-extra" import * as path from "path" import * as semver from "semver" From 37c7b3792a1a6664fe5d93f0da72b0481e819a30 Mon Sep 17 00:00:00 2001 From: Mike Maietta Date: Wed, 28 Jan 2026 01:02:08 -0800 Subject: [PATCH 13/61] tmp save --- packages/app-builder-lib/package.json | 3 ++- packages/app-builder-lib/src/asar/asarUtil.ts | 15 +++++++------- packages/app-builder-lib/src/binDownload.ts | 5 ++--- packages/app-builder-lib/src/index.ts | 1 + .../bunNodeModulesCollector.ts | 6 +++--- .../src/node-module-collector/index.ts | 16 +++++++-------- .../nodeModulesCollector.ts | 8 ++++---- .../pnpmNodeModulesCollector.ts | 6 +++--- .../traversalNodeModulesCollector.ts | 2 +- .../yarnBerryNodeModulesCollector.ts | 6 +++--- .../yarnNodeModulesCollector.ts | 6 +++--- .../src/publish/PublishManager.ts | 18 ++++++++--------- .../src/targets/AppImageTarget.ts | 2 +- .../src/targets/ArchiveTarget.ts | 2 +- .../src/targets/FlatpakTarget.ts | 18 ++++++++--------- .../app-builder-lib/src/targets/archive.ts | 4 ++-- packages/app-builder-lib/src/targets/pkg.ts | 10 +++++----- .../app-builder-lib/src/util/appFileCopier.ts | 20 +++++++++---------- .../src/util/normalizePackageData.ts | 2 +- packages/builder-util/package.json | 3 ++- packages/builder-util/src/util.ts | 19 +++++++++--------- packages/dmg-builder/package.json | 3 ++- packages/dmg-builder/src/dmg.ts | 2 +- packages/dmg-builder/src/dmgUtil.ts | 8 ++++---- .../package.json | 3 ++- packages/electron-builder/package.json | 3 ++- packages/electron-builder/src/builder.ts | 2 +- packages/electron-builder/src/publish.ts | 2 +- .../package.json | 3 ++- .../package.json | 3 ++- .../electron-forge-maker-nsis/package.json | 3 ++- .../electron-forge-maker-snap/package.json | 3 ++- packages/electron-publish/package.json | 3 ++- packages/electron-updater/src/main.ts | 3 --- test/src/helpers/CheckingPackager.ts | 2 +- 35 files changed, 110 insertions(+), 105 deletions(-) diff --git a/packages/app-builder-lib/package.json b/packages/app-builder-lib/package.json index e320c864d76..15c07bf6a9a 100644 --- a/packages/app-builder-lib/package.json +++ b/packages/app-builder-lib/package.json @@ -2,7 +2,8 @@ "name": "app-builder-lib", "description": "electron-builder lib", "version": "26.6.0", - "main": "out/index.js", + "type": "module", + "exports": "./out/index.js", "files": [ "out", "templates", diff --git a/packages/app-builder-lib/src/asar/asarUtil.ts b/packages/app-builder-lib/src/asar/asarUtil.ts index 4a52b02c1c6..c1c4feffe6d 100644 --- a/packages/app-builder-lib/src/asar/asarUtil.ts +++ b/packages/app-builder-lib/src/asar/asarUtil.ts @@ -1,15 +1,14 @@ -import { createPackageFromStreams, AsarStreamType, AsarDirectory } from "@electron/asar" -import { isEmptyOrSpaces, log } from "builder-util" -import { exists, Filter, FilterStats } from "builder-util/out/fs" +import { AsarDirectory, AsarStreamType, createPackageFromStreams } from "@electron/asar" +import { exists, Filter, FilterStats, isEmptyOrSpaces, log } from "builder-util" import * as fs from "fs-extra" import { readlink } from "fs-extra" +import * as os from "os" import * as path from "path" -import { AsarOptions } from "../options/PlatformSpecificBuildOptions" -import { PlatformPackager } from "../platformPackager" -import { ResolvedFileSet, getDestinationPath } from "../util/appFileCopier" -import { detectUnpackedDirs } from "./unpackDetector" import { Readable } from "stream" -import * as os from "os" +import { AsarOptions } from "../options/PlatformSpecificBuildOptions.js" +import { PlatformPackager } from "../platformPackager.js" +import { getDestinationPath, ResolvedFileSet } from "../util/appFileCopier.js" +import { detectUnpackedDirs } from "./unpackDetector.js" const resolvePath = async (file: string | undefined): Promise => (file && (await exists(file)) ? fs.realpath(file).catch(() => path.resolve(file)) : undefined) const resolvePaths = async (filepaths: (string | undefined)[]) => { diff --git a/packages/app-builder-lib/src/binDownload.ts b/packages/app-builder-lib/src/binDownload.ts index ac904329e17..758c4693645 100644 --- a/packages/app-builder-lib/src/binDownload.ts +++ b/packages/app-builder-lib/src/binDownload.ts @@ -1,9 +1,8 @@ import * as get from "@electron/get" import { ElectronDownloadCacheMode, ElectronDownloadRequest, ElectronDownloadRequestOptions, GotDownloaderOptions } from "@electron/get" -import { executeAppBuilder, exists, log, PADDING } from "builder-util" +import { executeAppBuilder, exists, log, PADDING, sanitizeFileName } from "builder-util" import { Nullish } from "builder-util-runtime" -import { sanitizeFileName } from "builder-util/out/filename" -import { MultiProgress } from "electron-publish/out/multiProgress" +import { MultiProgress } from "electron-publish" import * as fs from "fs/promises" import * as os from "os" import * as path from "path" diff --git a/packages/app-builder-lib/src/index.ts b/packages/app-builder-lib/src/index.ts index fd32f26a228..d1dde909065 100644 --- a/packages/app-builder-lib/src/index.ts +++ b/packages/app-builder-lib/src/index.ts @@ -112,6 +112,7 @@ export { DoPackOptions } from "./platformPackager.js" export { createKeychain } from "./codeSign/macCodeSign.js" +export { downloadArtifact } from "./binDownload.js" const expectedOptions = new Set(["publish", "targets", "mac", "win", "linux", "projectDir", "platformPackagerFactory", "config", "effectiveOptionComputed", "prepackaged"]) diff --git a/packages/app-builder-lib/src/node-module-collector/bunNodeModulesCollector.ts b/packages/app-builder-lib/src/node-module-collector/bunNodeModulesCollector.ts index bbfb15404b6..21c3e42853f 100644 --- a/packages/app-builder-lib/src/node-module-collector/bunNodeModulesCollector.ts +++ b/packages/app-builder-lib/src/node-module-collector/bunNodeModulesCollector.ts @@ -1,7 +1,7 @@ import { log } from "builder-util" -import { PM } from "./packageManager" -import { TraversedDependency } from "./types" -import { TraversalNodeModulesCollector } from "./traversalNodeModulesCollector" +import { PM } from "./packageManager.js" +import { TraversedDependency } from "./types.js" +import { TraversalNodeModulesCollector } from "./traversalNodeModulesCollector.js" export class BunNodeModulesCollector extends TraversalNodeModulesCollector { public readonly installOptions = { manager: PM.BUN, lockfile: "bun.lock" } diff --git a/packages/app-builder-lib/src/node-module-collector/index.ts b/packages/app-builder-lib/src/node-module-collector/index.ts index d2729a94ead..1636df3fe5a 100644 --- a/packages/app-builder-lib/src/node-module-collector/index.ts +++ b/packages/app-builder-lib/src/node-module-collector/index.ts @@ -1,17 +1,17 @@ import { Nullish } from "builder-util-runtime" import { TmpDir } from "temp-file" -import { NpmNodeModulesCollector } from "./npmNodeModulesCollector" -import { detectPackageManager, getPackageManagerCommand, PM } from "./packageManager" -import { PnpmNodeModulesCollector } from "./pnpmNodeModulesCollector" -import { NodeModuleInfo } from "./types" -import { YarnBerryNodeModulesCollector } from "./yarnBerryNodeModulesCollector" -import { YarnNodeModulesCollector } from "./yarnNodeModulesCollector" -import { BunNodeModulesCollector } from "./bunNodeModulesCollector" +import { NpmNodeModulesCollector } from "./npmNodeModulesCollector.js" +import { detectPackageManager, getPackageManagerCommand, PM } from "./packageManager.js" +import { PnpmNodeModulesCollector } from "./pnpmNodeModulesCollector.js" +import { NodeModuleInfo } from "./types.js" +import { YarnBerryNodeModulesCollector } from "./yarnBerryNodeModulesCollector.js" +import { YarnNodeModulesCollector } from "./yarnNodeModulesCollector.js" +import { BunNodeModulesCollector } from "./bunNodeModulesCollector.js" import { Lazy } from "lazy-val" import { spawn, log, exists, isEmptyOrSpaces } from "builder-util" import * as fs from "fs-extra" import * as path from "path" -import { TraversalNodeModulesCollector } from "./traversalNodeModulesCollector" +import { TraversalNodeModulesCollector } from "./traversalNodeModulesCollector.js" export { getPackageManagerCommand, PM } diff --git a/packages/app-builder-lib/src/node-module-collector/nodeModulesCollector.ts b/packages/app-builder-lib/src/node-module-collector/nodeModulesCollector.ts index ce0c6110f7a..352f2838e53 100644 --- a/packages/app-builder-lib/src/node-module-collector/nodeModulesCollector.ts +++ b/packages/app-builder-lib/src/node-module-collector/nodeModulesCollector.ts @@ -4,10 +4,10 @@ import * as fs from "fs-extra" import { createWriteStream } from "fs-extra" import { Lazy } from "lazy-val" import * as path from "path" -import { hoist, type HoisterResult, type HoisterTree } from "./hoist" -import { ModuleManager } from "./moduleManager" -import { getPackageManagerCommand, PM } from "./packageManager" -import type { Dependency, DependencyGraph, NodeModuleInfo, PackageJson } from "./types" +import { hoist, type HoisterResult, type HoisterTree } from "./hoist.js" +import { ModuleManager } from "./moduleManager.js" +import { getPackageManagerCommand, PM } from "./packageManager.js" +import type { Dependency, DependencyGraph, NodeModuleInfo, PackageJson } from "./types.js" export abstract class NodeModulesCollector, OptionalDepType> { private readonly nodeModules: NodeModuleInfo[] = [] diff --git a/packages/app-builder-lib/src/node-module-collector/pnpmNodeModulesCollector.ts b/packages/app-builder-lib/src/node-module-collector/pnpmNodeModulesCollector.ts index df013b712a4..dcecf2494d2 100644 --- a/packages/app-builder-lib/src/node-module-collector/pnpmNodeModulesCollector.ts +++ b/packages/app-builder-lib/src/node-module-collector/pnpmNodeModulesCollector.ts @@ -1,7 +1,7 @@ import { log } from "builder-util" -import { NodeModulesCollector } from "./nodeModulesCollector" -import { PM } from "./packageManager" -import { PnpmDependency } from "./types" +import { NodeModulesCollector } from "./nodeModulesCollector.js" +import { PM } from "./packageManager.js" +import { PnpmDependency } from "./types.js" export class PnpmNodeModulesCollector extends NodeModulesCollector { public readonly installOptions = { diff --git a/packages/app-builder-lib/src/node-module-collector/traversalNodeModulesCollector.ts b/packages/app-builder-lib/src/node-module-collector/traversalNodeModulesCollector.ts index 1feaa32f096..5eab23ec394 100644 --- a/packages/app-builder-lib/src/node-module-collector/traversalNodeModulesCollector.ts +++ b/packages/app-builder-lib/src/node-module-collector/traversalNodeModulesCollector.ts @@ -1,5 +1,5 @@ import { log } from "builder-util" -import { NodeModulesCollector } from "./nodeModulesCollector" +import { NodeModulesCollector } from "./nodeModulesCollector.js" import { PM } from "./packageManager.js" import { TraversedDependency } from "./types.js" import * as path from "path" diff --git a/packages/app-builder-lib/src/node-module-collector/yarnBerryNodeModulesCollector.ts b/packages/app-builder-lib/src/node-module-collector/yarnBerryNodeModulesCollector.ts index d952c85501e..ba141f38f68 100644 --- a/packages/app-builder-lib/src/node-module-collector/yarnBerryNodeModulesCollector.ts +++ b/packages/app-builder-lib/src/node-module-collector/yarnBerryNodeModulesCollector.ts @@ -1,8 +1,8 @@ import { log } from "builder-util" import { Lazy } from "lazy-val" -import { NpmNodeModulesCollector } from "./npmNodeModulesCollector" -import { PM } from "./packageManager" -import { NpmDependency } from "./types" +import { NpmNodeModulesCollector } from "./npmNodeModulesCollector.js" +import { PM } from "./packageManager.js" +import { NpmDependency } from "./types.js" type YarnSetupInfo = { yarnVersion: string | null diff --git a/packages/app-builder-lib/src/node-module-collector/yarnNodeModulesCollector.ts b/packages/app-builder-lib/src/node-module-collector/yarnNodeModulesCollector.ts index aab99cb3a30..59baef9d3db 100644 --- a/packages/app-builder-lib/src/node-module-collector/yarnNodeModulesCollector.ts +++ b/packages/app-builder-lib/src/node-module-collector/yarnNodeModulesCollector.ts @@ -1,9 +1,9 @@ import { log } from "builder-util" import { Lazy } from "lazy-val" import * as path from "path" -import { NodeModulesCollector } from "./nodeModulesCollector" -import { PM } from "./packageManager" -import { YarnDependency } from "./types" +import { NodeModulesCollector } from "./nodeModulesCollector.js" +import { PM } from "./packageManager.js" +import { YarnDependency } from "./types.js" type YarnListJsonLine = | { diff --git a/packages/app-builder-lib/src/publish/PublishManager.ts b/packages/app-builder-lib/src/publish/PublishManager.ts index 37885faaf01..1f1ec047ebe 100644 --- a/packages/app-builder-lib/src/publish/PublishManager.ts +++ b/packages/app-builder-lib/src/publish/PublishManager.ts @@ -29,20 +29,20 @@ import { SpacesPublisher, UploadTask, } from "electron-publish" -import { MultiProgress } from "electron-publish/out/multiProgress" +import { MultiProgress } from "electron-publish/out/multiProgress.js" import { writeFile } from "fs/promises" import { isCI } from "ci-info" import * as path from "path" import { WriteStream as TtyWriteStream } from "tty" import * as url from "url" -import { AppInfo, ArtifactCreated, Configuration, Platform, PlatformSpecificBuildOptions, Target, TargetSpecificOptions } from "../index" -import { Packager } from "../packager" -import { PlatformPackager } from "../platformPackager" -import { expandMacro } from "../util/macroExpander" -import { WinPackager } from "../winPackager" -import { createUpdateInfoTasks, UpdateInfoFileTask, writeUpdateInfoFiles } from "./updateInfoBuilder" -import { resolveModule } from "../util/resolve" -import { parseUrl } from "../util/pathManager" +import { AppInfo, ArtifactCreated, Configuration, Platform, PlatformSpecificBuildOptions, Target, TargetSpecificOptions } from "../index.js" +import { Packager } from "../packager.js" +import { PlatformPackager } from "../platformPackager.js" +import { expandMacro } from "../util/macroExpander.js" +import { WinPackager } from "../winPackager.js" +import { createUpdateInfoTasks, UpdateInfoFileTask, writeUpdateInfoFiles } from "./updateInfoBuilder.js" +import { resolveModule } from "../util/resolve.js" +import { parseUrl } from "../util/pathManager.js" const publishForPrWarning = "There are serious security concerns with PUBLISH_FOR_PULL_REQUEST=true (see the CircleCI documentation (https://circleci.com/docs/1.0/fork-pr-builds/) for details)" + diff --git a/packages/app-builder-lib/src/targets/AppImageTarget.ts b/packages/app-builder-lib/src/targets/AppImageTarget.ts index a73281ffd39..22ad5068d8f 100644 --- a/packages/app-builder-lib/src/targets/AppImageTarget.ts +++ b/packages/app-builder-lib/src/targets/AppImageTarget.ts @@ -23,7 +23,7 @@ export default class AppImageTarget extends Target { readonly outDir: string ) { super("appImage") - this.options = { ...this.packager.platformSpecificBuildOptions, ...(this.packager.config as any)[this.name] } + this.options = { ...this.packager.platformSpecificBuildOptions, ...(this.packager.config as any)[this.name] } this.desktopEntry = new Lazy(() => { const args = this.options.executableArgs?.join(" ") || "--no-sandbox" diff --git a/packages/app-builder-lib/src/targets/ArchiveTarget.ts b/packages/app-builder-lib/src/targets/ArchiveTarget.ts index 14f305fd3e2..581c40645e2 100644 --- a/packages/app-builder-lib/src/targets/ArchiveTarget.ts +++ b/packages/app-builder-lib/src/targets/ArchiveTarget.ts @@ -16,7 +16,7 @@ export class ArchiveTarget extends Target { private readonly isWriteUpdateInfo = false ) { super(name) - this.options = (this.packager.config as any)[this.name] + this.options = (this.packager.config as any)[this.name] } async build(appOutDir: string, arch: Arch): Promise { diff --git a/packages/app-builder-lib/src/targets/FlatpakTarget.ts b/packages/app-builder-lib/src/targets/FlatpakTarget.ts index b05937c7bc1..f776d3e3bd8 100644 --- a/packages/app-builder-lib/src/targets/FlatpakTarget.ts +++ b/packages/app-builder-lib/src/targets/FlatpakTarget.ts @@ -2,12 +2,12 @@ import { bundle as bundleFlatpak, FlatpakBundlerBuildOptions, FlatpakManifest } import { Arch, copyFile, toLinuxArchString } from "builder-util" import { chmod, outputFile } from "fs-extra" import * as path from "path" -import { Target } from "../core" -import { LinuxPackager } from "../linuxPackager" -import { FlatpakOptions } from "../options/linuxOptions" -import { getNotLocalizedLicenseFile } from "../util/license" -import { LinuxTargetHelper } from "./LinuxTargetHelper" -import { createStageDir, StageDir } from "./targetUtil" +import { Target } from "../core.js" +import { LinuxPackager } from "../linuxPackager.js" +import { FlatpakOptions } from "../options/linuxOptions.js" +import { getNotLocalizedLicenseFile } from "../util/license.js" +import { LinuxTargetHelper } from "./LinuxTargetHelper.js" +import { createStageDir, StageDir } from "./targetUtil.js" import { Nullish } from "builder-util-runtime" export default class FlatpakTarget extends Target { @@ -21,9 +21,9 @@ export default class FlatpakTarget extends Target { ) { super(name) this.options = { - ...this.packager.platformSpecificBuildOptions, - ...(this.packager.config as any)[this.name], - } + ...this.packager.platformSpecificBuildOptions, + ...(this.packager.config as any)[this.name], + } } get appId(): string { diff --git a/packages/app-builder-lib/src/targets/archive.ts b/packages/app-builder-lib/src/targets/archive.ts index 5114fd7fff8..60110ad17f8 100644 --- a/packages/app-builder-lib/src/targets/archive.ts +++ b/packages/app-builder-lib/src/targets/archive.ts @@ -3,8 +3,8 @@ import { move } from "fs-extra" import * as path from "path" import { create, TarOptionsWithAliasesAsync } from "tar" import { TmpDir } from "temp-file" -import { CompressionLevel } from "../core" -import { getLinuxToolsPath } from "./tools" +import { CompressionLevel } from "../core.js" +import { getLinuxToolsPath } from "./tools.js" /** @internal */ export async function tar(compression: CompressionLevel | any, format: string, outFile: string, dirToArchive: string, isMacApp: boolean, tempDirManager: TmpDir): Promise { diff --git a/packages/app-builder-lib/src/targets/pkg.ts b/packages/app-builder-lib/src/targets/pkg.ts index eba3a4fa04b..d78d9e0edeb 100644 --- a/packages/app-builder-lib/src/targets/pkg.ts +++ b/packages/app-builder-lib/src/targets/pkg.ts @@ -47,11 +47,11 @@ export class PkgTarget extends Target { ) { super("pkg") this.options = { - allowAnywhere: true, - allowCurrentUserHome: true, - allowRootDirectory: true, - ...this.packager.config.pkg, - } + allowAnywhere: true, + allowCurrentUserHome: true, + allowRootDirectory: true, + ...this.packager.config.pkg, + } } async build(appPath: string, arch: Arch): Promise { diff --git a/packages/app-builder-lib/src/util/appFileCopier.ts b/packages/app-builder-lib/src/util/appFileCopier.ts index db7844abb64..28edf08aacc 100644 --- a/packages/app-builder-lib/src/util/appFileCopier.ts +++ b/packages/app-builder-lib/src/util/appFileCopier.ts @@ -4,16 +4,16 @@ import { ensureSymlink } from "fs-extra" import { mkdir, readlink } from "fs/promises" import * as path from "path" import asyncPool from "tiny-async-pool" -import { isLibOrExe } from "../asar/unpackDetector" -import { Platform } from "../core" -import { excludedExts, FileMatcher } from "../fileMatcher" -import { createElectronCompilerHost, NODE_MODULES_PATTERN } from "../fileTransformer" -import { Packager } from "../packager" -import { PlatformPackager } from "../platformPackager" -import { AppFileWalker } from "./AppFileWalker" -import { NodeModuleCopyHelper } from "./NodeModuleCopyHelper" -import { NodeModuleInfo } from "./packageDependencies" -import { getNodeModules, PM } from "../node-module-collector" +import { isLibOrExe } from "../asar/unpackDetector.js" +import { Platform } from "../core.js" +import { excludedExts, FileMatcher } from "../fileMatcher.js" +import { createElectronCompilerHost, NODE_MODULES_PATTERN } from "../fileTransformer.js" +import { Packager } from "../packager.js" +import { PlatformPackager } from "../platformPackager.js" +import { AppFileWalker } from "./AppFileWalker.js" +import { NodeModuleCopyHelper } from "./NodeModuleCopyHelper.js" +import { NodeModuleInfo } from "./packageDependencies.js" +import { getNodeModules, PM } from "../node-module-collector/index.js" const BOWER_COMPONENTS_PATTERN = `${path.sep}bower_components${path.sep}` /** @internal */ diff --git a/packages/app-builder-lib/src/util/normalizePackageData.ts b/packages/app-builder-lib/src/util/normalizePackageData.ts index ecb9db8cc67..38677340c1d 100644 --- a/packages/app-builder-lib/src/util/normalizePackageData.ts +++ b/packages/app-builder-lib/src/util/normalizePackageData.ts @@ -1,6 +1,6 @@ import { fromUrl } from "hosted-git-info" import * as semver from "semver" -import { parseUrl } from "./pathManager" +import { parseUrl } from "./pathManager.js" export function normalizePackageData(data: any) { for (const it of check) { diff --git a/packages/builder-util/package.json b/packages/builder-util/package.json index ea2aec37002..b40e6a4593c 100644 --- a/packages/builder-util/package.json +++ b/packages/builder-util/package.json @@ -1,7 +1,8 @@ { "name": "builder-util", "version": "26.4.1", - "main": "out/util.js", + "type": "module", + "exports": "./out/util.js", "author": "Vladimir Krivosheev", "license": "MIT", "repository": { diff --git a/packages/builder-util/src/util.ts b/packages/builder-util/src/util.ts index 475666e9fa5..15b9d42880f 100644 --- a/packages/builder-util/src/util.ts +++ b/packages/builder-util/src/util.ts @@ -19,19 +19,18 @@ export { getCompleteExtname, sanitizeFileName } from "./filename.js" export { safeStringifyJson, retry } from "builder-util-runtime" export { TmpDir } from "temp-file" export * from "./arch.js" -export { Arch, archFromString, ArchType, defaultArchFromString, getArchCliNames, getArchSuffix, toLinuxArchString } from "./arch" -export { AsyncTaskManager } from "./asyncTaskManager" -export { DebugLogger } from "./DebugLogger" -export * from "./log" -export { httpExecutor, NodeHttpExecutor } from "./nodeHttpExecutor" -export * from "./promise" - +export { Arch, archFromString, ArchType, defaultArchFromString, getArchCliNames, getArchSuffix, toLinuxArchString } from "./arch.js" +export { AsyncTaskManager } from "./asyncTaskManager.js" +export { DebugLogger } from "./DebugLogger.js" +export * from "./log.js" +export { httpExecutor, NodeHttpExecutor } from "./nodeHttpExecutor.js" +export * from "./promise.js" export { asArray } from "builder-util-runtime" -export * from "./fs" +export * from "./fs.js" -export { deepAssign } from "./deepAssign" +export { deepAssign } from "./deepAssign.js" -export { getPath7x, getPath7za } from "./7za" +export { getPath7x, getPath7za } from "./7za.js" export const debug7z = _debug("electron-builder:7z") diff --git a/packages/dmg-builder/package.json b/packages/dmg-builder/package.json index 2c7f7b5133c..59394ec7005 100644 --- a/packages/dmg-builder/package.json +++ b/packages/dmg-builder/package.json @@ -1,7 +1,8 @@ { "name": "dmg-builder", "version": "26.6.0", - "main": "out/dmgUtil.js", + "type": "module", + "exports": "./out/dmgUtil.js", "author": "Vladimir Krivosheev", "license": "MIT", "repository": { diff --git a/packages/dmg-builder/src/dmg.ts b/packages/dmg-builder/src/dmg.ts index 215b5a09d82..10d7fbf6add 100644 --- a/packages/dmg-builder/src/dmg.ts +++ b/packages/dmg-builder/src/dmg.ts @@ -54,7 +54,7 @@ export class DmgTarget extends Target { readonly outDir: string ) { super("dmg") - this.options = this.packager.config.dmg || Object.create(null) + this.options = this.packager.config.dmg || Object.create(null) } async build(appPath: string, arch: Arch) { diff --git a/packages/dmg-builder/src/dmgUtil.ts b/packages/dmg-builder/src/dmgUtil.ts index 6d29f4e6bc9..91c588212e1 100644 --- a/packages/dmg-builder/src/dmgUtil.ts +++ b/packages/dmg-builder/src/dmgUtil.ts @@ -1,12 +1,12 @@ import { DmgOptions, MacPackager, PlatformPackager } from "app-builder-lib" -import { downloadArtifact } from "app-builder-lib/out/binDownload" +import { downloadArtifact } from "app-builder-lib" import { exec, executeFinally, exists, isEmptyOrSpaces, TmpDir } from "builder-util" import { writeFile } from "fs-extra" import * as path from "path" -import { DmgBuildConfig } from "./dmg" -import { hdiUtil, hdiutilTransientExitCodes } from "./hdiuil" +import { DmgBuildConfig } from "./dmg.js" +import { hdiUtil, hdiutilTransientExitCodes } from "./hdiuil.js" -export { DmgTarget } from "./dmg" +export { DmgTarget } from "./dmg.js" const root = path.join(__dirname, "..") diff --git a/packages/electron-builder-squirrel-windows/package.json b/packages/electron-builder-squirrel-windows/package.json index e9cf41ab0d6..b1a23cce1b8 100644 --- a/packages/electron-builder-squirrel-windows/package.json +++ b/packages/electron-builder-squirrel-windows/package.json @@ -1,7 +1,8 @@ { "name": "electron-builder-squirrel-windows", "version": "26.6.0", - "main": "out/SquirrelWindowsTarget.js", + "type": "module", + "exports": "./out/SquirrelWindowsTarget.js", "author": "Vladimir Krivosheev", "license": "MIT", "repository": { diff --git a/packages/electron-builder/package.json b/packages/electron-builder/package.json index 3e3eb4ad7a3..75f8f4dc3a4 100644 --- a/packages/electron-builder/package.json +++ b/packages/electron-builder/package.json @@ -2,7 +2,8 @@ "name": "electron-builder", "description": "A complete solution to package and build a ready for distribution Electron app for MacOS, Windows and Linux with “auto update” support out of the box", "version": "26.6.0", - "main": "out/index.js", + "type": "module", + "exports": "./out/index.js", "files": [ "out" ], diff --git a/packages/electron-builder/src/builder.ts b/packages/electron-builder/src/builder.ts index 3ef9d9992f1..d28f3e37dcc 100644 --- a/packages/electron-builder/src/builder.ts +++ b/packages/electron-builder/src/builder.ts @@ -3,7 +3,7 @@ import { addValue, Arch, archFromString, deepAssign } from "builder-util" import * as chalk from "chalk" import { PublishOptions } from "electron-publish" import yargs, { Argv } from "yargs" -import { hideBin } from 'yargs/helpers'; +import { hideBin } from "yargs/helpers" export function createYargs(): Argv { return yargs(hideBin(process.argv)).parserConfiguration({ diff --git a/packages/electron-builder/src/publish.ts b/packages/electron-builder/src/publish.ts index a05ef9855e2..fb9d1360b75 100644 --- a/packages/electron-builder/src/publish.ts +++ b/packages/electron-builder/src/publish.ts @@ -8,7 +8,7 @@ import { InvalidConfigurationError, archFromString, log, printErrorAndExit } fro import { PublishPolicy } from "electron-publish" import * as chalk from "chalk" import * as path from "path" -import { Argv } from "yargs" +import { Argv } from "yargs" import { BuildOptions, createYargs, normalizeOptions } from "./builder.js" /** @internal */ diff --git a/packages/electron-forge-maker-appimage/package.json b/packages/electron-forge-maker-appimage/package.json index cb3c55b174a..f8c69a540bb 100644 --- a/packages/electron-forge-maker-appimage/package.json +++ b/packages/electron-forge-maker-appimage/package.json @@ -1,7 +1,8 @@ { "name": "electron-forge-maker-appimage", "version": "26.6.0", - "main": "main.js", + "type": "module", + "exports": "./main.js", "author": "Vladimir Krivosheev", "license": "MIT", "repository": { diff --git a/packages/electron-forge-maker-nsis-web/package.json b/packages/electron-forge-maker-nsis-web/package.json index 81b2236f1e9..cffff1366ef 100644 --- a/packages/electron-forge-maker-nsis-web/package.json +++ b/packages/electron-forge-maker-nsis-web/package.json @@ -1,7 +1,8 @@ { "name": "electron-forge-maker-nsis-web", "version": "26.6.0", - "main": "main.js", + "type": "module", + "exports": "./main.js", "author": "Vladimir Krivosheev", "license": "MIT", "repository": { diff --git a/packages/electron-forge-maker-nsis/package.json b/packages/electron-forge-maker-nsis/package.json index c1cf75490f7..6f3b85d1731 100644 --- a/packages/electron-forge-maker-nsis/package.json +++ b/packages/electron-forge-maker-nsis/package.json @@ -1,7 +1,8 @@ { "name": "electron-forge-maker-nsis", "version": "26.6.0", - "main": "main.js", + "type": "module", + "exports": "./main.js", "author": "Vladimir Krivosheev", "license": "MIT", "repository": { diff --git a/packages/electron-forge-maker-snap/package.json b/packages/electron-forge-maker-snap/package.json index 5b7d7fe6bde..ebbc4e18931 100644 --- a/packages/electron-forge-maker-snap/package.json +++ b/packages/electron-forge-maker-snap/package.json @@ -1,7 +1,8 @@ { "name": "electron-forge-maker-snap", "version": "26.6.0", - "main": "main.js", + "type": "module", + "exports": "./main.js", "author": "Vladimir Krivosheev", "license": "MIT", "repository": { diff --git a/packages/electron-publish/package.json b/packages/electron-publish/package.json index d744804ef36..dc451daafe9 100644 --- a/packages/electron-publish/package.json +++ b/packages/electron-publish/package.json @@ -1,7 +1,8 @@ { "name": "electron-publish", "version": "26.6.0", - "main": "out/index.js", + "type": "module", + "exports": "./out/index.js", "author": "Vladimir Krivosheev", "license": "MIT", "repository": { diff --git a/packages/electron-updater/src/main.ts b/packages/electron-updater/src/main.ts index a398a8a0c39..f766ec15a19 100644 --- a/packages/electron-updater/src/main.ts +++ b/packages/electron-updater/src/main.ts @@ -9,7 +9,6 @@ import { UpdateInfo } from "builder-util-runtime" export { BaseUpdater } from "./BaseUpdater.js" export { AppUpdater, NoOpLogger, TestOnlyUpdaterOptions } from "./AppUpdater.js" - export { AppImageUpdater } from "./AppImageUpdater.js" export { DebUpdater } from "./DebUpdater.js" export { PacmanUpdater } from "./PacmanUpdater.js" @@ -17,12 +16,10 @@ export { RpmUpdater } from "./RpmUpdater.js" export { MacUpdater } from "./MacUpdater.js" export { NsisUpdater } from "./NsisUpdater.js" - export { Provider } from "./providers/Provider.js" export { GitHubProvider } from "./providers/GitHubProvider.js" export { GitLabProvider } from "./providers/GitLabProvider.js" - export * from "./types.js" export * as utils from "./util.js" diff --git a/test/src/helpers/CheckingPackager.ts b/test/src/helpers/CheckingPackager.ts index db341a3e89c..303ac224f37 100644 --- a/test/src/helpers/CheckingPackager.ts +++ b/test/src/helpers/CheckingPackager.ts @@ -17,7 +17,7 @@ export class CheckingWinPackager extends WinPackager { //noinspection JSUnusedLocalSymbols async pack(outDir: string, arch: Arch, targets: Array, taskManager: AsyncTaskManager): Promise { // skip pack - const helperClass = (await import("electron-builder-squirrel-windows")).default + const helperClass = (await import("electron-builder-squirrel-windows")).default const newClass = new (helperClass as any)(this, outDir) const setupFile = this.expandArtifactNamePattern(newClass.options, "exe", arch, "${productName} Setup ${version}.${ext}") const installerOutDir = path.join(outDir, `squirrel-windows${getArchSuffix(arch)}`) From 0640b3c8fd7b6daecc55227f7a7090fb0f749df9 Mon Sep 17 00:00:00 2001 From: Mike Maietta Date: Wed, 28 Jan 2026 01:04:07 -0800 Subject: [PATCH 14/61] tmp save --- packages/app-builder-lib/tsconfig.json | 5 ----- packages/builder-util-runtime/tsconfig.json | 5 ----- packages/builder-util/tsconfig.json | 6 +----- packages/dmg-builder/tsconfig.json | 5 ----- packages/electron-builder-squirrel-windows/tsconfig.json | 5 ----- packages/electron-builder/tsconfig.json | 5 ----- packages/electron-publish/tsconfig.json | 4 ---- packages/electron-updater/tsconfig.json | 5 ----- 8 files changed, 1 insertion(+), 39 deletions(-) diff --git a/packages/app-builder-lib/tsconfig.json b/packages/app-builder-lib/tsconfig.json index 9c8c13598e0..8a3a77df391 100644 --- a/packages/app-builder-lib/tsconfig.json +++ b/packages/app-builder-lib/tsconfig.json @@ -1,10 +1,5 @@ { "extends": "./tsconfig-scheme.json", - "jsdoc": { - "out": "../../scripts/jsdoc/out/builder-lib", - "examples": "../../scripts/jsdoc/examples", - "access": "public" - }, "compilerOptions": { "outDir": "out", "rootDir": "src", diff --git a/packages/builder-util-runtime/tsconfig.json b/packages/builder-util-runtime/tsconfig.json index ccba996ab8d..71504d14a7b 100644 --- a/packages/builder-util-runtime/tsconfig.json +++ b/packages/builder-util-runtime/tsconfig.json @@ -5,11 +5,6 @@ "outDir": "out", "rootDir": "src" }, - "jsdoc": { - "out": "../../scripts/jsdoc/out/builder-util-runtime", - "examples": "../../scripts/jsdoc/examples", - "access": "public" - }, "include": [ "src/**/*.ts" ] diff --git a/packages/builder-util/tsconfig.json b/packages/builder-util/tsconfig.json index 0b6f6190a3b..8e94f1ec546 100644 --- a/packages/builder-util/tsconfig.json +++ b/packages/builder-util/tsconfig.json @@ -11,9 +11,5 @@ { "path": "../builder-util-runtime" } - ], - "jsdoc": { - "out": "../../scripts/jsdoc/out/util", - "access": "public" - } + ] } \ No newline at end of file diff --git a/packages/dmg-builder/tsconfig.json b/packages/dmg-builder/tsconfig.json index b78528697b3..467818ca969 100644 --- a/packages/dmg-builder/tsconfig.json +++ b/packages/dmg-builder/tsconfig.json @@ -4,11 +4,6 @@ "outDir": "out", "rootDir": "src" }, - "jsdoc": { - "out": "../../scripts/jsdoc/out/dmg-builder", - "examples": "../../scripts/jsdoc/examples", - "access": "public" - }, "references": [ { "path": "../app-builder-lib" diff --git a/packages/electron-builder-squirrel-windows/tsconfig.json b/packages/electron-builder-squirrel-windows/tsconfig.json index c09a92f11c5..e569ae0df14 100644 --- a/packages/electron-builder-squirrel-windows/tsconfig.json +++ b/packages/electron-builder-squirrel-windows/tsconfig.json @@ -1,10 +1,5 @@ { "extends": "../tsconfig-base.json", - "jsdoc": { - "out": "../../scripts/jsdoc/out/builder-lib", - "examples": "../../scripts/jsdoc/examples", - "access": "public" - }, "compilerOptions": { "outDir": "out", "rootDir": "src" diff --git a/packages/electron-builder/tsconfig.json b/packages/electron-builder/tsconfig.json index 8a55ef2a447..488b8196b73 100644 --- a/packages/electron-builder/tsconfig.json +++ b/packages/electron-builder/tsconfig.json @@ -18,11 +18,6 @@ "path": "../dmg-builder" } ], - "jsdoc": { - "out": "../../scripts/jsdoc/out/builder", - "examples": "../../scripts/jsdoc/examples", - "access": "public" - }, "include": [ "src/**/*.ts", "../../typings/*.d.ts" diff --git a/packages/electron-publish/tsconfig.json b/packages/electron-publish/tsconfig.json index 1d0ee3793fa..b93de9858f7 100644 --- a/packages/electron-publish/tsconfig.json +++ b/packages/electron-publish/tsconfig.json @@ -12,10 +12,6 @@ "path": "../builder-util-runtime" } ], - "jsdoc": { - "out": "../../scripts/jsdoc/out/index", - "access": "public" - }, "include": [ "src/**/*.ts", "../../typings/mime.d.ts" diff --git a/packages/electron-updater/tsconfig.json b/packages/electron-updater/tsconfig.json index c92cd864271..73b4f114577 100644 --- a/packages/electron-updater/tsconfig.json +++ b/packages/electron-updater/tsconfig.json @@ -4,11 +4,6 @@ "outDir": "out", "rootDir": "src" }, - "jsdoc": { - "out": "../../scripts/jsdoc/out/updater", - "examples": "../../scripts/jsdoc/examples", - "access": "public" - }, "files": [ ], "include": [ From ee370b1b136c43b85f2bc43bb24fc53ed277d4a5 Mon Sep 17 00:00:00 2001 From: Mike Maietta Date: Wed, 28 Jan 2026 01:06:02 -0800 Subject: [PATCH 15/61] tmp save --- packages/app-builder-lib/package.json | 2 +- packages/electron-builder/cli.js | 3 +-- packages/electron-builder/install-app-deps.js | 3 +-- packages/electron-builder/package.json | 2 +- 4 files changed, 4 insertions(+), 6 deletions(-) diff --git a/packages/app-builder-lib/package.json b/packages/app-builder-lib/package.json index 15c07bf6a9a..9822c93fc61 100644 --- a/packages/app-builder-lib/package.json +++ b/packages/app-builder-lib/package.json @@ -17,7 +17,7 @@ "directory": "packages/app-builder-lib" }, "engines": { - "node": ">=14.0.0" + "node": ">=22.12.0" }, "keywords": [ "electron", diff --git a/packages/electron-builder/cli.js b/packages/electron-builder/cli.js index 90282b0ce4c..11c9d2f0f67 100755 --- a/packages/electron-builder/cli.js +++ b/packages/electron-builder/cli.js @@ -1,4 +1,3 @@ #!/usr/bin/env node -// https://github.com/pnpm/pnpm/issues/1801 -require("./out/cli/cli") +import("./out/cli/cli") diff --git a/packages/electron-builder/install-app-deps.js b/packages/electron-builder/install-app-deps.js index 65a838b4e18..a616261e554 100755 --- a/packages/electron-builder/install-app-deps.js +++ b/packages/electron-builder/install-app-deps.js @@ -1,4 +1,3 @@ #!/usr/bin/env node -// https://github.com/pnpm/pnpm/issues/1801 -require("./out/cli/install-app-deps") +import("./out/cli/install-app-deps") diff --git a/packages/electron-builder/package.json b/packages/electron-builder/package.json index 75f8f4dc3a4..6bfa1518245 100644 --- a/packages/electron-builder/package.json +++ b/packages/electron-builder/package.json @@ -17,7 +17,7 @@ "directory": "packages/electron-builder" }, "engines": { - "node": ">=14.0.0" + "node": ">=22.12.0" }, "keywords": [ "electron", From 0abd6fa633115c1aaf09f426f6defd07767d7d61 Mon Sep 17 00:00:00 2001 From: Mike Maietta Date: Wed, 28 Jan 2026 01:10:34 -0800 Subject: [PATCH 16/61] compiles --- packages/electron-builder/package.json | 1 + pnpm-lock.yaml | 3 +++ 2 files changed, 4 insertions(+) diff --git a/packages/electron-builder/package.json b/packages/electron-builder/package.json index 6bfa1518245..a81320a72a5 100644 --- a/packages/electron-builder/package.json +++ b/packages/electron-builder/package.json @@ -58,6 +58,7 @@ "chalk": "^4.1.2", "ci-info": "^4.2.0", "dmg-builder": "workspace:*", + "electron-publish": "workspace:*", "fs-extra": "^10.1.0", "lazy-val": "^1.0.5", "simple-update-notifier": "2.0.0", diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index d6dfd4f8a76..7476a0d96a3 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -442,6 +442,9 @@ importers: dmg-builder: specifier: workspace:* version: link:../dmg-builder + electron-publish: + specifier: workspace:* + version: link:../electron-publish fs-extra: specifier: ^10.1.0 version: 10.1.0 From dd5618d883846109bede51b55770cfe3b206ae1e Mon Sep 17 00:00:00 2001 From: Mike Maietta Date: Wed, 28 Jan 2026 14:11:13 -0800 Subject: [PATCH 17/61] regenerating schema using updated/fixed schema generator script --- package.json | 2 +- packages/app-builder-lib/scheme.json | 10882 ++++++++++--------------- scripts/fix-schema.js | 38 - scripts/generate-schema.ts | 23 +- 4 files changed, 4162 insertions(+), 6783 deletions(-) delete mode 100644 scripts/fix-schema.js diff --git a/package.json b/package.json index 7a0fb2ea085..7c0ef40a474 100644 --- a/package.json +++ b/package.json @@ -18,7 +18,7 @@ "docker-push": "docker/push.sh", "changelog": "conventional-changelog -p angular -i CHANGELOG.md -s && git add CHANGELOG.md", "generate-changeset": "pnpm changeset", - "generate-schema": "typescript-json-schema packages/app-builder-lib/tsconfig-scheme.json Configuration --out packages/app-builder-lib/scheme.json --noExtraProps --useTypeOfKeyword --strictNullChecks --required && node ./scripts/fix-schema.js", + "generate-schema": "ts-node scripts/generate-schema.ts", "generate-all": "pnpm generate-schema && pnpm prettier", "ci:test": "vitest run", "ci:version": "pnpm i && pnpm changelog && changeset version && node scripts/update-package-version-export.js && pnpm compile && pnpm generate-all && git add .", diff --git a/packages/app-builder-lib/scheme.json b/packages/app-builder-lib/scheme.json index 735d7e8e51c..ce9923323a6 100644 --- a/packages/app-builder-lib/scheme.json +++ b/packages/app-builder-lib/scheme.json @@ -1,7928 +1,5340 @@ { - "$schema": "http://json-schema.org/draft-07/schema#", - "additionalProperties": false, - "definitions": { - "AllPublishOptions": { + "type": "object", + "properties": { + "electronCompile": { + "description": "Whether to use [electron-compile](http://github.com/electron/electron-compile) to compile app. Defaults to `true` if `electron-compile` in the dependencies. And `false` if in the `devDependencies` or doesn't specified.", + "type": "boolean" + }, + "electronDownload": { + "$ref": "#/definitions/ElectronDownloadOptions", + "description": "The [electron-download](https://github.com/electron-userland/electron-download#usage) options." + }, + "electronBranding": { + "$ref": "#/definitions/ElectronBrandingOptions", + "description": "The branding used by Electron's distributables. This is needed if a fork has modified Electron's BRANDING.json file." + }, + "electronVersion": { + "description": "The version of electron you are packaging for. Defaults to version of `electron`, `electron-prebuilt` or `electron-prebuilt-compile` dependency.", + "type": "string" + }, + "extends": { + "description": "The name of a built-in configuration preset (currently, only `react-cra` is supported) or any number of paths to config files (relative to project dir).\n\nThe latter allows to mixin a config from multiple other configs, as if you `Object.assign` them, but properly combine `files` glob patterns.\n\nIf `react-scripts` in the app dependencies, `react-cra` will be set automatically. Set to `null` to disable automatic detection.", "anyOf": [ { - "$ref": "#/definitions/GithubOptions" + "type": "array", + "items": { + "type": "string" + } }, { - "$ref": "#/definitions/GitlabOptions" - }, + "type": "string" + } + ] + }, + "nodeVersion": { + "description": "*libui-based frameworks only* The version of NodeJS you are packaging for.\nYou can set it to `current` to set the Node.js version that you use to run.", + "type": "string" + }, + "launchUiVersion": { + "description": "*libui-based frameworks only* The version of LaunchUI you are packaging for. Applicable for Windows only. Defaults to version suitable for used framework version.", + "type": [ + "string", + "boolean" + ] + }, + "framework": { + "description": "The framework name. One of `electron`, `proton`, `libui`. Defaults to `electron`.", + "type": "string" + }, + "disableSanityCheckAsar": { + "description": "Whether to disable sanity check asar package (useful for custom electron forks that implement their own encrypted integrity validation)", + "default": false, + "type": "boolean" + }, + "appId": { + "description": "The application id. Used as [CFBundleIdentifier](https://developer.apple.com/library/ios/documentation/General/Reference/InfoPlistKeyReference/Articles/CoreFoundationKeys.html#//apple_ref/doc/uid/20001431-102070) for MacOS and as\n[Application User Model ID](https://msdn.microsoft.com/en-us/library/windows/desktop/dd378459(v=vs.85).aspx) for Windows (NSIS target only, Squirrel.Windows not supported). It is strongly recommended that an explicit ID is set.", + "default": "com.electron.${name}", + "type": "string" + }, + "productName": { + "description": "As [name](#metadata), but allows you to specify a product name for your executable which contains spaces and other special characters not allowed in the [name property](https://docs.npmjs.com/files/package.json#name).\nIf not specified inside of the `build` configuration, `productName` property defined at the top level of `package.json` is used. If not specified at the top level of `package.json`, [name property](https://docs.npmjs.com/files/package.json#name) is used.", + "type": "string" + }, + "copyright": { + "description": "The human-readable copyright line for the app.", + "default": "Copyright © year ${author}", + "type": "string" + }, + "directories": { + "$ref": "#/definitions/MetadataDirectories", + "description": "Directories for build resources" + }, + "mac": { + "$ref": "#/definitions/MacConfiguration", + "description": "Options related to how build macOS targets." + }, + "mas": { + "$ref": "#/definitions/MasConfiguration", + "description": "MAS (Mac Application Store) options." + }, + "masDev": { + "$ref": "#/definitions/MasConfiguration", + "description": "MAS (Mac Application Store) development options (`mas-dev` target)." + }, + "dmg": { + "$ref": "#/definitions/DmgOptions", + "description": "macOS DMG options." + }, + "pkg": { + "$ref": "#/definitions/PkgOptions", + "description": "macOS PKG options." + }, + "win": { + "$ref": "#/definitions/WindowsConfiguration", + "description": "Options related to how build Windows targets." + }, + "nsis": { + "$ref": "#/definitions/NsisOptions" + }, + "nsisWeb": { + "$ref": "#/definitions/NsisWebOptions" + }, + "portable": { + "$ref": "#/definitions/PortableOptions" + }, + "appx": { + "$ref": "#/definitions/AppXOptions" + }, + "msi": { + "$ref": "#/definitions/MsiOptions" + }, + "msiWrapped": { + "$ref": "#/definitions/MsiWrappedOptions" + }, + "squirrelWindows": { + "$ref": "#/definitions/SquirrelWindowsOptions" + }, + "linux": { + "$ref": "#/definitions/LinuxConfiguration", + "description": "Options related to how build Linux targets." + }, + "deb": { + "$ref": "#/definitions/DebOptions", + "description": "Debian package options." + }, + "snap": { + "$ref": "#/definitions/SnapOptions", + "description": "Snap options." + }, + "appImage": { + "$ref": "#/definitions/AppImageOptions", + "description": "AppImage options." + }, + "flatpak": { + "$ref": "#/definitions/FlatpakOptions", + "description": "Flatpak options." + }, + "pacman": { + "$ref": "#/definitions/LinuxTargetSpecificOptions" + }, + "rpm": { + "$ref": "#/definitions/LinuxTargetSpecificOptions" + }, + "freebsd": { + "$ref": "#/definitions/LinuxTargetSpecificOptions" + }, + "p5p": { + "$ref": "#/definitions/LinuxTargetSpecificOptions" + }, + "apk": { + "$ref": "#/definitions/LinuxTargetSpecificOptions" + }, + "buildDependenciesFromSource": { + "description": "Whether to build the application native dependencies from source.", + "default": false, + "type": "boolean" + }, + "nodeGypRebuild": { + "description": "Whether to execute `node-gyp rebuild` before starting to package the app.\n\nDon't [use](https://github.com/electron-userland/electron-builder/issues/683#issuecomment-241214075) [npm](http://electron.atom.io/docs/tutorial/using-native-node-modules/#using-npm) (neither `.npmrc`) for configuring electron headers. Use `electron-builder node-gyp-rebuild` instead.", + "default": false, + "type": "boolean" + }, + "npmArgs": { + "description": "Additional command line arguments to use when installing app native deps.", + "anyOf": [ { - "$ref": "#/definitions/S3Options" + "type": "array", + "items": { + "type": "string" + } }, { - "$ref": "#/definitions/SpacesOptions" - }, + "type": "string" + } + ] + }, + "npmRebuild": { + "description": "Whether to [rebuild](https://docs.npmjs.com/cli/rebuild) native dependencies before starting to package the app.", + "default": true, + "type": "boolean" + }, + "nativeRebuilder": { + "description": "Use `legacy` app-builder binary for installing native dependencies, or `@electron/rebuild` in `sequential` or `parallel` compilation modes.", + "default": "sequential", + "enum": [ + "legacy", + "parallel", + "sequential" + ], + "type": "string" + }, + "buildNumber": { + "description": "The build number. Maps to the `--iteration` flag for builds using FPM on Linux.\nIf not defined, then it will fallback to `BUILD_NUMBER` or `TRAVIS_BUILD_NUMBER` or `APPVEYOR_BUILD_NUMBER` or `CIRCLE_BUILD_NUM` or `BUILD_BUILDNUMBER` or `CI_PIPELINE_IID` env.", + "type": "string" + }, + "buildVersion": { + "description": "The build version. Maps to the `CFBundleVersion` on macOS, and `FileVersion` metadata property on Windows. Defaults to the `version`.\nIf `buildVersion` is not defined and `buildNumber` (or one of the `buildNumber` envs) is defined, it will be used as a build version (`version.buildNumber`).", + "type": "string" + }, + "downloadAlternateFFmpeg": { + "description": "Whether to download the alternate FFmpeg library from Electron's release assets and replace the default FFmpeg library prior to signing", + "type": "boolean" + }, + "extraMetadata": { + "description": "Inject properties to `package.json`." + }, + "forceCodeSigning": { + "description": "Whether to fail if the application is not signed (to prevent unsigned app if code signing configuration is not correct).", + "default": false, + "type": "boolean" + }, + "includePdb": { + "description": "Whether to include PDB files.", + "default": false, + "type": "boolean" + }, + "removePackageScripts": { + "description": "Whether to remove `scripts` field from `package.json` files.", + "default": true, + "type": "boolean" + }, + "removePackageKeywords": { + "description": "Whether to remove `keywords` field from `package.json` files.", + "default": true, + "type": "boolean" + }, + "electronFuses": { + "$ref": "#/definitions/FuseOptionsV1", + "description": "Options to pass to `@electron/fuses`\nRef: https://github.com/electron/fuses" + }, + "concurrency": { + "$ref": "#/definitions/Concurrency", + "description": "[Experimental] Configuration for concurrent builds." + }, + "artifactName": { + "description": "The [artifact file name template](./configuration.md#artifact-file-name-template). Defaults to `${productName}-${version}.${ext}` (some target can have other defaults, see corresponding options).", + "type": "string" + }, + "executableName": { + "description": "The executable name. Defaults to `productName`\nNote: Except for Linux, where this would constitute a breaking change in previous behavior and lead to both invalid executable names and Desktop files. Ref comments in: https://github.com/electron-userland/electron-builder/pull/9068", + "type": "string" + }, + "compression": { + "$ref": "#/definitions/CompressionLevel", + "description": "The compression level. If you want to rapidly test build, `store` can reduce build time significantly. `maximum` doesn't lead to noticeable size difference, but increase build time.", + "default": "normal" + }, + "disableDefaultIgnoredFiles": { + "description": "Whether to exclude all default ignored files(https://www.electron.build/contents#files) and options. Defaults to `false`.", + "default": false, + "type": "boolean" + }, + "asar": { + "description": "Whether to package the application's source code into an archive, using [Electron's archive format](http://electron.atom.io/docs/tutorial/application-packaging/).\n\nNode modules, that must be unpacked, will be detected automatically, you don't need to explicitly set [asarUnpack](#asarUnpack) - please file an issue if this doesn't work.", + "default": true, + "anyOf": [ { - "$ref": "#/definitions/GenericServerOptions" + "$ref": "#/definitions/AsarOptions" }, { - "$ref": "#/definitions/CustomPublishOptions" - }, + "type": "boolean" + } + ] + }, + "asarUnpack": { + "description": "A [glob patterns](./file-patterns.md) relative to the [app directory](#directories), which specifies which files to unpack when creating the [asar](http://electron.atom.io/docs/tutorial/application-packaging/) archive.", + "anyOf": [ { - "$ref": "#/definitions/KeygenOptions" + "type": "array", + "items": { + "type": "string" + } }, { - "$ref": "#/definitions/SnapStoreOptions" - }, + "type": "string" + } + ] + }, + "icon": { + "type": "string" + }, + "fileAssociations": { + "description": "The file associations.", + "anyOf": [ { - "$ref": "#/definitions/BitbucketOptions" + "$ref": "#/definitions/FileAssociation" }, { - "type": "string" + "type": "array", + "items": { + "$ref": "#/definitions/FileAssociation" + } } ] }, - "AppImageOptions": { - "additionalProperties": false, - "properties": { - "artifactName": { - "description": "The [artifact file name template](./configuration.md#artifact-file-name-template).", - "type": [ - "null", - "string" - ] - }, - "category": { - "description": "The [application category](https://specifications.freedesktop.org/menu-spec/latest/apa.html#main-category-registry).", - "type": [ - "null", - "string" - ] + "protocols": { + "description": "The URL protocol schemes.", + "anyOf": [ + { + "$ref": "#/definitions/Protocol" }, - "description": { - "description": "As [description](./configuration.md#description) from application package.json, but allows you to specify different for Linux.", - "type": [ - "null", - "string" - ] + { + "type": "array", + "items": { + "$ref": "#/definitions/Protocol" + } + } + ] + }, + "electronLanguages": { + "description": "The electron locales to keep. By default, all Electron locales used as-is.", + "anyOf": [ + { + "type": "array", + "items": { + "type": "string" + } }, - "desktop": { - "anyOf": [ - { - "$ref": "#/definitions/LinuxDesktopFile" - }, - { - "type": "null" - } - ], - "description": "The [Desktop file](https://developer.gnome.org/documentation/guidelines/maintainer/integrating.html#desktop-files)" + { + "type": "string" + } + ] + }, + "electronUpdaterCompatibility": { + "description": "The [electron-updater compatibility](./auto-update.md#compatibility) semver range.", + "type": "string" + }, + "publish": { + "$ref": "#/definitions/Publish", + "description": "Publisher configuration. See [Auto Update](./publish.md) for more information." + }, + "detectUpdateChannel": { + "description": "Whether to infer update channel from application version pre-release components. e.g. if version `0.12.1-alpha.1`, channel will be set to `alpha`. Otherwise to `latest`.\nThis does *not* apply to github publishing, which will [never auto-detect the update channel](https://github.com/electron-userland/electron-builder/issues/8589).", + "default": true, + "type": "boolean" + }, + "generateUpdatesFilesForAllChannels": { + "description": "Please see [Building and Releasing using Channels](https://github.com/electron-userland/electron-builder/issues/1182#issuecomment-324947139).", + "default": false, + "type": "boolean" + }, + "releaseInfo": { + "$ref": "#/definitions/ReleaseInfo", + "description": "The release info. Intended for command line usage:\n\n```\n-c.releaseInfo.releaseNotes=\"new features\"\n```" + }, + "target": { + "anyOf": [ + { + "$ref": "#/definitions/TargetConfiguration" }, - "executableArgs": { - "anyOf": [ - { - "items": { - "type": "string" + { + "type": "array", + "items": { + "anyOf": [ + { + "$ref": "#/definitions/TargetConfiguration" }, - "type": "array" - }, - { - "type": "null" - } - ], - "description": "The executable parameters. Pass to executableName" - }, - "license": { - "description": "The path to EULA license file. Defaults to `license.txt` or `eula.txt` (or uppercase variants). Only plain text is supported.", - "type": [ - "null", - "string" - ] - }, - "mimeTypes": { - "anyOf": [ - { - "items": { + { "type": "string" - }, - "type": "array" - }, - { - "type": "null" - } - ], - "description": "The mime types in addition to specified in the file associations. Use it if you don't want to register a new mime type, but reuse existing." + } + ] + } }, - "publish": { - "anyOf": [ - { - "$ref": "#/definitions/GithubOptions" - }, - { - "$ref": "#/definitions/GitlabOptions" - }, - { - "$ref": "#/definitions/S3Options" - }, - { - "$ref": "#/definitions/SpacesOptions" - }, - { - "$ref": "#/definitions/GenericServerOptions" - }, - { - "$ref": "#/definitions/CustomPublishOptions" - }, - { - "$ref": "#/definitions/KeygenOptions" - }, - { - "$ref": "#/definitions/SnapStoreOptions" - }, - { - "$ref": "#/definitions/BitbucketOptions" - }, - { - "items": { - "$ref": "#/definitions/AllPublishOptions" + { + "type": "string" + } + ] + }, + "cscLink": { + "type": "string" + }, + "cscKeyPassword": { + "type": "string" + }, + "defaultArch": { + "type": "string" + }, + "files": { + "description": "A [glob patterns](./file-patterns.md) relative to the [app directory](configuration.md#directories), which specifies which files to include when copying files to create the package.\n\nDefaults to:\n```json\n[\n\"**\\/*\",\n\"!**\\/node_modules/*\\/{CHANGELOG.md,README.md,README,readme.md,readme}\",\n\"!**\\/node_modules/*\\/{test,__tests__,tests,powered-test,example,examples}\",\n\"!**\\/node_modules/*.d.ts\",\n\"!**\\/node_modules/.bin\",\n\"!**\\/*.{iml,o,hprof,orig,pyc,pyo,rbc,swp,csproj,sln,xproj}\",\n\"!.editorconfig\",\n\"!**\\/._*\",\n\"!**\\/{.DS_Store,.git,.hg,.svn,CVS,RCS,SCCS,.gitignore,.gitattributes}\",\n\"!**\\/{__pycache__,thumbs.db,.flowconfig,.idea,.vs,.nyc_output}\",\n\"!**\\/{appveyor.yml,.travis.yml,circle.yml}\",\n\"!**\\/{npm-debug.log,yarn.lock,.yarn-integrity,.yarn-metadata.json}\"\n]\n```\n\nDevelopment dependencies are never copied in any case. You don't need to ignore it explicitly. Hidden files are not ignored by default, but all files that should be ignored, are ignored by default.\n\nDefault pattern \\`**\\/*\\` **is not added to your custom** if some of your patterns is not ignore (i.e. not starts with `!`). `package.json` and \\`**\\/node_modules/**\\/*` (only production dependencies will be copied) is added to your custom in any case. All default ignores are added in any case — you don't need to repeat it if you configure own patterns.\n\nMay be specified in the platform options (e.g. in the [mac](mac.md)).\n\nYou may also specify custom source and destination directories by using `FileSet` objects instead of simple glob patterns.\n\n```json\n[\n{\n\"from\": \"path/to/source\",\n\"to\": \"path/to/destination\",\n\"filter\": [\"**\\/*\", \"!foo/*.js\"]\n}\n]\n```\n\nYou can use [file macros](./file-patterns.md#file-macros) in the `from` and `to` fields as well. `from` and `to` can be files and you can use this to [rename](https://github.com/electron-userland/electron-builder/issues/1119) a file while packaging.", + "anyOf": [ + { + "$ref": "#/definitions/FileSet" + }, + { + "type": "array", + "items": { + "anyOf": [ + { + "$ref": "#/definitions/FileSet" }, - "type": "array" - }, - { - "type": [ - "null", - "string" - ] - } - ] + { + "type": "string" + } + ] + } }, - "synopsis": { - "description": "The [short description](https://www.debian.org/doc/debian-policy/ch-controlfields.html#s-f-Description).", - "type": [ - "null", - "string" - ] + { + "type": "string" } - }, - "type": "object" + ] }, - "AppXOptions": { - "additionalProperties": false, - "properties": { - "addAutoLaunchExtension": { - "description": "Whether to add auto launch extension. Defaults to `true` if [electron-winstore-auto-launch](https://github.com/felixrieseberg/electron-winstore-auto-launch) in the dependencies.", - "type": "boolean" + "extraResources": { + "description": "A [glob patterns](./file-patterns.md) relative to the project directory, when specified, copy the file or directory with matching names directly into the app's resources directory (`Contents/Resources` for MacOS, `resources` for Linux and Windows).\n\nFile patterns (and support for `from` and `to` fields) the same as for [files](#files).", + "anyOf": [ + { + "$ref": "#/definitions/FileSet" }, - "applicationId": { - "description": "The application id. Defaults to `identityName`. This string contains alpha-numeric fields separated by periods. Each field must begin with an ASCII alphabetic character.", - "type": "string" + { + "type": "array", + "items": { + "anyOf": [ + { + "$ref": "#/definitions/FileSet" + }, + { + "type": "string" + } + ] + } }, - "artifactName": { - "description": "The [artifact file name template](./configuration.md#artifact-file-name-template).", - "type": [ - "null", - "string" - ] + { + "type": "string" + } + ] + }, + "extraFiles": { + "description": "The same as [extraResources](#extraresources) but copy into the app's content directory (`Contents` for MacOS, root directory for Linux and Windows).", + "anyOf": [ + { + "$ref": "#/definitions/FileSet" }, - "backgroundColor": { - "default": "#464646", - "description": "The background color of the app tile. See [Visual Elements](https://msdn.microsoft.com/en-us/library/windows/apps/br211471.aspx).", - "type": [ - "null", - "string" - ] + { + "type": "array", + "items": { + "anyOf": [ + { + "$ref": "#/definitions/FileSet" + }, + { + "type": "string" + } + ] + } }, - "customExtensionsPath": { - "description": "Relative path to custom extensions xml to be included in an `appmanifest.xml`.", + { "type": "string" + } + ] + }, + "beforePack": { + "description": "The function (or path to file or module id) to be run before pack.\n\n```typescript\n(context: BeforePackContext): Promise | any\n```\n\n!!! example \"As function\"\n\n ```js\n beforePack: async (context) => {\n // your code\n }\n ```\n\nBecause in a configuration file you cannot use JavaScript, can be specified as a path to file or module id. Function must be exported as default export.\n\n```json\n\"build\": {\n\"beforePack\": \"./myBeforePackHook.js\"\n}\n```\n\nFile `myBeforePackHook.js` in the project root directory:\n\n!!! example \"myBeforePackHook.js\"\n ```js\n exports.default = async function(context) {\n // your custom code\n }\n ```", + "anyOf": [ + { + "typeof": "function" }, - "customManifestPath": { - "description": "(Advanced Option) Relative path to custom `appmanifest.xml` (file name doesn't matter, it'll be renamed) located in build resources directory.\nSupports the following template macros:\n\n- ${publisher}\n- ${publisherDisplayName}\n- ${version}\n- ${applicationId}\n- ${identityName}\n- ${executable}\n- ${displayName}\n- ${description}\n- ${backgroundColor}\n- ${logo}\n- ${square150x150Logo}\n- ${square44x44Logo}\n- ${lockScreen}\n- ${defaultTile}\n- ${splashScreen}\n- ${arch}\n- ${resourceLanguages}\n- ${extensions}\n- ${minVersion}\n- ${maxVersionTested}", + { "type": "string" + } + ] + }, + "afterExtract": { + "description": "The function (or path to file or module id) to be [run after the prebuilt Electron binary has been extracted to the output directory](#afterextract)\nSame setup as {@link beforePack}", + "anyOf": [ + { + "typeof": "function" }, - "displayName": { - "description": "A friendly name that can be displayed to users. Corresponds to [Properties.DisplayName](https://msdn.microsoft.com/en-us/library/windows/apps/br211432.aspx).\nDefaults to the application product name.", - "type": [ - "null", - "string" - ] - }, - "electronUpdaterAware": { - "default": false, - "type": "boolean" - }, - "identityName": { - "description": "The name. Corresponds to [Identity.Name](https://msdn.microsoft.com/en-us/library/windows/apps/br211441.aspx). Defaults to the [application name](./configuration.md#metadata).", - "type": [ - "null", - "string" - ] - }, - "languages": { - "anyOf": [ - { - "items": { - "type": "string" - }, - "type": "array" - }, - { - "type": [ - "null", - "string" - ] - } - ], - "description": "The list of [supported languages](https://docs.microsoft.com/en-us/windows/uwp/globalizing/manage-language-and-region#specify-the-supported-languages-in-the-apps-manifest) that will be listed in the Windows Store.\nThe first entry (index 0) will be the default language.\nDefaults to en-US if omitted." - }, - "makeappxArgs": { - "anyOf": [ - { - "items": { - "type": "string" - }, - "type": "array" - }, - { - "type": "null" - } - ] - }, - "maxVersionTested": { - "default": "arch === Arch.arm64 ? \"10.0.16299.0\" : \"10.0.14316.0\"", - "description": "Set the `MaxVersionTested` field in the appx manifest.xml", - "type": [ - "null", - "string" - ] - }, - "minVersion": { - "default": "arch === Arch.arm64 ? \"10.0.16299.0\" : \"10.0.14316.0\"", - "description": "Set the MinVersion field in the appx manifest.xml", - "type": [ - "null", - "string" - ] - }, - "publish": { - "anyOf": [ - { - "$ref": "#/definitions/GithubOptions" - }, - { - "$ref": "#/definitions/GitlabOptions" - }, - { - "$ref": "#/definitions/S3Options" - }, - { - "$ref": "#/definitions/SpacesOptions" - }, - { - "$ref": "#/definitions/GenericServerOptions" - }, - { - "$ref": "#/definitions/CustomPublishOptions" - }, - { - "$ref": "#/definitions/KeygenOptions" - }, - { - "$ref": "#/definitions/SnapStoreOptions" - }, - { - "$ref": "#/definitions/BitbucketOptions" - }, - { - "items": { - "$ref": "#/definitions/AllPublishOptions" - }, - "type": "array" - }, - { - "type": [ - "null", - "string" - ] - } - ] - }, - "publisher": { - "description": "The Windows Store publisher. Not used if AppX is build for testing. See [AppX Package Code Signing](#appx-package-code-signing) below.", - "type": [ - "null", - "string" - ] - }, - "publisherDisplayName": { - "description": "A friendly name for the publisher that can be displayed to users. Corresponds to [Properties.PublisherDisplayName](https://msdn.microsoft.com/en-us/library/windows/apps/br211460.aspx).\nDefaults to company name from the application metadata.", - "type": [ - "null", - "string" - ] - }, - "setBuildNumber": { - "default": false, - "description": "Whether to set build number. See https://github.com/electron-userland/electron-builder/issues/3875", - "type": "boolean" - }, - "showNameOnTiles": { - "default": false, - "description": "Whether to overlay the app's name on top of tile images on the Start screen. Defaults to `false`. (https://docs.microsoft.com/en-us/uwp/schemas/appxpackage/uapmanifestschema/element-uap-shownameontiles) in the dependencies.", - "type": "boolean" - } - }, - "type": "object" - }, - "ArchType": { - "enum": [ - "arm64", - "armv7l", - "ia32", - "universal", - "x64" - ], - "type": "string" - }, - "AsarOptions": { - "additionalProperties": false, - "properties": { - "ordering": { - "type": [ - "null", - "string" - ] - }, - "smartUnpack": { - "default": true, - "description": "Whether to automatically unpack executables files.", - "type": "boolean" - } - }, - "type": "object" - }, - "BitbucketOptions": { - "additionalProperties": false, - "description": "Bitbucket options.\nhttps://bitbucket.org/\nDefine `BITBUCKET_TOKEN` environment variable.\n\nFor converting an app password to a usable token, you can utilize this\n```typescript\nconvertAppPassword(owner: string, appPassword: string) {\nconst base64encodedData = Buffer.from(`${owner}:${appPassword.trim()}`).toString(\"base64\")\nreturn `Basic ${base64encodedData}`\n}\n```", - "properties": { - "channel": { - "default": "latest", - "description": "The channel.", - "type": [ - "null", - "string" - ] - }, - "owner": { - "description": "Repository owner", - "type": "string" - }, - "provider": { - "const": "bitbucket", - "description": "The provider. Must be `bitbucket`.", - "type": "string" - }, - "publishAutoUpdate": { - "default": true, - "description": "Whether to publish auto update info files.\n\nAuto update relies only on the first provider in the list (you can specify several publishers).\nThus, probably, there`s no need to upload the metadata files for the other configured providers. But by default will be uploaded.", - "type": "boolean" - }, - "publisherName": { - "anyOf": [ - { - "items": { - "type": "string" - }, - "type": "array" - }, - { - "type": "null" - } - ] - }, - "requestHeaders": { - "$ref": "#/definitions/OutgoingHttpHeaders", - "description": "Any custom request headers" - }, - "slug": { - "description": "Repository slug/name", - "type": "string" - }, - "timeout": { - "default": 120000, - "description": "Request timeout in milliseconds. (Default is 2 minutes; O is ignored)", - "type": [ - "null", - "number" - ] - }, - "token": { - "description": "The [app password](https://bitbucket.org/account/settings/app-passwords) to support auto-update from private bitbucket repositories.", - "type": [ - "null", - "string" - ] - }, - "updaterCacheDirName": { - "type": [ - "null", - "string" - ] - }, - "username": { - "description": "The user name to support auto-update from private bitbucket repositories.", - "type": [ - "null", - "string" - ] - } - }, - "required": [ - "owner", - "provider", - "slug" - ], - "type": "object" - }, - "Concurrency": { - "additionalProperties": false, - "properties": { - "jobs": { - "default": 1, - "description": "The maximum number of concurrent jobs to run.", - "type": "number" - } - }, - "required": [ - "jobs" - ], - "type": "object" - }, - "CustomNsisBinary": { - "additionalProperties": false, - "properties": { - "checksum": { - "default": "VKMiizYdmNdJOWpRGz4trl4lD++BvYP2irAXpMilheUP0pc93iKlWAoP843Vlraj8YG19CVn0j+dCo/hURz9+Q==", - "type": [ - "null", - "string" - ] - }, - "debugLogging": { - "description": "Whether or not to enable NSIS logging for debugging.\nNote: Requires a debug-enabled NSIS build.\nelectron-builder's included `makensis` does not natively support debug-enabled NSIS installers currently, you must supply your own via `customNsisBinary?: CustomNsisBinary`\nIn your custom nsis scripts, you can leverage this functionality via `LogSet` and `LogText`", - "type": [ - "null", - "boolean" - ] - }, - "url": { - "default": "https://github.com/electron-userland/electron-builder-binaries/releases/download/nsis-3.0.4.1/nsis-3.0.4.1.7z", - "type": [ - "null", - "string" - ] - }, - "version": { - "default": "3.0.4.1", - "type": [ - "null", - "string" - ] - } - }, - "required": [ - "url" - ], - "type": "object" - }, - "CustomNsisResources": { - "additionalProperties": false, - "properties": { - "checksum": { - "default": "Dqd6g+2buwwvoG1Vyf6BHR1b+25QMmPcwZx40atOT57gH27rkjOei1L0JTldxZu4NFoEmW4kJgZ3DlSWVON3+Q==", - "type": "string" - }, - "url": { - "default": "https://github.com/electron-userland/electron-builder-binaries/releases/download/nsis-resources-3.4.1/nsis-resources-3.4.1.7z", - "type": "string" - }, - "version": { - "default": "3.4.1", - "type": "string" - } - }, - "required": [ - "checksum", - "url", - "version" - ], - "type": "object" - }, - "CustomPublishOptions": { - "additionalProperties": {}, - "properties": { - "provider": { - "const": "custom", - "description": "The provider. Must be `custom`.", - "type": "string" - }, - "publishAutoUpdate": { - "default": true, - "description": "Whether to publish auto update info files.\n\nAuto update relies only on the first provider in the list (you can specify several publishers).\nThus, probably, there`s no need to upload the metadata files for the other configured providers. But by default will be uploaded.", - "type": "boolean" - }, - "publisherName": { - "anyOf": [ - { - "items": { - "type": "string" - }, - "type": "array" - }, - { - "type": "null" - } - ] - }, - "requestHeaders": { - "$ref": "#/definitions/OutgoingHttpHeaders", - "description": "Any custom request headers" - }, - "timeout": { - "default": 120000, - "description": "Request timeout in milliseconds. (Default is 2 minutes; O is ignored)", - "type": [ - "null", - "number" - ] - }, - "updateProvider": { - "description": "The Provider to provide UpdateInfo regarding available updates. Required\nto use custom providers with electron-updater.", - "typeof": "function" - }, - "updaterCacheDirName": { - "type": [ - "null", - "string" - ] - } - }, - "required": [ - "provider" - ], - "type": "object" - }, - "DebOptions": { - "additionalProperties": false, - "properties": { - "afterInstall": { - "description": "File path to script to be passed to FPM for `--after-install` arg.", - "type": [ - "null", - "string" - ] - }, - "afterRemove": { - "description": "File path to script to be passed to FPM for `--after-remove` arg.", - "type": [ - "null", - "string" - ] - }, - "appArmorProfile": { - "description": "File path to custom AppArmor profile (Ubuntu 24+)", - "type": [ - "null", - "string" - ] - }, - "artifactName": { - "description": "The [artifact file name template](./configuration.md#artifact-file-name-template).", - "type": [ - "null", - "string" - ] - }, - "category": { - "description": "The [application category](https://specifications.freedesktop.org/menu-spec/latest/apa.html#main-category-registry).", - "type": [ - "null", - "string" - ] - }, - "compression": { - "anyOf": [ - { - "enum": [ - "bzip2", - "gz", - "lzo", - "xz" - ], - "type": "string" - }, - { - "type": "null" - } - ], - "default": "xz", - "description": "The compression type." - }, - "depends": { - "anyOf": [ - { - "items": { - "type": "string" - }, - "type": "array" - }, - { - "type": "null" - } - ], - "default": [ - "libgtk-3-0", - "libnotify4", - "libnss3", - "libxss1", - "libxtst6", - "xdg-utils", - "libatspi2.0-0", - "libuuid1", - "libsecret-1-0" - ], - "description": "Package dependencies.\nIf need to support Debian, `libappindicator1` should be removed, it is [deprecated in Debian](https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=895037).\nIf need to support KDE, `gconf2` and `gconf-service` should be removed as it's no longer used [by GNOME](https://packages.debian.org/bullseye/gconf2)." - }, - "description": { - "description": "As [description](./configuration.md#description) from application package.json, but allows you to specify different for Linux.", - "type": [ - "null", - "string" - ] - }, - "desktop": { - "anyOf": [ - { - "$ref": "#/definitions/LinuxDesktopFile" - }, - { - "type": "null" - } - ], - "description": "The [Desktop file](https://developer.gnome.org/documentation/guidelines/maintainer/integrating.html#desktop-files)" - }, - "executableArgs": { - "anyOf": [ - { - "items": { - "type": "string" - }, - "type": "array" - }, - { - "type": "null" - } - ], - "description": "The executable parameters. Pass to executableName" - }, - "fpm": { - "anyOf": [ - { - "items": { - "type": "string" - }, - "type": "array" - }, - { - "type": "null" - } - ], - "description": "*Advanced only* The [fpm](https://fpm.readthedocs.io/en/latest/cli-reference.html) options.\n\nExample: `[\"--before-install=build/deb-preinstall.sh\", \"--after-upgrade=build/deb-postinstall.sh\"]`" - }, - "icon": { - "type": "string" - }, - "maintainer": { - "type": [ - "null", - "string" - ] - }, - "mimeTypes": { - "anyOf": [ - { - "items": { - "type": "string" - }, - "type": "array" - }, - { - "type": "null" - } - ], - "description": "The mime types in addition to specified in the file associations. Use it if you don't want to register a new mime type, but reuse existing." - }, - "packageCategory": { - "description": "The [package category](https://www.debian.org/doc/debian-policy/ch-controlfields.html#s-f-Section).", - "type": [ - "null", - "string" - ] - }, - "packageName": { - "description": "The name of the package.", - "type": [ - "null", - "string" - ] - }, - "priority": { - "description": "The [Priority](https://www.debian.org/doc/debian-policy/ch-controlfields.html#s-f-Priority) attribute.", - "type": [ - "null", - "string" - ] - }, - "publish": { - "anyOf": [ - { - "$ref": "#/definitions/GithubOptions" - }, - { - "$ref": "#/definitions/GitlabOptions" - }, - { - "$ref": "#/definitions/S3Options" - }, - { - "$ref": "#/definitions/SpacesOptions" - }, - { - "$ref": "#/definitions/GenericServerOptions" - }, - { - "$ref": "#/definitions/CustomPublishOptions" - }, - { - "$ref": "#/definitions/KeygenOptions" - }, - { - "$ref": "#/definitions/SnapStoreOptions" - }, - { - "$ref": "#/definitions/BitbucketOptions" - }, - { - "items": { - "$ref": "#/definitions/AllPublishOptions" - }, - "type": "array" - }, - { - "type": [ - "null", - "string" - ] - } - ] - }, - "recommends": { - "anyOf": [ - { - "items": { - "type": "string" - }, - "type": "array" - }, - { - "type": "null" - } - ], - "default": [ - "libappindicator3-1" - ], - "description": "The [recommended package dependencies](https://www.debian.org/doc/debian-policy/ch-relationships.html#s-binarydeps)." - }, - "synopsis": { - "description": "The [short description](https://www.debian.org/doc/debian-policy/ch-controlfields.html#s-f-Description).", - "type": [ - "null", - "string" - ] - }, - "vendor": { - "type": [ - "null", - "string" - ] - } - }, - "type": "object" - }, - "DmgContent": { - "additionalProperties": false, - "properties": { - "name": { - "description": "The name of the file within the DMG. Defaults to basename of `path`.", - "type": "string" - }, - "path": { - "description": "The path of the file within the DMG.", - "type": "string" - }, - "type": { - "enum": [ - "dir", - "file", - "link" - ], - "type": "string" - }, - "x": { - "description": "The device-independent pixel offset from the left of the window to the **center** of the icon.", - "type": "number" - }, - "y": { - "description": "The device-independent pixel offset from the top of the window to the **center** of the icon.", - "type": "number" - } - }, - "required": [ - "x", - "y" - ], - "type": "object" - }, - "DmgOptions": { - "additionalProperties": false, - "properties": { - "artifactName": { - "description": "The [artifact file name template](./configuration.md#artifact-file-name-template).", - "type": [ - "null", - "string" - ] - }, - "background": { - "description": "The path to background image (default: `build/background.tiff` or `build/background.png` if exists). The resolution of this file determines the resolution of the installer window.\nIf background is not specified, use `window.size`. Default locations expected background size to be 540x380.", - "type": [ - "null", - "string" - ] - }, - "backgroundColor": { - "description": "The background color (accepts css colors). Defaults to `#ffffff` (white) if no background image.", - "type": [ - "null", - "string" - ] - }, - "badgeIcon": { - "description": "The path to DMG icon (badge icon), which will be shown when mounted, relative to the [build resources](./contents.md#extraresources) or to the project directory.", - "type": [ - "null", - "string" - ] - }, - "contents": { - "description": "The content — to customize icon locations. The x and y coordinates refer to the position of the **center** of the icon (at 1x scale), and do not take the label into account.", - "items": { - "$ref": "#/definitions/DmgContent" - }, - "type": "array" - }, - "format": { - "default": "UDZO", - "description": "The disk image format. `ULFO` (lzfse-compressed image (OS X 10.11+ only)).", - "enum": [ - "UDBZ", - "UDCO", - "UDRO", - "UDRW", - "UDZO", - "ULFO" - ], - "type": "string" - }, - "icon": { - "description": "The path to DMG icon (volume icon), which will be shown when mounted, relative to the [build resources](./contents.md#extraresources) or to the project directory.\nDefaults to the application icon (`build/icon.icns`).", - "type": [ - "null", - "string" - ] - }, - "iconSize": { - "default": 80, - "description": "The size of all the icons inside the DMG.", - "type": [ - "null", - "number" - ] - }, - "iconTextSize": { - "default": 12, - "description": "The size of all the icon texts inside the DMG.", - "type": [ - "null", - "number" - ] - }, - "internetEnabled": { - "default": false, - "description": "Whether to create internet-enabled disk image (when it is downloaded using a browser it will automatically decompress the image, put the application on the desktop, unmount and remove the disk image file).", - "type": "boolean" - }, - "publish": { - "anyOf": [ - { - "$ref": "#/definitions/GithubOptions" - }, - { - "$ref": "#/definitions/GitlabOptions" - }, - { - "$ref": "#/definitions/S3Options" - }, - { - "$ref": "#/definitions/SpacesOptions" - }, - { - "$ref": "#/definitions/GenericServerOptions" - }, - { - "$ref": "#/definitions/CustomPublishOptions" - }, - { - "$ref": "#/definitions/KeygenOptions" - }, - { - "$ref": "#/definitions/SnapStoreOptions" - }, - { - "$ref": "#/definitions/BitbucketOptions" - }, - { - "items": { - "$ref": "#/definitions/AllPublishOptions" - }, - "type": "array" - }, - { - "type": [ - "null", - "string" - ] - } - ] - }, - "sign": { - "default": false, - "description": "Whether to sign the DMG or not. Signing is not required and will lead to unwanted errors in combination with notarization requirements.", - "type": "boolean" - }, - "title": { - "default": "${productName} ${version}", - "description": "The title of the produced DMG, which will be shown when mounted (volume name).\n\nMacro `${productName}`, `${version}` and `${name}` are supported.", - "type": [ - "null", - "string" - ] - }, - "window": { - "$ref": "#/definitions/DmgWindow", - "description": "The DMG window position and size. With y co-ordinates running from bottom to top.\n\nThe Finder makes sure that the window will be on the user’s display, so if you want your window at the top left of the display you could use `\"x\": 0, \"y\": 100000` as the x, y co-ordinates.\nIt is not to be possible to position the window relative to the [top left](https://github.com/electron-userland/electron-builder/issues/3990#issuecomment-512960957) or relative to the center of the user’s screen." - }, - "writeUpdateInfo": { - "default": true, - "type": "boolean" - } - }, - "type": "object" - }, - "DmgWindow": { - "additionalProperties": false, - "properties": { - "height": { - "description": "The height. Defaults to background image height or 380.", - "type": "number" - }, - "width": { - "description": "The width. Defaults to background image width or 540.", - "type": "number" - }, - "x": { - "default": 400, - "description": "The X position relative to left of the screen.", - "type": "number" - }, - "y": { - "default": 100, - "description": "The Y position relative to bottom of the screen.", - "type": "number" - } - }, - "type": "object" - }, - "ElectronBrandingOptions": { - "additionalProperties": false, - "description": "Electron distributables branding options.", - "properties": { - "productName": { - "type": "string" - }, - "projectName": { - "type": "string" - } - }, - "type": "object" - }, - "ElectronDownloadOptions": { - "additionalProperties": false, - "properties": { - "arch": { - "type": "string" - }, - "cache": { - "description": "The [cache location](https://github.com/electron-userland/electron-download#cache-location).", - "type": [ - "null", - "string" - ] - }, - "customDir": { - "type": [ - "null", - "string" - ] - }, - "customFilename": { - "type": [ - "null", - "string" - ] - }, - "isVerifyChecksum": { - "type": "boolean" - }, - "mirror": { - "description": "The mirror.", - "type": [ - "null", - "string" - ] - }, - "platform": { - "enum": [ - "darwin", - "linux", - "mas", - "win32" - ], - "type": "string" - }, - "strictSSL": { - "type": "boolean" - }, - "version": { - "type": "string" - } - }, - "type": "object" - }, - "FileAssociation": { - "additionalProperties": false, - "description": "File associations.\n\nmacOS (corresponds to [CFBundleDocumentTypes](https://developer.apple.com/library/content/documentation/General/Reference/InfoPlistKeyReference/Articles/CoreFoundationKeys.html#//apple_ref/doc/uid/20001431-101685)), NSIS, and MSI only.\n\nOn Windows (NSIS) works only if [nsis.perMachine](https://www.electron.build/nsis) is set to `true`.", - "properties": { - "description": { - "description": "*windows-only.* The description.", - "type": [ - "null", - "string" - ] - }, - "ext": { - "anyOf": [ - { - "items": { - "type": "string" - }, - "type": "array" - }, - { - "type": "string" - } - ], - "description": "The extension (minus the leading period). e.g. `png`." - }, - "icon": { - "description": "The path to icon (`.icns` for MacOS and `.ico` for Windows), relative to `build` (build resources directory). Defaults to `${firstExt}.icns`/`${firstExt}.ico` (if several extensions specified, first is used) or to application icon.\n\nNot supported on Linux, file issue if need (default icon will be `x-office-document`). Not supported on MSI.", - "type": [ - "null", - "string" - ] - }, - "isPackage": { - "description": "*macOS-only* Whether the document is distributed as a bundle. If set to true, the bundle directory is treated as a file. Corresponds to `LSTypeIsPackage`.", - "type": "boolean" - }, - "mimeType": { - "description": "*linux-only.* The mime-type.", - "type": [ - "null", - "string" - ] - }, - "name": { - "description": "The name. e.g. `PNG`. Defaults to `ext`.", - "type": [ - "null", - "string" - ] - }, - "rank": { - "default": "Default", - "description": "*macOS-only* The app’s rank with respect to the type. The value can be `Owner`, `Default`, `Alternate`, or `None`. Corresponds to `LSHandlerRank`.", - "type": "string" - }, - "role": { - "default": "Editor", - "description": "*macOS-only* The app’s role with respect to the type. The value can be `Editor`, `Viewer`, `Shell`, or `None`. Corresponds to `CFBundleTypeRole`.", - "type": "string" - } - }, - "required": [ - "ext" - ], - "type": "object" - }, - "FileSet": { - "additionalProperties": false, - "properties": { - "filter": { - "anyOf": [ - { - "items": { - "type": "string" - }, - "type": "array" - }, - { - "type": "string" - } - ], - "description": "The [glob patterns](./file-patterns.md). Defaults to \"**\\/*\"" - }, - "from": { - "description": "The source path relative to and defaults to:\n\n - the [app directory](configuration.md#directories) for `files`,\n - the project directory for `extraResources` and `extraFiles`.\nIf you don't use two-package.json structure and don't set custom app directory, app directory equals to project directory.", - "type": "string" - }, - "to": { - "description": "The destination path relative to and defaults to:\n\n - the asar archive root for `files`,\n - the app's content directory for `extraFiles`,\n - the app's resource directory for `extraResources`.", - "type": "string" - } - }, - "type": "object" - }, - "FlatpakOptions": { - "additionalProperties": false, - "properties": { - "artifactName": { - "description": "The [artifact file name template](./configuration.md#artifact-file-name-template).", - "type": [ - "null", - "string" - ] - }, - "base": { - "description": "Start with the files from the specified application. This can be used to create applications that extend another application.\nDefaults to [org.electronjs.Electron2.BaseApp](https://github.com/flathub/org.electronjs.Electron2.BaseApp).\n\nSee [flatpak manifest documentation](https://docs.flatpak.org/en/latest/flatpak-builder-command-reference.html#flatpak-manifest).", - "type": "string" - }, - "baseVersion": { - "description": "Use this specific version of the application specified in base. Defaults to `20.08`.\n\nSee [flatpak manifest documentation](https://docs.flatpak.org/en/latest/flatpak-builder-command-reference.html#flatpak-manifest).", - "type": "string" - }, - "branch": { - "description": "The branch to use when exporting the application. Defaults to `master`.\n\nSee [flatpak manifest documentation](https://docs.flatpak.org/en/latest/flatpak-builder-command-reference.html#flatpak-manifest).", - "type": "string" - }, - "category": { - "description": "The [application category](https://specifications.freedesktop.org/menu-spec/latest/apa.html#main-category-registry).", - "type": [ - "null", - "string" - ] - }, - "description": { - "description": "As [description](./configuration.md#description) from application package.json, but allows you to specify different for Linux.", - "type": [ - "null", - "string" - ] - }, - "desktop": { - "anyOf": [ - { - "$ref": "#/definitions/LinuxDesktopFile" - }, - { - "type": "null" - } - ], - "description": "The [Desktop file](https://developer.gnome.org/documentation/guidelines/maintainer/integrating.html#desktop-files)" - }, - "executableArgs": { - "anyOf": [ - { - "items": { - "type": "string" - }, - "type": "array" - }, - { - "type": "null" - } - ], - "description": "The executable parameters. Pass to executableName" - }, - "files": { - "description": "Files to copy directly into the app. Should be a list of [source, dest] tuples. Source should be a relative/absolute path to a file/directory to copy into the flatpak, and dest should be the path inside the app install prefix (e.g. /share/applications/).\n\nSee [@malept/flatpak-bundler documentation](https://github.com/malept/flatpak-bundler#build-options).", - "items": { - "items": [ - { - "type": "string" - }, - { - "type": "string" - } - ], - "maxItems": 2, - "minItems": 2, - "type": "array" - }, - "type": "array" - }, - "finishArgs": { - "description": "An array of arguments passed to the flatpak build-finish command. Defaults to:\n```json\n[\n // Wayland/X11 Rendering\n \"--socket=wayland\",\n \"--socket=x11\",\n \"--share=ipc\",\n // Open GL\n \"--device=dri\",\n // Audio output\n \"--socket=pulseaudio\",\n // Read/write home directory access\n \"--filesystem=home\",\n // Allow communication with network\n \"--share=network\",\n // System notifications with libnotify\n \"--talk-name=org.freedesktop.Notifications\",\n]\n```\n\nSee [flatpak manifest documentation](https://docs.flatpak.org/en/latest/flatpak-builder-command-reference.html#flatpak-manifest).", - "items": { - "type": "string" - }, - "type": "array" - }, - "license": { - "description": "The path to EULA license file. Defaults to `license.txt` or `eula.txt` (or uppercase variants). Only plain text is supported.", - "type": [ - "null", - "string" - ] - }, - "mimeTypes": { - "anyOf": [ - { - "items": { - "type": "string" - }, - "type": "array" - }, - { - "type": "null" - } - ], - "description": "The mime types in addition to specified in the file associations. Use it if you don't want to register a new mime type, but reuse existing." - }, - "modules": { - "description": "An array of objects specifying the modules to be built in order.\n\nSee [flatpak manifest documentation](https://docs.flatpak.org/en/latest/flatpak-builder-command-reference.html#flatpak-manifest).", - "items": {}, - "type": "array" - }, - "publish": { - "anyOf": [ - { - "$ref": "#/definitions/GithubOptions" - }, - { - "$ref": "#/definitions/GitlabOptions" - }, - { - "$ref": "#/definitions/S3Options" - }, - { - "$ref": "#/definitions/SpacesOptions" - }, - { - "$ref": "#/definitions/GenericServerOptions" - }, - { - "$ref": "#/definitions/CustomPublishOptions" - }, - { - "$ref": "#/definitions/KeygenOptions" - }, - { - "$ref": "#/definitions/SnapStoreOptions" - }, - { - "$ref": "#/definitions/BitbucketOptions" - }, - { - "items": { - "$ref": "#/definitions/AllPublishOptions" - }, - "type": "array" - }, - { - "type": [ - "null", - "string" - ] - } - ] - }, - "runtime": { - "description": "The name of the runtime that the application uses. Defaults to `org.freedesktop.Platform`.\n\nSee [flatpak manifest documentation](https://docs.flatpak.org/en/latest/flatpak-builder-command-reference.html#flatpak-manifest).", - "type": "string" - }, - "runtimeVersion": { - "description": "The version of the runtime that the application uses. Defaults to `20.08`.\n\nSee [flatpak manifest documentation](https://docs.flatpak.org/en/latest/flatpak-builder-command-reference.html#flatpak-manifest).", - "type": "string" - }, - "sdk": { - "description": "The name of the development runtime that the application builds with. Defaults to `org.freedesktop.Sdk`.\n\nSee [flatpak manifest documentation](https://docs.flatpak.org/en/latest/flatpak-builder-command-reference.html#flatpak-manifest).", - "type": "string" - }, - "symlinks": { - "description": "Symlinks to create in the app files. Should be a list of [target, location] symlink tuples. Target can be either a relative or absolute path inside the app install prefix, and location should be a absolute path inside the prefix to create the symlink at.\n\nSee [@malept/flatpak-bundler documentation](https://github.com/malept/flatpak-bundler#build-options).", - "items": { - "items": [ - { - "type": "string" - }, - { - "type": "string" - } - ], - "maxItems": 2, - "minItems": 2, - "type": "array" - }, - "type": "array" - }, - "synopsis": { - "description": "The [short description](https://www.debian.org/doc/debian-policy/ch-controlfields.html#s-f-Description).", - "type": [ - "null", - "string" - ] - }, - "useWaylandFlags": { - "description": "Whether to enable the Wayland specific flags (`--enable-features=UseOzonePlatform --ozone-platform=wayland`) in the wrapper script. These flags are only available starting with Electron version 12. Defaults to `false`.", - "type": "boolean" - } - }, - "type": "object" - }, - "FuseOptionsV1": { - "additionalProperties": false, - "description": "All options come from [@electron/fuses](https://github.com/electron/fuses)\nRef: https://raw.githubusercontent.com/electron/electron/refs/heads/main/docs/tutorial/fuses.md", - "properties": { - "enableCookieEncryption": { - "description": "The cookieEncryption fuse toggles whether the cookie store on disk is encrypted using OS level cryptography keys. By default the sqlite database that Chromium uses to store cookies stores the values in plaintext. If you wish to ensure your apps cookies are encrypted in the same way Chrome does then you should enable this fuse. Please note it is a one-way transition, if you enable this fuse existing unencrypted cookies will be encrypted-on-write but if you then disable the fuse again your cookie store will effectively be corrupt and useless. Most apps can safely enable this fuse.", - "type": "boolean" - }, - "enableEmbeddedAsarIntegrityValidation": { - "description": "The embeddedAsarIntegrityValidation fuse toggles an experimental feature on macOS that validates the content of the `app.asar` file when it is loaded. This feature is designed to have a minimal performance impact but may marginally slow down file reads from inside the `app.asar` archive.\nCurrently, ASAR integrity checking is supported on:\n\n - macOS as of electron>=16.0.0\n - Windows as of electron>=30.0.0\n\nFor more information on how to use asar integrity validation please read the [Asar Integrity](https://github.com/electron/electron/blob/main/docs/tutorial/asar-integrity.md) documentation.", - "type": "boolean" - }, - "enableNodeCliInspectArguments": { - "description": "The nodeCliInspect fuse toggles whether the `--inspect`, `--inspect-brk`, etc. flags are respected or not. When disabled it also ensures that `SIGUSR1` signal does not initialize the main process inspector. Most apps can safely disable this fuse.", - "type": "boolean" - }, - "enableNodeOptionsEnvironmentVariable": { - "description": "The nodeOptions fuse toggles whether the [`NODE_OPTIONS`](https://nodejs.org/api/cli.html#node_optionsoptions) and [`NODE_EXTRA_CA_CERTS`](https://github.com/nodejs/node/blob/main/doc/api/cli.md#node_extra_ca_certsfile) environment variables are respected. The `NODE_OPTIONS` environment variable can be used to pass all kinds of custom options to the Node.js runtime and isn't typically used by apps in production. Most apps can safely disable this fuse.", - "type": "boolean" - }, - "grantFileProtocolExtraPrivileges": { - "description": "The grantFileProtocolExtraPrivileges fuse changes whether pages loaded from the `file://` protocol are given privileges beyond what they would receive in a traditional web browser. This behavior was core to Electron apps in original versions of Electron but is no longer required as apps should be [serving local files from custom protocols](https://github.com/electron/electron/blob/main/docs/tutorial/security.md#18-avoid-usage-of-the-file-protocol-and-prefer-usage-of-custom-protocols) now instead. If you aren't serving pages from `file://` you should disable this fuse.\nThe extra privileges granted to the `file://` protocol by this fuse are incompletely documented below:\n\n - `file://` protocol pages can use `fetch` to load other assets over `file://`\n - `file://` protocol pages can use service workers\n - `file://` protocol pages have universal access granted to child frames also running on `file://` protocols regardless of sandbox settings", - "type": "boolean" - }, - "loadBrowserProcessSpecificV8Snapshot": { - "description": "The loadBrowserProcessSpecificV8Snapshot fuse changes which V8 snapshot file is used for the browser process. By default Electron's processes will all use the same V8 snapshot file. When this fuse is enabled the browser process uses the file called `browser_v8_context_snapshot.bin` for its V8 snapshot. The other processes will use the V8 snapshot file that they normally do.", - "type": "boolean" - }, - "onlyLoadAppFromAsar": { - "description": "The onlyLoadAppFromAsar fuse changes the search system that Electron uses to locate your app code. By default Electron will search in the following order `app.asar` -> `app` -> `default_app.asar`. When this fuse is enabled the search order becomes a single entry `app.asar` thus ensuring that when combined with the `embeddedAsarIntegrityValidation` fuse it is impossible to load non-validated code.", - "type": "boolean" - }, - "resetAdHocDarwinSignature": { - "description": "Resets the app signature, specifically used for macOS.\nNote: This should be unneeded since electron-builder signs the app directly after flipping the fuses.\nRef: https://github.com/electron/fuses?tab=readme-ov-file#apple-silicon", - "type": "boolean" - }, - "runAsNode": { - "description": "The runAsNode fuse toggles whether the `ELECTRON_RUN_AS_NODE` environment variable is respected or not. Please note that if this fuse is disabled then `process.fork` in the main process will not function as expected as it depends on this environment variable to function. Instead, we recommend that you use [Utility Processes](https://github.com/electron/electron/blob/main/docs/api/utility-process.md), which work for many use cases where you need a standalone Node.js process (like a Sqlite server process or similar scenarios).", - "type": "boolean" - } - }, - "type": "object" - }, - "GenericServerOptions": { - "additionalProperties": false, - "description": "Generic (any HTTP(S) server) options.\nIn all publish options [File Macros](./file-patterns.md#file-macros) are supported.", - "properties": { - "channel": { - "default": "latest", - "description": "The channel.", - "type": [ - "null", - "string" - ] - }, - "provider": { - "const": "generic", - "description": "The provider. Must be `generic`.", - "type": "string" - }, - "publishAutoUpdate": { - "default": true, - "description": "Whether to publish auto update info files.\n\nAuto update relies only on the first provider in the list (you can specify several publishers).\nThus, probably, there`s no need to upload the metadata files for the other configured providers. But by default will be uploaded.", - "type": "boolean" - }, - "publisherName": { - "anyOf": [ - { - "items": { - "type": "string" - }, - "type": "array" - }, - { - "type": "null" - } - ] - }, - "requestHeaders": { - "$ref": "#/definitions/OutgoingHttpHeaders", - "description": "Any custom request headers" - }, - "timeout": { - "default": 120000, - "description": "Request timeout in milliseconds. (Default is 2 minutes; O is ignored)", - "type": [ - "null", - "number" - ] - }, - "updaterCacheDirName": { - "type": [ - "null", - "string" - ] - }, - "url": { - "description": "The base url. e.g. `https://bucket_name.s3.amazonaws.com`.", - "type": "string" - }, - "useMultipleRangeRequest": { - "description": "Whether to use multiple range requests for differential update. Defaults to `true` if `url` doesn't contain `s3.amazonaws.com`.", - "type": "boolean" - } - }, - "required": [ - "provider", - "url" - ], - "type": "object" - }, - "GithubOptions": { - "additionalProperties": false, - "description": "[GitHub](https://help.github.com/articles/about-releases/) options.\n\nGitHub [personal access token](https://help.github.com/articles/creating-an-access-token-for-command-line-use/) is required. You can generate by going to [https://github.com/settings/tokens/new](https://github.com/settings/tokens/new). The access token should have the repo scope/permission.\nDefine `GH_TOKEN` environment variable.", - "properties": { - "channel": { - "default": "latest", - "description": "The channel.", - "type": [ - "null", - "string" - ] - }, - "host": { - "default": "github.com", - "description": "The host (including the port if need).", - "type": [ - "null", - "string" - ] - }, - "owner": { - "description": "The owner.", - "type": [ - "null", - "string" - ] - }, - "private": { - "description": "Whether to use private github auto-update provider if `GH_TOKEN` environment variable is defined. See [Private GitHub Update Repo](./auto-update.md#private-github-update-repo).", - "type": [ - "null", - "boolean" - ] - }, - "protocol": { - "anyOf": [ - { - "enum": [ - "http", - "https" - ], - "type": "string" - }, - { - "type": "null" - } - ], - "default": "https", - "description": "The protocol. GitHub Publisher supports only `https`." - }, - "provider": { - "const": "github", - "description": "The provider. Must be `github`.", - "type": "string" - }, - "publishAutoUpdate": { - "default": true, - "description": "Whether to publish auto update info files.\n\nAuto update relies only on the first provider in the list (you can specify several publishers).\nThus, probably, there`s no need to upload the metadata files for the other configured providers. But by default will be uploaded.", - "type": "boolean" - }, - "publisherName": { - "anyOf": [ - { - "items": { - "type": "string" - }, - "type": "array" - }, - { - "type": "null" - } - ] - }, - "releaseType": { - "anyOf": [ - { - "enum": [ - "draft", - "prerelease", - "release" - ], - "type": "string" - }, - { - "type": "null" - } - ], - "default": "draft", - "description": "The type of release. By default `draft` release will be created.\n\nAlso you can set release type using environment variable. If `EP_DRAFT`is set to `true` — `draft`, if `EP_PRE_RELEASE`is set to `true` — `prerelease`." - }, - "repo": { - "description": "The repository name. [Detected automatically](#github-repository-and-bintray-package).", - "type": [ - "null", - "string" - ] - }, - "requestHeaders": { - "$ref": "#/definitions/OutgoingHttpHeaders", - "description": "Any custom request headers" - }, - "tagNamePrefix": { - "description": "If defined, sets the prefix of the tag name that comes before the semver number.\ne.g. \"v\" in \"v1.2.3\" or \"test\" of \"test1.2.3\".\nOverrides `vPrefixedTagName`", - "type": "string" - }, - "timeout": { - "default": 120000, - "description": "Request timeout in milliseconds. (Default is 2 minutes; O is ignored)", - "type": [ - "null", - "number" - ] - }, - "token": { - "description": "The access token to support auto-update from private github repositories. Never specify it in the configuration files. Only for [setFeedURL](./auto-update.md#appupdatersetfeedurloptions).", - "type": [ - "null", - "string" - ] - }, - "updaterCacheDirName": { - "type": [ - "null", - "string" - ] - }, - "vPrefixedTagName": { - "default": true, - "description": "Whether to use `v`-prefixed tag name.", - "type": "boolean" - } - }, - "required": [ - "provider" - ], - "type": "object" - }, - "GitlabOptions": { - "additionalProperties": false, - "description": "[GitLab](https://docs.gitlab.com/ee/user/project/releases/) options.\n\nGitLab [personal access token](https://docs.gitlab.com/ee/user/profile/personal_access_tokens.html) is required for private repositories. You can generate one by going to your GitLab profile settings.\nDefine `GITLAB_TOKEN` environment variable.", - "properties": { - "channel": { - "default": "latest", - "description": "The channel.", - "type": [ - "null", - "string" - ] - }, - "host": { - "default": "gitlab.com", - "description": "The GitLab host (including the port if need).", - "type": [ - "null", - "string" - ] - }, - "projectId": { - "description": "The GitLab project ID or path (e.g., \"12345678\" or \"namespace/project\").", - "type": [ - "null", - "string", - "number" - ] - }, - "provider": { - "const": "gitlab", - "description": "The provider. Must be `gitlab`.", - "type": "string" - }, - "publishAutoUpdate": { - "default": true, - "description": "Whether to publish auto update info files.\n\nAuto update relies only on the first provider in the list (you can specify several publishers).\nThus, probably, there`s no need to upload the metadata files for the other configured providers. But by default will be uploaded.", - "type": "boolean" - }, - "publisherName": { - "anyOf": [ - { - "items": { - "type": "string" - }, - "type": "array" - }, - { - "type": "null" - } - ] - }, - "requestHeaders": { - "$ref": "#/definitions/OutgoingHttpHeaders", - "description": "Any custom request headers" - }, - "timeout": { - "default": 120000, - "description": "Request timeout in milliseconds. (Default is 2 minutes; O is ignored)", - "type": [ - "null", - "number" - ] - }, - "token": { - "description": "The access token to support auto-update from private GitLab repositories. Never specify it in the configuration files.", - "type": [ - "null", - "string" - ] - }, - "updaterCacheDirName": { - "type": [ - "null", - "string" - ] - }, - "uploadTarget": { - "anyOf": [ - { - "enum": [ - "generic_package", - "project_upload" - ], - "type": "string" - }, - { - "type": "null" - } - ], - "default": "project_upload", - "description": "Upload target method. Can be \"project_upload\" for GitLab project uploads or \"generic_package\" for GitLab generic packages." - }, - "vPrefixedTagName": { - "default": true, - "description": "Whether to use `v`-prefixed tag name.", - "type": "boolean" - } - }, - "required": [ - "provider" - ], - "type": "object" - }, - "KeygenOptions": { - "additionalProperties": false, - "description": "Keygen options.\nhttps://keygen.sh/\nDefine `KEYGEN_TOKEN` environment variable.", - "properties": { - "account": { - "description": "Keygen account's UUID", - "type": "string" - }, - "channel": { - "anyOf": [ - { - "enum": [ - "alpha", - "beta", - "dev", - "rc", - "stable" - ], - "type": "string" - }, - { - "type": "null" - } - ], - "default": "stable", - "description": "The channel." - }, - "host": { - "default": "api.keygen.sh", - "description": "Keygen host for self-hosted instances", - "type": "string" - }, - "platform": { - "description": "The target Platform. Is set programmatically explicitly during publishing.", - "type": [ - "null", - "string" - ] - }, - "product": { - "description": "Keygen product's UUID", - "type": "string" - }, - "provider": { - "const": "keygen", - "description": "The provider. Must be `keygen`.", - "type": "string" - }, - "publishAutoUpdate": { - "default": true, - "description": "Whether to publish auto update info files.\n\nAuto update relies only on the first provider in the list (you can specify several publishers).\nThus, probably, there`s no need to upload the metadata files for the other configured providers. But by default will be uploaded.", - "type": "boolean" - }, - "publisherName": { - "anyOf": [ - { - "items": { - "type": "string" - }, - "type": "array" - }, - { - "type": "null" - } - ] - }, - "requestHeaders": { - "$ref": "#/definitions/OutgoingHttpHeaders", - "description": "Any custom request headers" - }, - "timeout": { - "default": 120000, - "description": "Request timeout in milliseconds. (Default is 2 minutes; O is ignored)", - "type": [ - "null", - "number" - ] - }, - "updaterCacheDirName": { - "type": [ - "null", - "string" - ] - } - }, - "required": [ - "account", - "product", - "provider" - ], - "type": "object" - }, - "LinuxConfiguration": { - "additionalProperties": false, - "properties": { - "appId": { - "default": "com.electron.${name}", - "description": "The application id. Used as [CFBundleIdentifier](https://developer.apple.com/library/ios/documentation/General/Reference/InfoPlistKeyReference/Articles/CoreFoundationKeys.html#//apple_ref/doc/uid/20001431-102070) for MacOS and as\n[Application User Model ID](https://msdn.microsoft.com/en-us/library/windows/desktop/dd378459(v=vs.85).aspx) for Windows (NSIS target only, Squirrel.Windows not supported). It is strongly recommended that an explicit ID is set.", - "type": [ - "null", - "string" - ] - }, - "artifactName": { - "description": "The [artifact file name template](./configuration.md#artifact-file-name-template). Defaults to `${productName}-${version}.${ext}` (some target can have other defaults, see corresponding options).", - "type": [ - "null", - "string" - ] - }, - "asar": { - "anyOf": [ - { - "$ref": "#/definitions/AsarOptions" - }, - { - "type": [ - "null", - "boolean" - ] - } - ], - "default": true, - "description": "Whether to package the application's source code into an archive, using [Electron's archive format](http://electron.atom.io/docs/tutorial/application-packaging/).\n\nNode modules, that must be unpacked, will be detected automatically, you don't need to explicitly set [asarUnpack](#asarUnpack) - please file an issue if this doesn't work." - }, - "asarUnpack": { - "anyOf": [ - { - "items": { - "type": "string" - }, - "type": "array" - }, - { - "type": [ - "null", - "string" - ] - } - ], - "description": "A [glob patterns](./file-patterns.md) relative to the [app directory](#directories), which specifies which files to unpack when creating the [asar](http://electron.atom.io/docs/tutorial/application-packaging/) archive." - }, - "category": { - "description": "The [application category](https://specifications.freedesktop.org/menu-spec/latest/apa.html#main-category-registry).", - "type": [ - "null", - "string" - ] - }, - "compression": { - "anyOf": [ - { - "enum": [ - "maximum", - "normal", - "store" - ], - "type": "string" - }, - { - "type": "null" - } - ], - "default": "normal", - "description": "The compression level. If you want to rapidly test build, `store` can reduce build time significantly. `maximum` doesn't lead to noticeable size difference, but increase build time." - }, - "cscKeyPassword": { - "type": [ - "null", - "string" - ] - }, - "cscLink": { - "type": [ - "null", - "string" - ] - }, - "defaultArch": { - "type": "string" - }, - "description": { - "description": "As [description](./configuration.md#description) from application package.json, but allows you to specify different for Linux.", - "type": [ - "null", - "string" - ] - }, - "desktop": { - "anyOf": [ - { - "$ref": "#/definitions/LinuxDesktopFile" - }, - { - "type": "null" - } - ], - "description": "The [Desktop file](https://developer.gnome.org/documentation/guidelines/maintainer/integrating.html#desktop-files)" - }, - "detectUpdateChannel": { - "default": true, - "description": "Whether to infer update channel from application version pre-release components. e.g. if version `0.12.1-alpha.1`, channel will be set to `alpha`. Otherwise to `latest`.\nThis does *not* apply to github publishing, which will [never auto-detect the update channel](https://github.com/electron-userland/electron-builder/issues/8589).", - "type": "boolean" - }, - "disableDefaultIgnoredFiles": { - "default": false, - "description": "Whether to exclude all default ignored files(https://www.electron.build/contents#files) and options. Defaults to `false`.", - "type": [ - "null", - "boolean" - ] - }, - "electronLanguages": { - "anyOf": [ - { - "items": { - "type": "string" - }, - "type": "array" - }, - { - "type": "string" - } - ], - "description": "The electron locales to keep. By default, all Electron locales used as-is." - }, - "electronUpdaterCompatibility": { - "description": "The [electron-updater compatibility](./auto-update.md#compatibility) semver range.", - "type": [ - "null", - "string" - ] - }, - "executableArgs": { - "anyOf": [ - { - "items": { - "type": "string" - }, - "type": "array" - }, - { - "type": "null" - } - ], - "description": "The executable parameters. Pass to executableName" - }, - "executableName": { - "description": "The executable name. Defaults to `productName`\nNote: Except for Linux, where this would constitute a breaking change in previous behavior and lead to both invalid executable names and Desktop files. Ref comments in: https://github.com/electron-userland/electron-builder/pull/9068", - "type": [ - "null", - "string" - ] - }, - "extraFiles": { - "anyOf": [ - { - "$ref": "#/definitions/FileSet" - }, - { - "items": { - "anyOf": [ - { - "$ref": "#/definitions/FileSet" - }, - { - "type": "string" - } - ] - }, - "type": "array" - }, - { - "type": [ - "null", - "string" - ] - } - ], - "description": "The same as [extraResources](#extraresources) but copy into the app's content directory (`Contents` for MacOS, root directory for Linux and Windows)." - }, - "extraResources": { - "anyOf": [ - { - "$ref": "#/definitions/FileSet" - }, - { - "items": { - "anyOf": [ - { - "$ref": "#/definitions/FileSet" - }, - { - "type": "string" - } - ] - }, - "type": "array" - }, - { - "type": [ - "null", - "string" - ] - } - ], - "description": "A [glob patterns](./file-patterns.md) relative to the project directory, when specified, copy the file or directory with matching names directly into the app's resources directory (`Contents/Resources` for MacOS, `resources` for Linux and Windows).\n\nFile patterns (and support for `from` and `to` fields) the same as for [files](#files)." - }, - "fileAssociations": { - "anyOf": [ - { - "$ref": "#/definitions/FileAssociation" - }, - { - "items": { - "$ref": "#/definitions/FileAssociation" - }, - "type": "array" - } - ], - "description": "The file associations." - }, - "files": { - "anyOf": [ - { - "$ref": "#/definitions/FileSet" - }, - { - "items": { - "anyOf": [ - { - "$ref": "#/definitions/FileSet" - }, - { - "type": "string" - } - ] - }, - "type": "array" - }, - { - "type": [ - "null", - "string" - ] - } - ], - "description": "A [glob patterns](./file-patterns.md) relative to the [app directory](configuration.md#directories), which specifies which files to include when copying files to create the package.\n\nDefaults to:\n```json\n[\n\"**\\/*\",\n\"!**\\/node_modules/*\\/{CHANGELOG.md,README.md,README,readme.md,readme}\",\n\"!**\\/node_modules/*\\/{test,__tests__,tests,powered-test,example,examples}\",\n\"!**\\/node_modules/*.d.ts\",\n\"!**\\/node_modules/.bin\",\n\"!**\\/*.{iml,o,hprof,orig,pyc,pyo,rbc,swp,csproj,sln,xproj}\",\n\"!.editorconfig\",\n\"!**\\/._*\",\n\"!**\\/{.DS_Store,.git,.hg,.svn,CVS,RCS,SCCS,.gitignore,.gitattributes}\",\n\"!**\\/{__pycache__,thumbs.db,.flowconfig,.idea,.vs,.nyc_output}\",\n\"!**\\/{appveyor.yml,.travis.yml,circle.yml}\",\n\"!**\\/{npm-debug.log,yarn.lock,.yarn-integrity,.yarn-metadata.json}\"\n]\n```\n\nDevelopment dependencies are never copied in any case. You don't need to ignore it explicitly. Hidden files are not ignored by default, but all files that should be ignored, are ignored by default.\n\nDefault pattern \\`**\\/*\\` **is not added to your custom** if some of your patterns is not ignore (i.e. not starts with `!`). `package.json` and \\`**\\/node_modules/**\\/*` (only production dependencies will be copied) is added to your custom in any case. All default ignores are added in any case — you don't need to repeat it if you configure own patterns.\n\nMay be specified in the platform options (e.g. in the [mac](mac.md)).\n\nYou may also specify custom source and destination directories by using `FileSet` objects instead of simple glob patterns.\n\n```json\n[\n{\n\"from\": \"path/to/source\",\n\"to\": \"path/to/destination\",\n\"filter\": [\"**\\/*\", \"!foo/*.js\"]\n}\n]\n```\n\nYou can use [file macros](./file-patterns.md#file-macros) in the `from` and `to` fields as well. `from` and `to` can be files and you can use this to [rename](https://github.com/electron-userland/electron-builder/issues/1119) a file while packaging." - }, - "forceCodeSigning": { - "description": "Whether to fail if app will be not code signed.", - "type": "boolean" - }, - "generateUpdatesFilesForAllChannels": { - "default": false, - "description": "Please see [Building and Releasing using Channels](https://github.com/electron-userland/electron-builder/issues/1182#issuecomment-324947139).", - "type": "boolean" - }, - "icon": { - "description": "The path to icon set directory or one png file, relative to the [build resources](./contents.md#extraresources) or to the project directory. The icon filename must contain the size (e.g. 32x32.png) of the icon.\nBy default will be generated automatically based on the macOS icns file.", + { "type": "string" - }, - "maintainer": { - "description": "The maintainer. Defaults to [author](./configuration.md#author).", - "type": [ - "null", - "string" - ] - }, - "mimeTypes": { - "anyOf": [ - { - "items": { - "type": "string" - }, - "type": "array" - }, - { - "type": "null" - } - ], - "description": "The mime types in addition to specified in the file associations. Use it if you don't want to register a new mime type, but reuse existing." - }, - "packageCategory": { - "description": "backward compatibility + to allow specify fpm-only category for all possible fpm targets in one place", - "type": [ - "null", - "string" - ] - }, - "protocols": { - "anyOf": [ - { - "$ref": "#/definitions/Protocol" - }, - { - "items": { - "$ref": "#/definitions/Protocol" - }, - "type": "array" - } - ], - "description": "The URL protocol schemes." - }, - "publish": { - "anyOf": [ - { - "$ref": "#/definitions/GithubOptions" - }, - { - "$ref": "#/definitions/GitlabOptions" - }, - { - "$ref": "#/definitions/S3Options" - }, - { - "$ref": "#/definitions/SpacesOptions" - }, - { - "$ref": "#/definitions/GenericServerOptions" - }, - { - "$ref": "#/definitions/CustomPublishOptions" - }, - { - "$ref": "#/definitions/KeygenOptions" - }, - { - "$ref": "#/definitions/SnapStoreOptions" - }, - { - "$ref": "#/definitions/BitbucketOptions" - }, - { - "items": { - "$ref": "#/definitions/AllPublishOptions" - }, - "type": "array" - }, - { - "type": [ - "null", - "string" - ] - } - ], - "description": "Publisher configuration. See [Auto Update](./publish.md) for more information." - }, - "releaseInfo": { - "$ref": "#/definitions/ReleaseInfo", - "description": "The release info. Intended for command line usage:\n\n```\n-c.releaseInfo.releaseNotes=\"new features\"\n```" - }, - "synopsis": { - "description": "The [short description](https://www.debian.org/doc/debian-policy/ch-controlfields.html#s-f-Description).", - "type": [ - "null", - "string" - ] - }, - "target": { - "anyOf": [ - { - "$ref": "#/definitions/TargetConfiguration" - }, - { - "items": { - "anyOf": [ - { - "$ref": "#/definitions/TargetConfiguration" - }, - { - "type": "string" - } - ] - }, - "type": "array" - }, - { - "type": [ - "null", - "string" - ] - } - ], - "default": "AppImage", - "description": "Target package type: list of `AppImage`, `flatpak`, `snap`, `deb`, `rpm`, `freebsd`, `pacman`, `p5p`, `apk`, `7z`, `zip`, `tar.xz`, `tar.lz`, `tar.gz`, `tar.bz2`, `dir`.\n\nelectron-builder [docker image](./multi-platform-build.md#docker) can be used to build Linux targets on any platform.\n\nPlease [do not put an AppImage into another archive](https://github.com/probonopd/AppImageKit/wiki/Creating-AppImages#common-mistake) like a .zip or .tar.gz." - }, - "vendor": { - "description": "The vendor. Defaults to [author](./configuration.md#author).", - "type": [ - "null", - "string" - ] } - }, - "type": "object" + ] }, - "LinuxDesktopFile": { - "additionalProperties": false, - "description": "Example Spec: https://specifications.freedesktop.org/desktop-entry-spec/latest/example.html", - "properties": { - "desktopActions": { - "anyOf": [ - { - "typeof": "function" - }, - { - "type": "null" - } - ], - "description": "`[Desktop Actions ]` metadata entries (name to value).\n\nConfig Example:\n```js\ndesktopActions: {\n NewWindow: {\n Name: 'New Window',\n Exec: 'app --new-window',\n }\n}\n```" - }, - "entry": { - "anyOf": [ - { - "typeof": "function" - }, - { - "type": "null" - } - ], - "description": "`[Desktop Entry]` metadata entries (name to value). Overwrites default values calculated by electron-builder" + "afterPack": { + "description": "The function (or path to file or module id) to be [run after pack](#afterpack) (but before pack into distributable format and sign).\nSame setup as {@link beforePack}", + "anyOf": [ + { + "typeof": "function" + }, + { + "type": "string" } - }, - "type": "object" + ] }, - "LinuxTargetSpecificOptions": { - "additionalProperties": false, - "properties": { - "afterInstall": { - "description": "File path to script to be passed to FPM for `--after-install` arg.", - "type": [ - "null", - "string" - ] + "afterSign": { + "description": "The function (or path to file or module id) to be [run after pack and sign](#aftersign) (but before pack into distributable format).\nSame setup as {@link beforePack}", + "anyOf": [ + { + "typeof": "function" }, - "afterRemove": { - "description": "File path to script to be passed to FPM for `--after-remove` arg.", - "type": [ - "null", - "string" - ] + { + "type": "string" + } + ] + }, + "artifactBuildStarted": { + "description": "The function (or path to file or module id) to be run on artifact build start.\nSame setup as {@link beforePack}", + "anyOf": [ + { + "typeof": "function" }, - "appArmorProfile": { - "description": "File path to custom AppArmor profile (Ubuntu 24+)", - "type": [ - "null", - "string" - ] + { + "type": "string" + } + ] + }, + "artifactBuildCompleted": { + "description": "The function (or path to file or module id) to be run on artifact build completed.\nSame setup as {@link beforePack}", + "anyOf": [ + { + "typeof": "function" }, - "artifactName": { - "description": "The [artifact file name template](./configuration.md#artifact-file-name-template).", - "type": [ - "null", - "string" - ] + { + "type": "string" + } + ] + }, + "afterAllArtifactBuild": { + "description": "The function (or path to file or module id) to be run after all artifacts are built.\n\n```typescript\n(buildResult: BuildResult): Promise> | Array\n```\n\nConfiguration in the same way as `afterPack` (see above).\n\n!!! example \"myAfterAllArtifactBuild.js\"\n```js\nexports.default = function () {\n // you can return additional files to publish\n return [\"/path/to/additional/result/file\"]\n}\n```", + "anyOf": [ + { + "typeof": "function" }, - "category": { - "description": "The [application category](https://specifications.freedesktop.org/menu-spec/latest/apa.html#main-category-registry).", - "type": [ - "null", - "string" - ] + { + "type": "string" + } + ] + }, + "msiProjectCreated": { + "description": "The function (or path to file or module id) to be run after MSI project created on disk - not packed into .msi package yet.", + "anyOf": [ + { + "typeof": "function" }, - "compression": { - "anyOf": [ - { - "enum": [ - "bzip2", - "gz", - "lzo", - "xz" - ], - "type": "string" - }, - { - "type": "null" - } - ], - "default": "xz", - "description": "The compression type." + { + "type": "string" + } + ] + }, + "appxManifestCreated": { + "description": "The function (or path to file or module id) to be run after Appx manifest created on disk - not packed into .appx package yet.", + "anyOf": [ + { + "typeof": "function" }, - "depends": { - "anyOf": [ - { - "items": { - "type": "string" - }, - "type": "array" - }, - { - "type": "null" - } - ], - "description": "Package dependencies.\n`rpm` defaults to `[\"gtk3\", \"libnotify\", \"nss\", \"libXScrnSaver\", \"(libXtst or libXtst6)\", \"xdg-utils\", \"at-spi2-core\", \"(libuuid or libuuid1)\"]`\n`pacman` defaults to `[\"c-ares\", \"ffmpeg\", \"gtk3\", \"http-parser\", \"libevent\", \"libvpx\", \"libxslt\", \"libxss\", \"minizip\", \"nss\", \"re2\", \"snappy\", \"libnotify\", \"libappindicator-gtk3\"]`" + { + "type": "string" + } + ] + }, + "onNodeModuleFile": { + "description": "The function (or path to file or module id) to be [run on each node module](#onnodemodulefile) file. Returning `true`/`false` will determine whether to force include or to use the default copier logic", + "anyOf": [ + { + "typeof": "function" }, - "description": { - "description": "As [description](./configuration.md#description) from application package.json, but allows you to specify different for Linux.", - "type": [ - "null", - "string" - ] + { + "type": "string" + } + ] + }, + "beforeBuild": { + "description": "The function (or path to file or module id) to be run before dependencies are installed or rebuilt. Works when `npmRebuild` is set to `true`. Resolving to `false` will skip dependencies install or rebuild.\n\nIf provided and `node_modules` are missing, it will not invoke production dependencies check.", + "anyOf": [ + { + "typeof": "function" }, - "desktop": { - "anyOf": [ - { - "$ref": "#/definitions/LinuxDesktopFile" - }, - { - "type": "null" - } - ], - "description": "The [Desktop file](https://developer.gnome.org/documentation/guidelines/maintainer/integrating.html#desktop-files)" + { + "type": "string" + } + ] + }, + "electronDist": { + "description": "The function (or path to file or module id) to be run when staging the electron artifact environment.\nReturns the path to custom Electron build (e.g. `~/electron/out/R`) or folder of electron zips.\n\nZip files must follow the pattern `electron-v${version}-${platformName}-${arch}.zip`, otherwise it will be assumed to be an unpacked Electron app directory", + "anyOf": [ + { + "typeof": "function" }, - "executableArgs": { - "anyOf": [ - { - "items": { - "type": "string" - }, - "type": "array" - }, - { - "type": "null" - } - ], - "description": "The executable parameters. Pass to executableName" + { + "type": "string" + } + ] + }, + "$schema": { + "description": "JSON Schema for this document.", + "type": [ + "null", + "string" + ] + } + }, + "additionalProperties": false, + "definitions": { + "ElectronDownloadOptions": { + "type": "object", + "properties": { + "version": { + "type": "string" }, - "fpm": { - "anyOf": [ - { - "items": { - "type": "string" - }, - "type": "array" - }, - { - "type": "null" - } - ], - "description": "*Advanced only* The [fpm](https://fpm.readthedocs.io/en/latest/cli-reference.html) options.\n\nExample: `[\"--before-install=build/deb-preinstall.sh\", \"--after-upgrade=build/deb-postinstall.sh\"]`" + "cache": { + "description": "The [cache location](https://github.com/electron-userland/electron-download#cache-location).", + "type": "string" }, - "icon": { + "mirror": { + "description": "The mirror.", "type": "string" }, - "maintainer": { - "type": [ - "null", - "string" - ] + "customDir": { + "type": "string" }, - "mimeTypes": { - "anyOf": [ - { - "items": { - "type": "string" - }, - "type": "array" - }, - { - "type": "null" - } - ], - "description": "The mime types in addition to specified in the file associations. Use it if you don't want to register a new mime type, but reuse existing." + "customFilename": { + "type": "string" }, - "packageCategory": { - "description": "The package category.", - "type": [ - "null", - "string" - ] + "strictSSL": { + "type": "boolean" }, - "packageName": { - "description": "The name of the package.", - "type": [ - "null", - "string" - ] + "isVerifyChecksum": { + "type": "boolean" }, - "publish": { - "anyOf": [ - { - "$ref": "#/definitions/GithubOptions" - }, - { - "$ref": "#/definitions/GitlabOptions" - }, - { - "$ref": "#/definitions/S3Options" - }, - { - "$ref": "#/definitions/SpacesOptions" - }, - { - "$ref": "#/definitions/GenericServerOptions" - }, - { - "$ref": "#/definitions/CustomPublishOptions" - }, - { - "$ref": "#/definitions/KeygenOptions" - }, - { - "$ref": "#/definitions/SnapStoreOptions" - }, - { - "$ref": "#/definitions/BitbucketOptions" - }, - { - "items": { - "$ref": "#/definitions/AllPublishOptions" - }, - "type": "array" - }, - { - "type": [ - "null", - "string" - ] - } - ] + "platform": { + "$ref": "#/definitions/ElectronPlatformName" }, - "synopsis": { - "description": "The [short description](https://www.debian.org/doc/debian-policy/ch-controlfields.html#s-f-Description).", - "type": [ - "null", - "string" - ] + "arch": { + "type": "string" + } + }, + "additionalProperties": false + }, + "ElectronPlatformName": { + "enum": [ + "darwin", + "linux", + "mas", + "win32" + ], + "type": "string" + }, + "ElectronBrandingOptions": { + "description": "Electron distributables branding options.", + "type": "object", + "properties": { + "projectName": { + "type": "string" }, - "vendor": { - "type": [ - "null", - "string" - ] + "productName": { + "type": "string" } }, - "type": "object" + "additionalProperties": false }, - "MacConfiguration": { - "additionalProperties": false, + "MetadataDirectories": { + "type": "object", "properties": { - "additionalArguments": { - "anyOf": [ - { - "items": { - "type": "string" - }, - "type": "array" - }, - { - "type": "null" - } - ], - "description": "Array of strings specifying additional arguments to pass to the `codesign` command used to sign a specific file.\n\nSome subresources that you may include in your Electron app may need to be signed with --deep, this is not typically safe to apply to the entire Electron app and therefore should be applied to just your file.\nUsage Example: `['--deep']`" - }, - "appId": { - "default": "com.electron.${name}", - "description": "The application id. Used as [CFBundleIdentifier](https://developer.apple.com/library/ios/documentation/General/Reference/InfoPlistKeyReference/Articles/CoreFoundationKeys.html#//apple_ref/doc/uid/20001431-102070) for MacOS and as\n[Application User Model ID](https://msdn.microsoft.com/en-us/library/windows/desktop/dd378459(v=vs.85).aspx) for Windows (NSIS target only, Squirrel.Windows not supported). It is strongly recommended that an explicit ID is set.", - "type": [ - "null", - "string" - ] + "buildResources": { + "description": "The path to build resources.\n\nPlease note — build resources are not packed into the app. If you need to use some files, e.g. as tray icon, please include required files explicitly: `\"files\": [\"**\\/*\", \"build/icon.*\"]`", + "default": "build", + "type": "string" }, - "artifactName": { - "description": "The [artifact file name template](./configuration.md#artifact-file-name-template). Defaults to `${productName}-${version}.${ext}` (some target can have other defaults, see corresponding options).", - "type": [ - "null", - "string" - ] + "output": { + "description": "The output directory. [File macros](./file-patterns.md#file-macros) are supported.", + "default": "dist", + "type": "string" }, - "asar": { - "anyOf": [ - { - "$ref": "#/definitions/AsarOptions" - }, - { - "type": [ - "null", - "boolean" - ] - } - ], - "default": true, - "description": "Whether to package the application's source code into an archive, using [Electron's archive format](http://electron.atom.io/docs/tutorial/application-packaging/).\n\nNode modules, that must be unpacked, will be detected automatically, you don't need to explicitly set [asarUnpack](#asarUnpack) - please file an issue if this doesn't work." + "app": { + "description": "The application directory (containing the application package.json), defaults to `app`, `www` or working directory.", + "type": "string" + } + }, + "additionalProperties": false + }, + "MacConfiguration": { + "type": "object", + "properties": { + "category": { + "description": "The application category type, as shown in the Finder via *View -> Arrange by Application Category* when viewing the Applications directory.\n\nFor example, `\"category\": \"public.app-category.developer-tools\"` will set the application category to *Developer Tools*.\n\nValid values are listed in [Apple's documentation](https://developer.apple.com/library/ios/documentation/General/Reference/InfoPlistKeyReference/Articles/LaunchServicesKeys.html#//apple_ref/doc/uid/TP40009250-SW8).", + "type": "string" }, - "asarUnpack": { + "target": { + "description": "The target package type: list of `default`, `dmg`, `mas`, `mas-dev`, `pkg`, `7z`, `zip`, `tar.xz`, `tar.lz`, `tar.gz`, `tar.bz2`, `dir`. Defaults to `default` (`dmg` and `zip` for Squirrel.Mac). Note: Squirrel.Mac auto update mechanism requires both `dmg` and `zip` to be enabled, even when only `dmg` is used. Disabling `zip` will break auto update in `dmg` packages.", "anyOf": [ { - "items": { - "type": "string" - }, - "type": "array" + "$ref": "#/definitions/TargetConfiguration" }, { - "type": [ - "null", - "string" - ] - } - ], - "description": "A [glob patterns](./file-patterns.md) relative to the [app directory](#directories), which specifies which files to unpack when creating the [asar](http://electron.atom.io/docs/tutorial/application-packaging/) archive." - }, - "binaries": { - "anyOf": [ - { + "type": "array", "items": { - "type": "string" - }, - "type": "array" + "anyOf": [ + { + "$ref": "#/definitions/TargetConfiguration" + }, + { + "enum": [ + "7z", + "default", + "dir", + "dmg", + "mas", + "mas-dev", + "pkg", + "tar.bz2", + "tar.gz", + "tar.lz", + "tar.xz", + "zip" + ], + "type": "string" + } + ] + } }, { - "type": "null" + "enum": [ + "7z", + "default", + "dir", + "dmg", + "mas", + "mas-dev", + "pkg", + "tar.bz2", + "tar.gz", + "tar.lz", + "tar.xz", + "zip" + ], + "type": "string" } - ], - "description": "Paths of any extra binaries that need to be signed." - }, - "bundleShortVersion": { - "description": "The `CFBundleShortVersionString`. Do not use it unless you need to.", - "type": [ - "null", - "string" ] }, - "bundleVersion": { - "description": "The `CFBundleVersion`. Do not use it unless [you need to](https://github.com/electron-userland/electron-builder/issues/565#issuecomment-230678643).", - "type": [ - "null", - "string" - ] + "identity": { + "description": "The name of certificate to use when signing. Consider using environment variables [CSC_LINK or CSC_NAME](./code-signing.md) instead of specifying this option.\nMAS installer identity is specified in the [mas](./mas.md).\n\nSet to `-` to use an ad-hoc identity for signing. Set to `null` to skip signing entirely.", + "type": "string" }, - "category": { - "description": "The application category type, as shown in the Finder via *View -> Arrange by Application Category* when viewing the Applications directory.\n\nFor example, `\"category\": \"public.app-category.developer-tools\"` will set the application category to *Developer Tools*.\n\nValid values are listed in [Apple's documentation](https://developer.apple.com/library/ios/documentation/General/Reference/InfoPlistKeyReference/Articles/LaunchServicesKeys.html#//apple_ref/doc/uid/TP40009250-SW8).", - "type": [ - "null", - "string" - ] + "icon": { + "description": "The path to application icon.\nAccepts `.icns` (legacy) or `.icon` (Icon Composer asset).\nIf a `.icon` asset is provided, it will be preferred and compiled to an asset catalog.", + "default": "build/icon.icns", + "type": "string" }, - "compression": { - "anyOf": [ - { - "enum": [ - "maximum", - "normal", - "store" - ], - "type": "string" - }, - { - "type": "null" - } - ], - "default": "normal", - "description": "The compression level. If you want to rapidly test build, `store` can reduce build time significantly. `maximum` doesn't lead to noticeable size difference, but increase build time." + "entitlements": { + "description": "The path to entitlements file for signing the app. `build/entitlements.mac.plist` will be used if exists (it is a recommended way to set).\nMAS entitlements is specified in the [mas](./mas.md).\nSee [this folder in osx-sign's repository](https://github.com/electron/osx-sign/tree/main/entitlements) for examples.\nBe aware that your app may crash if the right entitlements are not set like `com.apple.security.cs.allow-jit` for example on arm64 builds with Electron 20+.\nSee [Signing and Notarizing macOS Builds from the Electron documentation](https://www.electronjs.org/docs/latest/tutorial/code-signing#signing--notarizing-macos-builds) for more information.", + "type": "string" }, - "cscInstallerKeyPassword": { - "type": [ - "null", - "string" - ] + "entitlementsInherit": { + "description": "The path to child entitlements which inherit the security settings for signing frameworks and bundles of a distribution. `build/entitlements.mac.inherit.plist` will be used if exists (it is a recommended way to set).\nSee [this folder in osx-sign's repository](https://github.com/electron/osx-sign/tree/main/entitlements) for examples.\n\nThis option only applies when signing with `entitlements` provided.", + "type": "string" }, - "cscInstallerLink": { - "type": [ - "null", - "string" - ] + "entitlementsLoginHelper": { + "description": "Path to login helper entitlement file.\nWhen using App Sandbox, the the `com.apple.security.inherit` key that is normally in the inherited entitlements cannot be inherited since the login helper is a standalone executable.\nDefaults to the value provided for `entitlements`. This option only applies when signing with `entitlements` provided.", + "type": "string" }, - "cscKeyPassword": { - "type": [ - "null", - "string" - ] + "provisioningProfile": { + "description": "The path to the provisioning profile to use when signing, absolute or relative to the app root.", + "type": "string" }, - "cscLink": { - "type": [ - "null", - "string" - ] + "bundleVersion": { + "description": "The `CFBundleVersion`. Do not use it unless [you need to](https://github.com/electron-userland/electron-builder/issues/565#issuecomment-230678643).", + "type": "string" + }, + "bundleShortVersion": { + "description": "The `CFBundleShortVersionString`. Do not use it unless you need to.", + "type": "string" }, "darkModeSupport": { - "default": false, "description": "Whether a dark mode is supported. If your app does have a dark mode, you can make your app follow the system-wide dark mode setting.", + "default": false, "type": "boolean" }, - "defaultArch": { + "helperBundleId": { + "description": "The bundle identifier to use in the application helper's plist.", + "default": "${appBundleIdentifier}.helper", "type": "string" }, - "detectUpdateChannel": { - "default": true, - "description": "Whether to infer update channel from application version pre-release components. e.g. if version `0.12.1-alpha.1`, channel will be set to `alpha`. Otherwise to `latest`.\nThis does *not* apply to github publishing, which will [never auto-detect the update channel](https://github.com/electron-userland/electron-builder/issues/8589).", - "type": "boolean" + "helperRendererBundleId": { + "description": "The bundle identifier to use in the Renderer helper's plist.", + "default": "${appBundleIdentifier}.helper.Renderer", + "type": "string" }, - "disableDefaultIgnoredFiles": { - "default": false, - "description": "Whether to exclude all default ignored files(https://www.electron.build/contents#files) and options. Defaults to `false`.", - "type": [ - "null", - "boolean" - ] + "helperPluginBundleId": { + "description": "The bundle identifier to use in the Plugin helper's plist.", + "default": "${appBundleIdentifier}.helper.Plugin", + "type": "string" }, - "electronLanguages": { - "anyOf": [ - { - "items": { - "type": "string" - }, - "type": "array" - }, - { - "type": "string" - } + "helperGPUBundleId": { + "description": "The bundle identifier to use in the GPU helper's plist.", + "default": "${appBundleIdentifier}.helper.GPU", + "type": "string" + }, + "helperEHBundleId": { + "description": "The bundle identifier to use in the EH helper's plist.", + "default": "${appBundleIdentifier}.helper.EH", + "type": "string" + }, + "helperNPBundleId": { + "description": "The bundle identifier to use in the NP helper's plist.", + "default": "${appBundleIdentifier}.helper.NP", + "type": "string" + }, + "type": { + "description": "Whether to sign app for development or for distribution.", + "default": "distribution", + "enum": [ + "development", + "distribution" ], - "description": "The electron locales to keep. By default, all Electron locales used as-is." + "type": "string" }, - "electronUpdaterCompatibility": { - "description": "The [electron-updater compatibility](./auto-update.md#compatibility) semver range.", - "type": [ - "null", - "string" - ] + "extendInfo": { + "description": "The extra entries for `Info.plist`." }, - "entitlements": { - "description": "The path to entitlements file for signing the app. `build/entitlements.mac.plist` will be used if exists (it is a recommended way to set).\nMAS entitlements is specified in the [mas](./mas.md).\nSee [this folder in osx-sign's repository](https://github.com/electron/osx-sign/tree/main/entitlements) for examples.\nBe aware that your app may crash if the right entitlements are not set like `com.apple.security.cs.allow-jit` for example on arm64 builds with Electron 20+.\nSee [Signing and Notarizing macOS Builds from the Electron documentation](https://www.electronjs.org/docs/latest/tutorial/code-signing#signing--notarizing-macos-builds) for more information.", - "type": [ - "null", - "string" - ] + "binaries": { + "description": "Paths of any extra binaries that need to be signed.", + "type": "array", + "items": { + "type": "string" + } }, - "entitlementsInherit": { - "description": "The path to child entitlements which inherit the security settings for signing frameworks and bundles of a distribution. `build/entitlements.mac.inherit.plist` will be used if exists (it is a recommended way to set).\nSee [this folder in osx-sign's repository](https://github.com/electron/osx-sign/tree/main/entitlements) for examples.\n\nThis option only applies when signing with `entitlements` provided.", - "type": [ - "null", - "string" - ] + "minimumSystemVersion": { + "description": "The minimum version of macOS required for the app to run. Corresponds to `LSMinimumSystemVersion`.", + "type": "string" }, - "entitlementsLoginHelper": { - "description": "Path to login helper entitlement file.\nWhen using App Sandbox, the the `com.apple.security.inherit` key that is normally in the inherited entitlements cannot be inherited since the login helper is a standalone executable.\nDefaults to the value provided for `entitlements`. This option only applies when signing with `entitlements` provided.", - "type": [ - "null", - "string" - ] + "requirements": { + "description": "Path of [requirements file](https://developer.apple.com/library/mac/documentation/Security/Conceptual/CodeSigningGuide/RequirementLang/RequirementLang.html) used in signing. Not applicable for MAS.", + "type": "string" }, - "executableName": { - "description": "The executable name. Defaults to `productName`\nNote: Except for Linux, where this would constitute a breaking change in previous behavior and lead to both invalid executable names and Desktop files. Ref comments in: https://github.com/electron-userland/electron-builder/pull/9068", - "type": [ - "null", - "string" - ] + "cscInstallerLink": { + "type": "string" }, - "extendInfo": { - "description": "The extra entries for `Info.plist`." + "cscInstallerKeyPassword": { + "type": "string" }, "extraDistFiles": { + "description": "Extra files to put in archive. Not applicable for `tar.*`.", "anyOf": [ { + "type": "array", "items": { "type": "string" - }, - "type": "array" + } }, { - "type": [ - "null", - "string" - ] + "type": "string" } - ], - "description": "Extra files to put in archive. Not applicable for `tar.*`." + ] }, - "extraFiles": { - "anyOf": [ - { - "$ref": "#/definitions/FileSet" - }, - { - "items": { - "anyOf": [ - { - "$ref": "#/definitions/FileSet" - }, - { - "type": "string" - } - ] - }, - "type": "array" - }, - { - "type": [ - "null", - "string" - ] - } - ], - "description": "The same as [extraResources](#extraresources) but copy into the app's content directory (`Contents` for MacOS, root directory for Linux and Windows)." + "hardenedRuntime": { + "description": "Whether your app has to be signed with hardened runtime.", + "default": true, + "type": "boolean" }, - "extraResources": { - "anyOf": [ - { - "$ref": "#/definitions/FileSet" - }, - { - "items": { - "anyOf": [ - { - "$ref": "#/definitions/FileSet" - }, - { - "type": "string" - } - ] - }, - "type": "array" - }, - { - "type": [ - "null", - "string" - ] - } - ], - "description": "A [glob patterns](./file-patterns.md) relative to the project directory, when specified, copy the file or directory with matching names directly into the app's resources directory (`Contents/Resources` for MacOS, `resources` for Linux and Windows).\n\nFile patterns (and support for `from` and `to` fields) the same as for [files](#files)." + "gatekeeperAssess": { + "description": "Whether to let `@electron/osx-sign` validate the signing or not.", + "default": false, + "type": "boolean" }, - "fileAssociations": { + "strictVerify": { + "description": "Whether to let `@electron/osx-sign` verify the contents or not.", + "default": true, + "type": "boolean" + }, + "preAutoEntitlements": { + "description": "Whether to enable entitlements automation from `@electron/osx-sign`.", + "default": true, + "type": "boolean" + }, + "signIgnore": { + "description": "Regex or an array of regex's that signal skipping signing a file.", "anyOf": [ { - "$ref": "#/definitions/FileAssociation" + "type": "array", + "items": { + "type": "string" + } }, { - "items": { - "$ref": "#/definitions/FileAssociation" - }, - "type": "array" + "type": "string" } - ], - "description": "The file associations." + ] }, - "files": { + "sign": { + "description": "The custom function (or path to file or module id) to sign an app bundle.", "anyOf": [ { - "$ref": "#/definitions/FileSet" - }, - { - "items": { - "anyOf": [ - { - "$ref": "#/definitions/FileSet" - }, - { - "type": "string" - } - ] - }, - "type": "array" + "typeof": "function" }, { - "type": [ - "null", - "string" - ] + "type": "string" } - ], - "description": "A [glob patterns](./file-patterns.md) relative to the [app directory](configuration.md#directories), which specifies which files to include when copying files to create the package.\n\nDefaults to:\n```json\n[\n\"**\\/*\",\n\"!**\\/node_modules/*\\/{CHANGELOG.md,README.md,README,readme.md,readme}\",\n\"!**\\/node_modules/*\\/{test,__tests__,tests,powered-test,example,examples}\",\n\"!**\\/node_modules/*.d.ts\",\n\"!**\\/node_modules/.bin\",\n\"!**\\/*.{iml,o,hprof,orig,pyc,pyo,rbc,swp,csproj,sln,xproj}\",\n\"!.editorconfig\",\n\"!**\\/._*\",\n\"!**\\/{.DS_Store,.git,.hg,.svn,CVS,RCS,SCCS,.gitignore,.gitattributes}\",\n\"!**\\/{__pycache__,thumbs.db,.flowconfig,.idea,.vs,.nyc_output}\",\n\"!**\\/{appveyor.yml,.travis.yml,circle.yml}\",\n\"!**\\/{npm-debug.log,yarn.lock,.yarn-integrity,.yarn-metadata.json}\"\n]\n```\n\nDevelopment dependencies are never copied in any case. You don't need to ignore it explicitly. Hidden files are not ignored by default, but all files that should be ignored, are ignored by default.\n\nDefault pattern \\`**\\/*\\` **is not added to your custom** if some of your patterns is not ignore (i.e. not starts with `!`). `package.json` and \\`**\\/node_modules/**\\/*` (only production dependencies will be copied) is added to your custom in any case. All default ignores are added in any case — you don't need to repeat it if you configure own patterns.\n\nMay be specified in the platform options (e.g. in the [mac](mac.md)).\n\nYou may also specify custom source and destination directories by using `FileSet` objects instead of simple glob patterns.\n\n```json\n[\n{\n\"from\": \"path/to/source\",\n\"to\": \"path/to/destination\",\n\"filter\": [\"**\\/*\", \"!foo/*.js\"]\n}\n]\n```\n\nYou can use [file macros](./file-patterns.md#file-macros) in the `from` and `to` fields as well. `from` and `to` can be files and you can use this to [rename](https://github.com/electron-userland/electron-builder/issues/1119) a file while packaging." - }, - "forceCodeSigning": { - "description": "Whether to fail if app will be not code signed.", - "type": "boolean" - }, - "gatekeeperAssess": { - "default": false, - "description": "Whether to let `@electron/osx-sign` validate the signing or not.", - "type": "boolean" + ] }, - "generateUpdatesFilesForAllChannels": { - "default": false, - "description": "Please see [Building and Releasing using Channels](https://github.com/electron-userland/electron-builder/issues/1182#issuecomment-324947139).", - "type": "boolean" + "timestamp": { + "description": "Specify the URL of the timestamp authority server", + "type": "string" }, - "hardenedRuntime": { + "mergeASARs": { + "description": "Whether to merge ASAR files for different architectures or not.\n\nThis option has no effect unless building for \"universal\" arch.", "default": true, - "description": "Whether your app has to be signed with hardened runtime.", "type": "boolean" }, - "helperBundleId": { - "default": "${appBundleIdentifier}.helper", - "description": "The bundle identifier to use in the application helper's plist.", - "type": [ - "null", - "string" - ] - }, - "helperEHBundleId": { - "default": "${appBundleIdentifier}.helper.EH", - "description": "The bundle identifier to use in the EH helper's plist.", - "type": [ - "null", - "string" - ] - }, - "helperGPUBundleId": { - "default": "${appBundleIdentifier}.helper.GPU", - "description": "The bundle identifier to use in the GPU helper's plist.", - "type": [ - "null", - "string" - ] + "singleArchFiles": { + "description": "Minimatch pattern of paths that are allowed to be present in one of the\nASAR files, but not in the other.\n\nThis option has no effect unless building for \"universal\" arch and applies\nonly if `mergeASARs` is `true`.", + "type": "string" }, - "helperNPBundleId": { - "default": "${appBundleIdentifier}.helper.NP", - "description": "The bundle identifier to use in the NP helper's plist.", - "type": [ - "null", - "string" - ] + "x64ArchFiles": { + "description": "Minimatch pattern of paths that are allowed to be x64 binaries in both\nASAR files\n\nThis option has no effect unless building for \"universal\" arch and applies\nonly if `mergeASARs` is `true`.", + "type": "string" }, - "helperPluginBundleId": { - "default": "${appBundleIdentifier}.helper.Plugin", - "description": "The bundle identifier to use in the Plugin helper's plist.", - "type": [ - "null", - "string" - ] + "additionalArguments": { + "description": "Array of strings specifying additional arguments to pass to the `codesign` command used to sign a specific file.\n\nSome subresources that you may include in your Electron app may need to be signed with --deep, this is not typically safe to apply to the entire Electron app and therefore should be applied to just your file.\nUsage Example: `['--deep']`", + "type": "array", + "items": { + "type": "string" + } }, - "helperRendererBundleId": { - "default": "${appBundleIdentifier}.helper.Renderer", - "description": "The bundle identifier to use in the Renderer helper's plist.", - "type": [ - "null", - "string" - ] + "notarize": { + "description": "Whether to disable electron-builder's [@electron/notarize](https://github.com/electron/notarize) integration.\n\nNote: In order to activate the notarization step You MUST specify one of the following via environment variables:\n\n1. `APPLE_API_KEY`, `APPLE_API_KEY_ID` and `APPLE_API_ISSUER`.\n2. `APPLE_ID`, `APPLE_APP_SPECIFIC_PASSWORD`, and `APPLE_TEAM_ID`\n3. `APPLE_KEYCHAIN` and `APPLE_KEYCHAIN_PROFILE`\n\nFor security reasons it is recommended to use the first option (see https://github.com/electron-userland/electron-builder/issues/7859)", + "type": "boolean" }, - "icon": { - "default": "build/icon.icns", - "description": "The path to application icon.\nAccepts `.icns` (legacy) or `.icon` (Icon Composer asset).\nIf a `.icon` asset is provided, it will be preferred and compiled to an asset catalog.", - "type": [ - "null", - "string" - ] + "appId": { + "description": "The application id. Used as [CFBundleIdentifier](https://developer.apple.com/library/ios/documentation/General/Reference/InfoPlistKeyReference/Articles/CoreFoundationKeys.html#//apple_ref/doc/uid/20001431-102070) for MacOS and as\n[Application User Model ID](https://msdn.microsoft.com/en-us/library/windows/desktop/dd378459(v=vs.85).aspx) for Windows (NSIS target only, Squirrel.Windows not supported). It is strongly recommended that an explicit ID is set.", + "default": "com.electron.${name}", + "type": "string" }, - "identity": { - "description": "The name of certificate to use when signing. Consider using environment variables [CSC_LINK or CSC_NAME](./code-signing.md) instead of specifying this option.\nMAS installer identity is specified in the [mas](./mas.md).\n\nSet to `-` to use an ad-hoc identity for signing. Set to `null` to skip signing entirely.", - "type": [ - "null", - "string" - ] + "artifactName": { + "description": "The [artifact file name template](./configuration.md#artifact-file-name-template). Defaults to `${productName}-${version}.${ext}` (some target can have other defaults, see corresponding options).", + "type": "string" }, - "mergeASARs": { - "default": true, - "description": "Whether to merge ASAR files for different architectures or not.\n\nThis option has no effect unless building for \"universal\" arch.", - "type": "boolean" + "executableName": { + "description": "The executable name. Defaults to `productName`\nNote: Except for Linux, where this would constitute a breaking change in previous behavior and lead to both invalid executable names and Desktop files. Ref comments in: https://github.com/electron-userland/electron-builder/pull/9068", + "type": "string" }, - "minimumSystemVersion": { - "description": "The minimum version of macOS required for the app to run. Corresponds to `LSMinimumSystemVersion`.", - "type": [ - "null", - "string" - ] + "compression": { + "$ref": "#/definitions/CompressionLevel", + "description": "The compression level. If you want to rapidly test build, `store` can reduce build time significantly. `maximum` doesn't lead to noticeable size difference, but increase build time.", + "default": "normal" }, - "notarize": { - "description": "Whether to disable electron-builder's [@electron/notarize](https://github.com/electron/notarize) integration.\n\nNote: In order to activate the notarization step You MUST specify one of the following via environment variables:\n\n1. `APPLE_API_KEY`, `APPLE_API_KEY_ID` and `APPLE_API_ISSUER`.\n2. `APPLE_ID`, `APPLE_APP_SPECIFIC_PASSWORD`, and `APPLE_TEAM_ID`\n3. `APPLE_KEYCHAIN` and `APPLE_KEYCHAIN_PROFILE`\n\nFor security reasons it is recommended to use the first option (see https://github.com/electron-userland/electron-builder/issues/7859)", + "disableDefaultIgnoredFiles": { + "description": "Whether to exclude all default ignored files(https://www.electron.build/contents#files) and options. Defaults to `false`.", + "default": false, "type": "boolean" }, - "preAutoEntitlements": { + "asar": { + "description": "Whether to package the application's source code into an archive, using [Electron's archive format](http://electron.atom.io/docs/tutorial/application-packaging/).\n\nNode modules, that must be unpacked, will be detected automatically, you don't need to explicitly set [asarUnpack](#asarUnpack) - please file an issue if this doesn't work.", "default": true, - "description": "Whether to enable entitlements automation from `@electron/osx-sign`.", - "type": "boolean" - }, - "protocols": { "anyOf": [ { - "$ref": "#/definitions/Protocol" + "$ref": "#/definitions/AsarOptions" }, { - "items": { - "$ref": "#/definitions/Protocol" - }, - "type": "array" + "type": "boolean" } - ], - "description": "The URL protocol schemes." - }, - "provisioningProfile": { - "description": "The path to the provisioning profile to use when signing, absolute or relative to the app root.", - "type": [ - "null", - "string" ] }, - "publish": { + "asarUnpack": { + "description": "A [glob patterns](./file-patterns.md) relative to the [app directory](#directories), which specifies which files to unpack when creating the [asar](http://electron.atom.io/docs/tutorial/application-packaging/) archive.", "anyOf": [ { - "$ref": "#/definitions/GithubOptions" - }, - { - "$ref": "#/definitions/GitlabOptions" - }, - { - "$ref": "#/definitions/S3Options" - }, - { - "$ref": "#/definitions/SpacesOptions" + "type": "array", + "items": { + "type": "string" + } }, { - "$ref": "#/definitions/GenericServerOptions" - }, + "type": "string" + } + ] + }, + "fileAssociations": { + "description": "The file associations.", + "anyOf": [ { - "$ref": "#/definitions/CustomPublishOptions" + "$ref": "#/definitions/FileAssociation" }, { - "$ref": "#/definitions/KeygenOptions" - }, + "type": "array", + "items": { + "$ref": "#/definitions/FileAssociation" + } + } + ] + }, + "protocols": { + "description": "The URL protocol schemes.", + "anyOf": [ { - "$ref": "#/definitions/SnapStoreOptions" + "$ref": "#/definitions/Protocol" }, { - "$ref": "#/definitions/BitbucketOptions" - }, + "type": "array", + "items": { + "$ref": "#/definitions/Protocol" + } + } + ] + }, + "electronLanguages": { + "description": "The electron locales to keep. By default, all Electron locales used as-is.", + "anyOf": [ { + "type": "array", "items": { - "$ref": "#/definitions/AllPublishOptions" - }, - "type": "array" + "type": "string" + } }, { - "type": [ - "null", - "string" - ] + "type": "string" } - ], + ] + }, + "forceCodeSigning": { + "description": "Whether to fail if app will be not code signed.", + "type": "boolean" + }, + "electronUpdaterCompatibility": { + "description": "The [electron-updater compatibility](./auto-update.md#compatibility) semver range.", + "type": "string" + }, + "publish": { + "$ref": "#/definitions/Publish", "description": "Publisher configuration. See [Auto Update](./publish.md) for more information." }, + "detectUpdateChannel": { + "description": "Whether to infer update channel from application version pre-release components. e.g. if version `0.12.1-alpha.1`, channel will be set to `alpha`. Otherwise to `latest`.\nThis does *not* apply to github publishing, which will [never auto-detect the update channel](https://github.com/electron-userland/electron-builder/issues/8589).", + "default": true, + "type": "boolean" + }, + "generateUpdatesFilesForAllChannels": { + "description": "Please see [Building and Releasing using Channels](https://github.com/electron-userland/electron-builder/issues/1182#issuecomment-324947139).", + "default": false, + "type": "boolean" + }, "releaseInfo": { "$ref": "#/definitions/ReleaseInfo", "description": "The release info. Intended for command line usage:\n\n```\n-c.releaseInfo.releaseNotes=\"new features\"\n```" }, - "requirements": { - "description": "Path of [requirements file](https://developer.apple.com/library/mac/documentation/Security/Conceptual/CodeSigningGuide/RequirementLang/RequirementLang.html) used in signing. Not applicable for MAS.", - "type": [ - "null", - "string" - ] + "cscLink": { + "type": "string" }, - "sign": { + "cscKeyPassword": { + "type": "string" + }, + "defaultArch": { + "type": "string" + }, + "files": { + "description": "A [glob patterns](./file-patterns.md) relative to the [app directory](configuration.md#directories), which specifies which files to include when copying files to create the package.\n\nDefaults to:\n```json\n[\n\"**\\/*\",\n\"!**\\/node_modules/*\\/{CHANGELOG.md,README.md,README,readme.md,readme}\",\n\"!**\\/node_modules/*\\/{test,__tests__,tests,powered-test,example,examples}\",\n\"!**\\/node_modules/*.d.ts\",\n\"!**\\/node_modules/.bin\",\n\"!**\\/*.{iml,o,hprof,orig,pyc,pyo,rbc,swp,csproj,sln,xproj}\",\n\"!.editorconfig\",\n\"!**\\/._*\",\n\"!**\\/{.DS_Store,.git,.hg,.svn,CVS,RCS,SCCS,.gitignore,.gitattributes}\",\n\"!**\\/{__pycache__,thumbs.db,.flowconfig,.idea,.vs,.nyc_output}\",\n\"!**\\/{appveyor.yml,.travis.yml,circle.yml}\",\n\"!**\\/{npm-debug.log,yarn.lock,.yarn-integrity,.yarn-metadata.json}\"\n]\n```\n\nDevelopment dependencies are never copied in any case. You don't need to ignore it explicitly. Hidden files are not ignored by default, but all files that should be ignored, are ignored by default.\n\nDefault pattern \\`**\\/*\\` **is not added to your custom** if some of your patterns is not ignore (i.e. not starts with `!`). `package.json` and \\`**\\/node_modules/**\\/*` (only production dependencies will be copied) is added to your custom in any case. All default ignores are added in any case — you don't need to repeat it if you configure own patterns.\n\nMay be specified in the platform options (e.g. in the [mac](mac.md)).\n\nYou may also specify custom source and destination directories by using `FileSet` objects instead of simple glob patterns.\n\n```json\n[\n{\n\"from\": \"path/to/source\",\n\"to\": \"path/to/destination\",\n\"filter\": [\"**\\/*\", \"!foo/*.js\"]\n}\n]\n```\n\nYou can use [file macros](./file-patterns.md#file-macros) in the `from` and `to` fields as well. `from` and `to` can be files and you can use this to [rename](https://github.com/electron-userland/electron-builder/issues/1119) a file while packaging.", "anyOf": [ { - "typeof": "function" + "$ref": "#/definitions/FileSet" + }, + { + "type": "array", + "items": { + "anyOf": [ + { + "$ref": "#/definitions/FileSet" + }, + { + "type": "string" + } + ] + } }, { - "type": [ - "null", - "string" - ] + "type": "string" } - ], - "description": "The custom function (or path to file or module id) to sign an app bundle." + ] }, - "signIgnore": { + "extraResources": { + "description": "A [glob patterns](./file-patterns.md) relative to the project directory, when specified, copy the file or directory with matching names directly into the app's resources directory (`Contents/Resources` for MacOS, `resources` for Linux and Windows).\n\nFile patterns (and support for `from` and `to` fields) the same as for [files](#files).", "anyOf": [ { + "$ref": "#/definitions/FileSet" + }, + { + "type": "array", "items": { - "type": "string" - }, - "type": "array" + "anyOf": [ + { + "$ref": "#/definitions/FileSet" + }, + { + "type": "string" + } + ] + } }, { - "type": [ - "null", - "string" - ] + "type": "string" } - ], - "description": "Regex or an array of regex's that signal skipping signing a file." - }, - "singleArchFiles": { - "description": "Minimatch pattern of paths that are allowed to be present in one of the\nASAR files, but not in the other.\n\nThis option has no effect unless building for \"universal\" arch and applies\nonly if `mergeASARs` is `true`.", - "type": [ - "null", - "string" ] }, - "strictVerify": { - "default": true, - "description": "Whether to let `@electron/osx-sign` verify the contents or not.", - "type": "boolean" - }, - "target": { + "extraFiles": { + "description": "The same as [extraResources](#extraresources) but copy into the app's content directory (`Contents` for MacOS, root directory for Linux and Windows).", "anyOf": [ { - "$ref": "#/definitions/TargetConfiguration" + "$ref": "#/definitions/FileSet" }, { + "type": "array", "items": { "anyOf": [ { - "$ref": "#/definitions/TargetConfiguration" + "$ref": "#/definitions/FileSet" }, { - "enum": [ - "7z", - "default", - "dir", - "dmg", - "mas", - "mas-dev", - "pkg", - "tar.bz2", - "tar.gz", - "tar.lz", - "tar.xz", - "zip" - ], "type": "string" } ] - }, - "type": "array" + } }, { - "enum": [ - "7z", - "default", - "dir", - "dmg", - "mas", - "mas-dev", - "pkg", - "tar.bz2", - "tar.gz", - "tar.lz", - "tar.xz", - "zip" - ], "type": "string" - }, - { - "type": "null" } - ], - "description": "The target package type: list of `default`, `dmg`, `mas`, `mas-dev`, `pkg`, `7z`, `zip`, `tar.xz`, `tar.lz`, `tar.gz`, `tar.bz2`, `dir`. Defaults to `default` (`dmg` and `zip` for Squirrel.Mac). Note: Squirrel.Mac auto update mechanism requires both `dmg` and `zip` to be enabled, even when only `dmg` is used. Disabling `zip` will break auto update in `dmg` packages." - }, - "timestamp": { - "description": "Specify the URL of the timestamp authority server", - "type": [ - "null", - "string" ] + } + }, + "additionalProperties": false + }, + "TargetConfiguration": { + "type": "object", + "properties": { + "target": { + "description": "The target name. e.g. `snap`.", + "type": "string" }, - "type": { + "arch": { + "description": "The arch or list of archs.", "anyOf": [ + { + "type": "array", + "items": { + "$ref": "#/definitions/ArchType" + } + }, { "enum": [ - "development", - "distribution" + "arm64", + "armv7l", + "ia32", + "universal", + "x64" ], "type": "string" - }, - { - "type": "null" } - ], - "default": "distribution", - "description": "Whether to sign app for development or for distribution." - }, - "x64ArchFiles": { - "description": "Minimatch pattern of paths that are allowed to be x64 binaries in both\nASAR files\n\nThis option has no effect unless building for \"universal\" arch and applies\nonly if `mergeASARs` is `true`.", - "type": [ - "null", - "string" ] } }, - "type": "object" - }, - "MasConfiguration": { "additionalProperties": false, + "required": [ + "target" + ] + }, + "ArchType": { + "enum": [ + "arm64", + "armv7l", + "ia32", + "universal", + "x64" + ], + "type": "string" + }, + "CompressionLevel": { + "enum": [ + "maximum", + "normal", + "store" + ], + "type": "string" + }, + "AsarOptions": { + "type": "object", "properties": { - "additionalArguments": { + "smartUnpack": { + "description": "Whether to automatically unpack executables files.", + "default": true, + "type": "boolean" + }, + "ordering": { + "type": "string" + } + }, + "additionalProperties": false + }, + "FileAssociation": { + "description": "File associations.\n\nmacOS (corresponds to [CFBundleDocumentTypes](https://developer.apple.com/library/content/documentation/General/Reference/InfoPlistKeyReference/Articles/CoreFoundationKeys.html#//apple_ref/doc/uid/20001431-101685)), NSIS, and MSI only.\n\nOn Windows (NSIS) works only if [nsis.perMachine](https://www.electron.build/nsis) is set to `true`.", + "type": "object", + "properties": { + "ext": { + "description": "The extension (minus the leading period). e.g. `png`.", "anyOf": [ { + "type": "array", "items": { "type": "string" - }, - "type": "array" + } }, { - "type": "null" + "type": "string" } - ], - "description": "Array of strings specifying additional arguments to pass to the `codesign` command used to sign a specific file.\n\nSome subresources that you may include in your Electron app may need to be signed with --deep, this is not typically safe to apply to the entire Electron app and therefore should be applied to just your file.\nUsage Example: `['--deep']`" - }, - "appId": { - "default": "com.electron.${name}", - "description": "The application id. Used as [CFBundleIdentifier](https://developer.apple.com/library/ios/documentation/General/Reference/InfoPlistKeyReference/Articles/CoreFoundationKeys.html#//apple_ref/doc/uid/20001431-102070) for MacOS and as\n[Application User Model ID](https://msdn.microsoft.com/en-us/library/windows/desktop/dd378459(v=vs.85).aspx) for Windows (NSIS target only, Squirrel.Windows not supported). It is strongly recommended that an explicit ID is set.", - "type": [ - "null", - "string" ] }, - "artifactName": { - "description": "The [artifact file name template](./configuration.md#artifact-file-name-template). Defaults to `${productName}-${version}.${ext}` (some target can have other defaults, see corresponding options).", - "type": [ - "null", - "string" - ] + "name": { + "description": "The name. e.g. `PNG`. Defaults to `ext`.", + "type": "string" }, - "asar": { - "anyOf": [ - { - "$ref": "#/definitions/AsarOptions" - }, - { - "type": [ - "null", - "boolean" - ] - } - ], - "default": true, - "description": "Whether to package the application's source code into an archive, using [Electron's archive format](http://electron.atom.io/docs/tutorial/application-packaging/).\n\nNode modules, that must be unpacked, will be detected automatically, you don't need to explicitly set [asarUnpack](#asarUnpack) - please file an issue if this doesn't work." + "description": { + "description": "*windows-only.* The description.", + "type": "string" + }, + "mimeType": { + "description": "*linux-only.* The mime-type.", + "type": "string" + }, + "icon": { + "description": "The path to icon (`.icns` for MacOS and `.ico` for Windows), relative to `build` (build resources directory). Defaults to `${firstExt}.icns`/`${firstExt}.ico` (if several extensions specified, first is used) or to application icon.\n\nNot supported on Linux, file issue if need (default icon will be `x-office-document`). Not supported on MSI.", + "type": "string" + }, + "role": { + "description": "*macOS-only* The app’s role with respect to the type. The value can be `Editor`, `Viewer`, `Shell`, or `None`. Corresponds to `CFBundleTypeRole`.", + "default": "Editor", + "type": "string" + }, + "isPackage": { + "description": "*macOS-only* Whether the document is distributed as a bundle. If set to true, the bundle directory is treated as a file. Corresponds to `LSTypeIsPackage`.", + "type": "boolean" + }, + "rank": { + "description": "*macOS-only* The app’s rank with respect to the type. The value can be `Owner`, `Default`, `Alternate`, or `None`. Corresponds to `LSHandlerRank`.", + "default": "Default", + "type": "string" + } + }, + "additionalProperties": false, + "required": [ + "ext" + ] + }, + "Protocol": { + "description": "URL Protocol Schemes. Protocols to associate the app with. macOS only.\n\nPlease note — on macOS [you need to register an `open-url` event handler](http://electron.atom.io/docs/api/app/#event-open-url-macos).", + "type": "object", + "properties": { + "name": { + "description": "The name. e.g. `IRC server URL`.", + "type": "string" + }, + "schemes": { + "description": "The schemes. e.g. `[\"irc\", \"ircs\"]`.", + "type": "array", + "items": { + "type": "string" + } }, - "asarUnpack": { - "anyOf": [ - { - "items": { - "type": "string" - }, - "type": "array" - }, - { - "type": [ - "null", - "string" - ] - } + "role": { + "description": "*macOS-only* The app’s role with respect to the type.", + "default": "Editor", + "enum": [ + "Editor", + "None", + "Shell", + "Viewer" ], - "description": "A [glob patterns](./file-patterns.md) relative to the [app directory](#directories), which specifies which files to unpack when creating the [asar](http://electron.atom.io/docs/tutorial/application-packaging/) archive." + "type": "string" + } + }, + "additionalProperties": false, + "required": [ + "name", + "schemes" + ] + }, + "Publish": { + "anyOf": [ + { + "$ref": "#/definitions/GithubOptions" }, - "binaries": { - "anyOf": [ - { - "items": { - "type": "string" - }, - "type": "array" - }, - { - "type": "null" - } - ], - "description": "Paths of any extra binaries that need to be signed." + { + "$ref": "#/definitions/GitlabOptions" }, - "bundleShortVersion": { - "description": "The `CFBundleShortVersionString`. Do not use it unless you need to.", - "type": [ - "null", - "string" - ] + { + "$ref": "#/definitions/S3Options" }, - "bundleVersion": { - "description": "The `CFBundleVersion`. Do not use it unless [you need to](https://github.com/electron-userland/electron-builder/issues/565#issuecomment-230678643).", - "type": [ - "null", - "string" - ] + { + "$ref": "#/definitions/SpacesOptions" }, - "category": { - "description": "The application category type, as shown in the Finder via *View -> Arrange by Application Category* when viewing the Applications directory.\n\nFor example, `\"category\": \"public.app-category.developer-tools\"` will set the application category to *Developer Tools*.\n\nValid values are listed in [Apple's documentation](https://developer.apple.com/library/ios/documentation/General/Reference/InfoPlistKeyReference/Articles/LaunchServicesKeys.html#//apple_ref/doc/uid/TP40009250-SW8).", - "type": [ - "null", - "string" - ] + { + "$ref": "#/definitions/GenericServerOptions" }, - "compression": { - "anyOf": [ - { - "enum": [ - "maximum", - "normal", - "store" - ], - "type": "string" - }, - { - "type": "null" - } - ], - "default": "normal", - "description": "The compression level. If you want to rapidly test build, `store` can reduce build time significantly. `maximum` doesn't lead to noticeable size difference, but increase build time." + { + "$ref": "#/definitions/CustomPublishOptions" }, - "cscInstallerKeyPassword": { - "type": [ - "null", - "string" - ] + { + "$ref": "#/definitions/KeygenOptions" }, - "cscInstallerLink": { - "type": [ - "null", - "string" - ] + { + "$ref": "#/definitions/SnapStoreOptions" }, - "cscKeyPassword": { - "type": [ - "null", - "string" - ] + { + "$ref": "#/definitions/BitbucketOptions" }, - "cscLink": { - "type": [ - "null", - "string" - ] + { + "type": "array", + "items": { + "$ref": "#/definitions/AllPublishOptions" + } }, - "darkModeSupport": { - "default": false, - "description": "Whether a dark mode is supported. If your app does have a dark mode, you can make your app follow the system-wide dark mode setting.", - "type": "boolean" + { + "type": "string" + } + ] + }, + "GithubOptions": { + "description": "[GitHub](https://help.github.com/articles/about-releases/) options.\n\nGitHub [personal access token](https://help.github.com/articles/creating-an-access-token-for-command-line-use/) is required. You can generate by going to [https://github.com/settings/tokens/new](https://github.com/settings/tokens/new). The access token should have the repo scope/permission.\nDefine `GH_TOKEN` environment variable.", + "type": "object", + "properties": { + "provider": { + "description": "The provider. Must be `github`.", + "type": "string", + "const": "github" }, - "defaultArch": { + "repo": { + "description": "The repository name. [Detected automatically](#github-repository-and-bintray-package).", "type": "string" }, - "detectUpdateChannel": { + "owner": { + "description": "The owner.", + "type": "string" + }, + "vPrefixedTagName": { + "description": "Whether to use `v`-prefixed tag name.", "default": true, - "description": "Whether to infer update channel from application version pre-release components. e.g. if version `0.12.1-alpha.1`, channel will be set to `alpha`. Otherwise to `latest`.\nThis does *not* apply to github publishing, which will [never auto-detect the update channel](https://github.com/electron-userland/electron-builder/issues/8589).", "type": "boolean" }, - "disableDefaultIgnoredFiles": { - "default": false, - "description": "Whether to exclude all default ignored files(https://www.electron.build/contents#files) and options. Defaults to `false`.", - "type": [ - "null", - "boolean" - ] + "tagNamePrefix": { + "description": "If defined, sets the prefix of the tag name that comes before the semver number.\ne.g. \"v\" in \"v1.2.3\" or \"test\" of \"test1.2.3\".\nOverrides `vPrefixedTagName`", + "type": "string" }, - "electronLanguages": { - "anyOf": [ - { - "items": { - "type": "string" - }, - "type": "array" - }, - { - "type": "string" - } + "host": { + "description": "The host (including the port if need).", + "default": "github.com", + "type": "string" + }, + "protocol": { + "description": "The protocol. GitHub Publisher supports only `https`.", + "default": "https", + "enum": [ + "http", + "https" ], - "description": "The electron locales to keep. By default, all Electron locales used as-is." + "type": "string" }, - "electronUpdaterCompatibility": { - "description": "The [electron-updater compatibility](./auto-update.md#compatibility) semver range.", - "type": [ - "null", - "string" - ] + "token": { + "description": "The access token to support auto-update from private github repositories. Never specify it in the configuration files. Only for [setFeedURL](./auto-update.md#appupdatersetfeedurloptions).", + "type": "string" }, - "entitlements": { - "description": "The path to entitlements file for signing the app. `build/entitlements.mas.plist` will be used if exists (it is a recommended way to set).\nSee [this folder in osx-sign's repository](https://github.com/electron/osx-sign/tree/main/entitlements) for examples.\nBe aware that your app may crash if the right entitlements are not set like `com.apple.security.cs.allow-jit` for example on arm64 builds with Electron 20+.\nSee [Signing and Notarizing macOS Builds from the Electron documentation](https://www.electronjs.org/docs/latest/tutorial/code-signing#signing--notarizing-macos-builds) for more information.", - "type": [ - "null", - "string" - ] + "private": { + "description": "Whether to use private github auto-update provider if `GH_TOKEN` environment variable is defined. See [Private GitHub Update Repo](./auto-update.md#private-github-update-repo).", + "type": "boolean" }, - "entitlementsInherit": { - "description": "The path to child entitlements which inherit the security settings for signing frameworks and bundles of a distribution. `build/entitlements.mas.inherit.plist` will be used if exists (it is a recommended way to set).\nSee [this folder in osx-sign's repository](https://github.com/electron/osx-sign/tree/main/entitlements) for examples.", - "type": [ - "null", - "string" - ] + "channel": { + "description": "The channel.", + "default": "latest", + "type": "string" }, - "entitlementsLoginHelper": { - "description": "Path to login helper entitlement file.\nWhen using App Sandbox, the the `com.apple.security.inherit` key that is normally in the inherited entitlements cannot be inherited since the login helper is a standalone executable.\nDefaults to the value provided for `entitlements`. This option only applies when signing with `entitlements` provided.", - "type": [ - "null", - "string" - ] + "releaseType": { + "description": "The type of release. By default `draft` release will be created.\n\nAlso you can set release type using environment variable. If `EP_DRAFT`is set to `true` — `draft`, if `EP_PRE_RELEASE`is set to `true` — `prerelease`.", + "default": "draft", + "enum": [ + "draft", + "prerelease", + "release" + ], + "type": "string" }, - "executableName": { - "description": "The executable name. Defaults to `productName`\nNote: Except for Linux, where this would constitute a breaking change in previous behavior and lead to both invalid executable names and Desktop files. Ref comments in: https://github.com/electron-userland/electron-builder/pull/9068", - "type": [ - "null", - "string" - ] + "publisherName": { + "type": "array", + "items": { + "type": "string" + } }, - "extendInfo": { - "description": "The extra entries for `Info.plist`." + "updaterCacheDirName": { + "type": "string" }, - "extraDistFiles": { - "anyOf": [ - { - "items": { - "type": "string" - }, - "type": "array" - }, - { - "type": [ - "null", - "string" - ] - } - ], - "description": "Extra files to put in archive. Not applicable for `tar.*`." + "publishAutoUpdate": { + "description": "Whether to publish auto update info files.\n\nAuto update relies only on the first provider in the list (you can specify several publishers).\nThus, probably, there`s no need to upload the metadata files for the other configured providers. But by default will be uploaded.", + "default": true, + "type": "boolean" }, - "extraFiles": { - "anyOf": [ - { - "$ref": "#/definitions/FileSet" - }, - { - "items": { - "anyOf": [ - { - "$ref": "#/definitions/FileSet" - }, - { - "type": "string" - } - ] - }, - "type": "array" - }, - { - "type": [ - "null", - "string" - ] - } - ], - "description": "The same as [extraResources](#extraresources) but copy into the app's content directory (`Contents` for MacOS, root directory for Linux and Windows)." + "requestHeaders": { + "$ref": "#/definitions/OutgoingHttpHeaders", + "description": "Any custom request headers" }, - "extraResources": { + "timeout": { + "description": "Request timeout in milliseconds. (Default is 2 minutes; O is ignored)", + "default": 120000, + "type": "number" + } + }, + "additionalProperties": false, + "required": [ + "provider" + ] + }, + "OutgoingHttpHeaders": { + "type": "object", + "properties": { + "accept": { "anyOf": [ { - "$ref": "#/definitions/FileSet" - }, - { + "type": "array", "items": { - "anyOf": [ - { - "$ref": "#/definitions/FileSet" - }, - { - "type": "string" - } - ] - }, - "type": "array" + "type": "string" + } }, { - "type": [ - "null", - "string" - ] + "type": "string" } - ], - "description": "A [glob patterns](./file-patterns.md) relative to the project directory, when specified, copy the file or directory with matching names directly into the app's resources directory (`Contents/Resources` for MacOS, `resources` for Linux and Windows).\n\nFile patterns (and support for `from` and `to` fields) the same as for [files](#files)." + ] }, - "fileAssociations": { + "accept-charset": { "anyOf": [ { - "$ref": "#/definitions/FileAssociation" + "type": "array", + "items": { + "type": "string" + } }, { - "items": { - "$ref": "#/definitions/FileAssociation" - }, - "type": "array" + "type": "string" } - ], - "description": "The file associations." + ] }, - "files": { + "accept-encoding": { "anyOf": [ { - "$ref": "#/definitions/FileSet" + "type": "array", + "items": { + "type": "string" + } }, { + "type": "string" + } + ] + }, + "accept-language": { + "anyOf": [ + { + "type": "array", "items": { - "anyOf": [ - { - "$ref": "#/definitions/FileSet" - }, - { - "type": "string" - } - ] - }, - "type": "array" + "type": "string" + } }, { - "type": [ - "null", - "string" - ] + "type": "string" } - ], - "description": "A [glob patterns](./file-patterns.md) relative to the [app directory](configuration.md#directories), which specifies which files to include when copying files to create the package.\n\nDefaults to:\n```json\n[\n\"**\\/*\",\n\"!**\\/node_modules/*\\/{CHANGELOG.md,README.md,README,readme.md,readme}\",\n\"!**\\/node_modules/*\\/{test,__tests__,tests,powered-test,example,examples}\",\n\"!**\\/node_modules/*.d.ts\",\n\"!**\\/node_modules/.bin\",\n\"!**\\/*.{iml,o,hprof,orig,pyc,pyo,rbc,swp,csproj,sln,xproj}\",\n\"!.editorconfig\",\n\"!**\\/._*\",\n\"!**\\/{.DS_Store,.git,.hg,.svn,CVS,RCS,SCCS,.gitignore,.gitattributes}\",\n\"!**\\/{__pycache__,thumbs.db,.flowconfig,.idea,.vs,.nyc_output}\",\n\"!**\\/{appveyor.yml,.travis.yml,circle.yml}\",\n\"!**\\/{npm-debug.log,yarn.lock,.yarn-integrity,.yarn-metadata.json}\"\n]\n```\n\nDevelopment dependencies are never copied in any case. You don't need to ignore it explicitly. Hidden files are not ignored by default, but all files that should be ignored, are ignored by default.\n\nDefault pattern \\`**\\/*\\` **is not added to your custom** if some of your patterns is not ignore (i.e. not starts with `!`). `package.json` and \\`**\\/node_modules/**\\/*` (only production dependencies will be copied) is added to your custom in any case. All default ignores are added in any case — you don't need to repeat it if you configure own patterns.\n\nMay be specified in the platform options (e.g. in the [mac](mac.md)).\n\nYou may also specify custom source and destination directories by using `FileSet` objects instead of simple glob patterns.\n\n```json\n[\n{\n\"from\": \"path/to/source\",\n\"to\": \"path/to/destination\",\n\"filter\": [\"**\\/*\", \"!foo/*.js\"]\n}\n]\n```\n\nYou can use [file macros](./file-patterns.md#file-macros) in the `from` and `to` fields as well. `from` and `to` can be files and you can use this to [rename](https://github.com/electron-userland/electron-builder/issues/1119) a file while packaging." - }, - "forceCodeSigning": { - "description": "Whether to fail if app will be not code signed.", - "type": "boolean" - }, - "gatekeeperAssess": { - "default": false, - "description": "Whether to let `@electron/osx-sign` validate the signing or not.", - "type": "boolean" + ] }, - "generateUpdatesFilesForAllChannels": { - "default": false, - "description": "Please see [Building and Releasing using Channels](https://github.com/electron-userland/electron-builder/issues/1182#issuecomment-324947139).", - "type": "boolean" + "accept-ranges": { + "type": "string" }, - "hardenedRuntime": { - "default": true, - "description": "Whether your app has to be signed with hardened runtime.", - "type": "boolean" + "access-control-allow-credentials": { + "type": "string" }, - "helperBundleId": { - "default": "${appBundleIdentifier}.helper", - "description": "The bundle identifier to use in the application helper's plist.", - "type": [ - "null", - "string" - ] + "access-control-allow-headers": { + "type": "string" }, - "helperEHBundleId": { - "default": "${appBundleIdentifier}.helper.EH", - "description": "The bundle identifier to use in the EH helper's plist.", - "type": [ - "null", - "string" - ] + "access-control-allow-methods": { + "type": "string" }, - "helperGPUBundleId": { - "default": "${appBundleIdentifier}.helper.GPU", - "description": "The bundle identifier to use in the GPU helper's plist.", - "type": [ - "null", - "string" - ] + "access-control-allow-origin": { + "type": "string" }, - "helperNPBundleId": { - "default": "${appBundleIdentifier}.helper.NP", - "description": "The bundle identifier to use in the NP helper's plist.", - "type": [ - "null", - "string" - ] + "access-control-expose-headers": { + "type": "string" }, - "helperPluginBundleId": { - "default": "${appBundleIdentifier}.helper.Plugin", - "description": "The bundle identifier to use in the Plugin helper's plist.", - "type": [ - "null", - "string" - ] + "access-control-max-age": { + "type": "string" }, - "helperRendererBundleId": { - "default": "${appBundleIdentifier}.helper.Renderer", - "description": "The bundle identifier to use in the Renderer helper's plist.", - "type": [ - "null", - "string" - ] + "access-control-request-headers": { + "type": "string" }, - "icon": { - "default": "build/icon.icns", - "description": "The path to application icon.\nAccepts `.icns` (legacy) or `.icon` (Icon Composer asset).\nIf a `.icon` asset is provided, it will be preferred and compiled to an asset catalog.", - "type": [ - "null", - "string" - ] + "access-control-request-method": { + "type": "string" }, - "identity": { - "description": "The name of certificate to use when signing. Consider using environment variables [CSC_LINK or CSC_NAME](./code-signing.md) instead of specifying this option.\nMAS installer identity is specified in the [mas](./mas.md).\n\nSet to `-` to use an ad-hoc identity for signing. Set to `null` to skip signing entirely.", - "type": [ - "null", - "string" - ] + "age": { + "type": "string" }, - "mergeASARs": { - "default": true, - "description": "Whether to merge ASAR files for different architectures or not.\n\nThis option has no effect unless building for \"universal\" arch.", - "type": "boolean" + "allow": { + "type": "string" }, - "minimumSystemVersion": { - "description": "The minimum version of macOS required for the app to run. Corresponds to `LSMinimumSystemVersion`.", - "type": [ - "null", - "string" - ] + "authorization": { + "type": "string" }, - "notarize": { - "description": "Whether to disable electron-builder's [@electron/notarize](https://github.com/electron/notarize) integration.\n\nNote: In order to activate the notarization step You MUST specify one of the following via environment variables:\n\n1. `APPLE_API_KEY`, `APPLE_API_KEY_ID` and `APPLE_API_ISSUER`.\n2. `APPLE_ID`, `APPLE_APP_SPECIFIC_PASSWORD`, and `APPLE_TEAM_ID`\n3. `APPLE_KEYCHAIN` and `APPLE_KEYCHAIN_PROFILE`\n\nFor security reasons it is recommended to use the first option (see https://github.com/electron-userland/electron-builder/issues/7859)", - "type": "boolean" + "cache-control": { + "type": "string" }, - "preAutoEntitlements": { - "default": true, - "description": "Whether to enable entitlements automation from `@electron/osx-sign`.", - "type": "boolean" + "cdn-cache-control": { + "type": "string" }, - "protocols": { + "connection": { "anyOf": [ { - "$ref": "#/definitions/Protocol" + "type": "array", + "items": { + "type": "string" + } }, { - "items": { - "$ref": "#/definitions/Protocol" - }, - "type": "array" + "type": "string" } - ], - "description": "The URL protocol schemes." + ] }, - "provisioningProfile": { - "description": "The path to the provisioning profile to use when signing, absolute or relative to the app root.", + "content-disposition": { + "type": "string" + }, + "content-encoding": { + "type": "string" + }, + "content-language": { + "type": "string" + }, + "content-length": { "type": [ - "null", - "string" + "string", + "number" ] }, - "publish": { + "content-location": { + "type": "string" + }, + "content-range": { + "type": "string" + }, + "content-security-policy": { + "type": "string" + }, + "content-security-policy-report-only": { + "type": "string" + }, + "content-type": { + "type": "string" + }, + "cookie": { "anyOf": [ { - "$ref": "#/definitions/GithubOptions" - }, - { - "$ref": "#/definitions/GitlabOptions" - }, - { - "$ref": "#/definitions/S3Options" - }, - { - "$ref": "#/definitions/SpacesOptions" - }, - { - "$ref": "#/definitions/GenericServerOptions" - }, - { - "$ref": "#/definitions/CustomPublishOptions" - }, - { - "$ref": "#/definitions/KeygenOptions" - }, - { - "$ref": "#/definitions/SnapStoreOptions" + "type": "array", + "items": { + "type": "string" + } }, { - "$ref": "#/definitions/BitbucketOptions" - }, + "type": "string" + } + ] + }, + "dav": { + "anyOf": [ { + "type": "array", "items": { - "$ref": "#/definitions/AllPublishOptions" - }, - "type": "array" + "type": "string" + } }, { - "type": [ - "null", - "string" - ] + "type": "string" } - ], - "description": "Publisher configuration. See [Auto Update](./publish.md) for more information." + ] }, - "releaseInfo": { - "$ref": "#/definitions/ReleaseInfo", - "description": "The release info. Intended for command line usage:\n\n```\n-c.releaseInfo.releaseNotes=\"new features\"\n```" + "dnt": { + "type": "string" }, - "requirements": { - "description": "Path of [requirements file](https://developer.apple.com/library/mac/documentation/Security/Conceptual/CodeSigningGuide/RequirementLang/RequirementLang.html) used in signing. Not applicable for MAS.", - "type": [ - "null", - "string" - ] + "date": { + "type": "string" + }, + "etag": { + "type": "string" + }, + "expect": { + "type": "string" + }, + "expires": { + "type": "string" + }, + "forwarded": { + "type": "string" + }, + "from": { + "type": "string" + }, + "host": { + "type": "string" + }, + "if-match": { + "type": "string" + }, + "if-modified-since": { + "type": "string" + }, + "if-none-match": { + "type": "string" + }, + "if-range": { + "type": "string" + }, + "if-unmodified-since": { + "type": "string" }, - "sign": { + "last-modified": { + "type": "string" + }, + "link": { "anyOf": [ { - "typeof": "function" + "type": "array", + "items": { + "type": "string" + } }, { - "type": [ - "null", - "string" - ] + "type": "string" } - ], - "description": "The custom function (or path to file or module id) to sign an app bundle." + ] }, - "signIgnore": { + "location": { + "type": "string" + }, + "max-forwards": { + "type": "string" + }, + "origin": { + "type": "string" + }, + "pragma": { "anyOf": [ { + "type": "array", "items": { "type": "string" - }, - "type": "array" + } }, { - "type": [ - "null", - "string" - ] + "type": "string" } - ], - "description": "Regex or an array of regex's that signal skipping signing a file." - }, - "singleArchFiles": { - "description": "Minimatch pattern of paths that are allowed to be present in one of the\nASAR files, but not in the other.\n\nThis option has no effect unless building for \"universal\" arch and applies\nonly if `mergeASARs` is `true`.", - "type": [ - "null", - "string" ] }, - "strictVerify": { - "default": true, - "description": "Whether to let `@electron/osx-sign` verify the contents or not.", - "type": "boolean" - }, - "target": { + "proxy-authenticate": { "anyOf": [ { - "$ref": "#/definitions/TargetConfiguration" - }, - { + "type": "array", "items": { - "anyOf": [ - { - "$ref": "#/definitions/TargetConfiguration" - }, - { - "enum": [ - "7z", - "default", - "dir", - "dmg", - "mas", - "mas-dev", - "pkg", - "tar.bz2", - "tar.gz", - "tar.lz", - "tar.xz", - "zip" - ], - "type": "string" - } - ] - }, - "type": "array" + "type": "string" + } }, { - "enum": [ - "7z", - "default", - "dir", - "dmg", - "mas", - "mas-dev", - "pkg", - "tar.bz2", - "tar.gz", - "tar.lz", - "tar.xz", - "zip" - ], "type": "string" - }, - { - "type": "null" } - ], - "description": "The target package type: list of `default`, `dmg`, `mas`, `mas-dev`, `pkg`, `7z`, `zip`, `tar.xz`, `tar.lz`, `tar.gz`, `tar.bz2`, `dir`. Defaults to `default` (`dmg` and `zip` for Squirrel.Mac). Note: Squirrel.Mac auto update mechanism requires both `dmg` and `zip` to be enabled, even when only `dmg` is used. Disabling `zip` will break auto update in `dmg` packages." - }, - "timestamp": { - "description": "Specify the URL of the timestamp authority server", - "type": [ - "null", - "string" ] }, - "type": { + "proxy-authorization": { + "type": "string" + }, + "public-key-pins": { + "type": "string" + }, + "public-key-pins-report-only": { + "type": "string" + }, + "range": { + "type": "string" + }, + "referer": { + "type": "string" + }, + "referrer-policy": { + "type": "string" + }, + "refresh": { + "type": "string" + }, + "retry-after": { + "type": "string" + }, + "sec-websocket-accept": { + "type": "string" + }, + "sec-websocket-extensions": { "anyOf": [ { - "enum": [ - "development", - "distribution" - ], - "type": "string" + "type": "array", + "items": { + "type": "string" + } }, { - "type": "null" + "type": "string" } - ], - "default": "distribution", - "description": "Whether to sign app for development or for distribution." - }, - "x64ArchFiles": { - "description": "Minimatch pattern of paths that are allowed to be x64 binaries in both\nASAR files\n\nThis option has no effect unless building for \"universal\" arch and applies\nonly if `mergeASARs` is `true`.", - "type": [ - "null", - "string" - ] - } - }, - "type": "object" - }, - "MetadataDirectories": { - "additionalProperties": false, - "properties": { - "app": { - "description": "The application directory (containing the application package.json), defaults to `app`, `www` or working directory.", - "type": [ - "null", - "string" ] }, - "buildResources": { - "default": "build", - "description": "The path to build resources.\n\nPlease note — build resources are not packed into the app. If you need to use some files, e.g. as tray icon, please include required files explicitly: `\"files\": [\"**\\/*\", \"build/icon.*\"]`", - "type": [ - "null", - "string" - ] + "sec-websocket-key": { + "type": "string" }, - "output": { - "default": "dist", - "description": "The output directory. [File macros](./file-patterns.md#file-macros) are supported.", - "type": [ - "null", - "string" - ] - } - }, - "type": "object" - }, - "MsiOptions": { - "additionalProperties": false, - "properties": { - "additionalLightArgs": { + "sec-websocket-protocol": { "anyOf": [ { + "type": "array", "items": { "type": "string" - }, - "type": "array" + } }, { - "type": "null" + "type": "string" } - ], - "description": "Any additional arguments to be passed to the light.ext, such as `[\"-cultures:ja-jp\"]`" + ] }, - "additionalWixArgs": { + "sec-websocket-version": { + "type": "string" + }, + "server": { + "type": "string" + }, + "set-cookie": { "anyOf": [ { + "type": "array", "items": { "type": "string" - }, - "type": "array" + } }, { - "type": "null" + "type": "string" } - ], - "description": "Any additional arguments to be passed to the WiX installer compiler, such as `[\"-ext\", \"WixUtilExtension\"]`" - }, - "artifactName": { - "description": "The [artifact file name template](./configuration.md#artifact-file-name-template).", - "type": [ - "null", - "string" ] }, - "createDesktopShortcut": { - "default": true, - "description": "Whether to create desktop shortcut. Set to `always` if to recreate also on reinstall (even if removed by user).", - "enum": [ - "always", - false, - true - ] + "strict-transport-security": { + "type": "string" }, - "createStartMenuShortcut": { - "default": true, - "description": "Whether to create start menu shortcut.", - "type": "boolean" + "te": { + "type": "string" }, - "menuCategory": { - "default": false, - "description": "Whether to create submenu for start menu shortcut and program files directory. If `true`, company name will be used. Or string value.", - "type": [ - "string", - "boolean" - ] + "trailer": { + "type": "string" }, - "oneClick": { - "default": true, - "description": "One-click installation.", - "type": "boolean" + "transfer-encoding": { + "type": "string" }, - "perMachine": { - "default": false, - "description": "Whether to install per all users (per-machine).", - "type": "boolean" + "user-agent": { + "type": "string" }, - "publish": { + "upgrade": { + "type": "string" + }, + "upgrade-insecure-requests": { + "type": "string" + }, + "vary": { + "type": "string" + }, + "via": { "anyOf": [ { - "$ref": "#/definitions/GithubOptions" - }, - { - "$ref": "#/definitions/GitlabOptions" - }, - { - "$ref": "#/definitions/S3Options" - }, - { - "$ref": "#/definitions/SpacesOptions" - }, - { - "$ref": "#/definitions/GenericServerOptions" - }, - { - "$ref": "#/definitions/CustomPublishOptions" - }, - { - "$ref": "#/definitions/KeygenOptions" - }, - { - "$ref": "#/definitions/SnapStoreOptions" + "type": "array", + "items": { + "type": "string" + } }, { - "$ref": "#/definitions/BitbucketOptions" - }, + "type": "string" + } + ] + }, + "warning": { + "type": "string" + }, + "www-authenticate": { + "anyOf": [ { + "type": "array", "items": { - "$ref": "#/definitions/AllPublishOptions" - }, - "type": "array" + "type": "string" + } }, { - "type": [ - "null", - "string" - ] + "type": "string" } ] }, - "runAfterFinish": { - "default": true, - "description": "Whether to run the installed application after finish. For assisted installer corresponding checkbox will be removed.", - "type": "boolean" + "x-content-type-options": { + "type": "string" }, - "shortcutName": { - "description": "The name that will be used for all shortcuts. Defaults to the application name.", - "type": [ - "null", - "string" - ] + "x-dns-prefetch-control": { + "type": "string" }, - "upgradeCode": { - "description": "The [upgrade code](https://msdn.microsoft.com/en-us/library/windows/desktop/aa372375(v=vs.85).aspx). Optional, by default generated using app id.", + "x-frame-options": { + "type": "string" + }, + "x-xss-protection": { + "type": "string" + } + }, + "additionalProperties": { + "anyOf": [ + { + "items": { + "type": "string" + }, + "type": "array" + }, + { + "type": [ + "string", + "number" + ] + } + ] + } + }, + "GitlabOptions": { + "description": "[GitLab](https://docs.gitlab.com/ee/user/project/releases/) options.\n\nGitLab [personal access token](https://docs.gitlab.com/ee/user/profile/personal_access_tokens.html) is required for private repositories. You can generate one by going to your GitLab profile settings.\nDefine `GITLAB_TOKEN` environment variable.", + "type": "object", + "properties": { + "provider": { + "description": "The provider. Must be `gitlab`.", + "type": "string", + "const": "gitlab" + }, + "projectId": { + "description": "The GitLab project ID or path (e.g., \"12345678\" or \"namespace/project\").", "type": [ - "null", - "string" + "string", + "number" ] }, - "warningsAsErrors": { + "host": { + "description": "The GitLab host (including the port if need).", + "default": "gitlab.com", + "type": "string" + }, + "token": { + "description": "The access token to support auto-update from private GitLab repositories. Never specify it in the configuration files.", + "type": "string" + }, + "vPrefixedTagName": { + "description": "Whether to use `v`-prefixed tag name.", + "default": true, + "type": "boolean" + }, + "channel": { + "description": "The channel.", + "default": "latest", + "type": "string" + }, + "uploadTarget": { + "description": "Upload target method. Can be \"project_upload\" for GitLab project uploads or \"generic_package\" for GitLab generic packages.", + "default": "project_upload", + "enum": [ + "generic_package", + "project_upload" + ], + "type": "string" + }, + "publisherName": { + "type": "array", + "items": { + "type": "string" + } + }, + "updaterCacheDirName": { + "type": "string" + }, + "publishAutoUpdate": { + "description": "Whether to publish auto update info files.\n\nAuto update relies only on the first provider in the list (you can specify several publishers).\nThus, probably, there`s no need to upload the metadata files for the other configured providers. But by default will be uploaded.", "default": true, - "description": "If `warningsAsErrors` is `true` (default): treat warnings as errors. If `warningsAsErrors` is `false`: allow warnings.", "type": "boolean" + }, + "requestHeaders": { + "$ref": "#/definitions/OutgoingHttpHeaders", + "description": "Any custom request headers" + }, + "timeout": { + "description": "Request timeout in milliseconds. (Default is 2 minutes; O is ignored)", + "default": 120000, + "type": "number" } }, - "type": "object" - }, - "MsiWrappedOptions": { "additionalProperties": false, + "required": [ + "provider" + ] + }, + "S3Options": { + "description": "[Amazon S3](https://aws.amazon.com/s3/) options.\nAWS credentials are required, please see [getting your credentials](http://docs.aws.amazon.com/sdk-for-javascript/v2/developer-guide/getting-your-credentials.html).\nTo set credentials define `AWS_ACCESS_KEY_ID` and `AWS_SECRET_ACCESS_KEY` [environment variables](http://docs.aws.amazon.com/sdk-for-javascript/v2/developer-guide/loading-node-credentials-environment.html) directly,\nor use [~/.aws/credentials](http://docs.aws.amazon.com/sdk-for-javascript/v2/developer-guide/loading-node-credentials-shared.html) file,\nor use [~/.aws/config](https://docs.aws.amazon.com/sdkref/latest/guide/file-format.html) file. For the last method to work you will also need to define `AWS_SDK_LOAD_CONFIG=1` environment variable.\n\nExample configuration:\n\n```json\n{\n\"build\":\n \"publish\": {\n \"provider\": \"s3\",\n \"bucket\": \"bucket-name\"\n }\n}\n}\n```", + "type": "object", "properties": { - "additionalWixArgs": { - "anyOf": [ - { - "items": { - "type": "string" - }, - "type": "array" - }, - { - "type": "null" - } + "provider": { + "description": "The provider. Must be `s3`.", + "type": "string", + "const": "s3" + }, + "bucket": { + "description": "The bucket name.", + "type": "string" + }, + "region": { + "description": "The region. Is determined and set automatically when publishing.", + "type": "string" + }, + "acl": { + "description": "The ACL. Set to `null` to not [add](https://github.com/electron-userland/electron-builder/issues/1822).\n\nPlease see [required permissions for the S3 provider](https://github.com/electron-userland/electron-builder/issues/1618#issuecomment-314679128).", + "default": "public-read", + "enum": [ + "private", + "public-read" ], - "description": "Any additional arguments to be passed to the WiX installer compiler, such as `[\"-ext\", \"WixUtilExtension\"]`" + "type": "string" }, - "artifactName": { - "description": "The [artifact file name template](./configuration.md#artifact-file-name-template).", - "type": [ - "null", - "string" - ] + "storageClass": { + "description": "The type of storage to use for the object.", + "default": "STANDARD", + "enum": [ + "REDUCED_REDUNDANCY", + "STANDARD", + "STANDARD_IA" + ], + "type": "string" }, - "createDesktopShortcut": { - "default": true, - "description": "Whether to create desktop shortcut. Set to `always` if to recreate also on reinstall (even if removed by user).", + "encryption": { + "description": "Server-side encryption algorithm to use for the object.", "enum": [ - "always", - false, - true - ] + "AES256", + "aws:kms" + ], + "type": "string" }, - "createStartMenuShortcut": { - "default": true, - "description": "Whether to create start menu shortcut.", + "endpoint": { + "description": "The endpoint URI to send requests to. The default endpoint is built from the configured region.\nThe endpoint should be a string like `https://{service}.{region}.amazonaws.com`.", + "type": "string" + }, + "accelerate": { + "description": "If set to true, this will enable the s3 accelerated endpoint\nThese endpoints have a particular format of:\n ${bucketname}.s3-accelerate.amazonaws.com", "type": "boolean" }, - "impersonate": { - "default": false, - "description": "Determines if the wrapped installer should be executed with impersonation", + "forcePathStyle": { + "description": "When true, force a path-style endpoint to be used where the bucket name is part of the path.\n[Path-style Access](https://docs.aws.amazon.com/AmazonS3/latest/userguide/VirtualHosting.html#path-style-access)", "type": "boolean" }, - "menuCategory": { - "default": false, - "description": "Whether to create submenu for start menu shortcut and program files directory. If `true`, company name will be used. Or string value.", - "type": [ - "string", - "boolean" - ] + "channel": { + "description": "The update channel.", + "default": "latest", + "type": "string" }, - "oneClick": { - "type": "boolean" + "path": { + "description": "The directory path.", + "default": "/", + "type": "string" }, - "perMachine": { - "default": false, - "description": "Whether to install per all users (per-machine).", + "publisherName": { + "type": "array", + "items": { + "type": "string" + } + }, + "updaterCacheDirName": { + "type": "string" + }, + "publishAutoUpdate": { + "description": "Whether to publish auto update info files.\n\nAuto update relies only on the first provider in the list (you can specify several publishers).\nThus, probably, there`s no need to upload the metadata files for the other configured providers. But by default will be uploaded.", + "default": true, "type": "boolean" }, - "publish": { - "anyOf": [ - { - "$ref": "#/definitions/GithubOptions" - }, - { - "$ref": "#/definitions/GitlabOptions" - }, - { - "$ref": "#/definitions/S3Options" - }, - { - "$ref": "#/definitions/SpacesOptions" - }, - { - "$ref": "#/definitions/GenericServerOptions" - }, - { - "$ref": "#/definitions/CustomPublishOptions" - }, - { - "$ref": "#/definitions/KeygenOptions" - }, - { - "$ref": "#/definitions/SnapStoreOptions" - }, - { - "$ref": "#/definitions/BitbucketOptions" - }, - { - "items": { - "$ref": "#/definitions/AllPublishOptions" - }, - "type": "array" - }, - { - "type": [ - "null", - "string" - ] - } - ] + "requestHeaders": { + "$ref": "#/definitions/OutgoingHttpHeaders", + "description": "Any custom request headers" + }, + "timeout": { + "description": "Request timeout in milliseconds. (Default is 2 minutes; O is ignored)", + "default": 120000, + "type": "number" + } + }, + "additionalProperties": false, + "required": [ + "bucket", + "provider" + ] + }, + "SpacesOptions": { + "description": "[DigitalOcean Spaces](https://www.digitalocean.com/community/tutorials/an-introduction-to-digitalocean-spaces) options.\nAccess key is required, define `DO_KEY_ID` and `DO_SECRET_KEY` environment variables.", + "type": "object", + "properties": { + "provider": { + "description": "The provider. Must be `spaces`.", + "type": "string", + "const": "spaces" + }, + "name": { + "description": "The space name.", + "type": "string" + }, + "region": { + "description": "The region (e.g. `nyc3`).", + "type": "string" + }, + "channel": { + "description": "The update channel.", + "default": "latest", + "type": "string" + }, + "path": { + "description": "The directory path.", + "default": "/", + "type": "string" }, - "runAfterFinish": { - "default": true, - "description": "Whether to run the installed application after finish. For assisted installer corresponding checkbox will be removed.", - "type": "boolean" + "acl": { + "description": "The ACL. Set to `null` to not [add](https://github.com/electron-userland/electron-builder/issues/1822).", + "default": "public-read", + "enum": [ + "private", + "public-read" + ], + "type": "string" }, - "shortcutName": { - "description": "The name that will be used for all shortcuts. Defaults to the application name.", - "type": [ - "null", - "string" - ] + "publisherName": { + "type": "array", + "items": { + "type": "string" + } }, - "upgradeCode": { - "description": "The [upgrade code](https://msdn.microsoft.com/en-us/library/windows/desktop/aa372375(v=vs.85).aspx). Optional, by default generated using app id.", - "type": [ - "null", - "string" - ] + "updaterCacheDirName": { + "type": "string" }, - "warningsAsErrors": { + "publishAutoUpdate": { + "description": "Whether to publish auto update info files.\n\nAuto update relies only on the first provider in the list (you can specify several publishers).\nThus, probably, there`s no need to upload the metadata files for the other configured providers. But by default will be uploaded.", "default": true, - "description": "If `warningsAsErrors` is `true` (default): treat warnings as errors. If `warningsAsErrors` is `false`: allow warnings.", "type": "boolean" }, - "wrappedInstallerArgs": { - "description": "Extra arguments to provide to the wrapped installer (ie: /S for silent install)", - "type": [ - "null", - "string" - ] + "requestHeaders": { + "$ref": "#/definitions/OutgoingHttpHeaders", + "description": "Any custom request headers" + }, + "timeout": { + "description": "Request timeout in milliseconds. (Default is 2 minutes; O is ignored)", + "default": 120000, + "type": "number" } }, - "type": "object" - }, - "NsisOptions": { "additionalProperties": false, + "required": [ + "name", + "provider", + "region" + ] + }, + "GenericServerOptions": { + "description": "Generic (any HTTP(S) server) options.\nIn all publish options [File Macros](./file-patterns.md#file-macros) are supported.", + "type": "object", "properties": { - "allowElevation": { - "default": true, - "description": "*assisted installer only.* Allow requesting for elevation. If false, user will have to restart installer with elevated permissions.", - "type": "boolean" + "provider": { + "description": "The provider. Must be `generic`.", + "type": "string", + "const": "generic" }, - "allowToChangeInstallationDirectory": { - "default": false, - "description": "*assisted installer only.* Whether to allow user to change installation directory.", - "type": "boolean" + "url": { + "description": "The base url. e.g. `https://bucket_name.s3.amazonaws.com`.", + "type": "string" }, - "artifactName": { - "description": "The [artifact file name template](./configuration.md#artifact-file-name-template). Defaults to `${productName} Setup ${version}.${ext}`.", - "type": [ - "null", - "string" - ] + "channel": { + "description": "The channel.", + "default": "latest", + "type": "string" }, - "buildUniversalInstaller": { - "default": true, - "description": "Disable building an universal installer of the archs specified in the target configuration\n*Not supported for nsis-web*", + "useMultipleRangeRequest": { + "description": "Whether to use multiple range requests for differential update. Defaults to `true` if `url` doesn't contain `s3.amazonaws.com`.", "type": "boolean" }, - "createDesktopShortcut": { - "default": true, - "description": "Whether to create desktop shortcut. Set to `always` if to recreate also on reinstall (even if removed by user).", - "enum": [ - "always", - false, - true - ] + "publisherName": { + "type": "array", + "items": { + "type": "string" + } }, - "createStartMenuShortcut": { + "updaterCacheDirName": { + "type": "string" + }, + "publishAutoUpdate": { + "description": "Whether to publish auto update info files.\n\nAuto update relies only on the first provider in the list (you can specify several publishers).\nThus, probably, there`s no need to upload the metadata files for the other configured providers. But by default will be uploaded.", "default": true, - "description": "Whether to create start menu shortcut.", "type": "boolean" }, - "customNsisBinary": { - "anyOf": [ - { - "$ref": "#/definitions/CustomNsisBinary" - }, - { - "type": "null" - } - ], - "description": "Allows you to provide your own `makensis`, such as one with support for debug logging via LogSet and LogText. (Logging also requires option `debugLogging = true`)" + "requestHeaders": { + "$ref": "#/definitions/OutgoingHttpHeaders", + "description": "Any custom request headers" }, - "customNsisResources": { - "anyOf": [ - { - "$ref": "#/definitions/CustomNsisResources" - }, - { - "type": "null" - } - ], - "description": "Allows you to provide your own `nsis-resources`" + "timeout": { + "description": "Request timeout in milliseconds. (Default is 2 minutes; O is ignored)", + "default": 120000, + "type": "number" + } + }, + "additionalProperties": false, + "required": [ + "provider", + "url" + ] + }, + "CustomPublishOptions": { + "type": "object", + "additionalProperties": {}, + "properties": { + "provider": { + "description": "The provider. Must be `custom`.", + "type": "string", + "const": "custom" }, - "deleteAppDataOnUninstall": { - "default": false, - "description": "*one-click installer only.* Whether to delete app data on uninstall.", - "type": "boolean" + "updateProvider": { + "typeof": "function" }, - "differentialPackage": { - "type": "boolean" + "publisherName": { + "type": "array", + "items": { + "type": "string" + } }, - "displayLanguageSelector": { - "default": false, - "description": "Whether to display a language selection dialog. Not recommended (by default will be detected using OS language).", + "updaterCacheDirName": { + "type": "string" + }, + "publishAutoUpdate": { + "description": "Whether to publish auto update info files.\n\nAuto update relies only on the first provider in the list (you can specify several publishers).\nThus, probably, there`s no need to upload the metadata files for the other configured providers. But by default will be uploaded.", + "default": true, "type": "boolean" }, - "guid": { - "description": "See [GUID vs Application Name](./nsis.md#guid-vs-application-name).", - "type": [ - "null", - "string" - ] + "requestHeaders": { + "$ref": "#/definitions/OutgoingHttpHeaders", + "description": "Any custom request headers" }, - "include": { - "description": "The path to NSIS include script to customize installer. Defaults to `build/installer.nsh`. See [Custom NSIS script](#custom-nsis-script).", - "type": [ - "null", - "string" - ] + "timeout": { + "description": "Request timeout in milliseconds. (Default is 2 minutes; O is ignored)", + "default": 120000, + "type": "number" + } + }, + "required": [ + "provider" + ] + }, + "KeygenOptions": { + "description": "Keygen options.\nhttps://keygen.sh/\nDefine `KEYGEN_TOKEN` environment variable.", + "type": "object", + "properties": { + "provider": { + "description": "The provider. Must be `keygen`.", + "type": "string", + "const": "keygen" }, - "installerHeader": { - "default": "build/installerHeader.bmp", - "description": "*assisted installer only.* `MUI_HEADERIMAGE`, relative to the [build resources](./contents.md#extraresources) or to the project directory.", - "type": [ - "null", - "string" - ] + "host": { + "description": "Keygen host for self-hosted instances", + "default": "api.keygen.sh", + "type": "string" }, - "installerHeaderIcon": { - "description": "*one-click installer only.* The path to header icon (above the progress bar), relative to the [build resources](./contents.md#extraresources) or to the project directory.\nDefaults to `build/installerHeaderIcon.ico` or application icon.", - "type": [ - "null", - "string" - ] + "account": { + "description": "Keygen account's UUID", + "type": "string" }, - "installerIcon": { - "description": "The path to installer icon, relative to the [build resources](./contents.md#extraresources) or to the project directory.\nDefaults to `build/installerIcon.ico` or application icon.", - "type": [ - "null", - "string" - ] + "product": { + "description": "Keygen product's UUID", + "type": "string" }, - "installerLanguages": { - "anyOf": [ - { - "items": { - "type": "string" - }, - "type": "array" - }, - { - "type": [ - "null", - "string" - ] - } + "channel": { + "description": "The channel.", + "default": "stable", + "enum": [ + "alpha", + "beta", + "dev", + "rc", + "stable" ], - "description": "The installer languages (e.g. `en_US`, `de_DE`). Change only if you understand what do you do and for what." - }, - "installerSidebar": { - "description": "*assisted installer only.* `MUI_WELCOMEFINISHPAGE_BITMAP`, relative to the [build resources](./contents.md#extraresources) or to the project directory.\nDefaults to `build/installerSidebar.bmp` or `${NSISDIR}\\\\Contrib\\\\Graphics\\\\Wizard\\\\nsis3-metro.bmp`. Image size 164 × 314 pixels.", - "type": [ - "null", - "string" - ] - }, - "language": { - "description": "[LCID Dec](https://msdn.microsoft.com/en-au/goglobal/bb964664.aspx), defaults to `1033`(`English - United States`).", - "type": [ - "null", - "string" - ] - }, - "license": { - "description": "The path to EULA license file. Defaults to `license.txt` or `eula.txt` (or uppercase variants). In addition to `txt`, `rtf` and `html` supported (don't forget to use `target=\"_blank\"` for links).\n\nMultiple license files in different languages are supported — use lang postfix (e.g. `_de`, `_ru`). For example, create files `license_de.txt` and `license_en.txt` in the build resources.\nIf OS language is german, `license_de.txt` will be displayed. See map of [language code to name](https://github.com/meikidd/iso-639-1/blob/master/src/data.js).\n\nAppropriate license file will be selected by user OS language.", - "type": [ - "null", - "string" - ] + "type": "string" }, - "menuCategory": { - "default": false, - "description": "Whether to create submenu for start menu shortcut and program files directory. If `true`, company name will be used. Or string value.", - "type": [ - "string", - "boolean" - ] + "platform": { + "description": "The target Platform. Is set programmatically explicitly during publishing.", + "type": "string" }, - "multiLanguageInstaller": { - "description": "Whether to create multi-language installer. Defaults to `unicode` option value.", - "type": "boolean" + "publisherName": { + "type": "array", + "items": { + "type": "string" + } }, - "oneClick": { - "default": true, - "description": "Whether to create one-click installer or assisted.", - "type": "boolean" + "updaterCacheDirName": { + "type": "string" }, - "packElevateHelper": { + "publishAutoUpdate": { + "description": "Whether to publish auto update info files.\n\nAuto update relies only on the first provider in the list (you can specify several publishers).\nThus, probably, there`s no need to upload the metadata files for the other configured providers. But by default will be uploaded.", "default": true, - "description": "Whether to pack the elevate executable (required for electron-updater if per-machine installer used or can be used in the future). Ignored if `perMachine` is set to `true`.", "type": "boolean" }, - "perMachine": { - "default": false, - "description": "Whether to show install mode installer page (choice per-machine or per-user) for assisted installer. Or whether installation always per all users (per-machine).\n\nIf `oneClick` is `true` (default): Whether to install per all users (per-machine).\n\nIf `oneClick` is `false` and `perMachine` is `true`: no install mode installer page, always install per-machine.\n\nIf `oneClick` is `false` and `perMachine` is `false` (default): install mode installer page.", - "type": "boolean" + "requestHeaders": { + "$ref": "#/definitions/OutgoingHttpHeaders", + "description": "Any custom request headers" }, - "preCompressedFileExtensions": { - "anyOf": [ - { - "items": { - "type": "string" - }, - "type": "array" - }, - { - "type": [ - "null", - "string" - ] - } - ], + "timeout": { + "description": "Request timeout in milliseconds. (Default is 2 minutes; O is ignored)", + "default": 120000, + "type": "number" + } + }, + "additionalProperties": false, + "required": [ + "account", + "product", + "provider" + ] + }, + "SnapStoreOptions": { + "description": "[Snap Store](https://snapcraft.io/) options. To publish directly to Snapcraft, see Snapcraft authentication options for local or CI/CD authentication options.", + "type": "object", + "properties": { + "provider": { + "description": "The provider. Must be `snapStore`.", + "type": "string", + "const": "snapStore" + }, + "repo": { + "description": "snapcraft repo name", + "type": "string" + }, + "channels": { + "description": "The list of channels the snap would be released.", "default": [ - ".avi", - ".mov", - ".m4v", - ".mp4", - ".m4p", - ".qt", - ".mkv", - ".webm", - ".vmdk" + "edge" ], - "description": "The file extension of files that will be not compressed. Applicable only for `extraResources` and `extraFiles` files." - }, - "publish": { "anyOf": [ { - "$ref": "#/definitions/GithubOptions" - }, - { - "$ref": "#/definitions/GitlabOptions" - }, - { - "$ref": "#/definitions/S3Options" - }, - { - "$ref": "#/definitions/SpacesOptions" - }, - { - "$ref": "#/definitions/GenericServerOptions" - }, - { - "$ref": "#/definitions/CustomPublishOptions" - }, - { - "$ref": "#/definitions/KeygenOptions" - }, - { - "$ref": "#/definitions/SnapStoreOptions" - }, - { - "$ref": "#/definitions/BitbucketOptions" - }, - { + "type": "array", "items": { - "$ref": "#/definitions/AllPublishOptions" - }, - "type": "array" + "type": "string" + } }, { - "type": [ - "null", - "string" - ] + "type": "string" } ] }, - "removeDefaultUninstallWelcomePage": { - "default": false, - "description": "*assisted installer only.* remove the default uninstall welcome page.", - "type": "boolean" + "publisherName": { + "type": "array", + "items": { + "type": "string" + } }, - "runAfterFinish": { + "updaterCacheDirName": { + "type": "string" + }, + "publishAutoUpdate": { + "description": "Whether to publish auto update info files.\n\nAuto update relies only on the first provider in the list (you can specify several publishers).\nThus, probably, there`s no need to upload the metadata files for the other configured providers. But by default will be uploaded.", "default": true, - "description": "Whether to run the installed application after finish. For assisted installer corresponding checkbox will be removed.", "type": "boolean" }, - "script": { - "description": "The path to NSIS script to customize installer. Defaults to `build/installer.nsi`. See [Custom NSIS script](#custom-nsis-script).", - "type": [ - "null", - "string" - ] + "requestHeaders": { + "$ref": "#/definitions/OutgoingHttpHeaders", + "description": "Any custom request headers" }, - "selectPerMachineByDefault": { - "default": false, - "description": "Whether to set per-machine or per-user installation as default selection on the install mode installer page.", - "type": "boolean" + "timeout": { + "description": "Request timeout in milliseconds. (Default is 2 minutes; O is ignored)", + "default": 120000, + "type": "number" + } + }, + "additionalProperties": false, + "required": [ + "provider" + ] + }, + "BitbucketOptions": { + "description": "Bitbucket options.\nhttps://bitbucket.org/\nDefine `BITBUCKET_TOKEN` environment variable.\n\nFor converting an app password to a usable token, you can utilize this\n```typescript\nconvertAppPassword(owner: string, appPassword: string) {\nconst base64encodedData = Buffer.from(`${owner}:${appPassword.trim()}`).toString(\"base64\")\nreturn `Basic ${base64encodedData}`\n}\n```", + "type": "object", + "properties": { + "provider": { + "description": "The provider. Must be `bitbucket`.", + "type": "string", + "const": "bitbucket" }, - "shortcutName": { - "description": "The name that will be used for all shortcuts. Defaults to the application name.", - "type": [ - "null", - "string" - ] + "owner": { + "description": "Repository owner", + "type": "string" }, - "unicode": { + "token": { + "description": "The [app password](https://bitbucket.org/account/settings/app-passwords) to support auto-update from private bitbucket repositories.", + "type": "string" + }, + "username": { + "description": "The user name to support auto-update from private bitbucket repositories.", + "type": "string" + }, + "slug": { + "description": "Repository slug/name", + "type": "string" + }, + "channel": { + "description": "The channel.", + "default": "latest", + "type": "string" + }, + "publisherName": { + "type": "array", + "items": { + "type": "string" + } + }, + "updaterCacheDirName": { + "type": "string" + }, + "publishAutoUpdate": { + "description": "Whether to publish auto update info files.\n\nAuto update relies only on the first provider in the list (you can specify several publishers).\nThus, probably, there`s no need to upload the metadata files for the other configured providers. But by default will be uploaded.", "default": true, - "description": "Whether to create [Unicode installer](http://nsis.sourceforge.net/Docs/Chapter1.html#intro-unicode).", "type": "boolean" }, - "uninstallDisplayName": { - "default": "${productName} ${version}", - "description": "The uninstaller display name in the control panel.", - "type": [ - "null", - "string" - ] + "requestHeaders": { + "$ref": "#/definitions/OutgoingHttpHeaders", + "description": "Any custom request headers" }, - "uninstallUrlHelp": { - "description": "The URL to the uninstaller help page in the control panel. Defaults to [homepage](./configuration.md#homepage) from application package.json.", - "type": [ - "null", - "string" - ] + "timeout": { + "description": "Request timeout in milliseconds. (Default is 2 minutes; O is ignored)", + "default": 120000, + "type": "number" + } + }, + "additionalProperties": false, + "required": [ + "owner", + "provider", + "slug" + ] + }, + "AllPublishOptions": { + "anyOf": [ + { + "$ref": "#/definitions/GithubOptions" }, - "uninstallUrlInfoAbout": { - "description": "The URL to the uninstaller info about page in the control panel. Defaults to [homepage](./configuration.md#homepage) from application package.json.", - "type": [ - "null", - "string" - ] + { + "$ref": "#/definitions/GitlabOptions" }, - "uninstallUrlReadme": { - "description": "The URL to the uninstaller readme page in the control panel. Defaults to [homepage](./configuration.md#homepage) from application package.json.", - "type": [ - "null", - "string" - ] + { + "$ref": "#/definitions/S3Options" }, - "uninstallUrlUpdateInfo": { - "description": "The URL to the uninstaller update info page in the control panel. Defaults to [homepage](./configuration.md#homepage) from application package.json.", - "type": [ - "null", - "string" - ] + { + "$ref": "#/definitions/SpacesOptions" }, - "uninstallerIcon": { - "description": "The path to uninstaller icon, relative to the [build resources](./contents.md#extraresources) or to the project directory.\nDefaults to `build/uninstallerIcon.ico` or application icon.", - "type": [ - "null", - "string" - ] + { + "$ref": "#/definitions/GenericServerOptions" }, - "uninstallerSidebar": { - "description": "*assisted installer only.* `MUI_UNWELCOMEFINISHPAGE_BITMAP`, relative to the [build resources](./contents.md#extraresources) or to the project directory.\nDefaults to `installerSidebar` option or `build/uninstallerSidebar.bmp` or `build/installerSidebar.bmp` or `${NSISDIR}\\\\Contrib\\\\Graphics\\\\Wizard\\\\nsis3-metro.bmp`", - "type": [ - "null", - "string" - ] + { + "$ref": "#/definitions/CustomPublishOptions" }, - "useZip": { - "default": false, - "type": "boolean" + { + "$ref": "#/definitions/KeygenOptions" }, - "warningsAsErrors": { - "default": true, - "description": "If `warningsAsErrors` is `true` (default): NSIS will treat warnings as errors. If `warningsAsErrors` is `false`: NSIS will allow warnings.", - "type": "boolean" + { + "$ref": "#/definitions/SnapStoreOptions" + }, + { + "$ref": "#/definitions/BitbucketOptions" + }, + { + "type": "string" + } + ] + }, + "ReleaseInfo": { + "type": "object", + "properties": { + "releaseName": { + "description": "The release name.", + "type": "string" + }, + "releaseNotes": { + "description": "The release notes.", + "type": "string" + }, + "releaseNotesFile": { + "description": "The path to release notes file. Defaults to `release-notes-${platform}.md` (where `platform` it is current platform — `mac`, `linux` or `windows`) or `release-notes.md` in the [build resources](./contents.md#extraresources).", + "type": "string" + }, + "releaseDate": { + "description": "The release date.", + "type": "string" + }, + "vendor": { + "typeof": "function" } }, - "type": "object" + "additionalProperties": false }, - "NsisWebOptions": { - "additionalProperties": false, - "description": "Web Installer options.", + "FileSet": { + "type": "object", "properties": { - "allowElevation": { - "default": true, - "description": "*assisted installer only.* Allow requesting for elevation. If false, user will have to restart installer with elevated permissions.", - "type": "boolean" - }, - "allowToChangeInstallationDirectory": { - "default": false, - "description": "*assisted installer only.* Whether to allow user to change installation directory.", - "type": "boolean" + "from": { + "description": "The source path relative to and defaults to:\n\n - the [app directory](configuration.md#directories) for `files`,\n - the project directory for `extraResources` and `extraFiles`.\nIf you don't use two-package.json structure and don't set custom app directory, app directory equals to project directory.", + "type": "string" }, - "appPackageUrl": { - "description": "The application package download URL. Optional — by default computed using publish configuration.\n\nURL like `https://example.com/download/latest` allows web installer to be version independent (installer will download latest application package).\nPlease note — it is [full URL](https://github.com/electron-userland/electron-builder/issues/1810#issuecomment-317650878).\n\nCustom `X-Arch` http header is set to `32` or `64`.", - "type": [ - "null", - "string" - ] + "to": { + "description": "The destination path relative to and defaults to:\n\n - the asar archive root for `files`,\n - the app's content directory for `extraFiles`,\n - the app's resource directory for `extraResources`.", + "type": "string" }, - "artifactName": { - "description": "The [artifact file name template](./configuration.md#artifact-file-name-template). Defaults to `${productName} Web Setup ${version}.${ext}`.", - "type": [ - "null", - "string" + "filter": { + "description": "The [glob patterns](./file-patterns.md). Defaults to \"**\\/*\"", + "anyOf": [ + { + "type": "array", + "items": { + "type": "string" + } + }, + { + "type": "string" + } ] + } + }, + "additionalProperties": false + }, + "MasConfiguration": { + "type": "object", + "properties": { + "entitlements": { + "description": "The path to entitlements file for signing the app. `build/entitlements.mas.plist` will be used if exists (it is a recommended way to set).\nSee [this folder in osx-sign's repository](https://github.com/electron/osx-sign/tree/main/entitlements) for examples.\nBe aware that your app may crash if the right entitlements are not set like `com.apple.security.cs.allow-jit` for example on arm64 builds with Electron 20+.\nSee [Signing and Notarizing macOS Builds from the Electron documentation](https://www.electronjs.org/docs/latest/tutorial/code-signing#signing--notarizing-macos-builds) for more information.", + "type": "string" }, - "buildUniversalInstaller": { - "const": true, - "default": true, - "description": "Override for `NsisOptions.buildUniversalInstaller`. nsis-web requires universal installer", - "type": "boolean" + "entitlementsInherit": { + "description": "The path to child entitlements which inherit the security settings for signing frameworks and bundles of a distribution. `build/entitlements.mas.inherit.plist` will be used if exists (it is a recommended way to set).\nSee [this folder in osx-sign's repository](https://github.com/electron/osx-sign/tree/main/entitlements) for examples.", + "type": "string" }, - "createDesktopShortcut": { - "default": true, - "description": "Whether to create desktop shortcut. Set to `always` if to recreate also on reinstall (even if removed by user).", - "enum": [ - "always", - false, - true - ] + "binaries": { + "description": "Paths of any extra binaries that need to be signed.", + "type": "array", + "items": { + "type": "string" + } }, - "createStartMenuShortcut": { - "default": true, - "description": "Whether to create start menu shortcut.", - "type": "boolean" + "category": { + "description": "The application category type, as shown in the Finder via *View -> Arrange by Application Category* when viewing the Applications directory.\n\nFor example, `\"category\": \"public.app-category.developer-tools\"` will set the application category to *Developer Tools*.\n\nValid values are listed in [Apple's documentation](https://developer.apple.com/library/ios/documentation/General/Reference/InfoPlistKeyReference/Articles/LaunchServicesKeys.html#//apple_ref/doc/uid/TP40009250-SW8).", + "type": "string" }, - "customNsisBinary": { + "target": { + "description": "The target package type: list of `default`, `dmg`, `mas`, `mas-dev`, `pkg`, `7z`, `zip`, `tar.xz`, `tar.lz`, `tar.gz`, `tar.bz2`, `dir`. Defaults to `default` (`dmg` and `zip` for Squirrel.Mac). Note: Squirrel.Mac auto update mechanism requires both `dmg` and `zip` to be enabled, even when only `dmg` is used. Disabling `zip` will break auto update in `dmg` packages.", "anyOf": [ { - "$ref": "#/definitions/CustomNsisBinary" + "$ref": "#/definitions/TargetConfiguration" }, { - "type": "null" - } - ], - "description": "Allows you to provide your own `makensis`, such as one with support for debug logging via LogSet and LogText. (Logging also requires option `debugLogging = true`)" - }, - "customNsisResources": { - "anyOf": [ - { - "$ref": "#/definitions/CustomNsisResources" + "type": "array", + "items": { + "anyOf": [ + { + "$ref": "#/definitions/TargetConfiguration" + }, + { + "enum": [ + "7z", + "default", + "dir", + "dmg", + "mas", + "mas-dev", + "pkg", + "tar.bz2", + "tar.gz", + "tar.lz", + "tar.xz", + "zip" + ], + "type": "string" + } + ] + } }, { - "type": "null" + "enum": [ + "7z", + "default", + "dir", + "dmg", + "mas", + "mas-dev", + "pkg", + "tar.bz2", + "tar.gz", + "tar.lz", + "tar.xz", + "zip" + ], + "type": "string" } - ], - "description": "Allows you to provide your own `nsis-resources`" + ] }, - "deleteAppDataOnUninstall": { - "default": false, - "description": "*one-click installer only.* Whether to delete app data on uninstall.", - "type": "boolean" + "identity": { + "description": "The name of certificate to use when signing. Consider using environment variables [CSC_LINK or CSC_NAME](./code-signing.md) instead of specifying this option.\nMAS installer identity is specified in the [mas](./mas.md).\n\nSet to `-` to use an ad-hoc identity for signing. Set to `null` to skip signing entirely.", + "type": "string" }, - "differentialPackage": { - "type": "boolean" + "icon": { + "description": "The path to application icon.\nAccepts `.icns` (legacy) or `.icon` (Icon Composer asset).\nIf a `.icon` asset is provided, it will be preferred and compiled to an asset catalog.", + "default": "build/icon.icns", + "type": "string" }, - "displayLanguageSelector": { + "entitlementsLoginHelper": { + "description": "Path to login helper entitlement file.\nWhen using App Sandbox, the the `com.apple.security.inherit` key that is normally in the inherited entitlements cannot be inherited since the login helper is a standalone executable.\nDefaults to the value provided for `entitlements`. This option only applies when signing with `entitlements` provided.", + "type": "string" + }, + "provisioningProfile": { + "description": "The path to the provisioning profile to use when signing, absolute or relative to the app root.", + "type": "string" + }, + "bundleVersion": { + "description": "The `CFBundleVersion`. Do not use it unless [you need to](https://github.com/electron-userland/electron-builder/issues/565#issuecomment-230678643).", + "type": "string" + }, + "bundleShortVersion": { + "description": "The `CFBundleShortVersionString`. Do not use it unless you need to.", + "type": "string" + }, + "darkModeSupport": { + "description": "Whether a dark mode is supported. If your app does have a dark mode, you can make your app follow the system-wide dark mode setting.", "default": false, - "description": "Whether to display a language selection dialog. Not recommended (by default will be detected using OS language).", "type": "boolean" }, - "guid": { - "description": "See [GUID vs Application Name](./nsis.md#guid-vs-application-name).", - "type": [ - "null", - "string" - ] + "helperBundleId": { + "description": "The bundle identifier to use in the application helper's plist.", + "default": "${appBundleIdentifier}.helper", + "type": "string" }, - "include": { - "description": "The path to NSIS include script to customize installer. Defaults to `build/installer.nsh`. See [Custom NSIS script](#custom-nsis-script).", - "type": [ - "null", - "string" - ] + "helperRendererBundleId": { + "description": "The bundle identifier to use in the Renderer helper's plist.", + "default": "${appBundleIdentifier}.helper.Renderer", + "type": "string" }, - "installerHeader": { - "default": "build/installerHeader.bmp", - "description": "*assisted installer only.* `MUI_HEADERIMAGE`, relative to the [build resources](./contents.md#extraresources) or to the project directory.", - "type": [ - "null", - "string" - ] + "helperPluginBundleId": { + "description": "The bundle identifier to use in the Plugin helper's plist.", + "default": "${appBundleIdentifier}.helper.Plugin", + "type": "string" }, - "installerHeaderIcon": { - "description": "*one-click installer only.* The path to header icon (above the progress bar), relative to the [build resources](./contents.md#extraresources) or to the project directory.\nDefaults to `build/installerHeaderIcon.ico` or application icon.", - "type": [ - "null", - "string" - ] + "helperGPUBundleId": { + "description": "The bundle identifier to use in the GPU helper's plist.", + "default": "${appBundleIdentifier}.helper.GPU", + "type": "string" }, - "installerIcon": { - "description": "The path to installer icon, relative to the [build resources](./contents.md#extraresources) or to the project directory.\nDefaults to `build/installerIcon.ico` or application icon.", - "type": [ - "null", - "string" - ] + "helperEHBundleId": { + "description": "The bundle identifier to use in the EH helper's plist.", + "default": "${appBundleIdentifier}.helper.EH", + "type": "string" }, - "installerLanguages": { + "helperNPBundleId": { + "description": "The bundle identifier to use in the NP helper's plist.", + "default": "${appBundleIdentifier}.helper.NP", + "type": "string" + }, + "type": { + "description": "Whether to sign app for development or for distribution.", + "default": "distribution", + "enum": [ + "development", + "distribution" + ], + "type": "string" + }, + "extendInfo": { + "description": "The extra entries for `Info.plist`." + }, + "minimumSystemVersion": { + "description": "The minimum version of macOS required for the app to run. Corresponds to `LSMinimumSystemVersion`.", + "type": "string" + }, + "requirements": { + "description": "Path of [requirements file](https://developer.apple.com/library/mac/documentation/Security/Conceptual/CodeSigningGuide/RequirementLang/RequirementLang.html) used in signing. Not applicable for MAS.", + "type": "string" + }, + "cscInstallerLink": { + "type": "string" + }, + "cscInstallerKeyPassword": { + "type": "string" + }, + "extraDistFiles": { + "description": "Extra files to put in archive. Not applicable for `tar.*`.", "anyOf": [ { + "type": "array", "items": { "type": "string" - }, - "type": "array" + } }, { - "type": [ - "null", - "string" - ] + "type": "string" } - ], - "description": "The installer languages (e.g. `en_US`, `de_DE`). Change only if you understand what do you do and for what." - }, - "installerSidebar": { - "description": "*assisted installer only.* `MUI_WELCOMEFINISHPAGE_BITMAP`, relative to the [build resources](./contents.md#extraresources) or to the project directory.\nDefaults to `build/installerSidebar.bmp` or `${NSISDIR}\\\\Contrib\\\\Graphics\\\\Wizard\\\\nsis3-metro.bmp`. Image size 164 × 314 pixels.", - "type": [ - "null", - "string" - ] - }, - "language": { - "description": "[LCID Dec](https://msdn.microsoft.com/en-au/goglobal/bb964664.aspx), defaults to `1033`(`English - United States`).", - "type": [ - "null", - "string" - ] - }, - "license": { - "description": "The path to EULA license file. Defaults to `license.txt` or `eula.txt` (or uppercase variants). In addition to `txt`, `rtf` and `html` supported (don't forget to use `target=\"_blank\"` for links).\n\nMultiple license files in different languages are supported — use lang postfix (e.g. `_de`, `_ru`). For example, create files `license_de.txt` and `license_en.txt` in the build resources.\nIf OS language is german, `license_de.txt` will be displayed. See map of [language code to name](https://github.com/meikidd/iso-639-1/blob/master/src/data.js).\n\nAppropriate license file will be selected by user OS language.", - "type": [ - "null", - "string" - ] - }, - "menuCategory": { - "default": false, - "description": "Whether to create submenu for start menu shortcut and program files directory. If `true`, company name will be used. Or string value.", - "type": [ - "string", - "boolean" ] }, - "multiLanguageInstaller": { - "description": "Whether to create multi-language installer. Defaults to `unicode` option value.", + "hardenedRuntime": { + "description": "Whether your app has to be signed with hardened runtime.", + "default": true, "type": "boolean" }, - "oneClick": { - "default": true, - "description": "Whether to create one-click installer or assisted.", + "gatekeeperAssess": { + "description": "Whether to let `@electron/osx-sign` validate the signing or not.", + "default": false, "type": "boolean" }, - "packElevateHelper": { + "strictVerify": { + "description": "Whether to let `@electron/osx-sign` verify the contents or not.", "default": true, - "description": "Whether to pack the elevate executable (required for electron-updater if per-machine installer used or can be used in the future). Ignored if `perMachine` is set to `true`.", "type": "boolean" }, - "perMachine": { - "default": false, - "description": "Whether to show install mode installer page (choice per-machine or per-user) for assisted installer. Or whether installation always per all users (per-machine).\n\nIf `oneClick` is `true` (default): Whether to install per all users (per-machine).\n\nIf `oneClick` is `false` and `perMachine` is `true`: no install mode installer page, always install per-machine.\n\nIf `oneClick` is `false` and `perMachine` is `false` (default): install mode installer page.", + "preAutoEntitlements": { + "description": "Whether to enable entitlements automation from `@electron/osx-sign`.", + "default": true, "type": "boolean" }, - "preCompressedFileExtensions": { + "signIgnore": { + "description": "Regex or an array of regex's that signal skipping signing a file.", "anyOf": [ { + "type": "array", "items": { "type": "string" - }, - "type": "array" + } }, { - "type": [ - "null", - "string" - ] + "type": "string" } - ], - "default": [ - ".avi", - ".mov", - ".m4v", - ".mp4", - ".m4p", - ".qt", - ".mkv", - ".webm", - ".vmdk" - ], - "description": "The file extension of files that will be not compressed. Applicable only for `extraResources` and `extraFiles` files." + ] }, - "publish": { + "sign": { + "description": "The custom function (or path to file or module id) to sign an app bundle.", "anyOf": [ { - "$ref": "#/definitions/GithubOptions" - }, - { - "$ref": "#/definitions/GitlabOptions" - }, - { - "$ref": "#/definitions/S3Options" - }, - { - "$ref": "#/definitions/SpacesOptions" - }, - { - "$ref": "#/definitions/GenericServerOptions" - }, - { - "$ref": "#/definitions/CustomPublishOptions" - }, - { - "$ref": "#/definitions/KeygenOptions" - }, - { - "$ref": "#/definitions/SnapStoreOptions" - }, - { - "$ref": "#/definitions/BitbucketOptions" - }, - { - "items": { - "$ref": "#/definitions/AllPublishOptions" - }, - "type": "array" + "typeof": "function" }, { - "type": [ - "null", - "string" - ] + "type": "string" } ] }, - "removeDefaultUninstallWelcomePage": { - "default": false, - "description": "*assisted installer only.* remove the default uninstall welcome page.", - "type": "boolean" + "timestamp": { + "description": "Specify the URL of the timestamp authority server", + "type": "string" }, - "runAfterFinish": { + "mergeASARs": { + "description": "Whether to merge ASAR files for different architectures or not.\n\nThis option has no effect unless building for \"universal\" arch.", "default": true, - "description": "Whether to run the installed application after finish. For assisted installer corresponding checkbox will be removed.", "type": "boolean" }, - "script": { - "description": "The path to NSIS script to customize installer. Defaults to `build/installer.nsi`. See [Custom NSIS script](#custom-nsis-script).", - "type": [ - "null", - "string" - ] + "singleArchFiles": { + "description": "Minimatch pattern of paths that are allowed to be present in one of the\nASAR files, but not in the other.\n\nThis option has no effect unless building for \"universal\" arch and applies\nonly if `mergeASARs` is `true`.", + "type": "string" }, - "selectPerMachineByDefault": { - "default": false, - "description": "Whether to set per-machine or per-user installation as default selection on the install mode installer page.", - "type": "boolean" + "x64ArchFiles": { + "description": "Minimatch pattern of paths that are allowed to be x64 binaries in both\nASAR files\n\nThis option has no effect unless building for \"universal\" arch and applies\nonly if `mergeASARs` is `true`.", + "type": "string" }, - "shortcutName": { - "description": "The name that will be used for all shortcuts. Defaults to the application name.", - "type": [ - "null", - "string" - ] + "additionalArguments": { + "description": "Array of strings specifying additional arguments to pass to the `codesign` command used to sign a specific file.\n\nSome subresources that you may include in your Electron app may need to be signed with --deep, this is not typically safe to apply to the entire Electron app and therefore should be applied to just your file.\nUsage Example: `['--deep']`", + "type": "array", + "items": { + "type": "string" + } }, - "unicode": { - "default": true, - "description": "Whether to create [Unicode installer](http://nsis.sourceforge.net/Docs/Chapter1.html#intro-unicode).", + "notarize": { + "description": "Whether to disable electron-builder's [@electron/notarize](https://github.com/electron/notarize) integration.\n\nNote: In order to activate the notarization step You MUST specify one of the following via environment variables:\n\n1. `APPLE_API_KEY`, `APPLE_API_KEY_ID` and `APPLE_API_ISSUER`.\n2. `APPLE_ID`, `APPLE_APP_SPECIFIC_PASSWORD`, and `APPLE_TEAM_ID`\n3. `APPLE_KEYCHAIN` and `APPLE_KEYCHAIN_PROFILE`\n\nFor security reasons it is recommended to use the first option (see https://github.com/electron-userland/electron-builder/issues/7859)", "type": "boolean" }, - "uninstallDisplayName": { - "default": "${productName} ${version}", - "description": "The uninstaller display name in the control panel.", - "type": [ - "null", - "string" - ] + "appId": { + "description": "The application id. Used as [CFBundleIdentifier](https://developer.apple.com/library/ios/documentation/General/Reference/InfoPlistKeyReference/Articles/CoreFoundationKeys.html#//apple_ref/doc/uid/20001431-102070) for MacOS and as\n[Application User Model ID](https://msdn.microsoft.com/en-us/library/windows/desktop/dd378459(v=vs.85).aspx) for Windows (NSIS target only, Squirrel.Windows not supported). It is strongly recommended that an explicit ID is set.", + "default": "com.electron.${name}", + "type": "string" }, - "uninstallUrlHelp": { - "description": "The URL to the uninstaller help page in the control panel. Defaults to [homepage](./configuration.md#homepage) from application package.json.", - "type": [ - "null", - "string" - ] + "artifactName": { + "description": "The [artifact file name template](./configuration.md#artifact-file-name-template). Defaults to `${productName}-${version}.${ext}` (some target can have other defaults, see corresponding options).", + "type": "string" }, - "uninstallUrlInfoAbout": { - "description": "The URL to the uninstaller info about page in the control panel. Defaults to [homepage](./configuration.md#homepage) from application package.json.", - "type": [ - "null", - "string" - ] + "executableName": { + "description": "The executable name. Defaults to `productName`\nNote: Except for Linux, where this would constitute a breaking change in previous behavior and lead to both invalid executable names and Desktop files. Ref comments in: https://github.com/electron-userland/electron-builder/pull/9068", + "type": "string" }, - "uninstallUrlReadme": { - "description": "The URL to the uninstaller readme page in the control panel. Defaults to [homepage](./configuration.md#homepage) from application package.json.", - "type": [ - "null", - "string" - ] + "compression": { + "$ref": "#/definitions/CompressionLevel", + "description": "The compression level. If you want to rapidly test build, `store` can reduce build time significantly. `maximum` doesn't lead to noticeable size difference, but increase build time.", + "default": "normal" }, - "uninstallUrlUpdateInfo": { - "description": "The URL to the uninstaller update info page in the control panel. Defaults to [homepage](./configuration.md#homepage) from application package.json.", - "type": [ - "null", - "string" - ] + "disableDefaultIgnoredFiles": { + "description": "Whether to exclude all default ignored files(https://www.electron.build/contents#files) and options. Defaults to `false`.", + "default": false, + "type": "boolean" }, - "uninstallerIcon": { - "description": "The path to uninstaller icon, relative to the [build resources](./contents.md#extraresources) or to the project directory.\nDefaults to `build/uninstallerIcon.ico` or application icon.", - "type": [ - "null", - "string" + "asar": { + "description": "Whether to package the application's source code into an archive, using [Electron's archive format](http://electron.atom.io/docs/tutorial/application-packaging/).\n\nNode modules, that must be unpacked, will be detected automatically, you don't need to explicitly set [asarUnpack](#asarUnpack) - please file an issue if this doesn't work.", + "default": true, + "anyOf": [ + { + "$ref": "#/definitions/AsarOptions" + }, + { + "type": "boolean" + } ] }, - "uninstallerSidebar": { - "description": "*assisted installer only.* `MUI_UNWELCOMEFINISHPAGE_BITMAP`, relative to the [build resources](./contents.md#extraresources) or to the project directory.\nDefaults to `installerSidebar` option or `build/uninstallerSidebar.bmp` or `build/installerSidebar.bmp` or `${NSISDIR}\\\\Contrib\\\\Graphics\\\\Wizard\\\\nsis3-metro.bmp`", - "type": [ - "null", - "string" + "asarUnpack": { + "description": "A [glob patterns](./file-patterns.md) relative to the [app directory](#directories), which specifies which files to unpack when creating the [asar](http://electron.atom.io/docs/tutorial/application-packaging/) archive.", + "anyOf": [ + { + "type": "array", + "items": { + "type": "string" + } + }, + { + "type": "string" + } ] }, - "useZip": { - "default": false, - "type": "boolean" + "fileAssociations": { + "description": "The file associations.", + "anyOf": [ + { + "$ref": "#/definitions/FileAssociation" + }, + { + "type": "array", + "items": { + "$ref": "#/definitions/FileAssociation" + } + } + ] }, - "warningsAsErrors": { - "default": true, - "description": "If `warningsAsErrors` is `true` (default): NSIS will treat warnings as errors. If `warningsAsErrors` is `false`: NSIS will allow warnings.", - "type": "boolean" - } - }, - "type": "object" - }, - "OutgoingHttpHeaders": { - "additionalProperties": { - "anyOf": [ - { - "items": { - "type": "string" + "protocols": { + "description": "The URL protocol schemes.", + "anyOf": [ + { + "$ref": "#/definitions/Protocol" }, - "type": "array" - }, - { - "type": [ - "string", - "number" - ] - } - ] - }, - "properties": { - "accept": { + { + "type": "array", + "items": { + "$ref": "#/definitions/Protocol" + } + } + ] + }, + "electronLanguages": { + "description": "The electron locales to keep. By default, all Electron locales used as-is.", "anyOf": [ { + "type": "array", "items": { "type": "string" - }, - "type": "array" + } }, { "type": "string" } ] }, - "accept-charset": { + "forceCodeSigning": { + "description": "Whether to fail if app will be not code signed.", + "type": "boolean" + }, + "electronUpdaterCompatibility": { + "description": "The [electron-updater compatibility](./auto-update.md#compatibility) semver range.", + "type": "string" + }, + "publish": { + "$ref": "#/definitions/Publish", + "description": "Publisher configuration. See [Auto Update](./publish.md) for more information." + }, + "detectUpdateChannel": { + "description": "Whether to infer update channel from application version pre-release components. e.g. if version `0.12.1-alpha.1`, channel will be set to `alpha`. Otherwise to `latest`.\nThis does *not* apply to github publishing, which will [never auto-detect the update channel](https://github.com/electron-userland/electron-builder/issues/8589).", + "default": true, + "type": "boolean" + }, + "generateUpdatesFilesForAllChannels": { + "description": "Please see [Building and Releasing using Channels](https://github.com/electron-userland/electron-builder/issues/1182#issuecomment-324947139).", + "default": false, + "type": "boolean" + }, + "releaseInfo": { + "$ref": "#/definitions/ReleaseInfo", + "description": "The release info. Intended for command line usage:\n\n```\n-c.releaseInfo.releaseNotes=\"new features\"\n```" + }, + "cscLink": { + "type": "string" + }, + "cscKeyPassword": { + "type": "string" + }, + "defaultArch": { + "type": "string" + }, + "files": { + "description": "A [glob patterns](./file-patterns.md) relative to the [app directory](configuration.md#directories), which specifies which files to include when copying files to create the package.\n\nDefaults to:\n```json\n[\n\"**\\/*\",\n\"!**\\/node_modules/*\\/{CHANGELOG.md,README.md,README,readme.md,readme}\",\n\"!**\\/node_modules/*\\/{test,__tests__,tests,powered-test,example,examples}\",\n\"!**\\/node_modules/*.d.ts\",\n\"!**\\/node_modules/.bin\",\n\"!**\\/*.{iml,o,hprof,orig,pyc,pyo,rbc,swp,csproj,sln,xproj}\",\n\"!.editorconfig\",\n\"!**\\/._*\",\n\"!**\\/{.DS_Store,.git,.hg,.svn,CVS,RCS,SCCS,.gitignore,.gitattributes}\",\n\"!**\\/{__pycache__,thumbs.db,.flowconfig,.idea,.vs,.nyc_output}\",\n\"!**\\/{appveyor.yml,.travis.yml,circle.yml}\",\n\"!**\\/{npm-debug.log,yarn.lock,.yarn-integrity,.yarn-metadata.json}\"\n]\n```\n\nDevelopment dependencies are never copied in any case. You don't need to ignore it explicitly. Hidden files are not ignored by default, but all files that should be ignored, are ignored by default.\n\nDefault pattern \\`**\\/*\\` **is not added to your custom** if some of your patterns is not ignore (i.e. not starts with `!`). `package.json` and \\`**\\/node_modules/**\\/*` (only production dependencies will be copied) is added to your custom in any case. All default ignores are added in any case — you don't need to repeat it if you configure own patterns.\n\nMay be specified in the platform options (e.g. in the [mac](mac.md)).\n\nYou may also specify custom source and destination directories by using `FileSet` objects instead of simple glob patterns.\n\n```json\n[\n{\n\"from\": \"path/to/source\",\n\"to\": \"path/to/destination\",\n\"filter\": [\"**\\/*\", \"!foo/*.js\"]\n}\n]\n```\n\nYou can use [file macros](./file-patterns.md#file-macros) in the `from` and `to` fields as well. `from` and `to` can be files and you can use this to [rename](https://github.com/electron-userland/electron-builder/issues/1119) a file while packaging.", "anyOf": [ { + "$ref": "#/definitions/FileSet" + }, + { + "type": "array", "items": { - "type": "string" - }, - "type": "array" + "anyOf": [ + { + "$ref": "#/definitions/FileSet" + }, + { + "type": "string" + } + ] + } }, { "type": "string" } ] }, - "accept-encoding": { + "extraResources": { + "description": "A [glob patterns](./file-patterns.md) relative to the project directory, when specified, copy the file or directory with matching names directly into the app's resources directory (`Contents/Resources` for MacOS, `resources` for Linux and Windows).\n\nFile patterns (and support for `from` and `to` fields) the same as for [files](#files).", "anyOf": [ { + "$ref": "#/definitions/FileSet" + }, + { + "type": "array", "items": { - "type": "string" - }, - "type": "array" + "anyOf": [ + { + "$ref": "#/definitions/FileSet" + }, + { + "type": "string" + } + ] + } }, { "type": "string" } ] }, - "accept-language": { + "extraFiles": { + "description": "The same as [extraResources](#extraresources) but copy into the app's content directory (`Contents` for MacOS, root directory for Linux and Windows).", "anyOf": [ { + "$ref": "#/definitions/FileSet" + }, + { + "type": "array", "items": { - "type": "string" - }, - "type": "array" + "anyOf": [ + { + "$ref": "#/definitions/FileSet" + }, + { + "type": "string" + } + ] + } }, { "type": "string" } ] + } + }, + "additionalProperties": false + }, + "DmgOptions": { + "type": "object", + "properties": { + "background": { + "description": "The path to background image (default: `build/background.tiff` or `build/background.png` if exists). The resolution of this file determines the resolution of the installer window.\nIf background is not specified, use `window.size`. Default locations expected background size to be 540x380.", + "type": "string" }, - "accept-ranges": { + "backgroundColor": { + "description": "The background color (accepts css colors). Defaults to `#ffffff` (white) if no background image.", "type": "string" }, - "access-control-allow-credentials": { + "badgeIcon": { + "description": "The path to DMG icon (badge icon), which will be shown when mounted, relative to the [build resources](./contents.md#extraresources) or to the project directory.", "type": "string" }, - "access-control-allow-headers": { + "icon": { + "description": "The path to DMG icon (volume icon), which will be shown when mounted, relative to the [build resources](./contents.md#extraresources) or to the project directory.\nDefaults to the application icon (`build/icon.icns`).", "type": "string" }, - "access-control-allow-methods": { + "iconSize": { + "description": "The size of all the icons inside the DMG.", + "default": 80, + "type": "number" + }, + "iconTextSize": { + "description": "The size of all the icon texts inside the DMG.", + "default": 12, + "type": "number" + }, + "title": { + "description": "The title of the produced DMG, which will be shown when mounted (volume name).\n\nMacro `${productName}`, `${version}` and `${name}` are supported.", + "default": "${productName} ${version}", "type": "string" }, - "access-control-allow-origin": { + "contents": { + "description": "The content — to customize icon locations. The x and y coordinates refer to the position of the **center** of the icon (at 1x scale), and do not take the label into account.", + "type": "array", + "items": { + "$ref": "#/definitions/DmgContent" + } + }, + "format": { + "description": "The disk image format. `ULFO` (lzfse-compressed image (OS X 10.11+ only)).", + "default": "UDZO", + "enum": [ + "UDBZ", + "UDCO", + "UDRO", + "UDRW", + "UDZO", + "ULFO" + ], "type": "string" }, - "access-control-expose-headers": { + "window": { + "$ref": "#/definitions/DmgWindow", + "description": "The DMG window position and size. With y co-ordinates running from bottom to top.\n\nThe Finder makes sure that the window will be on the user’s display, so if you want your window at the top left of the display you could use `\"x\": 0, \"y\": 100000` as the x, y co-ordinates.\nIt is not to be possible to position the window relative to the [top left](https://github.com/electron-userland/electron-builder/issues/3990#issuecomment-512960957) or relative to the center of the user’s screen." + }, + "internetEnabled": { + "description": "Whether to create internet-enabled disk image (when it is downloaded using a browser it will automatically decompress the image, put the application on the desktop, unmount and remove the disk image file).", + "default": false, + "type": "boolean" + }, + "sign": { + "description": "Whether to sign the DMG or not. Signing is not required and will lead to unwanted errors in combination with notarization requirements.", + "default": false, + "type": "boolean" + }, + "writeUpdateInfo": { + "default": true, + "type": "boolean" + }, + "artifactName": { + "description": "The [artifact file name template](./configuration.md#artifact-file-name-template).", "type": "string" }, - "access-control-max-age": { + "publish": { + "$ref": "#/definitions/Publish" + } + }, + "additionalProperties": false + }, + "DmgContent": { + "type": "object", + "properties": { + "x": { + "description": "The device-independent pixel offset from the left of the window to the **center** of the icon.", + "type": "number" + }, + "y": { + "description": "The device-independent pixel offset from the top of the window to the **center** of the icon.", + "type": "number" + }, + "type": { + "enum": [ + "dir", + "file", + "link" + ], "type": "string" }, - "access-control-request-headers": { + "name": { + "description": "The name of the file within the DMG. Defaults to basename of `path`.", "type": "string" }, - "access-control-request-method": { + "path": { + "description": "The path of the file within the DMG.", + "type": "string" + } + }, + "additionalProperties": false, + "required": [ + "x", + "y" + ] + }, + "DmgWindow": { + "type": "object", + "properties": { + "x": { + "description": "The X position relative to left of the screen.", + "default": 400, + "type": "number" + }, + "y": { + "description": "The Y position relative to bottom of the screen.", + "default": 100, + "type": "number" + }, + "width": { + "description": "The width. Defaults to background image width or 540.", + "type": "number" + }, + "height": { + "description": "The height. Defaults to background image height or 380.", + "type": "number" + } + }, + "additionalProperties": false + }, + "PkgOptions": { + "description": "macOS product archive options.", + "type": "object", + "properties": { + "scripts": { + "description": "The scripts directory, relative to `build` (build resources directory).\nThe scripts can be in any language so long as the files are marked executable and have the appropriate shebang indicating the path to the interpreter.\nScripts are required to be executable (`chmod +x file`).", + "default": "build/pkg-scripts", + "type": "string" + }, + "productbuild": { + "description": "should be not documented, only to experiment", + "type": "array", + "items": { + "type": "string" + } + }, + "installLocation": { + "description": "The install location. [Do not use it](https://stackoverflow.com/questions/12863944/how-do-you-specify-a-default-install-location-to-home-with-pkgbuild) to create per-user package.\nMostly never you will need to change this option. `/Applications` would install it as expected into `/Applications` if the local system domain is chosen, or into `$HOME/Applications` if the home installation is chosen.", + "default": "/Applications", + "type": "string" + }, + "allowAnywhere": { + "description": "Whether can be installed at the root of any volume, including non-system volumes. Otherwise, it cannot be installed at the root of a volume.\n\nCorresponds to [enable_anywhere](https://developer.apple.com/library/content/documentation/DeveloperTools/Reference/DistributionDefinitionRef/Chapters/Distribution_XML_Ref.html#//apple_ref/doc/uid/TP40005370-CH100-SW70).", + "default": true, + "type": "boolean" + }, + "allowCurrentUserHome": { + "description": "Whether can be installed into the current user’s home directory.\nA home directory installation is done as the current user (not as root), and it cannot write outside of the home directory.\nIf the product cannot be installed in the user’s home directory and be not completely functional from user’s home directory.\n\nCorresponds to [enable_currentUserHome](https://developer.apple.com/library/content/documentation/DeveloperTools/Reference/DistributionDefinitionRef/Chapters/Distribution_XML_Ref.html#//apple_ref/doc/uid/TP40005370-CH100-SW70).", + "default": true, + "type": "boolean" + }, + "allowRootDirectory": { + "description": "Whether can be installed into the root directory. Should usually be `true` unless the product can be installed only to the user’s home directory.\n\nCorresponds to [enable_localSystem](https://developer.apple.com/library/content/documentation/DeveloperTools/Reference/DistributionDefinitionRef/Chapters/Distribution_XML_Ref.html#//apple_ref/doc/uid/TP40005370-CH100-SW70).", + "default": true, + "type": "boolean" + }, + "identity": { + "description": "The name of certificate to use when signing. Consider using environment variables [CSC_LINK or CSC_NAME](./code-signing.md) instead of specifying this option.", + "type": "string" + }, + "license": { + "description": "The path to EULA license file. Defaults to `license.txt` or `eula.txt` (or uppercase variants). In addition to `txt`, `rtf` and `html` supported (don't forget to use `target=\"_blank\"` for links).", + "type": "string" + }, + "background": { + "$ref": "#/definitions/PkgBackgroundOptions", + "description": "Options for the background image for the installer." + }, + "welcome": { + "description": "The path to the welcome file. This may be used to customize the text on the Introduction page of the installer.", + "type": "string" + }, + "mustClose": { + "description": "Identifies applications that must be closed before the package is installed.\n\nCorresponds to [must-close](https://developer.apple.com/library/archive/documentation/DeveloperTools/Reference/DistributionDefinitionRef/Chapters/Distribution_XML_Ref.html#//apple_ref/doc/uid/TP40005370-CH100-SW77).", + "type": "array", + "items": { + "type": "string" + } + }, + "conclusion": { + "description": "The path to the conclusion file. This may be used to customize the text on the final \"Summary\" page of the installer.", + "type": "string" + }, + "isRelocatable": { + "description": "Install bundle over previous version if moved by user?", + "default": true, + "type": "boolean" + }, + "isVersionChecked": { + "description": "Don't install bundle if newer version on disk?", + "default": true, + "type": "boolean" + }, + "hasStrictIdentifier": { + "description": "Require identical bundle identifiers at install path?", + "default": true, + "type": "boolean" + }, + "overwriteAction": { + "description": "Specifies how an existing version of the bundle on disk should be handled when the version in\nthe package is installed.\n\nIf you specify upgrade, the bundle in the package atomi-cally replaces any version on disk;\nthis has the effect of deleting old paths that no longer exist in the new version of\nthe bundle.\n\nIf you specify update, the bundle in the package overwrites the version on disk, and any files\nnot contained in the package will be left intact; this is appropriate when you are delivering\nan update-only package.\n\nAnother effect of update is that the package bundle will not be installed at all if there is\nnot already a version on disk; this allows a package to deliver an update for an app that\nthe user might have deleted.", + "default": "upgrade", + "enum": [ + "update", + "upgrade" + ], + "type": "string" + }, + "extraPkgsDir": { + "description": "The extra component packages directory (relative to build resources directory) for MacOS product archive\nAutoscans directory for any `.pkg` files and adds to `productbuild` command as `--package-path` and `--package` accordingly", + "type": "string" + }, + "artifactName": { + "description": "The [artifact file name template](./configuration.md#artifact-file-name-template).", + "type": "string" + }, + "publish": { + "$ref": "#/definitions/Publish" + } + }, + "additionalProperties": false + }, + "PkgBackgroundOptions": { + "description": "Options for the background image in a PKG installer", + "type": "object", + "properties": { + "file": { + "description": "Path to the image to use as an installer background.", "type": "string" }, - "age": { - "type": "string" + "alignment": { + "$ref": "#/definitions/BackgroundAlignment", + "description": "Alignment of the background image.\nOptions are: center, left, right, top, bottom, topleft, topright, bottomleft, bottomright", + "default": "center" }, - "allow": { - "type": "string" + "scaling": { + "$ref": "#/definitions/BackgroundScaling", + "description": "Scaling of the background image.\nOptions are: tofit, none, proportional", + "default": "tofit" + } + }, + "additionalProperties": false + }, + "BackgroundAlignment": { + "enum": [ + "bottom", + "bottomleft", + "bottomright", + "center", + "left", + "right", + "top", + "topleft", + "topright" + ], + "type": "string" + }, + "BackgroundScaling": { + "enum": [ + "none", + "proportional", + "tofit" + ], + "type": "string" + }, + "WindowsConfiguration": { + "type": "object", + "properties": { + "target": { + "$ref": "#/definitions/TargetConfigType", + "description": "The target package type: list of `nsis`, `nsis-web` (Web installer), `portable` ([portable]./nsis.md#portable) app without installation), `appx`, `msi`, `msi-wrapped`, `squirrel`, `7z`, `zip`, `tar.xz`, `tar.lz`, `tar.gz`, `tar.bz2`, `dir`.\nAppX package can be built only on Windows 10.\n\nTo use Squirrel.Windows please install `electron-builder-squirrel-windows` dependency.", + "default": "nsis" }, - "authorization": { + "icon": { + "description": "The path to application icon.", + "default": "build/icon.ico", "type": "string" }, - "cache-control": { + "legalTrademarks": { + "description": "The trademarks and registered trademarks.", "type": "string" }, - "cdn-cache-control": { - "type": "string" + "signtoolOptions": { + "$ref": "#/definitions/WindowsSigntoolConfiguration", + "description": "Options for usage with signtool.exe\nCannot be used in conjunction with `azureSignOptions`, signing will default to Azure Trusted Signing" }, - "connection": { - "anyOf": [ - { - "items": { - "type": "string" - }, - "type": "array" - }, - { - "type": "string" - } - ] + "azureSignOptions": { + "$ref": "#/definitions/WindowsAzureSigningConfiguration", + "description": "Options for usage of Azure Trusted Signing service\nCannot be used in conjunction with `signtoolOptions`, signing will default to Azure Trusted Signing" }, - "content-disposition": { - "type": "string" + "verifyUpdateCodeSignature": { + "description": "Whether to verify the signature of an available update before installation.\nThe [publisher name](#publisherName) will be used for the signature verification.", + "default": true, + "type": "boolean" }, - "content-encoding": { - "type": "string" + "requestedExecutionLevel": { + "$ref": "#/definitions/RequestedExecutionLevel", + "description": "The [security level](https://msdn.microsoft.com/en-us/library/6ad1fshk.aspx#Anchor_9) at which the application requests to be executed.\nCannot be specified per target, allowed only in the `win`.", + "default": "asInvoker" }, - "content-language": { - "type": "string" + "signAndEditExecutable": { + "description": "Whether to sign and add metadata to executable.\nMetadata includes information about the app name/description/version, publisher, copyright, etc.\nThis property also is responsible for adding the app icon and setting execution level.\n(Advanced option leveraging `rcedit`)", + "default": true, + "type": "boolean" }, - "content-length": { - "type": [ - "string", - "number" - ] + "signExts": { + "description": "Explicit file name/extensions (`str.endsWith`) to also sign. Advanced option.\nSupports negative patterns, e.g. example that excludes `.appx` files: `[\"somefilename\", \".dll\", \"!.appx\"]`.", + "default": null, + "type": "array", + "items": { + "type": "string" + } }, - "content-location": { + "appId": { + "description": "The application id. Used as [CFBundleIdentifier](https://developer.apple.com/library/ios/documentation/General/Reference/InfoPlistKeyReference/Articles/CoreFoundationKeys.html#//apple_ref/doc/uid/20001431-102070) for MacOS and as\n[Application User Model ID](https://msdn.microsoft.com/en-us/library/windows/desktop/dd378459(v=vs.85).aspx) for Windows (NSIS target only, Squirrel.Windows not supported). It is strongly recommended that an explicit ID is set.", + "default": "com.electron.${name}", "type": "string" }, - "content-range": { + "artifactName": { + "description": "The [artifact file name template](./configuration.md#artifact-file-name-template). Defaults to `${productName}-${version}.${ext}` (some target can have other defaults, see corresponding options).", "type": "string" }, - "content-security-policy": { + "executableName": { + "description": "The executable name. Defaults to `productName`\nNote: Except for Linux, where this would constitute a breaking change in previous behavior and lead to both invalid executable names and Desktop files. Ref comments in: https://github.com/electron-userland/electron-builder/pull/9068", "type": "string" }, - "content-security-policy-report-only": { - "type": "string" + "compression": { + "$ref": "#/definitions/CompressionLevel", + "description": "The compression level. If you want to rapidly test build, `store` can reduce build time significantly. `maximum` doesn't lead to noticeable size difference, but increase build time.", + "default": "normal" }, - "content-type": { - "type": "string" + "disableDefaultIgnoredFiles": { + "description": "Whether to exclude all default ignored files(https://www.electron.build/contents#files) and options. Defaults to `false`.", + "default": false, + "type": "boolean" }, - "cookie": { + "asar": { + "description": "Whether to package the application's source code into an archive, using [Electron's archive format](http://electron.atom.io/docs/tutorial/application-packaging/).\n\nNode modules, that must be unpacked, will be detected automatically, you don't need to explicitly set [asarUnpack](#asarUnpack) - please file an issue if this doesn't work.", + "default": true, "anyOf": [ { - "items": { - "type": "string" - }, - "type": "array" + "$ref": "#/definitions/AsarOptions" }, { - "type": "string" + "type": "boolean" } ] }, - "date": { - "type": "string" - }, - "dav": { + "asarUnpack": { + "description": "A [glob patterns](./file-patterns.md) relative to the [app directory](#directories), which specifies which files to unpack when creating the [asar](http://electron.atom.io/docs/tutorial/application-packaging/) archive.", "anyOf": [ { + "type": "array", "items": { "type": "string" - }, - "type": "array" + } }, { "type": "string" } ] }, - "dnt": { - "type": "string" - }, - "etag": { - "type": "string" - }, - "expect": { - "type": "string" - }, - "expires": { - "type": "string" - }, - "forwarded": { - "type": "string" - }, - "from": { - "type": "string" - }, - "host": { - "type": "string" - }, - "if-match": { - "type": "string" - }, - "if-modified-since": { - "type": "string" - }, - "if-none-match": { - "type": "string" - }, - "if-range": { - "type": "string" - }, - "if-unmodified-since": { - "type": "string" - }, - "last-modified": { - "type": "string" - }, - "link": { + "fileAssociations": { + "description": "The file associations.", "anyOf": [ { - "items": { - "type": "string" - }, - "type": "array" + "$ref": "#/definitions/FileAssociation" }, { - "type": "string" + "type": "array", + "items": { + "$ref": "#/definitions/FileAssociation" + } } ] }, - "location": { - "type": "string" - }, - "max-forwards": { - "type": "string" - }, - "origin": { - "type": "string" - }, - "pragma": { + "protocols": { + "description": "The URL protocol schemes.", "anyOf": [ { - "items": { - "type": "string" - }, - "type": "array" + "$ref": "#/definitions/Protocol" }, { - "type": "string" + "type": "array", + "items": { + "$ref": "#/definitions/Protocol" + } } ] }, - "proxy-authenticate": { + "electronLanguages": { + "description": "The electron locales to keep. By default, all Electron locales used as-is.", "anyOf": [ { + "type": "array", "items": { "type": "string" - }, - "type": "array" + } }, { "type": "string" } ] }, - "proxy-authorization": { - "type": "string" + "forceCodeSigning": { + "description": "Whether to fail if app will be not code signed.", + "type": "boolean" }, - "public-key-pins": { + "electronUpdaterCompatibility": { + "description": "The [electron-updater compatibility](./auto-update.md#compatibility) semver range.", "type": "string" }, - "public-key-pins-report-only": { - "type": "string" + "publish": { + "$ref": "#/definitions/Publish", + "description": "Publisher configuration. See [Auto Update](./publish.md) for more information." }, - "range": { - "type": "string" + "detectUpdateChannel": { + "description": "Whether to infer update channel from application version pre-release components. e.g. if version `0.12.1-alpha.1`, channel will be set to `alpha`. Otherwise to `latest`.\nThis does *not* apply to github publishing, which will [never auto-detect the update channel](https://github.com/electron-userland/electron-builder/issues/8589).", + "default": true, + "type": "boolean" }, - "referer": { - "type": "string" + "generateUpdatesFilesForAllChannels": { + "description": "Please see [Building and Releasing using Channels](https://github.com/electron-userland/electron-builder/issues/1182#issuecomment-324947139).", + "default": false, + "type": "boolean" }, - "referrer-policy": { - "type": "string" + "releaseInfo": { + "$ref": "#/definitions/ReleaseInfo", + "description": "The release info. Intended for command line usage:\n\n```\n-c.releaseInfo.releaseNotes=\"new features\"\n```" }, - "refresh": { + "cscLink": { "type": "string" }, - "retry-after": { + "cscKeyPassword": { "type": "string" }, - "sec-websocket-accept": { + "defaultArch": { "type": "string" }, - "sec-websocket-extensions": { + "files": { + "description": "A [glob patterns](./file-patterns.md) relative to the [app directory](configuration.md#directories), which specifies which files to include when copying files to create the package.\n\nDefaults to:\n```json\n[\n\"**\\/*\",\n\"!**\\/node_modules/*\\/{CHANGELOG.md,README.md,README,readme.md,readme}\",\n\"!**\\/node_modules/*\\/{test,__tests__,tests,powered-test,example,examples}\",\n\"!**\\/node_modules/*.d.ts\",\n\"!**\\/node_modules/.bin\",\n\"!**\\/*.{iml,o,hprof,orig,pyc,pyo,rbc,swp,csproj,sln,xproj}\",\n\"!.editorconfig\",\n\"!**\\/._*\",\n\"!**\\/{.DS_Store,.git,.hg,.svn,CVS,RCS,SCCS,.gitignore,.gitattributes}\",\n\"!**\\/{__pycache__,thumbs.db,.flowconfig,.idea,.vs,.nyc_output}\",\n\"!**\\/{appveyor.yml,.travis.yml,circle.yml}\",\n\"!**\\/{npm-debug.log,yarn.lock,.yarn-integrity,.yarn-metadata.json}\"\n]\n```\n\nDevelopment dependencies are never copied in any case. You don't need to ignore it explicitly. Hidden files are not ignored by default, but all files that should be ignored, are ignored by default.\n\nDefault pattern \\`**\\/*\\` **is not added to your custom** if some of your patterns is not ignore (i.e. not starts with `!`). `package.json` and \\`**\\/node_modules/**\\/*` (only production dependencies will be copied) is added to your custom in any case. All default ignores are added in any case — you don't need to repeat it if you configure own patterns.\n\nMay be specified in the platform options (e.g. in the [mac](mac.md)).\n\nYou may also specify custom source and destination directories by using `FileSet` objects instead of simple glob patterns.\n\n```json\n[\n{\n\"from\": \"path/to/source\",\n\"to\": \"path/to/destination\",\n\"filter\": [\"**\\/*\", \"!foo/*.js\"]\n}\n]\n```\n\nYou can use [file macros](./file-patterns.md#file-macros) in the `from` and `to` fields as well. `from` and `to` can be files and you can use this to [rename](https://github.com/electron-userland/electron-builder/issues/1119) a file while packaging.", "anyOf": [ { + "$ref": "#/definitions/FileSet" + }, + { + "type": "array", "items": { - "type": "string" - }, - "type": "array" + "anyOf": [ + { + "$ref": "#/definitions/FileSet" + }, + { + "type": "string" + } + ] + } }, { "type": "string" } ] }, - "sec-websocket-key": { - "type": "string" + "extraResources": { + "description": "A [glob patterns](./file-patterns.md) relative to the project directory, when specified, copy the file or directory with matching names directly into the app's resources directory (`Contents/Resources` for MacOS, `resources` for Linux and Windows).\n\nFile patterns (and support for `from` and `to` fields) the same as for [files](#files).", + "anyOf": [ + { + "$ref": "#/definitions/FileSet" + }, + { + "type": "array", + "items": { + "anyOf": [ + { + "$ref": "#/definitions/FileSet" + }, + { + "type": "string" + } + ] + } + }, + { + "type": "string" + } + ] }, - "sec-websocket-protocol": { + "extraFiles": { + "description": "The same as [extraResources](#extraresources) but copy into the app's content directory (`Contents` for MacOS, root directory for Linux and Windows).", "anyOf": [ { + "$ref": "#/definitions/FileSet" + }, + { + "type": "array", "items": { - "type": "string" - }, - "type": "array" + "anyOf": [ + { + "$ref": "#/definitions/FileSet" + }, + { + "type": "string" + } + ] + } }, { "type": "string" } ] + } + }, + "additionalProperties": false + }, + "TargetConfigType": { + "anyOf": [ + { + "$ref": "#/definitions/TargetConfiguration" }, - "sec-websocket-version": { - "type": "string" + { + "type": "array", + "items": { + "anyOf": [ + { + "$ref": "#/definitions/TargetConfiguration" + }, + { + "type": "string" + } + ] + } }, - "server": { + { "type": "string" - }, - "set-cookie": { + } + ] + }, + "WindowsSigntoolConfiguration": { + "type": "object", + "properties": { + "sign": { + "description": "The custom function (or path to file or module id) to sign Windows executables", "anyOf": [ { - "items": { - "type": "string" - }, - "type": "array" + "typeof": "function" }, { "type": "string" } ] }, - "strict-transport-security": { - "type": "string" + "signingHashAlgorithms": { + "description": "Array of signing algorithms used. For AppX `sha256` is always used.", + "default": "['sha1', 'sha256']", + "type": "array", + "items": { + "enum": [ + "sha1", + "sha256" + ], + "type": "string" + } }, - "te": { + "certificateFile": { + "description": "The path to the *.pfx certificate you want to sign with. Please use it only if you cannot use env variable `CSC_LINK` (`WIN_CSC_LINK`) for some reason.\nPlease see [Code Signing](./code-signing.md).", "type": "string" }, - "trailer": { + "certificatePassword": { + "description": "The password to the certificate provided in `certificateFile`. Please use it only if you cannot use env variable `CSC_KEY_PASSWORD` (`WIN_CSC_KEY_PASSWORD`) for some reason.\nPlease see [Code Signing](./code-signing.md).", "type": "string" }, - "transfer-encoding": { + "certificateSubjectName": { + "description": "The name of the subject of the signing certificate, which is often labeled with the field name `issued to`. Required only for EV Code Signing and works only on Windows (or on macOS if [Parallels Desktop](https://www.parallels.com/products/desktop/) Windows 10 virtual machines exits).", "type": "string" }, - "upgrade": { + "certificateSha1": { + "description": "The SHA1 hash of the signing certificate. The SHA1 hash is commonly specified when multiple certificates satisfy the criteria specified by the remaining switches. Works only on Windows (or on macOS if [Parallels Desktop](https://www.parallels.com/products/desktop/) Windows 10 virtual machines exits).", "type": "string" }, - "upgrade-insecure-requests": { + "additionalCertificateFile": { + "description": "The path to an additional certificate file you want to add to the signature block.", "type": "string" }, - "user-agent": { + "rfc3161TimeStampServer": { + "description": "The URL of the RFC 3161 time stamp server.", + "default": "http://timestamp.digicert.com", "type": "string" }, - "vary": { + "timeStampServer": { + "description": "The URL of the time stamp server.", + "default": "http://timestamp.digicert.com", "type": "string" }, - "via": { + "publisherName": { + "description": "[The publisher name](https://github.com/electron-userland/electron-builder/issues/1187#issuecomment-278972073), exactly as in your code signed certificate. Several names can be provided.\nDefaults to common name from your code signing certificate.", "anyOf": [ { + "type": "array", "items": { "type": "string" - }, - "type": "array" + } }, { "type": "string" } ] - }, - "warning": { + } + }, + "additionalProperties": false + }, + "WindowsAzureSigningConfiguration": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "properties": { + "publisherName": { + "description": "[The publisher name](https://github.com/electron-userland/electron-builder/issues/1187#issuecomment-278972073), exactly as in your code signed certificate. Several names can be provided.", "type": "string" }, - "www-authenticate": { - "anyOf": [ - { - "items": { - "type": "string" - }, - "type": "array" - }, - { - "type": "string" - } - ] - }, - "x-content-type-options": { + "endpoint": { + "description": "The Trusted Signing Account endpoint. The URI value must have a URI that aligns to the\nregion your Trusted Signing Account and Certificate Profile you are specifying were created\nin during the setup of these resources.\n\nTranslates to field: Endpoint\n\nRequires one of environment variable configurations for authenticating to Microsoft Entra ID per [Microsoft's documentation](https://learn.microsoft.com/en-us/dotnet/api/azure.identity.environmentcredential?view=azure-dotnet#definition)", "type": "string" }, - "x-dns-prefetch-control": { + "certificateProfileName": { + "description": "The Certificate Profile name. Translates to field: CertificateProfileName", "type": "string" }, - "x-frame-options": { + "codeSigningAccountName": { + "description": "The Code Signing Signing Account name. Translates to field: CodeSigningAccountName", "type": "string" }, - "x-xss-protection": { + "fileDigest": { + "description": "The File Digest for signing each file. Translates to field: FileDigest", + "default": "SHA256", "type": "string" - } - }, - "type": "object" - }, - "PkgBackgroundOptions": { - "additionalProperties": false, - "description": "Options for the background image in a PKG installer", - "properties": { - "alignment": { - "anyOf": [ - { - "enum": [ - "bottom", - "bottomleft", - "bottomright", - "center", - "left", - "right", - "top", - "topleft", - "topright" - ], - "type": "string" - }, - { - "type": "null" - } - ], - "default": "center", - "description": "Alignment of the background image.\nOptions are: center, left, right, top, bottom, topleft, topright, bottomleft, bottomright" }, - "file": { - "description": "Path to the image to use as an installer background.", + "timestampRfc3161": { + "description": "The Timestamp rfc3161 server. Translates to field: TimestampRfc3161", + "default": "http://timestamp.acs.microsoft.com", "type": "string" }, - "scaling": { - "anyOf": [ - { - "enum": [ - "none", - "proportional", - "tofit" - ], - "type": "string" - }, - { - "type": "null" - } - ], - "default": "tofit", - "description": "Scaling of the background image.\nOptions are: tofit, none, proportional" + "timestampDigest": { + "description": "The Timestamp Digest. Translates to field: TimestampDigest", + "default": "SHA256", + "type": "string" } }, - "type": "object" + "required": [ + "certificateProfileName", + "codeSigningAccountName", + "endpoint", + "publisherName" + ] }, - "PkgOptions": { - "additionalProperties": false, - "description": "macOS product archive options.", + "RequestedExecutionLevel": { + "enum": [ + "asInvoker", + "highestAvailable", + "requireAdministrator" + ], + "type": "string" + }, + "NsisOptions": { + "type": "object", "properties": { - "allowAnywhere": { + "oneClick": { + "description": "Whether to create one-click installer or assisted.", "default": true, - "description": "Whether can be installed at the root of any volume, including non-system volumes. Otherwise, it cannot be installed at the root of a volume.\n\nCorresponds to [enable_anywhere](https://developer.apple.com/library/content/documentation/DeveloperTools/Reference/DistributionDefinitionRef/Chapters/Distribution_XML_Ref.html#//apple_ref/doc/uid/TP40005370-CH100-SW70).", - "type": [ - "null", - "boolean" - ] + "type": "boolean" }, - "allowCurrentUserHome": { - "default": true, - "description": "Whether can be installed into the current user’s home directory.\nA home directory installation is done as the current user (not as root), and it cannot write outside of the home directory.\nIf the product cannot be installed in the user’s home directory and be not completely functional from user’s home directory.\n\nCorresponds to [enable_currentUserHome](https://developer.apple.com/library/content/documentation/DeveloperTools/Reference/DistributionDefinitionRef/Chapters/Distribution_XML_Ref.html#//apple_ref/doc/uid/TP40005370-CH100-SW70).", - "type": [ - "null", - "boolean" - ] + "perMachine": { + "description": "Whether to show install mode installer page (choice per-machine or per-user) for assisted installer. Or whether installation always per all users (per-machine).\n\nIf `oneClick` is `true` (default): Whether to install per all users (per-machine).\n\nIf `oneClick` is `false` and `perMachine` is `true`: no install mode installer page, always install per-machine.\n\nIf `oneClick` is `false` and `perMachine` is `false` (default): install mode installer page.", + "default": false, + "type": "boolean" }, - "allowRootDirectory": { + "selectPerMachineByDefault": { + "description": "Whether to set per-machine or per-user installation as default selection on the install mode installer page.", + "default": false, + "type": "boolean" + }, + "allowElevation": { + "description": "*assisted installer only.* Allow requesting for elevation. If false, user will have to restart installer with elevated permissions.", "default": true, - "description": "Whether can be installed into the root directory. Should usually be `true` unless the product can be installed only to the user’s home directory.\n\nCorresponds to [enable_localSystem](https://developer.apple.com/library/content/documentation/DeveloperTools/Reference/DistributionDefinitionRef/Chapters/Distribution_XML_Ref.html#//apple_ref/doc/uid/TP40005370-CH100-SW70).", - "type": [ - "null", - "boolean" - ] + "type": "boolean" }, - "artifactName": { - "description": "The [artifact file name template](./configuration.md#artifact-file-name-template).", - "type": [ - "null", - "string" - ] + "allowToChangeInstallationDirectory": { + "description": "*assisted installer only.* Whether to allow user to change installation directory.", + "default": false, + "type": "boolean" }, - "background": { - "anyOf": [ - { - "$ref": "#/definitions/PkgBackgroundOptions" - }, - { - "type": "null" - } - ], - "description": "Options for the background image for the installer." + "removeDefaultUninstallWelcomePage": { + "description": "*assisted installer only.* remove the default uninstall welcome page.", + "default": false, + "type": "boolean" + }, + "installerIcon": { + "description": "The path to installer icon, relative to the [build resources](./contents.md#extraresources) or to the project directory.\nDefaults to `build/installerIcon.ico` or application icon.", + "type": "string" + }, + "uninstallerIcon": { + "description": "The path to uninstaller icon, relative to the [build resources](./contents.md#extraresources) or to the project directory.\nDefaults to `build/uninstallerIcon.ico` or application icon.", + "type": "string" + }, + "installerHeader": { + "description": "*assisted installer only.* `MUI_HEADERIMAGE`, relative to the [build resources](./contents.md#extraresources) or to the project directory.", + "default": "build/installerHeader.bmp", + "type": "string" + }, + "installerHeaderIcon": { + "description": "*one-click installer only.* The path to header icon (above the progress bar), relative to the [build resources](./contents.md#extraresources) or to the project directory.\nDefaults to `build/installerHeaderIcon.ico` or application icon.", + "type": "string" + }, + "installerSidebar": { + "description": "*assisted installer only.* `MUI_WELCOMEFINISHPAGE_BITMAP`, relative to the [build resources](./contents.md#extraresources) or to the project directory.\nDefaults to `build/installerSidebar.bmp` or `${NSISDIR}\\\\Contrib\\\\Graphics\\\\Wizard\\\\nsis3-metro.bmp`. Image size 164 × 314 pixels.", + "type": "string" + }, + "uninstallerSidebar": { + "description": "*assisted installer only.* `MUI_UNWELCOMEFINISHPAGE_BITMAP`, relative to the [build resources](./contents.md#extraresources) or to the project directory.\nDefaults to `installerSidebar` option or `build/uninstallerSidebar.bmp` or `build/installerSidebar.bmp` or `${NSISDIR}\\\\Contrib\\\\Graphics\\\\Wizard\\\\nsis3-metro.bmp`", + "type": "string" + }, + "uninstallDisplayName": { + "description": "The uninstaller display name in the control panel.", + "default": "${productName} ${version}", + "type": "string" + }, + "uninstallUrlHelp": { + "description": "The URL to the uninstaller help page in the control panel. Defaults to [homepage](./configuration.md#homepage) from application package.json.", + "type": "string" + }, + "uninstallUrlInfoAbout": { + "description": "The URL to the uninstaller info about page in the control panel. Defaults to [homepage](./configuration.md#homepage) from application package.json.", + "type": "string" + }, + "uninstallUrlUpdateInfo": { + "description": "The URL to the uninstaller update info page in the control panel. Defaults to [homepage](./configuration.md#homepage) from application package.json.", + "type": "string" }, - "conclusion": { - "description": "The path to the conclusion file. This may be used to customize the text on the final \"Summary\" page of the installer.", - "type": [ - "null", - "string" - ] + "uninstallUrlReadme": { + "description": "The URL to the uninstaller readme page in the control panel. Defaults to [homepage](./configuration.md#homepage) from application package.json.", + "type": "string" }, - "extraPkgsDir": { - "description": "The extra component packages directory (relative to build resources directory) for MacOS product archive\nAutoscans directory for any `.pkg` files and adds to `productbuild` command as `--package-path` and `--package` accordingly", - "type": [ - "null", - "string" - ] + "include": { + "description": "The path to NSIS include script to customize installer. Defaults to `build/installer.nsh`. See [Custom NSIS script](#custom-nsis-script).", + "type": "string" }, - "hasStrictIdentifier": { - "default": true, - "description": "Require identical bundle identifiers at install path?", - "type": [ - "null", - "boolean" - ] + "script": { + "description": "The path to NSIS script to customize installer. Defaults to `build/installer.nsi`. See [Custom NSIS script](#custom-nsis-script).", + "type": "string" }, - "identity": { - "description": "The name of certificate to use when signing. Consider using environment variables [CSC_LINK or CSC_NAME](./code-signing.md) instead of specifying this option.", - "type": [ - "null", - "string" - ] + "license": { + "description": "The path to EULA license file. Defaults to `license.txt` or `eula.txt` (or uppercase variants). In addition to `txt`, `rtf` and `html` supported (don't forget to use `target=\"_blank\"` for links).\n\nMultiple license files in different languages are supported — use lang postfix (e.g. `_de`, `_ru`). For example, create files `license_de.txt` and `license_en.txt` in the build resources.\nIf OS language is german, `license_de.txt` will be displayed. See map of [language code to name](https://github.com/meikidd/iso-639-1/blob/master/src/data.js).\n\nAppropriate license file will be selected by user OS language.", + "type": "string" }, - "installLocation": { - "default": "/Applications", - "description": "The install location. [Do not use it](https://stackoverflow.com/questions/12863944/how-do-you-specify-a-default-install-location-to-home-with-pkgbuild) to create per-user package.\nMostly never you will need to change this option. `/Applications` would install it as expected into `/Applications` if the local system domain is chosen, or into `$HOME/Applications` if the home installation is chosen.", - "type": [ - "null", - "string" - ] + "artifactName": { + "description": "The [artifact file name template](./configuration.md#artifact-file-name-template). Defaults to `${productName} Setup ${version}.${ext}`.", + "type": "string" }, - "isRelocatable": { - "default": true, - "description": "Install bundle over previous version if moved by user?", - "type": [ - "null", - "boolean" - ] + "deleteAppDataOnUninstall": { + "description": "*one-click installer only.* Whether to delete app data on uninstall.", + "default": false, + "type": "boolean" }, - "isVersionChecked": { - "default": true, - "description": "Don't install bundle if newer version on disk?", - "type": [ - "null", - "boolean" - ] + "differentialPackage": { + "type": "boolean" }, - "license": { - "description": "The path to EULA license file. Defaults to `license.txt` or `eula.txt` (or uppercase variants). In addition to `txt`, `rtf` and `html` supported (don't forget to use `target=\"_blank\"` for links).", - "type": [ - "null", - "string" - ] + "displayLanguageSelector": { + "description": "Whether to display a language selection dialog. Not recommended (by default will be detected using OS language).", + "default": false, + "type": "boolean" }, - "mustClose": { + "installerLanguages": { + "description": "The installer languages (e.g. `en_US`, `de_DE`). Change only if you understand what do you do and for what.", "anyOf": [ { + "type": "array", "items": { "type": "string" - }, - "type": "array" + } }, { - "type": "null" - } - ], - "description": "Identifies applications that must be closed before the package is installed.\n\nCorresponds to [must-close](https://developer.apple.com/library/archive/documentation/DeveloperTools/Reference/DistributionDefinitionRef/Chapters/Distribution_XML_Ref.html#//apple_ref/doc/uid/TP40005370-CH100-SW77)." - }, - "overwriteAction": { - "anyOf": [ - { - "enum": [ - "update", - "upgrade" - ], "type": "string" - }, - { - "type": "null" } - ], - "default": "upgrade", - "description": "Specifies how an existing version of the bundle on disk should be handled when the version in\nthe package is installed.\n\nIf you specify upgrade, the bundle in the package atomi-cally replaces any version on disk;\nthis has the effect of deleting old paths that no longer exist in the new version of\nthe bundle.\n\nIf you specify update, the bundle in the package overwrites the version on disk, and any files\nnot contained in the package will be left intact; this is appropriate when you are delivering\nan update-only package.\n\nAnother effect of update is that the package bundle will not be installed at all if there is\nnot already a version on disk; this allows a package to deliver an update for an app that\nthe user might have deleted." + ] }, - "productbuild": { - "anyOf": [ - { - "items": { - "type": "string" - }, - "type": "array" - }, - { - "type": "null" - } - ], - "description": "should be not documented, only to experiment" + "language": { + "description": "[LCID Dec](https://msdn.microsoft.com/en-au/goglobal/bb964664.aspx), defaults to `1033`(`English - United States`).", + "type": "string" }, - "publish": { + "multiLanguageInstaller": { + "description": "Whether to create multi-language installer. Defaults to `unicode` option value.", + "type": "boolean" + }, + "packElevateHelper": { + "description": "Whether to pack the elevate executable (required for electron-updater if per-machine installer used or can be used in the future). Ignored if `perMachine` is set to `true`.", + "default": true, + "type": "boolean" + }, + "preCompressedFileExtensions": { + "description": "The file extension of files that will be not compressed. Applicable only for `extraResources` and `extraFiles` files.", + "default": [ + ".avi", + ".mov", + ".m4v", + ".mp4", + ".m4p", + ".qt", + ".mkv", + ".webm", + ".vmdk" + ], "anyOf": [ { - "$ref": "#/definitions/GithubOptions" - }, - { - "$ref": "#/definitions/GitlabOptions" - }, - { - "$ref": "#/definitions/S3Options" - }, - { - "$ref": "#/definitions/SpacesOptions" - }, - { - "$ref": "#/definitions/GenericServerOptions" - }, - { - "$ref": "#/definitions/CustomPublishOptions" - }, - { - "$ref": "#/definitions/KeygenOptions" - }, - { - "$ref": "#/definitions/SnapStoreOptions" - }, - { - "$ref": "#/definitions/BitbucketOptions" - }, - { + "type": "array", "items": { - "$ref": "#/definitions/AllPublishOptions" - }, - "type": "array" + "type": "string" + } }, { - "type": [ - "null", - "string" - ] + "type": "string" } ] }, - "scripts": { - "default": "build/pkg-scripts", - "description": "The scripts directory, relative to `build` (build resources directory).\nThe scripts can be in any language so long as the files are marked executable and have the appropriate shebang indicating the path to the interpreter.\nScripts are required to be executable (`chmod +x file`).", - "type": [ - "null", - "string" - ] + "buildUniversalInstaller": { + "description": "Disable building an universal installer of the archs specified in the target configuration\n*Not supported for nsis-web*", + "default": true, + "type": "boolean" }, - "welcome": { - "description": "The path to the welcome file. This may be used to customize the text on the Introduction page of the installer.", - "type": [ - "null", - "string" - ] - } - }, - "type": "object" - }, - "PlugDescriptor": { - "additionalProperties": { - "anyOf": [ - { - "type": "object" - }, - { - "type": "null" - } - ] - }, - "type": "object" - }, - "PortableOptions": { - "additionalProperties": false, - "description": "Portable options.", - "properties": { - "artifactName": { - "description": "The [artifact file name template](./configuration.md#artifact-file-name-template).", - "type": [ - "null", - "string" - ] + "unicode": { + "description": "Whether to create [Unicode installer](http://nsis.sourceforge.net/Docs/Chapter1.html#intro-unicode).", + "default": true, + "type": "boolean" }, - "buildUniversalInstaller": { + "guid": { + "description": "See [GUID vs Application Name](./nsis.md#guid-vs-application-name).", + "type": "string" + }, + "warningsAsErrors": { + "description": "If `warningsAsErrors` is `true` (default): NSIS will treat warnings as errors. If `warningsAsErrors` is `false`: NSIS will allow warnings.", "default": true, - "description": "Disable building an universal installer of the archs specified in the target configuration", + "type": "boolean" + }, + "useZip": { + "default": false, "type": "boolean" }, "customNsisBinary": { - "anyOf": [ - { - "$ref": "#/definitions/CustomNsisBinary" - }, - { - "type": "null" - } - ], + "$ref": "#/definitions/CustomNsisBinary", "description": "Allows you to provide your own `makensis`, such as one with support for debug logging via LogSet and LogText. (Logging also requires option `debugLogging = true`)" }, "customNsisResources": { - "anyOf": [ - { - "$ref": "#/definitions/CustomNsisResources" - }, - { - "type": "null" - } - ], + "$ref": "#/definitions/CustomNsisResources", "description": "Allows you to provide your own `nsis-resources`" }, - "guid": { - "description": "See [GUID vs Application Name](./nsis.md#guid-vs-application-name).", - "type": [ - "null", - "string" - ] - }, - "publish": { - "anyOf": [ - { - "$ref": "#/definitions/GithubOptions" - }, - { - "$ref": "#/definitions/GitlabOptions" - }, - { - "$ref": "#/definitions/S3Options" - }, - { - "$ref": "#/definitions/SpacesOptions" - }, - { - "$ref": "#/definitions/GenericServerOptions" - }, - { - "$ref": "#/definitions/CustomPublishOptions" - }, - { - "$ref": "#/definitions/KeygenOptions" - }, - { - "$ref": "#/definitions/SnapStoreOptions" - }, - { - "$ref": "#/definitions/BitbucketOptions" - }, - { - "items": { - "$ref": "#/definitions/AllPublishOptions" - }, - "type": "array" - }, - { - "type": [ - "null", - "string" - ] - } - ] + "runAfterFinish": { + "description": "Whether to run the installed application after finish. For assisted installer corresponding checkbox will be removed.", + "default": true, + "type": "boolean" }, - "requestExecutionLevel": { - "default": "user", - "description": "The [requested execution level](http://nsis.sourceforge.net/Reference/RequestExecutionLevel) for Windows.", + "createDesktopShortcut": { + "description": "Whether to create desktop shortcut. Set to `always` if to recreate also on reinstall (even if removed by user).", + "default": true, "enum": [ - "admin", - "highest", - "user" - ], - "type": "string" - }, - "splashImage": { - "description": "The image to show while the portable executable is extracting. This image must be a bitmap (`.bmp`) image.", - "type": [ - "null", - "string" + "always", + false, + true ] }, - "unicode": { + "createStartMenuShortcut": { + "description": "Whether to create start menu shortcut.", "default": true, - "description": "Whether to create [Unicode installer](http://nsis.sourceforge.net/Docs/Chapter1.html#intro-unicode).", "type": "boolean" }, - "unpackDirName": { - "description": "The unpack directory for the portable app resources.\n\nIf set to a string, it will be the name in [TEMP](https://www.askvg.com/where-does-windows-store-temporary-files-and-how-to-change-temp-folder-location/) directory\nIf set explicitly to `false`, it will use the Windows temp directory ($PLUGINSDIR) that is unique to each launch of the portable application.\n\nDefaults to [uuid](https://github.com/segmentio/ksuid) of build (changed on each build of portable executable).", + "menuCategory": { + "description": "Whether to create submenu for start menu shortcut and program files directory. If `true`, company name will be used. Or string value.", + "default": false, "type": [ "string", "boolean" ] }, - "useZip": { - "default": false, - "type": "boolean" + "shortcutName": { + "description": "The name that will be used for all shortcuts. Defaults to the application name.", + "type": "string" }, - "warningsAsErrors": { - "default": true, - "description": "If `warningsAsErrors` is `true` (default): NSIS will treat warnings as errors. If `warningsAsErrors` is `false`: NSIS will allow warnings.", - "type": "boolean" + "publish": { + "$ref": "#/definitions/Publish" } }, - "type": "object" + "additionalProperties": false }, - "Protocol": { - "additionalProperties": false, - "description": "URL Protocol Schemes. Protocols to associate the app with. macOS only.\n\nPlease note — on macOS [you need to register an `open-url` event handler](http://electron.atom.io/docs/api/app/#event-open-url-macos).", + "CustomNsisBinary": { + "type": "object", "properties": { - "name": { - "description": "The name. e.g. `IRC server URL`.", + "url": { + "default": "https://github.com/electron-userland/electron-builder-binaries/releases/download/nsis-3.0.4.1/nsis-3.0.4.1.7z", "type": "string" }, - "role": { - "default": "Editor", - "description": "*macOS-only* The app’s role with respect to the type.", - "enum": [ - "Editor", - "None", - "Shell", - "Viewer" - ], + "checksum": { + "default": "VKMiizYdmNdJOWpRGz4trl4lD++BvYP2irAXpMilheUP0pc93iKlWAoP843Vlraj8YG19CVn0j+dCo/hURz9+Q==", "type": "string" }, - "schemes": { - "description": "The schemes. e.g. `[\"irc\", \"ircs\"]`.", - "items": { - "type": "string" - }, - "type": "array" + "version": { + "default": "3.0.4.1", + "type": "string" + }, + "debugLogging": { + "description": "Whether or not to enable NSIS logging for debugging.\nNote: Requires a debug-enabled NSIS build.\nelectron-builder's included `makensis` does not natively support debug-enabled NSIS installers currently, you must supply your own via `customNsisBinary?: CustomNsisBinary`\nIn your custom nsis scripts, you can leverage this functionality via `LogSet` and `LogText`", + "type": "boolean" } }, + "additionalProperties": false, "required": [ - "name", - "schemes" - ], - "type": "object" + "url" + ] }, - "ReleaseInfo": { - "additionalProperties": false, + "CustomNsisResources": { + "type": "object", "properties": { - "releaseDate": { - "description": "The release date.", + "url": { + "default": "https://github.com/electron-userland/electron-builder-binaries/releases/download/nsis-resources-3.4.1/nsis-resources-3.4.1.7z", "type": "string" }, - "releaseName": { - "description": "The release name.", - "type": [ - "null", - "string" - ] - }, - "releaseNotes": { - "description": "The release notes.", - "type": [ - "null", - "string" - ] - }, - "releaseNotesFile": { - "description": "The path to release notes file. Defaults to `release-notes-${platform}.md` (where `platform` it is current platform — `mac`, `linux` or `windows`) or `release-notes.md` in the [build resources](./contents.md#extraresources).", - "type": [ - "null", - "string" - ] + "checksum": { + "default": "Dqd6g+2buwwvoG1Vyf6BHR1b+25QMmPcwZx40atOT57gH27rkjOei1L0JTldxZu4NFoEmW4kJgZ3DlSWVON3+Q==", + "type": "string" }, - "vendor": { - "anyOf": [ - { - "typeof": "function" - }, - { - "type": "null" - } - ], - "description": "Vendor specific information." + "version": { + "default": "3.4.1", + "type": "string" } }, - "type": "object" - }, - "S3Options": { "additionalProperties": false, - "description": "[Amazon S3](https://aws.amazon.com/s3/) options.\nAWS credentials are required, please see [getting your credentials](http://docs.aws.amazon.com/sdk-for-javascript/v2/developer-guide/getting-your-credentials.html).\nTo set credentials define `AWS_ACCESS_KEY_ID` and `AWS_SECRET_ACCESS_KEY` [environment variables](http://docs.aws.amazon.com/sdk-for-javascript/v2/developer-guide/loading-node-credentials-environment.html) directly,\nor use [~/.aws/credentials](http://docs.aws.amazon.com/sdk-for-javascript/v2/developer-guide/loading-node-credentials-shared.html) file,\nor use [~/.aws/config](https://docs.aws.amazon.com/sdkref/latest/guide/file-format.html) file. For the last method to work you will also need to define `AWS_SDK_LOAD_CONFIG=1` environment variable.\n\nExample configuration:\n\n```json\n{\n\"build\":\n \"publish\": {\n \"provider\": \"s3\",\n \"bucket\": \"bucket-name\"\n }\n}\n}\n```", + "required": [ + "checksum", + "url", + "version" + ] + }, + "NsisWebOptions": { + "description": "Web Installer options.", + "type": "object", "properties": { - "accelerate": { - "description": "If set to true, this will enable the s3 accelerated endpoint\nThese endpoints have a particular format of:\n ${bucketname}.s3-accelerate.amazonaws.com", + "appPackageUrl": { + "description": "The application package download URL. Optional — by default computed using publish configuration.\n\nURL like `https://example.com/download/latest` allows web installer to be version independent (installer will download latest application package).\nPlease note — it is [full URL](https://github.com/electron-userland/electron-builder/issues/1810#issuecomment-317650878).\n\nCustom `X-Arch` http header is set to `32` or `64`.", + "type": "string" + }, + "artifactName": { + "description": "The [artifact file name template](./configuration.md#artifact-file-name-template). Defaults to `${productName} Web Setup ${version}.${ext}`.", + "type": "string" + }, + "buildUniversalInstaller": { + "description": "Override for `NsisOptions.buildUniversalInstaller`. nsis-web requires universal installer", + "default": true, + "type": "boolean", + "const": true + }, + "oneClick": { + "description": "Whether to create one-click installer or assisted.", + "default": true, "type": "boolean" }, - "acl": { - "anyOf": [ - { - "enum": [ - "private", - "public-read" - ], - "type": "string" - }, - { - "type": "null" - } - ], - "default": "public-read", - "description": "The ACL. Set to `null` to not [add](https://github.com/electron-userland/electron-builder/issues/1822).\n\nPlease see [required permissions for the S3 provider](https://github.com/electron-userland/electron-builder/issues/1618#issuecomment-314679128)." + "perMachine": { + "description": "Whether to show install mode installer page (choice per-machine or per-user) for assisted installer. Or whether installation always per all users (per-machine).\n\nIf `oneClick` is `true` (default): Whether to install per all users (per-machine).\n\nIf `oneClick` is `false` and `perMachine` is `true`: no install mode installer page, always install per-machine.\n\nIf `oneClick` is `false` and `perMachine` is `false` (default): install mode installer page.", + "default": false, + "type": "boolean" }, - "bucket": { - "description": "The bucket name.", + "selectPerMachineByDefault": { + "description": "Whether to set per-machine or per-user installation as default selection on the install mode installer page.", + "default": false, + "type": "boolean" + }, + "allowElevation": { + "description": "*assisted installer only.* Allow requesting for elevation. If false, user will have to restart installer with elevated permissions.", + "default": true, + "type": "boolean" + }, + "allowToChangeInstallationDirectory": { + "description": "*assisted installer only.* Whether to allow user to change installation directory.", + "default": false, + "type": "boolean" + }, + "removeDefaultUninstallWelcomePage": { + "description": "*assisted installer only.* remove the default uninstall welcome page.", + "default": false, + "type": "boolean" + }, + "installerIcon": { + "description": "The path to installer icon, relative to the [build resources](./contents.md#extraresources) or to the project directory.\nDefaults to `build/installerIcon.ico` or application icon.", "type": "string" }, - "channel": { - "default": "latest", - "description": "The update channel.", - "type": [ - "null", - "string" - ] + "uninstallerIcon": { + "description": "The path to uninstaller icon, relative to the [build resources](./contents.md#extraresources) or to the project directory.\nDefaults to `build/uninstallerIcon.ico` or application icon.", + "type": "string" }, - "encryption": { - "anyOf": [ - { - "enum": [ - "AES256", - "aws:kms" - ], - "type": "string" - }, - { - "type": "null" - } - ], - "description": "Server-side encryption algorithm to use for the object." + "installerHeader": { + "description": "*assisted installer only.* `MUI_HEADERIMAGE`, relative to the [build resources](./contents.md#extraresources) or to the project directory.", + "default": "build/installerHeader.bmp", + "type": "string" }, - "endpoint": { - "description": "The endpoint URI to send requests to. The default endpoint is built from the configured region.\nThe endpoint should be a string like `https://{service}.{region}.amazonaws.com`.", - "type": [ - "null", - "string" - ] + "installerHeaderIcon": { + "description": "*one-click installer only.* The path to header icon (above the progress bar), relative to the [build resources](./contents.md#extraresources) or to the project directory.\nDefaults to `build/installerHeaderIcon.ico` or application icon.", + "type": "string" }, - "forcePathStyle": { - "description": "When true, force a path-style endpoint to be used where the bucket name is part of the path.\n[Path-style Access](https://docs.aws.amazon.com/AmazonS3/latest/userguide/VirtualHosting.html#path-style-access)", + "installerSidebar": { + "description": "*assisted installer only.* `MUI_WELCOMEFINISHPAGE_BITMAP`, relative to the [build resources](./contents.md#extraresources) or to the project directory.\nDefaults to `build/installerSidebar.bmp` or `${NSISDIR}\\\\Contrib\\\\Graphics\\\\Wizard\\\\nsis3-metro.bmp`. Image size 164 × 314 pixels.", + "type": "string" + }, + "uninstallerSidebar": { + "description": "*assisted installer only.* `MUI_UNWELCOMEFINISHPAGE_BITMAP`, relative to the [build resources](./contents.md#extraresources) or to the project directory.\nDefaults to `installerSidebar` option or `build/uninstallerSidebar.bmp` or `build/installerSidebar.bmp` or `${NSISDIR}\\\\Contrib\\\\Graphics\\\\Wizard\\\\nsis3-metro.bmp`", + "type": "string" + }, + "uninstallDisplayName": { + "description": "The uninstaller display name in the control panel.", + "default": "${productName} ${version}", + "type": "string" + }, + "uninstallUrlHelp": { + "description": "The URL to the uninstaller help page in the control panel. Defaults to [homepage](./configuration.md#homepage) from application package.json.", + "type": "string" + }, + "uninstallUrlInfoAbout": { + "description": "The URL to the uninstaller info about page in the control panel. Defaults to [homepage](./configuration.md#homepage) from application package.json.", + "type": "string" + }, + "uninstallUrlUpdateInfo": { + "description": "The URL to the uninstaller update info page in the control panel. Defaults to [homepage](./configuration.md#homepage) from application package.json.", + "type": "string" + }, + "uninstallUrlReadme": { + "description": "The URL to the uninstaller readme page in the control panel. Defaults to [homepage](./configuration.md#homepage) from application package.json.", + "type": "string" + }, + "include": { + "description": "The path to NSIS include script to customize installer. Defaults to `build/installer.nsh`. See [Custom NSIS script](#custom-nsis-script).", + "type": "string" + }, + "script": { + "description": "The path to NSIS script to customize installer. Defaults to `build/installer.nsi`. See [Custom NSIS script](#custom-nsis-script).", + "type": "string" + }, + "license": { + "description": "The path to EULA license file. Defaults to `license.txt` or `eula.txt` (or uppercase variants). In addition to `txt`, `rtf` and `html` supported (don't forget to use `target=\"_blank\"` for links).\n\nMultiple license files in different languages are supported — use lang postfix (e.g. `_de`, `_ru`). For example, create files `license_de.txt` and `license_en.txt` in the build resources.\nIf OS language is german, `license_de.txt` will be displayed. See map of [language code to name](https://github.com/meikidd/iso-639-1/blob/master/src/data.js).\n\nAppropriate license file will be selected by user OS language.", + "type": "string" + }, + "deleteAppDataOnUninstall": { + "description": "*one-click installer only.* Whether to delete app data on uninstall.", + "default": false, "type": "boolean" }, - "path": { - "default": "/", - "description": "The directory path.", - "type": [ - "null", - "string" + "differentialPackage": { + "type": "boolean" + }, + "displayLanguageSelector": { + "description": "Whether to display a language selection dialog. Not recommended (by default will be detected using OS language).", + "default": false, + "type": "boolean" + }, + "installerLanguages": { + "description": "The installer languages (e.g. `en_US`, `de_DE`). Change only if you understand what do you do and for what.", + "anyOf": [ + { + "type": "array", + "items": { + "type": "string" + } + }, + { + "type": "string" + } ] }, - "provider": { - "const": "s3", - "description": "The provider. Must be `s3`.", + "language": { + "description": "[LCID Dec](https://msdn.microsoft.com/en-au/goglobal/bb964664.aspx), defaults to `1033`(`English - United States`).", "type": "string" }, - "publishAutoUpdate": { + "multiLanguageInstaller": { + "description": "Whether to create multi-language installer. Defaults to `unicode` option value.", + "type": "boolean" + }, + "packElevateHelper": { + "description": "Whether to pack the elevate executable (required for electron-updater if per-machine installer used or can be used in the future). Ignored if `perMachine` is set to `true`.", "default": true, - "description": "Whether to publish auto update info files.\n\nAuto update relies only on the first provider in the list (you can specify several publishers).\nThus, probably, there`s no need to upload the metadata files for the other configured providers. But by default will be uploaded.", "type": "boolean" }, - "publisherName": { + "preCompressedFileExtensions": { + "description": "The file extension of files that will be not compressed. Applicable only for `extraResources` and `extraFiles` files.", + "default": [ + ".avi", + ".mov", + ".m4v", + ".mp4", + ".m4p", + ".qt", + ".mkv", + ".webm", + ".vmdk" + ], "anyOf": [ { + "type": "array", "items": { "type": "string" - }, - "type": "array" + } }, { - "type": "null" + "type": "string" } ] }, - "region": { - "description": "The region. Is determined and set automatically when publishing.", - "type": [ - "null", - "string" - ] + "unicode": { + "description": "Whether to create [Unicode installer](http://nsis.sourceforge.net/Docs/Chapter1.html#intro-unicode).", + "default": true, + "type": "boolean" }, - "requestHeaders": { - "$ref": "#/definitions/OutgoingHttpHeaders", - "description": "Any custom request headers" + "guid": { + "description": "See [GUID vs Application Name](./nsis.md#guid-vs-application-name).", + "type": "string" }, - "storageClass": { - "anyOf": [ - { - "enum": [ - "REDUCED_REDUNDANCY", - "STANDARD", - "STANDARD_IA" - ], - "type": "string" - }, - { - "type": "null" - } - ], - "default": "STANDARD", - "description": "The type of storage to use for the object." + "warningsAsErrors": { + "description": "If `warningsAsErrors` is `true` (default): NSIS will treat warnings as errors. If `warningsAsErrors` is `false`: NSIS will allow warnings.", + "default": true, + "type": "boolean" }, - "timeout": { - "default": 120000, - "description": "Request timeout in milliseconds. (Default is 2 minutes; O is ignored)", - "type": [ - "null", - "number" + "useZip": { + "default": false, + "type": "boolean" + }, + "customNsisBinary": { + "$ref": "#/definitions/CustomNsisBinary", + "description": "Allows you to provide your own `makensis`, such as one with support for debug logging via LogSet and LogText. (Logging also requires option `debugLogging = true`)" + }, + "customNsisResources": { + "$ref": "#/definitions/CustomNsisResources", + "description": "Allows you to provide your own `nsis-resources`" + }, + "runAfterFinish": { + "description": "Whether to run the installed application after finish. For assisted installer corresponding checkbox will be removed.", + "default": true, + "type": "boolean" + }, + "createDesktopShortcut": { + "description": "Whether to create desktop shortcut. Set to `always` if to recreate also on reinstall (even if removed by user).", + "default": true, + "enum": [ + "always", + false, + true ] }, - "updaterCacheDirName": { + "createStartMenuShortcut": { + "description": "Whether to create start menu shortcut.", + "default": true, + "type": "boolean" + }, + "menuCategory": { + "description": "Whether to create submenu for start menu shortcut and program files directory. If `true`, company name will be used. Or string value.", + "default": false, "type": [ - "null", - "string" + "string", + "boolean" ] + }, + "shortcutName": { + "description": "The name that will be used for all shortcuts. Defaults to the application name.", + "type": "string" + }, + "publish": { + "$ref": "#/definitions/Publish" } }, - "required": [ - "bucket", - "provider" - ], - "type": "object" - }, - "SlotDescriptor": { - "additionalProperties": { - "anyOf": [ - { - "typeof": "function" - }, - { - "type": "null" - } - ] - }, - "type": "object" + "additionalProperties": false }, - "SnapOptions": { - "additionalProperties": false, + "PortableOptions": { + "description": "Portable options.", + "type": "object", "properties": { - "after": { - "anyOf": [ - { - "items": { - "type": "string" - }, - "type": "array" - }, - { - "type": "null" - } + "requestExecutionLevel": { + "description": "The [requested execution level](http://nsis.sourceforge.net/Reference/RequestExecutionLevel) for Windows.", + "default": "user", + "enum": [ + "admin", + "highest", + "user" ], - "description": "Specifies any [parts](https://snapcraft.io/docs/reference/parts) that should be built before this part.\nDefaults to `[\"desktop-gtk2\"\"]`.\n\nIf list contains `default`, it will be replaced to default list, so, `[\"default\", \"foo\"]` can be used to add custom parts `foo` in addition to defaults." + "type": "string" }, - "allowNativeWayland": { - "description": "Allow running the program with native wayland support with --ozone-platform=wayland.\nDisabled by default because of this issue in older Electron/Snap versions: https://github.com/electron-userland/electron-builder/issues/4007", + "unpackDirName": { + "description": "The unpack directory for the portable app resources.\n\nIf set to a string, it will be the name in [TEMP](https://www.askvg.com/where-does-windows-store-temporary-files-and-how-to-change-temp-folder-location/) directory\nIf set explicitly to `false`, it will use the Windows temp directory ($PLUGINSDIR) that is unique to each launch of the portable application.\n\nDefaults to [uuid](https://github.com/segmentio/ksuid) of build (changed on each build of portable executable).", "type": [ - "null", + "string", "boolean" ] }, - "appPartStage": { - "anyOf": [ - { - "items": { - "type": "string" - }, - "type": "array" - }, - { - "type": "null" - } - ], - "description": "Specifies which files from the app part to stage and which to exclude. Individual files, directories, wildcards, globstars, and exclusions are accepted. See [Snapcraft filesets](https://snapcraft.io/docs/snapcraft-filesets) to learn more about the format.\n\nThe defaults can be found in [snap.ts](https://github.com/electron-userland/electron-builder/blob/master/packages/app-builder-lib/templates/snap/snapcraft.yaml#L29)." + "splashImage": { + "description": "The image to show while the portable executable is extracting. This image must be a bitmap (`.bmp`) image.", + "type": "string" + }, + "buildUniversalInstaller": { + "description": "Disable building an universal installer of the archs specified in the target configuration", + "default": true, + "type": "boolean" }, "artifactName": { "description": "The [artifact file name template](./configuration.md#artifact-file-name-template).", - "type": [ - "null", - "string" - ] + "type": "string" }, - "assumes": { - "anyOf": [ - { - "items": { - "type": "string" - }, - "type": "array" - }, - { - "type": [ - "null", - "string" - ] - } - ], - "description": "The list of features that must be supported by the core in order for this snap to install." + "publish": { + "$ref": "#/definitions/Publish" }, - "autoStart": { - "default": false, - "description": "Whether or not the snap should automatically start on login.", + "unicode": { + "description": "Whether to create [Unicode installer](http://nsis.sourceforge.net/Docs/Chapter1.html#intro-unicode).", + "default": true, "type": "boolean" }, - "base": { - "description": "A snap of type base to be used as the execution environment for this snap. Examples: `core`, `core18`, `core20`, `core22`. Defaults to `core20`", - "type": [ - "null", - "string" - ] + "guid": { + "description": "See [GUID vs Application Name](./nsis.md#guid-vs-application-name).", + "type": "string" }, - "buildPackages": { - "anyOf": [ - { - "items": { - "type": "string" - }, - "type": "array" - }, - { - "type": "null" - } - ], - "description": "The list of debian packages needs to be installed for building this snap." + "warningsAsErrors": { + "description": "If `warningsAsErrors` is `true` (default): NSIS will treat warnings as errors. If `warningsAsErrors` is `false`: NSIS will allow warnings.", + "default": true, + "type": "boolean" }, - "category": { - "description": "The [application category](https://specifications.freedesktop.org/menu-spec/latest/apa.html#main-category-registry).", - "type": [ - "null", - "string" - ] + "useZip": { + "default": false, + "type": "boolean" }, - "compression": { - "anyOf": [ - { - "enum": [ - "lzo", - "xz" - ], - "type": "string" - }, - { - "type": "null" - } - ], - "description": "Sets the compression type for the snap. Can be xz, lzo, or null." + "customNsisBinary": { + "$ref": "#/definitions/CustomNsisBinary", + "description": "Allows you to provide your own `makensis`, such as one with support for debug logging via LogSet and LogText. (Logging also requires option `debugLogging = true`)" }, - "confinement": { - "anyOf": [ - { - "enum": [ - "classic", - "devmode", - "strict" - ], - "type": "string" - }, - { - "type": "null" - } - ], - "default": "strict", - "description": "The type of [confinement](https://snapcraft.io/docs/reference/confinement) supported by the snap." + "customNsisResources": { + "$ref": "#/definitions/CustomNsisResources", + "description": "Allows you to provide your own `nsis-resources`" + } + }, + "additionalProperties": false + }, + "AppXOptions": { + "type": "object", + "properties": { + "applicationId": { + "description": "The application id. Defaults to `identityName`. This string contains alpha-numeric fields separated by periods. Each field must begin with an ASCII alphabetic character.", + "type": "string" }, - "description": { - "description": "As [description](./configuration.md#description) from application package.json, but allows you to specify different for Linux.", - "type": [ - "null", - "string" - ] + "backgroundColor": { + "description": "The background color of the app tile. See [Visual Elements](https://msdn.microsoft.com/en-us/library/windows/apps/br211471.aspx).", + "default": "#464646", + "type": "string" + }, + "displayName": { + "description": "A friendly name that can be displayed to users. Corresponds to [Properties.DisplayName](https://msdn.microsoft.com/en-us/library/windows/apps/br211432.aspx).\nDefaults to the application product name.", + "type": "string" + }, + "identityName": { + "description": "The name. Corresponds to [Identity.Name](https://msdn.microsoft.com/en-us/library/windows/apps/br211441.aspx). Defaults to the [application name](./configuration.md#metadata).", + "type": "string" }, - "desktop": { - "anyOf": [ - { - "$ref": "#/definitions/LinuxDesktopFile" - }, - { - "type": "null" - } - ], - "description": "The [Desktop file](https://developer.gnome.org/documentation/guidelines/maintainer/integrating.html#desktop-files)" + "publisher": { + "description": "The Windows Store publisher. Not used if AppX is build for testing. See [AppX Package Code Signing](#appx-package-code-signing) below.", + "type": "string" }, - "environment": { - "anyOf": [ - { - "additionalProperties": { - "type": "string" - }, - "type": "object" - }, - { - "type": "null" - } - ], - "description": "The custom environment. Defaults to `{\"TMPDIR: \"$XDG_RUNTIME_DIR\"}`. If you set custom, it will be merged with default." + "publisherDisplayName": { + "description": "A friendly name for the publisher that can be displayed to users. Corresponds to [Properties.PublisherDisplayName](https://msdn.microsoft.com/en-us/library/windows/apps/br211460.aspx).\nDefaults to company name from the application metadata.", + "type": "string" }, - "executableArgs": { + "languages": { + "description": "The list of [supported languages](https://docs.microsoft.com/en-us/windows/uwp/globalizing/manage-language-and-region#specify-the-supported-languages-in-the-apps-manifest) that will be listed in the Windows Store.\nThe first entry (index 0) will be the default language.\nDefaults to en-US if omitted.", "anyOf": [ { + "type": "array", "items": { "type": "string" - }, - "type": "array" + } }, { - "type": "null" - } - ], - "description": "The executable parameters. Pass to executableName" - }, - "grade": { - "anyOf": [ - { - "enum": [ - "devel", - "stable" - ], "type": "string" - }, - { - "type": "null" } - ], - "default": "stable", - "description": "The quality grade of the snap. It can be either `devel` (i.e. a development version of the snap, so not to be published to the “stable” or “candidate” channels) or “stable” (i.e. a stable release or release candidate, which can be released to all channels)." - }, - "hooks": { - "default": "build/snap-hooks", - "description": "The [hooks](https://docs.snapcraft.io/build-snaps/hooks) directory, relative to `build` (build resources directory).", - "type": [ - "null", - "string" ] }, - "layout": { - "anyOf": [ - { - "typeof": "function" - }, - { - "type": "null" - } - ], - "description": "Specifies any files to make accessible from locations such as `/usr`, `/var`, and `/etc`. See [snap layouts](https://snapcraft.io/docs/snap-layouts) to learn more." + "addAutoLaunchExtension": { + "description": "Whether to add auto launch extension. Defaults to `true` if [electron-winstore-auto-launch](https://github.com/felixrieseberg/electron-winstore-auto-launch) in the dependencies.", + "type": "boolean" }, - "mimeTypes": { - "anyOf": [ - { - "items": { - "type": "string" - }, - "type": "array" - }, - { - "type": "null" - } - ], - "description": "The mime types in addition to specified in the file associations. Use it if you don't want to register a new mime type, but reuse existing." + "customExtensionsPath": { + "description": "Relative path to custom extensions xml to be included in an `appmanifest.xml`.", + "type": "string" }, - "plugs": { - "anyOf": [ - { - "$ref": "#/definitions/PlugDescriptor" - }, - { - "items": { - "anyOf": [ - { - "$ref": "#/definitions/PlugDescriptor" - }, - { - "type": "string" - } - ] - }, - "type": "array" - }, - { - "type": "null" - } - ], - "description": "The list of [plugs](https://snapcraft.io/docs/reference/interfaces).\nDefaults to `[\"desktop\", \"desktop-legacy\", \"home\", \"x11\", \"wayland\", \"unity7\", \"browser-support\", \"network\", \"gsettings\", \"audio-playback\", \"pulseaudio\", \"opengl\"]`.\n\nIf list contains `default`, it will be replaced to default list, so, `[\"default\", \"foo\"]` can be used to add custom plug `foo` in addition to defaults.\n\nAdditional attributes can be specified using object instead of just name of plug:\n```\n[\n {\n \"browser-sandbox\": {\n \"interface\": \"browser-support\",\n \"allow-sandbox\": true\n },\n },\n \"another-simple-plug-name\"\n]\n```" + "customManifestPath": { + "description": "(Advanced Option) Relative path to custom `appmanifest.xml` (file name doesn't matter, it'll be renamed) located in build resources directory.\nSupports the following template macros:\n\n- ${publisher}\n- ${publisherDisplayName}\n- ${version}\n- ${applicationId}\n- ${identityName}\n- ${executable}\n- ${displayName}\n- ${description}\n- ${backgroundColor}\n- ${logo}\n- ${square150x150Logo}\n- ${square44x44Logo}\n- ${lockScreen}\n- ${defaultTile}\n- ${splashScreen}\n- ${arch}\n- ${resourceLanguages}\n- ${extensions}\n- ${minVersion}\n- ${maxVersionTested}", + "type": "string" }, - "publish": { - "anyOf": [ - { - "$ref": "#/definitions/GithubOptions" - }, - { - "$ref": "#/definitions/GitlabOptions" - }, - { - "$ref": "#/definitions/S3Options" - }, - { - "$ref": "#/definitions/SpacesOptions" - }, - { - "$ref": "#/definitions/GenericServerOptions" - }, - { - "$ref": "#/definitions/CustomPublishOptions" - }, - { - "$ref": "#/definitions/KeygenOptions" - }, - { - "$ref": "#/definitions/SnapStoreOptions" - }, - { - "$ref": "#/definitions/BitbucketOptions" - }, - { - "items": { - "$ref": "#/definitions/AllPublishOptions" - }, - "type": "array" - }, - { - "type": [ - "null", - "string" - ] - } - ] + "showNameOnTiles": { + "description": "Whether to overlay the app's name on top of tile images on the Start screen. Defaults to `false`. (https://docs.microsoft.com/en-us/uwp/schemas/appxpackage/uapmanifestschema/element-uap-shownameontiles) in the dependencies.", + "default": false, + "type": "boolean" }, - "slots": { - "anyOf": [ - { - "$ref": "#/definitions/PlugDescriptor" - }, - { - "items": { - "anyOf": [ - { - "$ref": "#/definitions/SlotDescriptor" - }, - { - "type": "string" - } - ] - }, - "type": "array" - }, - { - "type": "null" - } - ], - "description": "The list of [slots](https://snapcraft.io/docs/reference/interfaces).\n\nAdditional attributes can be specified using object instead of just name of slot:\n```\n[\n {\n \"mpris\": {\n \"name\": \"chromium\"\n },\n }\n]\n\nIn case you want your application to be a compliant MPris player, you will need to definie\nThe mpris slot with \"chromium\" name.\nThis electron has it [hardcoded](https://source.chromium.org/chromium/chromium/src/+/master:components/system_media_controls/linux/system_media_controls_linux.cc;l=51;bpv=0;bpt=1),\nand we need to pass this name so snap [will allow it](https://forum.snapcraft.io/t/unable-to-use-mpris-interface/15360/7) in strict confinement." + "electronUpdaterAware": { + "default": false, + "type": "boolean" }, - "stagePackages": { - "anyOf": [ - { - "items": { - "type": "string" - }, - "type": "array" - }, - { - "type": "null" - } - ], - "description": "The list of Ubuntu packages to use that are needed to support the `app` part creation. Like `depends` for `deb`.\nDefaults to `[\"libnspr4\", \"libnss3\", \"libxss1\", \"libappindicator3-1\", \"libsecret-1-0\"]`.\n\nIf list contains `default`, it will be replaced to default list, so, `[\"default\", \"foo\"]` can be used to add custom package `foo` in addition to defaults." + "setBuildNumber": { + "description": "Whether to set build number. See https://github.com/electron-userland/electron-builder/issues/3875", + "default": false, + "type": "boolean" }, - "summary": { - "description": "The 78 character long summary. Defaults to [productName](./configuration.md#productName).", - "type": [ - "null", - "string" - ] + "minVersion": { + "description": "Set the MinVersion field in the appx manifest.xml", + "default": "arch === Arch.arm64 ? \"10.0.16299.0\" : \"10.0.14316.0\"", + "type": "string" }, - "synopsis": { - "description": "The [short description](https://www.debian.org/doc/debian-policy/ch-controlfields.html#s-f-Description).", - "type": [ - "null", - "string" - ] + "maxVersionTested": { + "description": "Set the `MaxVersionTested` field in the appx manifest.xml", + "default": "arch === Arch.arm64 ? \"10.0.16299.0\" : \"10.0.14316.0\"", + "type": "string" }, - "title": { - "description": "An optional title for the snap, may contain uppercase letters and spaces. Defaults to `productName`. See [snap format documentation](https://snapcraft.io/docs/snap-format).", - "type": [ - "null", - "string" - ] + "makeappxArgs": { + "type": "array", + "items": { + "type": "string" + } }, - "useTemplateApp": { - "description": "Whether to use template snap. Defaults to `true` if `stagePackages` not specified.", - "type": "boolean" + "artifactName": { + "description": "The [artifact file name template](./configuration.md#artifact-file-name-template).", + "type": "string" + }, + "publish": { + "$ref": "#/definitions/Publish" } }, - "type": "object" + "additionalProperties": false }, - "SnapStoreOptions": { - "additionalProperties": false, - "description": "[Snap Store](https://snapcraft.io/) options. To publish directly to Snapcraft, see Snapcraft authentication options for local or CI/CD authentication options.", + "MsiOptions": { + "type": "object", "properties": { - "channels": { - "anyOf": [ - { - "items": { - "type": "string" - }, - "type": "array" - }, - { - "type": [ - "null", - "string" - ] - } - ], - "default": [ - "edge" - ], - "description": "The list of channels the snap would be released." + "oneClick": { + "description": "One-click installation.", + "default": true, + "type": "boolean" }, - "provider": { - "const": "snapStore", - "description": "The provider. Must be `snapStore`.", + "upgradeCode": { + "description": "The [upgrade code](https://msdn.microsoft.com/en-us/library/windows/desktop/aa372375(v=vs.85).aspx). Optional, by default generated using app id.", "type": "string" }, - "publishAutoUpdate": { + "warningsAsErrors": { + "description": "If `warningsAsErrors` is `true` (default): treat warnings as errors. If `warningsAsErrors` is `false`: allow warnings.", "default": true, - "description": "Whether to publish auto update info files.\n\nAuto update relies only on the first provider in the list (you can specify several publishers).\nThus, probably, there`s no need to upload the metadata files for the other configured providers. But by default will be uploaded.", "type": "boolean" }, - "publisherName": { - "anyOf": [ - { - "items": { - "type": "string" - }, - "type": "array" - }, - { - "type": "null" - } + "additionalWixArgs": { + "description": "Any additional arguments to be passed to the WiX installer compiler, such as `[\"-ext\", \"WixUtilExtension\"]`", + "type": "array", + "items": { + "type": "string" + } + }, + "additionalLightArgs": { + "description": "Any additional arguments to be passed to the light.ext, such as `[\"-cultures:ja-jp\"]`", + "type": "array", + "items": { + "type": "string" + } + }, + "perMachine": { + "description": "Whether to install per all users (per-machine).", + "default": false, + "type": "boolean" + }, + "runAfterFinish": { + "description": "Whether to run the installed application after finish. For assisted installer corresponding checkbox will be removed.", + "default": true, + "type": "boolean" + }, + "createDesktopShortcut": { + "description": "Whether to create desktop shortcut. Set to `always` if to recreate also on reinstall (even if removed by user).", + "default": true, + "enum": [ + "always", + false, + true ] }, - "repo": { - "description": "snapcraft repo name", - "type": "string" - }, - "requestHeaders": { - "$ref": "#/definitions/OutgoingHttpHeaders", - "description": "Any custom request headers" + "createStartMenuShortcut": { + "description": "Whether to create start menu shortcut.", + "default": true, + "type": "boolean" }, - "timeout": { - "default": 120000, - "description": "Request timeout in milliseconds. (Default is 2 minutes; O is ignored)", + "menuCategory": { + "description": "Whether to create submenu for start menu shortcut and program files directory. If `true`, company name will be used. Or string value.", + "default": false, "type": [ - "null", - "number" + "string", + "boolean" ] }, - "updaterCacheDirName": { - "type": [ - "null", - "string" - ] + "shortcutName": { + "description": "The name that will be used for all shortcuts. Defaults to the application name.", + "type": "string" + }, + "artifactName": { + "description": "The [artifact file name template](./configuration.md#artifact-file-name-template).", + "type": "string" + }, + "publish": { + "$ref": "#/definitions/Publish" } }, - "required": [ - "provider" - ], - "type": "object" + "additionalProperties": false }, - "SpacesOptions": { - "additionalProperties": false, - "description": "[DigitalOcean Spaces](https://www.digitalocean.com/community/tutorials/an-introduction-to-digitalocean-spaces) options.\nAccess key is required, define `DO_KEY_ID` and `DO_SECRET_KEY` environment variables.", + "MsiWrappedOptions": { + "type": "object", "properties": { - "acl": { - "anyOf": [ - { - "enum": [ - "private", - "public-read" - ], - "type": "string" - }, - { - "type": "null" - } - ], - "default": "public-read", - "description": "The ACL. Set to `null` to not [add](https://github.com/electron-userland/electron-builder/issues/1822)." - }, - "channel": { - "default": "latest", - "description": "The update channel.", - "type": [ - "null", - "string" - ] - }, - "name": { - "description": "The space name.", + "wrappedInstallerArgs": { + "description": "Extra arguments to provide to the wrapped installer (ie: /S for silent install)", "type": "string" }, - "path": { - "default": "/", - "description": "The directory path.", - "type": [ - "null", - "string" - ] + "impersonate": { + "description": "Determines if the wrapped installer should be executed with impersonation", + "default": false, + "type": "boolean" }, - "provider": { - "const": "spaces", - "description": "The provider. Must be `spaces`.", + "upgradeCode": { + "description": "The [upgrade code](https://msdn.microsoft.com/en-us/library/windows/desktop/aa372375(v=vs.85).aspx). Optional, by default generated using app id.", "type": "string" }, - "publishAutoUpdate": { + "warningsAsErrors": { + "description": "If `warningsAsErrors` is `true` (default): treat warnings as errors. If `warningsAsErrors` is `false`: allow warnings.", "default": true, - "description": "Whether to publish auto update info files.\n\nAuto update relies only on the first provider in the list (you can specify several publishers).\nThus, probably, there`s no need to upload the metadata files for the other configured providers. But by default will be uploaded.", "type": "boolean" }, - "publisherName": { - "anyOf": [ - { - "items": { - "type": "string" - }, - "type": "array" - }, - { - "type": "null" - } - ] + "additionalWixArgs": { + "description": "Any additional arguments to be passed to the WiX installer compiler, such as `[\"-ext\", \"WixUtilExtension\"]`", + "type": "array", + "items": { + "type": "string" + } }, - "region": { - "description": "The region (e.g. `nyc3`).", - "type": "string" + "oneClick": { + "type": "boolean" }, - "requestHeaders": { - "$ref": "#/definitions/OutgoingHttpHeaders", - "description": "Any custom request headers" + "perMachine": { + "description": "Whether to install per all users (per-machine).", + "default": false, + "type": "boolean" }, - "timeout": { - "default": 120000, - "description": "Request timeout in milliseconds. (Default is 2 minutes; O is ignored)", - "type": [ - "null", - "number" + "runAfterFinish": { + "description": "Whether to run the installed application after finish. For assisted installer corresponding checkbox will be removed.", + "default": true, + "type": "boolean" + }, + "createDesktopShortcut": { + "description": "Whether to create desktop shortcut. Set to `always` if to recreate also on reinstall (even if removed by user).", + "default": true, + "enum": [ + "always", + false, + true ] }, - "updaterCacheDirName": { + "createStartMenuShortcut": { + "description": "Whether to create start menu shortcut.", + "default": true, + "type": "boolean" + }, + "menuCategory": { + "description": "Whether to create submenu for start menu shortcut and program files directory. If `true`, company name will be used. Or string value.", + "default": false, "type": [ - "null", - "string" + "string", + "boolean" ] + }, + "shortcutName": { + "description": "The name that will be used for all shortcuts. Defaults to the application name.", + "type": "string" + }, + "artifactName": { + "description": "The [artifact file name template](./configuration.md#artifact-file-name-template).", + "type": "string" + }, + "publish": { + "$ref": "#/definitions/Publish" } }, - "required": [ - "name", - "provider", - "region" - ], - "type": "object" + "additionalProperties": false }, "SquirrelWindowsOptions": { - "additionalProperties": false, + "type": "object", "properties": { - "artifactName": { - "description": "The [artifact file name template](./configuration.md#artifact-file-name-template).", - "type": [ - "null", - "string" - ] - }, - "customSquirrelVendorDir": { - "description": "The custom squirrel vendor dir. If not specified will use the Squirrel.Windows that is shipped with electron-installer(https://github.com/electron/windows-installer/tree/main/vendor).\nAfter https://github.com/electron-userland/electron-builder-binaries/pull/56 merged, will add `electron-builder-binaries` to get the latest version of squirrel.", - "type": "string" - }, "iconUrl": { "description": "A URL to an ICO file to use as the application icon (displayed in Control Panel > Programs and Features). Defaults to the Electron icon.\n\nPlease note — [local icon file url is not accepted](https://github.com/atom/grunt-electron-installer/issues/73), must be https/http.\n\nIf you don't plan to build windows installer, you can omit it.\nIf your project repository is public on GitHub, it will be `https://github.com/${u}/${p}/blob/master/build/icon.ico?raw=true` by default.", - "type": [ - "null", - "string" - ] + "type": "string" }, "loadingGif": { "description": "The path to a .gif file to display during install. `build/install-spinner.gif` will be used if exists (it is a recommended way to set)\n(otherwise [default](https://github.com/electron/windows-installer/blob/master/resources/install-spinner.gif)).", - "type": [ - "null", - "string" - ] + "type": "string" }, "msi": { "description": "Whether to create an MSI installer. Defaults to `false` (MSI is not created).", "type": "boolean" }, - "name": { - "description": "https://github.com/electron-userland/electron-builder/issues/1743", - "type": "string" - }, - "publish": { - "anyOf": [ - { - "$ref": "#/definitions/GithubOptions" - }, - { - "$ref": "#/definitions/GitlabOptions" - }, - { - "$ref": "#/definitions/S3Options" - }, - { - "$ref": "#/definitions/SpacesOptions" - }, - { - "$ref": "#/definitions/GenericServerOptions" - }, - { - "$ref": "#/definitions/CustomPublishOptions" - }, - { - "$ref": "#/definitions/KeygenOptions" - }, - { - "$ref": "#/definitions/SnapStoreOptions" - }, - { - "$ref": "#/definitions/BitbucketOptions" - }, - { - "items": { - "$ref": "#/definitions/AllPublishOptions" - }, - "type": "array" - }, - { - "type": [ - "null", - "string" - ] - } - ] - }, "remoteReleases": { "description": "A URL to your existing updates. Or `true` to automatically set to your GitHub repository. If given, these will be downloaded to create delta updates.", "type": [ - "null", "string", "boolean" ] }, "remoteToken": { "description": "Authentication token for remote updates", - "type": [ - "null", - "string" - ] + "type": "string" }, "useAppIdAsId": { "description": "Use `appId` to identify package instead of `name`.", "type": "boolean" - } - }, - "type": "object" - }, - "TargetConfiguration": { - "additionalProperties": false, - "properties": { - "arch": { - "anyOf": [ - { - "items": { - "$ref": "#/definitions/ArchType" - }, - "type": "array" - }, - { - "enum": [ - "arm64", - "armv7l", - "ia32", - "universal", - "x64" - ], - "type": "string" - } - ], - "description": "The arch or list of archs." }, - "target": { - "description": "The target name. e.g. `snap`.", + "customSquirrelVendorDir": { + "description": "The custom squirrel vendor dir. If not specified will use the Squirrel.Windows that is shipped with electron-installer(https://github.com/electron/windows-installer/tree/main/vendor).\nAfter https://github.com/electron-userland/electron-builder-binaries/pull/56 merged, will add `electron-builder-binaries` to get the latest version of squirrel.", + "type": "string" + }, + "name": { + "description": "https://github.com/electron-userland/electron-builder/issues/1743", + "type": "string" + }, + "artifactName": { + "description": "The [artifact file name template](./configuration.md#artifact-file-name-template).", "type": "string" + }, + "publish": { + "$ref": "#/definitions/Publish" } }, - "required": [ - "target" - ], - "type": "object" + "additionalProperties": false }, - "WindowsAzureSigningConfiguration": { - "additionalProperties": { - "type": [ - "null", - "string" - ] - }, + "LinuxConfiguration": { + "type": "object", "properties": { - "certificateProfileName": { - "description": "The Certificate Profile name. Translates to field: CertificateProfileName", - "type": "string" + "target": { + "$ref": "#/definitions/TargetConfigType", + "description": "Target package type: list of `AppImage`, `flatpak`, `snap`, `deb`, `rpm`, `freebsd`, `pacman`, `p5p`, `apk`, `7z`, `zip`, `tar.xz`, `tar.lz`, `tar.gz`, `tar.bz2`, `dir`.\n\nelectron-builder [docker image](./multi-platform-build.md#docker) can be used to build Linux targets on any platform.\n\nPlease [do not put an AppImage into another archive](https://github.com/probonopd/AppImageKit/wiki/Creating-AppImages#common-mistake) like a .zip or .tar.gz.", + "default": "AppImage" }, - "codeSigningAccountName": { - "description": "The Code Signing Signing Account name. Translates to field: CodeSigningAccountName", + "maintainer": { + "description": "The maintainer. Defaults to [author](./configuration.md#author).", "type": "string" }, - "endpoint": { - "description": "The Trusted Signing Account endpoint. The URI value must have a URI that aligns to the\nregion your Trusted Signing Account and Certificate Profile you are specifying were created\nin during the setup of these resources.\n\nTranslates to field: Endpoint\n\nRequires one of environment variable configurations for authenticating to Microsoft Entra ID per [Microsoft's documentation](https://learn.microsoft.com/en-us/dotnet/api/azure.identity.environmentcredential?view=azure-dotnet#definition)", + "vendor": { + "description": "The vendor. Defaults to [author](./configuration.md#author).", "type": "string" }, - "fileDigest": { - "default": "SHA256", - "description": "The File Digest for signing each file. Translates to field: FileDigest", + "icon": { + "description": "The path to icon set directory or one png file, relative to the [build resources](./contents.md#extraresources) or to the project directory. The icon filename must contain the size (e.g. 32x32.png) of the icon.\nBy default will be generated automatically based on the macOS icns file.", "type": "string" }, - "publisherName": { - "description": "[The publisher name](https://github.com/electron-userland/electron-builder/issues/1187#issuecomment-278972073), exactly as in your code signed certificate. Several names can be provided.", + "packageCategory": { + "description": "backward compatibility + to allow specify fpm-only category for all possible fpm targets in one place", "type": "string" }, - "timestampDigest": { - "default": "SHA256", - "description": "The Timestamp Digest. Translates to field: TimestampDigest", + "synopsis": { + "description": "The [short description](https://www.debian.org/doc/debian-policy/ch-controlfields.html#s-f-Description).", "type": "string" }, - "timestampRfc3161": { - "default": "http://timestamp.acs.microsoft.com", - "description": "The Timestamp rfc3161 server. Translates to field: TimestampRfc3161", + "description": { + "description": "As [description](./configuration.md#description) from application package.json, but allows you to specify different for Linux.", "type": "string" - } - }, - "required": [ - "certificateProfileName", - "codeSigningAccountName", - "endpoint", - "publisherName" - ], - "type": "object" - }, - "WindowsConfiguration": { - "additionalProperties": false, - "properties": { - "appId": { - "default": "com.electron.${name}", - "description": "The application id. Used as [CFBundleIdentifier](https://developer.apple.com/library/ios/documentation/General/Reference/InfoPlistKeyReference/Articles/CoreFoundationKeys.html#//apple_ref/doc/uid/20001431-102070) for MacOS and as\n[Application User Model ID](https://msdn.microsoft.com/en-us/library/windows/desktop/dd378459(v=vs.85).aspx) for Windows (NSIS target only, Squirrel.Windows not supported). It is strongly recommended that an explicit ID is set.", - "type": [ - "null", - "string" - ] - }, - "artifactName": { - "description": "The [artifact file name template](./configuration.md#artifact-file-name-template). Defaults to `${productName}-${version}.${ext}` (some target can have other defaults, see corresponding options).", - "type": [ - "null", - "string" - ] }, - "asar": { - "anyOf": [ - { - "$ref": "#/definitions/AsarOptions" - }, - { - "type": [ - "null", - "boolean" - ] - } - ], - "default": true, - "description": "Whether to package the application's source code into an archive, using [Electron's archive format](http://electron.atom.io/docs/tutorial/application-packaging/).\n\nNode modules, that must be unpacked, will be detected automatically, you don't need to explicitly set [asarUnpack](#asarUnpack) - please file an issue if this doesn't work." + "category": { + "description": "The [application category](https://specifications.freedesktop.org/menu-spec/latest/apa.html#main-category-registry).", + "type": "string" }, - "asarUnpack": { - "anyOf": [ - { - "items": { - "type": "string" - }, - "type": "array" - }, - { - "type": [ - "null", - "string" - ] - } - ], - "description": "A [glob patterns](./file-patterns.md) relative to the [app directory](#directories), which specifies which files to unpack when creating the [asar](http://electron.atom.io/docs/tutorial/application-packaging/) archive." + "mimeTypes": { + "description": "The mime types in addition to specified in the file associations. Use it if you don't want to register a new mime type, but reuse existing.", + "type": "array", + "items": { + "type": "string" + } }, - "azureSignOptions": { - "anyOf": [ - { - "$ref": "#/definitions/WindowsAzureSigningConfiguration" - }, - { - "type": "null" - } - ], - "description": "Options for usage of Azure Trusted Signing service\nCannot be used in conjunction with `signtoolOptions`, signing will default to Azure Trusted Signing" + "desktop": { + "$ref": "#/definitions/LinuxDesktopFile", + "description": "The [Desktop file](https://developer.gnome.org/documentation/guidelines/maintainer/integrating.html#desktop-files)" }, - "compression": { - "anyOf": [ - { - "enum": [ - "maximum", - "normal", - "store" - ], - "type": "string" - }, - { - "type": "null" - } - ], - "default": "normal", - "description": "The compression level. If you want to rapidly test build, `store` can reduce build time significantly. `maximum` doesn't lead to noticeable size difference, but increase build time." + "executableArgs": { + "description": "The executable parameters. Pass to executableName", + "type": "array", + "items": { + "type": "string" + } }, - "cscKeyPassword": { - "type": [ - "null", - "string" - ] + "appId": { + "description": "The application id. Used as [CFBundleIdentifier](https://developer.apple.com/library/ios/documentation/General/Reference/InfoPlistKeyReference/Articles/CoreFoundationKeys.html#//apple_ref/doc/uid/20001431-102070) for MacOS and as\n[Application User Model ID](https://msdn.microsoft.com/en-us/library/windows/desktop/dd378459(v=vs.85).aspx) for Windows (NSIS target only, Squirrel.Windows not supported). It is strongly recommended that an explicit ID is set.", + "default": "com.electron.${name}", + "type": "string" }, - "cscLink": { - "type": [ - "null", - "string" - ] + "artifactName": { + "description": "The [artifact file name template](./configuration.md#artifact-file-name-template). Defaults to `${productName}-${version}.${ext}` (some target can have other defaults, see corresponding options).", + "type": "string" }, - "defaultArch": { + "executableName": { + "description": "The executable name. Defaults to `productName`\nNote: Except for Linux, where this would constitute a breaking change in previous behavior and lead to both invalid executable names and Desktop files. Ref comments in: https://github.com/electron-userland/electron-builder/pull/9068", "type": "string" }, - "detectUpdateChannel": { - "default": true, - "description": "Whether to infer update channel from application version pre-release components. e.g. if version `0.12.1-alpha.1`, channel will be set to `alpha`. Otherwise to `latest`.\nThis does *not* apply to github publishing, which will [never auto-detect the update channel](https://github.com/electron-userland/electron-builder/issues/8589).", - "type": "boolean" + "compression": { + "$ref": "#/definitions/CompressionLevel", + "description": "The compression level. If you want to rapidly test build, `store` can reduce build time significantly. `maximum` doesn't lead to noticeable size difference, but increase build time.", + "default": "normal" }, "disableDefaultIgnoredFiles": { - "default": false, "description": "Whether to exclude all default ignored files(https://www.electron.build/contents#files) and options. Defaults to `false`.", - "type": [ - "null", - "boolean" - ] + "default": false, + "type": "boolean" }, - "electronLanguages": { + "asar": { + "description": "Whether to package the application's source code into an archive, using [Electron's archive format](http://electron.atom.io/docs/tutorial/application-packaging/).\n\nNode modules, that must be unpacked, will be detected automatically, you don't need to explicitly set [asarUnpack](#asarUnpack) - please file an issue if this doesn't work.", + "default": true, "anyOf": [ { - "items": { - "type": "string" - }, - "type": "array" + "$ref": "#/definitions/AsarOptions" }, { - "type": "string" + "type": "boolean" } - ], - "description": "The electron locales to keep. By default, all Electron locales used as-is." - }, - "electronUpdaterCompatibility": { - "description": "The [electron-updater compatibility](./auto-update.md#compatibility) semver range.", - "type": [ - "null", - "string" - ] - }, - "executableName": { - "description": "The executable name. Defaults to `productName`\nNote: Except for Linux, where this would constitute a breaking change in previous behavior and lead to both invalid executable names and Desktop files. Ref comments in: https://github.com/electron-userland/electron-builder/pull/9068", - "type": [ - "null", - "string" ] }, - "extraFiles": { - "anyOf": [ - { - "$ref": "#/definitions/FileSet" - }, - { - "items": { - "anyOf": [ - { - "$ref": "#/definitions/FileSet" - }, - { - "type": "string" - } - ] - }, - "type": "array" - }, - { - "type": [ - "null", - "string" - ] - } - ], - "description": "The same as [extraResources](#extraresources) but copy into the app's content directory (`Contents` for MacOS, root directory for Linux and Windows)." - }, - "extraResources": { + "asarUnpack": { + "description": "A [glob patterns](./file-patterns.md) relative to the [app directory](#directories), which specifies which files to unpack when creating the [asar](http://electron.atom.io/docs/tutorial/application-packaging/) archive.", "anyOf": [ { - "$ref": "#/definitions/FileSet" - }, - { + "type": "array", "items": { - "anyOf": [ - { - "$ref": "#/definitions/FileSet" - }, - { - "type": "string" - } - ] - }, - "type": "array" + "type": "string" + } }, { - "type": [ - "null", - "string" - ] + "type": "string" } - ], - "description": "A [glob patterns](./file-patterns.md) relative to the project directory, when specified, copy the file or directory with matching names directly into the app's resources directory (`Contents/Resources` for MacOS, `resources` for Linux and Windows).\n\nFile patterns (and support for `from` and `to` fields) the same as for [files](#files)." + ] }, "fileAssociations": { + "description": "The file associations.", "anyOf": [ { "$ref": "#/definitions/FileAssociation" }, { + "type": "array", "items": { "$ref": "#/definitions/FileAssociation" - }, - "type": "array" - } - ], - "description": "The file associations." - }, - "files": { - "anyOf": [ - { - "$ref": "#/definitions/FileSet" - }, - { - "items": { - "anyOf": [ - { - "$ref": "#/definitions/FileSet" - }, - { - "type": "string" - } - ] - }, - "type": "array" - }, - { - "type": [ - "null", - "string" - ] + } } - ], - "description": "A [glob patterns](./file-patterns.md) relative to the [app directory](configuration.md#directories), which specifies which files to include when copying files to create the package.\n\nDefaults to:\n```json\n[\n\"**\\/*\",\n\"!**\\/node_modules/*\\/{CHANGELOG.md,README.md,README,readme.md,readme}\",\n\"!**\\/node_modules/*\\/{test,__tests__,tests,powered-test,example,examples}\",\n\"!**\\/node_modules/*.d.ts\",\n\"!**\\/node_modules/.bin\",\n\"!**\\/*.{iml,o,hprof,orig,pyc,pyo,rbc,swp,csproj,sln,xproj}\",\n\"!.editorconfig\",\n\"!**\\/._*\",\n\"!**\\/{.DS_Store,.git,.hg,.svn,CVS,RCS,SCCS,.gitignore,.gitattributes}\",\n\"!**\\/{__pycache__,thumbs.db,.flowconfig,.idea,.vs,.nyc_output}\",\n\"!**\\/{appveyor.yml,.travis.yml,circle.yml}\",\n\"!**\\/{npm-debug.log,yarn.lock,.yarn-integrity,.yarn-metadata.json}\"\n]\n```\n\nDevelopment dependencies are never copied in any case. You don't need to ignore it explicitly. Hidden files are not ignored by default, but all files that should be ignored, are ignored by default.\n\nDefault pattern \\`**\\/*\\` **is not added to your custom** if some of your patterns is not ignore (i.e. not starts with `!`). `package.json` and \\`**\\/node_modules/**\\/*` (only production dependencies will be copied) is added to your custom in any case. All default ignores are added in any case — you don't need to repeat it if you configure own patterns.\n\nMay be specified in the platform options (e.g. in the [mac](mac.md)).\n\nYou may also specify custom source and destination directories by using `FileSet` objects instead of simple glob patterns.\n\n```json\n[\n{\n\"from\": \"path/to/source\",\n\"to\": \"path/to/destination\",\n\"filter\": [\"**\\/*\", \"!foo/*.js\"]\n}\n]\n```\n\nYou can use [file macros](./file-patterns.md#file-macros) in the `from` and `to` fields as well. `from` and `to` can be files and you can use this to [rename](https://github.com/electron-userland/electron-builder/issues/1119) a file while packaging." - }, - "forceCodeSigning": { - "description": "Whether to fail if app will be not code signed.", - "type": "boolean" - }, - "generateUpdatesFilesForAllChannels": { - "default": false, - "description": "Please see [Building and Releasing using Channels](https://github.com/electron-userland/electron-builder/issues/1182#issuecomment-324947139).", - "type": "boolean" - }, - "icon": { - "default": "build/icon.ico", - "description": "The path to application icon.", - "type": [ - "null", - "string" - ] - }, - "legalTrademarks": { - "description": "The trademarks and registered trademarks.", - "type": [ - "null", - "string" ] }, "protocols": { + "description": "The URL protocol schemes.", "anyOf": [ { "$ref": "#/definitions/Protocol" }, { + "type": "array", "items": { "$ref": "#/definitions/Protocol" - }, - "type": "array" + } } - ], - "description": "The URL protocol schemes." + ] }, - "publish": { + "electronLanguages": { + "description": "The electron locales to keep. By default, all Electron locales used as-is.", "anyOf": [ { - "$ref": "#/definitions/GithubOptions" - }, - { - "$ref": "#/definitions/GitlabOptions" - }, - { - "$ref": "#/definitions/S3Options" - }, - { - "$ref": "#/definitions/SpacesOptions" - }, - { - "$ref": "#/definitions/GenericServerOptions" - }, - { - "$ref": "#/definitions/CustomPublishOptions" - }, - { - "$ref": "#/definitions/KeygenOptions" - }, - { - "$ref": "#/definitions/SnapStoreOptions" - }, - { - "$ref": "#/definitions/BitbucketOptions" - }, - { + "type": "array", "items": { - "$ref": "#/definitions/AllPublishOptions" - }, - "type": "array" + "type": "string" + } }, { - "type": [ - "null", - "string" - ] + "type": "string" } - ], + ] + }, + "forceCodeSigning": { + "description": "Whether to fail if app will be not code signed.", + "type": "boolean" + }, + "electronUpdaterCompatibility": { + "description": "The [electron-updater compatibility](./auto-update.md#compatibility) semver range.", + "type": "string" + }, + "publish": { + "$ref": "#/definitions/Publish", "description": "Publisher configuration. See [Auto Update](./publish.md) for more information." }, + "detectUpdateChannel": { + "description": "Whether to infer update channel from application version pre-release components. e.g. if version `0.12.1-alpha.1`, channel will be set to `alpha`. Otherwise to `latest`.\nThis does *not* apply to github publishing, which will [never auto-detect the update channel](https://github.com/electron-userland/electron-builder/issues/8589).", + "default": true, + "type": "boolean" + }, + "generateUpdatesFilesForAllChannels": { + "description": "Please see [Building and Releasing using Channels](https://github.com/electron-userland/electron-builder/issues/1182#issuecomment-324947139).", + "default": false, + "type": "boolean" + }, "releaseInfo": { "$ref": "#/definitions/ReleaseInfo", "description": "The release info. Intended for command line usage:\n\n```\n-c.releaseInfo.releaseNotes=\"new features\"\n```" }, - "requestedExecutionLevel": { - "anyOf": [ - { - "enum": [ - "asInvoker", - "highestAvailable", - "requireAdministrator" - ], - "type": "string" - }, - { - "type": "null" - } - ], - "default": "asInvoker", - "description": "The [security level](https://msdn.microsoft.com/en-us/library/6ad1fshk.aspx#Anchor_9) at which the application requests to be executed.\nCannot be specified per target, allowed only in the `win`." + "cscLink": { + "type": "string" }, - "signAndEditExecutable": { - "default": true, - "description": "Whether to sign and add metadata to executable.\nMetadata includes information about the app name/description/version, publisher, copyright, etc.\nThis property also is responsible for adding the app icon and setting execution level.\n(Advanced option leveraging `rcedit`)", - "type": "boolean" + "cscKeyPassword": { + "type": "string" }, - "signExts": { + "defaultArch": { + "type": "string" + }, + "files": { + "description": "A [glob patterns](./file-patterns.md) relative to the [app directory](configuration.md#directories), which specifies which files to include when copying files to create the package.\n\nDefaults to:\n```json\n[\n\"**\\/*\",\n\"!**\\/node_modules/*\\/{CHANGELOG.md,README.md,README,readme.md,readme}\",\n\"!**\\/node_modules/*\\/{test,__tests__,tests,powered-test,example,examples}\",\n\"!**\\/node_modules/*.d.ts\",\n\"!**\\/node_modules/.bin\",\n\"!**\\/*.{iml,o,hprof,orig,pyc,pyo,rbc,swp,csproj,sln,xproj}\",\n\"!.editorconfig\",\n\"!**\\/._*\",\n\"!**\\/{.DS_Store,.git,.hg,.svn,CVS,RCS,SCCS,.gitignore,.gitattributes}\",\n\"!**\\/{__pycache__,thumbs.db,.flowconfig,.idea,.vs,.nyc_output}\",\n\"!**\\/{appveyor.yml,.travis.yml,circle.yml}\",\n\"!**\\/{npm-debug.log,yarn.lock,.yarn-integrity,.yarn-metadata.json}\"\n]\n```\n\nDevelopment dependencies are never copied in any case. You don't need to ignore it explicitly. Hidden files are not ignored by default, but all files that should be ignored, are ignored by default.\n\nDefault pattern \\`**\\/*\\` **is not added to your custom** if some of your patterns is not ignore (i.e. not starts with `!`). `package.json` and \\`**\\/node_modules/**\\/*` (only production dependencies will be copied) is added to your custom in any case. All default ignores are added in any case — you don't need to repeat it if you configure own patterns.\n\nMay be specified in the platform options (e.g. in the [mac](mac.md)).\n\nYou may also specify custom source and destination directories by using `FileSet` objects instead of simple glob patterns.\n\n```json\n[\n{\n\"from\": \"path/to/source\",\n\"to\": \"path/to/destination\",\n\"filter\": [\"**\\/*\", \"!foo/*.js\"]\n}\n]\n```\n\nYou can use [file macros](./file-patterns.md#file-macros) in the `from` and `to` fields as well. `from` and `to` can be files and you can use this to [rename](https://github.com/electron-userland/electron-builder/issues/1119) a file while packaging.", "anyOf": [ { + "$ref": "#/definitions/FileSet" + }, + { + "type": "array", "items": { - "type": "string" - }, - "type": "array" + "anyOf": [ + { + "$ref": "#/definitions/FileSet" + }, + { + "type": "string" + } + ] + } }, { - "type": "null" + "type": "string" } - ], - "default": null, - "description": "Explicit file name/extensions (`str.endsWith`) to also sign. Advanced option.\nSupports negative patterns, e.g. example that excludes `.appx` files: `[\"somefilename\", \".dll\", \"!.appx\"]`." + ] }, - "signtoolOptions": { + "extraResources": { + "description": "A [glob patterns](./file-patterns.md) relative to the project directory, when specified, copy the file or directory with matching names directly into the app's resources directory (`Contents/Resources` for MacOS, `resources` for Linux and Windows).\n\nFile patterns (and support for `from` and `to` fields) the same as for [files](#files).", "anyOf": [ { - "$ref": "#/definitions/WindowsSigntoolConfiguration" + "$ref": "#/definitions/FileSet" + }, + { + "type": "array", + "items": { + "anyOf": [ + { + "$ref": "#/definitions/FileSet" + }, + { + "type": "string" + } + ] + } }, { - "type": "null" + "type": "string" } - ], - "description": "Options for usage with signtool.exe\nCannot be used in conjunction with `azureSignOptions`, signing will default to Azure Trusted Signing" + ] }, - "target": { + "extraFiles": { + "description": "The same as [extraResources](#extraresources) but copy into the app's content directory (`Contents` for MacOS, root directory for Linux and Windows).", "anyOf": [ { - "$ref": "#/definitions/TargetConfiguration" + "$ref": "#/definitions/FileSet" }, { + "type": "array", "items": { "anyOf": [ { - "$ref": "#/definitions/TargetConfiguration" + "$ref": "#/definitions/FileSet" }, { "type": "string" } ] - }, - "type": "array" + } }, { - "type": [ - "null", - "string" - ] + "type": "string" } - ], - "default": "nsis", - "description": "The target package type: list of `nsis`, `nsis-web` (Web installer), `portable` ([portable]./nsis.md#portable) app without installation), `appx`, `msi`, `msi-wrapped`, `squirrel`, `7z`, `zip`, `tar.xz`, `tar.lz`, `tar.gz`, `tar.bz2`, `dir`.\nAppX package can be built only on Windows 10.\n\nTo use Squirrel.Windows please install `electron-builder-squirrel-windows` dependency." + ] + } + }, + "additionalProperties": false + }, + "LinuxDesktopFile": { + "description": "Example Spec: https://specifications.freedesktop.org/desktop-entry-spec/latest/example.html", + "type": "object", + "properties": { + "entry": { + "typeof": "function" }, - "verifyUpdateCodeSignature": { - "default": true, - "description": "Whether to verify the signature of an available update before installation.\nThe [publisher name](#publisherName) will be used for the signature verification.", - "type": "boolean" + "desktopActions": { + "typeof": "function" } }, - "type": "object" + "additionalProperties": false }, - "WindowsSigntoolConfiguration": { - "additionalProperties": false, + "DebOptions": { + "type": "object", "properties": { - "additionalCertificateFile": { - "description": "The path to an additional certificate file you want to add to the signature block.", - "type": [ - "null", - "string" - ] + "depends": { + "description": "Package dependencies.\nIf need to support Debian, `libappindicator1` should be removed, it is [deprecated in Debian](https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=895037).\nIf need to support KDE, `gconf2` and `gconf-service` should be removed as it's no longer used [by GNOME](https://packages.debian.org/bullseye/gconf2).", + "default": [ + "libgtk-3-0", + "libnotify4", + "libnss3", + "libxss1", + "libxtst6", + "xdg-utils", + "libatspi2.0-0", + "libuuid1", + "libsecret-1-0" + ], + "type": "array", + "items": { + "type": "string" + } }, - "certificateFile": { - "description": "The path to the *.pfx certificate you want to sign with. Please use it only if you cannot use env variable `CSC_LINK` (`WIN_CSC_LINK`) for some reason.\nPlease see [Code Signing](./code-signing.md).", - "type": [ - "null", - "string" - ] + "recommends": { + "description": "The [recommended package dependencies](https://www.debian.org/doc/debian-policy/ch-relationships.html#s-binarydeps).", + "default": [ + "libappindicator3-1" + ], + "type": "array", + "items": { + "type": "string" + } }, - "certificatePassword": { - "description": "The password to the certificate provided in `certificateFile`. Please use it only if you cannot use env variable `CSC_KEY_PASSWORD` (`WIN_CSC_KEY_PASSWORD`) for some reason.\nPlease see [Code Signing](./code-signing.md).", - "type": [ - "null", - "string" - ] + "packageCategory": { + "description": "The [package category](https://www.debian.org/doc/debian-policy/ch-controlfields.html#s-f-Section).", + "type": "string" }, - "certificateSha1": { - "description": "The SHA1 hash of the signing certificate. The SHA1 hash is commonly specified when multiple certificates satisfy the criteria specified by the remaining switches. Works only on Windows (or on macOS if [Parallels Desktop](https://www.parallels.com/products/desktop/) Windows 10 virtual machines exits).", - "type": [ - "null", - "string" - ] + "priority": { + "description": "The [Priority](https://www.debian.org/doc/debian-policy/ch-controlfields.html#s-f-Priority) attribute.", + "type": "string" }, - "certificateSubjectName": { - "description": "The name of the subject of the signing certificate, which is often labeled with the field name `issued to`. Required only for EV Code Signing and works only on Windows (or on macOS if [Parallels Desktop](https://www.parallels.com/products/desktop/) Windows 10 virtual machines exits).", - "type": [ - "null", - "string" - ] + "compression": { + "description": "The compression type.", + "default": "xz", + "enum": [ + "bzip2", + "gz", + "lzo", + "xz" + ], + "type": "string" }, - "publisherName": { - "anyOf": [ - { - "items": { - "type": "string" - }, - "type": "array" - }, - { - "type": [ - "null", - "string" - ] - } + "icon": { + "type": "string" + }, + "packageName": { + "description": "The name of the package.", + "type": "string" + }, + "vendor": { + "type": "string" + }, + "maintainer": { + "type": "string" + }, + "afterInstall": { + "description": "File path to script to be passed to FPM for `--after-install` arg.", + "type": "string" + }, + "afterRemove": { + "description": "File path to script to be passed to FPM for `--after-remove` arg.", + "type": "string" + }, + "appArmorProfile": { + "description": "File path to custom AppArmor profile (Ubuntu 24+)", + "type": "string" + }, + "fpm": { + "description": "*Advanced only* The [fpm](https://fpm.readthedocs.io/en/latest/cli-reference.html) options.\n\nExample: `[\"--before-install=build/deb-preinstall.sh\", \"--after-upgrade=build/deb-postinstall.sh\"]`", + "type": "array", + "items": { + "type": "string" + } + }, + "synopsis": { + "description": "The [short description](https://www.debian.org/doc/debian-policy/ch-controlfields.html#s-f-Description).", + "type": "string" + }, + "description": { + "description": "As [description](./configuration.md#description) from application package.json, but allows you to specify different for Linux.", + "type": "string" + }, + "category": { + "description": "The [application category](https://specifications.freedesktop.org/menu-spec/latest/apa.html#main-category-registry).", + "type": "string" + }, + "mimeTypes": { + "description": "The mime types in addition to specified in the file associations. Use it if you don't want to register a new mime type, but reuse existing.", + "type": "array", + "items": { + "type": "string" + } + }, + "desktop": { + "$ref": "#/definitions/LinuxDesktopFile", + "description": "The [Desktop file](https://developer.gnome.org/documentation/guidelines/maintainer/integrating.html#desktop-files)" + }, + "executableArgs": { + "description": "The executable parameters. Pass to executableName", + "type": "array", + "items": { + "type": "string" + } + }, + "artifactName": { + "description": "The [artifact file name template](./configuration.md#artifact-file-name-template).", + "type": "string" + }, + "publish": { + "$ref": "#/definitions/Publish" + } + }, + "additionalProperties": false + }, + "SnapOptions": { + "type": "object", + "properties": { + "base": { + "description": "A snap of type base to be used as the execution environment for this snap. Examples: `core`, `core18`, `core20`, `core22`. Defaults to `core20`", + "type": "string" + }, + "confinement": { + "description": "The type of [confinement](https://snapcraft.io/docs/reference/confinement) supported by the snap.", + "default": "strict", + "enum": [ + "classic", + "devmode", + "strict" ], - "description": "[The publisher name](https://github.com/electron-userland/electron-builder/issues/1187#issuecomment-278972073), exactly as in your code signed certificate. Several names can be provided.\nDefaults to common name from your code signing certificate." + "type": "string" }, - "rfc3161TimeStampServer": { - "default": "http://timestamp.digicert.com", - "description": "The URL of the RFC 3161 time stamp server.", - "type": [ - "null", - "string" - ] + "environment": { + "additionalProperties": { + "type": "string" + }, + "type": "object" }, - "sign": { - "anyOf": [ - { - "typeof": "function" - }, - { - "type": [ - "null", - "string" - ] - } + "summary": { + "description": "The 78 character long summary. Defaults to [productName](./configuration.md#productName).", + "type": "string" + }, + "grade": { + "description": "The quality grade of the snap. It can be either `devel` (i.e. a development version of the snap, so not to be published to the “stable” or “candidate” channels) or “stable” (i.e. a stable release or release candidate, which can be released to all channels).", + "default": "stable", + "enum": [ + "devel", + "stable" ], - "description": "The custom function (or path to file or module id) to sign Windows executables" + "type": "string" }, - "signingHashAlgorithms": { + "assumes": { + "description": "The list of features that must be supported by the core in order for this snap to install.", "anyOf": [ { + "type": "array", "items": { - "enum": [ - "sha1", - "sha256" - ], "type": "string" - }, - "type": "array" + } }, { - "type": "null" + "type": "string" } - ], - "default": "['sha1', 'sha256']", - "description": "Array of signing algorithms used. For AppX `sha256` is always used." - }, - "timeStampServer": { - "default": "http://timestamp.digicert.com", - "description": "The URL of the time stamp server.", - "type": [ - "null", - "string" ] - } - }, - "type": "object" - } - }, - "properties": { - "afterAllArtifactBuild": { - "anyOf": [ - { - "typeof": "function" }, - { - "type": [ - "null", - "string" - ] - } - ], - "description": "The function (or path to file or module id) to be run after all artifacts are built.\n\n```typescript\n(buildResult: BuildResult): Promise> | Array\n```\n\nConfiguration in the same way as `afterPack` (see above).\n\n!!! example \"myAfterAllArtifactBuild.js\"\n```js\nexports.default = function () {\n // you can return additional files to publish\n return [\"/path/to/additional/result/file\"]\n}\n```" - }, - "afterExtract": { - "anyOf": [ - { - "typeof": "function" + "buildPackages": { + "description": "The list of debian packages needs to be installed for building this snap.", + "type": "array", + "items": { + "type": "string" + } }, - { - "type": [ - "null", - "string" - ] - } - ], - "description": "The function (or path to file or module id) to be [run after the prebuilt Electron binary has been extracted to the output directory](#afterextract)\nSame setup as {@link beforePack}" - }, - "afterPack": { - "anyOf": [ - { - "typeof": "function" + "stagePackages": { + "description": "The list of Ubuntu packages to use that are needed to support the `app` part creation. Like `depends` for `deb`.\nDefaults to `[\"libnspr4\", \"libnss3\", \"libxss1\", \"libappindicator3-1\", \"libsecret-1-0\"]`.\n\nIf list contains `default`, it will be replaced to default list, so, `[\"default\", \"foo\"]` can be used to add custom package `foo` in addition to defaults.", + "type": "array", + "items": { + "type": "string" + } }, - { - "type": [ - "null", - "string" - ] - } - ], - "description": "The function (or path to file or module id) to be [run after pack](#afterpack) (but before pack into distributable format and sign).\nSame setup as {@link beforePack}" - }, - "afterSign": { - "anyOf": [ - { - "typeof": "function" + "hooks": { + "description": "The [hooks](https://docs.snapcraft.io/build-snaps/hooks) directory, relative to `build` (build resources directory).", + "default": "build/snap-hooks", + "type": "string" }, - { - "type": [ - "null", - "string" + "plugs": { + "description": "The list of [plugs](https://snapcraft.io/docs/reference/interfaces).\nDefaults to `[\"desktop\", \"desktop-legacy\", \"home\", \"x11\", \"wayland\", \"unity7\", \"browser-support\", \"network\", \"gsettings\", \"audio-playback\", \"pulseaudio\", \"opengl\"]`.\n\nIf list contains `default`, it will be replaced to default list, so, `[\"default\", \"foo\"]` can be used to add custom plug `foo` in addition to defaults.\n\nAdditional attributes can be specified using object instead of just name of plug:\n```\n[\n {\n \"browser-sandbox\": {\n \"interface\": \"browser-support\",\n \"allow-sandbox\": true\n },\n },\n \"another-simple-plug-name\"\n]\n```", + "anyOf": [ + { + "$ref": "#/definitions/PlugDescriptor" + }, + { + "type": "array", + "items": { + "anyOf": [ + { + "$ref": "#/definitions/PlugDescriptor" + }, + { + "type": "string" + } + ] + } + } ] - } - ], - "description": "The function (or path to file or module id) to be [run after pack and sign](#aftersign) (but before pack into distributable format).\nSame setup as {@link beforePack}" - }, - "apk": { - "anyOf": [ - { - "$ref": "#/definitions/LinuxTargetSpecificOptions" }, - { - "type": "null" - } - ] - }, - "appId": { - "default": "com.electron.${name}", - "description": "The application id. Used as [CFBundleIdentifier](https://developer.apple.com/library/ios/documentation/General/Reference/InfoPlistKeyReference/Articles/CoreFoundationKeys.html#//apple_ref/doc/uid/20001431-102070) for MacOS and as\n[Application User Model ID](https://msdn.microsoft.com/en-us/library/windows/desktop/dd378459(v=vs.85).aspx) for Windows (NSIS target only, Squirrel.Windows not supported). It is strongly recommended that an explicit ID is set.", - "type": [ - "null", - "string" - ] - }, - "appImage": { - "anyOf": [ - { - "$ref": "#/definitions/AppImageOptions" + "slots": { + "description": "The list of [slots](https://snapcraft.io/docs/reference/interfaces).\n\nAdditional attributes can be specified using object instead of just name of slot:\n```\n[\n {\n \"mpris\": {\n \"name\": \"chromium\"\n },\n }\n]\n\nIn case you want your application to be a compliant MPris player, you will need to definie\nThe mpris slot with \"chromium\" name.\nThis electron has it [hardcoded](https://source.chromium.org/chromium/chromium/src/+/master:components/system_media_controls/linux/system_media_controls_linux.cc;l=51;bpv=0;bpt=1),\nand we need to pass this name so snap [will allow it](https://forum.snapcraft.io/t/unable-to-use-mpris-interface/15360/7) in strict confinement.", + "anyOf": [ + { + "$ref": "#/definitions/PlugDescriptor" + }, + { + "type": "array", + "items": { + "anyOf": [ + { + "$ref": "#/definitions/SlotDescriptor" + }, + { + "type": "string" + } + ] + } + } + ] }, - { - "type": "null" - } - ], - "description": "AppImage options." - }, - "appx": { - "anyOf": [ - { - "$ref": "#/definitions/AppXOptions" + "after": { + "description": "Specifies any [parts](https://snapcraft.io/docs/reference/parts) that should be built before this part.\nDefaults to `[\"desktop-gtk2\"\"]`.\n\nIf list contains `default`, it will be replaced to default list, so, `[\"default\", \"foo\"]` can be used to add custom parts `foo` in addition to defaults.", + "type": "array", + "items": { + "type": "string" + } }, - { - "type": "null" - } - ] - }, - "appxManifestCreated": { - "anyOf": [ - { - "typeof": "function" + "useTemplateApp": { + "description": "Whether to use template snap. Defaults to `true` if `stagePackages` not specified.", + "type": "boolean" }, - { - "type": [ - "null", - "string" - ] - } - ], - "description": "The function (or path to file or module id) to be run after Appx manifest created on disk - not packed into .appx package yet." - }, - "artifactBuildCompleted": { - "anyOf": [ - { - "typeof": "function" + "autoStart": { + "description": "Whether or not the snap should automatically start on login.", + "default": false, + "type": "boolean" }, - { - "type": [ - "null", - "string" - ] - } - ], - "description": "The function (or path to file or module id) to be run on artifact build completed.\nSame setup as {@link beforePack}" - }, - "artifactBuildStarted": { - "anyOf": [ - { + "layout": { "typeof": "function" }, - { - "type": [ - "null", - "string" - ] - } - ], - "description": "The function (or path to file or module id) to be run on artifact build start.\nSame setup as {@link beforePack}" - }, - "artifactName": { - "description": "The [artifact file name template](./configuration.md#artifact-file-name-template). Defaults to `${productName}-${version}.${ext}` (some target can have other defaults, see corresponding options).", - "type": [ - "null", - "string" - ] - }, - "asar": { - "anyOf": [ - { - "$ref": "#/definitions/AsarOptions" - }, - { - "type": [ - "null", - "boolean" - ] - } - ], - "default": true, - "description": "Whether to package the application's source code into an archive, using [Electron's archive format](http://electron.atom.io/docs/tutorial/application-packaging/).\n\nNode modules, that must be unpacked, will be detected automatically, you don't need to explicitly set [asarUnpack](#asarUnpack) - please file an issue if this doesn't work." - }, - "asarUnpack": { - "anyOf": [ - { + "appPartStage": { + "description": "Specifies which files from the app part to stage and which to exclude. Individual files, directories, wildcards, globstars, and exclusions are accepted. See [Snapcraft filesets](https://snapcraft.io/docs/snapcraft-filesets) to learn more about the format.\n\nThe defaults can be found in [snap.ts](https://github.com/electron-userland/electron-builder/blob/master/packages/app-builder-lib/templates/snap/snapcraft.yaml#L29).", + "type": "array", "items": { "type": "string" - }, - "type": "array" - }, - { - "type": [ - "null", - "string" - ] - } - ], - "description": "A [glob patterns](./file-patterns.md) relative to the [app directory](#directories), which specifies which files to unpack when creating the [asar](http://electron.atom.io/docs/tutorial/application-packaging/) archive." - }, - "beforeBuild": { - "anyOf": [ - { - "typeof": "function" + } }, - { - "type": [ - "null", - "string" - ] - } - ], - "description": "The function (or path to file or module id) to be run before dependencies are installed or rebuilt. Works when `npmRebuild` is set to `true`. Resolving to `false` will skip dependencies install or rebuild.\n\nIf provided and `node_modules` are missing, it will not invoke production dependencies check." - }, - "beforePack": { - "anyOf": [ - { - "typeof": "function" + "title": { + "description": "An optional title for the snap, may contain uppercase letters and spaces. Defaults to `productName`. See [snap format documentation](https://snapcraft.io/docs/snap-format).", + "type": "string" }, - { - "type": [ - "null", - "string" - ] - } - ], - "description": "The function (or path to file or module id) to be run before pack.\n\n```typescript\n(context: BeforePackContext): Promise | any\n```\n\n!!! example \"As function\"\n\n ```js\n beforePack: async (context) => {\n // your code\n }\n ```\n\nBecause in a configuration file you cannot use JavaScript, can be specified as a path to file or module id. Function must be exported as default export.\n\n```json\n\"build\": {\n\"beforePack\": \"./myBeforePackHook.js\"\n}\n```\n\nFile `myBeforePackHook.js` in the project root directory:\n\n!!! example \"myBeforePackHook.js\"\n ```js\n exports.default = async function(context) {\n // your custom code\n }\n ```" - }, - "buildDependenciesFromSource": { - "default": false, - "description": "Whether to build the application native dependencies from source.", - "type": "boolean" - }, - "buildNumber": { - "description": "The build number. Maps to the `--iteration` flag for builds using FPM on Linux.\nIf not defined, then it will fallback to `BUILD_NUMBER` or `TRAVIS_BUILD_NUMBER` or `APPVEYOR_BUILD_NUMBER` or `CIRCLE_BUILD_NUM` or `BUILD_BUILDNUMBER` or `CI_PIPELINE_IID` env.", - "type": [ - "null", - "string" - ] - }, - "buildVersion": { - "description": "The build version. Maps to the `CFBundleVersion` on macOS, and `FileVersion` metadata property on Windows. Defaults to the `version`.\nIf `buildVersion` is not defined and `buildNumber` (or one of the `buildNumber` envs) is defined, it will be used as a build version (`version.buildNumber`).", - "type": [ - "null", - "string" - ] - }, - "compression": { - "anyOf": [ - { + "compression": { + "description": "Sets the compression type for the snap. Can be xz, lzo, or null.", "enum": [ - "maximum", - "normal", - "store" + "lzo", + "xz" ], "type": "string" }, - { - "type": "null" - } - ], - "default": "normal", - "description": "The compression level. If you want to rapidly test build, `store` can reduce build time significantly. `maximum` doesn't lead to noticeable size difference, but increase build time." - }, - "concurrency": { - "anyOf": [ - { - "$ref": "#/definitions/Concurrency" + "allowNativeWayland": { + "description": "Allow running the program with native wayland support with --ozone-platform=wayland.\nDisabled by default because of this issue in older Electron/Snap versions: https://github.com/electron-userland/electron-builder/issues/4007", + "type": "boolean" }, - { - "type": "null" - } - ], - "description": "[Experimental] Configuration for concurrent builds." - }, - "copyright": { - "default": "Copyright © year ${author}", - "description": "The human-readable copyright line for the app.", - "type": [ - "null", - "string" - ] - }, - "cscKeyPassword": { - "type": [ - "null", - "string" - ] - }, - "cscLink": { - "type": [ - "null", - "string" - ] - }, - "deb": { - "anyOf": [ - { - "$ref": "#/definitions/DebOptions" + "synopsis": { + "description": "The [short description](https://www.debian.org/doc/debian-policy/ch-controlfields.html#s-f-Description).", + "type": "string" }, - { - "type": "null" - } - ], - "description": "Debian package options." - }, - "defaultArch": { - "type": "string" - }, - "detectUpdateChannel": { - "default": true, - "description": "Whether to infer update channel from application version pre-release components. e.g. if version `0.12.1-alpha.1`, channel will be set to `alpha`. Otherwise to `latest`.\nThis does *not* apply to github publishing, which will [never auto-detect the update channel](https://github.com/electron-userland/electron-builder/issues/8589).", - "type": "boolean" - }, - "directories": { - "anyOf": [ - { - "$ref": "#/definitions/MetadataDirectories" + "description": { + "description": "As [description](./configuration.md#description) from application package.json, but allows you to specify different for Linux.", + "type": "string" }, - { - "type": "null" - } - ], - "description": "Directories for build resources" - }, - "disableDefaultIgnoredFiles": { - "default": false, - "description": "Whether to exclude all default ignored files(https://www.electron.build/contents#files) and options. Defaults to `false`.", - "type": [ - "null", - "boolean" - ] - }, - "disableSanityCheckAsar": { - "default": false, - "description": "Whether to disable sanity check asar package (useful for custom electron forks that implement their own encrypted integrity validation)", - "type": "boolean" - }, - "dmg": { - "anyOf": [ - { - "$ref": "#/definitions/DmgOptions" + "category": { + "description": "The [application category](https://specifications.freedesktop.org/menu-spec/latest/apa.html#main-category-registry).", + "type": "string" }, - { - "type": "null" - } - ], - "description": "macOS DMG options." - }, - "downloadAlternateFFmpeg": { - "description": "Whether to download the alternate FFmpeg library from Electron's release assets and replace the default FFmpeg library prior to signing", - "type": "boolean" - }, - "electronBranding": { - "$ref": "#/definitions/ElectronBrandingOptions", - "description": "The branding used by Electron's distributables. This is needed if a fork has modified Electron's BRANDING.json file." - }, - "electronCompile": { - "description": "Whether to use [electron-compile](http://github.com/electron/electron-compile) to compile app. Defaults to `true` if `electron-compile` in the dependencies. And `false` if in the `devDependencies` or doesn't specified.", - "type": "boolean" - }, - "electronDist": { - "anyOf": [ - { - "typeof": "function" + "mimeTypes": { + "description": "The mime types in addition to specified in the file associations. Use it if you don't want to register a new mime type, but reuse existing.", + "type": "array", + "items": { + "type": "string" + } }, - { - "type": [ - "null", - "string" - ] - } - ], - "description": "The function (or path to file or module id) to be run when staging the electron artifact environment.\nReturns the path to custom Electron build (e.g. `~/electron/out/R`) or folder of electron zips.\n\nZip files must follow the pattern `electron-v${version}-${platformName}-${arch}.zip`, otherwise it will be assumed to be an unpacked Electron app directory" - }, - "electronDownload": { - "$ref": "#/definitions/ElectronDownloadOptions", - "description": "The [electron-download](https://github.com/electron-userland/electron-download#usage) options." - }, - "electronFuses": { - "anyOf": [ - { - "$ref": "#/definitions/FuseOptionsV1" + "desktop": { + "$ref": "#/definitions/LinuxDesktopFile", + "description": "The [Desktop file](https://developer.gnome.org/documentation/guidelines/maintainer/integrating.html#desktop-files)" }, - { - "type": "null" - } - ], - "description": "Options to pass to `@electron/fuses`\nRef: https://github.com/electron/fuses" - }, - "electronLanguages": { - "anyOf": [ - { + "executableArgs": { + "description": "The executable parameters. Pass to executableName", + "type": "array", "items": { "type": "string" - }, - "type": "array" + } }, - { + "artifactName": { + "description": "The [artifact file name template](./configuration.md#artifact-file-name-template).", "type": "string" + }, + "publish": { + "$ref": "#/definitions/Publish" } - ], - "description": "The electron locales to keep. By default, all Electron locales used as-is." - }, - "electronUpdaterCompatibility": { - "description": "The [electron-updater compatibility](./auto-update.md#compatibility) semver range.", - "type": [ - "null", - "string" - ] + }, + "additionalProperties": false }, - "electronVersion": { - "description": "The version of electron you are packaging for. Defaults to version of `electron`, `electron-prebuilt` or `electron-prebuilt-compile` dependency.", - "type": [ - "null", - "string" - ] + "PlugDescriptor": { + "type": "object", + "additionalProperties": { + "type": "object" + } }, - "executableName": { - "description": "The executable name. Defaults to `productName`\nNote: Except for Linux, where this would constitute a breaking change in previous behavior and lead to both invalid executable names and Desktop files. Ref comments in: https://github.com/electron-userland/electron-builder/pull/9068", - "type": [ - "null", - "string" - ] + "SlotDescriptor": { + "type": "object", + "additionalProperties": { + "typeof": "function" + } }, - "extends": { - "anyOf": [ - { + "AppImageOptions": { + "type": "object", + "properties": { + "license": { + "description": "The path to EULA license file. Defaults to `license.txt` or `eula.txt` (or uppercase variants). Only plain text is supported.", + "type": "string" + }, + "synopsis": { + "description": "The [short description](https://www.debian.org/doc/debian-policy/ch-controlfields.html#s-f-Description).", + "type": "string" + }, + "description": { + "description": "As [description](./configuration.md#description) from application package.json, but allows you to specify different for Linux.", + "type": "string" + }, + "category": { + "description": "The [application category](https://specifications.freedesktop.org/menu-spec/latest/apa.html#main-category-registry).", + "type": "string" + }, + "mimeTypes": { + "description": "The mime types in addition to specified in the file associations. Use it if you don't want to register a new mime type, but reuse existing.", + "type": "array", "items": { "type": "string" - }, - "type": "array" + } }, - { - "type": [ - "null", - "string" - ] - } - ], - "description": "The name of a built-in configuration preset (currently, only `react-cra` is supported) or any number of paths to config files (relative to project dir).\n\nThe latter allows to mixin a config from multiple other configs, as if you `Object.assign` them, but properly combine `files` glob patterns.\n\nIf `react-scripts` in the app dependencies, `react-cra` will be set automatically. Set to `null` to disable automatic detection." - }, - "extraFiles": { - "anyOf": [ - { - "$ref": "#/definitions/FileSet" + "desktop": { + "$ref": "#/definitions/LinuxDesktopFile", + "description": "The [Desktop file](https://developer.gnome.org/documentation/guidelines/maintainer/integrating.html#desktop-files)" }, - { + "executableArgs": { + "description": "The executable parameters. Pass to executableName", + "type": "array", "items": { - "anyOf": [ - { - "$ref": "#/definitions/FileSet" - }, - { - "type": "string" - } - ] - }, - "type": "array" + "type": "string" + } }, - { - "type": [ - "null", - "string" - ] + "artifactName": { + "description": "The [artifact file name template](./configuration.md#artifact-file-name-template).", + "type": "string" + }, + "publish": { + "$ref": "#/definitions/Publish" } - ], - "description": "The same as [extraResources](#extraresources) but copy into the app's content directory (`Contents` for MacOS, root directory for Linux and Windows)." - }, - "extraMetadata": { - "description": "Inject properties to `package.json`." + }, + "additionalProperties": false }, - "extraResources": { - "anyOf": [ - { - "$ref": "#/definitions/FileSet" + "FlatpakOptions": { + "type": "object", + "properties": { + "license": { + "description": "The path to EULA license file. Defaults to `license.txt` or `eula.txt` (or uppercase variants). Only plain text is supported.", + "type": "string" + }, + "runtime": { + "description": "The name of the runtime that the application uses. Defaults to `org.freedesktop.Platform`.\n\nSee [flatpak manifest documentation](https://docs.flatpak.org/en/latest/flatpak-builder-command-reference.html#flatpak-manifest).", + "type": "string" + }, + "runtimeVersion": { + "description": "The version of the runtime that the application uses. Defaults to `20.08`.\n\nSee [flatpak manifest documentation](https://docs.flatpak.org/en/latest/flatpak-builder-command-reference.html#flatpak-manifest).", + "type": "string" + }, + "sdk": { + "description": "The name of the development runtime that the application builds with. Defaults to `org.freedesktop.Sdk`.\n\nSee [flatpak manifest documentation](https://docs.flatpak.org/en/latest/flatpak-builder-command-reference.html#flatpak-manifest).", + "type": "string" + }, + "base": { + "description": "Start with the files from the specified application. This can be used to create applications that extend another application.\nDefaults to [org.electronjs.Electron2.BaseApp](https://github.com/flathub/org.electronjs.Electron2.BaseApp).\n\nSee [flatpak manifest documentation](https://docs.flatpak.org/en/latest/flatpak-builder-command-reference.html#flatpak-manifest).", + "type": "string" + }, + "baseVersion": { + "description": "Use this specific version of the application specified in base. Defaults to `20.08`.\n\nSee [flatpak manifest documentation](https://docs.flatpak.org/en/latest/flatpak-builder-command-reference.html#flatpak-manifest).", + "type": "string" }, - { + "branch": { + "description": "The branch to use when exporting the application. Defaults to `master`.\n\nSee [flatpak manifest documentation](https://docs.flatpak.org/en/latest/flatpak-builder-command-reference.html#flatpak-manifest).", + "type": "string" + }, + "finishArgs": { + "description": "An array of arguments passed to the flatpak build-finish command. Defaults to:\n```json\n[\n // Wayland/X11 Rendering\n \"--socket=wayland\",\n \"--socket=x11\",\n \"--share=ipc\",\n // Open GL\n \"--device=dri\",\n // Audio output\n \"--socket=pulseaudio\",\n // Read/write home directory access\n \"--filesystem=home\",\n // Allow communication with network\n \"--share=network\",\n // System notifications with libnotify\n \"--talk-name=org.freedesktop.Notifications\",\n]\n```\n\nSee [flatpak manifest documentation](https://docs.flatpak.org/en/latest/flatpak-builder-command-reference.html#flatpak-manifest).", + "type": "array", "items": { - "anyOf": [ + "type": "string" + } + }, + "modules": { + "description": "An array of objects specifying the modules to be built in order.\n\nSee [flatpak manifest documentation](https://docs.flatpak.org/en/latest/flatpak-builder-command-reference.html#flatpak-manifest).", + "type": "array", + "items": {} + }, + "files": { + "description": "Files to copy directly into the app. Should be a list of [source, dest] tuples. Source should be a relative/absolute path to a file/directory to copy into the flatpak, and dest should be the path inside the app install prefix (e.g. /share/applications/).\n\nSee [@malept/flatpak-bundler documentation](https://github.com/malept/flatpak-bundler#build-options).", + "type": "array", + "items": { + "type": "array", + "items": [ { - "$ref": "#/definitions/FileSet" + "type": "string" }, { "type": "string" } - ] - }, - "type": "array" - }, - { - "type": [ - "null", - "string" - ] - } - ], - "description": "A [glob patterns](./file-patterns.md) relative to the project directory, when specified, copy the file or directory with matching names directly into the app's resources directory (`Contents/Resources` for MacOS, `resources` for Linux and Windows).\n\nFile patterns (and support for `from` and `to` fields) the same as for [files](#files)." - }, - "fileAssociations": { - "anyOf": [ - { - "$ref": "#/definitions/FileAssociation" - }, - { - "items": { - "$ref": "#/definitions/FileAssociation" - }, - "type": "array" - } - ], - "description": "The file associations." - }, - "files": { - "anyOf": [ - { - "$ref": "#/definitions/FileSet" + ], + "minItems": 2, + "maxItems": 2 + } }, - { + "symlinks": { + "description": "Symlinks to create in the app files. Should be a list of [target, location] symlink tuples. Target can be either a relative or absolute path inside the app install prefix, and location should be a absolute path inside the prefix to create the symlink at.\n\nSee [@malept/flatpak-bundler documentation](https://github.com/malept/flatpak-bundler#build-options).", + "type": "array", "items": { - "anyOf": [ + "type": "array", + "items": [ { - "$ref": "#/definitions/FileSet" + "type": "string" }, { "type": "string" } - ] - }, - "type": "array" - }, - { - "type": [ - "null", - "string" - ] - } - ], - "description": "A [glob patterns](./file-patterns.md) relative to the [app directory](configuration.md#directories), which specifies which files to include when copying files to create the package.\n\nDefaults to:\n```json\n[\n\"**\\/*\",\n\"!**\\/node_modules/*\\/{CHANGELOG.md,README.md,README,readme.md,readme}\",\n\"!**\\/node_modules/*\\/{test,__tests__,tests,powered-test,example,examples}\",\n\"!**\\/node_modules/*.d.ts\",\n\"!**\\/node_modules/.bin\",\n\"!**\\/*.{iml,o,hprof,orig,pyc,pyo,rbc,swp,csproj,sln,xproj}\",\n\"!.editorconfig\",\n\"!**\\/._*\",\n\"!**\\/{.DS_Store,.git,.hg,.svn,CVS,RCS,SCCS,.gitignore,.gitattributes}\",\n\"!**\\/{__pycache__,thumbs.db,.flowconfig,.idea,.vs,.nyc_output}\",\n\"!**\\/{appveyor.yml,.travis.yml,circle.yml}\",\n\"!**\\/{npm-debug.log,yarn.lock,.yarn-integrity,.yarn-metadata.json}\"\n]\n```\n\nDevelopment dependencies are never copied in any case. You don't need to ignore it explicitly. Hidden files are not ignored by default, but all files that should be ignored, are ignored by default.\n\nDefault pattern \\`**\\/*\\` **is not added to your custom** if some of your patterns is not ignore (i.e. not starts with `!`). `package.json` and \\`**\\/node_modules/**\\/*` (only production dependencies will be copied) is added to your custom in any case. All default ignores are added in any case — you don't need to repeat it if you configure own patterns.\n\nMay be specified in the platform options (e.g. in the [mac](mac.md)).\n\nYou may also specify custom source and destination directories by using `FileSet` objects instead of simple glob patterns.\n\n```json\n[\n{\n\"from\": \"path/to/source\",\n\"to\": \"path/to/destination\",\n\"filter\": [\"**\\/*\", \"!foo/*.js\"]\n}\n]\n```\n\nYou can use [file macros](./file-patterns.md#file-macros) in the `from` and `to` fields as well. `from` and `to` can be files and you can use this to [rename](https://github.com/electron-userland/electron-builder/issues/1119) a file while packaging." - }, - "flatpak": { - "anyOf": [ - { - "$ref": "#/definitions/FlatpakOptions" - }, - { - "type": "null" - } - ], - "description": "Flatpak options." - }, - "forceCodeSigning": { - "default": false, - "description": "Whether to fail if the application is not signed (to prevent unsigned app if code signing configuration is not correct).", - "type": "boolean" - }, - "framework": { - "description": "The framework name. One of `electron`, `proton`, `libui`. Defaults to `electron`.", - "type": [ - "null", - "string" - ] - }, - "freebsd": { - "anyOf": [ - { - "$ref": "#/definitions/LinuxTargetSpecificOptions" - }, - { - "type": "null" - } - ] - }, - "generateUpdatesFilesForAllChannels": { - "default": false, - "description": "Please see [Building and Releasing using Channels](https://github.com/electron-userland/electron-builder/issues/1182#issuecomment-324947139).", - "type": "boolean" - }, - "icon": { - "type": [ - "null", - "string" - ] - }, - "includePdb": { - "default": false, - "description": "Whether to include PDB files.", - "type": "boolean" - }, - "launchUiVersion": { - "description": "*libui-based frameworks only* The version of LaunchUI you are packaging for. Applicable for Windows only. Defaults to version suitable for used framework version.", - "type": [ - "null", - "string", - "boolean" - ] - }, - "linux": { - "anyOf": [ - { - "$ref": "#/definitions/LinuxConfiguration" - }, - { - "type": "null" - } - ], - "description": "Options related to how build Linux targets." - }, - "mac": { - "anyOf": [ - { - "$ref": "#/definitions/MacConfiguration" - }, - { - "type": "null" - } - ], - "description": "Options related to how build macOS targets." - }, - "mas": { - "anyOf": [ - { - "$ref": "#/definitions/MasConfiguration" - }, - { - "type": "null" - } - ], - "description": "MAS (Mac Application Store) options." - }, - "masDev": { - "anyOf": [ - { - "$ref": "#/definitions/MasConfiguration" + ], + "minItems": 2, + "maxItems": 2 + } }, - { - "type": "null" - } - ], - "description": "MAS (Mac Application Store) development options (`mas-dev` target)." - }, - "msi": { - "anyOf": [ - { - "$ref": "#/definitions/MsiOptions" + "useWaylandFlags": { + "description": "Whether to enable the Wayland specific flags (`--enable-features=UseOzonePlatform --ozone-platform=wayland`) in the wrapper script. These flags are only available starting with Electron version 12. Defaults to `false`.", + "type": "boolean" }, - { - "type": "null" - } - ] - }, - "msiProjectCreated": { - "anyOf": [ - { - "typeof": "function" + "synopsis": { + "description": "The [short description](https://www.debian.org/doc/debian-policy/ch-controlfields.html#s-f-Description).", + "type": "string" }, - { - "type": [ - "null", - "string" - ] - } - ], - "description": "The function (or path to file or module id) to be run after MSI project created on disk - not packed into .msi package yet." - }, - "msiWrapped": { - "anyOf": [ - { - "$ref": "#/definitions/MsiWrappedOptions" + "description": { + "description": "As [description](./configuration.md#description) from application package.json, but allows you to specify different for Linux.", + "type": "string" }, - { - "type": "null" - } - ] - }, - "nativeRebuilder": { - "anyOf": [ - { - "enum": [ - "legacy", - "parallel", - "sequential" - ], + "category": { + "description": "The [application category](https://specifications.freedesktop.org/menu-spec/latest/apa.html#main-category-registry).", "type": "string" }, - { - "type": "null" - } - ], - "default": "sequential", - "description": "Use `legacy` app-builder binary for installing native dependencies, or `@electron/rebuild` in `sequential` or `parallel` compilation modes." - }, - "nodeGypRebuild": { - "default": false, - "description": "Whether to execute `node-gyp rebuild` before starting to package the app.\n\nDon't [use](https://github.com/electron-userland/electron-builder/issues/683#issuecomment-241214075) [npm](http://electron.atom.io/docs/tutorial/using-native-node-modules/#using-npm) (neither `.npmrc`) for configuring electron headers. Use `electron-builder node-gyp-rebuild` instead.", - "type": "boolean" - }, - "nodeVersion": { - "description": "*libui-based frameworks only* The version of NodeJS you are packaging for.\nYou can set it to `current` to set the Node.js version that you use to run.", - "type": [ - "null", - "string" - ] - }, - "npmArgs": { - "anyOf": [ - { + "mimeTypes": { + "description": "The mime types in addition to specified in the file associations. Use it if you don't want to register a new mime type, but reuse existing.", + "type": "array", "items": { "type": "string" - }, - "type": "array" + } }, - { - "type": [ - "null", - "string" - ] - } - ], - "description": "Additional command line arguments to use when installing app native deps." - }, - "npmRebuild": { - "default": true, - "description": "Whether to [rebuild](https://docs.npmjs.com/cli/rebuild) native dependencies before starting to package the app.", - "type": "boolean" - }, - "nsis": { - "anyOf": [ - { - "$ref": "#/definitions/NsisOptions" + "desktop": { + "$ref": "#/definitions/LinuxDesktopFile", + "description": "The [Desktop file](https://developer.gnome.org/documentation/guidelines/maintainer/integrating.html#desktop-files)" }, - { - "type": "null" - } - ] - }, - "nsisWeb": { - "anyOf": [ - { - "$ref": "#/definitions/NsisWebOptions" + "executableArgs": { + "description": "The executable parameters. Pass to executableName", + "type": "array", + "items": { + "type": "string" + } }, - { - "type": "null" - } - ] - }, - "onNodeModuleFile": { - "anyOf": [ - { - "typeof": "function" + "artifactName": { + "description": "The [artifact file name template](./configuration.md#artifact-file-name-template).", + "type": "string" }, - { - "type": [ - "null", - "string" - ] + "publish": { + "$ref": "#/definitions/Publish" } - ], - "description": "The function (or path to file or module id) to be [run on each node module](#onnodemodulefile) file. Returning `true`/`false` will determine whether to force include or to use the default copier logic" + }, + "additionalProperties": false }, - "p5p": { - "anyOf": [ - { - "$ref": "#/definitions/LinuxTargetSpecificOptions" + "LinuxTargetSpecificOptions": { + "type": "object", + "properties": { + "depends": { + "description": "Package dependencies.\n`rpm` defaults to `[\"gtk3\", \"libnotify\", \"nss\", \"libXScrnSaver\", \"(libXtst or libXtst6)\", \"xdg-utils\", \"at-spi2-core\", \"(libuuid or libuuid1)\"]`\n`pacman` defaults to `[\"c-ares\", \"ffmpeg\", \"gtk3\", \"http-parser\", \"libevent\", \"libvpx\", \"libxslt\", \"libxss\", \"minizip\", \"nss\", \"re2\", \"snappy\", \"libnotify\", \"libappindicator-gtk3\"]`", + "type": "array", + "items": { + "type": "string" + } }, - { - "type": "null" - } - ] - }, - "pacman": { - "anyOf": [ - { - "$ref": "#/definitions/LinuxTargetSpecificOptions" + "compression": { + "description": "The compression type.", + "default": "xz", + "enum": [ + "bzip2", + "gz", + "lzo", + "xz" + ], + "type": "string" }, - { - "type": "null" - } - ] - }, - "pkg": { - "anyOf": [ - { - "$ref": "#/definitions/PkgOptions" + "icon": { + "type": "string" }, - { - "type": "null" - } - ], - "description": "macOS PKG options." - }, - "portable": { - "anyOf": [ - { - "$ref": "#/definitions/PortableOptions" + "packageCategory": { + "description": "The package category.", + "type": "string" }, - { - "type": "null" - } - ] - }, - "productName": { - "description": "As [name](#metadata), but allows you to specify a product name for your executable which contains spaces and other special characters not allowed in the [name property](https://docs.npmjs.com/files/package.json#name).\nIf not specified inside of the `build` configuration, `productName` property defined at the top level of `package.json` is used. If not specified at the top level of `package.json`, [name property](https://docs.npmjs.com/files/package.json#name) is used.", - "type": [ - "null", - "string" - ] - }, - "protocols": { - "anyOf": [ - { - "$ref": "#/definitions/Protocol" + "packageName": { + "description": "The name of the package.", + "type": "string" }, - { - "items": { - "$ref": "#/definitions/Protocol" - }, - "type": "array" - } - ], - "description": "The URL protocol schemes." - }, - "publish": { - "anyOf": [ - { - "$ref": "#/definitions/GithubOptions" + "vendor": { + "type": "string" }, - { - "$ref": "#/definitions/GitlabOptions" + "maintainer": { + "type": "string" }, - { - "$ref": "#/definitions/S3Options" + "afterInstall": { + "description": "File path to script to be passed to FPM for `--after-install` arg.", + "type": "string" }, - { - "$ref": "#/definitions/SpacesOptions" + "afterRemove": { + "description": "File path to script to be passed to FPM for `--after-remove` arg.", + "type": "string" }, - { - "$ref": "#/definitions/GenericServerOptions" + "appArmorProfile": { + "description": "File path to custom AppArmor profile (Ubuntu 24+)", + "type": "string" }, - { - "$ref": "#/definitions/CustomPublishOptions" + "fpm": { + "description": "*Advanced only* The [fpm](https://fpm.readthedocs.io/en/latest/cli-reference.html) options.\n\nExample: `[\"--before-install=build/deb-preinstall.sh\", \"--after-upgrade=build/deb-postinstall.sh\"]`", + "type": "array", + "items": { + "type": "string" + } }, - { - "$ref": "#/definitions/KeygenOptions" + "synopsis": { + "description": "The [short description](https://www.debian.org/doc/debian-policy/ch-controlfields.html#s-f-Description).", + "type": "string" }, - { - "$ref": "#/definitions/SnapStoreOptions" + "description": { + "description": "As [description](./configuration.md#description) from application package.json, but allows you to specify different for Linux.", + "type": "string" }, - { - "$ref": "#/definitions/BitbucketOptions" + "category": { + "description": "The [application category](https://specifications.freedesktop.org/menu-spec/latest/apa.html#main-category-registry).", + "type": "string" }, - { + "mimeTypes": { + "description": "The mime types in addition to specified in the file associations. Use it if you don't want to register a new mime type, but reuse existing.", + "type": "array", "items": { - "$ref": "#/definitions/AllPublishOptions" - }, - "type": "array" + "type": "string" + } }, - { - "type": [ - "null", - "string" - ] - } - ], - "description": "Publisher configuration. See [Auto Update](./publish.md) for more information." - }, - "releaseInfo": { - "$ref": "#/definitions/ReleaseInfo", - "description": "The release info. Intended for command line usage:\n\n```\n-c.releaseInfo.releaseNotes=\"new features\"\n```" - }, - "removePackageKeywords": { - "default": true, - "description": "Whether to remove `keywords` field from `package.json` files.", - "type": "boolean" - }, - "removePackageScripts": { - "default": true, - "description": "Whether to remove `scripts` field from `package.json` files.", - "type": "boolean" - }, - "rpm": { - "anyOf": [ - { - "$ref": "#/definitions/LinuxTargetSpecificOptions" + "desktop": { + "$ref": "#/definitions/LinuxDesktopFile", + "description": "The [Desktop file](https://developer.gnome.org/documentation/guidelines/maintainer/integrating.html#desktop-files)" }, - { - "type": "null" - } - ] - }, - "snap": { - "anyOf": [ - { - "$ref": "#/definitions/SnapOptions" + "executableArgs": { + "description": "The executable parameters. Pass to executableName", + "type": "array", + "items": { + "type": "string" + } }, - { - "type": "null" - } - ], - "description": "Snap options." - }, - "squirrelWindows": { - "anyOf": [ - { - "$ref": "#/definitions/SquirrelWindowsOptions" + "artifactName": { + "description": "The [artifact file name template](./configuration.md#artifact-file-name-template).", + "type": "string" }, - { - "type": "null" + "publish": { + "$ref": "#/definitions/Publish" } - ] + }, + "additionalProperties": false }, - "target": { - "anyOf": [ - { - "$ref": "#/definitions/TargetConfiguration" + "FuseOptionsV1": { + "description": "All options come from [@electron/fuses](https://github.com/electron/fuses)\nRef: https://raw.githubusercontent.com/electron/electron/refs/heads/main/docs/tutorial/fuses.md", + "type": "object", + "properties": { + "runAsNode": { + "description": "The runAsNode fuse toggles whether the `ELECTRON_RUN_AS_NODE` environment variable is respected or not. Please note that if this fuse is disabled then `process.fork` in the main process will not function as expected as it depends on this environment variable to function. Instead, we recommend that you use [Utility Processes](https://github.com/electron/electron/blob/main/docs/api/utility-process.md), which work for many use cases where you need a standalone Node.js process (like a Sqlite server process or similar scenarios).", + "type": "boolean" }, - { - "items": { - "anyOf": [ - { - "$ref": "#/definitions/TargetConfiguration" - }, - { - "type": "string" - } - ] - }, - "type": "array" + "enableCookieEncryption": { + "description": "The cookieEncryption fuse toggles whether the cookie store on disk is encrypted using OS level cryptography keys. By default the sqlite database that Chromium uses to store cookies stores the values in plaintext. If you wish to ensure your apps cookies are encrypted in the same way Chrome does then you should enable this fuse. Please note it is a one-way transition, if you enable this fuse existing unencrypted cookies will be encrypted-on-write but if you then disable the fuse again your cookie store will effectively be corrupt and useless. Most apps can safely enable this fuse.", + "type": "boolean" }, - { - "type": [ - "null", - "string" - ] - } - ] - }, - "win": { - "anyOf": [ - { - "$ref": "#/definitions/WindowsConfiguration" + "enableNodeOptionsEnvironmentVariable": { + "description": "The nodeOptions fuse toggles whether the [`NODE_OPTIONS`](https://nodejs.org/api/cli.html#node_optionsoptions) and [`NODE_EXTRA_CA_CERTS`](https://github.com/nodejs/node/blob/main/doc/api/cli.md#node_extra_ca_certsfile) environment variables are respected. The `NODE_OPTIONS` environment variable can be used to pass all kinds of custom options to the Node.js runtime and isn't typically used by apps in production. Most apps can safely disable this fuse.", + "type": "boolean" }, - { - "type": "null" + "enableNodeCliInspectArguments": { + "description": "The nodeCliInspect fuse toggles whether the `--inspect`, `--inspect-brk`, etc. flags are respected or not. When disabled it also ensures that `SIGUSR1` signal does not initialize the main process inspector. Most apps can safely disable this fuse.", + "type": "boolean" + }, + "enableEmbeddedAsarIntegrityValidation": { + "description": "The embeddedAsarIntegrityValidation fuse toggles an experimental feature on macOS that validates the content of the `app.asar` file when it is loaded. This feature is designed to have a minimal performance impact but may marginally slow down file reads from inside the `app.asar` archive.\nCurrently, ASAR integrity checking is supported on:\n\n - macOS as of electron>=16.0.0\n - Windows as of electron>=30.0.0\n\nFor more information on how to use asar integrity validation please read the [Asar Integrity](https://github.com/electron/electron/blob/main/docs/tutorial/asar-integrity.md) documentation.", + "type": "boolean" + }, + "onlyLoadAppFromAsar": { + "description": "The onlyLoadAppFromAsar fuse changes the search system that Electron uses to locate your app code. By default Electron will search in the following order `app.asar` -> `app` -> `default_app.asar`. When this fuse is enabled the search order becomes a single entry `app.asar` thus ensuring that when combined with the `embeddedAsarIntegrityValidation` fuse it is impossible to load non-validated code.", + "type": "boolean" + }, + "loadBrowserProcessSpecificV8Snapshot": { + "description": "The loadBrowserProcessSpecificV8Snapshot fuse changes which V8 snapshot file is used for the browser process. By default Electron's processes will all use the same V8 snapshot file. When this fuse is enabled the browser process uses the file called `browser_v8_context_snapshot.bin` for its V8 snapshot. The other processes will use the V8 snapshot file that they normally do.", + "type": "boolean" + }, + "grantFileProtocolExtraPrivileges": { + "description": "The grantFileProtocolExtraPrivileges fuse changes whether pages loaded from the `file://` protocol are given privileges beyond what they would receive in a traditional web browser. This behavior was core to Electron apps in original versions of Electron but is no longer required as apps should be [serving local files from custom protocols](https://github.com/electron/electron/blob/main/docs/tutorial/security.md#18-avoid-usage-of-the-file-protocol-and-prefer-usage-of-custom-protocols) now instead. If you aren't serving pages from `file://` you should disable this fuse.\nThe extra privileges granted to the `file://` protocol by this fuse are incompletely documented below:\n\n - `file://` protocol pages can use `fetch` to load other assets over `file://`\n - `file://` protocol pages can use service workers\n - `file://` protocol pages have universal access granted to child frames also running on `file://` protocols regardless of sandbox settings", + "type": "boolean" + }, + "resetAdHocDarwinSignature": { + "description": "Resets the app signature, specifically used for macOS.\nNote: This should be unneeded since electron-builder signs the app directly after flipping the fuses.\nRef: https://github.com/electron/fuses?tab=readme-ov-file#apple-silicon", + "type": "boolean" } - ], - "description": "Options related to how build Windows targets." + }, + "additionalProperties": false }, - "$schema": { - "description": "JSON Schema for this document.", - "type": [ - "null", - "string" + "Concurrency": { + "type": "object", + "properties": { + "jobs": { + "description": "The maximum number of concurrent jobs to run.", + "default": 1, + "type": "number" + } + }, + "additionalProperties": false, + "required": [ + "jobs" ] } }, - "type": "object" + "$schema": "http://json-schema.org/draft-07/schema#" } \ No newline at end of file diff --git a/scripts/fix-schema.js b/scripts/fix-schema.js deleted file mode 100644 index c0cd8c95c26..00000000000 --- a/scripts/fix-schema.js +++ /dev/null @@ -1,38 +0,0 @@ -const fs = require("fs") -const path = require("path") - -const schemaFile = path.join(__dirname, "../packages/app-builder-lib/scheme.json") -const schema = JSON.parse(fs.readFileSync(schemaFile, "utf-8")) - -let o = schema.definitions.PlugDescriptor.additionalProperties.anyOf[0] -delete o.typeof -o.type = "object" - -schema.definitions.OutgoingHttpHeaders.additionalProperties = { - "anyOf": [ - { - "items": { - "type": "string" - }, - "type": "array" - }, - { - "type": [ - "string", - "number" - ] - } - ] -} - -o = schema.definitions.SnapOptions.properties.environment.anyOf[0] = { - additionalProperties: { type: "string" }, - type: "object", -} - -o = schema.properties["$schema"] = { - "description": "JSON Schema for this document.", - "type": ["null", "string"], -} - -fs.writeFileSync(schemaFile, JSON.stringify(schema, null, 2)) diff --git a/scripts/generate-schema.ts b/scripts/generate-schema.ts index e19a289ea7d..9fa97720530 100644 --- a/scripts/generate-schema.ts +++ b/scripts/generate-schema.ts @@ -12,12 +12,13 @@ const compilerOptions: TJS.CompilerOptions = { baseUrl: rootDir, esModuleInterop: false, forceConsistentCasingInFileNames: true, - moduleResolution: TypeScript.ModuleResolutionKind.Node10, + moduleResolution: TypeScript.ModuleResolutionKind.Node10 as any, skipLibCheck: true, - strict: true, - noUnusedLocals: true, + // strict: true, + // noUnusedLocals: true, noFallthroughCasesInSwitch: true, - noImplicitReturns: true, + // noImplicitReturns: true, + noEmit: true, inlineSources: true, sourceMap: true, @@ -33,18 +34,22 @@ const compilerOptions: TJS.CompilerOptions = { "../typings", "../../typings", // - "../node_module/@types", - "node_module/@types" - ], + "../node_modules/@types", + "app-builder-lib/typings", + "node_modules/@types" + ].map(it => path.resolve(rootDir, it)), } // schema generator args const settings: TJS.PartialArgs = { required: true, + // ref: false, + // aliasRef: true, noExtraProps: true, typeOfKeyword: true, strictNullChecks: true, skipLibCheck: true, + ignoreErrors: true, } const definitionFile = path.resolve(rootDir, "app-builder-lib/src/configuration.ts") @@ -53,7 +58,7 @@ const generator = TJS.buildGenerator(program, settings) const schema = TJS.generateSchema(program, "Configuration", settings, [], generator!) const PlugDescriptor: any = schema!.definitions!.PlugDescriptor -PlugDescriptor.additionalProperties!.anyOf![0] = { +PlugDescriptor.additionalProperties = { type: "object", } @@ -73,7 +78,7 @@ OutgoingHttpHeaders.additionalProperties = { } const SnapOptions: any = schema!.definitions!.SnapOptions -SnapOptions.properties.environment!.anyOf![0] = { +SnapOptions.properties.environment = { additionalProperties: { type: "string" }, type: "object", } From d77a294aaff77302c23271236e5a6b8e334ac9f8 Mon Sep 17 00:00:00 2001 From: Mike Maietta Date: Fri, 13 Feb 2026 16:26:02 -0800 Subject: [PATCH 18/61] pre-release cut --- .changeset/config.release-v27.json | 23 +++++++++++++++++++++++ .changeset/cute-goats-kiss.md | 12 ++++++++++++ .changeset/pre.json | 20 ++++++++++++++++++++ .github/workflows/pr-release.yml | 1 + 4 files changed, 56 insertions(+) create mode 100644 .changeset/config.release-v27.json create mode 100644 .changeset/cute-goats-kiss.md create mode 100644 .changeset/pre.json diff --git a/.changeset/config.release-v27.json b/.changeset/config.release-v27.json new file mode 100644 index 00000000000..a5d628bbcf7 --- /dev/null +++ b/.changeset/config.release-v27.json @@ -0,0 +1,23 @@ +{ + "$schema": "https://unpkg.com/@changesets/config@3.0.0/schema.json", + "changelog": ["changesets-changelog-clean", { "repo": "electron-userland/electron-builder" }], + "commit": false, + "linked": [[ + "app-builder-lib", + "builder-util", + "dmg-builder", + "electron-builder", + "electron-builder-squirrel-windows", + "electron-publish" + ]], + "access": "public", + "baseBranch": "release/v27", + "updateInternalDependencies": "patch", + "ignore": [ + "electron-forge-maker-appimage", + "electron-forge-maker-nsis", + "electron-forge-maker-nsis-web", + "electron-forge-maker-snap", + "@electron-builder/test" + ] +} \ No newline at end of file diff --git a/.changeset/cute-goats-kiss.md b/.changeset/cute-goats-kiss.md new file mode 100644 index 00000000000..b357953901c --- /dev/null +++ b/.changeset/cute-goats-kiss.md @@ -0,0 +1,12 @@ +--- +"app-builder-lib": major +"builder-util": major +"builder-util-runtime": major +"dmg-builder": major +"electron-builder": major +"electron-builder-squirrel-windows": major +"electron-publish": major +"electron-updater": major +--- + +chore: release cut of v27 diff --git a/.changeset/pre.json b/.changeset/pre.json new file mode 100644 index 00000000000..bb23527de2d --- /dev/null +++ b/.changeset/pre.json @@ -0,0 +1,20 @@ +{ + "mode": "pre", + "tag": "alpha", + "initialVersions": { + "app-builder-lib": "26.8.0", + "builder-util": "26.8.0", + "builder-util-runtime": "9.5.1", + "dmg-builder": "26.8.0", + "electron-builder": "26.8.0", + "electron-builder-squirrel-windows": "26.8.0", + "electron-forge-maker-appimage": "26.8.0", + "electron-forge-maker-nsis": "26.8.0", + "electron-forge-maker-nsis-web": "26.8.0", + "electron-forge-maker-snap": "26.8.0", + "electron-publish": "26.8.0", + "electron-updater": "6.8.3", + "@electron-builder/test": "0.0.0" + }, + "changesets": [] +} diff --git a/.github/workflows/pr-release.yml b/.github/workflows/pr-release.yml index 57d37b28558..14e1aca38da 100644 --- a/.github/workflows/pr-release.yml +++ b/.github/workflows/pr-release.yml @@ -4,6 +4,7 @@ on: push: branches: - master + - release/v27 concurrency: group: ${{ github.workflow }}-${{ github.ref }} From 4a95a0d2b8acd4025b45f0805593c34a82bc0090 Mon Sep 17 00:00:00 2001 From: Mike Maietta Date: Wed, 18 Feb 2026 10:52:35 -0800 Subject: [PATCH 19/61] chore: adding release/v27 release branch to github actions workflows --- .github/workflows/pr-release.yml | 2 +- .github/workflows/test.yaml | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/pr-release.yml b/.github/workflows/pr-release.yml index 57d37b28558..9828280ce5a 100644 --- a/.github/workflows/pr-release.yml +++ b/.github/workflows/pr-release.yml @@ -4,7 +4,7 @@ on: push: branches: - master - + - release/v* concurrency: group: ${{ github.workflow }}-${{ github.ref }} cancel-in-progress: false diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml index cab9d38d2b1..3f9defbb795 100644 --- a/.github/workflows/test.yaml +++ b/.github/workflows/test.yaml @@ -4,6 +4,7 @@ on: push: branches: - master + - release/v* pull_request: workflow_call: inputs: From a27e2f09570c83a5d9afb2f8478d62ac53d05836 Mon Sep 17 00:00:00 2001 From: Mike Maietta Date: Wed, 18 Feb 2026 10:54:53 -0800 Subject: [PATCH 20/61] update branch naming system --- .github/workflows/pr-release.yml | 22 ++++++++++++---------- 1 file changed, 12 insertions(+), 10 deletions(-) diff --git a/.github/workflows/pr-release.yml b/.github/workflows/pr-release.yml index 9828280ce5a..5760d99c01e 100644 --- a/.github/workflows/pr-release.yml +++ b/.github/workflows/pr-release.yml @@ -45,14 +45,15 @@ jobs: echo "tag=next" >> $GITHUB_OUTPUT echo "branch_type=prerelease" >> $GITHUB_OUTPUT echo "config_file=config.json" >> $GITHUB_OUTPUT - elif [[ "$BRANCH" =~ ^release/v[0-9]+\.x$ ]]; then - # Extract version from branch name (e.g., release/v26.x -> v26) - VERSION=$(echo "$BRANCH" | sed -E 's/^release\/v([0-9]+)\.x$/v\1/') - # Validate that sed extraction worked correctly + elif [[ "$BRANCH" =~ ^release/v[0-9]+$ ]]; then + # Extract version from branch name (e.g., release/v27 -> v27) + VERSION=$(echo "$BRANCH" | sed -E 's/^release\/(v[0-9]+)$/\1/') + + # Validate extraction if [[ ! "$VERSION" =~ ^v[0-9]+$ ]]; then echo "::error::Failed to extract valid version from branch: $BRANCH" - echo "::error::Expected format: release/v{major}.x (e.g., release/v26.x)" + echo "::error::Expected format: release/v{major} (e.g., release/v27)" echo "::error::Extracted version: $VERSION" exit 1 fi @@ -60,17 +61,18 @@ jobs: echo "tag=$VERSION" >> $GITHUB_OUTPUT echo "branch_type=lts" >> $GITHUB_OUTPUT echo "config_file=config.release-$VERSION.json" >> $GITHUB_OUTPUT + else echo "::error::Unsupported branch for release: $BRANCH" - echo "::error::Expected 'master' or 'release/v{major}.x' (e.g., 'release/v26.x')" + echo "::error::Expected 'master' or 'release/v{major}' (e.g., 'release/v27')" exit 1 fi - # Log the determined values for debugging + # Log determined values echo "Branch: $BRANCH" - echo "Dist-tag: $(cat $GITHUB_OUTPUT | grep '^tag=' | cut -d= -f2)" - echo "Branch type: $(cat $GITHUB_OUTPUT | grep '^branch_type=' | cut -d= -f2)" - echo "Config file: $(cat $GITHUB_OUTPUT | grep '^config_file=' | cut -d= -f2)" + echo "Dist-tag: $(grep '^tag=' $GITHUB_OUTPUT | cut -d= -f2)" + echo "Branch type: $(grep '^branch_type=' $GITHUB_OUTPUT | cut -d= -f2)" + echo "Config file: $(grep '^config_file=' $GITHUB_OUTPUT | cut -d= -f2)" - name: Link changeset config for this branch run: | From 4737f2d1147c248fb856cbec86698de9d4f9d466 Mon Sep 17 00:00:00 2001 From: Mike Maietta Date: Wed, 18 Feb 2026 15:20:49 -0800 Subject: [PATCH 21/61] chore: updating snapshots again by pinning dependencies in snapshot tests (#9599) --- test/snapshots/HoistedNodeModuleTest.js.snap | 8824 ++++++------------ test/src/HoistedNodeModuleTest.ts | 40 +- test/src/packageManagerTest.ts | 8 +- 3 files changed, 2820 insertions(+), 6052 deletions(-) diff --git a/test/snapshots/HoistedNodeModuleTest.js.snap b/test/snapshots/HoistedNodeModuleTest.js.snap index 0374351edec..984739270c1 100644 --- a/test/snapshots/HoistedNodeModuleTest.js.snap +++ b/test/snapshots/HoistedNodeModuleTest.js.snap @@ -29625,11 +29625,11 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen { "files": { "index.html": { - "offset": 18214930, + "offset": 18214380, "size": 850, }, "index.js": { - "offset": 18215770, + "offset": 18215220, "size": 2510, }, "node_modules": { @@ -35215,20 +35215,20 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen "files": { "index.cjs.js": { "offset": 11235840, - "size": 163290, + "size": 163060, }, "markdown-it.js": { - "offset": 11399130, - "size": 299160, + "offset": 11398890, + "size": 298980, }, "markdown-it.min.js": { - "offset": 11698280, - "size": 123530, + "offset": 11697870, + "size": 123620, }, }, }, "index.mjs": { - "offset": 11821810, + "offset": 11821490, "size": 50, }, "lib": { @@ -35236,15 +35236,15 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen "common": { "files": { "html_blocks.mjs": { - "offset": 11821850, + "offset": 11821530, "size": 800, }, "html_re.mjs": { - "offset": 11822650, + "offset": 11822330, "size": 1000, }, "utils.mjs": { - "offset": 11823640, + "offset": 11823320, "size": 7900, }, }, @@ -35252,111 +35252,111 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen "helpers": { "files": { "index.mjs": { - "offset": 11831540, + "offset": 11831220, "size": 280, }, "parse_link_destination.mjs": { - "offset": 11831810, + "offset": 11831490, "size": 1550, }, "parse_link_label.mjs": { - "offset": 11833360, + "offset": 11833030, "size": 990, }, "parse_link_title.mjs": { - "offset": 11834340, + "offset": 11834020, "size": 1860, }, }, }, "index.mjs": { - "offset": 11836190, + "offset": 11835870, "size": 17900, }, "parser_block.mjs": { - "offset": 11854090, + "offset": 11853770, "size": 3990, }, "parser_core.mjs": { - "offset": 11858080, + "offset": 11857750, "size": 1510, }, "parser_inline.mjs": { - "offset": 11859590, + "offset": 11859260, "size": 5440, }, "presets": { "files": { "commonmark.mjs": { - "offset": 11865020, + "offset": 11864700, "size": 1910, }, "default.mjs": { - "offset": 11866930, + "offset": 11866610, "size": 1290, }, "zero.mjs": { - "offset": 11868210, + "offset": 11867890, "size": 1660, }, }, }, "renderer.mjs": { - "offset": 11869860, + "offset": 11869540, "size": 8930, }, "ruler.mjs": { - "offset": 11878790, + "offset": 11878470, "size": 8480, }, "rules_block": { "files": { "blockquote.mjs": { - "offset": 11887270, + "offset": 11886950, "size": 6060, }, "code.mjs": { - "offset": 11893330, + "offset": 11893000, "size": 690, }, "fence.mjs": { - "offset": 11894010, + "offset": 11893690, "size": 2420, }, "heading.mjs": { - "offset": 11896420, + "offset": 11896100, "size": 1500, }, "hr.mjs": { - "offset": 11897920, + "offset": 11897600, "size": 1070, }, "html_block.mjs": { - "offset": 11898990, + "offset": 11898670, "size": 2200, }, "lheading.mjs": { - "offset": 11901190, + "offset": 11900870, "size": 2490, }, "list.mjs": { - "offset": 11903680, + "offset": 11903350, "size": 9110, }, "paragraph.mjs": { - "offset": 11912780, + "offset": 11912460, "size": 1460, }, "reference.mjs": { - "offset": 11914240, + "offset": 11913920, "size": 5830, }, "state_block.mjs": { - "offset": 11920070, + "offset": 11919740, "size": 5900, }, "table.mjs": { - "offset": 11925960, + "offset": 11925640, "size": 7090, }, }, @@ -35364,35 +35364,35 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen "rules_core": { "files": { "block.mjs": { - "offset": 11933050, + "offset": 11932730, "size": 340, }, "inline.mjs": { - "offset": 11933380, + "offset": 11933060, "size": 290, }, "linkify.mjs": { - "offset": 11933670, + "offset": 11933350, "size": 4250, }, "normalize.mjs": { - "offset": 11937920, + "offset": 11937600, "size": 360, }, "replacements.mjs": { - "offset": 11938270, + "offset": 11937950, "size": 2640, }, "smartquotes.mjs": { - "offset": 11940900, + "offset": 11940580, "size": 5730, }, "state_core.mjs": { - "offset": 11946630, + "offset": 11946300, "size": 330, }, "text_join.mjs": { - "offset": 11946950, + "offset": 11946630, "size": 1150, }, }, @@ -35400,69 +35400,69 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen "rules_inline": { "files": { "autolink.mjs": { - "offset": 11948100, + "offset": 11947780, "size": 2020, }, "backticks.mjs": { - "offset": 11950110, + "offset": 11949790, "size": 1680, }, "balance_pairs.mjs": { - "offset": 11951790, + "offset": 11951460, "size": 4090, }, "emphasis.mjs": { - "offset": 11955870, + "offset": 11955550, "size": 3520, }, "entity.mjs": { - "offset": 11959390, + "offset": 11959070, "size": 1490, }, "escape.mjs": { - "offset": 11960880, + "offset": 11960550, "size": 1420, }, "fragments_join.mjs": { - "offset": 11962300, + "offset": 11961970, "size": 1270, }, "html_inline.mjs": { - "offset": 11963560, + "offset": 11963240, "size": 1170, }, "image.mjs": { - "offset": 11964730, + "offset": 11964400, "size": 3640, }, "link.mjs": { - "offset": 11968360, + "offset": 11968040, "size": 3730, }, "linkify.mjs": { - "offset": 11972090, - "size": 1910, + "offset": 11971770, + "size": 1680, }, "newline.mjs": { - "offset": 11973990, + "offset": 11973440, "size": 1200, }, "state_inline.mjs": { - "offset": 11975190, + "offset": 11974640, "size": 3500, }, "strikethrough.mjs": { - "offset": 11978680, + "offset": 11978130, "size": 2940, }, "text.mjs": { - "offset": 11981620, + "offset": 11981070, "size": 2110, }, }, }, "token.mjs": { - "offset": 11983720, + "offset": 11983170, "size": 3800, }, }, @@ -35472,163 +35472,163 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen "entities": { "files": { "LICENSE": { - "offset": 11989290, + "offset": 11988740, "size": 1260, }, "lib": { "files": { "decode.d.ts.map": { - "offset": 11990550, + "offset": 11990000, "size": 2210, }, "decode.js": { - "offset": 11992760, + "offset": 11992210, "size": 22620, }, "decode.js.map": { - "offset": 12015370, + "offset": 12014820, "size": 11600, }, "decode_codepoint.d.ts.map": { - "offset": 12026960, + "offset": 12026410, "size": 400, }, "decode_codepoint.js": { - "offset": 12027360, + "offset": 12026810, "size": 2320, }, "decode_codepoint.js.map": { - "offset": 12029670, + "offset": 12029120, "size": 1910, }, "encode.d.ts.map": { - "offset": 12031580, + "offset": 12031030, "size": 340, }, "encode.js": { - "offset": 12031910, + "offset": 12031360, "size": 2970, }, "encode.js.map": { - "offset": 12034880, + "offset": 12034330, "size": 1840, }, "escape.d.ts.map": { - "offset": 12036720, + "offset": 12036160, "size": 590, }, "escape.js": { - "offset": 12037300, + "offset": 12036750, "size": 4320, }, "escape.js.map": { - "offset": 12041610, + "offset": 12041060, "size": 2880, }, "esm": { "files": { "decode.d.ts.map": { - "offset": 12044490, + "offset": 12043940, "size": 2210, }, "decode.js": { - "offset": 12046700, + "offset": 12046150, "size": 19810, }, "decode.js.map": { - "offset": 12066510, + "offset": 12065960, "size": 11480, }, "decode_codepoint.d.ts.map": { - "offset": 12077980, + "offset": 12077430, "size": 400, }, "decode_codepoint.js": { - "offset": 12078380, + "offset": 12077830, "size": 2120, }, "decode_codepoint.js.map": { - "offset": 12080490, + "offset": 12079940, "size": 1910, }, "encode.d.ts.map": { - "offset": 12082400, + "offset": 12081840, "size": 340, }, "encode.js": { - "offset": 12082730, + "offset": 12082180, "size": 2570, }, "encode.js.map": { - "offset": 12085300, + "offset": 12084750, "size": 1870, }, "escape.d.ts.map": { - "offset": 12087160, + "offset": 12086610, "size": 590, }, "escape.js": { - "offset": 12087750, + "offset": 12087200, "size": 3970, }, "escape.js.map": { - "offset": 12091720, + "offset": 12091160, "size": 2900, }, "generated": { "files": { "decode-data-html.d.ts.map": { - "offset": 12094610, + "offset": 12094060, "size": 240, }, "decode-data-html.js": { - "offset": 12094850, + "offset": 12094290, "size": 47730, }, "decode-data-html.js.map": { - "offset": 12142570, + "offset": 12142020, "size": 400, }, "decode-data-xml.d.ts.map": { - "offset": 12142970, + "offset": 12142410, "size": 240, }, "decode-data-xml.js": { - "offset": 12143200, + "offset": 12142640, "size": 280, }, "decode-data-xml.js.map": { - "offset": 12143480, + "offset": 12142920, "size": 390, }, "encode-html.d.ts.map": { - "offset": 12143860, + "offset": 12143310, "size": 390, }, "encode-html.js": { - "offset": 12144250, + "offset": 12143700, "size": 27040, }, "encode-html.js.map": { - "offset": 12171290, + "offset": 12170740, "size": 48230, }, }, }, "index.d.ts.map": { - "offset": 12219520, + "offset": 12218960, "size": 1420, }, "index.js": { - "offset": 12220930, + "offset": 12220380, "size": 4060, }, "index.js.map": { - "offset": 12224990, + "offset": 12224440, "size": 2550, }, "package.json": { - "offset": 12227530, + "offset": 12226980, "size": 20, }, }, @@ -35636,59 +35636,59 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen "generated": { "files": { "decode-data-html.d.ts.map": { - "offset": 12227550, + "offset": 12227000, "size": 240, }, "decode-data-html.js": { - "offset": 12227790, + "offset": 12227230, "size": 47830, }, "decode-data-html.js.map": { - "offset": 12275610, + "offset": 12275050, "size": 410, }, "decode-data-xml.d.ts.map": { - "offset": 12276010, + "offset": 12275460, "size": 240, }, "decode-data-xml.js": { - "offset": 12276240, + "offset": 12275690, "size": 380, }, "decode-data-xml.js.map": { - "offset": 12276620, + "offset": 12276070, "size": 400, }, "encode-html.d.ts.map": { - "offset": 12277020, + "offset": 12276460, "size": 390, }, "encode-html.js": { - "offset": 12277400, + "offset": 12276850, "size": 27120, }, "encode-html.js.map": { - "offset": 12304520, + "offset": 12303970, "size": 48230, }, }, }, "index.d.ts.map": { - "offset": 12352750, + "offset": 12352200, "size": 1420, }, "index.js": { - "offset": 12354170, + "offset": 12353610, "size": 7150, }, "index.js.map": { - "offset": 12361310, + "offset": 12360760, "size": 2650, }, }, }, "package.json": { - "offset": 12363950, + "offset": 12363400, "size": 1510, }, }, @@ -35696,7 +35696,7 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen }, }, "package.json": { - "offset": 11987520, + "offset": 11986970, "size": 1780, }, }, @@ -35704,21 +35704,21 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen "mdn-data": { "files": { "LICENSE": { - "offset": 12365450, + "offset": 12364900, "size": 6560, }, "api": { "files": { "index.js": { - "offset": 12372010, + "offset": 12371460, "size": 70, }, "inheritance.json": { - "offset": 12372070, + "offset": 12371520, "size": 53040, }, "inheritance.schema.json": { - "offset": 12425110, + "offset": 12424560, "size": 530, }, }, @@ -35726,89 +35726,89 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen "css": { "files": { "at-rules.json": { - "offset": 12425640, + "offset": 12425090, "size": 15240, }, "at-rules.schema.json": { - "offset": 12440880, + "offset": 12440320, "size": 3200, }, "definitions.json": { - "offset": 12444070, + "offset": 12443520, "size": 1870, }, "functions.json": { - "offset": 12445940, + "offset": 12445390, "size": 17770, }, "functions.schema.json": { - "offset": 12463700, + "offset": 12463150, "size": 840, }, "index.js": { - "offset": 12464540, + "offset": 12463990, "size": 280, }, "properties.json": { - "offset": 12464820, + "offset": 12464270, "size": 312520, }, "properties.schema.json": { - "offset": 12777330, + "offset": 12776780, "size": 15130, }, "selectors.json": { - "offset": 12792450, + "offset": 12791900, "size": 26890, }, "selectors.schema.json": { - "offset": 12819340, + "offset": 12818790, "size": 690, }, "syntaxes.json": { - "offset": 12820030, + "offset": 12819480, "size": 30990, }, "syntaxes.schema.json": { - "offset": 12851020, + "offset": 12850470, "size": 230, }, "types.json": { - "offset": 12851250, + "offset": 12850700, "size": 6540, }, "types.schema.json": { - "offset": 12857790, + "offset": 12857240, "size": 630, }, "units.json": { - "offset": 12858410, + "offset": 12857860, "size": 3130, }, "units.schema.json": { - "offset": 12861540, + "offset": 12860990, "size": 510, }, }, }, "index.js": { - "offset": 12862040, + "offset": 12861490, "size": 100, }, "l10n": { "files": { "css.json": { - "offset": 12862140, + "offset": 12861590, "size": 162620, }, "index.js": { - "offset": 13024750, + "offset": 13024200, "size": 50, }, }, }, "package.json": { - "offset": 13024800, + "offset": 13024250, "size": 560, }, }, @@ -35816,43 +35816,43 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen "mdurl": { "files": { "LICENSE": { - "offset": 13025350, + "offset": 13024800, "size": 2310, }, "build": { "files": { "index.cjs.js": { - "offset": 13027650, + "offset": 13027100, "size": 15460, }, }, }, "index.mjs": { - "offset": 13043110, + "offset": 13042560, "size": 200, }, "lib": { "files": { "decode.mjs": { - "offset": 13043310, + "offset": 13042760, "size": 2850, }, "encode.mjs": { - "offset": 13046150, + "offset": 13045600, "size": 2220, }, "format.mjs": { - "offset": 13048360, + "offset": 13047810, "size": 490, }, "parse.mjs": { - "offset": 13048850, + "offset": 13048300, "size": 9740, }, }, }, "package.json": { - "offset": 13058580, + "offset": 13058030, "size": 610, }, }, @@ -35860,15 +35860,15 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen "ms": { "files": { "index.js": { - "offset": 13059180, + "offset": 13058630, "size": 3030, }, "license.md": { - "offset": 13062210, + "offset": 13061660, "size": 1080, }, "package.json": { - "offset": 13063290, + "offset": 13062730, "size": 500, }, }, @@ -35876,7 +35876,7 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen "parse5": { "files": { "LICENSE": { - "offset": 13063780, + "offset": 13063230, "size": 1110, }, "dist": { @@ -35884,47 +35884,47 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen "common": { "files": { "doctype.js": { - "offset": 13064890, + "offset": 13064340, "size": 4670, }, "error-codes.js": { - "offset": 13069550, + "offset": 13069000, "size": 4750, }, "foreign-content.js": { - "offset": 13074300, + "offset": 13073750, "size": 6300, }, "html.js": { - "offset": 13080600, + "offset": 13080050, "size": 17560, }, "token.js": { - "offset": 13098150, + "offset": 13097600, "size": 840, }, "unicode.js": { - "offset": 13098990, + "offset": 13098430, "size": 2990, }, }, }, "index.js": { - "offset": 13101980, + "offset": 13101420, "size": 1360, }, "parser": { "files": { "formatting-element-list.js": { - "offset": 13103330, + "offset": 13102780, "size": 4310, }, "index.js": { - "offset": 13107630, + "offset": 13107080, "size": 107130, }, "open-element-stack.js": { - "offset": 13214760, + "offset": 13214200, "size": 10920, }, }, @@ -35932,7 +35932,7 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen "serializer": { "files": { "index.js": { - "offset": 13225670, + "offset": 13225120, "size": 5270, }, }, @@ -35940,11 +35940,11 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen "tokenizer": { "files": { "index.js": { - "offset": 13230940, + "offset": 13230390, "size": 98130, }, "preprocessor.js": { - "offset": 13329070, + "offset": 13328510, "size": 7030, }, }, @@ -35952,11 +35952,11 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen "tree-adapters": { "files": { "default.js": { - "offset": 13336090, + "offset": 13335540, "size": 5240, }, "interface.js": { - "offset": 13341320, + "offset": 13340770, "size": 20, }, }, @@ -35964,7 +35964,7 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen }, }, "package.json": { - "offset": 13341330, + "offset": 13340780, "size": 670, }, }, @@ -35972,19 +35972,19 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen "punycode": { "files": { "LICENSE-MIT.txt": { - "offset": 13342000, + "offset": 13341450, "size": 1080, }, "package.json": { - "offset": 13343080, + "offset": 13342520, "size": 750, }, "punycode.es6.js": { - "offset": 13343830, + "offset": 13343270, "size": 12780, }, "punycode.js": { - "offset": 13356610, + "offset": 13356050, "size": 12720, }, }, @@ -35992,19 +35992,19 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen "punycode.js": { "files": { "LICENSE-MIT.txt": { - "offset": 13369320, + "offset": 13368760, "size": 1080, }, "package.json": { - "offset": 13370390, + "offset": 13369840, "size": 760, }, "punycode.es6.js": { - "offset": 13371150, + "offset": 13370590, "size": 12780, }, "punycode.js": { - "offset": 13383930, + "offset": 13383370, "size": 12720, }, }, @@ -36012,15 +36012,15 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen "require-from-string": { "files": { "index.js": { - "offset": 13396640, + "offset": 13396090, "size": 870, }, "license": { - "offset": 13397500, + "offset": 13396950, "size": 1130, }, "package.json": { - "offset": 13398630, + "offset": 13398080, "size": 450, }, }, @@ -36028,15 +36028,15 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen "saxes": { "files": { "package.json": { - "offset": 13399070, + "offset": 13398520, "size": 1700, }, "saxes.js": { - "offset": 13400770, + "offset": 13400210, "size": 73800, }, "saxes.js.map": { - "offset": 13474560, + "offset": 13474010, "size": 51770, }, }, @@ -36044,59 +36044,59 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen "source-map-js": { "files": { "LICENSE": { - "offset": 13526330, + "offset": 13525770, "size": 1530, }, "lib": { "files": { "array-set.js": { - "offset": 13527850, + "offset": 13527300, "size": 3200, }, "base64-vlq.js": { - "offset": 13531050, + "offset": 13530500, "size": 4720, }, "base64.js": { - "offset": 13535760, + "offset": 13535210, "size": 1540, }, "binary-search.js": { - "offset": 13537300, + "offset": 13536750, "size": 4250, }, "mapping-list.js": { - "offset": 13541550, + "offset": 13541000, "size": 2340, }, "quick-sort.js": { - "offset": 13543890, + "offset": 13543340, "size": 4070, }, "source-map-consumer.js": { - "offset": 13547960, + "offset": 13547410, "size": 41580, }, "source-map-generator.js": { - "offset": 13589540, + "offset": 13588990, "size": 14940, }, "source-node.js": { - "offset": 13604470, + "offset": 13603920, "size": 13810, }, "util.js": { - "offset": 13618280, + "offset": 13617730, "size": 15410, }, }, }, "package.json": { - "offset": 13633680, + "offset": 13633130, "size": 640, }, "source-map.js": { - "offset": 13634320, + "offset": 13633760, "size": 410, }, }, @@ -36104,31 +36104,31 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen "symbol-tree": { "files": { "LICENSE": { - "offset": 13634720, + "offset": 13634170, "size": 1090, }, "lib": { "files": { "SymbolTree.js": { - "offset": 13635810, + "offset": 13635250, "size": 29510, }, "SymbolTreeNode.js": { - "offset": 13665320, + "offset": 13664760, "size": 1940, }, "TreeIterator.js": { - "offset": 13667250, + "offset": 13666700, "size": 1980, }, "TreePosition.js": { - "offset": 13669230, + "offset": 13668670, "size": 250, }, }, }, "package.json": { - "offset": 13669470, + "offset": 13668910, "size": 700, }, }, @@ -36136,14 +36136,14 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen "tldts": { "files": { "LICENSE": { - "offset": 13670160, + "offset": 13669610, "size": 1080, }, "bin": { "files": { "cli.js": { "executable": true, - "offset": 13671240, + "offset": 13670690, "size": 550, }, }, @@ -36153,11 +36153,11 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen "cjs": { "files": { "index.js": { - "offset": 13671790, + "offset": 13671230, "size": 175640, }, "index.js.map": { - "offset": 13847430, + "offset": 13846870, "size": 410510, }, "src": { @@ -36165,27 +36165,27 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen "data": { "files": { "trie.js": { - "offset": 14257940, + "offset": 14257380, "size": 151830, }, "trie.js.map": { - "offset": 14409760, + "offset": 14409200, "size": 217490, }, }, }, "suffix-trie.js": { - "offset": 14627250, + "offset": 14626690, "size": 2490, }, "suffix-trie.js.map": { - "offset": 14629740, + "offset": 14629180, "size": 2270, }, }, }, "tsconfig.tsbuildinfo": { - "offset": 14632000, + "offset": 14631450, "size": 39380, }, }, @@ -36193,11 +36193,11 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen "es6": { "files": { "index.js": { - "offset": 14671380, + "offset": 14670820, "size": 1510, }, "index.js.map": { - "offset": 14672890, + "offset": 14672330, "size": 1290, }, "src": { @@ -36205,63 +36205,63 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen "data": { "files": { "trie.js": { - "offset": 14674170, + "offset": 14673620, "size": 151710, }, "trie.js.map": { - "offset": 14825880, + "offset": 14825330, "size": 217510, }, }, }, "suffix-trie.js": { - "offset": 15043390, + "offset": 15042840, "size": 2380, }, "suffix-trie.js.map": { - "offset": 15045760, + "offset": 15045210, "size": 2320, }, }, }, "tsconfig.bundle.tsbuildinfo": { - "offset": 15048080, + "offset": 15047530, "size": 39090, }, }, }, "index.cjs.min.js": { - "offset": 15087170, + "offset": 15086610, "size": 110070, }, "index.cjs.min.js.map": { - "offset": 15197240, + "offset": 15196680, "size": 394430, }, "index.esm.min.js": { - "offset": 15591660, + "offset": 15591110, "size": 110060, }, "index.esm.min.js.map": { - "offset": 15701720, + "offset": 15701160, "size": 394540, }, "index.umd.min.js": { - "offset": 16096250, + "offset": 16095700, "size": 110270, }, "index.umd.min.js.map": { - "offset": 16206510, + "offset": 16205960, "size": 394430, }, }, }, "index.ts": { - "offset": 16600940, + "offset": 16600380, "size": 1730, }, "package.json": { - "offset": 16602670, + "offset": 16602110, "size": 1100, }, "src": { @@ -36269,13 +36269,13 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen "data": { "files": { "trie.ts": { - "offset": 16603760, + "offset": 16603210, "size": 130740, }, }, }, "suffix-trie.ts": { - "offset": 16734500, + "offset": 16733940, "size": 2560, }, }, @@ -36285,7 +36285,7 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen "tldts-core": { "files": { "LICENSE": { - "offset": 16737050, + "offset": 16736490, "size": 1080, }, "dist": { @@ -36293,103 +36293,103 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen "cjs": { "files": { "index.js": { - "offset": 16738130, + "offset": 16737570, "size": 20370, }, "index.js.map": { - "offset": 16758490, + "offset": 16757930, "size": 34550, }, "src": { "files": { "domain-without-suffix.js": { - "offset": 16793030, + "offset": 16792480, "size": 590, }, "domain-without-suffix.js.map": { - "offset": 16793620, + "offset": 16793070, "size": 340, }, "domain.js": { - "offset": 16793960, + "offset": 16793400, "size": 3320, }, "domain.js.map": { - "offset": 16797270, + "offset": 16796720, "size": 1760, }, "extract-hostname.js": { - "offset": 16799030, + "offset": 16798480, "size": 5670, }, "extract-hostname.js.map": { - "offset": 16804700, + "offset": 16804150, "size": 4550, }, "factory.js": { - "offset": 16809240, + "offset": 16808690, "size": 4260, }, "factory.js.map": { - "offset": 16813490, + "offset": 16812940, "size": 2720, }, "is-ip.js": { - "offset": 16816210, + "offset": 16815650, "size": 2220, }, "is-ip.js.map": { - "offset": 16818430, + "offset": 16817870, "size": 2000, }, "is-valid.js": { - "offset": 16820420, + "offset": 16819870, "size": 2560, }, "is-valid.js.map": { - "offset": 16822980, + "offset": 16822420, "size": 1610, }, "lookup": { "files": { "fast-path.js": { - "offset": 16824590, + "offset": 16824030, "size": 2350, }, "fast-path.js.map": { - "offset": 16826930, + "offset": 16826380, "size": 2260, }, "interface.js": { - "offset": 16829190, + "offset": 16828640, "size": 120, }, "interface.js.map": { - "offset": 16829300, + "offset": 16828750, "size": 130, }, }, }, "options.js": { - "offset": 16829430, + "offset": 16828880, "size": 750, }, "options.js.map": { - "offset": 16830180, + "offset": 16829620, "size": 620, }, "subdomain.js": { - "offset": 16830800, + "offset": 16830240, "size": 440, }, "subdomain.js.map": { - "offset": 16831240, + "offset": 16830680, "size": 370, }, }, }, "tsconfig.tsbuildinfo": { - "offset": 16831600, + "offset": 16831050, "size": 40270, }, }, @@ -36397,103 +36397,103 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen "es6": { "files": { "index.js": { - "offset": 16871870, + "offset": 16871310, "size": 220, }, "index.js.map": { - "offset": 16872090, + "offset": 16871530, "size": 260, }, "src": { "files": { "domain-without-suffix.js": { - "offset": 16872340, + "offset": 16871790, "size": 490, }, "domain-without-suffix.js.map": { - "offset": 16872820, + "offset": 16872270, "size": 340, }, "domain.js": { - "offset": 16873160, + "offset": 16872610, "size": 3230, }, "domain.js.map": { - "offset": 16876390, + "offset": 16875830, "size": 1760, }, "extract-hostname.js": { - "offset": 16878140, + "offset": 16877590, "size": 5580, }, "extract-hostname.js.map": { - "offset": 16883710, + "offset": 16883160, "size": 4550, }, "factory.js": { - "offset": 16888250, + "offset": 16887700, "size": 3950, }, "factory.js.map": { - "offset": 16892200, + "offset": 16891640, "size": 2780, }, "is-ip.js": { - "offset": 16894970, + "offset": 16894420, "size": 2140, }, "is-ip.js.map": { - "offset": 16897110, + "offset": 16896560, "size": 1990, }, "is-valid.js": { - "offset": 16899100, + "offset": 16898550, "size": 2460, }, "is-valid.js.map": { - "offset": 16901560, + "offset": 16901000, "size": 1610, }, "lookup": { "files": { "fast-path.js": { - "offset": 16903160, + "offset": 16902610, "size": 2250, }, "fast-path.js.map": { - "offset": 16905410, + "offset": 16904860, "size": 2260, }, "interface.js": { - "offset": 16907670, + "offset": 16907110, "size": 50, }, "interface.js.map": { - "offset": 16907720, + "offset": 16907160, "size": 130, }, }, }, "options.js": { - "offset": 16907840, + "offset": 16907290, "size": 650, }, "options.js.map": { - "offset": 16908480, + "offset": 16907930, "size": 610, }, "subdomain.js": { - "offset": 16909090, + "offset": 16908540, "size": 350, }, "subdomain.js.map": { - "offset": 16909440, + "offset": 16908880, "size": 370, }, }, }, "tsconfig.bundle.tsbuildinfo": { - "offset": 16909810, + "offset": 16909250, "size": 39240, }, }, @@ -36501,57 +36501,57 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen }, }, "index.ts": { - "offset": 16949040, + "offset": 16948490, "size": 300, }, "package.json": { - "offset": 16949340, + "offset": 16948790, "size": 940, }, "src": { "files": { "domain-without-suffix.ts": { - "offset": 16950270, + "offset": 16949720, "size": 460, }, "domain.ts": { - "offset": 16950730, + "offset": 16950180, "size": 3220, }, "extract-hostname.ts": { - "offset": 16953950, + "offset": 16953400, "size": 4820, }, "factory.ts": { - "offset": 16958760, + "offset": 16958210, "size": 5110, }, "is-ip.ts": { - "offset": 16963870, + "offset": 16963320, "size": 2060, }, "is-valid.ts": { - "offset": 16965930, + "offset": 16965380, "size": 2310, }, "lookup": { "files": { "fast-path.ts": { - "offset": 16968240, + "offset": 16967680, "size": 2120, }, "interface.ts": { - "offset": 16970350, + "offset": 16969800, "size": 230, }, }, }, "options.ts": { - "offset": 16970580, + "offset": 16970020, "size": 870, }, "subdomain.ts": { - "offset": 16971440, + "offset": 16970890, "size": 330, }, }, @@ -36561,35 +36561,35 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen "tough-cookie": { "files": { "LICENSE": { - "offset": 16971760, + "offset": 16971210, "size": 1490, }, "dist": { "files": { "index.cjs": { - "offset": 16973250, + "offset": 16972700, "size": 74120, }, "index.cjs.map": { - "offset": 17047360, + "offset": 17046810, "size": 216350, }, "index.d.cts": { - "offset": 17263710, + "offset": 17263160, "size": 83680, }, "index.js": { - "offset": 17347390, + "offset": 17346840, "size": 72480, }, "index.js.map": { - "offset": 17419860, + "offset": 17419310, "size": 216180, }, }, }, "package.json": { - "offset": 17636040, + "offset": 17635480, "size": 1620, }, }, @@ -36597,31 +36597,31 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen "tr46": { "files": { "LICENSE.md": { - "offset": 17637650, + "offset": 17637100, "size": 1080, }, "index.js": { - "offset": 17638730, + "offset": 17638180, "size": 8590, }, "lib": { "files": { "mappingTable.json": { - "offset": 17647320, + "offset": 17646770, "size": 142920, }, "regexes.js": { - "offset": 17790230, + "offset": 17789680, "size": 72470, }, "statusMapping.js": { - "offset": 17862690, + "offset": 17862140, "size": 130, }, }, }, "package.json": { - "offset": 17862820, + "offset": 17862260, "size": 680, }, }, @@ -36629,13 +36629,13 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen "uc.micro": { "files": { "LICENSE.txt": { - "offset": 17863490, + "offset": 17862940, "size": 1080, }, "build": { "files": { "index.cjs.js": { - "offset": 17864570, + "offset": 17864020, "size": 5270, }, }, @@ -36645,7 +36645,7 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen "Cc": { "files": { "regex.mjs": { - "offset": 17869830, + "offset": 17869280, "size": 40, }, }, @@ -36653,7 +36653,7 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen "Cf": { "files": { "regex.mjs": { - "offset": 17869870, + "offset": 17869310, "size": 270, }, }, @@ -36661,7 +36661,7 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen "P": { "files": { "regex.mjs": { - "offset": 17870130, + "offset": 17869580, "size": 2050, }, }, @@ -36669,7 +36669,7 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen "S": { "files": { "regex.mjs": { - "offset": 17872170, + "offset": 17871620, "size": 2560, }, }, @@ -36677,7 +36677,7 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen "Z": { "files": { "regex.mjs": { - "offset": 17874720, + "offset": 17874170, "size": 80, }, }, @@ -36685,11 +36685,11 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen }, }, "index.mjs": { - "offset": 17874800, + "offset": 17874240, "size": 310, }, "package.json": { - "offset": 17875100, + "offset": 17874550, "size": 650, }, "properties": { @@ -36697,7 +36697,7 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen "Any": { "files": { "regex.mjs": { - "offset": 17875740, + "offset": 17875190, "size": 150, }, }, @@ -36709,27 +36709,27 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen "w3c-xmlserializer": { "files": { "LICENSE.md": { - "offset": 17875890, + "offset": 17875340, "size": 1110, }, "lib": { "files": { "attributes.js": { - "offset": 17876990, + "offset": 17876440, "size": 3700, }, "constants.js": { - "offset": 17880690, + "offset": 17880130, "size": 790, }, "serialize.js": { - "offset": 17881480, + "offset": 17880920, "size": 10100, }, }, }, "package.json": { - "offset": 17891580, + "offset": 17891020, "size": 460, }, }, @@ -36737,19 +36737,19 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen "webidl-conversions": { "files": { "LICENSE.md": { - "offset": 17892030, + "offset": 17891480, "size": 1330, }, "lib": { "files": { "index.js": { - "offset": 17893350, + "offset": 17892800, "size": 12230, }, }, }, "package.json": { - "offset": 17905570, + "offset": 17905020, "size": 600, }, }, @@ -36757,43 +36757,43 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen "whatwg-mimetype": { "files": { "LICENSE.txt": { - "offset": 17906160, + "offset": 17905610, "size": 1070, }, "lib": { "files": { "index.js": { - "offset": 17907230, + "offset": 17906680, "size": 120, }, "mime-type-parameters.js": { - "offset": 17907340, + "offset": 17906790, "size": 1440, }, "mime-type.js": { - "offset": 17908780, + "offset": 17908230, "size": 3160, }, "parser.js": { - "offset": 17911930, + "offset": 17911380, "size": 2520, }, "serializer.js": { - "offset": 17914450, + "offset": 17913900, "size": 600, }, "sniff.js": { - "offset": 17915050, + "offset": 17914500, "size": 23890, }, "utils.js": { - "offset": 17938940, + "offset": 17938390, "size": 1410, }, }, }, "package.json": { - "offset": 17940340, + "offset": 17939790, "size": 680, }, }, @@ -36801,71 +36801,71 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen "whatwg-url": { "files": { "LICENSE.txt": { - "offset": 17941020, + "offset": 17940470, "size": 1080, }, "index.js": { - "offset": 17942100, + "offset": 17941550, "size": 1270, }, "lib": { "files": { "Function.js": { - "offset": 17943360, + "offset": 17942810, "size": 1190, }, "URL-impl.js": { - "offset": 17944550, + "offset": 17944000, "size": 5090, }, "URL.js": { - "offset": 17949630, + "offset": 17949080, "size": 15390, }, "URLSearchParams-impl.js": { - "offset": 17965010, + "offset": 17964460, "size": 2970, }, "URLSearchParams.js": { - "offset": 17967980, + "offset": 17967430, "size": 17120, }, "VoidFunction.js": { - "offset": 17985100, + "offset": 17984550, "size": 730, }, "encoding.js": { - "offset": 17985830, + "offset": 17985280, "size": 330, }, "infra.js": { - "offset": 17986160, + "offset": 17985610, "size": 520, }, "percent-encoding.js": { - "offset": 17986680, + "offset": 17986130, "size": 4890, }, "url-state-machine.js": { - "offset": 17991570, + "offset": 17991010, "size": 31850, }, "urlencoded.js": { - "offset": 18023410, + "offset": 18022860, "size": 2280, }, "utils.js": { - "offset": 18025690, + "offset": 18025140, "size": 6770, }, }, }, "package.json": { - "offset": 18032460, + "offset": 18031900, "size": 980, }, "webidl2js-wrapper.js": { - "offset": 18033430, + "offset": 18032880, "size": 170, }, }, @@ -36873,79 +36873,79 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen "ws": { "files": { "LICENSE": { - "offset": 18033600, + "offset": 18033050, "size": 1190, }, "browser.js": { - "offset": 18034780, + "offset": 18034230, "size": 180, }, "index.js": { - "offset": 18034960, + "offset": 18034410, "size": 380, }, "lib": { "files": { "buffer-util.js": { - "offset": 18035340, + "offset": 18034780, "size": 3060, }, "constants.js": { - "offset": 18038390, + "offset": 18037840, "size": 510, }, "event-target.js": { - "offset": 18038900, + "offset": 18038340, "size": 7330, }, "extension.js": { - "offset": 18046220, + "offset": 18045660, "size": 6190, }, "limiter.js": { - "offset": 18052400, + "offset": 18051850, "size": 1040, }, "permessage-deflate.js": { - "offset": 18053430, + "offset": 18052880, "size": 14510, }, "receiver.js": { - "offset": 18067940, + "offset": 18067390, "size": 16460, }, "sender.js": { - "offset": 18084400, + "offset": 18083850, "size": 16720, }, "stream.js": { - "offset": 18101110, + "offset": 18100560, "size": 4210, }, "subprotocol.js": { - "offset": 18105320, + "offset": 18104770, "size": 1500, }, "validation.js": { - "offset": 18106820, + "offset": 18106260, "size": 3910, }, "websocket-server.js": { - "offset": 18110720, + "offset": 18110170, "size": 16620, }, "websocket.js": { - "offset": 18127340, + "offset": 18126780, "size": 36740, }, }, }, "package.json": { - "offset": 18164080, + "offset": 18163520, "size": 1280, }, "wrapper.mjs": { - "offset": 18165350, + "offset": 18164800, "size": 350, }, }, @@ -36953,19 +36953,19 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen "xml-name-validator": { "files": { "LICENSE.txt": { - "offset": 18165700, + "offset": 18165140, "size": 10180, }, "lib": { "files": { "xml-name-validator.js": { - "offset": 18175870, + "offset": 18175320, "size": 1710, }, }, }, "package.json": { - "offset": 18177570, + "offset": 18177020, "size": 530, }, }, @@ -36973,11 +36973,11 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen "xmlchars": { "files": { "LICENSE": { - "offset": 18178100, + "offset": 18177540, "size": 1090, }, "package.json": { - "offset": 18179180, + "offset": 18178630, "size": 860, }, "xml": { @@ -36985,19 +36985,19 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen "1.0": { "files": { "ed4.js": { - "offset": 18180040, + "offset": 18179490, "size": 5500, }, "ed4.js.map": { - "offset": 18185540, + "offset": 18184990, "size": 1400, }, "ed5.js": { - "offset": 18186930, + "offset": 18186380, "size": 3350, }, "ed5.js.map": { - "offset": 18190280, + "offset": 18189720, "size": 2610, }, }, @@ -37005,11 +37005,11 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen "1.1": { "files": { "ed2.js": { - "offset": 18192880, + "offset": 18192330, "size": 4740, }, "ed2.js.map": { - "offset": 18197620, + "offset": 18197070, "size": 3400, }, }, @@ -37017,11 +37017,11 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen }, }, "xmlchars.js": { - "offset": 18201010, + "offset": 18200460, "size": 6920, }, "xmlchars.js.map": { - "offset": 18207920, + "offset": 18207370, "size": 3080, }, "xmlns": { @@ -37029,11 +37029,11 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen "1.0": { "files": { "ed3.js": { - "offset": 18211000, + "offset": 18210450, "size": 2260, }, "ed3.js.map": { - "offset": 18213250, + "offset": 18212700, "size": 1690, }, }, @@ -37045,7 +37045,7 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen }, }, "package.json": { - "offset": 18218280, + "offset": 18217720, "size": 320, }, }, @@ -75808,1475 +75808,704 @@ exports[`node_module collectors > yarn two package.json 2`] = ` { "files": { "index.html": { - "offset": 4521020, + "offset": 1769970, "size": 380, }, "index.js": { - "offset": 4521400, + "offset": 1770350, "size": 620, }, "node_modules": { "files": { - "@yarnpkg": { - "files": { - "lockfile": { - "files": { - "index.js": { - "offset": 0, - "size": 279030, - }, - "package.json": { - "offset": 279030, - "size": 250, - }, - }, - }, - }, - }, "accepts": { "files": { - "HISTORY.md": { - "offset": 279280, - "size": 5100, - }, - "LICENSE": { - "offset": 284370, - "size": 1170, - }, - "index.js": { - "offset": 285540, - "size": 5260, - }, - "package.json": { - "offset": 290790, - "size": 690, + "Makefile": { + "offset": 0, + "size": 110, }, - }, - }, - "ansi-styles": { - "files": { "index.js": { - "offset": 291480, - "size": 4140, - }, - "license": { - "offset": 295620, - "size": 1110, + "offset": 110, + "size": 3940, }, "package.json": { - "offset": 296730, - "size": 670, + "offset": 4040, + "size": 530, }, }, }, "argparse": { "files": { "LICENSE": { - "offset": 297390, + "offset": 4560, "size": 12780, }, "argparse.js": { - "offset": 310170, + "offset": 17330, "size": 129720, }, "lib": { "files": { "sub.js": { - "offset": 439880, + "offset": 147050, "size": 2260, }, "textwrap.js": { - "offset": 442130, + "offset": 149300, "size": 17400, }, }, }, "package.json": { - "offset": 459520, + "offset": 166690, "size": 450, }, }, }, - "array-flatten": { - "files": { - "LICENSE": { - "offset": 459970, - "size": 1110, - }, - "array-flatten.js": { - "offset": 461080, - "size": 1200, - }, - "package.json": { - "offset": 462270, - "size": 660, - }, - }, - }, - "body-parser": { - "files": { - "HISTORY.md": { - "offset": 462920, - "size": 16900, - }, - "LICENSE": { - "offset": 479810, - "size": 1180, - }, - "index.js": { - "offset": 480990, - "size": 2690, - }, - "lib": { - "files": { - "read.js": { - "offset": 483670, - "size": 4330, - }, - "types": { - "files": { - "json.js": { - "offset": 487990, - "size": 5300, - }, - "raw.js": { - "offset": 493290, - "size": 1890, - }, - "text.js": { - "offset": 495180, - "size": 2290, - }, - "urlencoded.js": { - "offset": 497460, - "size": 6260, - }, - }, - }, - }, - }, - "package.json": { - "offset": 503710, - "size": 1050, - }, - }, - }, - "braces": { + "buffer-crc32": { "files": { - "LICENSE": { - "offset": 504760, - "size": 1100, - }, "index.js": { - "offset": 505850, - "size": 4380, - }, - "lib": { - "files": { - "compile.js": { - "offset": 510230, - "size": 1510, - }, - "constants.js": { - "offset": 511730, - "size": 1590, - }, - "expand.js": { - "offset": 513320, - "size": 2800, - }, - "parse.js": { - "offset": 516120, - "size": 6900, - }, - "stringify.js": { - "offset": 523020, - "size": 710, - }, - "utils.js": { - "offset": 523730, - "size": 2520, - }, - }, + "offset": 167140, + "size": 3920, }, "package.json": { - "offset": 526240, - "size": 910, + "offset": 171050, + "size": 550, }, }, }, "builder-util-runtime": { "files": { "LICENSE": { - "offset": 527150, + "offset": 171590, "size": 1090, }, - "node_modules": { - "files": { - "debug": { - "files": { - "LICENSE": { - "offset": 676420, - "size": 1140, - }, - "package.json": { - "offset": 677560, - "size": 910, - }, - "src": { - "files": { - "browser.js": { - "offset": 678470, - "size": 6110, - }, - "common.js": { - "offset": 684570, - "size": 6920, - }, - "index.js": { - "offset": 691490, - "size": 320, - }, - "node.js": { - "offset": 691800, - "size": 4730, - }, - }, - }, - }, - }, - }, - }, "out": { "files": { "CancellationToken.js": { - "offset": 528230, + "offset": 172680, "size": 3200, }, "CancellationToken.js.map": { - "offset": 531430, + "offset": 175880, "size": 5650, }, "MemoLazy.js": { - "offset": 537080, + "offset": 181520, "size": 1510, }, "MemoLazy.js.map": { - "offset": 538580, + "offset": 183030, "size": 2760, }, "ProgressCallbackTransform.js": { - "offset": 541340, + "offset": 185780, "size": 1950, }, "ProgressCallbackTransform.js.map": { - "offset": 543290, + "offset": 187730, "size": 3700, }, "blockMapApi.js": { - "offset": 546980, + "offset": 191430, "size": 120, }, "blockMapApi.js.map": { - "offset": 547100, + "offset": 191540, "size": 410, }, "error.js": { - "offset": 547500, + "offset": 191940, "size": 260, }, "error.js.map": { - "offset": 547750, + "offset": 192200, "size": 460, }, "httpExecutor.js": { - "offset": 548210, + "offset": 192650, "size": 20570, }, "httpExecutor.js.map": { - "offset": 568770, + "offset": 213220, "size": 38700, }, "index.js": { - "offset": 607470, + "offset": 251910, "size": 4560, }, "index.js.map": { - "offset": 612030, + "offset": 256470, "size": 2770, }, "publishOptions.js": { - "offset": 614790, + "offset": 259230, "size": 2510, }, "publishOptions.js.map": { - "offset": 617290, + "offset": 261740, "size": 17780, }, "retry.js": { - "offset": 635070, + "offset": 279520, "size": 950, }, "retry.js.map": { - "offset": 636010, + "offset": 280460, "size": 1750, }, "rfc2253Parser.js": { - "offset": 637760, + "offset": 282210, "size": 2270, }, "rfc2253Parser.js.map": { - "offset": 640030, + "offset": 284470, "size": 4170, }, "updateInfo.js": { - "offset": 644190, + "offset": 288640, "size": 120, }, "updateInfo.js.map": { - "offset": 644310, + "offset": 288750, "size": 2320, }, "uuid.js": { - "offset": 646620, + "offset": 291070, "size": 6400, }, "uuid.js.map": { - "offset": 653020, + "offset": 297460, "size": 12240, }, "xml.js": { - "offset": 665250, + "offset": 309700, "size": 3550, }, "xml.js.map": { - "offset": 668800, + "offset": 313250, "size": 6990, }, }, }, "package.json": { - "offset": 675790, + "offset": 320240, "size": 630, }, }, }, - "bytes": { - "files": { - "History.md": { - "offset": 696530, - "size": 1780, - }, - "LICENSE": { - "offset": 698300, - "size": 1160, - }, - "index.js": { - "offset": 699460, - "size": 3620, - }, - "package.json": { - "offset": 703070, - "size": 520, - }, - }, - }, - "call-bind": { - "files": { - ".eslintignore": { - "offset": 703580, - "size": 10, - }, - ".nycrc": { - "offset": 703590, - "size": 140, - }, - "LICENSE": { - "offset": 703730, - "size": 1080, - }, - "callBound.js": { - "offset": 704800, - "size": 420, - }, - "index.js": { - "offset": 705220, - "size": 650, - }, - "package.json": { - "offset": 705860, - "size": 1510, - }, - }, - }, - "call-bind-apply-helpers": { - "files": { - ".nycrc": { - "offset": 707360, - "size": 140, - }, - "LICENSE": { - "offset": 707500, - "size": 1080, - }, - "actualApply.js": { - "offset": 708570, - "size": 280, - }, - "applyBind.js": { - "offset": 708850, - "size": 270, - }, - "functionApply.js": { - "offset": 709120, - "size": 100, - }, - "functionCall.js": { - "offset": 709220, - "size": 100, - }, - "index.js": { - "offset": 709310, - "size": 520, - }, - "package.json": { - "offset": 709820, - "size": 1850, - }, - "reflectApply.js": { - "offset": 711670, - "size": 140, - }, - "tsconfig.json": { - "offset": 711800, - "size": 120, - }, - }, - }, - "call-bound": { - "files": { - ".nycrc": { - "offset": 711910, - "size": 140, - }, - "LICENSE": { - "offset": 712050, - "size": 1080, - }, - "index.js": { - "offset": 713120, - "size": 690, - }, - "package.json": { - "offset": 713810, - "size": 1690, - }, - "tsconfig.json": { - "offset": 715500, - "size": 140, - }, - }, - }, - "chalk": { - "files": { - "license": { - "offset": 715640, - "size": 1110, - }, - "package.json": { - "offset": 716750, - "size": 650, - }, - "source": { - "files": { - "index.js": { - "offset": 717390, - "size": 6080, - }, - "templates.js": { - "offset": 723470, - "size": 3370, - }, - "util.js": { - "offset": 726830, - "size": 1040, - }, - }, - }, - }, - }, - "ci-info": { - "files": { - "LICENSE": { - "offset": 727870, - "size": 1090, - }, - "index.js": { - "offset": 728950, - "size": 2370, - }, - "package.json": { - "offset": 731320, - "size": 750, - }, - "vendors.json": { - "offset": 732070, - "size": 5720, - }, - }, - }, - "color-convert": { - "files": { - "LICENSE": { - "offset": 737790, - "size": 1090, - }, - "conversions.js": { - "offset": 738880, - "size": 17040, - }, - "index.js": { - "offset": 755920, - "size": 1710, - }, - "package.json": { - "offset": 757630, - "size": 460, - }, - "route.js": { - "offset": 758080, - "size": 2260, - }, - }, - }, - "color-name": { - "files": { - "LICENSE": { - "offset": 760330, - "size": 1090, - }, - "index.js": { - "offset": 761420, - "size": 4620, - }, - "package.json": { - "offset": 766040, - "size": 370, - }, - }, - }, - "content-disposition": { - "files": { - "HISTORY.md": { - "offset": 766410, - "size": 1020, - }, - "LICENSE": { - "offset": 767430, - "size": 1100, - }, - "index.js": { - "offset": 768520, - "size": 10600, - }, - "package.json": { - "offset": 779110, - "size": 790, - }, - }, - }, - "content-type": { - "files": { - "HISTORY.md": { - "offset": 779900, - "size": 530, - }, - "LICENSE": { - "offset": 780420, - "size": 1090, - }, - "index.js": { - "offset": 781510, - "size": 5010, - }, - "package.json": { - "offset": 786510, - "size": 680, - }, - }, - }, "cookie": { "files": { "LICENSE": { - "offset": 787190, - "size": 1180, - }, - "SECURITY.md": { - "offset": 788360, - "size": 1180, + "offset": 320870, + "size": 1090, }, "index.js": { - "offset": 789540, - "size": 8170, + "offset": 321960, + "size": 1900, }, "package.json": { - "offset": 797710, - "size": 630, + "offset": 323850, + "size": 410, }, }, }, "cookie-signature": { "files": { "History.md": { - "offset": 798340, - "size": 820, - }, - "index.js": { - "offset": 799160, - "size": 1290, - }, - "package.json": { - "offset": 800440, - "size": 390, + "offset": 324260, + "size": 370, }, - }, - }, - "cross-spawn": { - "files": { - "LICENSE": { - "offset": 800820, - "size": 1110, + "Makefile": { + "offset": 324630, + "size": 90, }, "index.js": { - "offset": 801930, - "size": 1200, - }, - "lib": { - "files": { - "enoent.js": { - "offset": 803120, - "size": 1480, - }, - "parse.js": { - "offset": 804590, - "size": 3070, - }, - "util": { - "files": { - "escape.js": { - "offset": 807660, - "size": 1390, - }, - "readShebang.js": { - "offset": 809040, - "size": 550, - }, - "resolveCommand.js": { - "offset": 809590, - "size": 1560, - }, - }, - }, - }, + "offset": 324720, + "size": 1080, }, "package.json": { - "offset": 811150, - "size": 1280, + "offset": 325790, + "size": 370, }, }, }, "debug": { "files": { "LICENSE": { - "offset": 812420, - "size": 1110, - }, - "Makefile": { - "offset": 813530, - "size": 1060, - }, - "component.json": { - "offset": 814590, - "size": 330, - }, - "node.js": { - "offset": 814910, - "size": 40, - }, - "node_modules": { - "files": { - "ms": { - "files": { - "index.js": { - "offset": 831670, - "size": 2770, - }, - "license.md": { - "offset": 834440, - "size": 1080, - }, - "package.json": { - "offset": 835520, - "size": 470, - }, - }, - }, - }, + "offset": 326160, + "size": 1140, }, "package.json": { - "offset": 814950, - "size": 950, + "offset": 327300, + "size": 910, }, "src": { "files": { "browser.js": { - "offset": 815900, - "size": 4740, + "offset": 328210, + "size": 6110, }, - "debug.js": { - "offset": 820630, - "size": 4400, + "common.js": { + "offset": 334310, + "size": 6920, }, "index.js": { - "offset": 825020, - "size": 270, - }, - "inspector-log.js": { - "offset": 825290, - "size": 380, + "offset": 341220, + "size": 320, }, "node.js": { - "offset": 825660, - "size": 6020, - }, - }, - }, - }, - }, - "define-data-property": { - "files": { - ".nycrc": { - "offset": 835980, - "size": 220, - }, - "LICENSE": { - "offset": 836200, - "size": 1080, - }, - "index.js": { - "offset": 837270, - "size": 2340, - }, - "package.json": { - "offset": 839610, - "size": 2080, - }, - "tsconfig.json": { - "offset": 841680, - "size": 4890, - }, - }, - }, - "depd": { - "files": { - "History.md": { - "offset": 846560, - "size": 2260, - }, - "LICENSE": { - "offset": 848820, - "size": 1100, - }, - "index.js": { - "offset": 849910, - "size": 10940, - }, - "lib": { - "files": { - "browser": { - "files": { - "index.js": { - "offset": 860850, - "size": 1520, - }, - }, + "offset": 341540, + "size": 4730, }, }, }, - "package.json": { - "offset": 862360, - "size": 840, - }, - }, - }, - "destroy": { - "files": { - "LICENSE": { - "offset": 863190, - "size": 1180, - }, - "index.js": { - "offset": 864370, - "size": 4260, - }, - "package.json": { - "offset": 868620, - "size": 740, - }, - }, - }, - "dunder-proto": { - "files": { - ".nycrc": { - "offset": 869360, - "size": 220, - }, - "LICENSE": { - "offset": 869570, - "size": 1080, - }, - "get.js": { - "offset": 870650, - "size": 980, - }, - "package.json": { - "offset": 871630, - "size": 1450, - }, - "set.js": { - "offset": 873080, - "size": 1280, - }, - "tsconfig.json": { - "offset": 874350, - "size": 120, - }, - }, - }, - "ee-first": { - "files": { - "LICENSE": { - "offset": 874470, - "size": 1100, - }, - "index.js": { - "offset": 875570, - "size": 1690, - }, - "package.json": { - "offset": 877250, - "size": 470, - }, }, }, "electron-updater": { "files": { "LICENSE": { - "offset": 877720, + "offset": 346270, "size": 1090, }, "out": { "files": { "AppAdapter.js": { - "offset": 878800, + "offset": 347350, "size": 740, }, "AppAdapter.js.map": { - "offset": 879540, + "offset": 348090, "size": 1820, }, "AppImageUpdater.js": { - "offset": 881350, + "offset": 349900, "size": 5440, }, "AppImageUpdater.js.map": { - "offset": 886790, + "offset": 355340, "size": 8890, }, "AppUpdater.js": { - "offset": 895680, + "offset": 364230, "size": 33040, }, "AppUpdater.js.map": { - "offset": 928710, + "offset": 397260, "size": 56840, }, "BaseUpdater.js": { - "offset": 985550, + "offset": 454100, "size": 5490, }, "BaseUpdater.js.map": { - "offset": 991030, + "offset": 459580, "size": 9670, }, "DebUpdater.js": { - "offset": 1000690, + "offset": 469240, "size": 3600, }, "DebUpdater.js.map": { - "offset": 1004290, + "offset": 472840, "size": 6070, }, "DownloadedUpdateHelper.js": { - "offset": 1010350, + "offset": 478900, "size": 6910, }, "DownloadedUpdateHelper.js.map": { - "offset": 1017260, + "offset": 485810, "size": 12260, }, "ElectronAppAdapter.js": { - "offset": 1029510, + "offset": 498060, "size": 1180, }, "ElectronAppAdapter.js.map": { - "offset": 1030690, + "offset": 499240, "size": 2290, }, "LinuxUpdater.js": { - "offset": 1032980, + "offset": 501530, "size": 4030, }, "LinuxUpdater.js.map": { - "offset": 1037000, + "offset": 505550, "size": 6560, }, "MacUpdater.js": { - "offset": 1043560, + "offset": 512110, "size": 12570, }, "MacUpdater.js.map": { - "offset": 1056120, + "offset": 524670, "size": 20690, }, "NsisUpdater.js": { - "offset": 1076800, + "offset": 545350, "size": 9420, }, "NsisUpdater.js.map": { - "offset": 1086220, + "offset": 554770, "size": 15030, }, "PacmanUpdater.js": { - "offset": 1101240, + "offset": 569790, "size": 2800, }, "PacmanUpdater.js.map": { - "offset": 1104040, + "offset": 572590, "size": 4840, }, "RpmUpdater.js": { - "offset": 1108870, + "offset": 577420, "size": 2900, }, "RpmUpdater.js.map": { - "offset": 1111770, + "offset": 580320, "size": 5380, }, "differentialDownloader": { "files": { "DataSplitter.js": { - "offset": 1117140, - "size": 7990, + "offset": 585690, + "size": 9400, }, "DataSplitter.js.map": { - "offset": 1125120, - "size": 14200, + "offset": 595090, + "size": 16650, }, "DifferentialDownloader.js": { - "offset": 1139320, - "size": 12610, + "offset": 611740, + "size": 12520, }, "DifferentialDownloader.js.map": { - "offset": 1151930, - "size": 21470, + "offset": 624250, + "size": 21370, }, "FileWithEmbeddedBlockMapDifferentialDownloader.js": { - "offset": 1173390, + "offset": 645620, "size": 1870, }, "FileWithEmbeddedBlockMapDifferentialDownloader.js.map": { - "offset": 1175250, + "offset": 647480, "size": 3220, }, "GenericDifferentialDownloader.js": { - "offset": 1178470, + "offset": 650700, "size": 530, }, "GenericDifferentialDownloader.js.map": { - "offset": 1178990, + "offset": 651220, "size": 710, }, "ProgressDifferentialDownloadCallbackTransform.js": { - "offset": 1179700, + "offset": 651930, "size": 3830, }, "ProgressDifferentialDownloadCallbackTransform.js.map": { - "offset": 1183520, + "offset": 655750, "size": 6590, }, "downloadPlanBuilder.js": { - "offset": 1190110, + "offset": 662340, "size": 5520, }, "downloadPlanBuilder.js.map": { - "offset": 1195630, + "offset": 667860, "size": 10250, }, "multipleRangeDownloader.js": { - "offset": 1205880, - "size": 4930, + "offset": 678110, + "size": 5070, }, "multipleRangeDownloader.js.map": { - "offset": 1210800, - "size": 8990, + "offset": 683170, + "size": 9250, }, }, }, "electronHttpExecutor.js": { - "offset": 1219780, + "offset": 692420, "size": 3260, }, "electronHttpExecutor.js.map": { - "offset": 1223040, + "offset": 695680, "size": 5550, }, "main.js": { - "offset": 1228590, - "size": 4650, + "offset": 701230, + "size": 4500, }, "main.js.map": { - "offset": 1233230, - "size": 4670, + "offset": 705720, + "size": 4430, }, "providerFactory.js": { - "offset": 1237900, + "offset": 710150, "size": 3370, }, "providerFactory.js.map": { - "offset": 1241260, + "offset": 713510, "size": 5450, }, "providers": { "files": { "BitbucketProvider.js": { - "offset": 1246710, + "offset": 718960, "size": 1970, }, "BitbucketProvider.js.map": { - "offset": 1248680, + "offset": 720930, "size": 3460, }, "GenericProvider.js": { - "offset": 1252140, + "offset": 724380, "size": 2260, }, "GenericProvider.js.map": { - "offset": 1254390, + "offset": 726630, "size": 3780, }, "GitHubProvider.js": { - "offset": 1258160, - "size": 9900, + "offset": 730410, + "size": 9960, }, "GitHubProvider.js.map": { - "offset": 1268060, - "size": 17000, + "offset": 740360, + "size": 17120, }, "GitLabProvider.js": { - "offset": 1285050, + "offset": 757480, "size": 13420, }, "GitLabProvider.js.map": { - "offset": 1298470, + "offset": 770900, "size": 21900, }, "KeygenProvider.js": { - "offset": 1320360, + "offset": 792790, "size": 2210, }, "KeygenProvider.js.map": { - "offset": 1322570, + "offset": 795000, "size": 3900, }, "PrivateGitHubProvider.js": { - "offset": 1326460, + "offset": 798890, "size": 4160, }, "PrivateGitHubProvider.js.map": { - "offset": 1330610, + "offset": 803040, "size": 7790, }, "Provider.js": { - "offset": 1338400, + "offset": 810830, "size": 6010, }, "Provider.js.map": { - "offset": 1344400, + "offset": 816830, "size": 11700, }, }, }, "types.js": { - "offset": 1356100, + "offset": 828520, "size": 1560, }, "types.js.map": { - "offset": 1357650, + "offset": 830070, "size": 3620, }, "util.js": { - "offset": 1361270, + "offset": 833690, "size": 1280, }, "util.js.map": { - "offset": 1362540, + "offset": 834970, "size": 2040, }, "windowsExecutableCodeSignatureVerifier.js": { - "offset": 1364580, + "offset": 837010, "size": 7540, }, "windowsExecutableCodeSignatureVerifier.js.map": { - "offset": 1372120, + "offset": 844550, "size": 11370, }, }, }, "package.json": { - "offset": 1383490, + "offset": 855910, "size": 1040, }, }, }, - "encodeurl": { - "files": { - "LICENSE": { - "offset": 1384520, - "size": 1090, - }, - "index.js": { - "offset": 1385610, - "size": 1580, - }, - "package.json": { - "offset": 1387190, - "size": 620, - }, - }, - }, - "es-define-property": { + "escape-html": { "files": { - ".nycrc": { - "offset": 1387800, - "size": 140, - }, - "LICENSE": { - "offset": 1387940, - "size": 1080, - }, - "index.js": { - "offset": 1389010, - "size": 290, - }, - "package.json": { - "offset": 1389300, - "size": 1340, - }, - "tsconfig.json": { - "offset": 1390640, + "Makefile": { + "offset": 856950, "size": 140, }, - }, - }, - "es-errors": { - "files": { - "LICENSE": { - "offset": 1390780, - "size": 1080, - }, - "eval.js": { - "offset": 1391850, - "size": 80, - }, - "index.js": { - "offset": 1391920, - "size": 70, - }, - "package.json": { - "offset": 1391990, - "size": 1340, - }, - "range.js": { - "offset": 1393320, - "size": 80, - }, - "ref.js": { - "offset": 1393400, - "size": 80, - }, - "syntax.js": { - "offset": 1393480, - "size": 80, - }, - "tsconfig.json": { - "offset": 1393560, - "size": 3170, - }, - "type.js": { - "offset": 1396730, - "size": 80, - }, - "uri.js": { - "offset": 1396800, - "size": 80, - }, - }, - }, - "es-object-atoms": { - "files": { - "LICENSE": { - "offset": 1396880, - "size": 1080, - }, - "RequireObjectCoercible.js": { - "offset": 1397950, - "size": 320, - }, - "ToObject.js": { - "offset": 1398260, - "size": 250, - }, - "index.js": { - "offset": 1398510, - "size": 70, - }, - "isObject.js": { - "offset": 1398580, - "size": 170, - }, - "package.json": { - "offset": 1398740, - "size": 1430, - }, - "tsconfig.json": { - "offset": 1400160, - "size": 90, - }, - }, - }, - "escape-html": { - "files": { - "LICENSE": { - "offset": 1400240, - "size": 1160, + "component.json": { + "offset": 857090, + "size": 200, }, "index.js": { - "offset": 1401400, - "size": 1370, + "offset": 857280, + "size": 330, }, "package.json": { - "offset": 1402760, + "offset": 857610, "size": 320, }, }, }, - "etag": { - "files": { - "HISTORY.md": { - "offset": 1403080, - "size": 1740, - }, - "LICENSE": { - "offset": 1404810, - "size": 1100, - }, - "index.js": { - "offset": 1405900, - "size": 2480, - }, - "package.json": { - "offset": 1408380, - "size": 720, - }, - }, - }, "express": { "files": { "History.md": { - "offset": 1409090, - "size": 115670, + "offset": 857930, + "size": 43960, }, "LICENSE": { - "offset": 1524760, - "size": 1250, + "offset": 901890, + "size": 1110, + }, + "Makefile": { + "offset": 902990, + "size": 600, + }, + "benchmarks": { + "files": { + "Makefile": { + "offset": 903590, + "size": 210, + }, + "middleware.js": { + "offset": 903790, + "size": 380, + }, + "run": { + "executable": true, + "offset": 904160, + "size": 200, + }, + }, }, "index.js": { - "offset": 1526010, - "size": 230, + "offset": 904350, + "size": 110, }, "lib": { "files": { "application.js": { - "offset": 1526230, - "size": 14600, + "offset": 904460, + "size": 12050, }, "express.js": { - "offset": 1540830, - "size": 2410, + "offset": 916500, + "size": 1730, }, "middleware": { "files": { "init.js": { - "offset": 1543240, - "size": 860, + "offset": 918230, + "size": 570, }, "query.js": { - "offset": 1544090, - "size": 890, + "offset": 918800, + "size": 790, }, }, }, "request.js": { - "offset": 1544970, - "size": 12510, + "offset": 919580, + "size": 9320, }, "response.js": { - "offset": 1557480, - "size": 28730, + "offset": 928900, + "size": 18090, }, "router": { "files": { "index.js": { - "offset": 1586210, - "size": 15130, + "offset": 946980, + "size": 9100, }, "layer.js": { - "offset": 1601330, - "size": 3300, + "offset": 956080, + "size": 1210, }, "route.js": { - "offset": 1604630, - "size": 4400, + "offset": 957280, + "size": 3790, }, }, }, "utils.js": { - "offset": 1609030, - "size": 5880, + "offset": 961070, + "size": 2140, }, "view.js": { - "offset": 1614900, - "size": 3330, + "offset": 963200, + "size": 1830, }, }, }, - "package.json": { - "offset": 1618220, - "size": 1820, - }, - }, - }, - "fill-range": { - "files": { - "LICENSE": { - "offset": 1620040, - "size": 1100, - }, - "index.js": { - "offset": 1621130, - "size": 6410, - }, - "package.json": { - "offset": 1627540, - "size": 850, - }, - }, - }, - "finalhandler": { - "files": { - "HISTORY.md": { - "offset": 1628380, - "size": 4670, - }, - "LICENSE": { - "offset": 1633040, - "size": 1120, - }, - "SECURITY.md": { - "offset": 1634160, - "size": 1210, - }, - "index.js": { - "offset": 1635360, - "size": 6770, - }, - "package.json": { - "offset": 1642130, - "size": 980, - }, - }, - }, - "find-yarn-workspace-root": { - "files": { - "LICENSE": { - "offset": 1643100, - "size": 11350, - }, - "index.js": { - "offset": 1654450, - "size": 1320, - }, - "package.json": { - "offset": 1655770, - "size": 680, - }, - }, - }, - "forwarded": { - "files": { - "HISTORY.md": { - "offset": 1656440, - "size": 400, - }, - "LICENSE": { - "offset": 1656840, - "size": 1100, - }, - "index.js": { - "offset": 1657930, - "size": 1580, + "node_modules": { + "files": { + "debug": { + "files": { + "debug.js": { + "offset": 966200, + "size": 2470, + }, + "lib": { + "files": { + "debug.js": { + "offset": 968660, + "size": 2580, + }, + }, + }, + "package.json": { + "offset": 971230, + "size": 530, + }, + }, + }, + }, }, "package.json": { - "offset": 1659510, - "size": 660, + "offset": 965030, + "size": 1170, }, }, }, "fresh": { "files": { - "HISTORY.md": { - "offset": 1660170, - "size": 1500, + "History.md": { + "offset": 971750, + "size": 170, }, - "LICENSE": { - "offset": 1661670, - "size": 1180, + "Makefile": { + "offset": 971920, + "size": 90, }, "index.js": { - "offset": 1662840, - "size": 2720, + "offset": 972010, + "size": 1230, }, "package.json": { - "offset": 1665550, - "size": 730, + "offset": 973230, + "size": 610, }, }, }, "fs-extra": { "files": { "LICENSE": { - "offset": 1666280, + "offset": 973840, "size": 1090, }, "lib": { @@ -77284,15 +76513,15 @@ exports[`node_module collectors > yarn two package.json 2`] = ` "copy": { "files": { "copy-sync.js": { - "offset": 1667360, + "offset": 974920, "size": 5780, }, "copy.js": { - "offset": 1673140, + "offset": 980700, "size": 7760, }, "index.js": { - "offset": 1680890, + "offset": 988450, "size": 150, }, }, @@ -77300,7 +76529,7 @@ exports[`node_module collectors > yarn two package.json 2`] = ` "empty": { "files": { "index.js": { - "offset": 1681040, + "offset": 988600, "size": 750, }, }, @@ -77308,27 +76537,27 @@ exports[`node_module collectors > yarn two package.json 2`] = ` "ensure": { "files": { "file.js": { - "offset": 1681790, + "offset": 989350, "size": 1710, }, "index.js": { - "offset": 1683500, + "offset": 991060, "size": 550, }, "link.js": { - "offset": 1684040, + "offset": 991600, "size": 1660, }, "symlink-paths.js": { - "offset": 1685690, + "offset": 993250, "size": 3380, }, "symlink-type.js": { - "offset": 1689070, + "offset": 996630, "size": 700, }, "symlink.js": { - "offset": 1689760, + "offset": 997320, "size": 2530, }, }, @@ -77336,31 +76565,31 @@ exports[`node_module collectors > yarn two package.json 2`] = ` "fs": { "files": { "index.js": { - "offset": 1692280, + "offset": 999840, "size": 3380, }, }, }, "index.js": { - "offset": 1695650, + "offset": 1003210, "size": 360, }, "json": { "files": { "index.js": { - "offset": 1696010, + "offset": 1003570, "size": 510, }, "jsonfile.js": { - "offset": 1696520, + "offset": 1004080, "size": 240, }, "output-json-sync.js": { - "offset": 1696760, + "offset": 1004320, "size": 280, }, "output-json.js": { - "offset": 1697030, + "offset": 1004590, "size": 280, }, }, @@ -77368,15 +76597,15 @@ exports[`node_module collectors > yarn two package.json 2`] = ` "mkdirs": { "files": { "index.js": { - "offset": 1697310, + "offset": 1004870, "size": 330, }, "make-dir.js": { - "offset": 1697640, + "offset": 1005200, "size": 550, }, "utils.js": { - "offset": 1698180, + "offset": 1005740, "size": 1660, }, }, @@ -77384,15 +76613,15 @@ exports[`node_module collectors > yarn two package.json 2`] = ` "move": { "files": { "index.js": { - "offset": 1699840, + "offset": 1007400, "size": 150, }, "move-sync.js": { - "offset": 1699990, + "offset": 1007550, "size": 1490, }, "move.js": { - "offset": 1701470, + "offset": 1009030, "size": 2010, }, }, @@ -77400,7 +76629,7 @@ exports[`node_module collectors > yarn two package.json 2`] = ` "output-file": { "files": { "index.js": { - "offset": 1703480, + "offset": 1011040, "size": 950, }, }, @@ -77408,7 +76637,7 @@ exports[`node_module collectors > yarn two package.json 2`] = ` "path-exists": { "files": { "index.js": { - "offset": 1704430, + "offset": 1011990, "size": 270, }, }, @@ -77416,11 +76645,11 @@ exports[`node_module collectors > yarn two package.json 2`] = ` "remove": { "files": { "index.js": { - "offset": 1704690, + "offset": 1012250, "size": 490, }, "rimraf.js": { - "offset": 1705180, + "offset": 1012740, "size": 7450, }, }, @@ -77428,11 +76657,11 @@ exports[`node_module collectors > yarn two package.json 2`] = ` "util": { "files": { "stat.js": { - "offset": 1712620, + "offset": 1020180, "size": 5230, }, "utimes.js": { - "offset": 1717850, + "offset": 1025410, "size": 620, }, }, @@ -77440,3035 +76669,938 @@ exports[`node_module collectors > yarn two package.json 2`] = ` }, }, "package.json": { - "offset": 1718460, + "offset": 1026020, "size": 950, }, }, }, - "function-bind": { + "graceful-fs": { "files": { - ".nycrc": { - "offset": 1719410, - "size": 220, - }, "LICENSE": { - "offset": 1719630, - "size": 1060, + "offset": 1026970, + "size": 800, }, - "implementation.js": { - "offset": 1720680, - "size": 2050, + "clone.js": { + "offset": 1027770, + "size": 500, }, - "index.js": { - "offset": 1722730, - "size": 130, + "graceful-fs.js": { + "offset": 1028260, + "size": 12680, + }, + "legacy-streams.js": { + "offset": 1040940, + "size": 2660, }, "package.json": { - "offset": 1722850, - "size": 1330, + "offset": 1043600, + "size": 600, + }, + "polyfills.js": { + "offset": 1044200, + "size": 10150, }, }, }, - "get-intrinsic": { + "js-yaml": { "files": { - ".nycrc": { - "offset": 1724180, - "size": 140, - }, "LICENSE": { - "offset": 1724320, - "size": 1080, + "offset": 1054340, + "size": 1090, + }, + "bin": { + "files": { + "js-yaml.js": { + "executable": true, + "offset": 1055420, + "size": 2740, + }, + }, + }, + "dist": { + "files": { + "js-yaml.js": { + "offset": 1058160, + "size": 114590, + }, + "js-yaml.min.js": { + "offset": 1172740, + "size": 39520, + }, + "js-yaml.mjs": { + "offset": 1212260, + "size": 107750, + }, + }, }, "index.js": { - "offset": 1725390, - "size": 14440, + "offset": 1320000, + "size": 1800, + }, + "lib": { + "files": { + "common.js": { + "offset": 1321790, + "size": 1180, + }, + "dumper.js": { + "offset": 1322970, + "size": 31900, + }, + "exception.js": { + "offset": 1354860, + "size": 1300, + }, + "loader.js": { + "offset": 1356160, + "size": 47360, + }, + "schema": { + "files": { + "core.js": { + "offset": 1406900, + "size": 290, + }, + "default.js": { + "offset": 1407190, + "size": 540, + }, + "failsafe.js": { + "offset": 1407730, + "size": 280, + }, + "json.js": { + "offset": 1408010, + "size": 530, + }, + }, + }, + "schema.js": { + "offset": 1403520, + "size": 3390, + }, + "snippet.js": { + "offset": 1408530, + "size": 3090, + }, + "type": { + "files": { + "binary.js": { + "offset": 1413470, + "size": 2920, + }, + "bool.js": { + "offset": 1416380, + "size": 980, + }, + "float.js": { + "offset": 1417350, + "size": 2470, + }, + "int.js": { + "offset": 1419820, + "size": 3700, + }, + "map.js": { + "offset": 1423510, + "size": 190, + }, + "merge.js": { + "offset": 1423700, + "size": 230, + }, + "null.js": { + "offset": 1423930, + "size": 810, + }, + "omap.js": { + "offset": 1424730, + "size": 1030, + }, + "pairs.js": { + "offset": 1425760, + "size": 1090, + }, + "seq.js": { + "offset": 1426840, + "size": 200, + }, + "set.js": { + "offset": 1427030, + "size": 550, + }, + "str.js": { + "offset": 1427580, + "size": 190, + }, + "timestamp.js": { + "offset": 1427770, + "size": 2580, + }, + }, + }, + "type.js": { + "offset": 1411620, + "size": 1850, + }, + }, }, "package.json": { - "offset": 1739830, - "size": 1870, + "offset": 1430340, + "size": 1080, }, }, }, - "get-proto": { + "jsonfile": { "files": { - ".nycrc": { - "offset": 1741690, - "size": 140, - }, "LICENSE": { - "offset": 1741830, - "size": 1080, - }, - "Object.getPrototypeOf.js": { - "offset": 1742900, - "size": 160, - }, - "Reflect.getPrototypeOf.js": { - "offset": 1743060, - "size": 150, + "offset": 1431410, + "size": 1110, }, "index.js": { - "offset": 1743210, - "size": 830, + "offset": 1432520, + "size": 2020, }, "package.json": { - "offset": 1744030, - "size": 1430, + "offset": 1434540, + "size": 560, }, - "tsconfig.json": { - "offset": 1745460, - "size": 120, + "utils.js": { + "offset": 1435100, + "size": 500, }, }, }, - "gopd": { + "lazy-val": { "files": { - "LICENSE": { - "offset": 1745570, - "size": 1080, - }, - "gOPD.js": { - "offset": 1746640, - "size": 100, - }, - "index.js": { - "offset": 1746740, - "size": 210, + "out": { + "files": { + "main.js": { + "offset": 1435590, + "size": 610, + }, + "main.js.map": { + "offset": 1436200, + "size": 1160, + }, + }, }, "package.json": { - "offset": 1746950, - "size": 1310, - }, - "tsconfig.json": { - "offset": 1748260, - "size": 120, + "offset": 1437360, + "size": 330, }, }, }, - "graceful-fs": { + "lodash.escaperegexp": { "files": { "LICENSE": { - "offset": 1748370, - "size": 800, - }, - "clone.js": { - "offset": 1749160, - "size": 500, - }, - "graceful-fs.js": { - "offset": 1749660, - "size": 12680, + "offset": 1437690, + "size": 1960, }, - "legacy-streams.js": { - "offset": 1762340, - "size": 2660, + "index.js": { + "offset": 1439640, + "size": 4400, }, "package.json": { - "offset": 1764990, - "size": 600, - }, - "polyfills.js": { - "offset": 1765590, - "size": 10150, + "offset": 1444030, + "size": 360, }, }, }, - "has-flag": { + "lodash.isequal": { "files": { - "index.js": { - "offset": 1775740, - "size": 330, + "LICENSE": { + "offset": 1444390, + "size": 1950, }, - "license": { - "offset": 1776070, - "size": 1110, + "index.js": { + "offset": 1446340, + "size": 49600, }, "package.json": { - "offset": 1777170, - "size": 460, + "offset": 1495940, + "size": 350, }, }, }, - "has-property-descriptors": { + "merge-descriptors": { "files": { - ".nycrc": { - "offset": 1777630, - "size": 140, - }, - "LICENSE": { - "offset": 1777770, - "size": 1070, + "component.json": { + "offset": 1496280, + "size": 210, }, "index.js": { - "offset": 1778840, - "size": 590, + "offset": 1496490, + "size": 240, }, "package.json": { - "offset": 1779430, - "size": 1330, + "offset": 1496720, + "size": 410, }, }, }, - "has-symbols": { + "methods": { "files": { - ".nycrc": { - "offset": 1780750, - "size": 140, - }, - "LICENSE": { - "offset": 1780890, - "size": 1080, + "History.md": { + "offset": 1497120, + "size": 70, }, "index.js": { - "offset": 1781960, - "size": 450, + "offset": 1497190, + "size": 470, }, "package.json": { - "offset": 1782410, - "size": 1800, - }, - "shams.js": { - "offset": 1784200, - "size": 1930, - }, - "tsconfig.json": { - "offset": 1786130, - "size": 150, + "offset": 1497660, + "size": 290, }, }, }, - "hasown": { + "mime": { "files": { - ".nycrc": { - "offset": 1786270, - "size": 220, - }, "LICENSE": { - "offset": 1786480, - "size": 1090, + "offset": 1497950, + "size": 1080, }, - "index.js": { - "offset": 1787570, - "size": 210, + "mime.js": { + "offset": 1499020, + "size": 2870, }, "package.json": { - "offset": 1787770, - "size": 1480, + "offset": 1501880, + "size": 390, }, - "tsconfig.json": { - "offset": 1789250, - "size": 80, + "test.js": { + "offset": 1502270, + "size": 2750, + }, + "types": { + "files": { + "mime.types": { + "offset": 1505020, + "size": 53010, + }, + "node.types": { + "offset": 1558030, + "size": 2580, + }, + }, }, }, }, - "http-errors": { + "ms": { "files": { - "HISTORY.md": { - "offset": 1789320, - "size": 4100, - }, - "LICENSE": { - "offset": 1793410, - "size": 1170, - }, "index.js": { - "offset": 1794580, - "size": 6430, + "offset": 1560600, + "size": 3030, + }, + "license.md": { + "offset": 1563630, + "size": 1080, }, "package.json": { - "offset": 1801010, - "size": 940, + "offset": 1564710, + "size": 500, }, }, }, - "iconv-lite": { + "negotiator": { "files": { "LICENSE": { - "offset": 1801950, - "size": 1070, + "offset": 1565200, + "size": 1170, }, - "encodings": { + "lib": { "files": { - "dbcs-codec.js": { - "offset": 1803010, - "size": 21420, + "charset.js": { + "offset": 1566370, + "size": 1650, }, - "dbcs-data.js": { - "offset": 1824420, - "size": 8300, + "encoding.js": { + "offset": 1568010, + "size": 2000, }, - "index.js": { - "offset": 1832720, - "size": 710, - }, - "internal.js": { - "offset": 1833430, - "size": 6120, - }, - "sbcs-codec.js": { - "offset": 1839540, - "size": 2200, - }, - "sbcs-data-generated.js": { - "offset": 1841730, - "size": 32040, - }, - "sbcs-data.js": { - "offset": 1873770, - "size": 4690, - }, - "tables": { - "files": { - "big5-added.json": { - "offset": 1878450, - "size": 17720, - }, - "cp936.json": { - "offset": 1896170, - "size": 47320, - }, - "cp949.json": { - "offset": 1943490, - "size": 38130, - }, - "cp950.json": { - "offset": 1981610, - "size": 42360, - }, - "eucjp.json": { - "offset": 2023970, - "size": 41070, - }, - "gb18030-ranges.json": { - "offset": 2065030, - "size": 2220, - }, - "gbk-added.json": { - "offset": 2067250, - "size": 1230, - }, - "shiftjis.json": { - "offset": 2068470, - "size": 23790, - }, - }, - }, - "utf16.js": { - "offset": 2092260, - "size": 5020, - }, - "utf7.js": { - "offset": 2097270, - "size": 9220, - }, - }, - }, - "lib": { - "files": { - "bom-handling.js": { - "offset": 2106480, - "size": 1110, - }, - "extend-node.js": { - "offset": 2107590, - "size": 8710, + "language.js": { + "offset": 1570010, + "size": 2140, }, - "index.js": { - "offset": 2116290, - "size": 5130, + "mediaType.js": { + "offset": 1572140, + "size": 2180, }, - "streams.js": { - "offset": 2121410, - "size": 3390, + "negotiator.js": { + "offset": 1574320, + "size": 910, }, }, }, "package.json": { - "offset": 2124800, - "size": 790, + "offset": 1575220, + "size": 460, }, }, }, - "inherits": { + "parseurl": { "files": { - "LICENSE": { - "offset": 2125580, - "size": 750, - }, - "inherits.js": { - "offset": 2126330, - "size": 250, - }, - "inherits_browser.js": { - "offset": 2126580, - "size": 760, + "index.js": { + "offset": 1575670, + "size": 590, }, "package.json": { - "offset": 2127340, - "size": 400, + "offset": 1576250, + "size": 380, }, }, }, - "ipaddr.js": { + "path-to-regexp": { "files": { - "LICENSE": { - "offset": 2127730, - "size": 1090, - }, - "ipaddr.min.js": { - "offset": 2128820, - "size": 9740, - }, - "lib": { - "files": { - "ipaddr.js": { - "offset": 2138550, - "size": 19340, - }, - }, - }, - "package.json": { - "offset": 2157890, - "size": 620, + "History.md": { + "offset": 1576630, + "size": 180, }, - }, - }, - "is-docker": { - "files": { - "cli.js": { - "executable": true, - "offset": 2158500, - "size": 110, + "component.json": { + "offset": 1576810, + "size": 250, }, "index.js": { - "offset": 2158610, - "size": 450, - }, - "license": { - "offset": 2159060, - "size": 1120, + "offset": 1577060, + "size": 1490, }, "package.json": { - "offset": 2160170, - "size": 610, + "offset": 1578540, + "size": 370, + }, + "test.js": { + "offset": 1578910, + "size": 13770, }, }, }, - "is-number": { + "qs": { "files": { - "LICENSE": { - "offset": 2160780, - "size": 1100, + ".gitmodules": { + "offset": 1592680, + "size": 210, }, "index.js": { - "offset": 2161870, - "size": 420, + "offset": 1592890, + "size": 7370, }, "package.json": { - "offset": 2162280, - "size": 930, + "offset": 1600250, + "size": 390, }, }, }, - "is-wsl": { + "range-parser": { "files": { - "index.js": { - "offset": 2163200, - "size": 560, - }, - "license": { - "offset": 2163760, - "size": 1110, - }, - "package.json": { - "offset": 2164870, - "size": 620, + "History.md": { + "offset": 1600630, + "size": 340, }, - }, - }, - "isarray": { - "files": { - "LICENSE": { - "offset": 2165480, - "size": 1100, + "Makefile": { + "offset": 1600960, + "size": 90, }, "index.js": { - "offset": 2166580, - "size": 140, + "offset": 1601050, + "size": 920, }, "package.json": { - "offset": 2166710, - "size": 880, + "offset": 1601970, + "size": 520, }, }, }, - "isexe": { + "sax": { "files": { - "LICENSE": { - "offset": 2167590, - "size": 770, - }, - "index.js": { - "offset": 2168350, - "size": 1200, + "LICENSE.md": { + "offset": 1602490, + "size": 1560, }, - "mode.js": { - "offset": 2169540, - "size": 910, + "lib": { + "files": { + "sax.js": { + "offset": 1604040, + "size": 45640, + }, + }, }, "package.json": { - "offset": 2170450, - "size": 520, - }, - "windows.js": { - "offset": 2170970, - "size": 890, + "offset": 1649680, + "size": 530, }, }, }, - "js-yaml": { + "semver": { "files": { "LICENSE": { - "offset": 2171860, - "size": 1090, + "offset": 1650200, + "size": 770, }, "bin": { "files": { - "js-yaml.js": { + "semver.js": { "executable": true, - "offset": 2172940, - "size": 2740, + "offset": 1650960, + "size": 4750, }, }, }, - "dist": { + "classes": { "files": { - "js-yaml.js": { - "offset": 2175680, - "size": 114590, + "comparator.js": { + "offset": 1655710, + "size": 3640, }, - "js-yaml.min.js": { - "offset": 2290260, - "size": 39520, + "index.js": { + "offset": 1659340, + "size": 150, }, - "js-yaml.mjs": { - "offset": 2329770, - "size": 107750, + "range.js": { + "offset": 1659490, + "size": 14980, + }, + "semver.js": { + "offset": 1674460, + "size": 9480, }, }, }, - "index.js": { - "offset": 2437520, - "size": 1800, - }, - "lib": { + "functions": { "files": { - "common.js": { - "offset": 2439310, - "size": 1180, + "clean.js": { + "offset": 1683940, + "size": 210, }, - "dumper.js": { - "offset": 2440490, - "size": 31900, + "cmp.js": { + "offset": 1684150, + "size": 970, }, - "exception.js": { - "offset": 2472380, - "size": 1300, + "coerce.js": { + "offset": 1685110, + "size": 2010, }, - "loader.js": { - "offset": 2473680, - "size": 47360, + "compare-build.js": { + "offset": 1687110, + "size": 290, }, - "schema": { - "files": { - "core.js": { - "offset": 2524420, - "size": 290, - }, - "default.js": { - "offset": 2524710, - "size": 540, - }, - "failsafe.js": { - "offset": 2525250, - "size": 280, - }, - "json.js": { - "offset": 2525520, - "size": 530, - }, - }, + "compare-loose.js": { + "offset": 1687390, + "size": 140, }, - "schema.js": { - "offset": 2521040, - "size": 3390, + "compare.js": { + "offset": 1687530, + "size": 170, }, - "snippet.js": { - "offset": 2526050, - "size": 3090, + "diff.js": { + "offset": 1687700, + "size": 1430, }, - "type": { - "files": { - "binary.js": { - "offset": 2530980, - "size": 2920, - }, - "bool.js": { - "offset": 2533900, - "size": 980, - }, - "float.js": { - "offset": 2534870, - "size": 2470, - }, - "int.js": { - "offset": 2537330, - "size": 3700, - }, - "map.js": { - "offset": 2541020, - "size": 190, - }, - "merge.js": { - "offset": 2541210, - "size": 230, - }, - "null.js": { - "offset": 2541440, - "size": 810, - }, - "omap.js": { - "offset": 2542250, - "size": 1030, - }, - "pairs.js": { - "offset": 2543280, - "size": 1090, - }, - "seq.js": { - "offset": 2544360, - "size": 200, - }, - "set.js": { - "offset": 2544550, - "size": 550, - }, - "str.js": { - "offset": 2545100, - "size": 190, - }, - "timestamp.js": { - "offset": 2545290, - "size": 2580, - }, - }, + "eq.js": { + "offset": 1689120, + "size": 130, }, - "type.js": { - "offset": 2529130, - "size": 1850, + "gt.js": { + "offset": 1689250, + "size": 130, + }, + "gte.js": { + "offset": 1689370, + "size": 130, + }, + "inc.js": { + "offset": 1689500, + "size": 480, + }, + "lt.js": { + "offset": 1689970, + "size": 130, + }, + "lte.js": { + "offset": 1690100, + "size": 130, + }, + "major.js": { + "offset": 1690230, + "size": 140, + }, + "minor.js": { + "offset": 1690360, + "size": 140, + }, + "neq.js": { + "offset": 1690500, + "size": 130, }, - }, - }, - "package.json": { - "offset": 2547860, - "size": 1080, - }, - }, - }, - "json-stable-stringify": { - "files": { - "LICENSE": { - "offset": 2548930, - "size": 1070, - }, - "index.js": { - "offset": 2550000, - "size": 4750, - }, - "package.json": { - "offset": 2554750, - "size": 1610, - }, - "tsconfig.json": { - "offset": 2556350, - "size": 150, - }, - }, - }, - "jsonfile": { - "files": { - "LICENSE": { - "offset": 2556500, - "size": 1110, - }, - "index.js": { - "offset": 2557610, - "size": 2020, - }, - "package.json": { - "offset": 2559620, - "size": 560, - }, - "utils.js": { - "offset": 2560180, - "size": 500, - }, - }, - }, - "jsonify": { - "files": { - "index.js": { - "offset": 2560680, - "size": 110, - }, - "lib": { - "files": { "parse.js": { - "offset": 2560780, - "size": 4650, + "offset": 1690630, + "size": 340, }, - "stringify.js": { - "offset": 2565430, - "size": 4310, + "patch.js": { + "offset": 1690960, + "size": 140, }, - }, - }, - "package.json": { - "offset": 2569730, - "size": 1010, - }, - }, - }, - "klaw-sync": { - "files": { - "LICENSE": { - "offset": 2570740, - "size": 1080, - }, - "klaw-sync.js": { - "offset": 2571820, - "size": 1030, - }, - "package.json": { - "offset": 2572840, - "size": 690, - }, - }, - }, - "lazy-val": { - "files": { - "out": { - "files": { - "main.js": { - "offset": 2573520, - "size": 610, + "prerelease.js": { + "offset": 1691090, + "size": 240, }, - "main.js.map": { - "offset": 2574130, - "size": 1160, + "rcompare.js": { + "offset": 1691330, + "size": 140, + }, + "rsort.js": { + "offset": 1691460, + "size": 170, + }, + "satisfies.js": { + "offset": 1691620, + "size": 250, + }, + "sort.js": { + "offset": 1691870, + "size": 170, + }, + "valid.js": { + "offset": 1692030, + "size": 180, }, }, }, - "package.json": { - "offset": 2575280, - "size": 330, - }, - }, - }, - "lodash.escaperegexp": { - "files": { - "LICENSE": { - "offset": 2575610, - "size": 1960, - }, - "index.js": { - "offset": 2577560, - "size": 4400, - }, - "package.json": { - "offset": 2581960, - "size": 360, - }, - }, - }, - "lodash.isequal": { - "files": { - "LICENSE": { - "offset": 2582320, - "size": 1950, - }, "index.js": { - "offset": 2584270, - "size": 49600, - }, - "package.json": { - "offset": 2633870, - "size": 350, - }, - }, - }, - "math-intrinsics": { - "files": { - "LICENSE": { - "offset": 2634210, - "size": 1080, - }, - "abs.js": { - "offset": 2635290, - "size": 80, + "offset": 1692210, + "size": 2630, }, - "constants": { + "internal": { "files": { - "maxArrayLength.js": { - "offset": 2635360, - "size": 110, + "constants.js": { + "offset": 1694840, + "size": 880, }, - "maxSafeInteger.js": { - "offset": 2635470, + "debug.js": { + "offset": 1695710, "size": 240, }, - "maxValue.js": { - "offset": 2635700, - "size": 200, + "identifiers.js": { + "offset": 1695950, + "size": 530, }, - }, - }, - "floor.js": { - "offset": 2635900, - "size": 80, - }, - "isFinite.js": { - "offset": 2635970, - "size": 270, - }, - "isInteger.js": { - "offset": 2636240, - "size": 410, - }, - "isNaN.js": { - "offset": 2636650, - "size": 130, - }, - "isNegativeZero.js": { - "offset": 2636770, - "size": 150, - }, - "max.js": { - "offset": 2636910, - "size": 80, - }, - "min.js": { - "offset": 2636980, - "size": 80, - }, - "mod.js": { - "offset": 2637060, - "size": 220, - }, - "package.json": { - "offset": 2637270, - "size": 1940, - }, - "pow.js": { - "offset": 2639210, - "size": 80, - }, - "round.js": { - "offset": 2639280, - "size": 80, - }, - "sign.js": { - "offset": 2639360, - "size": 220, - }, - "tsconfig.json": { - "offset": 2639570, - "size": 40, - }, - }, - }, - "media-typer": { - "files": { - "HISTORY.md": { - "offset": 2639610, - "size": 470, - }, - "LICENSE": { - "offset": 2640070, - "size": 1090, - }, - "index.js": { - "offset": 2641160, - "size": 6380, - }, - "package.json": { - "offset": 2647530, - "size": 450, - }, - }, - }, - "merge-descriptors": { - "files": { - "HISTORY.md": { - "offset": 2647980, - "size": 370, - }, - "LICENSE": { - "offset": 2648340, - "size": 1170, - }, - "index.js": { - "offset": 2649510, - "size": 1220, - }, - "package.json": { - "offset": 2650730, - "size": 770, - }, - }, - }, - "methods": { - "files": { - "HISTORY.md": { - "offset": 2651500, - "size": 430, - }, - "LICENSE": { - "offset": 2651920, - "size": 1180, - }, - "index.js": { - "offset": 2653100, - "size": 1040, - }, - "package.json": { - "offset": 2654140, - "size": 380, - }, - }, - }, - "micromatch": { - "files": { - "LICENSE": { - "executable": true, - "offset": 2654510, - "size": 1100, - }, - "index.js": { - "offset": 2655610, - "size": 13900, - }, - "package.json": { - "offset": 2669500, - "size": 1190, - }, - }, - }, - "mime": { - "files": { - "LICENSE": { - "offset": 2670690, - "size": 1100, - }, - "cli.js": { - "executable": true, - "offset": 2671790, - "size": 150, - }, - "mime.js": { - "offset": 2671940, - "size": 2730, - }, - "package.json": { - "offset": 2674670, - "size": 580, - }, - "src": { - "files": { - "build.js": { - "executable": true, - "offset": 2675240, - "size": 1360, - }, - "test.js": { - "offset": 2676590, - "size": 2340, - }, - }, - }, - "types.json": { - "offset": 2678930, - "size": 31560, - }, - }, - }, - "mime-db": { - "files": { - "HISTORY.md": { - "offset": 2710480, - "size": 12590, - }, - "LICENSE": { - "offset": 2723060, - "size": 1180, - }, - "db.json": { - "offset": 2724230, - "size": 185890, - }, - "index.js": { - "offset": 2910120, - "size": 190, - }, - "package.json": { - "offset": 2910310, - "size": 810, - }, - }, - }, - "mime-types": { - "files": { - "HISTORY.md": { - "offset": 2911110, - "size": 8820, - }, - "LICENSE": { - "offset": 2919920, - "size": 1170, - }, - "index.js": { - "offset": 2921090, - "size": 3670, - }, - "package.json": { - "offset": 2924750, - "size": 660, - }, - }, - }, - "minimist": { - "files": { - ".nycrc": { - "offset": 2925400, - "size": 230, - }, - "LICENSE": { - "offset": 2925630, - "size": 1080, - }, - "index.js": { - "offset": 2926710, - "size": 6200, - }, - "package.json": { - "offset": 2932900, - "size": 1250, - }, - }, - }, - "ms": { - "files": { - "index.js": { - "offset": 2934150, - "size": 3030, - }, - "license.md": { - "offset": 2937170, - "size": 1080, - }, - "package.json": { - "offset": 2938250, - "size": 500, - }, - }, - }, - "negotiator": { - "files": { - "HISTORY.md": { - "offset": 2938750, - "size": 2500, - }, - "LICENSE": { - "offset": 2941250, - "size": 1180, - }, - "index.js": { - "offset": 2942420, - "size": 2460, - }, - "lib": { - "files": { - "charset.js": { - "offset": 2944880, - "size": 3090, - }, - "encoding.js": { - "offset": 2947960, - "size": 3510, - }, - "language.js": { - "offset": 2951460, - "size": 3410, - }, - "mediaType.js": { - "offset": 2954870, - "size": 5360, - }, - }, - }, - "package.json": { - "offset": 2960230, - "size": 420, - }, - }, - }, - "object-inspect": { - "files": { - ".nycrc": { - "offset": 2960650, - "size": 240, - }, - "LICENSE": { - "offset": 2960880, - "size": 1080, - }, - "index.js": { - "offset": 2961960, - "size": 19060, - }, - "package-support.json": { - "offset": 2981010, - "size": 370, - }, - "package.json": { - "offset": 2981380, - "size": 2000, - }, - "test-core-js.js": { - "offset": 2983370, - "size": 540, - }, - "util.inspect.js": { - "offset": 2983900, - "size": 50, - }, - }, - }, - "object-keys": { - "files": { - ".editorconfig": { - "offset": 2983950, - "size": 280, - }, - "LICENSE": { - "offset": 2984220, - "size": 1080, - }, - "implementation.js": { - "offset": 2985300, - "size": 3220, - }, - "index.js": { - "offset": 2988520, - "size": 830, - }, - "isArguments.js": { - "offset": 2989340, - "size": 430, - }, - "package.json": { - "offset": 2989770, - "size": 1130, - }, - }, - }, - "on-finished": { - "files": { - "HISTORY.md": { - "offset": 2990890, - "size": 1870, - }, - "LICENSE": { - "offset": 2992750, - "size": 1170, - }, - "index.js": { - "offset": 2993920, - "size": 4430, - }, - "package.json": { - "offset": 2998350, - "size": 670, - }, - }, - }, - "open": { - "files": { - "index.js": { - "offset": 2999020, - "size": 4850, - }, - "license": { - "offset": 3003860, - "size": 1120, - }, - "package.json": { - "offset": 3004980, - "size": 660, - }, - "xdg-open": { - "executable": true, - "offset": 3005640, - "size": 25770, - }, - }, - }, - "parseurl": { - "files": { - "HISTORY.md": { - "offset": 3031400, - "size": 1050, - }, - "LICENSE": { - "offset": 3032450, - "size": 1180, - }, - "index.js": { - "offset": 3033620, - "size": 2810, - }, - "package.json": { - "offset": 3036430, - "size": 660, - }, - }, - }, - "patch-package": { - "files": { - "LICENSE": { - "offset": 3037080, - "size": 1070, - }, - "dist": { - "files": { - "PackageDetails.js": { - "offset": 3038150, - "size": 14600, - }, - "PackageDetails.test.js": { - "offset": 3052750, - "size": 26260, - }, - "applyPatches.js": { - "offset": 3079000, - "size": 54160, - }, - "assertNever.js": { - "offset": 3133150, - "size": 720, - }, - "coerceSemVer.js": { - "offset": 3133870, - "size": 1130, - }, - "createIssue.js": { - "offset": 3135000, - "size": 14220, - }, - "createIssue.test.js": { - "offset": 3149220, - "size": 3020, - }, - "detectPackageManager.js": { - "offset": 3152230, - "size": 7600, - }, - "filterFiles.js": { - "offset": 3159830, - "size": 2370, - }, - "getAppRootPath.js": { - "offset": 3162200, - "size": 2100, - }, - "getPackageResolution.js": { - "offset": 3164300, - "size": 16780, - }, - "getPackageVersion.js": { - "offset": 3181070, - "size": 980, - }, - "getPackageVersion.test.js": { - "offset": 3182040, - "size": 8070, - }, - "hash.js": { - "offset": 3190110, - "size": 3250, - }, - "index.js": { - "executable": true, - "offset": 3193350, - "size": 21200, - }, - "makePatch.js": { - "offset": 3214550, - "size": 64510, - }, - "makeRegExp.js": { - "offset": 3279050, - "size": 2550, - }, - "packageIsDevDependency.js": { - "offset": 3281600, - "size": 2060, - }, - "packageIsDevDependency.test.js": { - "offset": 3283660, - "size": 4650, - }, - "patch": { - "files": { - "apply.js": { - "offset": 3288310, - "size": 30170, - }, - "parse.js": { - "offset": 3318470, - "size": 41350, - }, - "read.js": { - "offset": 3359820, - "size": 6400, - }, - "reverse.js": { - "offset": 3366220, - "size": 9840, - }, - }, - }, - "patchFs.js": { - "offset": 3376060, - "size": 6350, - }, - "path.js": { - "offset": 3382400, - "size": 2140, - }, - "rebase.js": { - "offset": 3384540, - "size": 20840, - }, - "resolveRelativeFileDependencies.js": { - "offset": 3405380, - "size": 2620, - }, - "resolveRelativeFileDependencies.test.js": { - "offset": 3407990, - "size": 2940, - }, - "spawnSafe.js": { - "offset": 3410920, - "size": 3250, - }, - "stateFile.js": { - "offset": 3414170, - "size": 9100, - }, - }, - }, - "index.js": { - "executable": true, - "offset": 3423270, - "size": 50, - }, - "package.json": { - "offset": 3423320, - "size": 2070, - }, - }, - }, - "path-key": { - "files": { - "index.js": { - "offset": 3425390, - "size": 420, - }, - "license": { - "offset": 3425800, - "size": 1110, - }, - "package.json": { - "offset": 3426910, - "size": 510, - }, - }, - }, - "path-to-regexp": { - "files": { - "LICENSE": { - "offset": 3427420, - "size": 1110, - }, - "index.js": { - "offset": 3428520, - "size": 3840, - }, - "package.json": { - "offset": 3432360, - "size": 440, - }, - }, - }, - "picomatch": { - "files": { - "LICENSE": { - "offset": 3432800, - "size": 1100, - }, - "index.js": { - "offset": 3433890, - "size": 60, - }, - "lib": { - "files": { - "constants.js": { - "offset": 3433950, - "size": 4450, - }, - "parse.js": { - "offset": 3438400, - "size": 27770, - }, - "picomatch.js": { - "offset": 3466160, - "size": 9960, - }, - "scan.js": { - "offset": 3476120, - "size": 9190, - }, - "utils.js": { - "offset": 3485300, - "size": 1890, - }, - }, - }, - "package.json": { - "offset": 3487190, - "size": 1370, - }, - }, - }, - "proxy-addr": { - "files": { - "HISTORY.md": { - "offset": 3488550, - "size": 3000, - }, - "LICENSE": { - "offset": 3491540, - "size": 1100, - }, - "index.js": { - "offset": 3492640, - "size": 6000, - }, - "package.json": { - "offset": 3498640, - "size": 850, - }, - }, - }, - "qs": { - "files": { - ".editorconfig": { - "offset": 3499480, - "size": 600, - }, - ".nycrc": { - "offset": 3500080, - "size": 220, - }, - "LICENSE.md": { - "offset": 3500290, - "size": 1600, - }, - "dist": { - "files": { - "qs.js": { - "offset": 3501890, - "size": 51420, - }, - }, - }, - "eslint.config.mjs": { - "offset": 3553310, - "size": 1450, - }, - "lib": { - "files": { - "formats.js": { - "offset": 3554760, - "size": 480, - }, - "index.js": { - "offset": 3555240, - "size": 220, - }, - "parse.js": { - "offset": 3555450, - "size": 14090, - }, - "stringify.js": { - "offset": 3569530, - "size": 11480, - }, - "utils.js": { - "offset": 3581010, - "size": 10160, - }, - }, - }, - "package.json": { - "offset": 3591160, - "size": 1660, - }, - }, - }, - "range-parser": { - "files": { - "HISTORY.md": { - "offset": 3592810, - "size": 920, - }, - "LICENSE": { - "offset": 3593730, - "size": 1180, - }, - "index.js": { - "offset": 3594910, - "size": 2900, - }, - "package.json": { - "offset": 3597810, - "size": 700, - }, - }, - }, - "raw-body": { - "files": { - "LICENSE": { - "offset": 3598510, - "size": 1190, - }, - "index.js": { - "offset": 3599690, - "size": 7180, - }, - "package.json": { - "offset": 3606860, - "size": 920, - }, - }, - }, - "safe-buffer": { - "files": { - "LICENSE": { - "offset": 3607770, - "size": 1090, - }, - "index.js": { - "offset": 3608860, - "size": 1670, - }, - "package.json": { - "offset": 3610530, - "size": 780, - }, - }, - }, - "safer-buffer": { - "files": { - "LICENSE": { - "offset": 3611300, - "size": 1100, - }, - "Porting-Buffer.md": { - "offset": 3612390, - "size": 12800, - }, - "dangerous.js": { - "offset": 3625190, - "size": 1490, - }, - "package.json": { - "offset": 3626670, - "size": 580, - }, - "safer.js": { - "offset": 3627240, - "size": 2110, - }, - "tests.js": { - "offset": 3629350, - "size": 15740, - }, - }, - }, - "sax": { - "files": { - "LICENSE.md": { - "offset": 3645090, - "size": 1560, - }, - "lib": { - "files": { - "sax.js": { - "offset": 3646640, - "size": 45640, - }, - }, - }, - "package.json": { - "offset": 3692280, - "size": 530, - }, - }, - }, - "semver": { - "files": { - "LICENSE": { - "offset": 3692800, - "size": 770, - }, - "bin": { - "files": { - "semver.js": { - "executable": true, - "offset": 3693570, - "size": 4750, - }, - }, - }, - "classes": { - "files": { - "comparator.js": { - "offset": 3698310, - "size": 3640, - }, - "index.js": { - "offset": 3701940, - "size": 150, - }, - "range.js": { - "offset": 3702090, - "size": 14980, - }, - "semver.js": { - "offset": 3717060, - "size": 9480, - }, - }, - }, - "functions": { - "files": { - "clean.js": { - "offset": 3726540, - "size": 210, - }, - "cmp.js": { - "offset": 3726750, - "size": 970, - }, - "coerce.js": { - "offset": 3727710, - "size": 2010, - }, - "compare-build.js": { - "offset": 3729710, - "size": 290, - }, - "compare-loose.js": { - "offset": 3730000, - "size": 140, - }, - "compare.js": { - "offset": 3730130, - "size": 170, - }, - "diff.js": { - "offset": 3730300, - "size": 1430, - }, - "eq.js": { - "offset": 3731720, - "size": 130, - }, - "gt.js": { - "offset": 3731850, - "size": 130, - }, - "gte.js": { - "offset": 3731970, - "size": 130, - }, - "inc.js": { - "offset": 3732100, - "size": 480, - }, - "lt.js": { - "offset": 3732580, - "size": 130, - }, - "lte.js": { - "offset": 3732700, - "size": 130, - }, - "major.js": { - "offset": 3732830, - "size": 140, - }, - "minor.js": { - "offset": 3732960, - "size": 140, - }, - "neq.js": { - "offset": 3733100, - "size": 130, - }, - "parse.js": { - "offset": 3733230, - "size": 340, - }, - "patch.js": { - "offset": 3733560, - "size": 140, - }, - "prerelease.js": { - "offset": 3733690, - "size": 240, - }, - "rcompare.js": { - "offset": 3733930, - "size": 140, - }, - "rsort.js": { - "offset": 3734060, - "size": 170, - }, - "satisfies.js": { - "offset": 3734220, - "size": 250, - }, - "sort.js": { - "offset": 3734470, - "size": 170, - }, - "valid.js": { - "offset": 3734630, - "size": 180, - }, - }, - }, - "index.js": { - "offset": 3734810, - "size": 2630, - }, - "internal": { - "files": { - "constants.js": { - "offset": 3737440, - "size": 880, - }, - "debug.js": { - "offset": 3738310, - "size": 240, - }, - "identifiers.js": { - "offset": 3738550, - "size": 530, - }, - "lrucache.js": { - "offset": 3739070, - "size": 810, - }, - "parse-options.js": { - "offset": 3739880, - "size": 340, - }, - "re.js": { - "offset": 3740210, - "size": 8140, - }, - }, - }, - "package.json": { - "offset": 3748350, - "size": 1350, - }, - "preload.js": { - "offset": 3749700, - "size": 90, - }, - "range.bnf": { - "offset": 3749790, - "size": 620, - }, - "ranges": { - "files": { - "gtr.js": { - "offset": 3750400, - "size": 240, - }, - "intersects.js": { - "offset": 3750640, - "size": 230, - }, - "ltr.js": { - "offset": 3750860, - "size": 230, - }, - "max-satisfying.js": { - "offset": 3751090, - "size": 600, - }, - "min-satisfying.js": { - "offset": 3751680, - "size": 600, - }, - "min-version.js": { - "offset": 3752270, - "size": 1520, - }, - "outside.js": { - "offset": 3753780, - "size": 2210, - }, - "simplify.js": { - "offset": 3755990, - "size": 1360, - }, - "subset.js": { - "offset": 3757340, - "size": 7530, - }, - "to-comparators.js": { - "offset": 3764870, - "size": 290, - }, - "valid.js": { - "offset": 3765150, - "size": 330, - }, - }, - }, - }, - }, - "send": { - "files": { - "HISTORY.md": { - "offset": 3765480, - "size": 13600, - }, - "LICENSE": { - "offset": 3779070, - "size": 1130, - }, - "SECURITY.md": { - "offset": 3780200, - "size": 1170, - }, - "index.js": { - "offset": 3781370, - "size": 23460, - }, - "package.json": { - "offset": 3804820, - "size": 1110, - }, - }, - }, - "serve-static": { - "files": { - "HISTORY.md": { - "offset": 3805930, - "size": 10860, - }, - "LICENSE": { - "offset": 3816780, - "size": 1190, - }, - "index.js": { - "offset": 3817970, - "size": 4530, - }, - "package.json": { - "offset": 3822490, - "size": 840, - }, - }, - }, - "set-function-length": { - "files": { - ".nycrc": { - "offset": 3823330, - "size": 220, - }, - "LICENSE": { - "offset": 3823540, - "size": 1090, - }, - "env.js": { - "offset": 3824630, - "size": 870, - }, - "index.js": { - "offset": 3825490, - "size": 1280, - }, - "package.json": { - "offset": 3826770, - "size": 1960, - }, - "tsconfig.json": { - "offset": 3828720, - "size": 120, - }, - }, - }, - "setprototypeof": { - "files": { - "LICENSE": { - "offset": 3828830, - "size": 730, - }, - "index.js": { - "offset": 3829560, - "size": 410, - }, - "package.json": { - "offset": 3829970, - "size": 460, - }, - }, - }, - "shebang-command": { - "files": { - "index.js": { - "offset": 3830420, - "size": 390, - }, - "license": { - "offset": 3830810, - "size": 1120, - }, - "package.json": { - "offset": 3831920, - "size": 490, - }, - }, - }, - "shebang-regex": { - "files": { - "index.js": { - "offset": 3832410, - "size": 50, - }, - "license": { - "offset": 3832450, - "size": 1110, - }, - "package.json": { - "offset": 3833560, - "size": 480, - }, - }, - }, - "side-channel": { - "files": { - ".editorconfig": { - "offset": 3834040, - "size": 150, - }, - ".nycrc": { - "offset": 3834180, - "size": 220, - }, - "LICENSE": { - "offset": 3834400, - "size": 1080, - }, - "index.js": { - "offset": 3835470, - "size": 1190, - }, - "package.json": { - "offset": 3836660, - "size": 1570, - }, - "tsconfig.json": { - "offset": 3838220, - "size": 120, - }, - }, - }, - "side-channel-list": { - "files": { - ".editorconfig": { - "offset": 3838340, - "size": 150, - }, - ".nycrc": { - "offset": 3838480, - "size": 220, - }, - "LICENSE": { - "offset": 3838700, - "size": 1080, - }, - "index.js": { - "offset": 3839770, - "size": 3400, - }, - "package.json": { - "offset": 3843160, - "size": 1490, - }, - "tsconfig.json": { - "offset": 3844650, - "size": 120, - }, - }, - }, - "side-channel-map": { - "files": { - ".editorconfig": { - "offset": 3844770, - "size": 150, - }, - ".nycrc": { - "offset": 3844910, - "size": 220, - }, - "LICENSE": { - "offset": 3845130, - "size": 1080, - }, - "index.js": { - "offset": 3846200, - "size": 1990, - }, - "package.json": { - "offset": 3848180, - "size": 1580, - }, - "tsconfig.json": { - "offset": 3849760, - "size": 120, - }, - }, - }, - "side-channel-weakmap": { - "files": { - ".editorconfig": { - "offset": 3849870, - "size": 150, - }, - ".nycrc": { - "offset": 3850020, - "size": 220, - }, - "LICENSE": { - "offset": 3850230, - "size": 1080, - }, - "index.js": { - "offset": 3851300, - "size": 2710, - }, - "package.json": { - "offset": 3854010, - "size": 1650, - }, - "tsconfig.json": { - "offset": 3855660, - "size": 120, - }, - }, - }, - "slash": { - "files": { - "index.js": { - "offset": 3855770, - "size": 300, - }, - "license": { - "offset": 3856070, - "size": 1110, - }, - "package.json": { - "offset": 3857180, - "size": 420, - }, - }, - }, - "statuses": { - "files": { - "HISTORY.md": { - "offset": 3857590, - "size": 1630, - }, - "LICENSE": { - "offset": 3859220, - "size": 1180, - }, - "codes.json": { - "offset": 3860390, - "size": 1790, - }, - "index.js": { - "offset": 3862180, - "size": 2610, - }, - "package.json": { - "offset": 3864790, - "size": 680, - }, - }, - }, - "supports-color": { - "files": { - "browser.js": { - "offset": 3865460, - "size": 70, - }, - "index.js": { - "offset": 3865530, - "size": 2750, - }, - "license": { - "offset": 3868280, - "size": 1110, - }, - "package.json": { - "offset": 3869390, - "size": 560, - }, - }, - }, - "tiny-typed-emitter": { - "files": { - "LICENSE": { - "offset": 3869940, - "size": 1110, - }, - "lib": { - "files": { - "index.js": { - "offset": 3871050, - "size": 140, - }, - }, - }, - "package.json": { - "offset": 3871180, - "size": 400, - }, - }, - }, - "tmp": { - "files": { - "LICENSE": { - "offset": 3871570, - "size": 1090, - }, - "lib": { - "files": { - "tmp.js": { - "offset": 3872660, - "size": 24070, - }, - }, - }, - "package.json": { - "offset": 3896720, - "size": 850, - }, - }, - }, - "to-regex-range": { - "files": { - "LICENSE": { - "offset": 3897570, - "size": 1100, - }, - "index.js": { - "offset": 3898660, - "size": 6490, - }, - "package.json": { - "offset": 3905140, - "size": 1150, - }, - }, - }, - "toidentifier": { - "files": { - "HISTORY.md": { - "offset": 3906290, - "size": 130, - }, - "LICENSE": { - "offset": 3906420, - "size": 1110, - }, - "index.js": { - "offset": 3907520, - "size": 510, - }, - "package.json": { - "offset": 3908030, - "size": 690, - }, - }, - }, - "type-is": { - "files": { - "HISTORY.md": { - "offset": 3908710, - "size": 5450, - }, - "LICENSE": { - "offset": 3914160, - "size": 1180, - }, - "index.js": { - "offset": 3915330, - "size": 5570, - }, - "package.json": { - "offset": 3920890, - "size": 670, - }, - }, - }, - "universalify": { - "files": { - "LICENSE": { - "offset": 3921560, - "size": 1100, - }, - "index.js": { - "offset": 3922660, - "size": 710, - }, - "package.json": { - "offset": 3923360, - "size": 620, - }, - }, - }, - "unpipe": { - "files": { - "HISTORY.md": { - "offset": 3923980, - "size": 60, - }, - "LICENSE": { - "offset": 3924040, - "size": 1120, - }, - "index.js": { - "offset": 3925160, - "size": 1120, - }, - "package.json": { - "offset": 3926270, - "size": 460, - }, - }, - }, - "utils-merge": { - "files": { - "LICENSE": { - "offset": 3926730, - "size": 1090, - }, - "index.js": { - "offset": 3927820, - "size": 390, - }, - "package.json": { - "offset": 3928200, - "size": 630, - }, - }, - }, - "vary": { - "files": { - "HISTORY.md": { - "offset": 3928820, - "size": 800, - }, - "LICENSE": { - "offset": 3929620, - "size": 1100, - }, - "index.js": { - "offset": 3930710, - "size": 2930, - }, - "package.json": { - "offset": 3933640, - "size": 760, - }, - }, - }, - "which": { - "files": { - "LICENSE": { - "offset": 3934400, - "size": 770, - }, - "bin": { - "files": { - "node-which": { - "executable": true, - "offset": 3935160, - "size": 990, + "lrucache.js": { + "offset": 1696470, + "size": 810, }, - }, - }, - "package.json": { - "offset": 3936150, - "size": 690, - }, - "which.js": { - "offset": 3936830, - "size": 3170, - }, - }, - }, - "yaml": { - "files": { - "LICENSE": { - "offset": 3939990, - "size": 740, - }, - "bin.mjs": { - "executable": true, - "offset": 3940730, - "size": 310, - }, - "browser": { - "files": { - "dist": { - "files": { - "compose": { - "files": { - "compose-collection.js": { - "offset": 3941040, - "size": 3500, - }, - "compose-doc.js": { - "offset": 3944540, - "size": 1560, - }, - "compose-node.js": { - "offset": 3946090, - "size": 3820, - }, - "compose-scalar.js": { - "offset": 3949910, - "size": 3320, - }, - "composer.js": { - "offset": 3953230, - "size": 8400, - }, - "resolve-block-map.js": { - "offset": 3961630, - "size": 4920, - }, - "resolve-block-scalar.js": { - "offset": 3966540, - "size": 7450, - }, - "resolve-block-seq.js": { - "offset": 3973990, - "size": 1740, - }, - "resolve-end.js": { - "offset": 3975730, - "size": 1240, - }, - "resolve-flow-collection.js": { - "offset": 3976970, - "size": 8780, - }, - "resolve-flow-scalar.js": { - "offset": 3985750, - "size": 7310, - }, - "resolve-props.js": { - "offset": 3993050, - "size": 5560, - }, - "util-contains-newline.js": { - "offset": 3998600, - "size": 1060, - }, - "util-empty-scalar-position.js": { - "offset": 3999650, - "size": 820, - }, - "util-flow-indent-check.js": { - "offset": 4000470, - "size": 500, - }, - "util-map-includes.js": { - "offset": 4000960, - "size": 430, - }, - }, - }, - "doc": { - "files": { - "Document.js": { - "offset": 4001390, - "size": 12910, - }, - "anchors.js": { - "offset": 4014290, - "size": 2280, - }, - "applyReviver.js": { - "offset": 4016570, - "size": 1930, - }, - "createNode.js": { - "offset": 4018490, - "size": 3070, - }, - "directives.js": { - "offset": 4021550, - "size": 6190, - }, - }, - }, - "errors.js": { - "offset": 4027740, - "size": 2030, - }, - "index.js": { - "offset": 4029760, - "size": 880, - }, - "log.js": { - "offset": 4030640, - "size": 260, - }, - "nodes": { - "files": { - "Alias.js": { - "offset": 4030900, - "size": 3750, - }, - "Collection.js": { - "offset": 4034650, - "size": 5080, - }, - "Node.js": { - "offset": 4039730, - "size": 1340, - }, - "Pair.js": { - "offset": 4041070, - "size": 1130, - }, - "Scalar.js": { - "offset": 4042190, - "size": 700, - }, - "YAMLMap.js": { - "offset": 4042890, - "size": 4960, - }, - "YAMLSeq.js": { - "offset": 4047850, - "size": 3580, - }, - "addPairToJSMap.js": { - "offset": 4051420, - "size": 2290, - }, - "identity.js": { - "offset": 4053710, - "size": 1520, - }, - "toJS.js": { - "offset": 4055220, - "size": 1270, - }, - }, - }, - "parse": { - "files": { - "cst-scalar.js": { - "offset": 4056490, - "size": 9240, - }, - "cst-stringify.js": { - "offset": 4065720, - "size": 1780, - }, - "cst-visit.js": { - "offset": 4067500, - "size": 3970, - }, - "cst.js": { - "offset": 4071460, - "size": 2890, - }, - "lexer.js": { - "offset": 4074350, - "size": 24070, - }, - "line-counter.js": { - "offset": 4098410, - "size": 1420, - }, - "parser.js": { - "offset": 4099830, - "size": 35170, - }, - }, - }, - "public-api.js": { - "offset": 4135000, - "size": 4000, - }, - "schema": { - "files": { - "Schema.js": { - "offset": 4138990, - "size": 1500, - }, - "common": { - "files": { - "map.js": { - "offset": 4140480, - "size": 440, - }, - "null.js": { - "offset": 4140920, - "size": 440, - }, - "seq.js": { - "offset": 4141360, - "size": 440, - }, - "string.js": { - "offset": 4141800, - "size": 430, - }, - }, - }, - "core": { - "files": { - "bool.js": { - "offset": 4142220, - "size": 610, - }, - "float.js": { - "offset": 4142830, - "size": 1400, - }, - "int.js": { - "offset": 4144220, - "size": 1330, - }, - "schema.js": { - "offset": 4145550, - "size": 480, - }, - }, - }, - "json": { - "files": { - "schema.js": { - "offset": 4146030, - "size": 1870, - }, - }, - }, - "tags.js": { - "offset": 4147900, - "size": 2970, - }, - "yaml-1.1": { - "files": { - "binary.js": { - "offset": 4150860, - "size": 2320, - }, - "bool.js": { - "offset": 4153170, - "size": 790, - }, - "float.js": { - "offset": 4153960, - "size": 1520, - }, - "int.js": { - "offset": 4155470, - "size": 2140, - }, - "merge.js": { - "offset": 4157610, - "size": 2450, - }, - "omap.js": { - "offset": 4160050, - "size": 2480, - }, - "pairs.js": { - "offset": 4162530, - "size": 2760, - }, - "schema.js": { - "offset": 4165280, - "size": 860, - }, - "set.js": { - "offset": 4166140, - "size": 3030, - }, - "timestamp.js": { - "offset": 4169170, - "size": 3700, - }, - }, - }, - }, - }, - "stringify": { - "files": { - "foldFlowLines.js": { - "offset": 4172870, - "size": 4800, - }, - "stringify.js": { - "offset": 4177660, - "size": 4370, - }, - "stringifyCollection.js": { - "offset": 4182030, - "size": 5200, - }, - "stringifyComment.js": { - "offset": 4187220, - "size": 730, - }, - "stringifyDocument.js": { - "offset": 4187950, - "size": 2990, - }, - "stringifyNumber.js": { - "offset": 4190930, - "size": 750, - }, - "stringifyPair.js": { - "offset": 4191680, - "size": 5290, - }, - "stringifyString.js": { - "offset": 4196960, - "size": 13170, - }, - }, - }, - "util.js": { - "offset": 4210130, - "size": 600, - }, - "visit.js": { - "offset": 4210720, - "size": 9110, - }, - }, + "parse-options.js": { + "offset": 1697280, + "size": 340, }, - "index.js": { - "offset": 4219830, - "size": 200, + "re.js": { + "offset": 1697610, + "size": 8140, }, - "package.json": { - "offset": 4220020, - "size": 30, + }, + }, + "package.json": { + "offset": 1705750, + "size": 1350, + }, + "preload.js": { + "offset": 1707100, + "size": 90, + }, + "range.bnf": { + "offset": 1707180, + "size": 620, + }, + "ranges": { + "files": { + "gtr.js": { + "offset": 1707800, + "size": 240, + }, + "intersects.js": { + "offset": 1708030, + "size": 230, + }, + "ltr.js": { + "offset": 1708260, + "size": 230, + }, + "max-satisfying.js": { + "offset": 1708490, + "size": 600, + }, + "min-satisfying.js": { + "offset": 1709080, + "size": 600, + }, + "min-version.js": { + "offset": 1709670, + "size": 1520, + }, + "outside.js": { + "offset": 1711180, + "size": 2210, + }, + "simplify.js": { + "offset": 1713390, + "size": 1360, + }, + "subset.js": { + "offset": 1714740, + "size": 7530, + }, + "to-comparators.js": { + "offset": 1722270, + "size": 290, + }, + "valid.js": { + "offset": 1722550, + "size": 330, }, }, }, - "dist": { + }, + }, + "send": { + "files": { + "History.md": { + "offset": 1722870, + "size": 710, + }, + "Makefile": { + "offset": 1723580, + "size": 100, + }, + "index.js": { + "offset": 1723680, + "size": 40, + }, + "lib": { "files": { - "cli.mjs": { - "offset": 4220040, - "size": 7470, + "send.js": { + "offset": 1723720, + "size": 9740, }, - "compose": { + "utils.js": { + "offset": 1733460, + "size": 800, + }, + }, + }, + "node_modules": { + "files": { + "fresh": { "files": { - "compose-collection.js": { - "offset": 4227500, - "size": 3620, - }, - "compose-doc.js": { - "offset": 4231120, - "size": 1620, - }, - "compose-node.js": { - "offset": 4232730, - "size": 3970, - }, - "compose-scalar.js": { - "offset": 4236700, - "size": 3450, - }, - "composer.js": { - "offset": 4240140, - "size": 8610, - }, - "resolve-block-map.js": { - "offset": 4248750, - "size": 5080, - }, - "resolve-block-scalar.js": { - "offset": 4253820, - "size": 7500, - }, - "resolve-block-seq.js": { - "offset": 4261320, - "size": 1820, - }, - "resolve-end.js": { - "offset": 4263130, - "size": 1270, - }, - "resolve-flow-collection.js": { - "offset": 4264400, - "size": 8930, - }, - "resolve-flow-scalar.js": { - "offset": 4273320, - "size": 7370, - }, - "resolve-props.js": { - "offset": 4280690, - "size": 5580, - }, - "util-contains-newline.js": { - "offset": 4286270, - "size": 1090, + "HISTORY.md": { + "offset": 1734790, + "size": 390, }, - "util-empty-scalar-position.js": { - "offset": 4287350, - "size": 850, + "LICENSE": { + "offset": 1735170, + "size": 1100, }, - "util-flow-indent-check.js": { - "offset": 4288200, - "size": 550, + "index.js": { + "offset": 1736270, + "size": 1230, }, - "util-map-includes.js": { - "offset": 4288740, - "size": 480, + "package.json": { + "offset": 1737500, + "size": 420, }, }, }, - "doc": { + "range-parser": { "files": { - "Document.js": { - "offset": 4289220, - "size": 13120, - }, - "anchors.js": { - "offset": 4302330, - "size": 2390, + "HISTORY.md": { + "offset": 1737910, + "size": 580, }, - "applyReviver.js": { - "offset": 4304720, - "size": 1950, + "LICENSE": { + "offset": 1738490, + "size": 1100, }, - "createNode.js": { - "offset": 4306670, - "size": 3140, + "index.js": { + "offset": 1739590, + "size": 1080, }, - "directives.js": { - "offset": 4309800, - "size": 6240, + "package.json": { + "offset": 1740670, + "size": 430, }, }, }, - "errors.js": { - "offset": 4316040, - "size": 2120, - }, - "index.js": { - "offset": 4318160, - "size": 1770, - }, - "log.js": { - "offset": 4319930, - "size": 460, - }, - "nodes": { + }, + }, + "package.json": { + "offset": 1734260, + "size": 530, + }, + }, + }, + "serve-static": { + "files": { + "LICENSE": { + "offset": 1741090, + "size": 1190, + }, + "index.js": { + "offset": 1742270, + "size": 2990, + }, + "node_modules": { + "files": { + "fresh": { "files": { - "Alias.js": { - "offset": 4320390, - "size": 3800, - }, - "Collection.js": { - "offset": 4324180, - "size": 5230, - }, - "Node.js": { - "offset": 4329400, - "size": 1390, - }, - "Pair.js": { - "offset": 4330780, - "size": 1240, - }, - "Scalar.js": { - "offset": 4332010, - "size": 760, - }, - "YAMLMap.js": { - "offset": 4332770, - "size": 5110, - }, - "YAMLSeq.js": { - "offset": 4337880, - "size": 3670, + "History.md": { + "offset": 1745750, + "size": 80, }, - "addPairToJSMap.js": { - "offset": 4341550, - "size": 2340, + "Makefile": { + "offset": 1745830, + "size": 90, }, - "identity.js": { - "offset": 4343880, - "size": 1800, + "index.js": { + "offset": 1745920, + "size": 1230, }, - "toJS.js": { - "offset": 4345680, - "size": 1300, + "package.json": { + "offset": 1747140, + "size": 470, }, }, }, - "parse": { + "range-parser": { "files": { - "cst-scalar.js": { - "offset": 4346970, - "size": 9390, - }, - "cst-stringify.js": { - "offset": 4356350, - "size": 1800, - }, - "cst-visit.js": { - "offset": 4358150, - "size": 3990, - }, - "cst.js": { - "offset": 4362140, - "size": 3250, + "History.md": { + "offset": 1747610, + "size": 240, }, - "lexer.js": { - "offset": 4365380, - "size": 24080, + "Makefile": { + "offset": 1747840, + "size": 90, }, - "line-counter.js": { - "offset": 4389450, - "size": 1450, + "index.js": { + "offset": 1747930, + "size": 920, }, - "parser.js": { - "offset": 4390900, - "size": 35330, + "package.json": { + "offset": 1748850, + "size": 290, }, }, }, - "public-api.js": { - "offset": 4426220, - "size": 4190, - }, - "schema": { + "send": { "files": { - "Schema.js": { - "offset": 4430410, - "size": 1550, - }, - "common": { - "files": { - "map.js": { - "offset": 4431960, - "size": 490, - }, - "null.js": { - "offset": 4432440, - "size": 470, - }, - "seq.js": { - "offset": 4432910, - "size": 490, - }, - "string.js": { - "offset": 4433390, - "size": 460, - }, - }, - }, - "core": { - "files": { - "bool.js": { - "offset": 4433850, - "size": 640, - }, - "float.js": { - "offset": 4434480, - "size": 1510, - }, - "int.js": { - "offset": 4435990, - "size": 1410, - }, - "schema.js": { - "offset": 4437400, - "size": 510, - }, - }, + "History.md": { + "offset": 1749140, + "size": 640, }, - "json": { - "files": { - "schema.js": { - "offset": 4437910, - "size": 1900, - }, - }, + "Makefile": { + "offset": 1749780, + "size": 100, }, - "tags.js": { - "offset": 4439810, - "size": 3240, + "index.js": { + "offset": 1749880, + "size": 40, }, - "yaml-1.1": { + "lib": { "files": { - "binary.js": { - "offset": 4443050, - "size": 2800, - }, - "bool.js": { - "offset": 4445850, - "size": 850, - }, - "float.js": { - "offset": 4446690, - "size": 1630, - }, - "int.js": { - "offset": 4448320, - "size": 2240, - }, - "merge.js": { - "offset": 4450550, - "size": 2550, - }, - "omap.js": { - "offset": 4453100, - "size": 2590, + "send.js": { + "offset": 1749920, + "size": 9740, }, - "pairs.js": { - "offset": 4455680, - "size": 2860, - }, - "schema.js": { - "offset": 4458530, - "size": 920, - }, - "set.js": { - "offset": 4459440, - "size": 3120, - }, - "timestamp.js": { - "offset": 4462560, - "size": 3780, + "utils.js": { + "offset": 1759650, + "size": 800, }, }, }, - }, - }, - "stringify": { - "files": { - "foldFlowLines.js": { - "offset": 4466330, - "size": 4890, - }, - "stringify.js": { - "offset": 4471220, - "size": 4510, - }, - "stringifyCollection.js": { - "offset": 4475720, - "size": 5360, - }, - "stringifyComment.js": { - "offset": 4481080, - "size": 810, - }, - "stringifyDocument.js": { - "offset": 4481880, - "size": 3110, - }, - "stringifyNumber.js": { - "offset": 4484980, - "size": 780, - }, - "stringifyPair.js": { - "offset": 4485760, - "size": 5470, - }, - "stringifyString.js": { - "offset": 4491230, - "size": 13350, + "package.json": { + "offset": 1760450, + "size": 530, }, }, }, - "test-events.js": { - "offset": 4504580, - "size": 4280, - }, - "util.js": { - "offset": 4508850, - "size": 1010, - }, - "visit.js": { - "offset": 4509860, - "size": 9260, + }, + }, + "package.json": { + "offset": 1745260, + "size": 500, + }, + }, + }, + "tiny-typed-emitter": { + "files": { + "LICENSE": { + "offset": 1760980, + "size": 1110, + }, + "lib": { + "files": { + "index.js": { + "offset": 1762080, + "size": 140, }, }, }, "package.json": { - "offset": 4519110, - "size": 1830, + "offset": 1762210, + "size": 400, }, - "util.js": { - "offset": 4520940, - "size": 80, + }, + }, + "type-is": { + "files": { + "Makefile": { + "offset": 1762610, + "size": 110, + }, + "index.js": { + "offset": 1762710, + "size": 2300, + }, + "package.json": { + "offset": 1765010, + "size": 500, + }, + }, + }, + "universalify": { + "files": { + "LICENSE": { + "offset": 1765500, + "size": 1100, + }, + "index.js": { + "offset": 1766600, + "size": 710, + }, + "package.json": { + "offset": 1767310, + "size": 620, + }, + }, + }, + "utils-merge": { + "files": { + "LICENSE": { + "offset": 1767930, + "size": 1080, + }, + "index.js": { + "offset": 1769000, + "size": 390, + }, + "package.json": { + "offset": 1769380, + "size": 590, }, }, }, }, }, "package.json": { - "offset": 4522020, - "size": 360, + "offset": 1770970, + "size": 340, }, }, } @@ -81382,11 +78514,11 @@ exports[`node_module collectors > yarn two package.json without node_modules 2`] { "files": { "index.html": { - "offset": 4521020, + "offset": 3591350, "size": 380, }, "index.js": { - "offset": 4521400, + "offset": 3591720, "size": 620, }, "node_modules": { @@ -81409,36 +78541,32 @@ exports[`node_module collectors > yarn two package.json without node_modules 2`] }, "accepts": { "files": { - "HISTORY.md": { + "Makefile": { "offset": 279280, - "size": 5100, - }, - "LICENSE": { - "offset": 284370, - "size": 1170, + "size": 110, }, "index.js": { - "offset": 285540, - "size": 5260, + "offset": 279380, + "size": 3940, }, "package.json": { - "offset": 290790, - "size": 690, + "offset": 283310, + "size": 530, }, }, }, "ansi-styles": { "files": { "index.js": { - "offset": 291480, + "offset": 283830, "size": 4140, }, "license": { - "offset": 295620, + "offset": 287970, "size": 1110, }, "package.json": { - "offset": 296730, + "offset": 289080, "size": 670, }, }, @@ -81446,339 +78574,279 @@ exports[`node_module collectors > yarn two package.json without node_modules 2`] "argparse": { "files": { "LICENSE": { - "offset": 297390, + "offset": 289740, "size": 12780, }, "argparse.js": { - "offset": 310170, + "offset": 302520, "size": 129720, }, "lib": { "files": { "sub.js": { - "offset": 439880, + "offset": 432230, "size": 2260, }, "textwrap.js": { - "offset": 442130, + "offset": 434480, "size": 17400, }, }, }, "package.json": { - "offset": 459520, + "offset": 451870, "size": 450, }, }, }, - "array-flatten": { + "at-least-node": { "files": { "LICENSE": { - "offset": 459970, - "size": 1110, + "offset": 452320, + "size": 770, }, - "array-flatten.js": { - "offset": 461080, - "size": 1200, + "index.js": { + "offset": 453090, + "size": 240, }, "package.json": { - "offset": 462270, - "size": 660, + "offset": 453330, + "size": 540, }, }, }, - "body-parser": { + "balanced-match": { "files": { - "HISTORY.md": { - "offset": 462920, - "size": 16900, + "LICENSE.md": { + "offset": 453860, + "size": 1100, + }, + "index.js": { + "offset": 454960, + "size": 1220, + }, + "package.json": { + "offset": 456180, + "size": 900, }, + }, + }, + "brace-expansion": { + "files": { "LICENSE": { - "offset": 479810, - "size": 1180, + "offset": 457070, + "size": 1100, }, "index.js": { - "offset": 480990, - "size": 2690, - }, - "lib": { - "files": { - "read.js": { - "offset": 483670, - "size": 4330, - }, - "types": { - "files": { - "json.js": { - "offset": 487990, - "size": 5300, - }, - "raw.js": { - "offset": 493290, - "size": 1890, - }, - "text.js": { - "offset": 495180, - "size": 2290, - }, - "urlencoded.js": { - "offset": 497460, - "size": 6260, - }, - }, - }, - }, + "offset": 458160, + "size": 4800, }, "package.json": { - "offset": 503710, - "size": 1050, + "offset": 462960, + "size": 1010, }, }, }, "braces": { "files": { "LICENSE": { - "offset": 504760, + "offset": 463970, "size": 1100, }, "index.js": { - "offset": 505850, + "offset": 465060, "size": 4380, }, "lib": { "files": { "compile.js": { - "offset": 510230, + "offset": 469440, "size": 1510, }, "constants.js": { - "offset": 511730, + "offset": 470940, "size": 1590, }, "expand.js": { - "offset": 513320, + "offset": 472530, "size": 2800, }, "parse.js": { - "offset": 516120, + "offset": 475320, "size": 6900, }, "stringify.js": { - "offset": 523020, + "offset": 482220, "size": 710, }, "utils.js": { - "offset": 523730, + "offset": 482930, "size": 2520, }, }, }, "package.json": { - "offset": 526240, + "offset": 485450, "size": 910, }, }, }, + "buffer-crc32": { + "files": { + "index.js": { + "offset": 486350, + "size": 3920, + }, + "package.json": { + "offset": 490260, + "size": 550, + }, + }, + }, "builder-util-runtime": { "files": { "LICENSE": { - "offset": 527150, + "offset": 490810, "size": 1090, }, - "node_modules": { - "files": { - "debug": { - "files": { - "LICENSE": { - "offset": 676420, - "size": 1140, - }, - "package.json": { - "offset": 677560, - "size": 910, - }, - "src": { - "files": { - "browser.js": { - "offset": 678470, - "size": 6110, - }, - "common.js": { - "offset": 684570, - "size": 6920, - }, - "index.js": { - "offset": 691490, - "size": 320, - }, - "node.js": { - "offset": 691800, - "size": 4730, - }, - }, - }, - }, - }, - }, - }, "out": { "files": { "CancellationToken.js": { - "offset": 528230, + "offset": 491890, "size": 3200, }, "CancellationToken.js.map": { - "offset": 531430, + "offset": 495090, "size": 5650, }, "MemoLazy.js": { - "offset": 537080, + "offset": 500740, "size": 1510, }, "MemoLazy.js.map": { - "offset": 538580, + "offset": 502240, "size": 2760, }, "ProgressCallbackTransform.js": { - "offset": 541340, + "offset": 505000, "size": 1950, }, "ProgressCallbackTransform.js.map": { - "offset": 543290, + "offset": 506950, "size": 3700, }, "blockMapApi.js": { - "offset": 546980, + "offset": 510640, "size": 120, }, "blockMapApi.js.map": { - "offset": 547100, + "offset": 510750, "size": 410, }, "error.js": { - "offset": 547500, + "offset": 511160, "size": 260, }, "error.js.map": { - "offset": 547750, + "offset": 511410, "size": 460, }, "httpExecutor.js": { - "offset": 548210, + "offset": 511870, "size": 20570, }, "httpExecutor.js.map": { - "offset": 568770, + "offset": 532430, "size": 38700, }, "index.js": { - "offset": 607470, + "offset": 571130, "size": 4560, }, "index.js.map": { - "offset": 612030, + "offset": 575680, "size": 2770, }, "publishOptions.js": { - "offset": 614790, + "offset": 578450, "size": 2510, }, "publishOptions.js.map": { - "offset": 617290, + "offset": 580950, "size": 17780, }, "retry.js": { - "offset": 635070, + "offset": 598730, "size": 950, }, "retry.js.map": { - "offset": 636010, + "offset": 599670, "size": 1750, }, "rfc2253Parser.js": { - "offset": 637760, + "offset": 601420, "size": 2270, }, "rfc2253Parser.js.map": { - "offset": 640030, + "offset": 603680, "size": 4170, }, "updateInfo.js": { - "offset": 644190, + "offset": 607850, "size": 120, }, "updateInfo.js.map": { - "offset": 644310, + "offset": 607970, "size": 2320, }, "uuid.js": { - "offset": 646620, + "offset": 610280, "size": 6400, }, "uuid.js.map": { - "offset": 653020, + "offset": 616680, "size": 12240, }, "xml.js": { - "offset": 665250, + "offset": 628910, "size": 3550, }, "xml.js.map": { - "offset": 668800, + "offset": 632460, "size": 6990, }, }, }, "package.json": { - "offset": 675790, + "offset": 639450, "size": 630, }, }, }, - "bytes": { - "files": { - "History.md": { - "offset": 696530, - "size": 1780, - }, - "LICENSE": { - "offset": 698300, - "size": 1160, - }, - "index.js": { - "offset": 699460, - "size": 3620, - }, - "package.json": { - "offset": 703070, - "size": 520, - }, - }, - }, "call-bind": { "files": { ".eslintignore": { - "offset": 703580, + "offset": 640080, "size": 10, }, ".nycrc": { - "offset": 703590, + "offset": 640090, "size": 140, }, "LICENSE": { - "offset": 703730, + "offset": 640230, "size": 1080, }, "callBound.js": { - "offset": 704800, + "offset": 641300, "size": 420, }, "index.js": { - "offset": 705220, + "offset": 641710, "size": 650, }, "package.json": { - "offset": 705860, + "offset": 642350, "size": 1510, }, }, @@ -81786,43 +78854,43 @@ exports[`node_module collectors > yarn two package.json without node_modules 2`] "call-bind-apply-helpers": { "files": { ".nycrc": { - "offset": 707360, + "offset": 643860, "size": 140, }, "LICENSE": { - "offset": 707500, + "offset": 644000, "size": 1080, }, "actualApply.js": { - "offset": 708570, + "offset": 645070, "size": 280, }, "applyBind.js": { - "offset": 708850, + "offset": 645350, "size": 270, }, "functionApply.js": { - "offset": 709120, + "offset": 645610, "size": 100, }, "functionCall.js": { - "offset": 709220, + "offset": 645710, "size": 100, }, "index.js": { - "offset": 709310, + "offset": 645810, "size": 520, }, "package.json": { - "offset": 709820, + "offset": 646320, "size": 1850, }, "reflectApply.js": { - "offset": 711670, + "offset": 648160, "size": 140, }, "tsconfig.json": { - "offset": 711800, + "offset": 648290, "size": 120, }, }, @@ -81830,23 +78898,23 @@ exports[`node_module collectors > yarn two package.json without node_modules 2`] "call-bound": { "files": { ".nycrc": { - "offset": 711910, + "offset": 648410, "size": 140, }, "LICENSE": { - "offset": 712050, + "offset": 648550, "size": 1080, }, "index.js": { - "offset": 713120, + "offset": 649620, "size": 690, }, "package.json": { - "offset": 713810, + "offset": 650310, "size": 1690, }, "tsconfig.json": { - "offset": 715500, + "offset": 651990, "size": 140, }, }, @@ -81854,25 +78922,25 @@ exports[`node_module collectors > yarn two package.json without node_modules 2`] "chalk": { "files": { "license": { - "offset": 715640, + "offset": 652130, "size": 1110, }, "package.json": { - "offset": 716750, + "offset": 653240, "size": 650, }, "source": { "files": { "index.js": { - "offset": 717390, + "offset": 653890, "size": 6080, }, "templates.js": { - "offset": 723470, + "offset": 659960, "size": 3370, }, "util.js": { - "offset": 726830, + "offset": 663330, "size": 1040, }, }, @@ -81882,19 +78950,19 @@ exports[`node_module collectors > yarn two package.json without node_modules 2`] "ci-info": { "files": { "LICENSE": { - "offset": 727870, + "offset": 664360, "size": 1090, }, "index.js": { - "offset": 728950, + "offset": 665450, "size": 2370, }, "package.json": { - "offset": 731320, + "offset": 667820, "size": 750, }, "vendors.json": { - "offset": 732070, + "offset": 668570, "size": 5720, }, }, @@ -81902,23 +78970,23 @@ exports[`node_module collectors > yarn two package.json without node_modules 2`] "color-convert": { "files": { "LICENSE": { - "offset": 737790, + "offset": 674290, "size": 1090, }, "conversions.js": { - "offset": 738880, + "offset": 675370, "size": 17040, }, "index.js": { - "offset": 755920, + "offset": 692410, "size": 1710, }, "package.json": { - "offset": 757630, + "offset": 694120, "size": 460, }, "route.js": { - "offset": 758080, + "offset": 694570, "size": 2260, }, }, @@ -81926,127 +78994,107 @@ exports[`node_module collectors > yarn two package.json without node_modules 2`] "color-name": { "files": { "LICENSE": { - "offset": 760330, + "offset": 696830, "size": 1090, }, "index.js": { - "offset": 761420, + "offset": 697910, "size": 4620, }, "package.json": { - "offset": 766040, + "offset": 702530, "size": 370, }, }, }, - "content-disposition": { + "concat-map": { "files": { - "HISTORY.md": { - "offset": 766410, - "size": 1020, - }, "LICENSE": { - "offset": 767430, - "size": 1100, - }, - "index.js": { - "offset": 768520, - "size": 10600, - }, - "package.json": { - "offset": 779110, - "size": 790, - }, - }, - }, - "content-type": { - "files": { - "HISTORY.md": { - "offset": 779900, - "size": 530, + "offset": 702900, + "size": 1080, }, - "LICENSE": { - "offset": 780420, - "size": 1090, + "README.markdown": { + "offset": 703970, + "size": 1170, }, "index.js": { - "offset": 781510, - "size": 5010, + "offset": 705140, + "size": 350, }, "package.json": { - "offset": 786510, - "size": 680, + "offset": 705480, + "size": 800, }, }, }, "cookie": { "files": { "LICENSE": { - "offset": 787190, - "size": 1180, - }, - "SECURITY.md": { - "offset": 788360, - "size": 1180, + "offset": 706270, + "size": 1090, }, "index.js": { - "offset": 789540, - "size": 8170, + "offset": 707360, + "size": 1900, }, "package.json": { - "offset": 797710, - "size": 630, + "offset": 709260, + "size": 410, }, }, }, "cookie-signature": { "files": { "History.md": { - "offset": 798340, - "size": 820, + "offset": 709670, + "size": 370, + }, + "Makefile": { + "offset": 710040, + "size": 90, }, "index.js": { - "offset": 799160, - "size": 1290, + "offset": 710130, + "size": 1080, }, "package.json": { - "offset": 800440, - "size": 390, + "offset": 711200, + "size": 370, }, }, }, "cross-spawn": { "files": { "LICENSE": { - "offset": 800820, + "offset": 711570, "size": 1110, }, "index.js": { - "offset": 801930, + "offset": 712670, "size": 1200, }, "lib": { "files": { "enoent.js": { - "offset": 803120, + "offset": 713860, "size": 1480, }, "parse.js": { - "offset": 804590, + "offset": 715330, "size": 3070, }, "util": { "files": { "escape.js": { - "offset": 807660, + "offset": 718400, "size": 1390, }, "readShebang.js": { - "offset": 809040, + "offset": 719780, "size": 550, }, "resolveCommand.js": { - "offset": 809590, + "offset": 720330, "size": 1560, }, }, @@ -82054,7 +79102,7 @@ exports[`node_module collectors > yarn two package.json without node_modules 2`] }, }, "package.json": { - "offset": 811150, + "offset": 721890, "size": 1280, }, }, @@ -82062,66 +79110,30 @@ exports[`node_module collectors > yarn two package.json without node_modules 2`] "debug": { "files": { "LICENSE": { - "offset": 812420, - "size": 1110, - }, - "Makefile": { - "offset": 813530, - "size": 1060, - }, - "component.json": { - "offset": 814590, - "size": 330, - }, - "node.js": { - "offset": 814910, - "size": 40, - }, - "node_modules": { - "files": { - "ms": { - "files": { - "index.js": { - "offset": 831670, - "size": 2770, - }, - "license.md": { - "offset": 834440, - "size": 1080, - }, - "package.json": { - "offset": 835520, - "size": 470, - }, - }, - }, - }, + "offset": 723160, + "size": 1140, }, "package.json": { - "offset": 814950, - "size": 950, + "offset": 724300, + "size": 910, }, "src": { "files": { "browser.js": { - "offset": 815900, - "size": 4740, + "offset": 725210, + "size": 6110, }, - "debug.js": { - "offset": 820630, - "size": 4400, + "common.js": { + "offset": 731320, + "size": 6920, }, "index.js": { - "offset": 825020, - "size": 270, - }, - "inspector-log.js": { - "offset": 825290, - "size": 380, + "offset": 738230, + "size": 320, }, "node.js": { - "offset": 825660, - "size": 6020, + "offset": 738540, + "size": 4730, }, }, }, @@ -82130,435 +79142,355 @@ exports[`node_module collectors > yarn two package.json without node_modules 2`] "define-data-property": { "files": { ".nycrc": { - "offset": 835980, + "offset": 743270, "size": 220, }, "LICENSE": { - "offset": 836200, + "offset": 743490, "size": 1080, }, "index.js": { - "offset": 837270, + "offset": 744560, "size": 2340, }, "package.json": { - "offset": 839610, + "offset": 746900, "size": 2080, }, "tsconfig.json": { - "offset": 841680, + "offset": 748970, "size": 4890, }, }, }, - "depd": { - "files": { - "History.md": { - "offset": 846560, - "size": 2260, - }, - "LICENSE": { - "offset": 848820, - "size": 1100, - }, - "index.js": { - "offset": 849910, - "size": 10940, - }, - "lib": { - "files": { - "browser": { - "files": { - "index.js": { - "offset": 860850, - "size": 1520, - }, - }, - }, - }, - }, - "package.json": { - "offset": 862360, - "size": 840, - }, - }, - }, - "destroy": { - "files": { - "LICENSE": { - "offset": 863190, - "size": 1180, - }, - "index.js": { - "offset": 864370, - "size": 4260, - }, - "package.json": { - "offset": 868620, - "size": 740, - }, - }, - }, "dunder-proto": { "files": { ".nycrc": { - "offset": 869360, + "offset": 753850, "size": 220, }, "LICENSE": { - "offset": 869570, + "offset": 754070, "size": 1080, }, "get.js": { - "offset": 870650, + "offset": 755140, "size": 980, }, "package.json": { - "offset": 871630, + "offset": 756120, "size": 1450, }, "set.js": { - "offset": 873080, + "offset": 757570, "size": 1280, }, "tsconfig.json": { - "offset": 874350, + "offset": 758850, "size": 120, }, }, }, - "ee-first": { - "files": { - "LICENSE": { - "offset": 874470, - "size": 1100, - }, - "index.js": { - "offset": 875570, - "size": 1690, - }, - "package.json": { - "offset": 877250, - "size": 470, - }, - }, - }, "electron-updater": { "files": { "LICENSE": { - "offset": 877720, + "offset": 758960, "size": 1090, }, "out": { "files": { "AppAdapter.js": { - "offset": 878800, + "offset": 760050, "size": 740, }, "AppAdapter.js.map": { - "offset": 879540, + "offset": 760790, "size": 1820, }, "AppImageUpdater.js": { - "offset": 881350, + "offset": 762600, "size": 5440, }, "AppImageUpdater.js.map": { - "offset": 886790, + "offset": 768030, "size": 8890, }, "AppUpdater.js": { - "offset": 895680, + "offset": 776920, "size": 33040, }, "AppUpdater.js.map": { - "offset": 928710, + "offset": 809960, "size": 56840, }, "BaseUpdater.js": { - "offset": 985550, + "offset": 866790, "size": 5490, }, "BaseUpdater.js.map": { - "offset": 991030, + "offset": 872270, "size": 9670, }, "DebUpdater.js": { - "offset": 1000690, + "offset": 881940, "size": 3600, }, "DebUpdater.js.map": { - "offset": 1004290, + "offset": 885530, "size": 6070, }, "DownloadedUpdateHelper.js": { - "offset": 1010350, + "offset": 891600, "size": 6910, }, "DownloadedUpdateHelper.js.map": { - "offset": 1017260, + "offset": 898500, "size": 12260, }, "ElectronAppAdapter.js": { - "offset": 1029510, + "offset": 910750, "size": 1180, }, "ElectronAppAdapter.js.map": { - "offset": 1030690, + "offset": 911930, "size": 2290, }, "LinuxUpdater.js": { - "offset": 1032980, + "offset": 914220, "size": 4030, }, "LinuxUpdater.js.map": { - "offset": 1037000, + "offset": 918250, "size": 6560, }, "MacUpdater.js": { - "offset": 1043560, + "offset": 924800, "size": 12570, }, "MacUpdater.js.map": { - "offset": 1056120, + "offset": 937370, "size": 20690, }, "NsisUpdater.js": { - "offset": 1076800, + "offset": 958050, "size": 9420, }, "NsisUpdater.js.map": { - "offset": 1086220, + "offset": 967460, "size": 15030, }, "PacmanUpdater.js": { - "offset": 1101240, + "offset": 982490, "size": 2800, }, "PacmanUpdater.js.map": { - "offset": 1104040, + "offset": 985280, "size": 4840, }, "RpmUpdater.js": { - "offset": 1108870, + "offset": 990120, "size": 2900, }, "RpmUpdater.js.map": { - "offset": 1111770, + "offset": 993010, "size": 5380, }, "differentialDownloader": { "files": { "DataSplitter.js": { - "offset": 1117140, - "size": 7990, + "offset": 998390, + "size": 9400, }, "DataSplitter.js.map": { - "offset": 1125120, - "size": 14200, + "offset": 1007780, + "size": 16650, }, "DifferentialDownloader.js": { - "offset": 1139320, - "size": 12610, + "offset": 1024430, + "size": 12520, }, "DifferentialDownloader.js.map": { - "offset": 1151930, - "size": 21470, + "offset": 1036950, + "size": 21370, }, "FileWithEmbeddedBlockMapDifferentialDownloader.js": { - "offset": 1173390, + "offset": 1058320, "size": 1870, }, "FileWithEmbeddedBlockMapDifferentialDownloader.js.map": { - "offset": 1175250, + "offset": 1060180, "size": 3220, }, "GenericDifferentialDownloader.js": { - "offset": 1178470, + "offset": 1063390, "size": 530, }, "GenericDifferentialDownloader.js.map": { - "offset": 1178990, + "offset": 1063920, "size": 710, }, "ProgressDifferentialDownloadCallbackTransform.js": { - "offset": 1179700, + "offset": 1064620, "size": 3830, }, "ProgressDifferentialDownloadCallbackTransform.js.map": { - "offset": 1183520, + "offset": 1068450, "size": 6590, }, "downloadPlanBuilder.js": { - "offset": 1190110, + "offset": 1075040, "size": 5520, }, "downloadPlanBuilder.js.map": { - "offset": 1195630, + "offset": 1080560, "size": 10250, }, "multipleRangeDownloader.js": { - "offset": 1205880, - "size": 4930, + "offset": 1090800, + "size": 5070, }, "multipleRangeDownloader.js.map": { - "offset": 1210800, - "size": 8990, + "offset": 1095870, + "size": 9250, }, }, }, "electronHttpExecutor.js": { - "offset": 1219780, + "offset": 1105120, "size": 3260, }, "electronHttpExecutor.js.map": { - "offset": 1223040, + "offset": 1108370, "size": 5550, }, "main.js": { - "offset": 1228590, - "size": 4650, + "offset": 1113920, + "size": 4500, }, "main.js.map": { - "offset": 1233230, - "size": 4670, + "offset": 1118420, + "size": 4430, }, "providerFactory.js": { - "offset": 1237900, + "offset": 1122840, "size": 3370, }, "providerFactory.js.map": { - "offset": 1241260, + "offset": 1126210, "size": 5450, }, "providers": { "files": { "BitbucketProvider.js": { - "offset": 1246710, + "offset": 1131660, "size": 1970, }, "BitbucketProvider.js.map": { - "offset": 1248680, + "offset": 1133620, "size": 3460, }, "GenericProvider.js": { - "offset": 1252140, + "offset": 1137080, "size": 2260, }, "GenericProvider.js.map": { - "offset": 1254390, + "offset": 1139330, "size": 3780, }, "GitHubProvider.js": { - "offset": 1258160, - "size": 9900, + "offset": 1143110, + "size": 9960, }, "GitHubProvider.js.map": { - "offset": 1268060, - "size": 17000, + "offset": 1153060, + "size": 17120, }, "GitLabProvider.js": { - "offset": 1285050, + "offset": 1170180, "size": 13420, }, "GitLabProvider.js.map": { - "offset": 1298470, + "offset": 1183590, "size": 21900, }, "KeygenProvider.js": { - "offset": 1320360, + "offset": 1205490, "size": 2210, }, "KeygenProvider.js.map": { - "offset": 1322570, + "offset": 1207690, "size": 3900, }, "PrivateGitHubProvider.js": { - "offset": 1326460, + "offset": 1211580, "size": 4160, }, "PrivateGitHubProvider.js.map": { - "offset": 1330610, + "offset": 1215740, "size": 7790, }, "Provider.js": { - "offset": 1338400, + "offset": 1223530, "size": 6010, }, "Provider.js.map": { - "offset": 1344400, + "offset": 1229530, "size": 11700, }, }, }, "types.js": { - "offset": 1356100, + "offset": 1241220, "size": 1560, }, "types.js.map": { - "offset": 1357650, + "offset": 1242770, "size": 3620, }, "util.js": { - "offset": 1361270, + "offset": 1246390, "size": 1280, }, "util.js.map": { - "offset": 1362540, + "offset": 1247670, "size": 2040, }, "windowsExecutableCodeSignatureVerifier.js": { - "offset": 1364580, + "offset": 1249710, "size": 7540, }, "windowsExecutableCodeSignatureVerifier.js.map": { - "offset": 1372120, + "offset": 1257250, "size": 11370, }, }, }, "package.json": { - "offset": 1383490, + "offset": 1268610, "size": 1040, }, }, }, - "encodeurl": { - "files": { - "LICENSE": { - "offset": 1384520, - "size": 1090, - }, - "index.js": { - "offset": 1385610, - "size": 1580, - }, - "package.json": { - "offset": 1387190, - "size": 620, - }, - }, - }, "es-define-property": { "files": { ".nycrc": { - "offset": 1387800, + "offset": 1269650, "size": 140, }, "LICENSE": { - "offset": 1387940, + "offset": 1269790, "size": 1080, }, "index.js": { - "offset": 1389010, + "offset": 1270860, "size": 290, }, "package.json": { - "offset": 1389300, + "offset": 1271150, "size": 1340, }, "tsconfig.json": { - "offset": 1390640, + "offset": 1272480, "size": 140, }, }, @@ -82566,43 +79498,43 @@ exports[`node_module collectors > yarn two package.json without node_modules 2`] "es-errors": { "files": { "LICENSE": { - "offset": 1390780, + "offset": 1272620, "size": 1080, }, "eval.js": { - "offset": 1391850, + "offset": 1273690, "size": 80, }, "index.js": { - "offset": 1391920, + "offset": 1273770, "size": 70, }, "package.json": { - "offset": 1391990, + "offset": 1273830, "size": 1340, }, "range.js": { - "offset": 1393320, + "offset": 1275170, "size": 80, }, "ref.js": { - "offset": 1393400, + "offset": 1275240, "size": 80, }, "syntax.js": { - "offset": 1393480, + "offset": 1275320, "size": 80, }, "tsconfig.json": { - "offset": 1393560, + "offset": 1275400, "size": 3170, }, "type.js": { - "offset": 1396730, + "offset": 1278570, "size": 80, }, "uri.js": { - "offset": 1396800, + "offset": 1278650, "size": 80, }, }, @@ -82610,247 +79542,232 @@ exports[`node_module collectors > yarn two package.json without node_modules 2`] "es-object-atoms": { "files": { "LICENSE": { - "offset": 1396880, + "offset": 1278720, "size": 1080, }, "RequireObjectCoercible.js": { - "offset": 1397950, + "offset": 1279790, "size": 320, }, "ToObject.js": { - "offset": 1398260, + "offset": 1280100, "size": 250, }, "index.js": { - "offset": 1398510, + "offset": 1280350, "size": 70, }, "isObject.js": { - "offset": 1398580, + "offset": 1280420, "size": 170, }, "package.json": { - "offset": 1398740, + "offset": 1280580, "size": 1430, }, "tsconfig.json": { - "offset": 1400160, + "offset": 1282010, "size": 90, }, }, }, "escape-html": { "files": { - "LICENSE": { - "offset": 1400240, - "size": 1160, - }, - "index.js": { - "offset": 1401400, - "size": 1370, - }, - "package.json": { - "offset": 1402760, - "size": 320, - }, - }, - }, - "etag": { - "files": { - "HISTORY.md": { - "offset": 1403080, - "size": 1740, + "Makefile": { + "offset": 1282090, + "size": 140, }, - "LICENSE": { - "offset": 1404810, - "size": 1100, + "component.json": { + "offset": 1282230, + "size": 200, }, "index.js": { - "offset": 1405900, - "size": 2480, + "offset": 1282420, + "size": 330, }, "package.json": { - "offset": 1408380, - "size": 720, + "offset": 1282750, + "size": 320, }, }, }, "express": { "files": { "History.md": { - "offset": 1409090, - "size": 115670, + "offset": 1283070, + "size": 43960, }, "LICENSE": { - "offset": 1524760, - "size": 1250, + "offset": 1327020, + "size": 1110, + }, + "Makefile": { + "offset": 1328120, + "size": 600, + }, + "benchmarks": { + "files": { + "Makefile": { + "offset": 1328720, + "size": 210, + }, + "middleware.js": { + "offset": 1328920, + "size": 380, + }, + "run": { + "executable": true, + "offset": 1329290, + "size": 200, + }, + }, }, "index.js": { - "offset": 1526010, - "size": 230, + "offset": 1329490, + "size": 110, }, "lib": { "files": { "application.js": { - "offset": 1526230, - "size": 14600, + "offset": 1329590, + "size": 12050, }, "express.js": { - "offset": 1540830, - "size": 2410, + "offset": 1341640, + "size": 1730, }, "middleware": { "files": { "init.js": { - "offset": 1543240, - "size": 860, + "offset": 1343370, + "size": 570, }, "query.js": { - "offset": 1544090, - "size": 890, + "offset": 1343940, + "size": 790, }, }, }, "request.js": { - "offset": 1544970, - "size": 12510, + "offset": 1344720, + "size": 9320, }, "response.js": { - "offset": 1557480, - "size": 28730, + "offset": 1354030, + "size": 18090, }, "router": { "files": { "index.js": { - "offset": 1586210, - "size": 15130, + "offset": 1372110, + "size": 9100, }, "layer.js": { - "offset": 1601330, - "size": 3300, + "offset": 1381210, + "size": 1210, }, "route.js": { - "offset": 1604630, - "size": 4400, + "offset": 1382420, + "size": 3790, }, }, }, "utils.js": { - "offset": 1609030, - "size": 5880, + "offset": 1386200, + "size": 2140, }, "view.js": { - "offset": 1614900, - "size": 3330, + "offset": 1388340, + "size": 1830, + }, + }, + }, + "node_modules": { + "files": { + "debug": { + "files": { + "debug.js": { + "offset": 1391330, + "size": 2470, + }, + "lib": { + "files": { + "debug.js": { + "offset": 1393790, + "size": 2580, + }, + }, + }, + "package.json": { + "offset": 1396370, + "size": 530, + }, + }, }, }, }, "package.json": { - "offset": 1618220, - "size": 1820, + "offset": 1390160, + "size": 1170, }, }, }, "fill-range": { "files": { "LICENSE": { - "offset": 1620040, + "offset": 1396890, "size": 1100, }, "index.js": { - "offset": 1621130, + "offset": 1397980, "size": 6410, }, "package.json": { - "offset": 1627540, + "offset": 1404380, "size": 850, }, }, }, - "finalhandler": { - "files": { - "HISTORY.md": { - "offset": 1628380, - "size": 4670, - }, - "LICENSE": { - "offset": 1633040, - "size": 1120, - }, - "SECURITY.md": { - "offset": 1634160, - "size": 1210, - }, - "index.js": { - "offset": 1635360, - "size": 6770, - }, - "package.json": { - "offset": 1642130, - "size": 980, - }, - }, - }, "find-yarn-workspace-root": { "files": { "LICENSE": { - "offset": 1643100, + "offset": 1405230, "size": 11350, }, "index.js": { - "offset": 1654450, + "offset": 1416570, "size": 1320, }, "package.json": { - "offset": 1655770, + "offset": 1417890, "size": 680, }, }, }, - "forwarded": { - "files": { - "HISTORY.md": { - "offset": 1656440, - "size": 400, - }, - "LICENSE": { - "offset": 1656840, - "size": 1100, - }, - "index.js": { - "offset": 1657930, - "size": 1580, - }, - "package.json": { - "offset": 1659510, - "size": 660, - }, - }, - }, "fresh": { "files": { - "HISTORY.md": { - "offset": 1660170, - "size": 1500, + "History.md": { + "offset": 1418570, + "size": 170, }, - "LICENSE": { - "offset": 1661670, - "size": 1180, + "Makefile": { + "offset": 1418730, + "size": 90, }, "index.js": { - "offset": 1662840, - "size": 2720, + "offset": 1418820, + "size": 1230, }, "package.json": { - "offset": 1665550, - "size": 730, + "offset": 1420050, + "size": 610, }, }, }, "fs-extra": { "files": { "LICENSE": { - "offset": 1666280, + "offset": 1420650, "size": 1090, }, "lib": { @@ -82858,15 +79775,15 @@ exports[`node_module collectors > yarn two package.json without node_modules 2`] "copy": { "files": { "copy-sync.js": { - "offset": 1667360, + "offset": 1421740, "size": 5780, }, "copy.js": { - "offset": 1673140, + "offset": 1427510, "size": 7760, }, "index.js": { - "offset": 1680890, + "offset": 1435270, "size": 150, }, }, @@ -82874,7 +79791,7 @@ exports[`node_module collectors > yarn two package.json without node_modules 2`] "empty": { "files": { "index.js": { - "offset": 1681040, + "offset": 1435420, "size": 750, }, }, @@ -82882,27 +79799,27 @@ exports[`node_module collectors > yarn two package.json without node_modules 2`] "ensure": { "files": { "file.js": { - "offset": 1681790, + "offset": 1436160, "size": 1710, }, "index.js": { - "offset": 1683500, + "offset": 1437870, "size": 550, }, "link.js": { - "offset": 1684040, + "offset": 1438410, "size": 1660, }, "symlink-paths.js": { - "offset": 1685690, + "offset": 1440070, "size": 3380, }, "symlink-type.js": { - "offset": 1689070, + "offset": 1443440, "size": 700, }, "symlink.js": { - "offset": 1689760, + "offset": 1444130, "size": 2530, }, }, @@ -82910,31 +79827,31 @@ exports[`node_module collectors > yarn two package.json without node_modules 2`] "fs": { "files": { "index.js": { - "offset": 1692280, + "offset": 1446660, "size": 3380, }, }, }, "index.js": { - "offset": 1695650, + "offset": 1450030, "size": 360, }, "json": { "files": { "index.js": { - "offset": 1696010, + "offset": 1450390, "size": 510, }, "jsonfile.js": { - "offset": 1696520, + "offset": 1450890, "size": 240, }, "output-json-sync.js": { - "offset": 1696760, + "offset": 1451130, "size": 280, }, "output-json.js": { - "offset": 1697030, + "offset": 1451410, "size": 280, }, }, @@ -82942,15 +79859,15 @@ exports[`node_module collectors > yarn two package.json without node_modules 2`] "mkdirs": { "files": { "index.js": { - "offset": 1697310, + "offset": 1451690, "size": 330, }, "make-dir.js": { - "offset": 1697640, + "offset": 1452010, "size": 550, }, "utils.js": { - "offset": 1698180, + "offset": 1452560, "size": 1660, }, }, @@ -82958,15 +79875,15 @@ exports[`node_module collectors > yarn two package.json without node_modules 2`] "move": { "files": { "index.js": { - "offset": 1699840, + "offset": 1454210, "size": 150, }, "move-sync.js": { - "offset": 1699990, + "offset": 1454360, "size": 1490, }, "move.js": { - "offset": 1701470, + "offset": 1455850, "size": 2010, }, }, @@ -82974,7 +79891,7 @@ exports[`node_module collectors > yarn two package.json without node_modules 2`] "output-file": { "files": { "index.js": { - "offset": 1703480, + "offset": 1457860, "size": 950, }, }, @@ -82982,7 +79899,7 @@ exports[`node_module collectors > yarn two package.json without node_modules 2`] "path-exists": { "files": { "index.js": { - "offset": 1704430, + "offset": 1458800, "size": 270, }, }, @@ -82990,11 +79907,11 @@ exports[`node_module collectors > yarn two package.json without node_modules 2`] "remove": { "files": { "index.js": { - "offset": 1704690, + "offset": 1459070, "size": 490, }, "rimraf.js": { - "offset": 1705180, + "offset": 1459550, "size": 7450, }, }, @@ -83002,11 +79919,11 @@ exports[`node_module collectors > yarn two package.json without node_modules 2`] "util": { "files": { "stat.js": { - "offset": 1712620, + "offset": 1467000, "size": 5230, }, "utimes.js": { - "offset": 1717850, + "offset": 1472220, "size": 620, }, }, @@ -83014,31 +79931,51 @@ exports[`node_module collectors > yarn two package.json without node_modules 2`] }, }, "package.json": { - "offset": 1718460, + "offset": 1472840, "size": 950, }, }, }, + "fs.realpath": { + "files": { + "LICENSE": { + "offset": 1473790, + "size": 2130, + }, + "index.js": { + "offset": 1475910, + "size": 1310, + }, + "old.js": { + "offset": 1477220, + "size": 8550, + }, + "package.json": { + "offset": 1485760, + "size": 460, + }, + }, + }, "function-bind": { "files": { ".nycrc": { - "offset": 1719410, + "offset": 1486220, "size": 220, }, "LICENSE": { - "offset": 1719630, + "offset": 1486440, "size": 1060, }, "implementation.js": { - "offset": 1720680, + "offset": 1487490, "size": 2050, }, "index.js": { - "offset": 1722730, + "offset": 1489530, "size": 130, }, "package.json": { - "offset": 1722850, + "offset": 1489660, "size": 1330, }, }, @@ -83046,19 +79983,19 @@ exports[`node_module collectors > yarn two package.json without node_modules 2`] "get-intrinsic": { "files": { ".nycrc": { - "offset": 1724180, + "offset": 1490990, "size": 140, }, "LICENSE": { - "offset": 1724320, + "offset": 1491130, "size": 1080, }, "index.js": { - "offset": 1725390, + "offset": 1492200, "size": 14440, }, "package.json": { - "offset": 1739830, + "offset": 1506640, "size": 1870, }, }, @@ -83066,55 +80003,79 @@ exports[`node_module collectors > yarn two package.json without node_modules 2`] "get-proto": { "files": { ".nycrc": { - "offset": 1741690, + "offset": 1508500, "size": 140, }, "LICENSE": { - "offset": 1741830, + "offset": 1508640, "size": 1080, }, "Object.getPrototypeOf.js": { - "offset": 1742900, + "offset": 1509710, "size": 160, }, "Reflect.getPrototypeOf.js": { - "offset": 1743060, + "offset": 1509870, "size": 150, }, "index.js": { - "offset": 1743210, + "offset": 1510020, "size": 830, }, "package.json": { - "offset": 1744030, + "offset": 1510840, "size": 1430, }, "tsconfig.json": { - "offset": 1745460, + "offset": 1512260, "size": 120, }, }, }, + "glob": { + "files": { + "LICENSE": { + "offset": 1512380, + "size": 980, + }, + "common.js": { + "offset": 1513360, + "size": 6150, + }, + "glob.js": { + "offset": 1519510, + "size": 19450, + }, + "package.json": { + "offset": 1538950, + "size": 920, + }, + "sync.js": { + "offset": 1539870, + "size": 12020, + }, + }, + }, "gopd": { "files": { "LICENSE": { - "offset": 1745570, + "offset": 1551890, "size": 1080, }, "gOPD.js": { - "offset": 1746640, + "offset": 1552960, "size": 100, }, "index.js": { - "offset": 1746740, + "offset": 1553060, "size": 210, }, "package.json": { - "offset": 1746950, + "offset": 1553260, "size": 1310, }, "tsconfig.json": { - "offset": 1748260, + "offset": 1554570, "size": 120, }, }, @@ -83122,27 +80083,27 @@ exports[`node_module collectors > yarn two package.json without node_modules 2`] "graceful-fs": { "files": { "LICENSE": { - "offset": 1748370, + "offset": 1554690, "size": 800, }, "clone.js": { - "offset": 1749160, + "offset": 1555480, "size": 500, }, "graceful-fs.js": { - "offset": 1749660, + "offset": 1555970, "size": 12680, }, "legacy-streams.js": { - "offset": 1762340, + "offset": 1568650, "size": 2660, }, "package.json": { - "offset": 1764990, + "offset": 1571310, "size": 600, }, "polyfills.js": { - "offset": 1765590, + "offset": 1571910, "size": 10150, }, }, @@ -83150,15 +80111,15 @@ exports[`node_module collectors > yarn two package.json without node_modules 2`] "has-flag": { "files": { "index.js": { - "offset": 1775740, + "offset": 1582050, "size": 330, }, "license": { - "offset": 1776070, + "offset": 1582380, "size": 1110, }, "package.json": { - "offset": 1777170, + "offset": 1583490, "size": 460, }, }, @@ -83166,19 +80127,19 @@ exports[`node_module collectors > yarn two package.json without node_modules 2`] "has-property-descriptors": { "files": { ".nycrc": { - "offset": 1777630, + "offset": 1583950, "size": 140, }, "LICENSE": { - "offset": 1777770, + "offset": 1584080, "size": 1070, }, "index.js": { - "offset": 1778840, + "offset": 1585150, "size": 590, }, "package.json": { - "offset": 1779430, + "offset": 1585740, "size": 1330, }, }, @@ -83186,27 +80147,27 @@ exports[`node_module collectors > yarn two package.json without node_modules 2`] "has-symbols": { "files": { ".nycrc": { - "offset": 1780750, + "offset": 1587070, "size": 140, }, "LICENSE": { - "offset": 1780890, + "offset": 1587210, "size": 1080, }, "index.js": { - "offset": 1781960, + "offset": 1588280, "size": 450, }, "package.json": { - "offset": 1782410, + "offset": 1588730, "size": 1800, }, "shams.js": { - "offset": 1784200, + "offset": 1590520, "size": 1930, }, "tsconfig.json": { - "offset": 1786130, + "offset": 1592440, "size": 150, }, }, @@ -83214,216 +80175,80 @@ exports[`node_module collectors > yarn two package.json without node_modules 2`] "hasown": { "files": { ".nycrc": { - "offset": 1786270, + "offset": 1592580, "size": 220, }, "LICENSE": { - "offset": 1786480, + "offset": 1592800, "size": 1090, }, "index.js": { - "offset": 1787570, + "offset": 1593880, "size": 210, }, "package.json": { - "offset": 1787770, + "offset": 1594090, "size": 1480, }, "tsconfig.json": { - "offset": 1789250, + "offset": 1595560, "size": 80, }, }, }, - "http-errors": { + "inflight": { "files": { - "HISTORY.md": { - "offset": 1789320, - "size": 4100, - }, "LICENSE": { - "offset": 1793410, - "size": 1170, - }, - "index.js": { - "offset": 1794580, - "size": 6430, - }, - "package.json": { - "offset": 1801010, - "size": 940, - }, - }, - }, - "iconv-lite": { - "files": { - "LICENSE": { - "offset": 1801950, - "size": 1070, - }, - "encodings": { - "files": { - "dbcs-codec.js": { - "offset": 1803010, - "size": 21420, - }, - "dbcs-data.js": { - "offset": 1824420, - "size": 8300, - }, - "index.js": { - "offset": 1832720, - "size": 710, - }, - "internal.js": { - "offset": 1833430, - "size": 6120, - }, - "sbcs-codec.js": { - "offset": 1839540, - "size": 2200, - }, - "sbcs-data-generated.js": { - "offset": 1841730, - "size": 32040, - }, - "sbcs-data.js": { - "offset": 1873770, - "size": 4690, - }, - "tables": { - "files": { - "big5-added.json": { - "offset": 1878450, - "size": 17720, - }, - "cp936.json": { - "offset": 1896170, - "size": 47320, - }, - "cp949.json": { - "offset": 1943490, - "size": 38130, - }, - "cp950.json": { - "offset": 1981610, - "size": 42360, - }, - "eucjp.json": { - "offset": 2023970, - "size": 41070, - }, - "gb18030-ranges.json": { - "offset": 2065030, - "size": 2220, - }, - "gbk-added.json": { - "offset": 2067250, - "size": 1230, - }, - "shiftjis.json": { - "offset": 2068470, - "size": 23790, - }, - }, - }, - "utf16.js": { - "offset": 2092260, - "size": 5020, - }, - "utf7.js": { - "offset": 2097270, - "size": 9220, - }, - }, + "offset": 1595630, + "size": 750, }, - "lib": { - "files": { - "bom-handling.js": { - "offset": 2106480, - "size": 1110, - }, - "extend-node.js": { - "offset": 2107590, - "size": 8710, - }, - "index.js": { - "offset": 2116290, - "size": 5130, - }, - "streams.js": { - "offset": 2121410, - "size": 3390, - }, - }, + "inflight.js": { + "offset": 1596380, + "size": 1370, }, "package.json": { - "offset": 2124800, - "size": 790, + "offset": 1597750, + "size": 540, }, }, }, "inherits": { "files": { "LICENSE": { - "offset": 2125580, + "offset": 1598280, "size": 750, }, "inherits.js": { - "offset": 2126330, + "offset": 1599030, "size": 250, }, "inherits_browser.js": { - "offset": 2126580, + "offset": 1599280, "size": 760, }, "package.json": { - "offset": 2127340, + "offset": 1600030, "size": 400, }, }, }, - "ipaddr.js": { - "files": { - "LICENSE": { - "offset": 2127730, - "size": 1090, - }, - "ipaddr.min.js": { - "offset": 2128820, - "size": 9740, - }, - "lib": { - "files": { - "ipaddr.js": { - "offset": 2138550, - "size": 19340, - }, - }, - }, - "package.json": { - "offset": 2157890, - "size": 620, - }, - }, - }, "is-docker": { "files": { "cli.js": { "executable": true, - "offset": 2158500, + "offset": 1600430, "size": 110, }, "index.js": { - "offset": 2158610, + "offset": 1600530, "size": 450, }, "license": { - "offset": 2159060, + "offset": 1600980, "size": 1120, }, "package.json": { - "offset": 2160170, + "offset": 1602100, "size": 610, }, }, @@ -83431,15 +80256,15 @@ exports[`node_module collectors > yarn two package.json without node_modules 2`] "is-number": { "files": { "LICENSE": { - "offset": 2160780, + "offset": 1602700, "size": 1100, }, "index.js": { - "offset": 2161870, + "offset": 1603790, "size": 420, }, "package.json": { - "offset": 2162280, + "offset": 1604200, "size": 930, }, }, @@ -83447,15 +80272,15 @@ exports[`node_module collectors > yarn two package.json without node_modules 2`] "is-wsl": { "files": { "index.js": { - "offset": 2163200, + "offset": 1605120, "size": 560, }, "license": { - "offset": 2163760, + "offset": 1605680, "size": 1110, }, "package.json": { - "offset": 2164870, + "offset": 1606790, "size": 620, }, }, @@ -83463,15 +80288,15 @@ exports[`node_module collectors > yarn two package.json without node_modules 2`] "isarray": { "files": { "LICENSE": { - "offset": 2165480, + "offset": 1607400, "size": 1100, }, "index.js": { - "offset": 2166580, + "offset": 1608500, "size": 140, }, "package.json": { - "offset": 2166710, + "offset": 1608630, "size": 880, }, }, @@ -83479,23 +80304,23 @@ exports[`node_module collectors > yarn two package.json without node_modules 2`] "isexe": { "files": { "LICENSE": { - "offset": 2167590, + "offset": 1609510, "size": 770, }, "index.js": { - "offset": 2168350, + "offset": 1610280, "size": 1200, }, "mode.js": { - "offset": 2169540, + "offset": 1611470, "size": 910, }, "package.json": { - "offset": 2170450, + "offset": 1612380, "size": 520, }, "windows.js": { - "offset": 2170970, + "offset": 1612890, "size": 890, }, }, @@ -83503,14 +80328,14 @@ exports[`node_module collectors > yarn two package.json without node_modules 2`] "js-yaml": { "files": { "LICENSE": { - "offset": 2171860, + "offset": 1613780, "size": 1090, }, "bin": { "files": { "js-yaml.js": { "executable": true, - "offset": 2172940, + "offset": 1614860, "size": 2740, }, }, @@ -83518,133 +80343,133 @@ exports[`node_module collectors > yarn two package.json without node_modules 2`] "dist": { "files": { "js-yaml.js": { - "offset": 2175680, + "offset": 1617600, "size": 114590, }, "js-yaml.min.js": { - "offset": 2290260, + "offset": 1732190, "size": 39520, }, "js-yaml.mjs": { - "offset": 2329770, + "offset": 1771700, "size": 107750, }, }, }, "index.js": { - "offset": 2437520, + "offset": 1879440, "size": 1800, }, "lib": { "files": { "common.js": { - "offset": 2439310, + "offset": 1881240, "size": 1180, }, "dumper.js": { - "offset": 2440490, + "offset": 1882410, "size": 31900, }, "exception.js": { - "offset": 2472380, + "offset": 1914310, "size": 1300, }, "loader.js": { - "offset": 2473680, + "offset": 1915600, "size": 47360, }, "schema": { "files": { "core.js": { - "offset": 2524420, + "offset": 1966340, "size": 290, }, "default.js": { - "offset": 2524710, + "offset": 1966630, "size": 540, }, "failsafe.js": { - "offset": 2525250, + "offset": 1967170, "size": 280, }, "json.js": { - "offset": 2525520, + "offset": 1967450, "size": 530, }, }, }, "schema.js": { - "offset": 2521040, + "offset": 1962960, "size": 3390, }, "snippet.js": { - "offset": 2526050, + "offset": 1967970, "size": 3090, }, "type": { "files": { "binary.js": { - "offset": 2530980, + "offset": 1972910, "size": 2920, }, "bool.js": { - "offset": 2533900, + "offset": 1975820, "size": 980, }, "float.js": { - "offset": 2534870, + "offset": 1976790, "size": 2470, }, "int.js": { - "offset": 2537330, + "offset": 1979260, "size": 3700, }, "map.js": { - "offset": 2541020, + "offset": 1982950, "size": 190, }, "merge.js": { - "offset": 2541210, + "offset": 1983140, "size": 230, }, "null.js": { - "offset": 2541440, + "offset": 1983370, "size": 810, }, "omap.js": { - "offset": 2542250, + "offset": 1984180, "size": 1030, }, "pairs.js": { - "offset": 2543280, + "offset": 1985200, "size": 1090, }, "seq.js": { - "offset": 2544360, + "offset": 1986280, "size": 200, }, "set.js": { - "offset": 2544550, + "offset": 1986480, "size": 550, }, "str.js": { - "offset": 2545100, + "offset": 1987020, "size": 190, }, "timestamp.js": { - "offset": 2545290, + "offset": 1987210, "size": 2580, }, }, }, "type.js": { - "offset": 2529130, + "offset": 1971060, "size": 1850, }, }, }, "package.json": { - "offset": 2547860, + "offset": 1989780, "size": 1080, }, }, @@ -83652,19 +80477,19 @@ exports[`node_module collectors > yarn two package.json without node_modules 2`] "json-stable-stringify": { "files": { "LICENSE": { - "offset": 2548930, + "offset": 1990860, "size": 1070, }, "index.js": { - "offset": 2550000, + "offset": 1991930, "size": 4750, }, "package.json": { - "offset": 2554750, + "offset": 1996680, "size": 1610, }, "tsconfig.json": { - "offset": 2556350, + "offset": 1998280, "size": 150, }, }, @@ -83672,19 +80497,19 @@ exports[`node_module collectors > yarn two package.json without node_modules 2`] "jsonfile": { "files": { "LICENSE": { - "offset": 2556500, + "offset": 1998420, "size": 1110, }, "index.js": { - "offset": 2557610, + "offset": 1999530, "size": 2020, }, "package.json": { - "offset": 2559620, + "offset": 2001550, "size": 560, }, "utils.js": { - "offset": 2560180, + "offset": 2002100, "size": 500, }, }, @@ -83692,23 +80517,23 @@ exports[`node_module collectors > yarn two package.json without node_modules 2`] "jsonify": { "files": { "index.js": { - "offset": 2560680, + "offset": 2002600, "size": 110, }, "lib": { "files": { "parse.js": { - "offset": 2560780, + "offset": 2002710, "size": 4650, }, "stringify.js": { - "offset": 2565430, + "offset": 2007350, "size": 4310, }, }, }, "package.json": { - "offset": 2569730, + "offset": 2011660, "size": 1010, }, }, @@ -83716,15 +80541,15 @@ exports[`node_module collectors > yarn two package.json without node_modules 2`] "klaw-sync": { "files": { "LICENSE": { - "offset": 2570740, + "offset": 2012670, "size": 1080, }, "klaw-sync.js": { - "offset": 2571820, + "offset": 2013740, "size": 1030, }, "package.json": { - "offset": 2572840, + "offset": 2014760, "size": 690, }, }, @@ -83734,17 +80559,17 @@ exports[`node_module collectors > yarn two package.json without node_modules 2`] "out": { "files": { "main.js": { - "offset": 2573520, + "offset": 2015450, "size": 610, }, "main.js.map": { - "offset": 2574130, + "offset": 2016050, "size": 1160, }, }, }, "package.json": { - "offset": 2575280, + "offset": 2017210, "size": 330, }, }, @@ -83752,15 +80577,15 @@ exports[`node_module collectors > yarn two package.json without node_modules 2`] "lodash.escaperegexp": { "files": { "LICENSE": { - "offset": 2575610, + "offset": 2017540, "size": 1960, }, "index.js": { - "offset": 2577560, + "offset": 2019490, "size": 4400, }, "package.json": { - "offset": 2581960, + "offset": 2023890, "size": 360, }, }, @@ -83768,15 +80593,15 @@ exports[`node_module collectors > yarn two package.json without node_modules 2`] "lodash.isequal": { "files": { "LICENSE": { - "offset": 2582320, + "offset": 2024240, "size": 1950, }, "index.js": { - "offset": 2584270, + "offset": 2026190, "size": 49600, }, "package.json": { - "offset": 2633870, + "offset": 2075790, "size": 350, }, }, @@ -83784,140 +80609,112 @@ exports[`node_module collectors > yarn two package.json without node_modules 2`] "math-intrinsics": { "files": { "LICENSE": { - "offset": 2634210, + "offset": 2076140, "size": 1080, }, "abs.js": { - "offset": 2635290, + "offset": 2077210, "size": 80, }, "constants": { "files": { "maxArrayLength.js": { - "offset": 2635360, + "offset": 2077280, "size": 110, }, "maxSafeInteger.js": { - "offset": 2635470, + "offset": 2077390, "size": 240, }, "maxValue.js": { - "offset": 2635700, + "offset": 2077620, "size": 200, }, }, }, "floor.js": { - "offset": 2635900, + "offset": 2077820, "size": 80, }, "isFinite.js": { - "offset": 2635970, + "offset": 2077900, "size": 270, }, "isInteger.js": { - "offset": 2636240, + "offset": 2078160, "size": 410, }, "isNaN.js": { - "offset": 2636650, + "offset": 2078570, "size": 130, }, "isNegativeZero.js": { - "offset": 2636770, + "offset": 2078690, "size": 150, }, "max.js": { - "offset": 2636910, + "offset": 2078830, "size": 80, }, "min.js": { - "offset": 2636980, + "offset": 2078910, "size": 80, }, "mod.js": { - "offset": 2637060, + "offset": 2078980, "size": 220, }, "package.json": { - "offset": 2637270, + "offset": 2079200, "size": 1940, }, "pow.js": { - "offset": 2639210, + "offset": 2081130, "size": 80, }, "round.js": { - "offset": 2639280, + "offset": 2081200, "size": 80, }, "sign.js": { - "offset": 2639360, + "offset": 2081280, "size": 220, }, "tsconfig.json": { - "offset": 2639570, + "offset": 2081500, "size": 40, }, }, }, - "media-typer": { - "files": { - "HISTORY.md": { - "offset": 2639610, - "size": 470, - }, - "LICENSE": { - "offset": 2640070, - "size": 1090, - }, - "index.js": { - "offset": 2641160, - "size": 6380, - }, - "package.json": { - "offset": 2647530, - "size": 450, - }, - }, - }, "merge-descriptors": { "files": { - "HISTORY.md": { - "offset": 2647980, - "size": 370, - }, - "LICENSE": { - "offset": 2648340, - "size": 1170, + "component.json": { + "offset": 2081530, + "size": 210, }, "index.js": { - "offset": 2649510, - "size": 1220, + "offset": 2081730, + "size": 240, }, "package.json": { - "offset": 2650730, - "size": 770, + "offset": 2081970, + "size": 410, }, }, }, "methods": { "files": { - "HISTORY.md": { - "offset": 2651500, - "size": 430, - }, - "LICENSE": { - "offset": 2651920, - "size": 1180, + "History.md": { + "offset": 2082370, + "size": 70, }, "index.js": { - "offset": 2653100, - "size": 1040, + "offset": 2082440, + "size": 470, }, "package.json": { - "offset": 2654140, - "size": 380, + "offset": 2082910, + "size": 290, }, }, }, @@ -83925,15 +80722,15 @@ exports[`node_module collectors > yarn two package.json without node_modules 2`] "files": { "LICENSE": { "executable": true, - "offset": 2654510, + "offset": 2083200, "size": 1100, }, "index.js": { - "offset": 2655610, + "offset": 2084290, "size": 13900, }, "package.json": { - "offset": 2669500, + "offset": 2098180, "size": 1190, }, }, @@ -83941,101 +80738,67 @@ exports[`node_module collectors > yarn two package.json without node_modules 2`] "mime": { "files": { "LICENSE": { - "offset": 2670690, - "size": 1100, - }, - "cli.js": { - "executable": true, - "offset": 2671790, - "size": 150, + "offset": 2099370, + "size": 1080, }, "mime.js": { - "offset": 2671940, - "size": 2730, + "offset": 2100450, + "size": 2870, }, "package.json": { - "offset": 2674670, - "size": 580, + "offset": 2103310, + "size": 390, }, - "src": { + "test.js": { + "offset": 2103700, + "size": 2750, + }, + "types": { "files": { - "build.js": { - "executable": true, - "offset": 2675240, - "size": 1360, + "mime.types": { + "offset": 2106450, + "size": 53010, }, - "test.js": { - "offset": 2676590, - "size": 2340, + "node.types": { + "offset": 2159460, + "size": 2580, }, }, }, - "types.json": { - "offset": 2678930, - "size": 31560, - }, - }, - }, - "mime-db": { - "files": { - "HISTORY.md": { - "offset": 2710480, - "size": 12590, - }, - "LICENSE": { - "offset": 2723060, - "size": 1180, - }, - "db.json": { - "offset": 2724230, - "size": 185890, - }, - "index.js": { - "offset": 2910120, - "size": 190, - }, - "package.json": { - "offset": 2910310, - "size": 810, - }, }, }, - "mime-types": { + "minimatch": { "files": { - "HISTORY.md": { - "offset": 2911110, - "size": 8820, - }, "LICENSE": { - "offset": 2919920, - "size": 1170, + "offset": 2162030, + "size": 770, }, - "index.js": { - "offset": 2921090, - "size": 3670, + "minimatch.js": { + "offset": 2162790, + "size": 26270, }, "package.json": { - "offset": 2924750, - "size": 660, + "offset": 2189060, + "size": 530, }, }, }, "minimist": { "files": { ".nycrc": { - "offset": 2925400, + "offset": 2189590, "size": 230, }, "LICENSE": { - "offset": 2925630, + "offset": 2189820, "size": 1080, }, "index.js": { - "offset": 2926710, + "offset": 2190890, "size": 6200, }, "package.json": { - "offset": 2932900, + "offset": 2197090, "size": 1250, }, }, @@ -84043,570 +80806,651 @@ exports[`node_module collectors > yarn two package.json without node_modules 2`] "ms": { "files": { "index.js": { - "offset": 2934150, + "offset": 2198330, "size": 3030, }, "license.md": { - "offset": 2937170, + "offset": 2201360, "size": 1080, }, "package.json": { - "offset": 2938250, + "offset": 2202440, "size": 500, }, }, }, "negotiator": { "files": { - "HISTORY.md": { - "offset": 2938750, - "size": 2500, - }, "LICENSE": { - "offset": 2941250, - "size": 1180, - }, - "index.js": { - "offset": 2942420, - "size": 2460, + "offset": 2202930, + "size": 1170, }, "lib": { "files": { "charset.js": { - "offset": 2944880, - "size": 3090, + "offset": 2204100, + "size": 1650, }, "encoding.js": { - "offset": 2947960, - "size": 3510, + "offset": 2205750, + "size": 2000, }, "language.js": { - "offset": 2951460, - "size": 3410, + "offset": 2207740, + "size": 2140, }, "mediaType.js": { - "offset": 2954870, - "size": 5360, + "offset": 2209880, + "size": 2180, + }, + "negotiator.js": { + "offset": 2212050, + "size": 910, }, }, }, "package.json": { - "offset": 2960230, - "size": 420, - }, - }, - }, - "object-inspect": { - "files": { - ".nycrc": { - "offset": 2960650, - "size": 240, - }, - "LICENSE": { - "offset": 2960880, - "size": 1080, - }, - "index.js": { - "offset": 2961960, - "size": 19060, - }, - "package-support.json": { - "offset": 2981010, - "size": 370, - }, - "package.json": { - "offset": 2981380, - "size": 2000, - }, - "test-core-js.js": { - "offset": 2983370, - "size": 540, - }, - "util.inspect.js": { - "offset": 2983900, - "size": 50, + "offset": 2212950, + "size": 460, }, }, }, "object-keys": { "files": { ".editorconfig": { - "offset": 2983950, + "offset": 2213400, "size": 280, }, "LICENSE": { - "offset": 2984220, + "offset": 2213680, "size": 1080, }, "implementation.js": { - "offset": 2985300, + "offset": 2214760, "size": 3220, }, "index.js": { - "offset": 2988520, + "offset": 2217980, "size": 830, }, "isArguments.js": { - "offset": 2989340, + "offset": 2218800, "size": 430, }, "package.json": { - "offset": 2989770, + "offset": 2219220, "size": 1130, }, }, }, - "on-finished": { + "once": { "files": { - "HISTORY.md": { - "offset": 2990890, - "size": 1870, - }, "LICENSE": { - "offset": 2992750, - "size": 1170, + "offset": 2220340, + "size": 770, }, - "index.js": { - "offset": 2993920, - "size": 4430, + "once.js": { + "offset": 2221110, + "size": 940, }, "package.json": { - "offset": 2998350, - "size": 670, + "offset": 2222040, + "size": 460, }, }, }, "open": { "files": { "index.js": { - "offset": 2999020, + "offset": 2222500, "size": 4850, }, "license": { - "offset": 3003860, + "offset": 2227340, "size": 1120, }, "package.json": { - "offset": 3004980, + "offset": 2228460, "size": 660, }, "xdg-open": { "executable": true, - "offset": 3005640, + "offset": 2229120, "size": 25770, }, }, }, - "parseurl": { + "os-tmpdir": { "files": { - "HISTORY.md": { - "offset": 3031400, - "size": 1050, + "index.js": { + "offset": 2254880, + "size": 580, }, - "LICENSE": { - "offset": 3032450, - "size": 1180, + "license": { + "offset": 2255450, + "size": 1120, }, + "package.json": { + "offset": 2256570, + "size": 420, + }, + }, + }, + "parseurl": { + "files": { "index.js": { - "offset": 3033620, - "size": 2810, + "offset": 2256990, + "size": 590, }, "package.json": { - "offset": 3036430, - "size": 660, + "offset": 2257570, + "size": 380, }, }, }, "patch-package": { "files": { "LICENSE": { - "offset": 3037080, + "offset": 2257950, "size": 1070, }, "dist": { "files": { "PackageDetails.js": { - "offset": 3038150, + "offset": 2259020, "size": 14600, }, "PackageDetails.test.js": { - "offset": 3052750, + "offset": 2273610, "size": 26260, }, "applyPatches.js": { - "offset": 3079000, + "offset": 2299860, "size": 54160, }, "assertNever.js": { - "offset": 3133150, + "offset": 2354020, "size": 720, }, "coerceSemVer.js": { - "offset": 3133870, + "offset": 2354740, "size": 1130, }, "createIssue.js": { - "offset": 3135000, - "size": 14220, + "offset": 2355860, + "size": 11370, }, "createIssue.test.js": { - "offset": 3149220, + "offset": 2367230, "size": 3020, }, "detectPackageManager.js": { - "offset": 3152230, + "offset": 2370240, "size": 7600, }, "filterFiles.js": { - "offset": 3159830, + "offset": 2377840, "size": 2370, }, "getAppRootPath.js": { - "offset": 3162200, + "offset": 2380210, "size": 2100, }, "getPackageResolution.js": { - "offset": 3164300, + "offset": 2382310, "size": 16780, }, "getPackageVersion.js": { - "offset": 3181070, + "offset": 2399080, "size": 980, }, "getPackageVersion.test.js": { - "offset": 3182040, + "offset": 2400050, "size": 8070, }, "hash.js": { - "offset": 3190110, + "offset": 2408120, "size": 3250, }, "index.js": { "executable": true, - "offset": 3193350, + "offset": 2411360, "size": 21200, }, "makePatch.js": { - "offset": 3214550, - "size": 64510, + "offset": 2432560, + "size": 64410, }, "makeRegExp.js": { - "offset": 3279050, + "offset": 2496970, "size": 2550, }, "packageIsDevDependency.js": { - "offset": 3281600, + "offset": 2499520, "size": 2060, }, "packageIsDevDependency.test.js": { - "offset": 3283660, + "offset": 2501570, "size": 4650, }, "patch": { "files": { "apply.js": { - "offset": 3288310, + "offset": 2506220, "size": 30170, }, "parse.js": { - "offset": 3318470, + "offset": 2536380, "size": 41350, }, "read.js": { - "offset": 3359820, + "offset": 2577730, "size": 6400, }, - "reverse.js": { - "offset": 3366220, - "size": 9840, + "reverse.js": { + "offset": 2584130, + "size": 9840, + }, + }, + }, + "patchFs.js": { + "offset": 2593970, + "size": 6350, + }, + "path.js": { + "offset": 2600320, + "size": 2140, + }, + "rebase.js": { + "offset": 2602450, + "size": 20840, + }, + "resolveRelativeFileDependencies.js": { + "offset": 2623290, + "size": 2620, + }, + "resolveRelativeFileDependencies.test.js": { + "offset": 2625900, + "size": 2940, + }, + "spawnSafe.js": { + "offset": 2628840, + "size": 3250, + }, + "stateFile.js": { + "offset": 2632090, + "size": 9100, + }, + }, + }, + "index.js": { + "executable": true, + "offset": 2641180, + "size": 50, + }, + "node_modules": { + "files": { + "fs-extra": { + "files": { + "LICENSE": { + "offset": 2643320, + "size": 1090, + }, + "lib": { + "files": { + "copy": { + "files": { + "copy.js": { + "offset": 2650110, + "size": 7610, + }, + "index.js": { + "offset": 2657720, + "size": 120, + }, + }, + }, + "copy-sync": { + "files": { + "copy-sync.js": { + "offset": 2644400, + "size": 5640, + }, + "index.js": { + "offset": 2650040, + "size": 70, + }, + }, + }, + "empty": { + "files": { + "index.js": { + "offset": 2657830, + "size": 990, + }, + }, + }, + "ensure": { + "files": { + "file.js": { + "offset": 2658820, + "size": 1710, + }, + "index.js": { + "offset": 2660530, + "size": 630, + }, + "link.js": { + "offset": 2661150, + "size": 1570, + }, + "symlink-paths.js": { + "offset": 2662710, + "size": 3380, + }, + "symlink-type.js": { + "offset": 2666090, + "size": 700, + }, + "symlink.js": { + "offset": 2666780, + "size": 2050, + }, + }, + }, + "fs": { + "files": { + "index.js": { + "offset": 2668830, + "size": 3440, + }, + }, + }, + "index.js": { + "offset": 2672260, + "size": 720, + }, + "json": { + "files": { + "index.js": { + "offset": 2672980, + "size": 510, + }, + "jsonfile.js": { + "offset": 2673490, + "size": 240, + }, + "output-json-sync.js": { + "offset": 2673730, + "size": 280, + }, + "output-json.js": { + "offset": 2674000, + "size": 280, + }, + }, + }, + "mkdirs": { + "files": { + "index.js": { + "offset": 2674270, + "size": 330, + }, + "make-dir.js": { + "offset": 2674600, + "size": 4410, + }, + }, + }, + "move": { + "files": { + "index.js": { + "offset": 2680270, + "size": 120, + }, + "move.js": { + "offset": 2680380, + "size": 1640, + }, + }, + }, + "move-sync": { + "files": { + "index.js": { + "offset": 2679000, + "size": 70, + }, + "move-sync.js": { + "offset": 2679070, + "size": 1200, + }, + }, + }, + "output": { + "files": { + "index.js": { + "offset": 2682010, + "size": 950, + }, + }, + }, + "path-exists": { + "files": { + "index.js": { + "offset": 2682960, + "size": 270, + }, + }, + }, + "remove": { + "files": { + "index.js": { + "offset": 2683220, + "size": 170, + }, + "rimraf.js": { + "offset": 2683390, + "size": 7450, + }, + }, + }, + "util": { + "files": { + "stat.js": { + "offset": 2690830, + "size": 4630, + }, + "utimes.js": { + "offset": 2695460, + "size": 620, + }, + }, + }, + }, + }, + "package.json": { + "offset": 2696070, + "size": 960, }, }, }, - "patchFs.js": { - "offset": 3376060, - "size": 6350, - }, - "path.js": { - "offset": 3382400, - "size": 2140, - }, - "rebase.js": { - "offset": 3384540, - "size": 20840, - }, - "resolveRelativeFileDependencies.js": { - "offset": 3405380, - "size": 2620, - }, - "resolveRelativeFileDependencies.test.js": { - "offset": 3407990, - "size": 2940, - }, - "spawnSafe.js": { - "offset": 3410920, - "size": 3250, - }, - "stateFile.js": { - "offset": 3414170, - "size": 9100, - }, }, }, + "package.json": { + "offset": 2641230, + "size": 2090, + }, + }, + }, + "path-is-absolute": { + "files": { "index.js": { - "executable": true, - "offset": 3423270, - "size": 50, + "offset": 2697030, + "size": 620, + }, + "license": { + "offset": 2697640, + "size": 1120, }, "package.json": { - "offset": 3423320, - "size": 2070, + "offset": 2698760, + "size": 430, }, }, }, "path-key": { "files": { "index.js": { - "offset": 3425390, + "offset": 2699180, "size": 420, }, "license": { - "offset": 3425800, + "offset": 2699590, "size": 1110, }, "package.json": { - "offset": 3426910, + "offset": 2700700, "size": 510, }, }, }, "path-to-regexp": { "files": { - "LICENSE": { - "offset": 3427420, - "size": 1110, + "History.md": { + "offset": 2701210, + "size": 180, + }, + "component.json": { + "offset": 2701390, + "size": 250, }, "index.js": { - "offset": 3428520, - "size": 3840, + "offset": 2701630, + "size": 1490, }, "package.json": { - "offset": 3432360, - "size": 440, + "offset": 2703120, + "size": 370, + }, + "test.js": { + "offset": 2703490, + "size": 13770, }, }, }, "picomatch": { "files": { "LICENSE": { - "offset": 3432800, + "offset": 2717260, "size": 1100, }, "index.js": { - "offset": 3433890, + "offset": 2718350, "size": 60, }, "lib": { "files": { "constants.js": { - "offset": 3433950, + "offset": 2718410, "size": 4450, }, "parse.js": { - "offset": 3438400, + "offset": 2722860, "size": 27770, }, "picomatch.js": { - "offset": 3466160, + "offset": 2750620, "size": 9960, }, "scan.js": { - "offset": 3476120, + "offset": 2760570, "size": 9190, }, "utils.js": { - "offset": 3485300, + "offset": 2769760, "size": 1890, }, }, }, "package.json": { - "offset": 3487190, + "offset": 2771650, "size": 1370, }, }, }, - "proxy-addr": { - "files": { - "HISTORY.md": { - "offset": 3488550, - "size": 3000, - }, - "LICENSE": { - "offset": 3491540, - "size": 1100, - }, - "index.js": { - "offset": 3492640, - "size": 6000, - }, - "package.json": { - "offset": 3498640, - "size": 850, - }, - }, - }, "qs": { "files": { - ".editorconfig": { - "offset": 3499480, - "size": 600, - }, - ".nycrc": { - "offset": 3500080, - "size": 220, - }, - "LICENSE.md": { - "offset": 3500290, - "size": 1600, - }, - "dist": { - "files": { - "qs.js": { - "offset": 3501890, - "size": 51420, - }, - }, - }, - "eslint.config.mjs": { - "offset": 3553310, - "size": 1450, + ".gitmodules": { + "offset": 2773010, + "size": 210, }, - "lib": { - "files": { - "formats.js": { - "offset": 3554760, - "size": 480, - }, - "index.js": { - "offset": 3555240, - "size": 220, - }, - "parse.js": { - "offset": 3555450, - "size": 14090, - }, - "stringify.js": { - "offset": 3569530, - "size": 11480, - }, - "utils.js": { - "offset": 3581010, - "size": 10160, - }, - }, + "index.js": { + "offset": 2773220, + "size": 7370, }, "package.json": { - "offset": 3591160, - "size": 1660, + "offset": 2780580, + "size": 390, }, }, }, "range-parser": { "files": { - "HISTORY.md": { - "offset": 3592810, - "size": 920, - }, - "LICENSE": { - "offset": 3593730, - "size": 1180, - }, - "index.js": { - "offset": 3594910, - "size": 2900, - }, - "package.json": { - "offset": 3597810, - "size": 700, + "History.md": { + "offset": 2780960, + "size": 340, }, - }, - }, - "raw-body": { - "files": { - "LICENSE": { - "offset": 3598510, - "size": 1190, + "Makefile": { + "offset": 2781300, + "size": 90, }, "index.js": { - "offset": 3599690, - "size": 7180, - }, - "package.json": { - "offset": 3606860, + "offset": 2781380, "size": 920, }, - }, - }, - "safe-buffer": { - "files": { - "LICENSE": { - "offset": 3607770, - "size": 1090, - }, - "index.js": { - "offset": 3608860, - "size": 1670, - }, "package.json": { - "offset": 3610530, - "size": 780, + "offset": 2782300, + "size": 520, }, }, }, - "safer-buffer": { + "rimraf": { "files": { "LICENSE": { - "offset": 3611300, - "size": 1100, - }, - "Porting-Buffer.md": { - "offset": 3612390, - "size": 12800, + "offset": 2782820, + "size": 770, }, - "dangerous.js": { - "offset": 3625190, - "size": 1490, + "bin.js": { + "executable": true, + "offset": 2783580, + "size": 1200, }, "package.json": { - "offset": 3626670, - "size": 580, - }, - "safer.js": { - "offset": 3627240, - "size": 2110, + "offset": 2784780, + "size": 500, }, - "tests.js": { - "offset": 3629350, - "size": 15740, + "rimraf.js": { + "offset": 2785280, + "size": 9230, }, }, }, "sax": { "files": { "LICENSE.md": { - "offset": 3645090, + "offset": 2794500, "size": 1560, }, "lib": { "files": { "sax.js": { - "offset": 3646640, + "offset": 2796050, "size": 45640, }, }, }, "package.json": { - "offset": 3692280, + "offset": 2841690, "size": 530, }, }, @@ -84614,14 +81458,14 @@ exports[`node_module collectors > yarn two package.json without node_modules 2`] "semver": { "files": { "LICENSE": { - "offset": 3692800, + "offset": 2842210, "size": 770, }, "bin": { "files": { "semver.js": { "executable": true, - "offset": 3693570, + "offset": 2842980, "size": 4750, }, }, @@ -84629,19 +81473,19 @@ exports[`node_module collectors > yarn two package.json without node_modules 2`] "classes": { "files": { "comparator.js": { - "offset": 3698310, + "offset": 2847730, "size": 3640, }, "index.js": { - "offset": 3701940, + "offset": 2851360, "size": 150, }, "range.js": { - "offset": 3702090, + "offset": 2851500, "size": 14980, }, "semver.js": { - "offset": 3717060, + "offset": 2866480, "size": 9480, }, }, @@ -84649,191 +81493,191 @@ exports[`node_module collectors > yarn two package.json without node_modules 2`] "functions": { "files": { "clean.js": { - "offset": 3726540, + "offset": 2875960, "size": 210, }, "cmp.js": { - "offset": 3726750, + "offset": 2876160, "size": 970, }, "coerce.js": { - "offset": 3727710, + "offset": 2877120, "size": 2010, }, "compare-build.js": { - "offset": 3729710, + "offset": 2879130, "size": 290, }, "compare-loose.js": { - "offset": 3730000, + "offset": 2879410, "size": 140, }, "compare.js": { - "offset": 3730130, + "offset": 2879540, "size": 170, }, "diff.js": { - "offset": 3730300, + "offset": 2879710, "size": 1430, }, "eq.js": { - "offset": 3731720, + "offset": 2881130, "size": 130, }, "gt.js": { - "offset": 3731850, + "offset": 2881260, "size": 130, }, "gte.js": { - "offset": 3731970, + "offset": 2881380, "size": 130, }, "inc.js": { - "offset": 3732100, + "offset": 2881510, "size": 480, }, "lt.js": { - "offset": 3732580, + "offset": 2881990, "size": 130, }, "lte.js": { - "offset": 3732700, + "offset": 2882110, "size": 130, }, "major.js": { - "offset": 3732830, + "offset": 2882240, "size": 140, }, "minor.js": { - "offset": 3732960, + "offset": 2882380, "size": 140, }, "neq.js": { - "offset": 3733100, + "offset": 2882510, "size": 130, }, "parse.js": { - "offset": 3733230, + "offset": 2882640, "size": 340, }, "patch.js": { - "offset": 3733560, + "offset": 2882970, "size": 140, }, "prerelease.js": { - "offset": 3733690, + "offset": 2883110, "size": 240, }, "rcompare.js": { - "offset": 3733930, + "offset": 2883340, "size": 140, }, "rsort.js": { - "offset": 3734060, + "offset": 2883470, "size": 170, }, "satisfies.js": { - "offset": 3734220, + "offset": 2883640, "size": 250, }, "sort.js": { - "offset": 3734470, + "offset": 2883880, "size": 170, }, "valid.js": { - "offset": 3734630, + "offset": 2884040, "size": 180, }, }, }, "index.js": { - "offset": 3734810, + "offset": 2884220, "size": 2630, }, "internal": { "files": { "constants.js": { - "offset": 3737440, + "offset": 2886850, "size": 880, }, "debug.js": { - "offset": 3738310, + "offset": 2887720, "size": 240, }, "identifiers.js": { - "offset": 3738550, + "offset": 2887960, "size": 530, }, "lrucache.js": { - "offset": 3739070, + "offset": 2888490, "size": 810, }, "parse-options.js": { - "offset": 3739880, + "offset": 2889290, "size": 340, }, "re.js": { - "offset": 3740210, + "offset": 2889630, "size": 8140, }, }, }, "package.json": { - "offset": 3748350, + "offset": 2897770, "size": 1350, }, "preload.js": { - "offset": 3749700, + "offset": 2899120, "size": 90, }, "range.bnf": { - "offset": 3749790, + "offset": 2899200, "size": 620, }, "ranges": { "files": { "gtr.js": { - "offset": 3750400, + "offset": 2899820, "size": 240, }, "intersects.js": { - "offset": 3750640, + "offset": 2900050, "size": 230, }, "ltr.js": { - "offset": 3750860, + "offset": 2900270, "size": 230, }, "max-satisfying.js": { - "offset": 3751090, + "offset": 2900500, "size": 600, }, "min-satisfying.js": { - "offset": 3751680, + "offset": 2901090, "size": 600, }, "min-version.js": { - "offset": 3752270, + "offset": 2901680, "size": 1520, }, "outside.js": { - "offset": 3753780, + "offset": 2903200, "size": 2210, }, "simplify.js": { - "offset": 3755990, + "offset": 2905400, "size": 1360, }, "subset.js": { - "offset": 3757340, + "offset": 2906760, "size": 7530, }, "to-comparators.js": { - "offset": 3764870, + "offset": 2914280, "size": 290, }, "valid.js": { - "offset": 3765150, + "offset": 2914560, "size": 330, }, }, @@ -84842,104 +81686,212 @@ exports[`node_module collectors > yarn two package.json without node_modules 2`] }, "send": { "files": { - "HISTORY.md": { - "offset": 3765480, - "size": 13600, - }, - "LICENSE": { - "offset": 3779070, - "size": 1130, + "History.md": { + "offset": 2914890, + "size": 710, }, - "SECURITY.md": { - "offset": 3780200, - "size": 1170, + "Makefile": { + "offset": 2915600, + "size": 100, }, "index.js": { - "offset": 3781370, - "size": 23460, + "offset": 2915700, + "size": 40, + }, + "lib": { + "files": { + "send.js": { + "offset": 2915740, + "size": 9740, + }, + "utils.js": { + "offset": 2925470, + "size": 800, + }, + }, + }, + "node_modules": { + "files": { + "fresh": { + "files": { + "HISTORY.md": { + "offset": 2926800, + "size": 390, + }, + "LICENSE": { + "offset": 2927190, + "size": 1100, + }, + "index.js": { + "offset": 2928290, + "size": 1230, + }, + "package.json": { + "offset": 2929510, + "size": 420, + }, + }, + }, + "range-parser": { + "files": { + "HISTORY.md": { + "offset": 2929930, + "size": 580, + }, + "LICENSE": { + "offset": 2930500, + "size": 1100, + }, + "index.js": { + "offset": 2931600, + "size": 1080, + }, + "package.json": { + "offset": 2932680, + "size": 430, + }, + }, + }, + }, }, "package.json": { - "offset": 3804820, - "size": 1110, + "offset": 2926270, + "size": 530, }, }, }, "serve-static": { "files": { - "HISTORY.md": { - "offset": 3805930, - "size": 10860, - }, "LICENSE": { - "offset": 3816780, + "offset": 2933100, "size": 1190, }, "index.js": { - "offset": 3817970, - "size": 4530, + "offset": 2934290, + "size": 2990, + }, + "node_modules": { + "files": { + "fresh": { + "files": { + "History.md": { + "offset": 2937770, + "size": 80, + }, + "Makefile": { + "offset": 2937840, + "size": 90, + }, + "index.js": { + "offset": 2937930, + "size": 1230, + }, + "package.json": { + "offset": 2939160, + "size": 470, + }, + }, + }, + "range-parser": { + "files": { + "History.md": { + "offset": 2939620, + "size": 240, + }, + "Makefile": { + "offset": 2939860, + "size": 90, + }, + "index.js": { + "offset": 2939950, + "size": 920, + }, + "package.json": { + "offset": 2940870, + "size": 290, + }, + }, + }, + "send": { + "files": { + "History.md": { + "offset": 2941160, + "size": 640, + }, + "Makefile": { + "offset": 2941790, + "size": 100, + }, + "index.js": { + "offset": 2941890, + "size": 40, + }, + "lib": { + "files": { + "send.js": { + "offset": 2941930, + "size": 9740, + }, + "utils.js": { + "offset": 2951670, + "size": 800, + }, + }, + }, + "package.json": { + "offset": 2952470, + "size": 530, + }, + }, + }, + }, }, "package.json": { - "offset": 3822490, - "size": 840, + "offset": 2937270, + "size": 500, }, }, }, "set-function-length": { "files": { ".nycrc": { - "offset": 3823330, + "offset": 2952990, "size": 220, }, "LICENSE": { - "offset": 3823540, + "offset": 2953210, "size": 1090, }, "env.js": { - "offset": 3824630, + "offset": 2954290, "size": 870, }, "index.js": { - "offset": 3825490, + "offset": 2955160, "size": 1280, }, "package.json": { - "offset": 3826770, + "offset": 2956430, "size": 1960, }, "tsconfig.json": { - "offset": 3828720, + "offset": 2958380, "size": 120, }, }, }, - "setprototypeof": { - "files": { - "LICENSE": { - "offset": 3828830, - "size": 730, - }, - "index.js": { - "offset": 3829560, - "size": 410, - }, - "package.json": { - "offset": 3829970, - "size": 460, - }, - }, - }, "shebang-command": { "files": { "index.js": { - "offset": 3830420, + "offset": 2958500, "size": 390, }, "license": { - "offset": 3830810, + "offset": 2958890, "size": 1120, }, "package.json": { - "offset": 3831920, + "offset": 2960000, "size": 490, }, }, @@ -84947,187 +81899,51 @@ exports[`node_module collectors > yarn two package.json without node_modules 2`] "shebang-regex": { "files": { "index.js": { - "offset": 3832410, + "offset": 2960490, "size": 50, }, "license": { - "offset": 3832450, + "offset": 2960530, "size": 1110, }, "package.json": { - "offset": 3833560, + "offset": 2961640, "size": 480, }, }, }, - "side-channel": { - "files": { - ".editorconfig": { - "offset": 3834040, - "size": 150, - }, - ".nycrc": { - "offset": 3834180, - "size": 220, - }, - "LICENSE": { - "offset": 3834400, - "size": 1080, - }, - "index.js": { - "offset": 3835470, - "size": 1190, - }, - "package.json": { - "offset": 3836660, - "size": 1570, - }, - "tsconfig.json": { - "offset": 3838220, - "size": 120, - }, - }, - }, - "side-channel-list": { - "files": { - ".editorconfig": { - "offset": 3838340, - "size": 150, - }, - ".nycrc": { - "offset": 3838480, - "size": 220, - }, - "LICENSE": { - "offset": 3838700, - "size": 1080, - }, - "index.js": { - "offset": 3839770, - "size": 3400, - }, - "package.json": { - "offset": 3843160, - "size": 1490, - }, - "tsconfig.json": { - "offset": 3844650, - "size": 120, - }, - }, - }, - "side-channel-map": { - "files": { - ".editorconfig": { - "offset": 3844770, - "size": 150, - }, - ".nycrc": { - "offset": 3844910, - "size": 220, - }, - "LICENSE": { - "offset": 3845130, - "size": 1080, - }, - "index.js": { - "offset": 3846200, - "size": 1990, - }, - "package.json": { - "offset": 3848180, - "size": 1580, - }, - "tsconfig.json": { - "offset": 3849760, - "size": 120, - }, - }, - }, - "side-channel-weakmap": { - "files": { - ".editorconfig": { - "offset": 3849870, - "size": 150, - }, - ".nycrc": { - "offset": 3850020, - "size": 220, - }, - "LICENSE": { - "offset": 3850230, - "size": 1080, - }, - "index.js": { - "offset": 3851300, - "size": 2710, - }, - "package.json": { - "offset": 3854010, - "size": 1650, - }, - "tsconfig.json": { - "offset": 3855660, - "size": 120, - }, - }, - }, "slash": { "files": { "index.js": { - "offset": 3855770, + "offset": 2962120, "size": 300, }, "license": { - "offset": 3856070, + "offset": 2962410, "size": 1110, }, "package.json": { - "offset": 3857180, + "offset": 2963520, "size": 420, }, }, }, - "statuses": { - "files": { - "HISTORY.md": { - "offset": 3857590, - "size": 1630, - }, - "LICENSE": { - "offset": 3859220, - "size": 1180, - }, - "codes.json": { - "offset": 3860390, - "size": 1790, - }, - "index.js": { - "offset": 3862180, - "size": 2610, - }, - "package.json": { - "offset": 3864790, - "size": 680, - }, - }, - }, "supports-color": { "files": { "browser.js": { - "offset": 3865460, + "offset": 2963940, "size": 70, }, "index.js": { - "offset": 3865530, + "offset": 2964000, "size": 2750, }, "license": { - "offset": 3868280, + "offset": 2966750, "size": 1110, }, "package.json": { - "offset": 3869390, + "offset": 2967860, "size": 560, }, }, @@ -85135,19 +81951,19 @@ exports[`node_module collectors > yarn two package.json without node_modules 2`] "tiny-typed-emitter": { "files": { "LICENSE": { - "offset": 3869940, + "offset": 2968410, "size": 1110, }, "lib": { "files": { "index.js": { - "offset": 3871050, + "offset": 2969520, "size": 140, }, }, }, "package.json": { - "offset": 3871180, + "offset": 2969650, "size": 400, }, }, @@ -85155,185 +81971,137 @@ exports[`node_module collectors > yarn two package.json without node_modules 2`] "tmp": { "files": { "LICENSE": { - "offset": 3871570, + "offset": 2970050, "size": 1090, }, "lib": { "files": { "tmp.js": { - "offset": 3872660, - "size": 24070, + "offset": 2971130, + "size": 14900, }, }, }, "package.json": { - "offset": 3896720, - "size": 850, + "offset": 2986020, + "size": 480, }, }, }, "to-regex-range": { "files": { "LICENSE": { - "offset": 3897570, + "offset": 2986490, "size": 1100, }, "index.js": { - "offset": 3898660, + "offset": 2987580, "size": 6490, }, "package.json": { - "offset": 3905140, + "offset": 2994070, "size": 1150, }, }, }, - "toidentifier": { - "files": { - "HISTORY.md": { - "offset": 3906290, - "size": 130, - }, - "LICENSE": { - "offset": 3906420, - "size": 1110, - }, - "index.js": { - "offset": 3907520, - "size": 510, - }, - "package.json": { - "offset": 3908030, - "size": 690, - }, - }, - }, "type-is": { "files": { - "HISTORY.md": { - "offset": 3908710, - "size": 5450, - }, - "LICENSE": { - "offset": 3914160, - "size": 1180, + "Makefile": { + "offset": 2995210, + "size": 110, }, "index.js": { - "offset": 3915330, - "size": 5570, + "offset": 2995320, + "size": 2300, }, "package.json": { - "offset": 3920890, - "size": 670, + "offset": 2997610, + "size": 500, }, }, }, "universalify": { "files": { "LICENSE": { - "offset": 3921560, + "offset": 2998110, "size": 1100, }, "index.js": { - "offset": 3922660, + "offset": 2999210, "size": 710, }, "package.json": { - "offset": 3923360, + "offset": 2999910, "size": 620, }, }, }, - "unpipe": { - "files": { - "HISTORY.md": { - "offset": 3923980, - "size": 60, - }, - "LICENSE": { - "offset": 3924040, - "size": 1120, - }, - "index.js": { - "offset": 3925160, - "size": 1120, - }, - "package.json": { - "offset": 3926270, - "size": 460, - }, - }, - }, "utils-merge": { "files": { "LICENSE": { - "offset": 3926730, - "size": 1090, + "offset": 3000530, + "size": 1080, }, "index.js": { - "offset": 3927820, + "offset": 3001610, "size": 390, }, "package.json": { - "offset": 3928200, - "size": 630, - }, - }, - }, - "vary": { - "files": { - "HISTORY.md": { - "offset": 3928820, - "size": 800, - }, - "LICENSE": { - "offset": 3929620, - "size": 1100, - }, - "index.js": { - "offset": 3930710, - "size": 2930, - }, - "package.json": { - "offset": 3933640, - "size": 760, + "offset": 3001990, + "size": 590, }, }, }, "which": { "files": { "LICENSE": { - "offset": 3934400, + "offset": 3002570, "size": 770, }, "bin": { "files": { "node-which": { "executable": true, - "offset": 3935160, + "offset": 3003340, "size": 990, }, }, }, "package.json": { - "offset": 3936150, + "offset": 3004320, "size": 690, }, "which.js": { - "offset": 3936830, + "offset": 3005000, "size": 3170, }, }, }, + "wrappy": { + "files": { + "LICENSE": { + "offset": 3008170, + "size": 770, + }, + "package.json": { + "offset": 3008930, + "size": 480, + }, + "wrappy.js": { + "offset": 3009410, + "size": 910, + }, + }, + }, "yaml": { "files": { "LICENSE": { - "offset": 3939990, + "offset": 3010320, "size": 740, }, "bin.mjs": { "executable": true, - "offset": 3940730, + "offset": 3011050, "size": 310, }, "browser": { @@ -85343,67 +82111,67 @@ exports[`node_module collectors > yarn two package.json without node_modules 2`] "compose": { "files": { "compose-collection.js": { - "offset": 3941040, + "offset": 3011360, "size": 3500, }, "compose-doc.js": { - "offset": 3944540, + "offset": 3014860, "size": 1560, }, "compose-node.js": { - "offset": 3946090, + "offset": 3016420, "size": 3820, }, "compose-scalar.js": { - "offset": 3949910, + "offset": 3020240, "size": 3320, }, "composer.js": { - "offset": 3953230, + "offset": 3023550, "size": 8400, }, "resolve-block-map.js": { - "offset": 3961630, + "offset": 3031950, "size": 4920, }, "resolve-block-scalar.js": { - "offset": 3966540, + "offset": 3036870, "size": 7450, }, "resolve-block-seq.js": { - "offset": 3973990, + "offset": 3044310, "size": 1740, }, "resolve-end.js": { - "offset": 3975730, + "offset": 3046050, "size": 1240, }, "resolve-flow-collection.js": { - "offset": 3976970, + "offset": 3047290, "size": 8780, }, "resolve-flow-scalar.js": { - "offset": 3985750, + "offset": 3056070, "size": 7310, }, "resolve-props.js": { - "offset": 3993050, + "offset": 3063370, "size": 5560, }, "util-contains-newline.js": { - "offset": 3998600, + "offset": 3068920, "size": 1060, }, "util-empty-scalar-position.js": { - "offset": 3999650, + "offset": 3069980, "size": 820, }, "util-flow-indent-check.js": { - "offset": 4000470, + "offset": 3070790, "size": 500, }, "util-map-includes.js": { - "offset": 4000960, + "offset": 3071290, "size": 430, }, }, @@ -85411,79 +82179,79 @@ exports[`node_module collectors > yarn two package.json without node_modules 2`] "doc": { "files": { "Document.js": { - "offset": 4001390, + "offset": 3071710, "size": 12910, }, "anchors.js": { - "offset": 4014290, + "offset": 3084620, "size": 2280, }, "applyReviver.js": { - "offset": 4016570, + "offset": 3086890, "size": 1930, }, "createNode.js": { - "offset": 4018490, + "offset": 3088820, "size": 3070, }, "directives.js": { - "offset": 4021550, + "offset": 3091880, "size": 6190, }, }, }, "errors.js": { - "offset": 4027740, + "offset": 3098060, "size": 2030, }, "index.js": { - "offset": 4029760, + "offset": 3100090, "size": 880, }, "log.js": { - "offset": 4030640, + "offset": 3100970, "size": 260, }, "nodes": { "files": { "Alias.js": { - "offset": 4030900, + "offset": 3101230, "size": 3750, }, "Collection.js": { - "offset": 4034650, + "offset": 3104980, "size": 5080, }, "Node.js": { - "offset": 4039730, + "offset": 3110050, "size": 1340, }, "Pair.js": { - "offset": 4041070, + "offset": 3111390, "size": 1130, }, "Scalar.js": { - "offset": 4042190, + "offset": 3112510, "size": 700, }, "YAMLMap.js": { - "offset": 4042890, + "offset": 3113210, "size": 4960, }, "YAMLSeq.js": { - "offset": 4047850, + "offset": 3118170, "size": 3580, }, "addPairToJSMap.js": { - "offset": 4051420, + "offset": 3121740, "size": 2290, }, "identity.js": { - "offset": 4053710, + "offset": 3124030, "size": 1520, }, "toJS.js": { - "offset": 4055220, + "offset": 3125550, "size": 1270, }, }, @@ -85491,61 +82259,61 @@ exports[`node_module collectors > yarn two package.json without node_modules 2`] "parse": { "files": { "cst-scalar.js": { - "offset": 4056490, + "offset": 3126810, "size": 9240, }, "cst-stringify.js": { - "offset": 4065720, + "offset": 3136050, "size": 1780, }, "cst-visit.js": { - "offset": 4067500, + "offset": 3137820, "size": 3970, }, "cst.js": { - "offset": 4071460, + "offset": 3141790, "size": 2890, }, "lexer.js": { - "offset": 4074350, + "offset": 3144670, "size": 24070, }, "line-counter.js": { - "offset": 4098410, + "offset": 3168740, "size": 1420, }, "parser.js": { - "offset": 4099830, + "offset": 3170160, "size": 35170, }, }, }, "public-api.js": { - "offset": 4135000, + "offset": 3205320, "size": 4000, }, "schema": { "files": { "Schema.js": { - "offset": 4138990, + "offset": 3209310, "size": 1500, }, "common": { "files": { "map.js": { - "offset": 4140480, + "offset": 3210810, "size": 440, }, "null.js": { - "offset": 4140920, + "offset": 3211250, "size": 440, }, "seq.js": { - "offset": 4141360, + "offset": 3211680, "size": 440, }, "string.js": { - "offset": 4141800, + "offset": 3212120, "size": 430, }, }, @@ -85553,19 +82321,19 @@ exports[`node_module collectors > yarn two package.json without node_modules 2`] "core": { "files": { "bool.js": { - "offset": 4142220, + "offset": 3212540, "size": 610, }, "float.js": { - "offset": 4142830, + "offset": 3213150, "size": 1400, }, "int.js": { - "offset": 4144220, + "offset": 3214550, "size": 1330, }, "schema.js": { - "offset": 4145550, + "offset": 3215870, "size": 480, }, }, @@ -85573,55 +82341,55 @@ exports[`node_module collectors > yarn two package.json without node_modules 2`] "json": { "files": { "schema.js": { - "offset": 4146030, + "offset": 3216350, "size": 1870, }, }, }, "tags.js": { - "offset": 4147900, + "offset": 3218220, "size": 2970, }, "yaml-1.1": { "files": { "binary.js": { - "offset": 4150860, + "offset": 3221180, "size": 2320, }, "bool.js": { - "offset": 4153170, + "offset": 3223500, "size": 790, }, "float.js": { - "offset": 4153960, + "offset": 3224280, "size": 1520, }, "int.js": { - "offset": 4155470, + "offset": 3225800, "size": 2140, }, "merge.js": { - "offset": 4157610, + "offset": 3227930, "size": 2450, }, "omap.js": { - "offset": 4160050, + "offset": 3230380, "size": 2480, }, "pairs.js": { - "offset": 4162530, + "offset": 3232850, "size": 2760, }, "schema.js": { - "offset": 4165280, + "offset": 3235600, "size": 860, }, "set.js": { - "offset": 4166140, + "offset": 3236460, "size": 3030, }, "timestamp.js": { - "offset": 4169170, + "offset": 3239490, "size": 3700, }, }, @@ -85631,55 +82399,55 @@ exports[`node_module collectors > yarn two package.json without node_modules 2`] "stringify": { "files": { "foldFlowLines.js": { - "offset": 4172870, + "offset": 3243190, "size": 4800, }, "stringify.js": { - "offset": 4177660, + "offset": 3247980, "size": 4370, }, "stringifyCollection.js": { - "offset": 4182030, + "offset": 3252350, "size": 5200, }, "stringifyComment.js": { - "offset": 4187220, + "offset": 3257550, "size": 730, }, "stringifyDocument.js": { - "offset": 4187950, + "offset": 3258270, "size": 2990, }, "stringifyNumber.js": { - "offset": 4190930, + "offset": 3261250, "size": 750, }, "stringifyPair.js": { - "offset": 4191680, + "offset": 3262000, "size": 5290, }, "stringifyString.js": { - "offset": 4196960, + "offset": 3267290, "size": 13170, }, }, }, "util.js": { - "offset": 4210130, + "offset": 3280450, "size": 600, }, "visit.js": { - "offset": 4210720, + "offset": 3281050, "size": 9110, }, }, }, "index.js": { - "offset": 4219830, + "offset": 3290150, "size": 200, }, "package.json": { - "offset": 4220020, + "offset": 3290340, "size": 30, }, }, @@ -85687,73 +82455,73 @@ exports[`node_module collectors > yarn two package.json without node_modules 2`] "dist": { "files": { "cli.mjs": { - "offset": 4220040, + "offset": 3290370, "size": 7470, }, "compose": { "files": { "compose-collection.js": { - "offset": 4227500, + "offset": 3297830, "size": 3620, }, "compose-doc.js": { - "offset": 4231120, + "offset": 3301440, "size": 1620, }, "compose-node.js": { - "offset": 4232730, + "offset": 3303060, "size": 3970, }, "compose-scalar.js": { - "offset": 4236700, + "offset": 3307020, "size": 3450, }, "composer.js": { - "offset": 4240140, + "offset": 3310470, "size": 8610, }, "resolve-block-map.js": { - "offset": 4248750, + "offset": 3319070, "size": 5080, }, "resolve-block-scalar.js": { - "offset": 4253820, + "offset": 3324150, "size": 7500, }, "resolve-block-seq.js": { - "offset": 4261320, + "offset": 3331650, "size": 1820, }, "resolve-end.js": { - "offset": 4263130, + "offset": 3333460, "size": 1270, }, "resolve-flow-collection.js": { - "offset": 4264400, + "offset": 3334720, "size": 8930, }, "resolve-flow-scalar.js": { - "offset": 4273320, + "offset": 3343650, "size": 7370, }, "resolve-props.js": { - "offset": 4280690, + "offset": 3351010, "size": 5580, }, "util-contains-newline.js": { - "offset": 4286270, + "offset": 3356590, "size": 1090, }, "util-empty-scalar-position.js": { - "offset": 4287350, + "offset": 3357670, "size": 850, }, "util-flow-indent-check.js": { - "offset": 4288200, + "offset": 3358520, "size": 550, }, "util-map-includes.js": { - "offset": 4288740, + "offset": 3359070, "size": 480, }, }, @@ -85761,79 +82529,79 @@ exports[`node_module collectors > yarn two package.json without node_modules 2`] "doc": { "files": { "Document.js": { - "offset": 4289220, + "offset": 3359540, "size": 13120, }, "anchors.js": { - "offset": 4302330, + "offset": 3372650, "size": 2390, }, "applyReviver.js": { - "offset": 4304720, + "offset": 3375040, "size": 1950, }, "createNode.js": { - "offset": 4306670, + "offset": 3376990, "size": 3140, }, "directives.js": { - "offset": 4309800, + "offset": 3380130, "size": 6240, }, }, }, "errors.js": { - "offset": 4316040, + "offset": 3386370, "size": 2120, }, "index.js": { - "offset": 4318160, + "offset": 3388480, "size": 1770, }, "log.js": { - "offset": 4319930, + "offset": 3390250, "size": 460, }, "nodes": { "files": { "Alias.js": { - "offset": 4320390, + "offset": 3390710, "size": 3800, }, "Collection.js": { - "offset": 4324180, + "offset": 3394500, "size": 5230, }, "Node.js": { - "offset": 4329400, + "offset": 3399730, "size": 1390, }, "Pair.js": { - "offset": 4330780, + "offset": 3401110, "size": 1240, }, "Scalar.js": { - "offset": 4332010, + "offset": 3402340, "size": 760, }, "YAMLMap.js": { - "offset": 4332770, + "offset": 3403100, "size": 5110, }, "YAMLSeq.js": { - "offset": 4337880, + "offset": 3408200, "size": 3670, }, "addPairToJSMap.js": { - "offset": 4341550, + "offset": 3411870, "size": 2340, }, "identity.js": { - "offset": 4343880, + "offset": 3414210, "size": 1800, }, "toJS.js": { - "offset": 4345680, + "offset": 3416000, "size": 1300, }, }, @@ -85841,61 +82609,61 @@ exports[`node_module collectors > yarn two package.json without node_modules 2`] "parse": { "files": { "cst-scalar.js": { - "offset": 4346970, + "offset": 3417290, "size": 9390, }, "cst-stringify.js": { - "offset": 4356350, + "offset": 3426680, "size": 1800, }, "cst-visit.js": { - "offset": 4358150, + "offset": 3428480, "size": 3990, }, "cst.js": { - "offset": 4362140, + "offset": 3432460, "size": 3250, }, "lexer.js": { - "offset": 4365380, + "offset": 3435700, "size": 24080, }, "line-counter.js": { - "offset": 4389450, + "offset": 3459780, "size": 1450, }, "parser.js": { - "offset": 4390900, + "offset": 3461220, "size": 35330, }, }, }, "public-api.js": { - "offset": 4426220, + "offset": 3496550, "size": 4190, }, "schema": { "files": { "Schema.js": { - "offset": 4430410, + "offset": 3500730, "size": 1550, }, "common": { "files": { "map.js": { - "offset": 4431960, + "offset": 3502280, "size": 490, }, "null.js": { - "offset": 4432440, + "offset": 3502760, "size": 470, }, "seq.js": { - "offset": 4432910, + "offset": 3503230, "size": 490, }, "string.js": { - "offset": 4433390, + "offset": 3503720, "size": 460, }, }, @@ -85903,19 +82671,19 @@ exports[`node_module collectors > yarn two package.json without node_modules 2`] "core": { "files": { "bool.js": { - "offset": 4433850, + "offset": 3504170, "size": 640, }, "float.js": { - "offset": 4434480, + "offset": 3504810, "size": 1510, }, "int.js": { - "offset": 4435990, + "offset": 3506320, "size": 1410, }, "schema.js": { - "offset": 4437400, + "offset": 3507730, "size": 510, }, }, @@ -85923,55 +82691,55 @@ exports[`node_module collectors > yarn two package.json without node_modules 2`] "json": { "files": { "schema.js": { - "offset": 4437910, + "offset": 3508230, "size": 1900, }, }, }, "tags.js": { - "offset": 4439810, + "offset": 3510130, "size": 3240, }, "yaml-1.1": { "files": { "binary.js": { - "offset": 4443050, + "offset": 3513370, "size": 2800, }, "bool.js": { - "offset": 4445850, + "offset": 3516170, "size": 850, }, "float.js": { - "offset": 4446690, + "offset": 3517010, "size": 1630, }, "int.js": { - "offset": 4448320, + "offset": 3518640, "size": 2240, }, "merge.js": { - "offset": 4450550, + "offset": 3520870, "size": 2550, }, "omap.js": { - "offset": 4453100, + "offset": 3523420, "size": 2590, }, "pairs.js": { - "offset": 4455680, + "offset": 3526000, "size": 2860, }, "schema.js": { - "offset": 4458530, + "offset": 3528860, "size": 920, }, "set.js": { - "offset": 4459440, + "offset": 3529770, "size": 3120, }, "timestamp.js": { - "offset": 4462560, + "offset": 3532880, "size": 3780, }, }, @@ -85981,59 +82749,59 @@ exports[`node_module collectors > yarn two package.json without node_modules 2`] "stringify": { "files": { "foldFlowLines.js": { - "offset": 4466330, + "offset": 3536660, "size": 4890, }, "stringify.js": { - "offset": 4471220, + "offset": 3541540, "size": 4510, }, "stringifyCollection.js": { - "offset": 4475720, + "offset": 3546050, "size": 5360, }, "stringifyComment.js": { - "offset": 4481080, + "offset": 3551400, "size": 810, }, "stringifyDocument.js": { - "offset": 4481880, + "offset": 3552210, "size": 3110, }, "stringifyNumber.js": { - "offset": 4484980, + "offset": 3555310, "size": 780, }, "stringifyPair.js": { - "offset": 4485760, + "offset": 3556090, "size": 5470, }, "stringifyString.js": { - "offset": 4491230, + "offset": 3561560, "size": 13350, }, }, }, "test-events.js": { - "offset": 4504580, + "offset": 3574900, "size": 4280, }, "util.js": { - "offset": 4508850, + "offset": 3579180, "size": 1010, }, "visit.js": { - "offset": 4509860, + "offset": 3580180, "size": 9260, }, }, }, "package.json": { - "offset": 4519110, + "offset": 3589440, "size": 1830, }, "util.js": { - "offset": 4520940, + "offset": 3591270, "size": 80, }, }, @@ -86041,7 +82809,7 @@ exports[`node_module collectors > yarn two package.json without node_modules 2`] }, }, "package.json": { - "offset": 4522020, + "offset": 3592340, "size": 360, }, }, diff --git a/test/src/HoistedNodeModuleTest.ts b/test/src/HoistedNodeModuleTest.ts index 8307e4de042..dd1f9c81de2 100644 --- a/test/src/HoistedNodeModuleTest.ts +++ b/test/src/HoistedNodeModuleTest.ts @@ -98,14 +98,14 @@ describe.ifNotWindows("node_module collectors", () => { projectDirCreated: async (projectDir, _tmpDir, testEnv) => { await modifyPackageJson(projectDir, data => { data.dependencies = { - "electron-updater": "6", - express: "4", - "patch-package": "^8.0.0", + "electron-updater": "6.8.3", + express: "4.0.0", } data.devDependencies = { electron: "23.2.0", - "electron-builder": "26", - "fs-extra": "11", + "electron-builder": "26.8.1", + "fs-extra": "11.0.0", + "patch-package": "8.0.0", } data.build.directories = { app: "app", @@ -151,14 +151,14 @@ describe.ifNotWindows("node_module collectors", () => { projectDirCreated: async (projectDir, _tmpDir, testEnv) => { await modifyPackageJson(projectDir, data => { data.dependencies = { - "electron-updater": "6", - express: "4", - "patch-package": "^8.0.0", + "electron-updater": "6.8.3", + express: "4.0.0", + "patch-package": "8.0.0", } data.devDependencies = { electron: "23.2.0", - "electron-builder": "26", - "fs-extra": "11", + "electron-builder": "26.8.1", + "fs-extra": "11.0.0", } data.build.directories = { app: "app", @@ -297,7 +297,7 @@ describe.ifNotWindows("node_module collectors", () => { return Promise.all([ modifyPackageJson(projectDir, data => { data.dependencies = { - "electron-clear-data": "^1.0.5", + "electron-clear-data": "1.0.5", } data.optionalDependencies = { debug: "3.1.0", @@ -323,7 +323,7 @@ describe.ifNotWindows("node_module collectors", () => { return Promise.all([ modifyPackageJson(projectDir, data => { data.dependencies = { - "electron-clear-data": "^1.0.5", + "electron-clear-data": "1.0.5", } data.optionalDependencies = { "node-mac-permissions": "2.3.0", @@ -350,7 +350,7 @@ describe.ifNotWindows("node_module collectors", () => { return Promise.all([ modifyPackageJson(projectDir, data => { data.dependencies = { - "electron-clear-data": "^1.0.5", + "electron-clear-data": "1.0.5", } data.optionalDependencies = { debug: "3.1.0", @@ -376,7 +376,7 @@ describe.ifNotWindows("node_module collectors", () => { return Promise.all([ modifyPackageJson(projectDir, data => { data.dependencies = { - "electron-clear-data": "^1.0.5", + "electron-clear-data": "1.0.5", } data.optionalDependencies = { debug: "3.1.0", @@ -426,7 +426,7 @@ describe.ifNotWindows("node_module collectors", () => { return Promise.all([ modifyPackageJson(projectDir, data => { data.dependencies = { - "npm-run-all": "^4.1.5", + "npm-run-all": "4.1.5", } }), ]) @@ -449,7 +449,7 @@ describe.ifNotWindows("node_module collectors", () => { return Promise.all([ modifyPackageJson(projectDir, data => { data.dependencies = { - "npm-run-all": "^4.1.5", + "npm-run-all": "4.1.5", } }), ]) @@ -473,7 +473,7 @@ describe.ifNotWindows("node_module collectors", () => { await modifyPackageJson(projectDir, data => { data.dependencies = { "@sentry/electron": "5.11.0", - "electron-clear-data": "^1.0.5", + "electron-clear-data": "1.0.5", } data.devDependencies = { electron: "34.0.2", @@ -633,7 +633,7 @@ describe.ifNotWindows("node_module collectors", () => { return Promise.all([ modifyPackageJson(path.join(projectDir, "packages", "test-app"), data => { data.dependencies = { - "better-sqlite3": "^11.10.0", + "better-sqlite3": "11.10.0", debug: "4.4.3", } data.devDependencies = { @@ -661,8 +661,8 @@ describe.ifNotWindows("node_module collectors", () => { const subAppDir = path.join(projectDir, "packages", "test-app") return modifyPackageJson(subAppDir, data => { data.dependencies = { - jsdom: "^27.4.0", - "markdown-it": "^14.1.0", + jsdom: "27.4.0", + "markdown-it": "14.1.0", } }) }, diff --git a/test/src/packageManagerTest.ts b/test/src/packageManagerTest.ts index 8ae904cfbae..56abc0d8d14 100644 --- a/test/src/packageManagerTest.ts +++ b/test/src/packageManagerTest.ts @@ -247,7 +247,7 @@ describe.ifNotWindows("Package Managers", () => { data.dependencies = { lib: "workspace:*", "is-bigint": "1.1.0", - process: "^0.11.10", + process: "0.11.10", } }), modifyPackageJson(libPkg, data => { @@ -288,7 +288,7 @@ describe.ifNotWindows("Package Managers", () => { data.dependencies = { lib: "workspace:*", "is-bigint": "1.1.0", - process: "^0.11.10", + process: "0.11.10", } }), modifyPackageJson(libPkg, data => { @@ -331,7 +331,7 @@ describe.ifNotWindows("Package Managers", () => { data.dependencies = { lib: "workspace:*", "is-bigint": "1.1.0", - process: "^0.11.10", + process: "0.11.10", } }), modifyPackageJson(libPkg, data => { @@ -372,7 +372,7 @@ describe.ifNotWindows("Package Managers", () => { data.dependencies = { lib: "workspace:*", "is-bigint": "1.1.0", - process: "^0.11.10", + process: "0.11.10", } }), modifyPackageJson(libPkg, data => { From ab1f24c4e026847b3d5f3a81c959cea449a8c563 Mon Sep 17 00:00:00 2001 From: Mike Maietta Date: Wed, 18 Feb 2026 17:04:05 -0800 Subject: [PATCH 22/61] chore(deploy): update pipeline to also run/deploy on `release/v27` branch (#9597) Prepping for release cut of v27 to work on ESM migration in https://github.com/electron-userland/electron-builder/issues/9483 --- .github/workflows/pr-release.yml | 24 +++++++++++++----------- .github/workflows/test.yaml | 1 + 2 files changed, 14 insertions(+), 11 deletions(-) diff --git a/.github/workflows/pr-release.yml b/.github/workflows/pr-release.yml index 57d37b28558..5760d99c01e 100644 --- a/.github/workflows/pr-release.yml +++ b/.github/workflows/pr-release.yml @@ -4,7 +4,7 @@ on: push: branches: - master - + - release/v* concurrency: group: ${{ github.workflow }}-${{ github.ref }} cancel-in-progress: false @@ -45,14 +45,15 @@ jobs: echo "tag=next" >> $GITHUB_OUTPUT echo "branch_type=prerelease" >> $GITHUB_OUTPUT echo "config_file=config.json" >> $GITHUB_OUTPUT - elif [[ "$BRANCH" =~ ^release/v[0-9]+\.x$ ]]; then - # Extract version from branch name (e.g., release/v26.x -> v26) - VERSION=$(echo "$BRANCH" | sed -E 's/^release\/v([0-9]+)\.x$/v\1/') - # Validate that sed extraction worked correctly + elif [[ "$BRANCH" =~ ^release/v[0-9]+$ ]]; then + # Extract version from branch name (e.g., release/v27 -> v27) + VERSION=$(echo "$BRANCH" | sed -E 's/^release\/(v[0-9]+)$/\1/') + + # Validate extraction if [[ ! "$VERSION" =~ ^v[0-9]+$ ]]; then echo "::error::Failed to extract valid version from branch: $BRANCH" - echo "::error::Expected format: release/v{major}.x (e.g., release/v26.x)" + echo "::error::Expected format: release/v{major} (e.g., release/v27)" echo "::error::Extracted version: $VERSION" exit 1 fi @@ -60,17 +61,18 @@ jobs: echo "tag=$VERSION" >> $GITHUB_OUTPUT echo "branch_type=lts" >> $GITHUB_OUTPUT echo "config_file=config.release-$VERSION.json" >> $GITHUB_OUTPUT + else echo "::error::Unsupported branch for release: $BRANCH" - echo "::error::Expected 'master' or 'release/v{major}.x' (e.g., 'release/v26.x')" + echo "::error::Expected 'master' or 'release/v{major}' (e.g., 'release/v27')" exit 1 fi - # Log the determined values for debugging + # Log determined values echo "Branch: $BRANCH" - echo "Dist-tag: $(cat $GITHUB_OUTPUT | grep '^tag=' | cut -d= -f2)" - echo "Branch type: $(cat $GITHUB_OUTPUT | grep '^branch_type=' | cut -d= -f2)" - echo "Config file: $(cat $GITHUB_OUTPUT | grep '^config_file=' | cut -d= -f2)" + echo "Dist-tag: $(grep '^tag=' $GITHUB_OUTPUT | cut -d= -f2)" + echo "Branch type: $(grep '^branch_type=' $GITHUB_OUTPUT | cut -d= -f2)" + echo "Config file: $(grep '^config_file=' $GITHUB_OUTPUT | cut -d= -f2)" - name: Link changeset config for this branch run: | diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml index cab9d38d2b1..3f9defbb795 100644 --- a/.github/workflows/test.yaml +++ b/.github/workflows/test.yaml @@ -4,6 +4,7 @@ on: push: branches: - master + - release/v* pull_request: workflow_call: inputs: From 094886f5dcdd45b2e86e15517f8af74ea9c8920a Mon Sep 17 00:00:00 2001 From: Mike Maietta Date: Wed, 18 Feb 2026 17:05:00 -0800 Subject: [PATCH 23/61] tmp save --- packages/app-builder-lib/package.json | 5 +- .../src/codeSign/windowsSignToolManager.ts | 22 +++--- packages/app-builder-lib/src/index.ts | 67 ++++++++++--------- .../node-module-collector/moduleManager.ts | 2 +- .../app-builder-lib/src/targets/AppxTarget.ts | 18 ++--- .../src/targets/appimage/appImageUtil.ts | 12 ++-- .../app-builder-lib/src/toolsets/linux.ts | 2 +- .../app-builder-lib/src/util/appFileCopier.ts | 22 +++--- packages/app-builder-lib/src/winPackager.ts | 44 ++++++------ packages/builder-util-runtime/package.json | 4 +- packages/builder-util/package.json | 5 +- packages/dmg-builder/package.json | 6 +- .../package.json | 6 +- packages/electron-publish/package.json | 5 +- packages/electron-updater/package.json | 4 +- pnpm-lock.yaml | 3 - test/src/BuildTest.ts | 2 +- test/src/helpers/asarVerifier.ts | 2 +- test/src/updater/differentialUpdateTest.ts | 10 +-- test/src/windows/assistedInstallerTest.ts | 2 +- test/src/windows/msiWrappedTest.ts | 2 +- test/src/windows/winCodeSignTest.ts | 4 +- test/src/windows/winPackagerTest.ts | 6 +- 23 files changed, 137 insertions(+), 118 deletions(-) diff --git a/packages/app-builder-lib/package.json b/packages/app-builder-lib/package.json index 6bfdbd90e49..b128073aa69 100644 --- a/packages/app-builder-lib/package.json +++ b/packages/app-builder-lib/package.json @@ -2,7 +2,10 @@ "name": "app-builder-lib", "description": "electron-builder lib", "version": "26.8.1", - "main": "out/index.js", + "type": "module", + "exports": { + ".": "./out/index.js" + }, "files": [ "out", "templates", diff --git a/packages/app-builder-lib/src/codeSign/windowsSignToolManager.ts b/packages/app-builder-lib/src/codeSign/windowsSignToolManager.ts index 13c217e29c9..b772ba1c351 100644 --- a/packages/app-builder-lib/src/codeSign/windowsSignToolManager.ts +++ b/packages/app-builder-lib/src/codeSign/windowsSignToolManager.ts @@ -3,17 +3,17 @@ import { MemoLazy, parseDn } from "builder-util-runtime" import { rename } from "fs-extra" import { Lazy } from "lazy-val" import * as path from "path" -import { Target } from "../core" -import { WindowsConfiguration } from "../options/winOptions" -import AppXTarget from "../targets/AppxTarget" -import { getSignToolPath } from "../toolsets/windows" -import { executeAppBuilderAsJson } from "../util/appBuilder" -import { resolveFunction } from "../util/resolve" -import { VmManager } from "../vm/vm" -import { WinPackager } from "../winPackager" -import { importCertificate } from "./codesign" -import { SignManager } from "./signManager" -import { WindowsSignOptions } from "./windowsCodeSign" +import { Target } from "../core.js" +import { WindowsConfiguration } from "../options/winOptions.js" +import AppXTarget from "../targets/AppxTarget.js" +import { getSignToolPath } from "../toolsets/windows.js" +import { executeAppBuilderAsJson } from "../util/appBuilder.js" +import { resolveFunction } from "../util/resolve.js" +import { VmManager } from "../vm/vm.js" +import { WinPackager } from "../winPackager.js" +import { importCertificate } from "./codesign.js" +import { SignManager } from "./signManager.js" +import { WindowsSignOptions } from "./windowsCodeSign.js" export type CustomWindowsSign = (configuration: CustomWindowsSignTaskConfiguration, packager?: WinPackager) => Promise diff --git a/packages/app-builder-lib/src/index.ts b/packages/app-builder-lib/src/index.ts index 29ab91e15be..9db5e0aee24 100644 --- a/packages/app-builder-lib/src/index.ts +++ b/packages/app-builder-lib/src/index.ts @@ -1,13 +1,13 @@ import { InvalidConfigurationError, executeFinally, log } from "builder-util" import { asArray } from "builder-util-runtime" import { PublishOptions } from "electron-publish" -import { Packager } from "./packager" -import { PackagerOptions } from "./packagerApi" -import { PublishManager } from "./publish/PublishManager" -import { resolveFunction } from "./util/resolve" +import { Packager } from "./packager.js" +import { PackagerOptions } from "./packagerApi.js" +import { PublishManager } from "./publish/PublishManager.js" +import { resolveFunction } from "./util/resolve.js" export { Arch, archFromString, getArchSuffix } from "builder-util" -export { AppInfo } from "./appInfo" +export { AppInfo } from "./appInfo.js" export { AfterExtractContext, AfterPackContext, @@ -20,7 +20,7 @@ export { MetadataDirectories, PackContext, ToolsetConfig, -} from "./configuration" +} from "./configuration.js" export { BeforeBuildContext, CompressionLevel, @@ -32,42 +32,43 @@ export { TargetConfigType, TargetConfiguration, TargetSpecificOptions, -} from "./core" -export { ElectronBrandingOptions, ElectronDownloadOptions, ElectronPlatformName } from "./electron/ElectronFramework" -export { AppXOptions } from "./options/AppXOptions" -export { CommonWindowsInstallerConfiguration } from "./options/CommonWindowsInstallerConfiguration" -export { FileAssociation } from "./options/FileAssociation" -export { AppImageOptions, CommonLinuxOptions, DebOptions, FlatpakOptions, LinuxConfiguration, LinuxDesktopFile, LinuxTargetSpecificOptions } from "./options/linuxOptions" -export { DmgContent, DmgOptions, DmgWindow, MacConfiguration, MacOsTargetName, MasConfiguration } from "./options/macOptions" -export { AuthorMetadata, Metadata, RepositoryInfo } from "./options/metadata" -export { MsiOptions } from "./options/MsiOptions" -export { MsiWrappedOptions } from "./options/MsiWrappedOptions" -export { BackgroundAlignment, BackgroundScaling, PkgBackgroundOptions, PkgOptions } from "./options/pkgOptions" -export { AsarOptions, FileSet, FilesBuildOptions, PlatformSpecificBuildOptions, Protocol, ReleaseInfo } from "./options/PlatformSpecificBuildOptions" -export { PlugDescriptor, SlotDescriptor, SnapOptions } from "./options/SnapOptions" -export { SquirrelWindowsOptions } from "./options/SquirrelWindowsOptions" -export { WindowsAzureSigningConfiguration, WindowsConfiguration, WindowsSigntoolConfiguration } from "./options/winOptions" -export { BuildResult, Packager } from "./packager" -export { ArtifactBuildStarted, ArtifactCreated, PackagerOptions } from "./packagerApi" -export { CommonNsisOptions, CustomNsisBinary, NsisOptions, NsisWebOptions, PortableOptions } from "./targets/nsis/nsisOptions" +} from "./core.js" +export { ElectronBrandingOptions, ElectronDownloadOptions, ElectronPlatformName } from "./electron/ElectronFramework.js" +export { AppXOptions } from "./options/AppXOptions.js" +export { CommonWindowsInstallerConfiguration } from "./options/CommonWindowsInstallerConfiguration.js" +export { FileAssociation } from "./options/FileAssociation.js" +export { AppImageOptions, CommonLinuxOptions, DebOptions, FlatpakOptions, LinuxConfiguration, LinuxDesktopFile, LinuxTargetSpecificOptions } from "./options/linuxOptions.js" +export { DmgContent, DmgOptions, DmgWindow, MacConfiguration, MacOsTargetName, MasConfiguration } from "./options/macOptions.js" +export { AuthorMetadata, Metadata, RepositoryInfo } from "./options/metadata.js" +export { MsiOptions } from "./options/MsiOptions.js" +export { MsiWrappedOptions } from "./options/MsiWrappedOptions.js" +export { BackgroundAlignment, BackgroundScaling, PkgBackgroundOptions, PkgOptions } from "./options/pkgOptions.js" +export { AsarOptions, FileSet, FilesBuildOptions, PlatformSpecificBuildOptions, Protocol, ReleaseInfo } from "./options/PlatformSpecificBuildOptions.js" +export { PlugDescriptor, SlotDescriptor, SnapOptions } from "./options/SnapOptions.js" +export { SquirrelWindowsOptions } from "./options/SquirrelWindowsOptions.js" +export { WindowsAzureSigningConfiguration, WindowsConfiguration, WindowsSigntoolConfiguration } from "./options/winOptions.js" +export { BuildResult, Packager } from "./packager.js" +export { ArtifactBuildStarted, ArtifactCreated, PackagerOptions } from "./packagerApi.js" +export { CommonNsisOptions, CustomNsisBinary, NsisOptions, NsisWebOptions, PortableOptions } from "./targets/nsis/nsisOptions.js" export { CancellationToken, ProgressInfo } from "builder-util-runtime" export { PublishOptions, UploadTask } from "electron-publish" -export { WindowsSignOptions } from "./codeSign/windowsCodeSign" +export { WindowsSignOptions } from "./codeSign/windowsCodeSign.js" export { CertificateFromStoreInfo, CustomWindowsSign, CustomWindowsSignTaskConfiguration, FileCodeSigningInfo, WindowsSignTaskConfiguration, -} from "./codeSign/windowsSignToolManager" -export { ForgeOptions, buildForge } from "./forge-maker" -export { Framework, PrepareApplicationStageDirectoryOptions } from "./Framework" -export { LinuxPackager } from "./linuxPackager" -export { CustomMacSign, CustomMacSignOptions, MacPackager } from "./macPackager" -export { PlatformPackager } from "./platformPackager" -export { PublishManager } from "./publish/PublishManager" -export { WinPackager } from "./winPackager" +} from "./codeSign/windowsSignToolManager.js" +export { ForgeOptions, buildForge } from "./forge-maker.js" +export { Framework, PrepareApplicationStageDirectoryOptions } from "./Framework.js" +export { LinuxPackager } from "./linuxPackager.js" +export { CustomMacSign, CustomMacSignOptions, MacPackager } from "./macPackager.js" +export { PlatformPackager } from "./platformPackager.js" +export { PublishManager } from "./publish/PublishManager.js" +export { WinPackager } from "./winPackager.js" +export { readAsar } from "./asar/asar.js" const expectedOptions = new Set(["publish", "targets", "mac", "win", "linux", "projectDir", "platformPackagerFactory", "config", "effectiveOptionComputed", "prepackaged"]) diff --git a/packages/app-builder-lib/src/node-module-collector/moduleManager.ts b/packages/app-builder-lib/src/node-module-collector/moduleManager.ts index af189fa45e2..cf1a0635eb0 100644 --- a/packages/app-builder-lib/src/node-module-collector/moduleManager.ts +++ b/packages/app-builder-lib/src/node-module-collector/moduleManager.ts @@ -1,5 +1,5 @@ import { exists, isEmptyOrSpaces, log, LogLevel } from "builder-util" -import { PackageJson } from "./types" +import { PackageJson } from "./types.js" import * as fs from "fs-extra" import * as path from "path" import * as semver from "semver" diff --git a/packages/app-builder-lib/src/targets/AppxTarget.ts b/packages/app-builder-lib/src/targets/AppxTarget.ts index 234a95d66a8..82776fed377 100644 --- a/packages/app-builder-lib/src/targets/AppxTarget.ts +++ b/packages/app-builder-lib/src/targets/AppxTarget.ts @@ -2,15 +2,15 @@ import { Arch, asArray, copyOrLinkFile, deepAssign, InvalidConfigurationError, l import { Nullish } from "builder-util-runtime" import { emptyDir, readdir, readFile, writeFile } from "fs-extra" import * as path from "path" -import { AppXOptions } from "../" -import { getWindowsKitsBundle } from "../toolsets/windows" -import { Target } from "../core" -import { getTemplatePath } from "../util/pathManager" -import { VmManager } from "../vm/vm" -import { WinPackager } from "../winPackager" -import { createStageDir } from "./targetUtil" -import { isOldWin6 } from "../toolsets/windows" -import { CAPABILITIES, isValidCapabilityName } from "./AppxCapabilities" +import { AppXOptions } from "../index.js" +import { getWindowsKitsBundle } from "../toolsets/windows.js" +import { Target } from "../core.js" +import { getTemplatePath } from "../util/pathManager.js" +import { VmManager } from "../vm/vm.js" +import { WinPackager } from "../winPackager.js" +import { createStageDir } from "./targetUtil.js" +import { isOldWin6 } from "../toolsets/windows.js" +import { CAPABILITIES, isValidCapabilityName } from "./AppxCapabilities.js" const APPX_ASSETS_DIR_NAME = "appx" diff --git a/packages/app-builder-lib/src/targets/appimage/appImageUtil.ts b/packages/app-builder-lib/src/targets/appimage/appImageUtil.ts index 6eabc7efc87..fec7eaa3cc5 100644 --- a/packages/app-builder-lib/src/targets/appimage/appImageUtil.ts +++ b/packages/app-builder-lib/src/targets/appimage/appImageUtil.ts @@ -1,13 +1,13 @@ import { Arch, copyDir, copyFile, exec, exists, InvalidConfigurationError, log } from "builder-util" import * as fs from "fs-extra" import * as path from "path" -import { FileAssociation } from "../../options/FileAssociation" -import { IconInfo } from "../../platformPackager" -import { getAppImageTools } from "../../toolsets/linux" -import { copyIcons, copyMimeTypes } from "./appLauncher" -import { appendBlockmap } from "../differentialUpdateInfoBuilder" +import { FileAssociation } from "../../options/FileAssociation.js" +import { IconInfo } from "../../platformPackager.js" +import { getAppImageTools } from "../../toolsets/linux.js" +import { copyIcons, copyMimeTypes } from "./appLauncher.js" +import { appendBlockmap } from "../differentialUpdateInfoBuilder.js" import { BlockMapDataHolder } from "builder-util-runtime" -import { APP_RUN_ENTRYPOINT } from "./AppImageTarget" +import { APP_RUN_ENTRYPOINT } from "./AppImageTarget.js" interface Options { productName: string diff --git a/packages/app-builder-lib/src/toolsets/linux.ts b/packages/app-builder-lib/src/toolsets/linux.ts index b0b04f2cc94..0a88160f30a 100644 --- a/packages/app-builder-lib/src/toolsets/linux.ts +++ b/packages/app-builder-lib/src/toolsets/linux.ts @@ -1,6 +1,6 @@ import { Arch } from "builder-util" import * as path from "path" -import { downloadArtifact, getBinFromUrl } from "../binDownload" +import { downloadArtifact, getBinFromUrl } from "../binDownload.js" // It's just easier to copy the map of checksums here rather than adding them to within each if-statement. Also, easy copy-paste from the releases page const fpmChecksums = { diff --git a/packages/app-builder-lib/src/util/appFileCopier.ts b/packages/app-builder-lib/src/util/appFileCopier.ts index b71de598c02..dffac4b77a7 100644 --- a/packages/app-builder-lib/src/util/appFileCopier.ts +++ b/packages/app-builder-lib/src/util/appFileCopier.ts @@ -4,17 +4,17 @@ import { ensureSymlink } from "fs-extra" import { mkdir, readlink } from "fs/promises" import * as path from "path" import asyncPool from "tiny-async-pool" -import { isLibOrExe } from "../asar/unpackDetector" -import { Platform } from "../core" -import { excludedExts, FileMatcher } from "../fileMatcher" -import { createElectronCompilerHost, NODE_MODULES_PATTERN } from "../fileTransformer" -import { getCollectorByPackageManager, PM } from "../node-module-collector" -import { LogMessageByKey, logMessageLevelByKey, ModuleManager } from "../node-module-collector/moduleManager" -import { Packager } from "../packager" -import { PlatformPackager } from "../platformPackager" -import { AppFileWalker } from "./AppFileWalker" -import { NodeModuleCopyHelper } from "./NodeModuleCopyHelper" -import { NodeModuleInfo } from "./packageDependencies" +import { isLibOrExe } from "../asar/unpackDetector.js" +import { Platform } from "../core.js" +import { excludedExts, FileMatcher } from "../fileMatcher.js" +import { createElectronCompilerHost, NODE_MODULES_PATTERN } from "../fileTransformer.js" +import { getCollectorByPackageManager, PM } from "../node-module-collector/index.js" +import { LogMessageByKey, logMessageLevelByKey, ModuleManager } from "../node-module-collector/moduleManager.js" +import { Packager } from "../packager.js" +import { PlatformPackager } from "../platformPackager.js" +import { AppFileWalker } from "./AppFileWalker.js" +import { NodeModuleCopyHelper } from "./NodeModuleCopyHelper.js" +import { NodeModuleInfo } from "./packageDependencies.js" const BOWER_COMPONENTS_PATTERN = `${path.sep}bower_components${path.sep}` /** @internal */ diff --git a/packages/app-builder-lib/src/winPackager.ts b/packages/app-builder-lib/src/winPackager.ts index c1e4852c611..901bbeef14d 100644 --- a/packages/app-builder-lib/src/winPackager.ts +++ b/packages/app-builder-lib/src/winPackager.ts @@ -5,28 +5,28 @@ import { readdir } from "fs/promises" import { isCI } from "ci-info" import { Lazy } from "lazy-val" import * as path from "path" -import { SignManager } from "./codeSign/signManager" -import { signWindows, WindowsSignOptions } from "./codeSign/windowsCodeSign" -import { WindowsSignAzureManager } from "./codeSign/windowsSignAzureManager" -import { FileCodeSigningInfo, WindowsSignToolManager } from "./codeSign/windowsSignToolManager" -import { AfterPackContext } from "./configuration" -import { DIR_TARGET, Platform, Target } from "./core" -import { RequestedExecutionLevel, WindowsConfiguration } from "./options/winOptions" -import { Packager } from "./packager" -import { chooseNotNull, PlatformPackager } from "./platformPackager" -import AppXTarget from "./targets/AppxTarget" -import MsiTarget from "./targets/MsiTarget" -import MsiWrappedTarget from "./targets/MsiWrappedTarget" -import { NsisTarget } from "./targets/nsis/NsisTarget" -import { AppPackageHelper, CopyElevateHelper } from "./targets/nsis/nsisUtil" -import { WebInstallerTarget } from "./targets/nsis/WebInstallerTarget" -import { createCommonTarget } from "./targets/targetFactory" -import { BuildCacheManager, digest } from "./util/cacheManager" -import { isBuildCacheEnabled } from "./util/flags" -import { time } from "./util/timer" -import { getWindowsVm, VmManager } from "./vm/vm" -import { execWine } from "./wine" -import { getRceditBundle } from "./toolsets/windows" +import { SignManager } from "./codeSign/signManager.js" +import { signWindows, WindowsSignOptions } from "./codeSign/windowsCodeSign.js" +import { WindowsSignAzureManager } from "./codeSign/windowsSignAzureManager.js" +import { FileCodeSigningInfo, WindowsSignToolManager } from "./codeSign/windowsSignToolManager.js" +import { AfterPackContext } from "./configuration.js" +import { DIR_TARGET, Platform, Target } from "./core.js" +import { RequestedExecutionLevel, WindowsConfiguration } from "./options/winOptions.js" +import { Packager } from "./packager.js" +import { chooseNotNull, PlatformPackager } from "./platformPackager.js" +import AppXTarget from "./targets/AppxTarget.js" +import MsiTarget from "./targets/MsiTarget.js" +import MsiWrappedTarget from "./targets/MsiWrappedTarget.js" +import { NsisTarget } from "./targets/nsis/NsisTarget.js" +import { AppPackageHelper, CopyElevateHelper } from "./targets/nsis/nsisUtil.js" +import { WebInstallerTarget } from "./targets/nsis/WebInstallerTarget.js" +import { createCommonTarget } from "./targets/targetFactory.js" +import { BuildCacheManager, digest } from "./util/cacheManager.js" +import { isBuildCacheEnabled } from "./util/flags.js" +import { time } from "./util/timer.js" +import { getWindowsVm, VmManager } from "./vm/vm.js" +import { execWine } from "./wine.js" +import { getRceditBundle } from "./toolsets/windows.js" export class WinPackager extends PlatformPackager { _iconPath = new Lazy(() => this.getOrConvertIcon("ico")) diff --git a/packages/builder-util-runtime/package.json b/packages/builder-util-runtime/package.json index 971acbdeeaf..f1cc465efb4 100644 --- a/packages/builder-util-runtime/package.json +++ b/packages/builder-util-runtime/package.json @@ -2,7 +2,9 @@ "name": "builder-util-runtime", "version": "9.5.1", "type": "module", - "exports": "./out/index.js", + "exports": { + ".": "./out/index.js" + }, "author": "Vladimir Krivosheev", "license": "MIT", "repository": { diff --git a/packages/builder-util/package.json b/packages/builder-util/package.json index 989f45f70d1..85c614bd44d 100644 --- a/packages/builder-util/package.json +++ b/packages/builder-util/package.json @@ -1,7 +1,10 @@ { "name": "builder-util", "version": "26.8.1", - "main": "out/util.js", + "type": "module", + "exports": { + ".": "./out/util.js" + }, "author": "Vladimir Krivosheev", "license": "MIT", "repository": { diff --git a/packages/dmg-builder/package.json b/packages/dmg-builder/package.json index 71d4e31824d..1119106e217 100644 --- a/packages/dmg-builder/package.json +++ b/packages/dmg-builder/package.json @@ -1,7 +1,11 @@ { "name": "dmg-builder", "version": "26.8.1", - "main": "out/dmgUtil.js", + "type": "module", + "exports": { + ".": "./out/dmgUtil.js" + }, + "description": "dmg builder for electron-builder", "author": "Vladimir Krivosheev", "license": "MIT", "repository": { diff --git a/packages/electron-builder-squirrel-windows/package.json b/packages/electron-builder-squirrel-windows/package.json index 81ededf3a99..8554e8d981c 100644 --- a/packages/electron-builder-squirrel-windows/package.json +++ b/packages/electron-builder-squirrel-windows/package.json @@ -1,7 +1,11 @@ { "name": "electron-builder-squirrel-windows", "version": "26.8.1", - "main": "out/SquirrelWindowsTarget.js", + "description": "Squirrel.Windows target for electron-builder", + "type": "module", + "exports": { + ".": "./out/SquirrelWindowsTarget.js" + }, "author": "Vladimir Krivosheev", "license": "MIT", "repository": { diff --git a/packages/electron-publish/package.json b/packages/electron-publish/package.json index 815943ebdd6..2db7c917e3e 100644 --- a/packages/electron-publish/package.json +++ b/packages/electron-publish/package.json @@ -1,7 +1,10 @@ { "name": "electron-publish", "version": "26.8.1", - "main": "out/index.js", + "type": "module", + "exports": { + ".": "./out/index.js" + }, "author": "Vladimir Krivosheev", "license": "MIT", "repository": { diff --git a/packages/electron-updater/package.json b/packages/electron-updater/package.json index 5915629eee7..d417224ccca 100644 --- a/packages/electron-updater/package.json +++ b/packages/electron-updater/package.json @@ -3,7 +3,9 @@ "version": "6.8.3", "description": "Cross platform updater for electron applications", "type": "module", - "exports": "./out/index.js", + "exports": { + ".": "./out/index.js" + }, "author": "Vladimir Krivosheev", "license": "MIT", "repository": { diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 5d2dbf23b75..86e0b6a6226 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -442,9 +442,6 @@ importers: dmg-builder: specifier: workspace:* version: link:../dmg-builder - electron-publish: - specifier: workspace:* - version: link:../electron-publish fs-extra: specifier: ^10.1.0 version: 10.1.0 diff --git a/test/src/BuildTest.ts b/test/src/BuildTest.ts index 0600a458a8d..58f3bdc5298 100644 --- a/test/src/BuildTest.ts +++ b/test/src/BuildTest.ts @@ -1,7 +1,7 @@ import { checkBuildRequestOptions } from "app-builder-lib" import { doMergeConfigs } from "app-builder-lib/out/util/config/config" import { Arch, createTargets, DIR_TARGET, Platform } from "electron-builder" -import { createYargs } from "electron-builder/out/builder" +import { createYargs } from "electron-builder" import { promises as fs } from "fs" import { outputFile, outputJson } from "fs-extra" import * as path from "path" diff --git a/test/src/helpers/asarVerifier.ts b/test/src/helpers/asarVerifier.ts index fb2842f22f1..24d220ce97b 100644 --- a/test/src/helpers/asarVerifier.ts +++ b/test/src/helpers/asarVerifier.ts @@ -1,4 +1,4 @@ -import { readAsar } from "app-builder-lib/src/asar/asar" +import { readAsar } from "app-builder-lib" import path from "path" import { expect, ExpectStatic } from "vitest" diff --git a/test/src/updater/differentialUpdateTest.ts b/test/src/updater/differentialUpdateTest.ts index 8ce968d852b..cf58de47ea8 100644 --- a/test/src/updater/differentialUpdateTest.ts +++ b/test/src/updater/differentialUpdateTest.ts @@ -6,13 +6,13 @@ import { EventEmitter } from "events" import { move } from "fs-extra" import * as path from "path" import { TmpDir } from "temp-file" -import { TestAppAdapter } from "../helpers/TestAppAdapter" -import { EXTENDED_TIMEOUT, PackedContext, assertPack, removeUnstableProperties } from "../helpers/packTester" -import { NEW_VERSION_NUMBER, OLD_VERSION_NUMBER, testAppCacheDirName, tuneTestUpdater, writeUpdateConfig } from "../helpers/updaterTestUtil" +import { TestAppAdapter } from "../helpers/TestAppAdapter.js" +import { EXTENDED_TIMEOUT, PackedContext, assertPack, removeUnstableProperties } from "../helpers/packTester.js" +import { NEW_VERSION_NUMBER, OLD_VERSION_NUMBER, testAppCacheDirName, tuneTestUpdater, writeUpdateConfig } from "../helpers/updaterTestUtil.js" import { mockForNodeRequire } from "vitest-mock-commonjs" import { ExpectStatic } from "vitest" -import { getRanLocalServerPath } from "../helpers/launchAppCrossPlatform" -import { ToolsetConfig } from "app-builder-lib/src/configuration" +import { getRanLocalServerPath } from "../helpers/launchAppCrossPlatform.js" +import { ToolsetConfig } from "app-builder-lib/src/configuration.js" async function doBuild( expect: ExpectStatic, diff --git a/test/src/windows/assistedInstallerTest.ts b/test/src/windows/assistedInstallerTest.ts index d7758c5e8e1..c4c6496a5e0 100644 --- a/test/src/windows/assistedInstallerTest.ts +++ b/test/src/windows/assistedInstallerTest.ts @@ -3,7 +3,7 @@ import * as fs from "fs/promises" import * as path from "path" import { app, assertPack, copyTestAsset } from "../helpers/packTester" import { checkHelpers, doTest, expectUpdateMetadata } from "../helpers/winHelper" -import { ToolsetConfig } from "app-builder-lib/src/configuration" +import { ToolsetConfig } from "app-builder-lib" const winCodeSignVersions: ToolsetConfig["winCodeSign"][] = ["0.0.0", "1.0.0", "1.1.0"] const nsisTarget = Platform.WINDOWS.createTarget("nsis", Arch.x64) diff --git a/test/src/windows/msiWrappedTest.ts b/test/src/windows/msiWrappedTest.ts index 22cc72f9596..121075368b2 100644 --- a/test/src/windows/msiWrappedTest.ts +++ b/test/src/windows/msiWrappedTest.ts @@ -2,7 +2,7 @@ import { Arch, Platform } from "electron-builder" import { XMLParser } from "fast-xml-parser" import * as fs from "fs" import { app, appThrows } from "../helpers/packTester" -import { ToolsetConfig } from "app-builder-lib/src/configuration" +import { ToolsetConfig } from "app-builder-lib" const parser = new XMLParser({ ignoreAttributes: false, diff --git a/test/src/windows/winCodeSignTest.ts b/test/src/windows/winCodeSignTest.ts index 4ab05b5065e..ff882362413 100644 --- a/test/src/windows/winCodeSignTest.ts +++ b/test/src/windows/winCodeSignTest.ts @@ -6,7 +6,7 @@ import * as path from "path" import { CheckingWinPackager } from "../helpers/CheckingPackager" import { app, appThrows } from "../helpers/packTester" import { ExpectStatic } from "vitest" -import { ToolsetConfig } from "app-builder-lib/src/configuration" +import { ToolsetConfig } from "app-builder-lib" test("parseDn", ({ expect }) => { expect(parseDn("CN=7digital Limited, O=7digital Limited, L=London, C=GB")).toMatchSnapshot() @@ -85,7 +85,7 @@ for (const winCodeSign of winCodeSignVersions) { return Promise.resolve() })) test("certificateFile/password - sign as Promise", ({ expect }) => testCustomSign(expect, () => Promise.resolve())) - test("certificateFile/password - sign as function", async ({ expect }) => testCustomSign(expect, (await import("../helpers/customWindowsSign")).default)) + test("certificateFile/password - sign as function", async ({ expect }) => testCustomSign(expect, (await import("../helpers/customWindowsSign.js")).default)) test("certificateFile/password - sign as path", ({ expect }) => testCustomSign(expect, path.join(__dirname, "../helpers/customWindowsSign.mjs"))) test("custom sign if no code sign info", ({ expect }) => { diff --git a/test/src/windows/winPackagerTest.ts b/test/src/windows/winPackagerTest.ts index cddc4aa1ead..8d327a822ab 100644 --- a/test/src/windows/winPackagerTest.ts +++ b/test/src/windows/winPackagerTest.ts @@ -1,9 +1,9 @@ -import { ToolsetConfig } from "app-builder-lib/src/configuration" +import { ToolsetConfig } from "app-builder-lib" import { Arch, DIR_TARGET, Platform } from "electron-builder" import * as fs from "fs/promises" import * as path from "path" -import { CheckingWinPackager } from "../helpers/CheckingPackager" -import { app, appThrows, assertPack, platform } from "../helpers/packTester" +import { CheckingWinPackager } from "../helpers/CheckingPackager.js" +import { app, appThrows, assertPack, platform } from "../helpers/packTester.js" const winCodeSignVersions: ToolsetConfig["winCodeSign"][] = ["0.0.0", "1.0.0", "1.1.0"] From f2c0547d2fa63d42636713415d4100aceb443e00 Mon Sep 17 00:00:00 2001 From: Mike Maietta Date: Thu, 19 Feb 2026 11:51:16 -0800 Subject: [PATCH 24/61] chore: update snapshots due to transitive fixture dependency changed (#9605) --- .changeset/heavy-loops-sing.md | 5 + .../src/electron/ElectronFramework.ts | 31 +- test/snapshots/HoistedNodeModuleTest.js.snap | 1512 ++++++++--------- 3 files changed, 785 insertions(+), 763 deletions(-) create mode 100644 .changeset/heavy-loops-sing.md diff --git a/.changeset/heavy-loops-sing.md b/.changeset/heavy-loops-sing.md new file mode 100644 index 00000000000..aad2395eed7 --- /dev/null +++ b/.changeset/heavy-loops-sing.md @@ -0,0 +1,5 @@ +--- +"app-builder-lib": patch +--- + +fix: filter electronLanguages with startsWith filter for generous matching diff --git a/packages/app-builder-lib/src/electron/ElectronFramework.ts b/packages/app-builder-lib/src/electron/ElectronFramework.ts index e9c1cc5ada7..1607a9dcd56 100644 --- a/packages/app-builder-lib/src/electron/ElectronFramework.ts +++ b/packages/app-builder-lib/src/electron/ElectronFramework.ts @@ -92,26 +92,43 @@ async function removeUnusedLanguagesIfNeeded(options: BeforeCopyExtraFilesOption packager: { config, platformSpecificBuildOptions }, } = options const wantedLanguages = asArray(platformSpecificBuildOptions.electronLanguages || config.electronLanguages) + .map(it => it.trim().toLowerCase()) + .filter(it => it.length > 0) if (!wantedLanguages.length) { return } const { dirs, langFileExt } = getLocalesConfig(options) // noinspection SpellCheckingInspection - const deletedFiles = async (dir: string) => { - await asyncPool(MAX_FILE_REQUESTS, await readdir(dir), async file => { + const deleteNonMatchedLanguages: (dir: string) => Promise[] | undefined> = async (dir: string) => { + const files = await readdir(dir) + return files.map(async file => { if (path.extname(file) !== langFileExt) { return } - const language = path.basename(file, langFileExt) - if (!wantedLanguages.includes(language)) { - return rm(path.join(dir, file), { recursive: true, force: true }) + const language = path.basename(file, langFileExt).toLowerCase() + const isWantedLocale = wantedLanguages.some( + wantedLanguage => + // exact file + wantedLanguage === language || + // prefix (e.g. "en" matches "en-US") + wantedLanguage.startsWith(`${language}-`) || + // prefix (e.g. "en" matches "en_US") + wantedLanguage.startsWith(`${language}_`) + ) + if (isWantedLocale) { + return undefined } - return + return rm(path.join(dir, file), { recursive: true, force: true }) }) } - await Promise.all(dirs.map(deletedFiles)) + const allDeletedFiles = (await Promise.all(dirs.map(deleteNonMatchedLanguages))).flat().filter(it => it != null) + if (allDeletedFiles.length === 0) { + log.warn({ electronLanguages: wantedLanguages }, "no locales found matching wanted languages, skipping cleanup") + return + } + await asyncPool(MAX_FILE_REQUESTS, allDeletedFiles, it => it) function getLocalesConfig(options: BeforeCopyExtraFilesOptions) { const { appOutDir, packager } = options diff --git a/test/snapshots/HoistedNodeModuleTest.js.snap b/test/snapshots/HoistedNodeModuleTest.js.snap index 984739270c1..19c117948c6 100644 --- a/test/snapshots/HoistedNodeModuleTest.js.snap +++ b/test/snapshots/HoistedNodeModuleTest.js.snap @@ -1126,11 +1126,11 @@ exports[`node_module collectors > npm tar 2`] = ` { "files": { "index.html": { - "offset": 1613000, + "offset": 1693890, "size": 380, }, "index.js": { - "offset": 1613370, + "offset": 1694270, "size": 620, }, "node_modules": { @@ -1253,28 +1253,28 @@ exports[`node_module collectors > npm tar 2`] = ` }, "minipass": { "files": { - "LICENSE": { + "LICENSE.md": { "offset": 111060, - "size": 790, + "size": 1560, }, "dist": { "files": { "commonjs": { "files": { "index.d.ts.map": { - "offset": 111850, - "size": 8770, + "offset": 112620, + "size": 48070, }, "index.js": { - "offset": 120610, - "size": 33800, + "offset": 160680, + "size": 34050, }, "index.js.map": { - "offset": 154410, - "size": 66340, + "offset": 194730, + "size": 66970, }, "package.json": { - "offset": 220740, + "offset": 261690, "size": 30, }, }, @@ -1282,19 +1282,19 @@ exports[`node_module collectors > npm tar 2`] = ` "esm": { "files": { "index.d.ts.map": { - "offset": 220760, - "size": 8770, + "offset": 261720, + "size": 48070, }, "index.js": { - "offset": 229530, - "size": 33230, + "offset": 309780, + "size": 33330, }, "index.js.map": { - "offset": 262750, - "size": 66340, + "offset": 343100, + "size": 66920, }, "package.json": { - "offset": 329090, + "offset": 410020, "size": 30, }, }, @@ -1302,15 +1302,15 @@ exports[`node_module collectors > npm tar 2`] = ` }, }, "package.json": { - "offset": 329120, - "size": 1500, + "offset": 410040, + "size": 1470, }, }, }, "minizlib": { "files": { "LICENSE": { - "offset": 330610, + "offset": 411510, "size": 1340, }, "dist": { @@ -1318,31 +1318,31 @@ exports[`node_module collectors > npm tar 2`] = ` "commonjs": { "files": { "constants.d.ts.map": { - "offset": 331950, + "offset": 412850, "size": 150, }, "constants.js": { - "offset": 332100, + "offset": 412990, "size": 4300, }, "constants.js.map": { - "offset": 336400, + "offset": 417290, "size": 7300, }, "index.d.ts.map": { - "offset": 343690, + "offset": 424590, "size": 3130, }, "index.js": { - "offset": 346820, + "offset": 427710, "size": 14870, }, "index.js.map": { - "offset": 361690, + "offset": 442580, "size": 24390, }, "package.json": { - "offset": 386070, + "offset": 466970, "size": 30, }, }, @@ -1350,31 +1350,31 @@ exports[`node_module collectors > npm tar 2`] = ` "esm": { "files": { "constants.d.ts.map": { - "offset": 386100, + "offset": 466990, "size": 150, }, "constants.js": { - "offset": 386240, + "offset": 467140, "size": 4040, }, "constants.js.map": { - "offset": 390280, + "offset": 471170, "size": 7330, }, "index.d.ts.map": { - "offset": 397600, + "offset": 478500, "size": 3130, }, "index.js": { - "offset": 400720, + "offset": 481620, "size": 12250, }, "index.js.map": { - "offset": 412970, + "offset": 493860, "size": 24370, }, "package.json": { - "offset": 437340, + "offset": 518230, "size": 30, }, }, @@ -1382,7 +1382,7 @@ exports[`node_module collectors > npm tar 2`] = ` }, }, "package.json": { - "offset": 437360, + "offset": 518260, "size": 1390, }, }, @@ -1390,7 +1390,7 @@ exports[`node_module collectors > npm tar 2`] = ` "tar": { "files": { "LICENSE.md": { - "offset": 438740, + "offset": 519640, "size": 1560, }, "dist": { @@ -1398,355 +1398,355 @@ exports[`node_module collectors > npm tar 2`] = ` "commonjs": { "files": { "create.d.ts.map": { - "offset": 440290, + "offset": 521190, "size": 200, }, "create.js": { - "offset": 440480, + "offset": 521380, "size": 2580, }, "create.js.map": { - "offset": 443060, + "offset": 523960, "size": 5200, }, "cwd-error.d.ts.map": { - "offset": 448250, + "offset": 529150, "size": 290, }, "cwd-error.js": { - "offset": 448530, + "offset": 529430, "size": 440, }, "cwd-error.js.map": { - "offset": 448970, + "offset": 529870, "size": 740, }, "extract.d.ts.map": { - "offset": 449710, + "offset": 530600, "size": 200, }, "extract.js": { - "offset": 449900, + "offset": 530800, "size": 3450, }, "extract.js.map": { - "offset": 453350, + "offset": 534240, "size": 3550, }, "get-write-flag.d.ts.map": { - "offset": 456890, + "offset": 537790, "size": 170, }, "get-write-flag.js": { - "offset": 457060, + "offset": 537950, "size": 1310, }, "get-write-flag.js.map": { - "offset": 458360, + "offset": 539260, "size": 1910, }, "header.d.ts.map": { - "offset": 460270, + "offset": 541170, "size": 1830, }, "header.js": { - "offset": 462100, + "offset": 543000, "size": 12640, }, "header.js.map": { - "offset": 474740, + "offset": 555630, "size": 25090, }, "index.d.ts.map": { - "offset": 499820, + "offset": 580720, "size": 830, }, "index.js": { - "offset": 500650, + "offset": 581540, "size": 3140, }, "index.js.map": { - "offset": 503780, + "offset": 584680, "size": 1470, }, "large-numbers.d.ts.map": { - "offset": 505250, + "offset": 586150, "size": 240, }, "large-numbers.js": { - "offset": 505480, + "offset": 586380, "size": 2740, }, "large-numbers.js.map": { - "offset": 508220, + "offset": 589110, "size": 5930, }, "list.d.ts.map": { - "offset": 514150, + "offset": 595040, "size": 300, }, "list.js": { - "offset": 514440, + "offset": 595340, "size": 5440, }, "list.js.map": { - "offset": 519880, + "offset": 600780, "size": 7510, }, "make-command.d.ts.map": { - "offset": 527390, + "offset": 608280, "size": 4490, }, "make-command.js": { - "offset": 531880, + "offset": 612770, "size": 2050, }, "make-command.js.map": { - "offset": 533920, + "offset": 614820, "size": 9060, }, "mkdir.d.ts.map": { - "offset": 542970, + "offset": 623870, "size": 780, }, "mkdir.js": { - "offset": 543750, + "offset": 624650, "size": 6810, }, "mkdir.js.map": { - "offset": 550550, + "offset": 631450, "size": 13070, }, "mode-fix.d.ts.map": { - "offset": 563620, + "offset": 644520, "size": 190, }, "mode-fix.js": { - "offset": 563810, + "offset": 644710, "size": 880, }, "mode-fix.js.map": { - "offset": 564690, + "offset": 645580, "size": 1410, }, "normalize-unicode.d.ts.map": { - "offset": 566100, + "offset": 646990, "size": 190, }, "normalize-unicode.js": { - "offset": 566280, + "offset": 647180, "size": 1160, }, "normalize-unicode.js.map": { - "offset": 567440, + "offset": 648340, "size": 2050, }, "normalize-windows-path.d.ts.map": { - "offset": 569480, + "offset": 650380, "size": 190, }, "normalize-windows-path.js": { - "offset": 569660, + "offset": 650560, "size": 610, }, "normalize-windows-path.js.map": { - "offset": 570270, + "offset": 651160, "size": 950, }, "options.d.ts.map": { - "offset": 571210, + "offset": 652110, "size": 6190, }, "options.js": { - "offset": 577400, + "offset": 658290, "size": 2120, }, "options.js.map": { - "offset": 579510, + "offset": 660410, "size": 27230, }, "pack.d.ts.map": { - "offset": 606740, + "offset": 687640, "size": 3840, }, "pack.js": { - "offset": 610580, + "offset": 691480, "size": 16430, }, "pack.js.map": { - "offset": 627010, + "offset": 707900, "size": 30260, }, "package.json": { - "offset": 657260, + "offset": 738160, "size": 30, }, "parse.d.ts.map": { - "offset": 657290, + "offset": 738180, "size": 3730, }, "parse.js": { - "offset": 661010, + "offset": 741910, "size": 23040, }, "parse.js.map": { - "offset": 684050, + "offset": 764950, "size": 41960, }, "path-reservations.d.ts.map": { - "offset": 726010, + "offset": 806900, "size": 420, }, "path-reservations.js": { - "offset": 726430, + "offset": 807320, "size": 5720, }, "path-reservations.js.map": { - "offset": 732140, + "offset": 813040, "size": 10830, }, "pax.d.ts.map": { - "offset": 742970, + "offset": 823870, "size": 890, }, "pax.js": { - "offset": 743850, + "offset": 824750, "size": 4910, }, "pax.js.map": { - "offset": 748750, + "offset": 829650, "size": 10050, }, "read-entry.d.ts.map": { - "offset": 758800, + "offset": 839700, "size": 1180, }, "read-entry.js": { - "offset": 759980, + "offset": 840880, "size": 4460, }, "read-entry.js.map": { - "offset": 764440, + "offset": 845330, "size": 8160, }, "replace.d.ts.map": { - "offset": 772600, + "offset": 853490, "size": 150, }, "replace.js": { - "offset": 772740, + "offset": 853640, "size": 7880, }, "replace.js.map": { - "offset": 780620, + "offset": 861510, "size": 15110, }, "strip-absolute-path.d.ts.map": { - "offset": 795720, + "offset": 876620, "size": 190, }, "strip-absolute-path.js": { - "offset": 795910, + "offset": 876800, "size": 1240, }, "strip-absolute-path.js.map": { - "offset": 797140, + "offset": 878040, "size": 1920, }, "strip-trailing-slashes.d.ts.map": { - "offset": 799050, + "offset": 879950, "size": 190, }, "strip-trailing-slashes.js": { - "offset": 799240, + "offset": 880140, "size": 660, }, "strip-trailing-slashes.js.map": { - "offset": 799890, + "offset": 880790, "size": 1080, }, "symlink-error.d.ts.map": { - "offset": 800970, + "offset": 881860, "size": 330, }, "symlink-error.js": { - "offset": 801290, + "offset": 882180, "size": 530, }, "symlink-error.js.map": { - "offset": 801810, + "offset": 882710, "size": 850, }, "types.d.ts.map": { - "offset": 802660, + "offset": 883560, "size": 810, }, "types.js": { - "offset": 803470, + "offset": 884360, "size": 1480, }, "types.js.map": { - "offset": 804940, + "offset": 885840, "size": 3510, }, "unpack.d.ts.map": { - "offset": 808450, + "offset": 889340, "size": 3970, }, "unpack.js": { - "offset": 812410, + "offset": 893310, "size": 34880, }, "unpack.js.map": { - "offset": 847280, + "offset": 928180, "size": 60750, }, "update.d.ts.map": { - "offset": 908030, + "offset": 988930, "size": 140, }, "update.js": { - "offset": 908170, + "offset": 989070, "size": 1230, }, "update.js.map": { - "offset": 909400, + "offset": 990300, "size": 2260, }, "warn-method.d.ts.map": { - "offset": 911660, + "offset": 992560, "size": 1140, }, "warn-method.js": { - "offset": 912790, + "offset": 993690, "size": 930, }, "warn-method.js.map": { - "offset": 913720, + "offset": 994620, "size": 2610, }, "winchars.d.ts.map": { - "offset": 916330, + "offset": 997230, "size": 210, }, "winchars.js": { - "offset": 916540, + "offset": 997430, "size": 710, }, "winchars.js.map": { - "offset": 917240, + "offset": 998140, "size": 1670, }, "write-entry.d.ts.map": { - "offset": 918910, + "offset": 999810, "size": 4830, }, "write-entry.js": { - "offset": 923740, + "offset": 1004640, "size": 25370, }, "write-entry.js.map": { - "offset": 949110, + "offset": 1030010, "size": 48230, }, }, @@ -1754,355 +1754,355 @@ exports[`node_module collectors > npm tar 2`] = ` "esm": { "files": { "create.d.ts.map": { - "offset": 997340, + "offset": 1078230, "size": 200, }, "create.js": { - "offset": 997530, + "offset": 1078430, "size": 2170, }, "create.js.map": { - "offset": 999690, + "offset": 1080590, "size": 5330, }, "cwd-error.d.ts.map": { - "offset": 1005020, + "offset": 1085920, "size": 290, }, "cwd-error.js": { - "offset": 1005300, + "offset": 1086200, "size": 310, }, "cwd-error.js.map": { - "offset": 1005610, + "offset": 1086510, "size": 730, }, "extract.d.ts.map": { - "offset": 1006340, + "offset": 1087240, "size": 200, }, "extract.js": { - "offset": 1006530, + "offset": 1087430, "size": 1700, }, "extract.js.map": { - "offset": 1008230, + "offset": 1089120, "size": 3640, }, "get-write-flag.d.ts.map": { - "offset": 1011860, + "offset": 1092760, "size": 170, }, "get-write-flag.js": { - "offset": 1012030, + "offset": 1092930, "size": 1020, }, "get-write-flag.js.map": { - "offset": 1013050, + "offset": 1093940, "size": 1940, }, "header.d.ts.map": { - "offset": 1014980, + "offset": 1095870, "size": 1830, }, "header.js": { - "offset": 1016810, + "offset": 1097700, "size": 11100, }, "header.js.map": { - "offset": 1027900, + "offset": 1108800, "size": 25120, }, "index.d.ts.map": { - "offset": 1053020, + "offset": 1133920, "size": 830, }, "index.js": { - "offset": 1053850, + "offset": 1134740, "size": 650, }, "index.js.map": { - "offset": 1054490, + "offset": 1135390, "size": 1640, }, "large-numbers.d.ts.map": { - "offset": 1056130, + "offset": 1137020, "size": 240, }, "large-numbers.js": { - "offset": 1056360, + "offset": 1137250, "size": 2590, }, "large-numbers.js.map": { - "offset": 1058940, + "offset": 1139840, "size": 5910, }, "list.d.ts.map": { - "offset": 1064840, + "offset": 1145740, "size": 300, }, "list.js": { - "offset": 1065140, + "offset": 1146040, "size": 3450, }, "list.js.map": { - "offset": 1068580, + "offset": 1149480, "size": 7590, }, "make-command.d.ts.map": { - "offset": 1076170, + "offset": 1157070, "size": 4490, }, "make-command.js": { - "offset": 1080660, + "offset": 1161560, "size": 1870, }, "make-command.js.map": { - "offset": 1082530, + "offset": 1163430, "size": 9080, }, "mkdir.d.ts.map": { - "offset": 1091610, + "offset": 1172500, "size": 780, }, "mkdir.js": { - "offset": 1092380, + "offset": 1173280, "size": 5740, }, "mkdir.js.map": { - "offset": 1098120, + "offset": 1179020, "size": 13150, }, "mode-fix.d.ts.map": { - "offset": 1111270, + "offset": 1192160, "size": 190, }, "mode-fix.js": { - "offset": 1111460, + "offset": 1192350, "size": 760, }, "mode-fix.js.map": { - "offset": 1112210, + "offset": 1193110, "size": 1400, }, "normalize-unicode.d.ts.map": { - "offset": 1113600, + "offset": 1194500, "size": 190, }, "normalize-unicode.js": { - "offset": 1113790, + "offset": 1194680, "size": 1010, }, "normalize-unicode.js.map": { - "offset": 1114800, + "offset": 1195690, "size": 2030, }, "normalize-windows-path.d.ts.map": { - "offset": 1116820, + "offset": 1197710, "size": 190, }, "normalize-windows-path.js": { - "offset": 1117000, + "offset": 1197900, "size": 490, }, "normalize-windows-path.js.map": { - "offset": 1117490, + "offset": 1198390, "size": 950, }, "options.d.ts.map": { - "offset": 1118440, + "offset": 1199340, "size": 6190, }, "options.js": { - "offset": 1124630, + "offset": 1205530, "size": 1640, }, "options.js.map": { - "offset": 1126270, + "offset": 1207160, "size": 27120, }, "pack.d.ts.map": { - "offset": 1153380, + "offset": 1234280, "size": 3840, }, "pack.js": { - "offset": 1157220, + "offset": 1238120, "size": 14410, }, "pack.js.map": { - "offset": 1171620, + "offset": 1252520, "size": 30430, }, "package.json": { - "offset": 1202050, + "offset": 1282950, "size": 30, }, "parse.d.ts.map": { - "offset": 1202070, + "offset": 1282970, "size": 3730, }, "parse.js": { - "offset": 1205800, + "offset": 1286700, "size": 22800, }, "parse.js.map": { - "offset": 1228600, + "offset": 1309490, "size": 42140, }, "path-reservations.d.ts.map": { - "offset": 1270730, + "offset": 1351630, "size": 420, }, "path-reservations.js": { - "offset": 1271150, + "offset": 1352050, "size": 5450, }, "path-reservations.js.map": { - "offset": 1276600, + "offset": 1357490, "size": 10890, }, "pax.d.ts.map": { - "offset": 1287480, + "offset": 1368380, "size": 890, }, "pax.js": { - "offset": 1288360, + "offset": 1369260, "size": 4760, }, "pax.js.map": { - "offset": 1293120, + "offset": 1374020, "size": 10090, }, "read-entry.d.ts.map": { - "offset": 1303200, + "offset": 1384100, "size": 1180, }, "read-entry.js": { - "offset": 1304380, + "offset": 1385280, "size": 4180, }, "read-entry.js.map": { - "offset": 1308560, + "offset": 1389450, "size": 8190, }, "replace.d.ts.map": { - "offset": 1316750, + "offset": 1397640, "size": 150, }, "replace.js": { - "offset": 1316890, + "offset": 1397790, "size": 7210, }, "replace.js.map": { - "offset": 1324090, + "offset": 1404990, "size": 15300, }, "strip-absolute-path.d.ts.map": { - "offset": 1339390, + "offset": 1420290, "size": 190, }, "strip-absolute-path.js": { - "offset": 1339570, + "offset": 1420470, "size": 1060, }, "strip-absolute-path.js.map": { - "offset": 1340630, + "offset": 1421530, "size": 1930, }, "strip-trailing-slashes.d.ts.map": { - "offset": 1342560, + "offset": 1423450, "size": 190, }, "strip-trailing-slashes.js": { - "offset": 1342750, + "offset": 1423640, "size": 490, }, "strip-trailing-slashes.js.map": { - "offset": 1343230, + "offset": 1424130, "size": 1060, }, "symlink-error.d.ts.map": { - "offset": 1344290, + "offset": 1425190, "size": 330, }, "symlink-error.js": { - "offset": 1344610, + "offset": 1425510, "size": 390, }, "symlink-error.js.map": { - "offset": 1345000, + "offset": 1425900, "size": 840, }, "types.d.ts.map": { - "offset": 1345840, + "offset": 1426740, "size": 810, }, "types.js": { - "offset": 1346640, + "offset": 1427540, "size": 1280, }, "types.js.map": { - "offset": 1347920, + "offset": 1428820, "size": 3510, }, "unpack.d.ts.map": { - "offset": 1351420, + "offset": 1432320, "size": 3970, }, "unpack.js": { - "offset": 1355390, + "offset": 1436280, "size": 31840, }, "unpack.js.map": { - "offset": 1387220, + "offset": 1468120, "size": 60880, }, "update.d.ts.map": { - "offset": 1448100, + "offset": 1528990, "size": 140, }, "update.js": { - "offset": 1448240, + "offset": 1529130, "size": 1010, }, "update.js.map": { - "offset": 1449240, + "offset": 1530140, "size": 2330, }, "warn-method.d.ts.map": { - "offset": 1451570, + "offset": 1532460, "size": 1140, }, "warn-method.js": { - "offset": 1452700, + "offset": 1533600, "size": 800, }, "warn-method.js.map": { - "offset": 1453490, + "offset": 1534390, "size": 2600, }, "winchars.d.ts.map": { - "offset": 1456090, + "offset": 1536980, "size": 210, }, "winchars.js": { - "offset": 1456290, + "offset": 1537190, "size": 550, }, "winchars.js.map": { - "offset": 1456840, + "offset": 1537740, "size": 1650, }, "write-entry.d.ts.map": { - "offset": 1458480, + "offset": 1539380, "size": 4830, }, "write-entry.js": { - "offset": 1463310, + "offset": 1544210, "size": 22790, }, "write-entry.js.map": { - "offset": 1486090, + "offset": 1566990, "size": 48390, }, }, @@ -2110,7 +2110,7 @@ exports[`node_module collectors > npm tar 2`] = ` }, }, "package.json": { - "offset": 1534480, + "offset": 1615380, "size": 6620, }, }, @@ -2118,7 +2118,7 @@ exports[`node_module collectors > npm tar 2`] = ` "yallist": { "files": { "LICENSE.md": { - "offset": 1541090, + "offset": 1621990, "size": 1770, }, "dist": { @@ -2126,19 +2126,19 @@ exports[`node_module collectors > npm tar 2`] = ` "commonjs": { "files": { "index.d.ts.map": { - "offset": 1542850, + "offset": 1623750, "size": 2420, }, "index.js": { - "offset": 1545270, + "offset": 1626160, "size": 9920, }, "index.js.map": { - "offset": 1555180, + "offset": 1636080, "size": 22200, }, "package.json": { - "offset": 1577370, + "offset": 1658270, "size": 30, }, }, @@ -2146,19 +2146,19 @@ exports[`node_module collectors > npm tar 2`] = ` "esm": { "files": { "index.d.ts.map": { - "offset": 1577400, + "offset": 1658290, "size": 2420, }, "index.js": { - "offset": 1579810, + "offset": 1660710, "size": 9770, }, "index.js.map": { - "offset": 1589570, + "offset": 1670470, "size": 22180, }, "package.json": { - "offset": 1611740, + "offset": 1692640, "size": 30, }, }, @@ -2166,7 +2166,7 @@ exports[`node_module collectors > npm tar 2`] = ` }, }, "package.json": { - "offset": 1611770, + "offset": 1692660, "size": 1230, }, }, @@ -2174,7 +2174,7 @@ exports[`node_module collectors > npm tar 2`] = ` }, }, "package.json": { - "offset": 1613990, + "offset": 1694890, "size": 360, }, }, @@ -51016,11 +51016,11 @@ exports[`node_module collectors > yarn ms 2`] = ` { "files": { "index.html": { - "offset": 50811950, + "offset": 50814400, "size": 380, }, "index.js": { - "offset": 50812330, + "offset": 50814780, "size": 620, }, "node_modules": { @@ -72780,24 +72780,24 @@ exports[`node_module collectors > yarn ms 2`] = ` "files": { "acorn.d.mts": { "offset": 49686440, - "size": 21990, + "size": 22020, }, "acorn.js": { - "offset": 49708430, - "size": 241580, + "offset": 49708460, + "size": 242820, }, "acorn.mjs": { - "offset": 49950010, - "size": 229800, + "offset": 49951280, + "size": 230980, }, "bin.js": { - "offset": 50179800, + "offset": 50182250, "size": 3330, }, }, }, "package.json": { - "offset": 50183130, + "offset": 50185580, "size": 1000, }, }, @@ -72805,29 +72805,29 @@ exports[`node_module collectors > yarn ms 2`] = ` "acorn-import-attributes": { "files": { "LICENSE": { - "offset": 50184120, + "offset": 50186580, "size": 1070, }, "lib": { "files": { "index.js": { - "offset": 50185190, + "offset": 50187650, "size": 10490, }, "index.mjs": { - "offset": 50195680, + "offset": 50198130, "size": 9400, }, }, }, "package.json": { - "offset": 50205080, + "offset": 50207530, "size": 1010, }, "src": { "files": { "index.js": { - "offset": 50206080, + "offset": 50208530, "size": 9400, }, }, @@ -72838,29 +72838,29 @@ exports[`node_module collectors > yarn ms 2`] = ` "files": { "LICENSE": { "executable": true, - "offset": 50215480, + "offset": 50217930, "size": 1090, }, "dist": { "files": { "lexer.js": { - "offset": 50216560, + "offset": 50219020, "size": 33510, }, "lexer.mjs": { - "offset": 50250070, + "offset": 50252520, "size": 33480, }, }, }, "lexer.js": { "executable": true, - "offset": 50283550, + "offset": 50286000, "size": 53720, }, "package.json": { "executable": true, - "offset": 50337260, + "offset": 50339720, "size": 830, }, }, @@ -72868,29 +72868,29 @@ exports[`node_module collectors > yarn ms 2`] = ` "debug": { "files": { "LICENSE": { - "offset": 50338090, + "offset": 50340550, "size": 1140, }, "package.json": { - "offset": 50339230, + "offset": 50341680, "size": 910, }, "src": { "files": { "browser.js": { - "offset": 50340140, + "offset": 50342590, "size": 6110, }, "common.js": { - "offset": 50346240, + "offset": 50348700, "size": 6920, }, "index.js": { - "offset": 50353160, + "offset": 50355610, "size": 320, }, "node.js": { - "offset": 50353470, + "offset": 50355930, "size": 4730, }, }, @@ -72900,39 +72900,39 @@ exports[`node_module collectors > yarn ms 2`] = ` "deepmerge": { "files": { ".editorconfig": { - "offset": 50358200, + "offset": 50360650, "size": 120, }, ".eslintcache": { - "offset": 50358310, + "offset": 50360770, "size": 390, }, "dist": { "files": { "cjs.js": { - "offset": 50358700, + "offset": 50361150, "size": 4050, }, "umd.js": { - "offset": 50362740, + "offset": 50365200, "size": 4420, }, }, }, "index.js": { - "offset": 50367160, + "offset": 50369620, "size": 3300, }, "license.txt": { - "offset": 50370460, + "offset": 50372910, "size": 1120, }, "package.json": { - "offset": 50371570, + "offset": 50374030, "size": 730, }, "rollup.config.js": { - "offset": 50372300, + "offset": 50374760, "size": 350, }, }, @@ -72940,19 +72940,19 @@ exports[`node_module collectors > yarn ms 2`] = ` "electron-clear-data": { "files": { "LICENSE.md": { - "offset": 50372650, + "offset": 50375100, "size": 1060, }, "dist": { "files": { "main.js": { - "offset": 50373700, + "offset": 50376160, "size": 1740, }, }, }, "package.json": { - "offset": 50375440, + "offset": 50377890, "size": 960, }, }, @@ -72960,27 +72960,27 @@ exports[`node_module collectors > yarn ms 2`] = ` "forwarded-parse": { "files": { "LICENSE": { - "offset": 50376400, + "offset": 50378850, "size": 1060, }, "index.js": { - "offset": 50377450, + "offset": 50379910, "size": 4200, }, "lib": { "files": { "ascii.js": { - "offset": 50381650, + "offset": 50384100, "size": 2230, }, "error.js": { - "offset": 50383880, + "offset": 50386330, "size": 470, }, }, }, "package.json": { - "offset": 50384340, + "offset": 50386790, "size": 470, }, }, @@ -72988,23 +72988,23 @@ exports[`node_module collectors > yarn ms 2`] = ` "function-bind": { "files": { ".nycrc": { - "offset": 50384810, + "offset": 50387260, "size": 220, }, "LICENSE": { - "offset": 50385020, + "offset": 50387470, "size": 1060, }, "implementation.js": { - "offset": 50386070, + "offset": 50388530, "size": 2050, }, "index.js": { - "offset": 50388120, + "offset": 50390570, "size": 130, }, "package.json": { - "offset": 50388240, + "offset": 50390700, "size": 1330, }, }, @@ -73012,23 +73012,23 @@ exports[`node_module collectors > yarn ms 2`] = ` "hasown": { "files": { ".nycrc": { - "offset": 50389570, + "offset": 50392020, "size": 220, }, "LICENSE": { - "offset": 50389790, + "offset": 50392240, "size": 1090, }, "index.js": { - "offset": 50390870, + "offset": 50393320, "size": 210, }, "package.json": { - "offset": 50391080, + "offset": 50393530, "size": 1480, }, "tsconfig.json": { - "offset": 50392550, + "offset": 50395000, "size": 80, }, }, @@ -73036,79 +73036,79 @@ exports[`node_module collectors > yarn ms 2`] = ` "import-in-the-middle": { "files": { ".editorconfig": { - "offset": 50392620, + "offset": 50395080, "size": 220, }, ".eslintrc.yaml": { - "offset": 50392840, + "offset": 50395290, "size": 560, }, ".release-please-manifest.json": { - "offset": 50393390, + "offset": 50395840, "size": 20, }, "CODE_OF_CONDUCT.md": { - "offset": 50393410, + "offset": 50395860, "size": 150, }, "CONTRIBUTING.md": { - "offset": 50393560, + "offset": 50396010, "size": 1410, }, "GOVERNANCE.md": { - "offset": 50394970, + "offset": 50397420, "size": 1270, }, "LICENSE": { - "offset": 50396230, + "offset": 50398690, "size": 11360, }, "LICENSE-3rdparty.csv": { - "offset": 50407590, + "offset": 50410040, "size": 210, }, "NOTICE": { - "offset": 50407790, + "offset": 50410250, "size": 1500, }, "hook.js": { - "offset": 50409280, + "offset": 50411740, "size": 14810, }, "hook.mjs": { - "offset": 50424090, + "offset": 50426550, "size": 420, }, "index.js": { - "offset": 50424510, + "offset": 50426960, "size": 4720, }, "lib": { "files": { "get-esm-exports.js": { - "offset": 50429220, + "offset": 50431680, "size": 3450, }, "get-exports.js": { - "offset": 50432660, + "offset": 50435120, "size": 6410, }, "register.js": { - "offset": 50439070, + "offset": 50441520, "size": 1720, }, }, }, "package.json": { - "offset": 50440780, + "offset": 50443230, "size": 1400, }, "release-please-config.json": { - "offset": 50442180, + "offset": 50444630, "size": 300, }, "tsconfig.json": { - "offset": 50442480, + "offset": 50444930, "size": 310, }, }, @@ -73116,23 +73116,23 @@ exports[`node_module collectors > yarn ms 2`] = ` "is-core-module": { "files": { ".nycrc": { - "offset": 50442780, + "offset": 50445240, "size": 140, }, "LICENSE": { - "offset": 50442920, + "offset": 50445380, "size": 1080, }, "core.json": { - "offset": 50444000, + "offset": 50446450, "size": 5960, }, "index.js": { - "offset": 50449950, + "offset": 50452410, "size": 1770, }, "package.json": { - "offset": 50451720, + "offset": 50454170, "size": 1240, }, }, @@ -73140,15 +73140,15 @@ exports[`node_module collectors > yarn ms 2`] = ` "module-details-from-path": { "files": { "LICENSE": { - "offset": 50452960, + "offset": 50455410, "size": 1100, }, "index.js": { - "offset": 50454050, + "offset": 50456500, "size": 970, }, "package.json": { - "offset": 50455010, + "offset": 50457470, "size": 680, }, }, @@ -73156,15 +73156,15 @@ exports[`node_module collectors > yarn ms 2`] = ` "ms": { "files": { "index.js": { - "offset": 50455690, + "offset": 50458140, "size": 3030, }, "license.md": { - "offset": 50458710, + "offset": 50461160, "size": 1080, }, "package.json": { - "offset": 50459790, + "offset": 50462240, "size": 500, }, }, @@ -73172,15 +73172,15 @@ exports[`node_module collectors > yarn ms 2`] = ` "path-parse": { "files": { "LICENSE": { - "offset": 50460290, + "offset": 50462740, "size": 1080, }, "index.js": { - "offset": 50461370, + "offset": 50463820, "size": 1900, }, "package.json": { - "offset": 50463260, + "offset": 50465710, "size": 370, }, }, @@ -73188,15 +73188,15 @@ exports[`node_module collectors > yarn ms 2`] = ` "pg-int8": { "files": { "LICENSE": { - "offset": 50463620, + "offset": 50466080, "size": 750, }, "index.js": { - "offset": 50464370, + "offset": 50466830, "size": 1580, }, "package.json": { - "offset": 50465940, + "offset": 50468400, "size": 410, }, }, @@ -73204,81 +73204,81 @@ exports[`node_module collectors > yarn ms 2`] = ` "pg-protocol": { "files": { "LICENSE": { - "offset": 50466350, + "offset": 50468800, "size": 1080, }, "dist": { "files": { "b.js": { - "offset": 50467420, + "offset": 50469880, "size": 640, }, "b.js.map": { - "offset": 50468060, + "offset": 50470510, "size": 800, }, "buffer-reader.js": { - "offset": 50468850, + "offset": 50471300, "size": 1640, }, "buffer-reader.js.map": { - "offset": 50470490, + "offset": 50472940, "size": 1750, }, "buffer-writer.js": { - "offset": 50472240, + "offset": 50474690, "size": 2780, }, "buffer-writer.js.map": { - "offset": 50475010, + "offset": 50477460, "size": 3090, }, "inbound-parser.test.js": { - "offset": 50478100, + "offset": 50480550, "size": 19520, }, "inbound-parser.test.js.map": { - "offset": 50497610, + "offset": 50500060, "size": 14940, }, "index.js": { - "offset": 50512550, + "offset": 50515000, "size": 800, }, "index.js.map": { - "offset": 50513340, + "offset": 50515790, "size": 530, }, "messages.js": { - "offset": 50513860, + "offset": 50516320, "size": 4980, }, "messages.js.map": { - "offset": 50518840, + "offset": 50521290, "size": 3390, }, "outbound-serializer.test.js": { - "offset": 50522220, + "offset": 50524670, "size": 11070, }, "outbound-serializer.test.js.map": { - "offset": 50533280, + "offset": 50535740, "size": 10280, }, "parser.js": { - "offset": 50543560, + "offset": 50546010, "size": 13450, }, "parser.js.map": { - "offset": 50557000, + "offset": 50559460, "size": 10480, }, "serializer.js": { - "offset": 50567480, + "offset": 50569930, "size": 6940, }, "serializer.js.map": { - "offset": 50574410, + "offset": 50576870, "size": 7130, }, }, @@ -73286,61 +73286,61 @@ exports[`node_module collectors > yarn ms 2`] = ` "esm": { "files": { "index.js": { - "offset": 50581540, + "offset": 50583990, "size": 330, }, }, }, "package.json": { - "offset": 50581860, + "offset": 50584320, "size": 880, }, "src": { "files": { "b.ts": { - "offset": 50582730, + "offset": 50585190, "size": 480, }, "buffer-reader.ts": { - "offset": 50583210, + "offset": 50585660, "size": 1440, }, "buffer-writer.ts": { - "offset": 50584650, + "offset": 50587100, "size": 2510, }, "inbound-parser.test.ts": { - "offset": 50587150, + "offset": 50589600, "size": 15410, }, "index.ts": { - "offset": 50602560, + "offset": 50605010, "size": 450, }, "messages.ts": { - "offset": 50603000, + "offset": 50605450, "size": 6460, }, "outbound-serializer.test.ts": { - "offset": 50609460, + "offset": 50611910, "size": 8570, }, "parser.ts": { - "offset": 50618020, + "offset": 50620470, "size": 12990, }, "serializer.ts": { - "offset": 50631010, + "offset": 50633460, "size": 7200, }, "testing": { "files": { "buffer-list.ts": { - "offset": 50638200, + "offset": 50640650, "size": 1730, }, "test-buffers.ts": { - "offset": 50639930, + "offset": 50642380, "size": 4360, }, }, @@ -73352,39 +73352,39 @@ exports[`node_module collectors > yarn ms 2`] = ` "pg-types": { "files": { "Makefile": { - "offset": 50644290, + "offset": 50646740, "size": 240, }, "index.js": { - "offset": 50644520, + "offset": 50646970, "size": 1220, }, "index.test-d.ts": { - "offset": 50645730, + "offset": 50648190, "size": 760, }, "lib": { "files": { "arrayParser.js": { - "offset": 50646490, + "offset": 50648950, "size": 210, }, "binaryParsers.js": { - "offset": 50646700, + "offset": 50649150, "size": 6070, }, "builtins.js": { - "offset": 50652760, + "offset": 50655220, "size": 1570, }, "textParsers.js": { - "offset": 50654330, + "offset": 50656780, "size": 5370, }, }, }, "package.json": { - "offset": 50659700, + "offset": 50662150, "size": 710, }, }, @@ -73392,15 +73392,15 @@ exports[`node_module collectors > yarn ms 2`] = ` "postgres-array": { "files": { "index.js": { - "offset": 50660400, + "offset": 50662860, "size": 2320, }, "license": { - "offset": 50662720, + "offset": 50665180, "size": 1120, }, "package.json": { - "offset": 50663830, + "offset": 50666290, "size": 530, }, }, @@ -73408,15 +73408,15 @@ exports[`node_module collectors > yarn ms 2`] = ` "postgres-bytea": { "files": { "index.js": { - "offset": 50664360, + "offset": 50666810, "size": 870, }, "license": { - "offset": 50665220, + "offset": 50667680, "size": 1120, }, "package.json": { - "offset": 50666330, + "offset": 50668790, "size": 480, }, }, @@ -73424,15 +73424,15 @@ exports[`node_module collectors > yarn ms 2`] = ` "postgres-date": { "files": { "index.js": { - "offset": 50666810, + "offset": 50669270, "size": 2680, }, "license": { - "offset": 50669490, + "offset": 50671940, "size": 1120, }, "package.json": { - "offset": 50670600, + "offset": 50673050, "size": 490, }, }, @@ -73440,15 +73440,15 @@ exports[`node_module collectors > yarn ms 2`] = ` "postgres-interval": { "files": { "index.js": { - "offset": 50671090, + "offset": 50673540, "size": 3420, }, "license": { - "offset": 50674500, + "offset": 50676950, "size": 1120, }, "package.json": { - "offset": 50675610, + "offset": 50678060, "size": 540, }, }, @@ -73456,15 +73456,15 @@ exports[`node_module collectors > yarn ms 2`] = ` "require-in-the-middle": { "files": { "LICENSE": { - "offset": 50676150, + "offset": 50678600, "size": 1200, }, "index.js": { - "offset": 50677340, + "offset": 50679790, "size": 14150, }, "package.json": { - "offset": 50691490, + "offset": 50693940, "size": 970, }, }, @@ -73472,80 +73472,80 @@ exports[`node_module collectors > yarn ms 2`] = ` "resolve": { "files": { ".editorconfig": { - "offset": 50692460, + "offset": 50694910, "size": 610, }, "LICENSE": { - "offset": 50693060, + "offset": 50695520, "size": 1080, }, "SECURITY.md": { - "offset": 50694140, + "offset": 50696590, "size": 360, }, "async.js": { - "offset": 50694490, + "offset": 50696950, "size": 60, }, "bin": { "files": { "resolve": { "executable": true, - "offset": 50694550, + "offset": 50697000, "size": 1540, }, }, }, "index.js": { - "offset": 50696080, + "offset": 50698540, "size": 180, }, "lib": { "files": { "async.js": { - "offset": 50696260, + "offset": 50698710, "size": 11520, }, "caller.js": { - "offset": 50707770, + "offset": 50710230, "size": 360, }, "core.js": { - "offset": 50708130, + "offset": 50710580, "size": 310, }, "core.json": { - "offset": 50708440, + "offset": 50710890, "size": 5960, }, "homedir.js": { - "offset": 50714390, + "offset": 50716840, "size": 810, }, "is-core.js": { - "offset": 50715200, + "offset": 50717650, "size": 120, }, "node-modules-paths.js": { - "offset": 50715310, + "offset": 50717760, "size": 1370, }, "normalize-options.js": { - "offset": 50716680, + "offset": 50719130, "size": 350, }, "sync.js": { - "offset": 50717020, + "offset": 50719480, "size": 7150, }, }, }, "package.json": { - "offset": 50724170, + "offset": 50726620, "size": 1320, }, "sync.js": { - "offset": 50725490, + "offset": 50727940, "size": 60, }, }, @@ -73553,14 +73553,14 @@ exports[`node_module collectors > yarn ms 2`] = ` "semver": { "files": { "LICENSE": { - "offset": 50725540, + "offset": 50728000, "size": 770, }, "bin": { "files": { "semver.js": { "executable": true, - "offset": 50726310, + "offset": 50728760, "size": 4750, }, }, @@ -73568,19 +73568,19 @@ exports[`node_module collectors > yarn ms 2`] = ` "classes": { "files": { "comparator.js": { - "offset": 50731060, + "offset": 50733510, "size": 3640, }, "index.js": { - "offset": 50734690, + "offset": 50737140, "size": 150, }, "range.js": { - "offset": 50734830, + "offset": 50737280, "size": 14980, }, "semver.js": { - "offset": 50749810, + "offset": 50752260, "size": 9480, }, }, @@ -73588,191 +73588,191 @@ exports[`node_module collectors > yarn ms 2`] = ` "functions": { "files": { "clean.js": { - "offset": 50759290, + "offset": 50761740, "size": 210, }, "cmp.js": { - "offset": 50759490, + "offset": 50761950, "size": 970, }, "coerce.js": { - "offset": 50760450, + "offset": 50762910, "size": 2010, }, "compare-build.js": { - "offset": 50762460, + "offset": 50764910, "size": 290, }, "compare-loose.js": { - "offset": 50762740, + "offset": 50765190, "size": 140, }, "compare.js": { - "offset": 50762870, + "offset": 50765320, "size": 170, }, "diff.js": { - "offset": 50763040, + "offset": 50765490, "size": 1430, }, "eq.js": { - "offset": 50764460, + "offset": 50766920, "size": 130, }, "gt.js": { - "offset": 50764590, + "offset": 50767040, "size": 130, }, "gte.js": { - "offset": 50764710, + "offset": 50767170, "size": 130, }, "inc.js": { - "offset": 50764840, + "offset": 50767290, "size": 480, }, "lt.js": { - "offset": 50765320, + "offset": 50767770, "size": 130, }, "lte.js": { - "offset": 50765440, + "offset": 50767900, "size": 130, }, "major.js": { - "offset": 50765570, + "offset": 50768020, "size": 140, }, "minor.js": { - "offset": 50765710, + "offset": 50768160, "size": 140, }, "neq.js": { - "offset": 50765840, + "offset": 50768300, "size": 130, }, "parse.js": { - "offset": 50765970, + "offset": 50768420, "size": 340, }, "patch.js": { - "offset": 50766300, + "offset": 50768750, "size": 140, }, "prerelease.js": { - "offset": 50766440, + "offset": 50768890, "size": 240, }, "rcompare.js": { - "offset": 50766670, + "offset": 50769120, "size": 140, }, "rsort.js": { - "offset": 50766800, + "offset": 50769260, "size": 170, }, "satisfies.js": { - "offset": 50766970, + "offset": 50769420, "size": 250, }, "sort.js": { - "offset": 50767210, + "offset": 50769670, "size": 170, }, "valid.js": { - "offset": 50767370, + "offset": 50769830, "size": 180, }, }, }, "index.js": { - "offset": 50767550, + "offset": 50770000, "size": 2630, }, "internal": { "files": { "constants.js": { - "offset": 50770180, + "offset": 50772630, "size": 880, }, "debug.js": { - "offset": 50771050, + "offset": 50773510, "size": 240, }, "identifiers.js": { - "offset": 50771290, + "offset": 50773750, "size": 530, }, "lrucache.js": { - "offset": 50771820, + "offset": 50774270, "size": 810, }, "parse-options.js": { - "offset": 50772620, + "offset": 50775070, "size": 340, }, "re.js": { - "offset": 50772960, + "offset": 50775410, "size": 8140, }, }, }, "package.json": { - "offset": 50781100, + "offset": 50783550, "size": 1350, }, "preload.js": { - "offset": 50782450, + "offset": 50784900, "size": 90, }, "range.bnf": { - "offset": 50782530, + "offset": 50784980, "size": 620, }, "ranges": { "files": { "gtr.js": { - "offset": 50783150, + "offset": 50785600, "size": 240, }, "intersects.js": { - "offset": 50783380, + "offset": 50785830, "size": 230, }, "ltr.js": { - "offset": 50783600, + "offset": 50786060, "size": 230, }, "max-satisfying.js": { - "offset": 50783830, + "offset": 50786280, "size": 600, }, "min-satisfying.js": { - "offset": 50784420, + "offset": 50786880, "size": 600, }, "min-version.js": { - "offset": 50785010, + "offset": 50787470, "size": 1520, }, "outside.js": { - "offset": 50786530, + "offset": 50788980, "size": 2210, }, "simplify.js": { - "offset": 50788730, + "offset": 50791190, "size": 1360, }, "subset.js": { - "offset": 50790090, + "offset": 50792540, "size": 7530, }, "to-comparators.js": { - "offset": 50797610, + "offset": 50800060, "size": 290, }, "valid.js": { - "offset": 50797890, + "offset": 50800350, "size": 330, }, }, @@ -73782,15 +73782,15 @@ exports[`node_module collectors > yarn ms 2`] = ` "shimmer": { "files": { "LICENSE": { - "offset": 50798220, + "offset": 50800670, "size": 1330, }, "index.js": { - "offset": 50799550, + "offset": 50802000, "size": 2950, }, "package.json": { - "offset": 50802490, + "offset": 50804940, "size": 410, }, }, @@ -73798,23 +73798,23 @@ exports[`node_module collectors > yarn ms 2`] = ` "supports-preserve-symlinks-flag": { "files": { ".nycrc": { - "offset": 50802890, + "offset": 50805350, "size": 140, }, "LICENSE": { - "offset": 50803030, + "offset": 50805480, "size": 1070, }, "browser.js": { - "offset": 50804100, + "offset": 50806550, "size": 40, }, "index.js": { - "offset": 50804140, + "offset": 50806590, "size": 300, }, "package.json": { - "offset": 50804430, + "offset": 50806880, "size": 1270, }, }, @@ -73822,11 +73822,11 @@ exports[`node_module collectors > yarn ms 2`] = ` "undici-types": { "files": { "LICENSE": { - "offset": 50805700, + "offset": 50808150, "size": 1090, }, "package.json": { - "offset": 50806790, + "offset": 50809240, "size": 330, }, }, @@ -73834,23 +73834,23 @@ exports[`node_module collectors > yarn ms 2`] = ` "xtend": { "files": { "LICENSE": { - "offset": 50807110, + "offset": 50809560, "size": 1080, }, "immutable.js": { - "offset": 50808190, + "offset": 50810640, "size": 390, }, "mutable.js": { - "offset": 50808570, + "offset": 50811030, "size": 370, }, "package.json": { - "offset": 50808940, + "offset": 50811390, "size": 710, }, "test.js": { - "offset": 50809640, + "offset": 50812100, "size": 2310, }, }, @@ -73858,7 +73858,7 @@ exports[`node_module collectors > yarn ms 2`] = ` }, }, "package.json": { - "offset": 50812950, + "offset": 50815400, "size": 410, }, }, @@ -73875,11 +73875,11 @@ exports[`node_module collectors > yarn parse-asn1 2`] = ` { "files": { "index.html": { - "offset": 522080, + "offset": 522170, "size": 380, }, "index.js": { - "offset": 522460, + "offset": 522540, "size": 620, }, "node_modules": { @@ -74006,22 +74006,22 @@ exports[`node_module collectors > yarn parse-asn1 2`] = ` "files": { "bn.js": { "offset": 51820, - "size": 87780, + "size": 87870, }, }, }, "package.json": { - "offset": 139590, + "offset": 139680, "size": 490, }, "util": { "files": { "genCombMulTo.js": { - "offset": 140080, + "offset": 140160, "size": 2030, }, "genCombMulTo10.js": { - "offset": 142100, + "offset": 142180, "size": 2120, }, }, @@ -74031,87 +74031,87 @@ exports[`node_module collectors > yarn parse-asn1 2`] = ` "browserify-aes": { "files": { "LICENSE": { - "offset": 144220, + "offset": 144300, "size": 1100, }, "aes.js": { - "offset": 145310, + "offset": 145400, "size": 6250, }, "authCipher.js": { - "offset": 151560, + "offset": 151640, "size": 3020, }, "browser.js": { - "offset": 154580, + "offset": 154660, "size": 500, }, "decrypter.js": { - "offset": 155080, + "offset": 155160, "size": 3220, }, "encrypter.js": { - "offset": 158290, + "offset": 158380, "size": 2870, }, "ghash.js": { - "offset": 161160, + "offset": 161240, "size": 1960, }, "incr32.js": { - "offset": 163120, + "offset": 163200, "size": 260, }, "index.js": { - "offset": 163380, + "offset": 163460, "size": 360, }, "modes": { "files": { "cbc.js": { - "offset": 163730, + "offset": 163820, "size": 350, }, "cfb.js": { - "offset": 164070, + "offset": 164160, "size": 870, }, "cfb1.js": { - "offset": 164940, + "offset": 165030, "size": 920, }, "cfb8.js": { - "offset": 165860, + "offset": 165940, "size": 520, }, "ctr.js": { - "offset": 166380, + "offset": 166460, "size": 910, }, "ecb.js": { - "offset": 167290, + "offset": 167370, "size": 180, }, "index.js": { - "offset": 167460, + "offset": 167550, "size": 370, }, "list.json": { - "offset": 167830, + "offset": 167910, "size": 3090, }, "ofb.js": { - "offset": 170910, + "offset": 171000, "size": 420, }, }, }, "package.json": { - "offset": 171330, + "offset": 171410, "size": 700, }, "streamCipher.js": { - "offset": 172020, + "offset": 172110, "size": 660, }, }, @@ -74119,23 +74119,23 @@ exports[`node_module collectors > yarn parse-asn1 2`] = ` "buffer-xor": { "files": { "LICENSE": { - "offset": 172680, + "offset": 172770, "size": 1090, }, "index.js": { - "offset": 173760, + "offset": 173850, "size": 210, }, "inline.js": { - "offset": 173970, + "offset": 174050, "size": 40, }, "inplace.js": { - "offset": 174010, + "offset": 174090, "size": 190, }, "package.json": { - "offset": 174190, + "offset": 174280, "size": 430, }, }, @@ -74143,27 +74143,27 @@ exports[`node_module collectors > yarn parse-asn1 2`] = ` "call-bind": { "files": { ".eslintignore": { - "offset": 174610, + "offset": 174700, "size": 10, }, ".nycrc": { - "offset": 174620, + "offset": 174710, "size": 140, }, "LICENSE": { - "offset": 174760, + "offset": 174850, "size": 1080, }, "callBound.js": { - "offset": 175830, + "offset": 175920, "size": 420, }, "index.js": { - "offset": 176250, + "offset": 176330, "size": 650, }, "package.json": { - "offset": 176890, + "offset": 176970, "size": 1510, }, }, @@ -74171,43 +74171,43 @@ exports[`node_module collectors > yarn parse-asn1 2`] = ` "call-bind-apply-helpers": { "files": { ".nycrc": { - "offset": 178390, + "offset": 178480, "size": 140, }, "LICENSE": { - "offset": 178530, + "offset": 178620, "size": 1080, }, "actualApply.js": { - "offset": 179600, + "offset": 179690, "size": 280, }, "applyBind.js": { - "offset": 179880, + "offset": 179970, "size": 270, }, "functionApply.js": { - "offset": 180150, + "offset": 180230, "size": 100, }, "functionCall.js": { - "offset": 180250, + "offset": 180330, "size": 100, }, "index.js": { - "offset": 180340, + "offset": 180430, "size": 520, }, "package.json": { - "offset": 180860, + "offset": 180940, "size": 1850, }, "reflectApply.js": { - "offset": 182700, + "offset": 182780, "size": 140, }, "tsconfig.json": { - "offset": 182830, + "offset": 182910, "size": 120, }, }, @@ -74215,23 +74215,23 @@ exports[`node_module collectors > yarn parse-asn1 2`] = ` "call-bound": { "files": { ".nycrc": { - "offset": 182940, + "offset": 183030, "size": 140, }, "LICENSE": { - "offset": 183080, + "offset": 183170, "size": 1080, }, "index.js": { - "offset": 184150, + "offset": 184240, "size": 690, }, "package.json": { - "offset": 184840, + "offset": 184930, "size": 1690, }, "tsconfig.json": { - "offset": 186530, + "offset": 186610, "size": 140, }, }, @@ -74239,15 +74239,15 @@ exports[`node_module collectors > yarn parse-asn1 2`] = ` "cipher-base": { "files": { "LICENSE": { - "offset": 186670, + "offset": 186750, "size": 1100, }, "index.js": { - "offset": 187760, + "offset": 187850, "size": 2270, }, "package.json": { - "offset": 190030, + "offset": 190120, "size": 1080, }, }, @@ -74255,19 +74255,19 @@ exports[`node_module collectors > yarn parse-asn1 2`] = ` "core-util-is": { "files": { "LICENSE": { - "offset": 191110, + "offset": 191190, "size": 1080, }, "lib": { "files": { "util.js": { - "offset": 192180, + "offset": 192270, "size": 3040, }, }, }, "package.json": { - "offset": 195220, + "offset": 195310, "size": 410, }, }, @@ -74275,27 +74275,27 @@ exports[`node_module collectors > yarn parse-asn1 2`] = ` "create-hash": { "files": { "LICENSE": { - "offset": 195620, + "offset": 195710, "size": 1100, }, "browser.js": { - "offset": 196720, + "offset": 196800, "size": 630, }, "index.js": { - "offset": 197350, + "offset": 197430, "size": 50, }, "md5.js": { - "offset": 197390, + "offset": 197480, "size": 120, }, "package.json": { - "offset": 197500, + "offset": 197590, "size": 680, }, "test.js": { - "offset": 198170, + "offset": 198260, "size": 1470, }, }, @@ -74303,23 +74303,23 @@ exports[`node_module collectors > yarn parse-asn1 2`] = ` "create-hmac": { "files": { "LICENSE": { - "offset": 199640, + "offset": 199720, "size": 1100, }, "browser.js": { - "offset": 200730, + "offset": 200820, "size": 1590, }, "index.js": { - "offset": 202320, + "offset": 202400, "size": 50, }, "legacy.js": { - "offset": 202360, + "offset": 202450, "size": 970, }, "package.json": { - "offset": 203330, + "offset": 203420, "size": 760, }, }, @@ -74327,23 +74327,23 @@ exports[`node_module collectors > yarn parse-asn1 2`] = ` "define-data-property": { "files": { ".nycrc": { - "offset": 204090, + "offset": 204170, "size": 220, }, "LICENSE": { - "offset": 204300, + "offset": 204390, "size": 1080, }, "index.js": { - "offset": 205370, + "offset": 205460, "size": 2340, }, "package.json": { - "offset": 207710, + "offset": 207790, "size": 2080, }, "tsconfig.json": { - "offset": 209780, + "offset": 209870, "size": 4890, }, }, @@ -74351,27 +74351,27 @@ exports[`node_module collectors > yarn parse-asn1 2`] = ` "dunder-proto": { "files": { ".nycrc": { - "offset": 214660, + "offset": 214750, "size": 220, }, "LICENSE": { - "offset": 214880, + "offset": 214960, "size": 1080, }, "get.js": { - "offset": 215950, + "offset": 216040, "size": 980, }, "package.json": { - "offset": 216930, + "offset": 217020, "size": 1450, }, "set.js": { - "offset": 218380, + "offset": 218470, "size": 1280, }, "tsconfig.json": { - "offset": 219660, + "offset": 219740, "size": 120, }, }, @@ -74379,23 +74379,23 @@ exports[`node_module collectors > yarn parse-asn1 2`] = ` "es-define-property": { "files": { ".nycrc": { - "offset": 219780, + "offset": 219860, "size": 140, }, "LICENSE": { - "offset": 219910, + "offset": 220000, "size": 1080, }, "index.js": { - "offset": 220990, + "offset": 221070, "size": 290, }, "package.json": { - "offset": 221270, + "offset": 221360, "size": 1340, }, "tsconfig.json": { - "offset": 222610, + "offset": 222700, "size": 140, }, }, @@ -74403,43 +74403,43 @@ exports[`node_module collectors > yarn parse-asn1 2`] = ` "es-errors": { "files": { "LICENSE": { - "offset": 222750, + "offset": 222830, "size": 1080, }, "eval.js": { - "offset": 223820, + "offset": 223900, "size": 80, }, "index.js": { - "offset": 223900, + "offset": 223980, "size": 70, }, "package.json": { - "offset": 223960, + "offset": 224050, "size": 1340, }, "range.js": { - "offset": 225300, + "offset": 225380, "size": 80, }, "ref.js": { - "offset": 225370, + "offset": 225460, "size": 80, }, "syntax.js": { - "offset": 225450, + "offset": 225540, "size": 80, }, "tsconfig.json": { - "offset": 225530, + "offset": 225610, "size": 3170, }, "type.js": { - "offset": 228700, + "offset": 228780, "size": 80, }, "uri.js": { - "offset": 228780, + "offset": 228860, "size": 80, }, }, @@ -74447,31 +74447,31 @@ exports[`node_module collectors > yarn parse-asn1 2`] = ` "es-object-atoms": { "files": { "LICENSE": { - "offset": 228850, + "offset": 228930, "size": 1080, }, "RequireObjectCoercible.js": { - "offset": 229920, + "offset": 230000, "size": 320, }, "ToObject.js": { - "offset": 230230, + "offset": 230320, "size": 250, }, "index.js": { - "offset": 230480, + "offset": 230570, "size": 70, }, "isObject.js": { - "offset": 230550, + "offset": 230630, "size": 170, }, "package.json": { - "offset": 230710, + "offset": 230790, "size": 1430, }, "tsconfig.json": { - "offset": 232130, + "offset": 232220, "size": 90, }, }, @@ -74479,15 +74479,15 @@ exports[`node_module collectors > yarn parse-asn1 2`] = ` "evp_bytestokey": { "files": { "LICENSE": { - "offset": 232210, + "offset": 232300, "size": 1100, }, "index.js": { - "offset": 233310, + "offset": 233400, "size": 1200, }, "package.json": { - "offset": 234500, + "offset": 234590, "size": 680, }, }, @@ -74495,27 +74495,27 @@ exports[`node_module collectors > yarn parse-asn1 2`] = ` "for-each": { "files": { ".editorconfig": { - "offset": 235180, + "offset": 235260, "size": 290, }, ".nycrc": { - "offset": 235460, + "offset": 235550, "size": 130, }, "LICENSE": { - "offset": 235590, + "offset": 235680, "size": 1080, }, "index.js": { - "offset": 236670, + "offset": 236750, "size": 2380, }, "package.json": { - "offset": 239040, + "offset": 239130, "size": 1150, }, "tsconfig.json": { - "offset": 240190, + "offset": 240270, "size": 100, }, }, @@ -74523,23 +74523,23 @@ exports[`node_module collectors > yarn parse-asn1 2`] = ` "function-bind": { "files": { ".nycrc": { - "offset": 240280, + "offset": 240370, "size": 220, }, "LICENSE": { - "offset": 240500, + "offset": 240580, "size": 1060, }, "implementation.js": { - "offset": 241550, + "offset": 241640, "size": 2050, }, "index.js": { - "offset": 243590, + "offset": 243680, "size": 130, }, "package.json": { - "offset": 243720, + "offset": 243800, "size": 1330, }, }, @@ -74547,19 +74547,19 @@ exports[`node_module collectors > yarn parse-asn1 2`] = ` "get-intrinsic": { "files": { ".nycrc": { - "offset": 245050, + "offset": 245130, "size": 140, }, "LICENSE": { - "offset": 245190, + "offset": 245270, "size": 1080, }, "index.js": { - "offset": 246260, + "offset": 246340, "size": 14440, }, "package.json": { - "offset": 260700, + "offset": 260780, "size": 1870, }, }, @@ -74567,31 +74567,31 @@ exports[`node_module collectors > yarn parse-asn1 2`] = ` "get-proto": { "files": { ".nycrc": { - "offset": 262560, + "offset": 262650, "size": 140, }, "LICENSE": { - "offset": 262700, + "offset": 262790, "size": 1080, }, "Object.getPrototypeOf.js": { - "offset": 263770, + "offset": 263860, "size": 160, }, "Reflect.getPrototypeOf.js": { - "offset": 263930, + "offset": 264010, "size": 150, }, "index.js": { - "offset": 264080, + "offset": 264160, "size": 830, }, "package.json": { - "offset": 264900, + "offset": 264980, "size": 1430, }, "tsconfig.json": { - "offset": 266320, + "offset": 266410, "size": 120, }, }, @@ -74599,23 +74599,23 @@ exports[`node_module collectors > yarn parse-asn1 2`] = ` "gopd": { "files": { "LICENSE": { - "offset": 266440, + "offset": 266530, "size": 1080, }, "gOPD.js": { - "offset": 267510, + "offset": 267600, "size": 100, }, "index.js": { - "offset": 267610, + "offset": 267690, "size": 210, }, "package.json": { - "offset": 267820, + "offset": 267900, "size": 1310, }, "tsconfig.json": { - "offset": 269130, + "offset": 269210, "size": 120, }, }, @@ -74623,19 +74623,19 @@ exports[`node_module collectors > yarn parse-asn1 2`] = ` "has-property-descriptors": { "files": { ".nycrc": { - "offset": 269240, + "offset": 269330, "size": 140, }, "LICENSE": { - "offset": 269380, + "offset": 269460, "size": 1070, }, "index.js": { - "offset": 270450, + "offset": 270530, "size": 590, }, "package.json": { - "offset": 271040, + "offset": 271120, "size": 1330, }, }, @@ -74643,27 +74643,27 @@ exports[`node_module collectors > yarn parse-asn1 2`] = ` "has-symbols": { "files": { ".nycrc": { - "offset": 272360, + "offset": 272450, "size": 140, }, "LICENSE": { - "offset": 272500, + "offset": 272590, "size": 1080, }, "index.js": { - "offset": 273570, + "offset": 273660, "size": 450, }, "package.json": { - "offset": 274020, + "offset": 274110, "size": 1800, }, "shams.js": { - "offset": 275810, + "offset": 275900, "size": 1930, }, "tsconfig.json": { - "offset": 277740, + "offset": 277820, "size": 150, }, }, @@ -74671,27 +74671,27 @@ exports[`node_module collectors > yarn parse-asn1 2`] = ` "has-tostringtag": { "files": { ".nycrc": { - "offset": 277880, + "offset": 277960, "size": 220, }, "LICENSE": { - "offset": 278090, + "offset": 278180, "size": 1070, }, "index.js": { - "offset": 279160, + "offset": 279250, "size": 200, }, "package.json": { - "offset": 279360, + "offset": 279440, "size": 1700, }, "shams.js": { - "offset": 281060, + "offset": 281140, "size": 190, }, "tsconfig.json": { - "offset": 281240, + "offset": 281330, "size": 3620, }, }, @@ -74699,19 +74699,19 @@ exports[`node_module collectors > yarn parse-asn1 2`] = ` "hash-base": { "files": { "LICENSE": { - "offset": 284860, + "offset": 284940, "size": 1090, }, "index.js": { - "offset": 285940, + "offset": 286020, "size": 2290, }, "package.json": { - "offset": 288220, + "offset": 288300, "size": 1110, }, "to-buffer.js": { - "offset": 289330, + "offset": 289410, "size": 630, }, }, @@ -74719,23 +74719,23 @@ exports[`node_module collectors > yarn parse-asn1 2`] = ` "hasown": { "files": { ".nycrc": { - "offset": 289950, + "offset": 290040, "size": 220, }, "LICENSE": { - "offset": 290170, + "offset": 290250, "size": 1090, }, "index.js": { - "offset": 291250, + "offset": 291330, "size": 210, }, "package.json": { - "offset": 291460, + "offset": 291540, "size": 1480, }, "tsconfig.json": { - "offset": 292930, + "offset": 293010, "size": 80, }, }, @@ -74743,19 +74743,19 @@ exports[`node_module collectors > yarn parse-asn1 2`] = ` "inherits": { "files": { "LICENSE": { - "offset": 293000, + "offset": 293090, "size": 750, }, "inherits.js": { - "offset": 293750, + "offset": 293840, "size": 250, }, "inherits_browser.js": { - "offset": 294000, + "offset": 294090, "size": 760, }, "package.json": { - "offset": 294760, + "offset": 294840, "size": 400, }, }, @@ -74763,23 +74763,23 @@ exports[`node_module collectors > yarn parse-asn1 2`] = ` "is-callable": { "files": { ".editorconfig": { - "offset": 295150, + "offset": 295230, "size": 460, }, ".nycrc": { - "offset": 295610, + "offset": 295690, "size": 140, }, "LICENSE": { - "offset": 295750, + "offset": 295830, "size": 1090, }, "index.js": { - "offset": 296830, + "offset": 296910, "size": 3230, }, "package.json": { - "offset": 300050, + "offset": 300140, "size": 1840, }, }, @@ -74787,27 +74787,27 @@ exports[`node_module collectors > yarn parse-asn1 2`] = ` "is-typed-array": { "files": { ".editorconfig": { - "offset": 301890, + "offset": 301970, "size": 290, }, ".nycrc": { - "offset": 302170, + "offset": 302260, "size": 140, }, "LICENSE": { - "offset": 302310, + "offset": 302400, "size": 1090, }, "index.js": { - "offset": 303400, + "offset": 303480, "size": 180, }, "package.json": { - "offset": 303580, + "offset": 303660, "size": 2310, }, "tsconfig.json": { - "offset": 305880, + "offset": 305970, "size": 70, }, }, @@ -74815,15 +74815,15 @@ exports[`node_module collectors > yarn parse-asn1 2`] = ` "isarray": { "files": { "LICENSE": { - "offset": 305950, + "offset": 306030, "size": 1100, }, "index.js": { - "offset": 307050, + "offset": 307130, "size": 140, }, "package.json": { - "offset": 307180, + "offset": 307260, "size": 880, }, }, @@ -74831,79 +74831,79 @@ exports[`node_module collectors > yarn parse-asn1 2`] = ` "math-intrinsics": { "files": { "LICENSE": { - "offset": 308060, + "offset": 308140, "size": 1080, }, "abs.js": { - "offset": 309130, + "offset": 309220, "size": 80, }, "constants": { "files": { "maxArrayLength.js": { - "offset": 309200, + "offset": 309290, "size": 110, }, "maxSafeInteger.js": { - "offset": 309310, + "offset": 309400, "size": 240, }, "maxValue.js": { - "offset": 309550, + "offset": 309630, "size": 200, }, }, }, "floor.js": { - "offset": 309740, + "offset": 309830, "size": 80, }, "isFinite.js": { - "offset": 309820, + "offset": 309900, "size": 270, }, "isInteger.js": { - "offset": 310080, + "offset": 310170, "size": 410, }, "isNaN.js": { - "offset": 310490, + "offset": 310580, "size": 130, }, "isNegativeZero.js": { - "offset": 310610, + "offset": 310700, "size": 150, }, "max.js": { - "offset": 310760, + "offset": 310840, "size": 80, }, "min.js": { - "offset": 310830, + "offset": 310910, "size": 80, }, "mod.js": { - "offset": 310900, + "offset": 310990, "size": 220, }, "package.json": { - "offset": 311120, + "offset": 311200, "size": 1940, }, "pow.js": { - "offset": 313050, + "offset": 313140, "size": 80, }, "round.js": { - "offset": 313130, + "offset": 313210, "size": 80, }, "sign.js": { - "offset": 313200, + "offset": 313290, "size": 220, }, "tsconfig.json": { - "offset": 313420, + "offset": 313500, "size": 40, }, }, @@ -74911,15 +74911,15 @@ exports[`node_module collectors > yarn parse-asn1 2`] = ` "md5.js": { "files": { "LICENSE": { - "offset": 313450, + "offset": 313540, "size": 1090, }, "index.js": { - "offset": 314530, + "offset": 314620, "size": 4610, }, "package.json": { - "offset": 319140, + "offset": 319220, "size": 630, }, }, @@ -74927,15 +74927,15 @@ exports[`node_module collectors > yarn parse-asn1 2`] = ` "minimalistic-assert": { "files": { "LICENSE": { - "offset": 319770, + "offset": 319850, "size": 730, }, "index.js": { - "offset": 320500, + "offset": 320580, "size": 260, }, "package.json": { - "offset": 320750, + "offset": 320830, "size": 350, }, }, @@ -74943,27 +74943,27 @@ exports[`node_module collectors > yarn parse-asn1 2`] = ` "parse-asn1": { "files": { "LICENSE": { - "offset": 321090, + "offset": 321170, "size": 750, }, "aesid.json": { - "offset": 321840, + "offset": 321920, "size": 510, }, "asn1.js": { - "offset": 322340, + "offset": 322420, "size": 3170, }, "certificate.js": { - "offset": 325500, + "offset": 325590, "size": 2380, }, "fixProc.js": { - "offset": 327880, + "offset": 327970, "size": 1240, }, "index.js": { - "offset": 329120, + "offset": 329200, "size": 3510, }, "node_modules": { @@ -74971,15 +74971,15 @@ exports[`node_module collectors > yarn parse-asn1 2`] = ` "hash-base": { "files": { "LICENSE": { - "offset": 333690, + "offset": 333780, "size": 1090, }, "index.js": { - "offset": 334780, + "offset": 334860, "size": 4050, }, "package.json": { - "offset": 338820, + "offset": 338910, "size": 650, }, }, @@ -74987,7 +74987,7 @@ exports[`node_module collectors > yarn parse-asn1 2`] = ` }, }, "package.json": { - "offset": 332620, + "offset": 332700, "size": 1080, }, }, @@ -74995,51 +74995,51 @@ exports[`node_module collectors > yarn parse-asn1 2`] = ` "pbkdf2": { "files": { ".nycrc": { - "offset": 339470, + "offset": 339550, "size": 150, }, "LICENSE": { - "offset": 339620, + "offset": 339700, "size": 1090, }, "browser.js": { - "offset": 340700, + "offset": 340780, "size": 100, }, "index.js": { - "offset": 340800, + "offset": 340880, "size": 1360, }, "lib": { "files": { "async.js": { - "offset": 342150, + "offset": 342240, "size": 2940, }, "default-encoding.js": { - "offset": 345090, + "offset": 345180, "size": 410, }, "precondition.js": { - "offset": 345500, + "offset": 345580, "size": 570, }, "sync-browser.js": { - "offset": 346060, + "offset": 346140, "size": 2960, }, "sync.js": { - "offset": 349010, + "offset": 349090, "size": 1650, }, "to-buffer.js": { - "offset": 350660, + "offset": 350740, "size": 620, }, }, }, "package.json": { - "offset": 351270, + "offset": 351350, "size": 1390, }, }, @@ -75047,19 +75047,19 @@ exports[`node_module collectors > yarn parse-asn1 2`] = ` "possible-typed-array-names": { "files": { "LICENSE": { - "offset": 352650, + "offset": 352740, "size": 1080, }, "index.js": { - "offset": 353730, + "offset": 353810, "size": 270, }, "package.json": { - "offset": 353990, + "offset": 354070, "size": 1300, }, "tsconfig.json": { - "offset": 355280, + "offset": 355360, "size": 120, }, }, @@ -75067,15 +75067,15 @@ exports[`node_module collectors > yarn parse-asn1 2`] = ` "process-nextick-args": { "files": { "index.js": { - "offset": 355400, + "offset": 355480, "size": 1090, }, "license.md": { - "offset": 356480, + "offset": 356560, "size": 1070, }, "package.json": { - "offset": 357540, + "offset": 357630, "size": 440, }, }, @@ -75083,15 +75083,15 @@ exports[`node_module collectors > yarn parse-asn1 2`] = ` "readable-stream": { "files": { "CONTRIBUTING.md": { - "offset": 357980, + "offset": 358070, "size": 1450, }, "GOVERNANCE.md": { - "offset": 359430, + "offset": 359510, "size": 5550, }, "LICENSE": { - "offset": 364980, + "offset": 365060, "size": 2340, }, "doc": { @@ -75099,7 +75099,7 @@ exports[`node_module collectors > yarn parse-asn1 2`] = ` "wg-meetings": { "files": { "2015-01-30.md": { - "offset": 367310, + "offset": 367400, "size": 2280, }, }, @@ -75107,33 +75107,33 @@ exports[`node_module collectors > yarn parse-asn1 2`] = ` }, }, "duplex-browser.js": { - "offset": 369590, + "offset": 369680, "size": 60, }, "duplex.js": { - "offset": 369650, + "offset": 369730, "size": 50, }, "lib": { "files": { "_stream_duplex.js": { - "offset": 369690, + "offset": 369780, "size": 4020, }, "_stream_passthrough.js": { - "offset": 373710, + "offset": 373790, "size": 1760, }, "_stream_readable.js": { - "offset": 375460, + "offset": 375540, "size": 31430, }, "_stream_transform.js": { - "offset": 406890, + "offset": 406970, "size": 7750, }, "_stream_writable.js": { - "offset": 414630, + "offset": 414710, "size": 20340, }, "internal": { @@ -75141,19 +75141,19 @@ exports[`node_module collectors > yarn parse-asn1 2`] = ` "streams": { "files": { "BufferList.js": { - "offset": 434960, + "offset": 435050, "size": 2010, }, "destroy.js": { - "offset": 436970, + "offset": 437060, "size": 2180, }, "stream-browser.js": { - "offset": 439150, + "offset": 439230, "size": 50, }, "stream.js": { - "offset": 439200, + "offset": 439280, "size": 40, }, }, @@ -75167,23 +75167,23 @@ exports[`node_module collectors > yarn parse-asn1 2`] = ` "isarray": { "files": { "Makefile": { - "offset": 441700, + "offset": 441780, "size": 60, }, "component.json": { - "offset": 441750, + "offset": 441840, "size": 470, }, "index.js": { - "offset": 442220, + "offset": 442310, "size": 140, }, "package.json": { - "offset": 442360, + "offset": 442440, "size": 850, }, "test.js": { - "offset": 443200, + "offset": 443290, "size": 320, }, }, @@ -75191,15 +75191,15 @@ exports[`node_module collectors > yarn parse-asn1 2`] = ` "safe-buffer": { "files": { "LICENSE": { - "offset": 443520, + "offset": 443610, "size": 1090, }, "index.js": { - "offset": 444600, + "offset": 444690, "size": 1530, }, "package.json": { - "offset": 446130, + "offset": 446220, "size": 500, }, }, @@ -75207,31 +75207,31 @@ exports[`node_module collectors > yarn parse-asn1 2`] = ` }, }, "package.json": { - "offset": 439230, + "offset": 439320, "size": 970, }, "passthrough.js": { - "offset": 440190, + "offset": 440280, "size": 60, }, "readable-browser.js": { - "offset": 440240, + "offset": 440330, "size": 360, }, "readable.js": { - "offset": 440590, + "offset": 440680, "size": 780, }, "transform.js": { - "offset": 441370, + "offset": 441450, "size": 50, }, "writable-browser.js": { - "offset": 441410, + "offset": 441500, "size": 60, }, "writable.js": { - "offset": 441470, + "offset": 441550, "size": 230, }, }, @@ -75239,15 +75239,15 @@ exports[`node_module collectors > yarn parse-asn1 2`] = ` "ripemd160": { "files": { "LICENSE": { - "offset": 446630, + "offset": 446720, "size": 1090, }, "index.js": { - "offset": 447720, + "offset": 447800, "size": 4580, }, "package.json": { - "offset": 452290, + "offset": 452380, "size": 980, }, }, @@ -75255,15 +75255,15 @@ exports[`node_module collectors > yarn parse-asn1 2`] = ` "safe-buffer": { "files": { "LICENSE": { - "offset": 453260, + "offset": 453350, "size": 1090, }, "index.js": { - "offset": 454340, + "offset": 454430, "size": 1670, }, "package.json": { - "offset": 456010, + "offset": 456100, "size": 780, }, }, @@ -75271,27 +75271,27 @@ exports[`node_module collectors > yarn parse-asn1 2`] = ` "set-function-length": { "files": { ".nycrc": { - "offset": 456790, + "offset": 456870, "size": 220, }, "LICENSE": { - "offset": 457000, + "offset": 457090, "size": 1090, }, "env.js": { - "offset": 458090, + "offset": 458170, "size": 870, }, "index.js": { - "offset": 458950, + "offset": 459040, "size": 1280, }, "package.json": { - "offset": 460230, + "offset": 460310, "size": 1960, }, "tsconfig.json": { - "offset": 462180, + "offset": 462260, "size": 120, }, }, @@ -75299,48 +75299,48 @@ exports[`node_module collectors > yarn parse-asn1 2`] = ` "sha.js": { "files": { "LICENSE": { - "offset": 462300, + "offset": 462380, "size": 2560, }, "bin.js": { "executable": true, - "offset": 464850, + "offset": 464940, "size": 1040, }, "hash.js": { - "offset": 465890, + "offset": 465980, "size": 1900, }, "index.js": { - "offset": 467790, + "offset": 467880, "size": 520, }, "package.json": { - "offset": 468310, + "offset": 468390, "size": 1170, }, "sha.js": { - "offset": 469470, + "offset": 469550, "size": 1950, }, "sha1.js": { - "offset": 471420, + "offset": 471500, "size": 2070, }, "sha224.js": { - "offset": 473490, + "offset": 473570, "size": 1120, }, "sha256.js": { - "offset": 474600, + "offset": 474680, "size": 3370, }, "sha384.js": { - "offset": 477970, + "offset": 478050, "size": 1190, }, "sha512.js": { - "offset": 479150, + "offset": 479240, "size": 7280, }, }, @@ -75348,13 +75348,13 @@ exports[`node_module collectors > yarn parse-asn1 2`] = ` "string_decoder": { "files": { "LICENSE": { - "offset": 486430, + "offset": 486520, "size": 2340, }, "lib": { "files": { "string_decoder.js": { - "offset": 488770, + "offset": 488850, "size": 9470, }, }, @@ -75364,15 +75364,15 @@ exports[`node_module collectors > yarn parse-asn1 2`] = ` "safe-buffer": { "files": { "LICENSE": { - "offset": 498750, + "offset": 498830, "size": 1090, }, "index.js": { - "offset": 499830, + "offset": 499910, "size": 1530, }, "package.json": { - "offset": 501360, + "offset": 501440, "size": 500, }, }, @@ -75380,7 +75380,7 @@ exports[`node_module collectors > yarn parse-asn1 2`] = ` }, }, "package.json": { - "offset": 498240, + "offset": 498320, "size": 520, }, }, @@ -75388,15 +75388,15 @@ exports[`node_module collectors > yarn parse-asn1 2`] = ` "to-buffer": { "files": { "LICENSE": { - "offset": 501860, + "offset": 501940, "size": 1080, }, "index.js": { - "offset": 502940, + "offset": 503020, "size": 3050, }, "package.json": { - "offset": 505990, + "offset": 506070, "size": 1170, }, }, @@ -75404,23 +75404,23 @@ exports[`node_module collectors > yarn parse-asn1 2`] = ` "typed-array-buffer": { "files": { ".nycrc": { - "offset": 507160, + "offset": 507240, "size": 220, }, "LICENSE": { - "offset": 507370, + "offset": 507460, "size": 1080, }, "index.js": { - "offset": 508440, + "offset": 508530, "size": 600, }, "package.json": { - "offset": 509040, + "offset": 509120, "size": 1600, }, "tsconfig.json": { - "offset": 510630, + "offset": 510710, "size": 120, }, }, @@ -75428,23 +75428,23 @@ exports[`node_module collectors > yarn parse-asn1 2`] = ` "util-deprecate": { "files": { "History.md": { - "offset": 510740, + "offset": 510830, "size": 290, }, "LICENSE": { - "offset": 511030, + "offset": 511110, "size": 1110, }, "browser.js": { - "offset": 512130, + "offset": 512210, "size": 1620, }, "node.js": { - "offset": 513740, + "offset": 513830, "size": 130, }, "package.json": { - "offset": 513870, + "offset": 513950, "size": 440, }, }, @@ -75452,27 +75452,27 @@ exports[`node_module collectors > yarn parse-asn1 2`] = ` "which-typed-array": { "files": { ".editorconfig": { - "offset": 514300, + "offset": 514390, "size": 290, }, ".nycrc": { - "offset": 514590, + "offset": 514670, "size": 220, }, "LICENSE": { - "offset": 514810, + "offset": 514890, "size": 1090, }, "index.js": { - "offset": 515890, + "offset": 515970, "size": 3770, }, "package.json": { - "offset": 519650, + "offset": 519740, "size": 2310, }, "tsconfig.json": { - "offset": 521960, + "offset": 522040, "size": 130, }, }, @@ -75480,7 +75480,7 @@ exports[`node_module collectors > yarn parse-asn1 2`] = ` }, }, "package.json": { - "offset": 523080, + "offset": 523160, "size": 370, }, }, From 4e83aeb610aad811413bfd626656dabc081957a3 Mon Sep 17 00:00:00 2001 From: Mike Maietta Date: Thu, 19 Feb 2026 15:19:28 -0800 Subject: [PATCH 25/61] fix: lint to unblock CI and move linter to enabled runner (#9608) --- .changeset/stale-animals-buy.md | 5 ++++ .github/workflows/test.yaml | 6 ++--- .../src/electron/ElectronFramework.ts | 25 +++++++++---------- 3 files changed, 20 insertions(+), 16 deletions(-) create mode 100644 .changeset/stale-animals-buy.md diff --git a/.changeset/stale-animals-buy.md b/.changeset/stale-animals-buy.md new file mode 100644 index 00000000000..71639359cea --- /dev/null +++ b/.changeset/stale-animals-buy.md @@ -0,0 +1,5 @@ +--- +"app-builder-lib": patch +--- + +fix: regenerate schema to unblock CI diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml index 3f9defbb795..b5ca15d6186 100644 --- a/.github/workflows/test.yaml +++ b/.github/workflows/test.yaml @@ -288,6 +288,9 @@ jobs: cache-key: v-35.7.5-update-electron reset-vitest-smart-cache: ${{ inputs.reset-vitest-smart-cache }} + - name: Verify Docs Generation + run: pnpm generate-all + - name: Download test-runner if exists if: needs.run-docker-build.result == 'success' uses: actions/download-artifact@37930b1c2abaa49bbe596cd826c3c89aef350131 # v7.0.0 @@ -342,9 +345,6 @@ jobs: sudo apt-get install -y rpm flatpak flatpak-builder snapd sudo snap install snapcraft --classic - - name: Verify Docs Generation - run: pnpm generate-all - - name: Test run: | pnpm ci:test diff --git a/packages/app-builder-lib/src/electron/ElectronFramework.ts b/packages/app-builder-lib/src/electron/ElectronFramework.ts index 1607a9dcd56..cabd64f4771 100644 --- a/packages/app-builder-lib/src/electron/ElectronFramework.ts +++ b/packages/app-builder-lib/src/electron/ElectronFramework.ts @@ -88,9 +88,16 @@ async function beforeCopyExtraFiles(options: BeforeCopyExtraFilesOptions) { } async function removeUnusedLanguagesIfNeeded(options: BeforeCopyExtraFilesOptions) { - const { - packager: { config, platformSpecificBuildOptions }, - } = options + const { packager, appOutDir } = options + const { config, platformSpecificBuildOptions, platform } = packager + + const getLocalesConfig = () => { + if (platform === Platform.MAC) { + return { dirs: [packager.getResourcesDir(appOutDir), packager.getMacOsElectronFrameworkResourcesDir(appOutDir)], langFileExt: ".lproj" } + } + return { dirs: [path.join(packager.getResourcesDir(appOutDir), "..", "locales")], langFileExt: ".pak" } + } + const wantedLanguages = asArray(platformSpecificBuildOptions.electronLanguages || config.electronLanguages) .map(it => it.trim().toLowerCase()) .filter(it => it.length > 0) @@ -98,7 +105,7 @@ async function removeUnusedLanguagesIfNeeded(options: BeforeCopyExtraFilesOption return } - const { dirs, langFileExt } = getLocalesConfig(options) + const { dirs, langFileExt } = getLocalesConfig() // noinspection SpellCheckingInspection const deleteNonMatchedLanguages: (dir: string) => Promise[] | undefined> = async (dir: string) => { const files = await readdir(dir) @@ -123,20 +130,12 @@ async function removeUnusedLanguagesIfNeeded(options: BeforeCopyExtraFilesOption return rm(path.join(dir, file), { recursive: true, force: true }) }) } - const allDeletedFiles = (await Promise.all(dirs.map(deleteNonMatchedLanguages))).flat().filter(it => it != null) + const allDeletedFiles = (await Promise.all(dirs.map(deleteNonMatchedLanguages))).flat().filter((it): it is Promise => it != null) if (allDeletedFiles.length === 0) { log.warn({ electronLanguages: wantedLanguages }, "no locales found matching wanted languages, skipping cleanup") return } await asyncPool(MAX_FILE_REQUESTS, allDeletedFiles, it => it) - - function getLocalesConfig(options: BeforeCopyExtraFilesOptions) { - const { appOutDir, packager } = options - if (packager.platform === Platform.MAC) { - return { dirs: [packager.getResourcesDir(appOutDir), packager.getMacOsElectronFrameworkResourcesDir(appOutDir)], langFileExt: ".lproj" } - } - return { dirs: [path.join(packager.getResourcesDir(appOutDir), "..", "locales")], langFileExt: ".pak" } - } } class ElectronFramework implements Framework { From 02a9105d1c4420e418d740dfa0bbbd22d5b44735 Mon Sep 17 00:00:00 2001 From: Mike Maietta Date: Thu, 19 Feb 2026 18:54:22 -0800 Subject: [PATCH 26/61] fix(win): rebuild app exe if header of the asar has changed (#9607) --- .changeset/wild-zebras-cheat.md | 5 +++++ packages/app-builder-lib/src/winPackager.ts | 14 +++++++++++--- 2 files changed, 16 insertions(+), 3 deletions(-) create mode 100644 .changeset/wild-zebras-cheat.md diff --git a/.changeset/wild-zebras-cheat.md b/.changeset/wild-zebras-cheat.md new file mode 100644 index 00000000000..e2adbbc3d53 --- /dev/null +++ b/.changeset/wild-zebras-cheat.md @@ -0,0 +1,5 @@ +--- +"app-builder-lib": patch +--- + +fix(win): regenerate app exe if header of the asar has changed so that asar integrity properly matches diff --git a/packages/app-builder-lib/src/winPackager.ts b/packages/app-builder-lib/src/winPackager.ts index c1e4852c611..61fe2a410b3 100644 --- a/packages/app-builder-lib/src/winPackager.ts +++ b/packages/app-builder-lib/src/winPackager.ts @@ -1,10 +1,11 @@ -import { Arch, CopyFileTransformer, executeAppBuilder, FileTransformer, InvalidConfigurationError, log, use, walk } from "builder-util" +import { Arch, CopyFileTransformer, executeAppBuilder, exists, FileTransformer, InvalidConfigurationError, log, use, walk } from "builder-util" import { Nullish } from "builder-util-runtime" +import { isCI } from "ci-info" import { createHash } from "crypto" import { readdir } from "fs/promises" -import { isCI } from "ci-info" import { Lazy } from "lazy-val" import * as path from "path" +import { readAsarHeader } from "./asar/asar" import { SignManager } from "./codeSign/signManager" import { signWindows, WindowsSignOptions } from "./codeSign/windowsCodeSign" import { WindowsSignAzureManager } from "./codeSign/windowsSignAzureManager" @@ -21,12 +22,12 @@ import { NsisTarget } from "./targets/nsis/NsisTarget" import { AppPackageHelper, CopyElevateHelper } from "./targets/nsis/nsisUtil" import { WebInstallerTarget } from "./targets/nsis/WebInstallerTarget" import { createCommonTarget } from "./targets/targetFactory" +import { getRceditBundle } from "./toolsets/windows" import { BuildCacheManager, digest } from "./util/cacheManager" import { isBuildCacheEnabled } from "./util/flags" import { time } from "./util/timer" import { getWindowsVm, VmManager } from "./vm/vm" import { execWine } from "./wine" -import { getRceditBundle } from "./toolsets/windows" export class WinPackager extends PlatformPackager { _iconPath = new Lazy(() => this.getOrConvertIcon("ico")) @@ -203,6 +204,13 @@ export class WinPackager extends PlatformPackager { hash.update(this.platformSpecificBuildOptions.signtoolOptions?.certificateSha1 || "no certificateSha1") hash.update(this.platformSpecificBuildOptions.signtoolOptions?.certificateSubjectName || "no subjectName") + const asar = path.resolve(this.getResourcesDir(outDir), "app.asar") + if (await exists(asar)) { + hash.update((await readAsarHeader(asar)).header) + } else { + hash.update("no asar") + } + buildCacheManager = new BuildCacheManager(outDir, file, arch) if (await buildCacheManager.copyIfValid(await digest(hash, files))) { timer.end() From 52dc6676f8fb8157e60a55df8021988bf6c48286 Mon Sep 17 00:00:00 2001 From: Lasse Heitgres Date: Fri, 20 Feb 2026 20:17:39 +0000 Subject: [PATCH 27/61] fix(appimage): resolve toolset with relative directory path (#9610) --- .changeset/legal-crews-happen.md | 5 +++++ packages/app-builder-lib/src/toolsets/linux.ts | 14 ++++++++++++-- 2 files changed, 17 insertions(+), 2 deletions(-) create mode 100644 .changeset/legal-crews-happen.md diff --git a/.changeset/legal-crews-happen.md b/.changeset/legal-crews-happen.md new file mode 100644 index 00000000000..483ba746c1c --- /dev/null +++ b/.changeset/legal-crews-happen.md @@ -0,0 +1,5 @@ +--- +"app-builder-lib": patch +--- + +Fix mksquashfs ENOENT when appimage tool paths are relative diff --git a/packages/app-builder-lib/src/toolsets/linux.ts b/packages/app-builder-lib/src/toolsets/linux.ts index b0b04f2cc94..809a4cab10e 100644 --- a/packages/app-builder-lib/src/toolsets/linux.ts +++ b/packages/app-builder-lib/src/toolsets/linux.ts @@ -46,7 +46,7 @@ export async function getFpmPath() { export async function getAppImageTools(targetArch: Arch) { const override = process.env.APPIMAGE_TOOLS_PATH?.trim() - const artifactPath = + let artifactPath = override || (await downloadArtifact({ releaseName: "appimage@1.0.2", @@ -57,7 +57,17 @@ export async function getAppImageTools(targetArch: Arch) { githubOrgRepo: "electron-userland/electron-builder-binaries", })) - const runtimeArch = targetArch === Arch.armv7l ? "arm32" : targetArch === Arch.arm64 ? "arm64" : targetArch === Arch.ia32 ? "ia32" : "x64" + artifactPath = path.resolve(artifactPath) + + const runtimeArch = + targetArch === Arch.armv7l + ? "arm32" + : targetArch === Arch.arm64 + ? "arm64" + : targetArch === Arch.ia32 + ? "ia32" + : "x64" + return { mksquashfs: path.join(artifactPath, "mksquashfs"), desktopFileValidate: path.join(artifactPath, "desktop-file-validate"), From 5d4651dbb29d0730d0fb3be96de79d9348c0a99c Mon Sep 17 00:00:00 2001 From: Michael Telatynski <7t3chguy@gmail.com> Date: Fri, 20 Feb 2026 21:24:35 +0000 Subject: [PATCH 28/61] fix(squirrel-windows): remove spurious default vendor warning (#9595) --- .changeset/ten-chefs-play.md | 5 ++++ .../src/SquirrelWindowsTarget.ts | 27 +++++++++---------- 2 files changed, 17 insertions(+), 15 deletions(-) create mode 100644 .changeset/ten-chefs-play.md diff --git a/.changeset/ten-chefs-play.md b/.changeset/ten-chefs-play.md new file mode 100644 index 00000000000..6afe2f04d59 --- /dev/null +++ b/.changeset/ten-chefs-play.md @@ -0,0 +1,5 @@ +--- +"electron-builder-squirrel-windows": patch +--- + +fix(squirrel-windows): remove spurious default vendor warning diff --git a/packages/electron-builder-squirrel-windows/src/SquirrelWindowsTarget.ts b/packages/electron-builder-squirrel-windows/src/SquirrelWindowsTarget.ts index e92edc95ad5..777d48a5fd5 100644 --- a/packages/electron-builder-squirrel-windows/src/SquirrelWindowsTarget.ts +++ b/packages/electron-builder-squirrel-windows/src/SquirrelWindowsTarget.ts @@ -1,4 +1,4 @@ -import { InvalidConfigurationError, log, isEmptyOrSpaces } from "builder-util" +import { InvalidConfigurationError, log, isEmptyOrSpaces, exists } from "builder-util" import { execWine } from "app-builder-lib/out/wine" import { getBinFromUrl } from "app-builder-lib/out/binDownload" import { sanitizeFileName } from "builder-util/out/filename" @@ -25,23 +25,20 @@ export default class SquirrelWindowsTarget extends Target { const customSquirrelVendorDirectory = this.options.customSquirrelVendorDir const tmpVendorDirectory = await this.packager.info.tempDirManager.createTempDir({ prefix: "squirrel-windows-vendor" }) - if (isEmptyOrSpaces(customSquirrelVendorDirectory) || !fs.existsSync(customSquirrelVendorDirectory)) { - log.warn({ customSquirrelVendorDirectory: customSquirrelVendorDirectory }, "unable to access custom Squirrel.Windows vendor directory, falling back to default vendor ") - const windowInstallerPackage = require.resolve("electron-winstaller/package.json") - const vendorDirectory = path.join(path.dirname(windowInstallerPackage), "vendor") + if (customSquirrelVendorDirectory && (await exists(customSquirrelVendorDirectory))) { + await fs.promises.cp(customSquirrelVendorDirectory, tmpVendorDirectory, { recursive: true }) + } else { + if (!isEmptyOrSpaces(customSquirrelVendorDirectory)) { + log.warn({ customSquirrelVendorDirectory }, "unable to access custom Squirrel.Windows vendor directory, falling back to default vendor") + } - const squirrelBin = await getBinFromUrl( - "squirrel.windows@1.0.0", - "squirrel.windows-2.0.1-patched.7z", - "DWijIRRElidu/Rq0yegAKqo2g6aVJUPvcRyvkzUoBPbRasIk61P6xY2fBMdXw6wT17md7NzrTI9/zA1wT9vEqg==" - ) + const windowInstallerPackage = require.resolve("electron-winstaller/package.json") + const [squirrelBin] = await Promise.all([ + getBinFromUrl("squirrel.windows@1.0.0", "squirrel.windows-2.0.1-patched.7z", "DWijIRRElidu/Rq0yegAKqo2g6aVJUPvcRyvkzUoBPbRasIk61P6xY2fBMdXw6wT17md7NzrTI9/zA1wT9vEqg=="), + fs.promises.cp(path.join(path.dirname(windowInstallerPackage), "vendor"), tmpVendorDirectory, { recursive: true }), + ]) - await fs.promises.cp(vendorDirectory, tmpVendorDirectory, { recursive: true }) - // copy the patched squirrel to tmp vendor directory await fs.promises.cp(path.join(squirrelBin, "electron-winstaller", "vendor"), tmpVendorDirectory, { recursive: true }) - } else { - // copy the custom squirrel vendor directory to tmp vendor directory - await fs.promises.cp(customSquirrelVendorDirectory, tmpVendorDirectory, { recursive: true }) } const files = await fs.promises.readdir(tmpVendorDirectory) From b348df0ba409fee488288ead097ac900141a6dad Mon Sep 17 00:00:00 2001 From: beyondkmp Date: Sat, 28 Feb 2026 22:27:20 +0800 Subject: [PATCH 29/61] fix: handle pnpm deduped dependencies correctly in node module collector (#9618) --- .changeset/busy-impalas-divide.md | 5 + .../node-module-collector/moduleManager.ts | 2 + .../pnpmNodeModulesCollector.ts | 21 +- .../src/node-module-collector/types.ts | 3 + test/snapshots/HoistedNodeModuleTest.js.snap | 9644 ++++++++--------- 5 files changed, 4851 insertions(+), 4824 deletions(-) create mode 100644 .changeset/busy-impalas-divide.md diff --git a/.changeset/busy-impalas-divide.md b/.changeset/busy-impalas-divide.md new file mode 100644 index 00000000000..fa4977c34e1 --- /dev/null +++ b/.changeset/busy-impalas-divide.md @@ -0,0 +1,5 @@ +--- +"app-builder-lib": patch +--- + +fix: handle pnpm deduped dependencies correctly in node module collector diff --git a/packages/app-builder-lib/src/node-module-collector/moduleManager.ts b/packages/app-builder-lib/src/node-module-collector/moduleManager.ts index af189fa45e2..69be7b68dea 100644 --- a/packages/app-builder-lib/src/node-module-collector/moduleManager.ts +++ b/packages/app-builder-lib/src/node-module-collector/moduleManager.ts @@ -6,6 +6,7 @@ import * as semver from "semver" export enum LogMessageByKey { PKG_DUPLICATE_REF = "duplicate dependency references", + PKG_DUPLICATE_REF_UNRESOLVED = "unresolved duplicate dependency references", PKG_NOT_FOUND = "cannot find path for dependency", PKG_NOT_ON_DISK = "dependency not found on disk", PKG_SELF_REF = "self-referential dependencies", @@ -14,6 +15,7 @@ export enum LogMessageByKey { } export const logMessageLevelByKey: Record = { [LogMessageByKey.PKG_DUPLICATE_REF]: "info", + [LogMessageByKey.PKG_DUPLICATE_REF_UNRESOLVED]: "warn", [LogMessageByKey.PKG_NOT_FOUND]: "warn", [LogMessageByKey.PKG_NOT_ON_DISK]: "warn", [LogMessageByKey.PKG_SELF_REF]: "debug", diff --git a/packages/app-builder-lib/src/node-module-collector/pnpmNodeModulesCollector.ts b/packages/app-builder-lib/src/node-module-collector/pnpmNodeModulesCollector.ts index 373655eb304..d0f2e0fcb9f 100644 --- a/packages/app-builder-lib/src/node-module-collector/pnpmNodeModulesCollector.ts +++ b/packages/app-builder-lib/src/node-module-collector/pnpmNodeModulesCollector.ts @@ -1,4 +1,4 @@ -import { log } from "builder-util" +import { LogMessageByKey } from "./moduleManager" import { NodeModulesCollector } from "./nodeModulesCollector" import { PM } from "./packageManager" import { PnpmDependency } from "./types" @@ -19,6 +19,17 @@ export class PnpmNodeModulesCollector extends NodeModulesCollector 0) { + const realDep = this.allDependencies.get(dependencyId) + if (realDep) { + this.cache.logSummary[LogMessageByKey.PKG_DUPLICATE_REF].push(dependencyId) + tree = realDep + } else { + this.cache.logSummary[LogMessageByKey.PKG_DUPLICATE_REF_UNRESOLVED].push(dependencyId) + return + } + } + const packageName = tree.name || tree.from const { packageJson } = (await this.cache.locatePackageVersion({ pkgName: packageName, parentDir: this.rootDir, requiredRange: tree.version })) || {} @@ -37,7 +48,7 @@ export class PnpmNodeModulesCollector extends NodeModulesCollector 0) { + continue + } const pkg = await this.cache.locatePackageVersion({ pkgName: key, parentDir: this.rootDir, requiredRange: value.version }) this.allDependencies.set(`${key}@${value.version}`, { ...value, path: pkg?.packageDir ?? value.path }) await this.collectAllDependencies(value) @@ -66,6 +80,9 @@ export class PnpmNodeModulesCollector extends NodeModulesCollector 0) { + continue + } const pkg = await this.cache.locatePackageVersion({ pkgName: key, parentDir: this.rootDir, requiredRange: value.version }) this.allDependencies.set(`${key}@${value.version}`, { ...value, path: pkg?.packageDir ?? value.path }) await this.collectAllDependencies(value) diff --git a/packages/app-builder-lib/src/node-module-collector/types.ts b/packages/app-builder-lib/src/node-module-collector/types.ts index 3ffbd17c1eb..3f47c94c733 100644 --- a/packages/app-builder-lib/src/node-module-collector/types.ts +++ b/packages/app-builder-lib/src/node-module-collector/types.ts @@ -28,6 +28,9 @@ export type ParsedDependencyTree = { export interface PnpmDependency extends Dependency { readonly from: string readonly resolved: string + // Present in pnpm 10.29.3+ `pnpm list --json` output for deduped references. + // Context: https://github.com/pnpm/pnpm/issues/10601 + readonly dedupedDependenciesCount?: number } export interface NpmDependency extends Dependency { diff --git a/test/snapshots/HoistedNodeModuleTest.js.snap b/test/snapshots/HoistedNodeModuleTest.js.snap index 19c117948c6..586d020a262 100644 --- a/test/snapshots/HoistedNodeModuleTest.js.snap +++ b/test/snapshots/HoistedNodeModuleTest.js.snap @@ -29625,11 +29625,11 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen { "files": { "index.html": { - "offset": 18214380, + "offset": 18214160, "size": 850, }, "index.js": { - "offset": 18215220, + "offset": 18215010, "size": 2510, }, "node_modules": { @@ -30122,12 +30122,12 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen "files": { "index.mjs": { "offset": 3162700, - "size": 31120, + "size": 31130, }, }, }, "package.json": { - "offset": 3193810, + "offset": 3193830, "size": 880, }, }, @@ -30135,19 +30135,19 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen "css-calc": { "files": { "LICENSE.md": { - "offset": 3194690, + "offset": 3194710, "size": 1120, }, "dist": { "files": { "index.mjs": { - "offset": 3195800, + "offset": 3195820, "size": 30610, }, }, }, "package.json": { - "offset": 3226410, + "offset": 3226430, "size": 950, }, }, @@ -30155,19 +30155,19 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen "css-color-parser": { "files": { "LICENSE.md": { - "offset": 3227360, + "offset": 3227370, "size": 1120, }, "dist": { "files": { "index.mjs": { - "offset": 3228470, - "size": 42600, + "offset": 3228480, + "size": 42510, }, }, }, "package.json": { - "offset": 3271060, + "offset": 3270980, "size": 1070, }, }, @@ -30175,19 +30175,19 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen "css-parser-algorithms": { "files": { "LICENSE.md": { - "offset": 3272120, + "offset": 3272050, "size": 1120, }, "dist": { "files": { "index.mjs": { - "offset": 3273240, + "offset": 3273160, "size": 8840, }, }, }, "package.json": { - "offset": 3282070, + "offset": 3281990, "size": 970, }, }, @@ -30195,19 +30195,19 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen "css-syntax-patches-for-csstree": { "files": { "LICENSE.md": { - "offset": 3283030, + "offset": 3282950, "size": 930, }, "dist": { "files": { "index.json": { - "offset": 3283960, - "size": 86370, + "offset": 3283880, + "size": 86230, }, }, }, "package.json": { - "offset": 3370330, + "offset": 3370110, "size": 790, }, }, @@ -30215,19 +30215,19 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen "css-tokenizer": { "files": { "LICENSE.md": { - "offset": 3371120, + "offset": 3370900, "size": 1120, }, "dist": { "files": { "index.mjs": { - "offset": 3372230, + "offset": 3372010, "size": 24040, }, }, }, "package.json": { - "offset": 3396260, + "offset": 3396040, "size": 830, }, }, @@ -30239,231 +30239,231 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen "bytes": { "files": { "LICENSE": { - "offset": 3397080, + "offset": 3396870, "size": 1080, }, "array.js": { - "offset": 3398160, + "offset": 3397950, "size": 560, }, "assert.js": { - "offset": 3398720, + "offset": 3398500, "size": 930, }, "base32.js": { - "offset": 3399640, + "offset": 3399420, "size": 1540, }, "base58.js": { - "offset": 3401180, + "offset": 3400960, "size": 6440, }, "base58check.js": { - "offset": 3407610, + "offset": 3407400, "size": 880, }, "base58check.node.js": { - "offset": 3408490, + "offset": 3408270, "size": 500, }, "base64.js": { - "offset": 3408980, + "offset": 3408770, "size": 8210, }, "bech32.js": { - "offset": 3417190, + "offset": 3416980, "size": 9560, }, "bigint.js": { - "offset": 3426750, + "offset": 3426530, "size": 600, }, "encoding-browser.browser.js": { - "offset": 3427350, + "offset": 3427130, "size": 1830, }, "encoding-browser.js": { - "offset": 3429170, + "offset": 3428960, "size": 30, }, "encoding-browser.native.js": { - "offset": 3429200, + "offset": 3428990, "size": 30, }, "encoding-lite.js": { - "offset": 3429230, + "offset": 3429020, "size": 190, }, "encoding.js": { - "offset": 3429420, + "offset": 3429200, "size": 430, }, "fallback": { "files": { "_utils.js": { - "offset": 3429850, + "offset": 3429630, "size": 680, }, "base32.js": { - "offset": 3430520, + "offset": 3430300, "size": 8410, }, "base58check.js": { - "offset": 3438920, + "offset": 3438700, "size": 1630, }, "base64.js": { - "offset": 3440550, + "offset": 3440330, "size": 6660, }, "encoding.api.js": { - "offset": 3447200, + "offset": 3446990, "size": 1570, }, "encoding.js": { - "offset": 3448760, + "offset": 3448550, "size": 13240, }, "encoding.labels.js": { - "offset": 3462000, + "offset": 3461780, "size": 2970, }, "encoding.util.js": { - "offset": 3464970, + "offset": 3464750, "size": 2600, }, "hex.js": { - "offset": 3467560, + "offset": 3467350, "size": 4340, }, "latin1.js": { - "offset": 3471900, + "offset": 3471680, "size": 5870, }, "multi-byte.encodings.cjs": { - "offset": 3477760, + "offset": 3477550, "size": 80, }, "multi-byte.encodings.json": { - "offset": 3477840, + "offset": 3477620, "size": 153320, }, "multi-byte.js": { - "offset": 3631150, + "offset": 3630940, "size": 27950, }, "multi-byte.table.js": { - "offset": 3659090, + "offset": 3658880, "size": 3400, }, "percent.js": { - "offset": 3662480, + "offset": 3662270, "size": 1320, }, "platform.browser.js": { - "offset": 3663800, + "offset": 3663580, "size": 1030, }, "platform.js": { - "offset": 3664830, + "offset": 3664610, "size": 100, }, "platform.native.js": { - "offset": 3664930, + "offset": 3664710, "size": 4010, }, "single-byte.encodings.js": { - "offset": 3668930, + "offset": 3668720, "size": 6140, }, "single-byte.js": { - "offset": 3675060, + "offset": 3674850, "size": 3970, }, "utf16.js": { - "offset": 3679030, + "offset": 3678820, "size": 9360, }, "utf8.auto.browser.js": { - "offset": 3688390, + "offset": 3688170, "size": 60, }, "utf8.auto.js": { - "offset": 3688450, + "offset": 3688230, "size": 50, }, "utf8.auto.native.js": { - "offset": 3688490, + "offset": 3688280, "size": 50, }, "utf8.js": { - "offset": 3688540, + "offset": 3688330, "size": 8630, }, }, }, "hex.js": { - "offset": 3697170, + "offset": 3696960, "size": 600, }, "hex.node.js": { - "offset": 3697770, + "offset": 3697550, "size": 1310, }, "index.js": { - "offset": 3699070, + "offset": 3698850, "size": 200, }, "multi-byte.js": { - "offset": 3699260, + "offset": 3699040, "size": 720, }, "multi-byte.node.js": { - "offset": 3699970, + "offset": 3699760, "size": 1090, }, "package.json": { - "offset": 3701060, + "offset": 3700840, "size": 6540, }, "single-byte.js": { - "offset": 3707600, + "offset": 3707380, "size": 4890, }, "single-byte.node.js": { - "offset": 3712480, + "offset": 3712270, "size": 4520, }, "utf16.browser.js": { - "offset": 3717000, + "offset": 3716780, "size": 560, }, "utf16.js": { - "offset": 3717560, + "offset": 3717340, "size": 40, }, "utf16.native.js": { - "offset": 3717590, + "offset": 3717370, "size": 1020, }, "utf16.node.js": { - "offset": 3718600, + "offset": 3718390, "size": 2780, }, "utf8.js": { - "offset": 3721380, + "offset": 3721160, "size": 2640, }, "utf8.node.js": { - "offset": 3724020, + "offset": 3723800, "size": 2860, }, "whatwg.js": { - "offset": 3726880, + "offset": 3726660, "size": 2780, }, "wif.js": { - "offset": 3729660, + "offset": 3729440, "size": 1940, }, }, @@ -30473,39 +30473,39 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen "agent-base": { "files": { "LICENSE": { - "offset": 3731590, + "offset": 3731370, "size": 1110, }, "dist": { "files": { "helpers.d.ts.map": { - "offset": 3732690, + "offset": 3732470, "size": 590, }, "helpers.js": { - "offset": 3733270, + "offset": 3733060, "size": 2320, }, "helpers.js.map": { - "offset": 3735590, + "offset": 3735370, "size": 1410, }, "index.d.ts.map": { - "offset": 3736990, + "offset": 3736770, "size": 1430, }, "index.js": { - "offset": 3738420, + "offset": 3738200, "size": 7330, }, "index.js.map": { - "offset": 3745740, + "offset": 3745530, "size": 4150, }, }, }, "package.json": { - "offset": 3749890, + "offset": 3749670, "size": 810, }, }, @@ -30513,27 +30513,27 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen "argparse": { "files": { "LICENSE": { - "offset": 3750700, + "offset": 3750480, "size": 12780, }, "argparse.js": { - "offset": 3763470, + "offset": 3763250, "size": 129720, }, "lib": { "files": { "sub.js": { - "offset": 3893180, + "offset": 3892970, "size": 2260, }, "textwrap.js": { - "offset": 3895440, + "offset": 3895220, "size": 17400, }, }, }, "package.json": { - "offset": 3912830, + "offset": 3912610, "size": 450, }, }, @@ -30541,79 +30541,79 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen "bidi-js": { "files": { "LICENSE.txt": { - "offset": 3913280, + "offset": 3913060, "size": 1080, }, "dist": { "files": { "bidi.js": { - "offset": 3914350, + "offset": 3914130, "size": 45570, }, "bidi.min.js": { - "offset": 3959910, + "offset": 3959690, "size": 12150, }, "bidi.min.mjs": { - "offset": 3972060, + "offset": 3971840, "size": 11930, }, "bidi.mjs": { - "offset": 3983980, + "offset": 3983770, "size": 43380, }, }, }, "package.json": { - "offset": 4027360, + "offset": 4027140, "size": 860, }, "src": { "files": { "brackets.js": { - "offset": 4028210, + "offset": 4028000, "size": 790, }, "charTypes.js": { - "offset": 4029000, + "offset": 4028780, "size": 1760, }, "data": { "files": { "bidiBrackets.data.js": { - "offset": 4030750, + "offset": 4030540, "size": 530, }, "bidiCharTypes.data.js": { - "offset": 4031280, + "offset": 4031060, "size": 3160, }, "bidiMirroring.data.js": { - "offset": 4034430, + "offset": 4034210, "size": 670, }, }, }, "embeddingLevels.js": { - "offset": 4035100, + "offset": 4034880, "size": 27080, }, "index.js": { - "offset": 4062180, + "offset": 4061960, "size": 410, }, "mirroring.js": { - "offset": 4062580, + "offset": 4062360, "size": 1370, }, "reordering.js": { - "offset": 4063940, + "offset": 4063730, "size": 3870, }, "util": { "files": { "parseCharacterMap.js": { - "offset": 4067810, + "offset": 4067600, "size": 1110, }, }, @@ -30625,7 +30625,7 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen "css-tree": { "files": { "LICENSE": { - "offset": 4068920, + "offset": 4068700, "size": 1070, }, "cjs": { @@ -30633,51 +30633,51 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen "convertor": { "files": { "create.cjs": { - "offset": 4069980, + "offset": 4069770, "size": 830, }, "index.cjs": { - "offset": 4070810, + "offset": 4070590, "size": 180, }, }, }, "data-patch.cjs": { - "offset": 4070980, + "offset": 4070770, "size": 120, }, "data.cjs": { - "offset": 4071090, + "offset": 4070880, "size": 3520, }, "definition-syntax": { "files": { "SyntaxError.cjs": { - "offset": 4074610, + "offset": 4074390, "size": 480, }, "generate.cjs": { - "offset": 4075080, + "offset": 4074870, "size": 3460, }, "index.cjs": { - "offset": 4078540, + "offset": 4078320, "size": 330, }, "parse.cjs": { - "offset": 4078860, + "offset": 4078650, "size": 13780, }, "scanner.cjs": { - "offset": 4092640, + "offset": 4092420, "size": 2700, }, "tokenizer.cjs": { - "offset": 4095340, + "offset": 4095120, "size": 1400, }, "walk.cjs": { - "offset": 4096730, + "offset": 4096510, "size": 1290, }, }, @@ -30685,83 +30685,83 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen "generator": { "files": { "create.cjs": { - "offset": 4098020, + "offset": 4097800, "size": 2740, }, "index.cjs": { - "offset": 4100760, + "offset": 4100540, "size": 200, }, "sourceMap.cjs": { - "offset": 4100950, + "offset": 4100730, "size": 2690, }, "token-before.cjs": { - "offset": 4103640, + "offset": 4103420, "size": 4940, }, }, }, "index.cjs": { - "offset": 4108570, + "offset": 4108360, "size": 1860, }, "lexer": { "files": { "Lexer.cjs": { - "offset": 4110430, + "offset": 4110210, "size": 17140, }, "error.cjs": { - "offset": 4127570, + "offset": 4127350, "size": 3490, }, "generic-an-plus-b.cjs": { - "offset": 4131050, + "offset": 4130840, "size": 6850, }, "generic-const.cjs": { - "offset": 4137890, + "offset": 4137680, "size": 210, }, "generic-urange.cjs": { - "offset": 4138100, + "offset": 4137880, "size": 4460, }, "generic.cjs": { - "offset": 4142550, + "offset": 4142340, "size": 17930, }, "index.cjs": { - "offset": 4160480, + "offset": 4160260, "size": 90, }, "match-graph.cjs": { - "offset": 4160560, + "offset": 4160350, "size": 15440, }, "match.cjs": { - "offset": 4176000, + "offset": 4175780, "size": 19790, }, "prepare-tokens.cjs": { - "offset": 4195790, + "offset": 4195570, "size": 1150, }, "search.cjs": { - "offset": 4196930, + "offset": 4196720, "size": 1640, }, "structure.cjs": { - "offset": 4198570, + "offset": 4198350, "size": 5330, }, "trace.cjs": { - "offset": 4203900, + "offset": 4203680, "size": 1750, }, "units.cjs": { - "offset": 4205640, + "offset": 4205420, "size": 1720, }, }, @@ -30769,23 +30769,23 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen "parser": { "files": { "SyntaxError.cjs": { - "offset": 4207350, + "offset": 4207140, "size": 2610, }, "create.cjs": { - "offset": 4209960, + "offset": 4209740, "size": 10970, }, "index.cjs": { - "offset": 4220920, + "offset": 4220710, "size": 180, }, "parse-selector.cjs": { - "offset": 4221100, + "offset": 4220880, "size": 220, }, "sequence.cjs": { - "offset": 4221320, + "offset": 4221100, "size": 1030, }, }, @@ -30795,47 +30795,47 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen "atrule": { "files": { "container.cjs": { - "offset": 4222350, + "offset": 4222130, "size": 900, }, "font-face.cjs": { - "offset": 4223240, + "offset": 4223030, "size": 180, }, "import.cjs": { - "offset": 4223420, + "offset": 4223200, "size": 2690, }, "index.cjs": { - "offset": 4226100, + "offset": 4225890, "size": 650, }, "layer.cjs": { - "offset": 4226750, + "offset": 4226530, "size": 270, }, "media.cjs": { - "offset": 4227020, + "offset": 4226800, "size": 290, }, "nest.cjs": { - "offset": 4227300, + "offset": 4227090, "size": 270, }, "page.cjs": { - "offset": 4227570, + "offset": 4227360, "size": 270, }, "scope.cjs": { - "offset": 4227840, + "offset": 4227630, "size": 280, }, "starting-style.cjs": { - "offset": 4228120, + "offset": 4227910, "size": 200, }, "supports.cjs": { - "offset": 4228320, + "offset": 4228100, "size": 300, }, }, @@ -30843,299 +30843,299 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen "config": { "files": { "generator.cjs": { - "offset": 4228620, + "offset": 4228400, "size": 150, }, "lexer.cjs": { - "offset": 4228770, + "offset": 4228550, "size": 320, }, "mix.cjs": { - "offset": 4229090, + "offset": 4228870, "size": 3860, }, "parser-selector.cjs": { - "offset": 4232940, + "offset": 4232730, "size": 460, }, "parser.cjs": { - "offset": 4233400, + "offset": 4233180, "size": 1260, }, "walker.cjs": { - "offset": 4234650, + "offset": 4234440, "size": 130, }, }, }, "create.cjs": { - "offset": 4234780, + "offset": 4234560, "size": 1720, }, "function": { "files": { "expression.cjs": { - "offset": 4236490, + "offset": 4236270, "size": 210, }, "var.cjs": { - "offset": 4236690, + "offset": 4236470, "size": 1170, }, }, }, "index.cjs": { - "offset": 4237860, + "offset": 4237640, "size": 300, }, "node": { "files": { "AnPlusB.cjs": { - "offset": 4238150, + "offset": 4237930, "size": 8090, }, "Atrule.cjs": { - "offset": 4246230, + "offset": 4246020, "size": 2520, }, "AtrulePrelude.cjs": { - "offset": 4248750, + "offset": 4248530, "size": 1150, }, "AttributeSelector.cjs": { - "offset": 4249890, + "offset": 4249670, "size": 3640, }, "Block.cjs": { - "offset": 4253530, + "offset": 4253310, "size": 2340, }, "Brackets.cjs": { - "offset": 4255860, + "offset": 4255650, "size": 760, }, "CDC.cjs": { - "offset": 4256620, + "offset": 4256400, "size": 460, }, "CDO.cjs": { - "offset": 4257080, + "offset": 4256860, "size": 470, }, "ClassSelector.cjs": { - "offset": 4257540, + "offset": 4257320, "size": 620, }, "Combinator.cjs": { - "offset": 4258160, + "offset": 4257940, "size": 1430, }, "Comment.cjs": { - "offset": 4259590, + "offset": 4259370, "size": 860, }, "Condition.cjs": { - "offset": 4260440, + "offset": 4260220, "size": 2980, }, "Declaration.cjs": { - "offset": 4263410, + "offset": 4263200, "size": 4540, }, "DeclarationList.cjs": { - "offset": 4267940, + "offset": 4267730, "size": 1480, }, "Dimension.cjs": { - "offset": 4269420, + "offset": 4269200, "size": 650, }, "Feature.cjs": { - "offset": 4270060, + "offset": 4269840, "size": 2360, }, "FeatureFunction.cjs": { - "offset": 4272420, + "offset": 4272200, "size": 1580, }, "FeatureRange.cjs": { - "offset": 4273990, + "offset": 4273780, "size": 3350, }, "Function.cjs": { - "offset": 4277340, + "offset": 4277120, "size": 1070, }, "GeneralEnclosed.cjs": { - "offset": 4278400, + "offset": 4278180, "size": 1550, }, "Hash.cjs": { - "offset": 4279950, + "offset": 4279730, "size": 590, }, "IdSelector.cjs": { - "offset": 4280530, + "offset": 4280320, "size": 850, }, "Identifier.cjs": { - "offset": 4281380, + "offset": 4281160, "size": 490, }, "Layer.cjs": { - "offset": 4281860, + "offset": 4281650, "size": 690, }, "LayerList.cjs": { - "offset": 4282550, + "offset": 4282330, "size": 770, }, "LayerName.cjs": { - "offset": 4283320, + "offset": 4283100, "size": 660, }, "LayerNameList.cjs": { - "offset": 4283980, + "offset": 4283760, "size": 760, }, "MediaCondition.cjs": { - "offset": 4284730, + "offset": 4284520, "size": 1880, }, "MediaFeature.cjs": { - "offset": 4286610, + "offset": 4286390, "size": 1690, }, "MediaFeatureRange.cjs": { - "offset": 4288290, + "offset": 4288080, "size": 290, }, "MediaQuery.cjs": { - "offset": 4288580, + "offset": 4288370, "size": 2570, }, "MediaQueryList.cjs": { - "offset": 4291150, + "offset": 4290930, "size": 740, }, "NestingSelector.cjs": { - "offset": 4291880, + "offset": 4291670, "size": 540, }, "Nth.cjs": { - "offset": 4292420, + "offset": 4292210, "size": 1050, }, "Number.cjs": { - "offset": 4293460, + "offset": 4293250, "size": 480, }, "Operator.cjs": { - "offset": 4293940, + "offset": 4293730, "size": 510, }, "Parentheses.cjs": { - "offset": 4294450, + "offset": 4294230, "size": 780, }, "Percentage.cjs": { - "offset": 4295220, + "offset": 4295000, "size": 510, }, "PseudoClassSelector.cjs": { - "offset": 4295730, + "offset": 4295510, "size": 1670, }, "PseudoElementSelector.cjs": { - "offset": 4297390, + "offset": 4297170, "size": 1730, }, "Ratio.cjs": { - "offset": 4299120, + "offset": 4298900, "size": 2040, }, "Raw.cjs": { - "offset": 4301150, + "offset": 4300930, "size": 1150, }, "Rule.cjs": { - "offset": 4302290, + "offset": 4302080, "size": 1230, }, "Scope.cjs": { - "offset": 4303520, + "offset": 4303310, "size": 1620, }, "Selector.cjs": { - "offset": 4305130, + "offset": 4304920, "size": 760, }, "SelectorList.cjs": { - "offset": 4305890, + "offset": 4305680, "size": 810, }, "String.cjs": { - "offset": 4306700, + "offset": 4306490, "size": 560, }, "StyleSheet.cjs": { - "offset": 4307260, + "offset": 4307040, "size": 2020, }, "SupportsDeclaration.cjs": { - "offset": 4309270, + "offset": 4309060, "size": 780, }, "SupportsFeature.cjs": { - "offset": 4310050, + "offset": 4309830, "size": 1690, }, "TypeSelector.cjs": { - "offset": 4311740, + "offset": 4311520, "size": 1190, }, "UnicodeRange.cjs": { - "offset": 4312930, + "offset": 4312710, "size": 4540, }, "Url.cjs": { - "offset": 4317460, + "offset": 4317250, "size": 1290, }, "Value.cjs": { - "offset": 4318750, + "offset": 4318540, "size": 470, }, "WhiteSpace.cjs": { - "offset": 4319220, + "offset": 4319000, "size": 650, }, "common": { "files": { "feature-range.cjs": { - "offset": 4319860, + "offset": 4319650, "size": 2730, }, "feature.cjs": { - "offset": 4322590, + "offset": 4322370, "size": 1830, }, }, }, "index-generate.cjs": { - "offset": 4324410, + "offset": 4324190, "size": 4320, }, "index-parse-selector.cjs": { - "offset": 4328730, + "offset": 4328510, "size": 1560, }, "index-parse.cjs": { - "offset": 4330280, + "offset": 4330060, "size": 4170, }, "index.cjs": { - "offset": 4334450, + "offset": 4334230, "size": 3890, }, }, @@ -31143,11 +31143,11 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen "pseudo": { "files": { "index.cjs": { - "offset": 4338330, + "offset": 4338110, "size": 1080, }, "lang.cjs": { - "offset": 4339400, + "offset": 4339190, "size": 820, }, }, @@ -31155,23 +31155,23 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen "scope": { "files": { "atrulePrelude.cjs": { - "offset": 4340220, + "offset": 4340010, "size": 150, }, "default.cjs": { - "offset": 4340360, + "offset": 4340150, "size": 2250, }, "index.cjs": { - "offset": 4342610, + "offset": 4342400, "size": 250, }, "selector.cjs": { - "offset": 4342860, + "offset": 4342640, "size": 2540, }, "value.cjs": { - "offset": 4345400, + "offset": 4345180, "size": 730, }, }, @@ -31181,35 +31181,35 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen "tokenizer": { "files": { "OffsetToLocation.cjs": { - "offset": 4346130, + "offset": 4345910, "size": 2580, }, "TokenStream.cjs": { - "offset": 4348700, + "offset": 4348480, "size": 9610, }, "adopt-buffer.cjs": { - "offset": 4358300, + "offset": 4358090, "size": 270, }, "char-code-definitions.cjs": { - "offset": 4358570, + "offset": 4358360, "size": 7200, }, "index.cjs": { - "offset": 4365770, + "offset": 4365550, "size": 23720, }, "names.cjs": { - "offset": 4389490, + "offset": 4389270, "size": 570, }, "types.cjs": { - "offset": 4390050, + "offset": 4389840, "size": 2110, }, "utils.cjs": { - "offset": 4392160, + "offset": 4391940, "size": 8440, }, }, @@ -31217,51 +31217,51 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen "utils": { "files": { "List.cjs": { - "offset": 4400600, + "offset": 4400380, "size": 12830, }, "clone.cjs": { - "offset": 4413420, + "offset": 4413210, "size": 510, }, "create-custom-error.cjs": { - "offset": 4413930, + "offset": 4413710, "size": 540, }, "ident.cjs": { - "offset": 4414460, + "offset": 4414240, "size": 3530, }, "index.cjs": { - "offset": 4417980, + "offset": 4417770, "size": 530, }, "names.cjs": { - "offset": 4418510, + "offset": 4418290, "size": 3070, }, "string.cjs": { - "offset": 4421570, + "offset": 4421360, "size": 3300, }, "url.cjs": { - "offset": 4424870, + "offset": 4424650, "size": 3370, }, }, }, "version.cjs": { - "offset": 4428230, + "offset": 4428020, "size": 100, }, "walker": { "files": { "create.cjs": { - "offset": 4428320, + "offset": 4428110, "size": 7540, }, "index.cjs": { - "offset": 4435860, + "offset": 4435640, "size": 190, }, }, @@ -31271,7 +31271,7 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen "data": { "files": { "patch.json": { - "offset": 4436040, + "offset": 4435830, "size": 52540, }, }, @@ -31279,27 +31279,27 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen "dist": { "files": { "csstree.esm.js": { - "offset": 4488580, + "offset": 4488360, "size": 192160, }, "csstree.js": { - "offset": 4680730, + "offset": 4680520, "size": 192280, }, "data.cjs": { - "offset": 4873010, + "offset": 4872790, "size": 89730, }, "data.js": { - "offset": 4962730, + "offset": 4962510, "size": 89730, }, "version.cjs": { - "offset": 5052450, + "offset": 5052230, "size": 30, }, "version.js": { - "offset": 5052480, + "offset": 5052260, "size": 40, }, }, @@ -31309,48 +31309,48 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen "convertor": { "files": { "create.js": { - "offset": 5052510, + "offset": 5052290, "size": 760, }, "index.js": { - "offset": 5053260, + "offset": 5053050, "size": 130, }, }, }, "data-patch.js": { - "offset": 5053390, + "offset": 5053180, "size": 160, }, "data.js": { "executable": true, - "offset": 5053550, + "offset": 5053330, "size": 3540, }, "definition-syntax": { "files": { "SyntaxError.js": { - "offset": 5057080, + "offset": 5056860, "size": 410, }, "generate.js": { - "offset": 5057490, + "offset": 5057270, "size": 3420, }, "index.js": { - "offset": 5060910, + "offset": 5060690, "size": 160, }, "parse.js": { - "offset": 5061070, + "offset": 5060850, "size": 13730, }, "scanner.js": { - "offset": 5074790, + "offset": 5074580, "size": 2650, }, "walk.js": { - "offset": 5077440, + "offset": 5077230, "size": 1270, }, }, @@ -31358,83 +31358,83 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen "generator": { "files": { "create.js": { - "offset": 5078710, + "offset": 5078500, "size": 2630, }, "index.js": { - "offset": 5081340, + "offset": 5081130, "size": 140, }, "sourceMap.js": { - "offset": 5081480, + "offset": 5081270, "size": 2610, }, "token-before.js": { - "offset": 5084090, + "offset": 5083870, "size": 4410, }, }, }, "index.js": { - "offset": 5088490, + "offset": 5088280, "size": 780, }, "lexer": { "files": { "Lexer.js": { - "offset": 5089260, + "offset": 5089050, "size": 16890, }, "error.js": { - "offset": 5106150, + "offset": 5105930, "size": 3340, }, "generic-an-plus-b.js": { - "offset": 5109480, + "offset": 5109270, "size": 6690, }, "generic-const.js": { - "offset": 5116170, + "offset": 5115950, "size": 160, }, "generic-urange.js": { - "offset": 5116330, + "offset": 5116110, "size": 4330, }, "generic.js": { - "offset": 5120650, + "offset": 5120440, "size": 17750, }, "index.js": { - "offset": 5138400, + "offset": 5138180, "size": 40, }, "match-graph.js": { - "offset": 5138440, + "offset": 5138220, "size": 15320, }, "match.js": { - "offset": 5153750, + "offset": 5153530, "size": 19520, }, "prepare-tokens.js": { - "offset": 5173260, + "offset": 5173040, "size": 1100, }, "search.js": { - "offset": 5174350, + "offset": 5174140, "size": 1590, }, "structure.js": { - "offset": 5175940, + "offset": 5175720, "size": 5260, }, "trace.js": { - "offset": 5181190, + "offset": 5180970, "size": 1640, }, "units.js": { - "offset": 5182830, + "offset": 5182610, "size": 1540, }, }, @@ -31442,23 +31442,23 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen "parser": { "files": { "SyntaxError.js": { - "offset": 5184370, + "offset": 5184150, "size": 2550, }, "create.js": { - "offset": 5186910, + "offset": 5186700, "size": 10720, }, "index.js": { - "offset": 5197630, + "offset": 5197410, "size": 140, }, "parse-selector.js": { - "offset": 5197760, + "offset": 5197540, "size": 140, }, "sequence.js": { - "offset": 5197900, + "offset": 5197680, "size": 990, }, }, @@ -31468,47 +31468,47 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen "atrule": { "files": { "container.js": { - "offset": 5198880, + "offset": 5198670, "size": 850, }, "font-face.js": { - "offset": 5199720, + "offset": 5199510, "size": 130, }, "import.js": { - "offset": 5199850, + "offset": 5199640, "size": 2710, }, "index.js": { - "offset": 5202560, + "offset": 5202350, "size": 560, }, "layer.js": { - "offset": 5203120, + "offset": 5202900, "size": 230, }, "media.js": { - "offset": 5203350, + "offset": 5203130, "size": 250, }, "nest.js": { - "offset": 5203600, + "offset": 5203380, "size": 240, }, "page.js": { - "offset": 5203830, + "offset": 5203610, "size": 240, }, "scope.js": { - "offset": 5204060, + "offset": 5203840, "size": 250, }, "starting-style.js": { - "offset": 5204300, + "offset": 5204080, "size": 150, }, "supports.js": { - "offset": 5204440, + "offset": 5204230, "size": 260, }, }, @@ -31516,263 +31516,263 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen "config": { "files": { "generator.js": { - "offset": 5204700, + "offset": 5204480, "size": 90, }, "lexer.js": { - "offset": 5204780, + "offset": 5204560, "size": 240, }, "mix.js": { - "offset": 5205020, + "offset": 5204800, "size": 3840, }, "parser-selector.js": { - "offset": 5208850, + "offset": 5208630, "size": 360, }, "parser.js": { - "offset": 5209200, + "offset": 5208990, "size": 1160, }, "walker.js": { - "offset": 5210360, + "offset": 5210140, "size": 80, }, }, }, "create.js": { - "offset": 5210430, + "offset": 5210220, "size": 1610, }, "function": { "files": { "expression.js": { - "offset": 5212040, + "offset": 5211820, "size": 160, }, "var.js": { - "offset": 5212190, + "offset": 5211980, "size": 1140, }, }, }, "index.js": { - "offset": 5213330, + "offset": 5213110, "size": 280, }, "node": { "files": { "AnPlusB.js": { - "offset": 5213600, + "offset": 5213390, "size": 7840, }, "Atrule.js": { - "offset": 5221440, + "offset": 5221230, "size": 2400, }, "AtrulePrelude.js": { - "offset": 5223840, + "offset": 5223630, "size": 1040, }, "AttributeSelector.js": { - "offset": 5224880, + "offset": 5224660, "size": 3570, }, "Block.js": { - "offset": 5228440, + "offset": 5228230, "size": 2250, }, "Brackets.js": { - "offset": 5230690, + "offset": 5230470, "size": 690, }, "CDC.js": { - "offset": 5231380, + "offset": 5231160, "size": 360, }, "CDO.js": { - "offset": 5231730, + "offset": 5231510, "size": 360, }, "ClassSelector.js": { - "offset": 5232080, + "offset": 5231870, "size": 520, }, "Combinator.js": { - "offset": 5232600, + "offset": 5232380, "size": 1340, }, "Comment.js": { - "offset": 5233930, + "offset": 5233720, "size": 750, }, "Condition.js": { - "offset": 5234680, + "offset": 5234470, "size": 2940, }, "Declaration.js": { - "offset": 5237610, + "offset": 5237400, "size": 4400, }, "DeclarationList.js": { - "offset": 5242010, + "offset": 5241790, "size": 1420, }, "Dimension.js": { - "offset": 5243420, + "offset": 5243210, "size": 540, }, "Feature.js": { - "offset": 5243960, + "offset": 5243750, "size": 2320, }, "FeatureFunction.js": { - "offset": 5246280, + "offset": 5246060, "size": 1520, }, "FeatureRange.js": { - "offset": 5247790, + "offset": 5247570, "size": 3310, }, "Function.js": { - "offset": 5251090, + "offset": 5250880, "size": 980, }, "GeneralEnclosed.js": { - "offset": 5252070, + "offset": 5251850, "size": 1500, }, "Hash.js": { - "offset": 5253560, + "offset": 5253350, "size": 470, }, "IdSelector.js": { - "offset": 5254030, + "offset": 5253820, "size": 750, }, "Identifier.js": { - "offset": 5254780, + "offset": 5254560, "size": 380, }, "Layer.js": { - "offset": 5255160, + "offset": 5254940, "size": 590, }, "LayerList.js": { - "offset": 5255740, + "offset": 5255520, "size": 670, }, "MediaQuery.js": { - "offset": 5256400, + "offset": 5256190, "size": 2490, }, "MediaQueryList.js": { - "offset": 5258880, + "offset": 5258670, "size": 630, }, "NestingSelector.js": { - "offset": 5259510, + "offset": 5259300, "size": 440, }, "Nth.js": { - "offset": 5259950, + "offset": 5259740, "size": 950, }, "Number.js": { - "offset": 5260900, + "offset": 5260680, "size": 400, }, "Operator.js": { - "offset": 5261290, + "offset": 5261080, "size": 410, }, "Parentheses.js": { - "offset": 5261700, + "offset": 5261490, "size": 700, }, "Percentage.js": { - "offset": 5262400, + "offset": 5262180, "size": 410, }, "PseudoClassSelector.js": { - "offset": 5262800, + "offset": 5262590, "size": 1570, }, "PseudoElementSelector.js": { - "offset": 5264370, + "offset": 5264150, "size": 1620, }, "Ratio.js": { - "offset": 5265980, + "offset": 5265770, "size": 2000, }, "Raw.js": { - "offset": 5267980, + "offset": 5267760, "size": 1050, }, "Rule.js": { - "offset": 5269030, + "offset": 5268810, "size": 1120, }, "Scope.js": { - "offset": 5270140, + "offset": 5269920, "size": 1510, }, "Selector.js": { - "offset": 5271640, + "offset": 5271430, "size": 670, }, "SelectorList.js": { - "offset": 5272310, + "offset": 5272090, "size": 680, }, "String.js": { - "offset": 5272990, + "offset": 5272770, "size": 480, }, "StyleSheet.js": { - "offset": 5273460, + "offset": 5273240, "size": 1930, }, "SupportsDeclaration.js": { - "offset": 5275380, + "offset": 5275170, "size": 700, }, "TypeSelector.js": { - "offset": 5276080, + "offset": 5275860, "size": 1090, }, "UnicodeRange.js": { - "offset": 5277170, + "offset": 5276950, "size": 4360, }, "Url.js": { - "offset": 5281530, + "offset": 5281310, "size": 1250, }, "Value.js": { - "offset": 5282770, + "offset": 5282560, "size": 380, }, "WhiteSpace.js": { - "offset": 5283150, + "offset": 5282930, "size": 550, }, "index-generate.js": { - "offset": 5283690, + "offset": 5283480, "size": 2790, }, "index-parse-selector.js": { - "offset": 5286480, + "offset": 5286260, "size": 970, }, "index-parse.js": { - "offset": 5287440, + "offset": 5287230, "size": 2640, }, "index.js": { - "offset": 5290080, + "offset": 5289870, "size": 2250, }, }, @@ -31780,11 +31780,11 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen "pseudo": { "files": { "index.js": { - "offset": 5292330, + "offset": 5292110, "size": 1050, }, "lang.js": { - "offset": 5293370, + "offset": 5293150, "size": 790, }, }, @@ -31792,23 +31792,23 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen "scope": { "files": { "atrulePrelude.js": { - "offset": 5294150, + "offset": 5293940, "size": 70, }, "default.js": { - "offset": 5294220, + "offset": 5294000, "size": 2360, }, "index.js": { - "offset": 5296580, + "offset": 5296360, "size": 170, }, "selector.js": { - "offset": 5296740, + "offset": 5296530, "size": 2570, }, "value.js": { - "offset": 5299300, + "offset": 5299090, "size": 670, }, }, @@ -31818,35 +31818,35 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen "tokenizer": { "files": { "OffsetToLocation.js": { - "offset": 5299970, + "offset": 5299760, "size": 2460, }, "TokenStream.js": { - "offset": 5302430, + "offset": 5302210, "size": 9620, }, "adopt-buffer.js": { - "offset": 5312050, + "offset": 5311830, "size": 230, }, "char-code-definitions.js": { - "offset": 5312270, + "offset": 5312060, "size": 6530, }, "index.js": { - "offset": 5318800, + "offset": 5318580, "size": 20670, }, "names.js": { - "offset": 5339470, + "offset": 5339250, "size": 520, }, "types.js": { - "offset": 5339990, + "offset": 5339770, "size": 1490, }, "utils.js": { - "offset": 5341470, + "offset": 5341260, "size": 7820, }, }, @@ -31854,51 +31854,51 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen "utils": { "files": { "List.js": { - "offset": 5349290, + "offset": 5349080, "size": 12800, }, "clone.js": { - "offset": 5362090, + "offset": 5361870, "size": 470, }, "create-custom-error.js": { - "offset": 5362550, + "offset": 5362340, "size": 480, }, "ident.js": { - "offset": 5363030, + "offset": 5362820, "size": 3410, }, "index.js": { - "offset": 5366430, + "offset": 5366220, "size": 200, }, "names.js": { - "offset": 5366620, + "offset": 5366410, "size": 2940, }, "string.js": { - "offset": 5369560, + "offset": 5369350, "size": 3180, }, "url.js": { - "offset": 5372740, + "offset": 5372520, "size": 3230, }, }, }, "version.js": { - "offset": 5375960, + "offset": 5375750, "size": 150, }, "walker": { "files": { "create.js": { - "offset": 5376110, + "offset": 5375890, "size": 7490, }, "index.js": { - "offset": 5383600, + "offset": 5383380, "size": 140, }, }, @@ -31906,7 +31906,7 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen }, }, "package.json": { - "offset": 5383730, + "offset": 5383510, "size": 2650, }, }, @@ -31914,351 +31914,351 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen "cssstyle": { "files": { "LICENSE": { - "offset": 5386370, + "offset": 5386160, "size": 1050, }, "lib": { "files": { "CSSStyleDeclaration.js": { - "offset": 5387420, + "offset": 5387210, "size": 19120, }, "generated": { "files": { "allProperties.js": { - "offset": 5406530, + "offset": 5406320, "size": 13620, }, "implementedProperties.js": { - "offset": 5420150, + "offset": 5419940, "size": 46890, }, "properties.js": { - "offset": 5467040, + "offset": 5466830, "size": 232600, }, "propertyDefinitions.js": { - "offset": 5699640, + "offset": 5699430, "size": 406290, }, }, }, "normalize.js": { - "offset": 6105930, + "offset": 6105710, "size": 54450, }, "parsers.js": { - "offset": 6160380, + "offset": 6160160, "size": 22440, }, "properties": { "files": { "background.js": { - "offset": 6182820, + "offset": 6182600, "size": 13540, }, "backgroundAttachment.js": { - "offset": 6196350, + "offset": 6196140, "size": 1530, }, "backgroundClip.js": { - "offset": 6197880, + "offset": 6197670, "size": 1530, }, "backgroundColor.js": { - "offset": 6199410, + "offset": 6199190, "size": 1200, }, "backgroundImage.js": { - "offset": 6200610, + "offset": 6200390, "size": 1560, }, "backgroundOrigin.js": { - "offset": 6202160, + "offset": 6201950, "size": 1530, }, "backgroundPosition.js": { - "offset": 6203690, + "offset": 6203470, "size": 6540, }, "backgroundRepeat.js": { - "offset": 6210230, + "offset": 6210010, "size": 2460, }, "backgroundSize.js": { - "offset": 6212680, + "offset": 6212460, "size": 3390, }, "border.js": { - "offset": 6216070, + "offset": 6215850, "size": 2960, }, "borderBottom.js": { - "offset": 6219030, + "offset": 6218810, "size": 2820, }, "borderBottomColor.js": { - "offset": 6221850, + "offset": 6221630, "size": 1480, }, "borderBottomStyle.js": { - "offset": 6223320, + "offset": 6223110, "size": 1480, }, "borderBottomWidth.js": { - "offset": 6224800, + "offset": 6224590, "size": 1530, }, "borderCollapse.js": { - "offset": 6226330, + "offset": 6226110, "size": 1030, }, "borderColor.js": { - "offset": 6227350, + "offset": 6227140, "size": 2790, }, "borderLeft.js": { - "offset": 6230140, + "offset": 6229930, "size": 2780, }, "borderLeftColor.js": { - "offset": 6232910, + "offset": 6232700, "size": 1480, }, "borderLeftStyle.js": { - "offset": 6234390, + "offset": 6234170, "size": 1480, }, "borderLeftWidth.js": { - "offset": 6235860, + "offset": 6235650, "size": 1520, }, "borderRight.js": { - "offset": 6237380, + "offset": 6237160, "size": 2800, }, "borderRightColor.js": { - "offset": 6240180, + "offset": 6239960, "size": 1480, }, "borderRightStyle.js": { - "offset": 6241650, + "offset": 6241430, "size": 1480, }, "borderRightWidth.js": { - "offset": 6243130, + "offset": 6242910, "size": 1530, }, "borderSpacing.js": { - "offset": 6244650, + "offset": 6244430, "size": 1480, }, "borderStyle.js": { - "offset": 6246130, + "offset": 6245910, "size": 2800, }, "borderTop.js": { - "offset": 6248920, + "offset": 6248700, "size": 2750, }, "borderTopColor.js": { - "offset": 6251670, + "offset": 6251450, "size": 1480, }, "borderTopStyle.js": { - "offset": 6253140, + "offset": 6252920, "size": 1480, }, "borderTopWidth.js": { - "offset": 6254610, + "offset": 6254400, "size": 1520, }, "borderWidth.js": { - "offset": 6256130, + "offset": 6255910, "size": 2820, }, "bottom.js": { - "offset": 6258940, + "offset": 6258730, "size": 1050, }, "clear.js": { - "offset": 6259990, + "offset": 6259780, "size": 1020, }, "clip.js": { - "offset": 6261010, + "offset": 6260790, "size": 1850, }, "color.js": { - "offset": 6262860, + "offset": 6262640, "size": 1020, }, "display.js": { - "offset": 6263870, + "offset": 6263650, "size": 6110, }, "flex.js": { - "offset": 6269970, + "offset": 6269760, "size": 5290, }, "flexBasis.js": { - "offset": 6275260, + "offset": 6275050, "size": 1240, }, "flexGrow.js": { - "offset": 6276490, + "offset": 6276280, "size": 1230, }, "flexShrink.js": { - "offset": 6277720, + "offset": 6277510, "size": 1230, }, "float.js": { - "offset": 6278950, + "offset": 6278730, "size": 1020, }, "floodColor.js": { - "offset": 6279960, + "offset": 6279750, "size": 1030, }, "font.js": { - "offset": 6280990, + "offset": 6280770, "size": 8710, }, "fontFamily.js": { - "offset": 6289700, + "offset": 6289480, "size": 2550, }, "fontSize.js": { - "offset": 6292240, + "offset": 6292030, "size": 1240, }, "fontStyle.js": { - "offset": 6293480, + "offset": 6293260, "size": 1730, }, "fontVariant.js": { - "offset": 6295200, + "offset": 6294980, "size": 1640, }, "fontWeight.js": { - "offset": 6296840, + "offset": 6296620, "size": 1320, }, "height.js": { - "offset": 6298150, + "offset": 6297930, "size": 1070, }, "left.js": { - "offset": 6299210, + "offset": 6299000, "size": 1050, }, "lightingColor.js": { - "offset": 6300260, + "offset": 6300040, "size": 1030, }, "lineHeight.js": { - "offset": 6301280, + "offset": 6301070, "size": 1220, }, "margin.js": { - "offset": 6302490, + "offset": 6302280, "size": 1930, }, "marginBottom.js": { - "offset": 6304420, + "offset": 6304210, "size": 1290, }, "marginLeft.js": { - "offset": 6305710, + "offset": 6305490, "size": 1280, }, "marginRight.js": { - "offset": 6306990, + "offset": 6306770, "size": 1290, }, "marginTop.js": { - "offset": 6308270, + "offset": 6308050, "size": 1280, }, "opacity.js": { - "offset": 6309550, + "offset": 6309330, "size": 1050, }, "outlineColor.js": { - "offset": 6310590, + "offset": 6310380, "size": 1030, }, "padding.js": { - "offset": 6311620, + "offset": 6311400, "size": 1970, }, "paddingBottom.js": { - "offset": 6313580, + "offset": 6313360, "size": 1300, }, "paddingLeft.js": { - "offset": 6314880, + "offset": 6314660, "size": 1300, }, "paddingRight.js": { - "offset": 6316180, + "offset": 6315960, "size": 1300, }, "paddingTop.js": { - "offset": 6317470, + "offset": 6317260, "size": 1300, }, "right.js": { - "offset": 6318770, + "offset": 6318550, "size": 1050, }, "stopColor.js": { - "offset": 6319820, + "offset": 6319600, "size": 1020, }, "top.js": { - "offset": 6320840, + "offset": 6320620, "size": 1050, }, "webkitBorderAfterColor.js": { - "offset": 6321880, + "offset": 6321660, "size": 1040, }, "webkitBorderBeforeColor.js": { - "offset": 6322920, + "offset": 6322700, "size": 1040, }, "webkitBorderEndColor.js": { - "offset": 6323950, + "offset": 6323740, "size": 1040, }, "webkitBorderStartColor.js": { - "offset": 6324990, + "offset": 6324770, "size": 1040, }, "webkitColumnRuleColor.js": { - "offset": 6326020, + "offset": 6325810, "size": 1040, }, "webkitTapHighlightColor.js": { - "offset": 6327060, + "offset": 6326840, "size": 1040, }, "webkitTextEmphasisColor.js": { - "offset": 6328100, + "offset": 6327880, "size": 1040, }, "webkitTextFillColor.js": { - "offset": 6329130, + "offset": 6328920, "size": 1040, }, "webkitTextStrokeColor.js": { - "offset": 6330170, + "offset": 6329950, "size": 1040, }, "width.js": { - "offset": 6331200, + "offset": 6330980, "size": 1070, }, }, @@ -32266,19 +32266,19 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen "utils": { "files": { "allExtraProperties.js": { - "offset": 6332260, + "offset": 6332050, "size": 3390, }, "camelize.js": { - "offset": 6335650, + "offset": 6335430, "size": 1090, }, "propertyDescriptors.js": { - "offset": 6336730, + "offset": 6336510, "size": 1580, }, "strings.js": { - "offset": 6338310, + "offset": 6338090, "size": 5600, }, }, @@ -32286,7 +32286,7 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen }, }, "package.json": { - "offset": 6343910, + "offset": 6343690, "size": 1010, }, }, @@ -32294,23 +32294,23 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen "data-urls": { "files": { "LICENSE.txt": { - "offset": 6344910, + "offset": 6344690, "size": 1070, }, "lib": { "files": { "parser.js": { - "offset": 6345980, + "offset": 6345760, "size": 1690, }, "utils.js": { - "offset": 6347660, + "offset": 6347450, "size": 470, }, }, }, "package.json": { - "offset": 6348120, + "offset": 6347910, "size": 700, }, }, @@ -32318,29 +32318,29 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen "debug": { "files": { "LICENSE": { - "offset": 6348820, + "offset": 6348610, "size": 1140, }, "package.json": { - "offset": 6349960, + "offset": 6349750, "size": 910, }, "src": { "files": { "browser.js": { - "offset": 6350870, + "offset": 6350660, "size": 6110, }, "common.js": { - "offset": 6356980, + "offset": 6356760, "size": 6920, }, "index.js": { - "offset": 6363890, + "offset": 6363670, "size": 320, }, "node.js": { - "offset": 6364200, + "offset": 6363990, "size": 4730, }, }, @@ -32350,19 +32350,19 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen "decimal.js": { "files": { "LICENCE.md": { - "offset": 6368930, + "offset": 6368720, "size": 1110, }, "decimal.js": { - "offset": 6370040, + "offset": 6369820, "size": 136680, }, "decimal.mjs": { - "offset": 6506710, + "offset": 6506490, "size": 127790, }, "package.json": { - "offset": 6634500, + "offset": 6634280, "size": 880, }, }, @@ -32370,11 +32370,11 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen "entities": { "files": { "LICENSE": { - "offset": 6635370, + "offset": 6635150, "size": 1260, }, "decode.js": { - "offset": 6636630, + "offset": 6636410, "size": 150, }, "dist": { @@ -32382,107 +32382,107 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen "commonjs": { "files": { "decode-codepoint.d.ts.map": { - "offset": 6636780, + "offset": 6636560, "size": 350, }, "decode-codepoint.js": { - "offset": 6637130, + "offset": 6636910, "size": 2290, }, "decode-codepoint.js.map": { - "offset": 6639420, + "offset": 6639200, "size": 1850, }, "decode.d.ts.map": { - "offset": 6641260, + "offset": 6641050, "size": 2100, }, "decode.js": { - "offset": 6643360, + "offset": 6643150, "size": 21470, }, "decode.js.map": { - "offset": 6664830, + "offset": 6664610, "size": 11840, }, "encode.d.ts.map": { - "offset": 6676660, + "offset": 6676450, "size": 260, }, "encode.js": { - "offset": 6676910, + "offset": 6676700, "size": 2870, }, "encode.js.map": { - "offset": 6679780, + "offset": 6679560, "size": 1820, }, "escape.d.ts.map": { - "offset": 6681590, + "offset": 6681380, "size": 590, }, "escape.js": { - "offset": 6682170, + "offset": 6681960, "size": 4290, }, "escape.js.map": { - "offset": 6686460, + "offset": 6686250, "size": 2840, }, "generated": { "files": { "decode-data-html.d.ts.map": { - "offset": 6689300, + "offset": 6689080, "size": 180, }, "decode-data-html.js": { - "offset": 6689480, + "offset": 6689260, "size": 47860, }, "decode-data-html.js.map": { - "offset": 6737340, + "offset": 6737120, "size": 340, }, "decode-data-xml.d.ts.map": { - "offset": 6737680, + "offset": 6737460, "size": 180, }, "decode-data-xml.js": { - "offset": 6737850, + "offset": 6737630, "size": 420, }, "decode-data-xml.js.map": { - "offset": 6738260, + "offset": 6738050, "size": 340, }, "encode-html.d.ts.map": { - "offset": 6738600, + "offset": 6738380, "size": 360, }, "encode-html.js": { - "offset": 6738950, + "offset": 6738730, "size": 27230, }, "encode-html.js.map": { - "offset": 6766180, + "offset": 6765960, "size": 48200, }, }, }, "index.d.ts.map": { - "offset": 6814370, + "offset": 6814160, "size": 1340, }, "index.js": { - "offset": 6815710, + "offset": 6815490, "size": 7250, }, "index.js.map": { - "offset": 6822960, + "offset": 6822740, "size": 2730, }, "package.json": { - "offset": 6825680, + "offset": 6825460, "size": 30, }, }, @@ -32490,107 +32490,107 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen "esm": { "files": { "decode-codepoint.d.ts.map": { - "offset": 6825710, + "offset": 6825490, "size": 350, }, "decode-codepoint.js": { - "offset": 6826050, + "offset": 6825840, "size": 2100, }, "decode-codepoint.js.map": { - "offset": 6828150, + "offset": 6827940, "size": 1840, }, "decode.d.ts.map": { - "offset": 6829990, + "offset": 6829770, "size": 2100, }, "decode.js": { - "offset": 6832080, + "offset": 6831870, "size": 20170, }, "decode.js.map": { - "offset": 6852250, + "offset": 6852030, "size": 11900, }, "encode.d.ts.map": { - "offset": 6864150, + "offset": 6863930, "size": 260, }, "encode.js": { - "offset": 6864400, + "offset": 6864180, "size": 2680, }, "encode.js.map": { - "offset": 6867080, + "offset": 6866860, "size": 1860, }, "escape.d.ts.map": { - "offset": 6868930, + "offset": 6868720, "size": 590, }, "escape.js": { - "offset": 6869510, + "offset": 6869300, "size": 4090, }, "escape.js.map": { - "offset": 6873590, + "offset": 6873380, "size": 2900, }, "generated": { "files": { "decode-data-html.d.ts.map": { - "offset": 6876490, + "offset": 6876270, "size": 180, }, "decode-data-html.js": { - "offset": 6876670, + "offset": 6876450, "size": 47780, }, "decode-data-html.js.map": { - "offset": 6924440, + "offset": 6924220, "size": 360, }, "decode-data-xml.d.ts.map": { - "offset": 6924800, + "offset": 6924580, "size": 180, }, "decode-data-xml.js": { - "offset": 6924970, + "offset": 6924750, "size": 330, }, "decode-data-xml.js.map": { - "offset": 6925300, + "offset": 6925080, "size": 350, }, "encode-html.d.ts.map": { - "offset": 6925640, + "offset": 6925430, "size": 360, }, "encode-html.js": { - "offset": 6926000, + "offset": 6925780, "size": 27150, }, "encode-html.js.map": { - "offset": 6953140, + "offset": 6952930, "size": 48220, }, }, }, "index.d.ts.map": { - "offset": 7001360, + "offset": 7001140, "size": 1340, }, "index.js": { - "offset": 7002690, + "offset": 7002480, "size": 4350, }, "index.js.map": { - "offset": 7007040, + "offset": 7006820, "size": 2710, }, "package.json": { - "offset": 7009750, + "offset": 7009530, "size": 30, }, }, @@ -32598,69 +32598,69 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen }, }, "escape.js": { - "offset": 7009770, + "offset": 7009550, "size": 150, }, "package.json": { - "offset": 7009920, + "offset": 7009700, "size": 2260, }, "src": { "files": { "decode-codepoint.ts": { - "offset": 7012170, + "offset": 7011950, "size": 2170, }, "decode.spec.ts": { - "offset": 7014340, + "offset": 7014120, "size": 11680, }, "decode.ts": { - "offset": 7026020, + "offset": 7025800, "size": 20300, }, "encode.spec.ts": { - "offset": 7046320, + "offset": 7046100, "size": 3320, }, "encode.ts": { - "offset": 7049630, + "offset": 7049410, "size": 2740, }, "escape.spec.ts": { - "offset": 7052370, + "offset": 7052150, "size": 500, }, "escape.ts": { - "offset": 7052870, + "offset": 7052650, "size": 4620, }, "generated": { "files": { ".eslintrc.json": { - "offset": 7057480, + "offset": 7057270, "size": 250, }, "decode-data-html.ts": { - "offset": 7057730, + "offset": 7057520, "size": 47760, }, "decode-data-xml.ts": { - "offset": 7105490, + "offset": 7105270, "size": 320, }, "encode-html.ts": { - "offset": 7105800, + "offset": 7105590, "size": 24040, }, }, }, "index.spec.ts": { - "offset": 7129840, + "offset": 7129620, "size": 4370, }, "index.ts": { - "offset": 7134210, + "offset": 7133990, "size": 4990, }, }, @@ -32670,19 +32670,19 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen "html-encoding-sniffer": { "files": { "LICENSE.txt": { - "offset": 7139190, + "offset": 7138980, "size": 1070, }, "lib": { "files": { "html-encoding-sniffer.js": { - "offset": 7140260, + "offset": 7140050, "size": 7810, }, }, }, "package.json": { - "offset": 7148070, + "offset": 7147850, "size": 640, }, }, @@ -32690,27 +32690,27 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen "http-proxy-agent": { "files": { "LICENSE": { - "offset": 7148700, + "offset": 7148480, "size": 1110, }, "dist": { "files": { "index.d.ts.map": { - "offset": 7149800, + "offset": 7149590, "size": 1670, }, "index.js": { - "offset": 7151470, + "offset": 7151250, "size": 6090, }, "index.js.map": { - "offset": 7157560, + "offset": 7157340, "size": 4140, }, }, }, "package.json": { - "offset": 7161690, + "offset": 7161470, "size": 850, }, }, @@ -32718,39 +32718,39 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen "https-proxy-agent": { "files": { "LICENSE": { - "offset": 7162530, + "offset": 7162320, "size": 1110, }, "dist": { "files": { "index.d.ts.map": { - "offset": 7163630, + "offset": 7163420, "size": 1400, }, "index.js": { - "offset": 7165030, + "offset": 7164810, "size": 7460, }, "index.js.map": { - "offset": 7172480, + "offset": 7172260, "size": 4600, }, "parse-proxy-response.d.ts.map": { - "offset": 7177070, + "offset": 7176850, "size": 450, }, "parse-proxy-response.js": { - "offset": 7177520, + "offset": 7177300, "size": 3910, }, "parse-proxy-response.js.map": { - "offset": 7181430, + "offset": 7181210, "size": 2950, }, }, }, "package.json": { - "offset": 7184370, + "offset": 7184160, "size": 910, }, }, @@ -32758,16 +32758,16 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen "is-potential-custom-element-name": { "files": { "LICENSE-MIT.txt": { - "offset": 7185280, + "offset": 7185060, "size": 1080, }, "index.js": { "executable": true, - "offset": 7186350, + "offset": 7186140, "size": 580, }, "package.json": { - "offset": 7186930, + "offset": 7186710, "size": 680, }, }, @@ -32775,13 +32775,13 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen "jsdom": { "files": { "LICENSE.txt": { - "offset": 7187600, + "offset": 7187390, "size": 1060, }, "lib": { "files": { "api.js": { - "offset": 7188660, + "offset": 7188440, "size": 10620, }, "jsdom": { @@ -32789,33 +32789,33 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen "browser": { "files": { "Window.js": { - "offset": 7199270, + "offset": 7199060, "size": 33170, }, "default-stylesheet.css": { - "offset": 7232440, + "offset": 7232220, "size": 11710, }, "js-globals.json": { - "offset": 7244150, + "offset": 7243930, "size": 6230, }, "not-implemented.js": { - "offset": 7250370, + "offset": 7250150, "size": 530, }, "parser": { "files": { "html.js": { - "offset": 7250900, + "offset": 7250680, "size": 7130, }, "index.js": { - "offset": 7258030, + "offset": 7257810, "size": 1040, }, "xml.js": { - "offset": 7259060, + "offset": 7258840, "size": 7000, }, }, @@ -32823,27 +32823,27 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen "resources": { "files": { "async-resource-queue.js": { - "offset": 7266050, + "offset": 7265840, "size": 2200, }, "no-op-resource-loader.js": { - "offset": 7268250, + "offset": 7268030, "size": 180, }, "per-document-resource-loader.js": { - "offset": 7268420, + "offset": 7268210, "size": 2790, }, "request-manager.js": { - "offset": 7271210, + "offset": 7270990, "size": 580, }, "resource-loader.js": { - "offset": 7271780, + "offset": 7271570, "size": 4420, }, "resource-queue.js": { - "offset": 7276200, + "offset": 7275990, "size": 2900, }, }, @@ -32853,7 +32853,7 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen "level2": { "files": { "style.js": { - "offset": 7279100, + "offset": 7278880, "size": 2740, }, }, @@ -32861,7 +32861,7 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen "level3": { "files": { "xpath.js": { - "offset": 7281830, + "offset": 7281610, "size": 70490, }, }, @@ -32871,11 +32871,11 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen "aborting": { "files": { "AbortController-impl.js": { - "offset": 7352310, + "offset": 7352100, "size": 320, }, "AbortSignal-impl.js": { - "offset": 7352630, + "offset": 7352420, "size": 3580, }, }, @@ -32883,27 +32883,27 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen "attributes": { "files": { "Attr-impl.js": { - "offset": 7365070, + "offset": 7364850, "size": 1520, }, "NamedNodeMap-impl.js": { - "offset": 7366580, + "offset": 7366360, "size": 2370, }, }, }, "attributes.js": { - "offset": 7356200, + "offset": 7355990, "size": 8870, }, "constraint-validation": { "files": { "DefaultConstraintValidation-impl.js": { - "offset": 7368950, + "offset": 7368730, "size": 2480, }, "ValidityState-impl.js": { - "offset": 7371420, + "offset": 7371210, "size": 1540, }, }, @@ -32911,7 +32911,7 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen "crypto": { "files": { "Crypto-impl.js": { - "offset": 7372960, + "offset": 7372750, "size": 2120, }, }, @@ -32919,7 +32919,7 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen "cssom": { "files": { "StyleSheetList-impl.js": { - "offset": 7375080, + "offset": 7374860, "size": 670, }, }, @@ -32927,11 +32927,11 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen "custom-elements": { "files": { "CustomElementRegistry-impl.js": { - "offset": 7375750, + "offset": 7375530, "size": 8430, }, "ElementInternals-impl.js": { - "offset": 7384170, + "offset": 7383960, "size": 1690, }, }, @@ -32939,39 +32939,39 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen "deviceorientation": { "files": { "DeviceMotionEventAcceleration-impl.js": { - "offset": 7385860, + "offset": 7385640, "size": 140, }, "DeviceMotionEventRotationRate-impl.js": { - "offset": 7385990, + "offset": 7385780, "size": 140, }, }, }, "documents.js": { - "offset": 7386120, + "offset": 7385910, "size": 600, }, "domparsing": { "files": { "DOMParser-impl.js": { - "offset": 7386720, + "offset": 7386500, "size": 1650, }, "InnerHTML-impl.js": { - "offset": 7388360, + "offset": 7388140, "size": 1040, }, "XMLSerializer-impl.js": { - "offset": 7389400, + "offset": 7389180, "size": 530, }, "parse5-adapter-serialization.js": { - "offset": 7389930, + "offset": 7389710, "size": 1930, }, "serialization.js": { - "offset": 7391850, + "offset": 7391640, "size": 1240, }, }, @@ -32979,11 +32979,11 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen "encoding": { "files": { "TextDecoder-impl.js": { - "offset": 7393090, + "offset": 7392870, "size": 620, }, "TextEncoder-impl.js": { - "offset": 7393700, + "offset": 7393480, "size": 180, }, }, @@ -32991,115 +32991,115 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen "events": { "files": { "BeforeUnloadEvent-impl.js": { - "offset": 7393880, + "offset": 7393660, "size": 320, }, "BlobEvent-impl.js": { - "offset": 7394190, + "offset": 7393980, "size": 300, }, "CloseEvent-impl.js": { - "offset": 7394490, + "offset": 7394270, "size": 300, }, "CompositionEvent-impl.js": { - "offset": 7394780, + "offset": 7394570, "size": 560, }, "CustomEvent-impl.js": { - "offset": 7395340, + "offset": 7395120, "size": 510, }, "DeviceMotionEvent-impl.js": { - "offset": 7395840, + "offset": 7395620, "size": 1850, }, "DeviceOrientationEvent-impl.js": { - "offset": 7397690, + "offset": 7397470, "size": 390, }, "ErrorEvent-impl.js": { - "offset": 7398070, + "offset": 7397850, "size": 320, }, "Event-impl.js": { - "offset": 7398380, + "offset": 7398160, "size": 4720, }, "EventModifierMixin-impl.js": { - "offset": 7403090, + "offset": 7402880, "size": 1160, }, "EventTarget-impl.js": { - "offset": 7404250, + "offset": 7404030, "size": 12600, }, "FocusEvent-impl.js": { - "offset": 7416850, + "offset": 7416630, "size": 310, }, "HashChangeEvent-impl.js": { - "offset": 7417150, + "offset": 7416930, "size": 350, }, "InputEvent-impl.js": { - "offset": 7417490, + "offset": 7417280, "size": 380, }, "KeyboardEvent-impl.js": { - "offset": 7417870, + "offset": 7417650, "size": 920, }, "MessageEvent-impl.js": { - "offset": 7418780, + "offset": 7418560, "size": 650, }, "MouseEvent-impl.js": { - "offset": 7419430, + "offset": 7419210, "size": 1980, }, "PageTransitionEvent-impl.js": { - "offset": 7421400, + "offset": 7421180, "size": 640, }, "PointerEvent-impl.js": { - "offset": 7422040, + "offset": 7421820, "size": 660, }, "PopStateEvent-impl.js": { - "offset": 7422690, + "offset": 7422480, "size": 320, }, "ProgressEvent-impl.js": { - "offset": 7423010, + "offset": 7422790, "size": 340, }, "PromiseRejectionEvent-impl.js": { - "offset": 7423340, + "offset": 7423120, "size": 350, }, "StorageEvent-impl.js": { - "offset": 7423680, + "offset": 7423470, "size": 740, }, "SubmitEvent-impl.js": { - "offset": 7424420, + "offset": 7424200, "size": 420, }, "TouchEvent-impl.js": { - "offset": 7424840, + "offset": 7424620, "size": 320, }, "TransitionEvent-impl.js": { - "offset": 7425160, + "offset": 7424940, "size": 340, }, "UIEvent-impl.js": { - "offset": 7425500, + "offset": 7425280, "size": 1340, }, "WheelEvent-impl.js": { - "offset": 7426830, + "offset": 7426620, "size": 330, }, }, @@ -33107,15 +33107,15 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen "fetch": { "files": { "Headers-impl.js": { - "offset": 7427160, + "offset": 7426940, "size": 3620, }, "header-list.js": { - "offset": 7430770, + "offset": 7430550, "size": 1360, }, "header-types.js": { - "offset": 7432120, + "offset": 7431910, "size": 2240, }, }, @@ -33123,19 +33123,19 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen "file-api": { "files": { "Blob-impl.js": { - "offset": 7434360, + "offset": 7434140, "size": 2450, }, "File-impl.js": { - "offset": 7436800, + "offset": 7436590, "size": 390, }, "FileList-impl.js": { - "offset": 7437190, + "offset": 7436970, "size": 300, }, "FileReader-impl.js": { - "offset": 7437480, + "offset": 7437270, "size": 3700, }, }, @@ -33143,1015 +33143,1015 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen "generated": { "files": { "AbortController.js": { - "offset": 7441180, + "offset": 7440960, "size": 4290, }, "AbortSignal.js": { - "offset": 7445460, + "offset": 7445240, "size": 7610, }, "AbstractRange.js": { - "offset": 7453060, + "offset": 7452850, "size": 5080, }, "AddEventListenerOptions.js": { - "offset": 7458140, + "offset": 7457920, "size": 1660, }, "AssignedNodesOptions.js": { - "offset": 7459790, + "offset": 7459580, "size": 900, }, "Attr.js": { - "offset": 7460690, + "offset": 7460470, "size": 6680, }, "BarProp.js": { - "offset": 7467360, + "offset": 7467150, "size": 3360, }, "BeforeUnloadEvent.js": { - "offset": 7470720, + "offset": 7470510, "size": 4150, }, "BinaryType.js": { - "offset": 7474870, + "offset": 7474650, "size": 420, }, "Blob.js": { - "offset": 7475280, + "offset": 7475070, "size": 6680, }, "BlobCallback.js": { - "offset": 7481960, + "offset": 7481740, "size": 830, }, "BlobEvent.js": { - "offset": 7482780, + "offset": 7482570, "size": 4750, }, "BlobEventInit.js": { - "offset": 7487530, + "offset": 7487320, "size": 1370, }, "BlobPropertyBag.js": { - "offset": 7488900, + "offset": 7488680, "size": 1260, }, "CDATASection.js": { - "offset": 7490160, + "offset": 7489940, "size": 3160, }, "CanPlayTypeResult.js": { - "offset": 7493310, + "offset": 7493100, "size": 430, }, "CharacterData.js": { - "offset": 7493740, + "offset": 7493520, "size": 15060, }, "CloseEvent.js": { - "offset": 7508790, + "offset": 7508570, "size": 5020, }, "CloseEventInit.js": { - "offset": 7513810, + "offset": 7513590, "size": 1730, }, "Comment.js": { - "offset": 7515530, + "offset": 7515320, "size": 3530, }, "CompositionEvent.js": { - "offset": 7519050, + "offset": 7518840, "size": 6780, }, "CompositionEventInit.js": { - "offset": 7525830, + "offset": 7525610, "size": 1010, }, "Crypto.js": { - "offset": 7526830, + "offset": 7526620, "size": 4510, }, "CustomElementConstructor.js": { - "offset": 7531340, + "offset": 7531130, "size": 970, }, "CustomElementRegistry.js": { - "offset": 7532310, + "offset": 7532090, "size": 9020, }, "CustomEvent.js": { - "offset": 7541320, + "offset": 7541110, "size": 6290, }, "CustomEventInit.js": { - "offset": 7547610, + "offset": 7547400, "size": 1000, }, "DOMException.js": { - "offset": 7548610, + "offset": 7548390, "size": 7700, }, "DOMImplementation.js": { - "offset": 7556310, + "offset": 7556090, "size": 7730, }, "DOMParser.js": { - "offset": 7564030, + "offset": 7563820, "size": 4290, }, "DOMRect.js": { - "offset": 7568320, + "offset": 7568100, "size": 8350, }, "DOMRectInit.js": { - "offset": 7576660, + "offset": 7576450, "size": 1980, }, "DOMRectReadOnly.js": { - "offset": 7578640, + "offset": 7578420, "size": 8350, }, "DOMStringMap.js": { - "offset": 7586990, + "offset": 7586770, "size": 8440, }, "DOMTokenList.js": { - "offset": 7595420, + "offset": 7595210, "size": 16800, }, "DeviceMotionEvent.js": { - "offset": 7612220, + "offset": 7612000, "size": 5750, }, "DeviceMotionEventAcceleration.js": { - "offset": 7617970, + "offset": 7617750, "size": 4330, }, "DeviceMotionEventAccelerationInit.js": { - "offset": 7622290, + "offset": 7622080, "size": 1810, }, "DeviceMotionEventInit.js": { - "offset": 7624090, + "offset": 7623880, "size": 2210, }, "DeviceMotionEventRotationRate.js": { - "offset": 7626290, + "offset": 7626080, "size": 4370, }, "DeviceMotionEventRotationRateInit.js": { - "offset": 7630660, + "offset": 7630450, "size": 1830, }, "DeviceOrientationEvent.js": { - "offset": 7632490, + "offset": 7632270, "size": 5620, }, "DeviceOrientationEventInit.js": { - "offset": 7638100, + "offset": 7637890, "size": 2290, }, "Document.js": { - "offset": 7640390, + "offset": 7640180, "size": 147250, }, "DocumentFragment.js": { - "offset": 7787640, + "offset": 7787420, "size": 11290, }, "DocumentReadyState.js": { - "offset": 7798920, + "offset": 7798710, "size": 440, }, "DocumentType.js": { - "offset": 7799360, + "offset": 7799140, "size": 8130, }, "Element.js": { - "offset": 7807480, + "offset": 7807270, "size": 123350, }, "ElementCreationOptions.js": { - "offset": 7930830, + "offset": 7930610, "size": 850, }, "ElementDefinitionOptions.js": { - "offset": 7931670, + "offset": 7931460, "size": 880, }, "ElementInternals.js": { - "offset": 7932550, + "offset": 7932340, "size": 70640, }, "EndingType.js": { - "offset": 8003190, + "offset": 8002970, "size": 420, }, "ErrorEvent.js": { - "offset": 8003610, + "offset": 8003390, "size": 5750, }, "ErrorEventInit.js": { - "offset": 8009350, + "offset": 8009130, "size": 2410, }, "Event.js": { - "offset": 8011750, + "offset": 8011530, "size": 13630, }, "EventHandlerNonNull.js": { - "offset": 8025380, + "offset": 8025160, "size": 1020, }, "EventInit.js": { - "offset": 8026390, + "offset": 8026170, "size": 1610, }, "EventListener.js": { - "offset": 8027990, + "offset": 8027780, "size": 990, }, "EventListenerOptions.js": { - "offset": 8028970, + "offset": 8028760, "size": 900, }, "EventModifierInit.js": { - "offset": 8029860, + "offset": 8029650, "size": 5700, }, "EventTarget.js": { - "offset": 8035560, + "offset": 8035350, "size": 8990, }, "External.js": { - "offset": 8044550, + "offset": 8044330, "size": 3860, }, "File.js": { - "offset": 8048400, + "offset": 8048180, "size": 5850, }, "FileList.js": { - "offset": 8054240, + "offset": 8054030, "size": 8320, }, "FilePropertyBag.js": { - "offset": 8062560, + "offset": 8062340, "size": 1020, }, "FileReader.js": { - "offset": 8063580, + "offset": 8063360, "size": 14850, }, "FocusEvent.js": { - "offset": 8078420, + "offset": 8078200, "size": 4350, }, "FocusEventInit.js": { - "offset": 8082760, + "offset": 8082550, "size": 1160, }, "FormData.js": { - "offset": 8083920, + "offset": 8083700, "size": 15570, }, "Function.js": { - "offset": 8099480, + "offset": 8099270, "size": 1190, }, "GetRootNodeOptions.js": { - "offset": 8100670, + "offset": 8100450, "size": 920, }, "HTMLAnchorElement.js": { - "offset": 8101580, + "offset": 8101370, "size": 32690, }, "HTMLAreaElement.js": { - "offset": 8134270, + "offset": 8134050, "size": 25970, }, "HTMLAudioElement.js": { - "offset": 8160230, + "offset": 8160020, "size": 3390, }, "HTMLBRElement.js": { - "offset": 8163620, + "offset": 8163400, "size": 4910, }, "HTMLBaseElement.js": { - "offset": 8168520, + "offset": 8168310, "size": 6160, }, "HTMLBodyElement.js": { - "offset": 8174680, + "offset": 8174470, "size": 28550, }, "HTMLButtonElement.js": { - "offset": 8203230, + "offset": 8203010, "size": 17120, }, "HTMLCanvasElement.js": { - "offset": 8220340, + "offset": 8220120, "size": 9900, }, "HTMLCollection.js": { - "offset": 8230240, + "offset": 8230020, "size": 10010, }, "HTMLDListElement.js": { - "offset": 8240250, + "offset": 8240030, "size": 5040, }, "HTMLDataElement.js": { - "offset": 8245280, + "offset": 8245060, "size": 4930, }, "HTMLDataListElement.js": { - "offset": 8250210, + "offset": 8249990, "size": 3870, }, "HTMLDetailsElement.js": { - "offset": 8254080, + "offset": 8253860, "size": 5040, }, "HTMLDialogElement.js": { - "offset": 8259110, + "offset": 8258890, "size": 5020, }, "HTMLDirectoryElement.js": { - "offset": 8264130, + "offset": 8263910, "size": 5090, }, "HTMLDivElement.js": { - "offset": 8269210, + "offset": 8269000, "size": 4920, }, "HTMLElement.js": { - "offset": 8274130, + "offset": 8273910, "size": 110310, }, "HTMLEmbedElement.js": { - "offset": 8384430, + "offset": 8384210, "size": 12350, }, "HTMLFieldSetElement.js": { - "offset": 8396770, + "offset": 8396560, "size": 10750, }, "HTMLFontElement.js": { - "offset": 8407520, + "offset": 8407300, "size": 7640, }, "HTMLFormControlsCollection.js": { - "offset": 8415150, + "offset": 8414940, "size": 9060, }, "HTMLFormElement.js": { - "offset": 8424210, + "offset": 8423990, "size": 20270, }, "HTMLFrameElement.js": { - "offset": 8444470, + "offset": 8444260, "size": 16950, }, "HTMLFrameSetElement.js": { - "offset": 8461420, + "offset": 8461210, "size": 23180, }, "HTMLHRElement.js": { - "offset": 8484600, + "offset": 8484380, "size": 10350, }, "HTMLHeadElement.js": { - "offset": 8494940, + "offset": 8494730, "size": 3360, }, "HTMLHeadingElement.js": { - "offset": 8498300, + "offset": 8498080, "size": 4970, }, "HTMLHtmlElement.js": { - "offset": 8503260, + "offset": 8503040, "size": 4950, }, "HTMLIFrameElement.js": { - "offset": 8508200, + "offset": 8507990, "size": 22890, }, "HTMLImageElement.js": { - "offset": 8531090, + "offset": 8530880, "size": 29550, }, "HTMLInputElement.js": { - "offset": 8560630, + "offset": 8560420, "size": 63420, }, "HTMLLIElement.js": { - "offset": 8624050, + "offset": 8623830, "size": 6500, }, "HTMLLabelElement.js": { - "offset": 8630550, + "offset": 8630330, "size": 5750, }, "HTMLLegendElement.js": { - "offset": 8636290, + "offset": 8636080, "size": 5350, }, "HTMLLinkElement.js": { - "offset": 8641640, + "offset": 8641420, "size": 17970, }, "HTMLMapElement.js": { - "offset": 8659610, + "offset": 8659390, "size": 5380, }, "HTMLMarqueeElement.js": { - "offset": 8664980, + "offset": 8664760, "size": 18620, }, "HTMLMediaElement.js": { - "offset": 8683590, + "offset": 8683380, "size": 29070, }, "HTMLMenuElement.js": { - "offset": 8712660, + "offset": 8712450, "size": 5030, }, "HTMLMetaElement.js": { - "offset": 8717690, + "offset": 8717470, "size": 9010, }, "HTMLMeterElement.js": { - "offset": 8726700, + "offset": 8726480, "size": 11350, }, "HTMLModElement.js": { - "offset": 8738040, + "offset": 8737830, "size": 6970, }, "HTMLOListElement.js": { - "offset": 8745010, + "offset": 8744800, "size": 9060, }, "HTMLObjectElement.js": { - "offset": 8754070, + "offset": 8753850, "size": 31230, }, "HTMLOptGroupElement.js": { - "offset": 8785290, + "offset": 8785070, "size": 6440, }, "HTMLOptionElement.js": { - "offset": 8791730, + "offset": 8791510, "size": 11950, }, "HTMLOptionsCollection.js": { - "offset": 8803670, + "offset": 8803450, "size": 15630, }, "HTMLOutputElement.js": { - "offset": 8819290, + "offset": 8819080, "size": 12600, }, "HTMLParagraphElement.js": { - "offset": 8831880, + "offset": 8831670, "size": 4990, }, "HTMLParamElement.js": { - "offset": 8836870, + "offset": 8836650, "size": 9000, }, "HTMLPictureElement.js": { - "offset": 8845870, + "offset": 8845650, "size": 3390, }, "HTMLPreElement.js": { - "offset": 8849250, + "offset": 8849030, "size": 5180, }, "HTMLProgressElement.js": { - "offset": 8854430, + "offset": 8854210, "size": 7310, }, "HTMLQuoteElement.js": { - "offset": 8861730, + "offset": 8861510, "size": 5630, }, "HTMLScriptElement.js": { - "offset": 8867360, + "offset": 8867140, "size": 15280, }, "HTMLSelectElement.js": { - "offset": 8882630, + "offset": 8882410, "size": 31520, }, "HTMLSlotElement.js": { - "offset": 8914140, + "offset": 8913930, "size": 6400, }, "HTMLSourceElement.js": { - "offset": 8920540, + "offset": 8920320, "size": 11050, }, "HTMLSpanElement.js": { - "offset": 8931590, + "offset": 8931370, "size": 3360, }, "HTMLStyleElement.js": { - "offset": 8934940, + "offset": 8934720, "size": 6680, }, "HTMLTableCaptionElement.js": { - "offset": 8941620, + "offset": 8941400, "size": 5030, }, "HTMLTableCellElement.js": { - "offset": 8946640, + "offset": 8946430, "size": 24020, }, "HTMLTableColElement.js": { - "offset": 8970650, + "offset": 8970440, "size": 12250, }, "HTMLTableElement.js": { - "offset": 8982900, + "offset": 8982680, "size": 26280, }, "HTMLTableRowElement.js": { - "offset": 9009170, + "offset": 9008960, "size": 13590, }, "HTMLTableSectionElement.js": { - "offset": 9022760, + "offset": 9022550, "size": 11470, }, "HTMLTemplateElement.js": { - "offset": 9034230, + "offset": 9034010, "size": 3800, }, "HTMLTextAreaElement.js": { - "offset": 9038030, + "offset": 9037810, "size": 40270, }, "HTMLTimeElement.js": { - "offset": 9078290, + "offset": 9078070, "size": 4960, }, "HTMLTitleElement.js": { - "offset": 9083240, + "offset": 9083030, "size": 4820, }, "HTMLTrackElement.js": { - "offset": 9088060, + "offset": 9087850, "size": 11900, }, "HTMLUListElement.js": { - "offset": 9099960, + "offset": 9099740, "size": 6380, }, "HTMLUnknownElement.js": { - "offset": 9106330, + "offset": 9106120, "size": 3240, }, "HTMLVideoElement.js": { - "offset": 9109570, + "offset": 9109360, "size": 11290, }, "HashChangeEvent.js": { - "offset": 9120860, + "offset": 9120640, "size": 4740, }, "HashChangeEventInit.js": { - "offset": 9125600, + "offset": 9125380, "size": 1380, }, "Headers.js": { - "offset": 9126970, + "offset": 9126750, "size": 14250, }, "History.js": { - "offset": 9141210, + "offset": 9141000, "size": 8220, }, "InputEvent.js": { - "offset": 9149430, + "offset": 9149220, "size": 5040, }, "InputEventInit.js": { - "offset": 9154470, + "offset": 9154250, "size": 1850, }, "KeyboardEvent.js": { - "offset": 9156320, + "offset": 9156100, "size": 13770, }, "KeyboardEventInit.js": { - "offset": 9170080, + "offset": 9169860, "size": 3100, }, "Location.js": { - "offset": 9173170, + "offset": 9172960, "size": 13510, }, "MessageEvent.js": { - "offset": 9186680, + "offset": 9186470, "size": 9580, }, "MessageEventInit.js": { - "offset": 9196260, + "offset": 9196040, "size": 2630, }, "MimeType.js": { - "offset": 9198890, + "offset": 9198670, "size": 4530, }, "MimeTypeArray.js": { - "offset": 9203410, + "offset": 9203190, "size": 9250, }, "MouseEvent.js": { - "offset": 9212660, + "offset": 9212440, "size": 17840, }, "MouseEventInit.js": { - "offset": 9230490, + "offset": 9230280, "size": 5160, }, "MutationCallback.js": { - "offset": 9235650, + "offset": 9235430, "size": 1020, }, "MutationObserver.js": { - "offset": 9236660, + "offset": 9236440, "size": 5640, }, "MutationObserverInit.js": { - "offset": 9242300, + "offset": 9242080, "size": 3290, }, "MutationRecord.js": { - "offset": 9245580, + "offset": 9245370, "size": 6970, }, "NamedNodeMap.js": { - "offset": 9252550, + "offset": 9252340, "size": 16410, }, "Navigator.js": { - "offset": 9268950, + "offset": 9268740, "size": 9720, }, "Node.js": { - "offset": 9278670, + "offset": 9278450, "size": 26720, }, "NodeFilter.js": { - "offset": 9305380, + "offset": 9305160, "size": 2450, }, "NodeIterator.js": { - "offset": 9307820, + "offset": 9307600, "size": 6330, }, "NodeList.js": { - "offset": 9314150, + "offset": 9313930, "size": 8760, }, "OnBeforeUnloadEventHandlerNonNull.js": { - "offset": 9322900, + "offset": 9322690, "size": 1240, }, "OnErrorEventHandlerNonNull.js": { - "offset": 9324130, + "offset": 9323920, "size": 1520, }, "PageTransitionEvent.js": { - "offset": 9325650, + "offset": 9325430, "size": 4440, }, "PageTransitionEventInit.js": { - "offset": 9330090, + "offset": 9329870, "size": 1040, }, "Performance.js": { - "offset": 9331120, + "offset": 9330900, "size": 4300, }, "Plugin.js": { - "offset": 9335420, + "offset": 9335200, "size": 10270, }, "PluginArray.js": { - "offset": 9345680, + "offset": 9345460, "size": 9570, }, "PointerEvent.js": { - "offset": 9355240, + "offset": 9355020, "size": 9870, }, "PointerEventInit.js": { - "offset": 9365110, + "offset": 9364890, "size": 6480, }, "PopStateEvent.js": { - "offset": 9371580, + "offset": 9371370, "size": 4330, }, "PopStateEventInit.js": { - "offset": 9375910, + "offset": 9375690, "size": 1000, }, "ProcessingInstruction.js": { - "offset": 9376900, + "offset": 9376690, "size": 3660, }, "ProgressEvent.js": { - "offset": 9380560, + "offset": 9380350, "size": 5150, }, "ProgressEventInit.js": { - "offset": 9385710, + "offset": 9385500, "size": 1760, }, "PromiseRejectionEvent.js": { - "offset": 9387470, + "offset": 9387250, "size": 4870, }, "PromiseRejectionEventInit.js": { - "offset": 9392330, + "offset": 9392110, "size": 1370, }, "RadioNodeList.js": { - "offset": 9393690, + "offset": 9393470, "size": 8150, }, "Range.js": { - "offset": 9401840, + "offset": 9401620, "size": 22320, }, "SVGAnimatedPreserveAspectRatio.js": { - "offset": 9424160, + "offset": 9423940, "size": 4190, }, "SVGAnimatedRect.js": { - "offset": 9428350, + "offset": 9428130, "size": 4030, }, "SVGAnimatedString.js": { - "offset": 9432370, + "offset": 9432160, "size": 4390, }, "SVGBoundingBoxOptions.js": { - "offset": 9436760, + "offset": 9436540, "size": 1880, }, "SVGDefsElement.js": { - "offset": 9438630, + "offset": 9438410, "size": 3240, }, "SVGDescElement.js": { - "offset": 9441860, + "offset": 9441640, "size": 3200, }, "SVGElement.js": { - "offset": 9445060, + "offset": 9444840, "size": 99440, }, "SVGGElement.js": { - "offset": 9544500, + "offset": 9544280, "size": 3210, }, "SVGGraphicsElement.js": { - "offset": 9547700, + "offset": 9547490, "size": 4290, }, "SVGMetadataElement.js": { - "offset": 9551980, + "offset": 9551770, "size": 3240, }, "SVGNumber.js": { - "offset": 9555220, + "offset": 9555000, "size": 3850, }, "SVGPreserveAspectRatio.js": { - "offset": 9559070, + "offset": 9558850, "size": 6960, }, "SVGRect.js": { - "offset": 9566020, + "offset": 9565800, "size": 6220, }, "SVGSVGElement.js": { - "offset": 9572240, + "offset": 9572020, "size": 25530, }, "SVGStringList.js": { - "offset": 9597770, + "offset": 9597550, "size": 15520, }, "SVGSwitchElement.js": { - "offset": 9613280, + "offset": 9613070, "size": 3250, }, "SVGSymbolElement.js": { - "offset": 9616530, + "offset": 9616320, "size": 4550, }, "SVGTitleElement.js": { - "offset": 9621080, + "offset": 9620860, "size": 3210, }, "Screen.js": { - "offset": 9624290, + "offset": 9624070, "size": 5230, }, "ScrollBehavior.js": { - "offset": 9629510, + "offset": 9629290, "size": 430, }, "ScrollIntoViewOptions.js": { - "offset": 9629930, + "offset": 9629720, "size": 1420, }, "ScrollLogicalPosition.js": { - "offset": 9631340, + "offset": 9631130, "size": 460, }, "ScrollOptions.js": { - "offset": 9631800, + "offset": 9631580, "size": 950, }, "ScrollRestoration.js": { - "offset": 9632740, + "offset": 9632520, "size": 420, }, "Selection.js": { - "offset": 9633150, + "offset": 9632940, "size": 18590, }, "SelectionMode.js": { - "offset": 9651740, + "offset": 9651530, "size": 440, }, "ShadowRoot.js": { - "offset": 9652180, + "offset": 9651960, "size": 5870, }, "ShadowRootInit.js": { - "offset": 9658040, + "offset": 9657820, "size": 990, }, "ShadowRootMode.js": { - "offset": 9659030, + "offset": 9658810, "size": 420, }, "StaticRange.js": { - "offset": 9659440, + "offset": 9659230, "size": 3720, }, "StaticRangeInit.js": { - "offset": 9663160, + "offset": 9662940, "size": 2230, }, "Storage.js": { - "offset": 9665390, + "offset": 9665170, "size": 11530, }, "StorageEvent.js": { - "offset": 9676910, + "offset": 9676700, "size": 9750, }, "StorageEventInit.js": { - "offset": 9686660, + "offset": 9686440, "size": 2800, }, "StyleSheetList.js": { - "offset": 9689450, + "offset": 9689230, "size": 8400, }, "SubmitEvent.js": { - "offset": 9697850, + "offset": 9697630, "size": 4340, }, "SubmitEventInit.js": { - "offset": 9702180, + "offset": 9701970, "size": 1150, }, "SupportedType.js": { - "offset": 9703320, + "offset": 9703110, "size": 500, }, "Text.js": { - "offset": 9703820, + "offset": 9703600, "size": 5140, }, "TextDecodeOptions.js": { - "offset": 9708950, + "offset": 9708740, "size": 890, }, "TextDecoder.js": { - "offset": 9709840, + "offset": 9709630, "size": 6620, }, "TextDecoderOptions.js": { - "offset": 9716460, + "offset": 9716250, "size": 1250, }, "TextEncoder.js": { - "offset": 9717710, + "offset": 9717490, "size": 5390, }, "TextEncoderEncodeIntoResult.js": { - "offset": 9723090, + "offset": 9722870, "size": 1210, }, "TextTrackKind.js": { - "offset": 9724290, + "offset": 9724080, "size": 460, }, "TouchEvent.js": { - "offset": 9724750, + "offset": 9724540, "size": 6680, }, "TouchEventInit.js": { - "offset": 9731430, + "offset": 9731210, "size": 2460, }, "TransitionEvent.js": { - "offset": 9733880, + "offset": 9733670, "size": 5240, }, "TransitionEventInit.js": { - "offset": 9739120, + "offset": 9738910, "size": 1760, }, "TreeWalker.js": { - "offset": 9740880, + "offset": 9740660, "size": 8000, }, "UIEvent.js": { - "offset": 9748880, + "offset": 9748660, "size": 7150, }, "UIEventInit.js": { - "offset": 9756020, + "offset": 9755800, "size": 1700, }, "ValidityState.js": { - "offset": 9757710, + "offset": 9757500, "size": 7400, }, "VisibilityState.js": { - "offset": 9765100, + "offset": 9764890, "size": 430, }, "VoidFunction.js": { - "offset": 9765530, + "offset": 9765320, "size": 730, }, "WebSocket.js": { - "offset": 9766260, + "offset": 9766050, "size": 15160, }, "WheelEvent.js": { - "offset": 9781410, + "offset": 9781200, "size": 5810, }, "WheelEventInit.js": { - "offset": 9787220, + "offset": 9787000, "size": 2030, }, "XMLDocument.js": { - "offset": 9789240, + "offset": 9789030, "size": 3170, }, "XMLHttpRequest.js": { - "offset": 9792410, + "offset": 9792190, "size": 22020, }, "XMLHttpRequestEventTarget.js": { - "offset": 9814420, + "offset": 9814210, "size": 10630, }, "XMLHttpRequestResponseType.js": { - "offset": 9825050, + "offset": 9824830, "size": 480, }, "XMLHttpRequestUpload.js": { - "offset": 9825520, + "offset": 9825310, "size": 3350, }, "XMLSerializer.js": { - "offset": 9828870, + "offset": 9828660, "size": 4030, }, "utils.js": { - "offset": 9832900, + "offset": 9832680, "size": 7090, }, }, @@ -34159,11 +34159,11 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen "geometry": { "files": { "DOMRect-impl.js": { - "offset": 9839990, + "offset": 9839770, "size": 730, }, "DOMRectReadOnly-impl.js": { - "offset": 9840720, + "offset": 9840500, "size": 1700, }, }, @@ -34171,143 +34171,143 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen "helpers": { "files": { "agent-factory.js": { - "offset": 9842410, + "offset": 9842200, "size": 530, }, "binary-data.js": { - "offset": 9842940, + "offset": 9842730, "size": 320, }, "colors.js": { - "offset": 9843260, + "offset": 9843050, "size": 7470, }, "create-element.js": { - "offset": 9850730, + "offset": 9850510, "size": 10430, }, "create-event-accessor.js": { - "offset": 9861160, + "offset": 9860940, "size": 5840, }, "custom-elements.js": { - "offset": 9867000, + "offset": 9866780, "size": 7740, }, "dates-and-times.js": { - "offset": 9874740, + "offset": 9874520, "size": 7870, }, "details.js": { - "offset": 9882600, + "offset": 9882380, "size": 540, }, "events.js": { - "offset": 9883140, + "offset": 9882920, "size": 720, }, "focusing.js": { - "offset": 9883850, + "offset": 9883640, "size": 3480, }, "form-controls.js": { - "offset": 9887330, + "offset": 9887110, "size": 10390, }, "html-constructor.js": { - "offset": 9897720, + "offset": 9897500, "size": 2830, }, "http-request.js": { - "offset": 9900540, + "offset": 9900320, "size": 8460, }, "internal-constants.js": { - "offset": 9909000, + "offset": 9908780, "size": 390, }, "is-window.js": { - "offset": 9909380, + "offset": 9909170, "size": 740, }, "iterable-weak-set.js": { - "offset": 9910120, + "offset": 9909900, "size": 1160, }, "json.js": { - "offset": 9911270, + "offset": 9911060, "size": 350, }, "mutation-observers.js": { - "offset": 9911620, + "offset": 9911400, "size": 5440, }, "namespaces.js": { - "offset": 9917060, + "offset": 9916840, "size": 480, }, "node.js": { - "offset": 9917540, + "offset": 9917320, "size": 1320, }, "number-and-date-inputs.js": { - "offset": 9918860, + "offset": 9918640, "size": 6880, }, "ordered-set.js": { - "offset": 9925730, + "offset": 9925510, "size": 2090, }, "page-transition-event.js": { - "offset": 9927810, + "offset": 9927600, "size": 450, }, "runtime-script-errors.js": { - "offset": 9928260, + "offset": 9928040, "size": 2480, }, "shadow-dom.js": { - "offset": 9930740, + "offset": 9930520, "size": 6850, }, "strings.js": { - "offset": 9937590, + "offset": 9937370, "size": 5470, }, "style-rules.js": { - "offset": 9943050, + "offset": 9942840, "size": 10600, }, "stylesheets.js": { - "offset": 9953650, + "offset": 9953430, "size": 5340, }, "svg": { "files": { "basic-types.js": { - "offset": 9958980, + "offset": 9958770, "size": 1640, }, "render.js": { - "offset": 9960610, + "offset": 9960400, "size": 1320, }, }, }, "system-colors.js": { - "offset": 9961930, + "offset": 9961710, "size": 2890, }, "text.js": { - "offset": 9964810, + "offset": 9964600, "size": 550, }, "traversal.js": { - "offset": 9965350, + "offset": 9965140, "size": 2330, }, "validate-names.js": { - "offset": 9967680, + "offset": 9967470, "size": 2050, }, }, @@ -34315,23 +34315,23 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen "hr-time": { "files": { "Performance-impl.js": { - "offset": 9969720, + "offset": 9969510, "size": 520, }, }, }, "interfaces.js": { - "offset": 9970240, + "offset": 9970030, "size": 12290, }, "mutation-observer": { "files": { "MutationObserver-impl.js": { - "offset": 9982520, + "offset": 9982310, "size": 3600, }, "MutationRecord-impl.js": { - "offset": 9986120, + "offset": 9985900, "size": 980, }, }, @@ -34339,523 +34339,523 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen "navigator": { "files": { "MimeType-impl.js": { - "offset": 9987090, + "offset": 9986880, "size": 60, }, "MimeTypeArray-impl.js": { - "offset": 9987150, + "offset": 9986940, "size": 290, }, "Navigator-impl.js": { - "offset": 9987440, + "offset": 9987220, "size": 1440, }, "NavigatorConcurrentHardware-impl.js": { - "offset": 9988870, + "offset": 9988660, "size": 180, }, "NavigatorCookies-impl.js": { - "offset": 9989040, + "offset": 9988830, "size": 120, }, "NavigatorID-impl.js": { - "offset": 9989160, + "offset": 9988940, "size": 480, }, "NavigatorLanguage-impl.js": { - "offset": 9989640, + "offset": 9989420, "size": 170, }, "NavigatorOnLine-impl.js": { - "offset": 9989800, + "offset": 9989590, "size": 110, }, "NavigatorPlugins-impl.js": { - "offset": 9989910, + "offset": 9989690, "size": 180, }, "Plugin-impl.js": { - "offset": 9990090, + "offset": 9989870, "size": 60, }, "PluginArray-impl.js": { - "offset": 9990140, + "offset": 9989930, "size": 300, }, }, }, "node-document-position.js": { - "offset": 9990440, + "offset": 9990230, "size": 280, }, "node-type.js": { - "offset": 9990720, + "offset": 9990500, "size": 390, }, "node.js": { - "offset": 9991100, + "offset": 9990890, "size": 9510, }, "nodes": { "files": { "CDATASection-impl.js": { - "offset": 10000610, + "offset": 10000390, "size": 370, }, "CharacterData-impl.js": { - "offset": 10000970, + "offset": 10000760, "size": 3540, }, "ChildNode-impl.js": { - "offset": 10004510, + "offset": 10004290, "size": 2030, }, "Comment-impl.js": { - "offset": 10006530, + "offset": 10006320, "size": 540, }, "DOMImplementation-impl.js": { - "offset": 10007060, + "offset": 10006850, "size": 3880, }, "DOMStringMap-impl.js": { - "offset": 10010930, + "offset": 10010720, "size": 1990, }, "DOMTokenList-impl.js": { - "offset": 10012920, + "offset": 10012710, "size": 4340, }, "Document-impl.js": { - "offset": 10017260, + "offset": 10017050, "size": 31130, }, "DocumentFragment-impl.js": { - "offset": 10048390, + "offset": 10048180, "size": 1400, }, "DocumentOrShadowRoot-impl.js": { - "offset": 10049790, + "offset": 10049570, "size": 740, }, "DocumentType-impl.js": { - "offset": 10050520, + "offset": 10050300, "size": 660, }, "Element-impl.js": { - "offset": 10051170, + "offset": 10050960, "size": 17090, }, "ElementCSSInlineStyle-impl.js": { - "offset": 10068260, + "offset": 10068040, "size": 520, }, "ElementContentEditable-impl.js": { - "offset": 10068770, + "offset": 10068550, "size": 120, }, "GlobalEventHandlers-impl.js": { - "offset": 10068890, + "offset": 10068670, "size": 3100, }, "HTMLAnchorElement-impl.js": { - "offset": 10071980, + "offset": 10071760, "size": 1260, }, "HTMLAreaElement-impl.js": { - "offset": 10073230, + "offset": 10073010, "size": 1150, }, "HTMLAudioElement-impl.js": { - "offset": 10074380, + "offset": 10074160, "size": 220, }, "HTMLBRElement-impl.js": { - "offset": 10074600, + "offset": 10074380, "size": 200, }, "HTMLBaseElement-impl.js": { - "offset": 10074800, + "offset": 10074580, "size": 1000, }, "HTMLBodyElement-impl.js": { - "offset": 10075790, + "offset": 10075580, "size": 490, }, "HTMLButtonElement-impl.js": { - "offset": 10076280, + "offset": 10076070, "size": 1960, }, "HTMLCanvasElement-impl.js": { - "offset": 10078240, + "offset": 10078030, "size": 3950, }, "HTMLCollection-impl.js": { - "offset": 10082180, + "offset": 10081970, "size": 2270, }, "HTMLDListElement-impl.js": { - "offset": 10084450, + "offset": 10084240, "size": 210, }, "HTMLDataElement-impl.js": { - "offset": 10084650, + "offset": 10084440, "size": 210, }, "HTMLDataListElement-impl.js": { - "offset": 10084860, + "offset": 10084640, "size": 600, }, "HTMLDetailsElement-impl.js": { - "offset": 10085450, + "offset": 10085240, "size": 930, }, "HTMLDialogElement-impl.js": { - "offset": 10086380, + "offset": 10086160, "size": 210, }, "HTMLDirectoryElement-impl.js": { - "offset": 10086580, + "offset": 10086360, "size": 220, }, "HTMLDivElement-impl.js": { - "offset": 10086790, + "offset": 10086580, "size": 200, }, "HTMLElement-impl.js": { - "offset": 10086990, + "offset": 10086770, "size": 6300, }, "HTMLEmbedElement-impl.js": { - "offset": 10093290, + "offset": 10093070, "size": 210, }, "HTMLFieldSetElement-impl.js": { - "offset": 10093490, + "offset": 10093270, "size": 1250, }, "HTMLFontElement-impl.js": { - "offset": 10094740, + "offset": 10094520, "size": 210, }, "HTMLFormControlsCollection-impl.js": { - "offset": 10094940, + "offset": 10094720, "size": 780, }, "HTMLFormElement-impl.js": { - "offset": 10095710, + "offset": 10095500, "size": 6780, }, "HTMLFrameElement-impl.js": { - "offset": 10102480, + "offset": 10102270, "size": 8100, }, "HTMLFrameSetElement-impl.js": { - "offset": 10110580, + "offset": 10110360, "size": 510, }, "HTMLHRElement-impl.js": { - "offset": 10111080, + "offset": 10110860, "size": 200, }, "HTMLHeadElement-impl.js": { - "offset": 10111280, + "offset": 10111060, "size": 210, }, "HTMLHeadingElement-impl.js": { - "offset": 10111480, + "offset": 10111260, "size": 210, }, "HTMLHtmlElement-impl.js": { - "offset": 10111680, + "offset": 10111470, "size": 210, }, "HTMLHyperlinkElementUtils-impl.js": { - "offset": 10111880, + "offset": 10111670, "size": 7690, }, "HTMLIFrameElement-impl.js": { - "offset": 10119570, + "offset": 10119350, "size": 220, }, "HTMLImageElement-impl.js": { - "offset": 10119790, + "offset": 10119570, "size": 3570, }, "HTMLInputElement-impl.js": { - "offset": 10123360, + "offset": 10123140, "size": 36430, }, "HTMLLIElement-impl.js": { - "offset": 10159780, + "offset": 10159570, "size": 200, }, "HTMLLabelElement-impl.js": { - "offset": 10159980, + "offset": 10159760, "size": 2750, }, "HTMLLegendElement-impl.js": { - "offset": 10162720, + "offset": 10162500, "size": 520, }, "HTMLLinkElement-impl.js": { - "offset": 10163240, + "offset": 10163020, "size": 2780, }, "HTMLMapElement-impl.js": { - "offset": 10166010, + "offset": 10165790, "size": 270, }, "HTMLMarqueeElement-impl.js": { - "offset": 10166270, + "offset": 10166060, "size": 210, }, "HTMLMediaElement-impl.js": { - "offset": 10166480, + "offset": 10166260, "size": 3190, }, "HTMLMenuElement-impl.js": { - "offset": 10169660, + "offset": 10169450, "size": 210, }, "HTMLMetaElement-impl.js": { - "offset": 10169860, + "offset": 10169650, "size": 210, }, "HTMLMeterElement-impl.js": { - "offset": 10170060, + "offset": 10169850, "size": 4360, }, "HTMLModElement-impl.js": { - "offset": 10174420, + "offset": 10174210, "size": 200, }, "HTMLOListElement-impl.js": { - "offset": 10174620, + "offset": 10174410, "size": 430, }, "HTMLObjectElement-impl.js": { - "offset": 10175050, + "offset": 10174830, "size": 690, }, "HTMLOptGroupElement-impl.js": { - "offset": 10175730, + "offset": 10175520, "size": 210, }, "HTMLOptionElement-impl.js": { - "offset": 10175940, + "offset": 10175730, "size": 3670, }, "HTMLOptionsCollection-impl.js": { - "offset": 10179600, + "offset": 10179390, "size": 3420, }, "HTMLOrSVGElement-impl.js": { - "offset": 10183020, + "offset": 10182800, "size": 3150, }, "HTMLOutputElement-impl.js": { - "offset": 10186170, + "offset": 10185950, "size": 2040, }, "HTMLParagraphElement-impl.js": { - "offset": 10188200, + "offset": 10187980, "size": 220, }, "HTMLParamElement-impl.js": { - "offset": 10188410, + "offset": 10188190, "size": 210, }, "HTMLPictureElement-impl.js": { - "offset": 10188610, + "offset": 10188400, "size": 210, }, "HTMLPreElement-impl.js": { - "offset": 10188820, + "offset": 10188600, "size": 200, }, "HTMLProgressElement-impl.js": { - "offset": 10189020, + "offset": 10188800, "size": 1880, }, "HTMLQuoteElement-impl.js": { - "offset": 10190890, + "offset": 10190670, "size": 210, }, "HTMLScriptElement-impl.js": { - "offset": 10191090, + "offset": 10190870, "size": 7380, }, "HTMLSelectElement-impl.js": { - "offset": 10198470, + "offset": 10198250, "size": 8140, }, "HTMLSlotElement-impl.js": { - "offset": 10206600, + "offset": 10206380, "size": 1540, }, "HTMLSourceElement-impl.js": { - "offset": 10208140, + "offset": 10207920, "size": 210, }, "HTMLSpanElement-impl.js": { - "offset": 10208340, + "offset": 10208130, "size": 210, }, "HTMLStyleElement-impl.js": { - "offset": 10208540, + "offset": 10208330, "size": 2140, }, "HTMLTableCaptionElement-impl.js": { - "offset": 10210680, + "offset": 10210470, "size": 220, }, "HTMLTableCellElement-impl.js": { - "offset": 10210900, + "offset": 10210680, "size": 1660, }, "HTMLTableColElement-impl.js": { - "offset": 10212550, + "offset": 10212340, "size": 210, }, "HTMLTableElement-impl.js": { - "offset": 10212760, + "offset": 10212550, "size": 6150, }, "HTMLTableRowElement-impl.js": { - "offset": 10218910, + "offset": 10218700, "size": 2410, }, "HTMLTableSectionElement-impl.js": { - "offset": 10221310, + "offset": 10221100, "size": 1640, }, "HTMLTemplateElement-impl.js": { - "offset": 10222950, + "offset": 10222740, "size": 2040, }, "HTMLTextAreaElement-impl.js": { - "offset": 10224990, + "offset": 10224770, "size": 6540, }, "HTMLTimeElement-impl.js": { - "offset": 10231530, + "offset": 10231310, "size": 210, }, "HTMLTitleElement-impl.js": { - "offset": 10231730, + "offset": 10231510, "size": 370, }, "HTMLTrackElement-impl.js": { - "offset": 10232100, + "offset": 10231880, "size": 250, }, "HTMLUListElement-impl.js": { - "offset": 10232340, + "offset": 10232130, "size": 210, }, "HTMLUnknownElement-impl.js": { - "offset": 10232540, + "offset": 10232330, "size": 210, }, "HTMLVideoElement-impl.js": { - "offset": 10232750, + "offset": 10232540, "size": 300, }, "LinkStyle-impl.js": { - "offset": 10233050, + "offset": 10232830, "size": 60, }, "Node-impl.js": { - "offset": 10233100, + "offset": 10232890, "size": 35020, }, "NodeList-impl.js": { - "offset": 10268120, + "offset": 10267910, "size": 1060, }, "NonDocumentTypeChildNode-impl.js": { - "offset": 10269180, + "offset": 10268970, "size": 680, }, "NonElementParentNode-impl.js": { - "offset": 10269860, + "offset": 10269640, "size": 270, }, "ParentNode-impl.js": { - "offset": 10270120, + "offset": 10269900, "size": 2630, }, "ProcessingInstruction-impl.js": { - "offset": 10272750, + "offset": 10272530, "size": 510, }, "RadioNodeList-impl.js": { - "offset": 10273250, + "offset": 10273040, "size": 1370, }, "SVGDefsElement-impl.js": { - "offset": 10274620, + "offset": 10274400, "size": 220, }, "SVGDescElement-impl.js": { - "offset": 10274840, + "offset": 10274620, "size": 200, }, "SVGElement-impl.js": { - "offset": 10275030, + "offset": 10274810, "size": 2130, }, "SVGGElement-impl.js": { - "offset": 10277160, + "offset": 10276940, "size": 220, }, "SVGGraphicsElement-impl.js": { - "offset": 10277370, + "offset": 10277150, "size": 500, }, "SVGMetadataElement-impl.js": { - "offset": 10277860, + "offset": 10277650, "size": 210, }, "SVGSVGElement-impl.js": { - "offset": 10278070, + "offset": 10277850, "size": 1360, }, "SVGSwitchElement-impl.js": { - "offset": 10279420, + "offset": 10279210, "size": 230, }, "SVGSymbolElement-impl.js": { - "offset": 10279650, + "offset": 10279430, "size": 230, }, "SVGTests-impl.js": { - "offset": 10279870, + "offset": 10279650, "size": 1160, }, "SVGTitleElement-impl.js": { - "offset": 10281030, + "offset": 10280810, "size": 200, }, "ShadowRoot-impl.js": { - "offset": 10281230, + "offset": 10281010, "size": 1020, }, "Slotable-impl.js": { - "offset": 10282250, + "offset": 10282030, "size": 950, }, "Text-impl.js": { - "offset": 10283190, + "offset": 10282980, "size": 2900, }, "WindowEventHandlers-impl.js": { - "offset": 10286090, + "offset": 10285870, "size": 1090, }, "XMLDocument-impl.js": { - "offset": 10287170, + "offset": 10286960, "size": 160, }, }, @@ -34863,19 +34863,19 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen "range": { "files": { "AbstractRange-impl.js": { - "offset": 10287320, + "offset": 10287110, "size": 970, }, "Range-impl.js": { - "offset": 10288290, + "offset": 10288070, "size": 27240, }, "StaticRange-impl.js": { - "offset": 10315520, + "offset": 10315300, "size": 1110, }, "boundary-point.js": { - "offset": 10316620, + "offset": 10316410, "size": 1130, }, }, @@ -34883,7 +34883,7 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen "selection": { "files": { "Selection-impl.js": { - "offset": 10317750, + "offset": 10317540, "size": 10900, }, }, @@ -34891,35 +34891,35 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen "svg": { "files": { "SVGAnimatedPreserveAspectRatio-impl.js": { - "offset": 10328650, + "offset": 10328440, "size": 600, }, "SVGAnimatedRect-impl.js": { - "offset": 10329250, + "offset": 10329030, "size": 2630, }, "SVGAnimatedString-impl.js": { - "offset": 10331880, + "offset": 10331660, "size": 1430, }, "SVGListBase.js": { - "offset": 10333310, + "offset": 10333090, "size": 5280, }, "SVGNumber-impl.js": { - "offset": 10338590, + "offset": 10338370, "size": 1040, }, "SVGPreserveAspectRatio-impl.js": { - "offset": 10339620, + "offset": 10339400, "size": 2680, }, "SVGRect-impl.js": { - "offset": 10342290, + "offset": 10342080, "size": 3170, }, "SVGStringList-impl.js": { - "offset": 10345460, + "offset": 10345250, "size": 370, }, }, @@ -34927,15 +34927,15 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen "traversal": { "files": { "NodeIterator-impl.js": { - "offset": 10345820, + "offset": 10345610, "size": 2740, }, "TreeWalker-impl.js": { - "offset": 10348560, + "offset": 10348340, "size": 4710, }, "helpers.js": { - "offset": 10353260, + "offset": 10353050, "size": 1180, }, }, @@ -34943,7 +34943,7 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen "webidl": { "files": { "DOMException-impl.js": { - "offset": 10354440, + "offset": 10354220, "size": 1100, }, }, @@ -34951,7 +34951,7 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen "websockets": { "files": { "WebSocket-impl.js": { - "offset": 10355530, + "offset": 10355320, "size": 10420, }, }, @@ -34959,7 +34959,7 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen "webstorage": { "files": { "Storage-impl.js": { - "offset": 10365940, + "offset": 10365730, "size": 2660, }, }, @@ -34967,67 +34967,67 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen "window": { "files": { "BarProp-impl.js": { - "offset": 10375350, + "offset": 10375140, "size": 320, }, "External-impl.js": { - "offset": 10375670, + "offset": 10375450, "size": 280, }, "History-impl.js": { - "offset": 10375950, + "offset": 10375730, "size": 4560, }, "Location-impl.js": { - "offset": 10380500, + "offset": 10380290, "size": 5780, }, "Screen-impl.js": { - "offset": 10386280, + "offset": 10386060, "size": 360, }, "SessionHistory.js": { - "offset": 10386630, + "offset": 10386410, "size": 5830, }, "navigation.js": { - "offset": 10392450, + "offset": 10392240, "size": 3170, }, }, }, "window-properties.js": { - "offset": 10368600, + "offset": 10368380, "size": 6760, }, "xhr": { "files": { "FormData-impl.js": { - "offset": 10395620, + "offset": 10395400, "size": 5890, }, "XMLHttpRequest-impl.js": { - "offset": 10401510, + "offset": 10401290, "size": 31950, }, "XMLHttpRequestEventTarget-impl.js": { - "offset": 10433450, + "offset": 10433240, "size": 780, }, "XMLHttpRequestUpload-impl.js": { - "offset": 10434230, + "offset": 10434020, "size": 220, }, "multipart-form-data.js": { - "offset": 10434450, + "offset": 10434230, "size": 3400, }, "xhr-sync-worker.js": { - "offset": 10437840, + "offset": 10437620, "size": 1650, }, "xhr-utils.js": { - "offset": 10439480, + "offset": 10439260, "size": 12590, }, }, @@ -35035,11 +35035,11 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen }, }, "utils.js": { - "offset": 10452070, + "offset": 10451850, "size": 2690, }, "virtual-console.js": { - "offset": 10454750, + "offset": 10454540, "size": 1130, }, }, @@ -35051,35 +35051,35 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen "whatwg-mimetype": { "files": { "LICENSE.txt": { - "offset": 10457900, + "offset": 10457680, "size": 1070, }, "lib": { "files": { "mime-type-parameters.js": { - "offset": 10458970, + "offset": 10458750, "size": 1440, }, "mime-type.js": { - "offset": 10460400, + "offset": 10460190, "size": 3160, }, "parser.js": { - "offset": 10463560, + "offset": 10463350, "size": 2520, }, "serializer.js": { - "offset": 10466080, + "offset": 10465860, "size": 600, }, "utils.js": { - "offset": 10466680, + "offset": 10466460, "size": 1410, }, }, }, "package.json": { - "offset": 10468080, + "offset": 10467870, "size": 700, }, }, @@ -35087,7 +35087,7 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen }, }, "package.json": { - "offset": 10455880, + "offset": 10455670, "size": 2020, }, }, @@ -35095,31 +35095,31 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen "linkify-it": { "files": { "LICENSE": { - "offset": 10468780, + "offset": 10468570, "size": 1060, }, "build": { "files": { "index.cjs.js": { - "offset": 10469840, + "offset": 10469620, "size": 23330, }, }, }, "index.mjs": { - "offset": 10493170, + "offset": 10492950, "size": 17610, }, "lib": { "files": { "re.mjs": { - "offset": 10510770, + "offset": 10510550, "size": 5560, }, }, }, "package.json": { - "offset": 10516330, + "offset": 10516110, "size": 920, }, }, @@ -35127,7 +35127,7 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen "lru-cache": { "files": { "LICENSE.md": { - "offset": 10517250, + "offset": 10517030, "size": 1560, }, "dist": { @@ -35135,27 +35135,27 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen "commonjs": { "files": { "index.d.ts.map": { - "offset": 10518800, + "offset": 10518580, "size": 14380, }, "index.js": { - "offset": 10533170, + "offset": 10532960, "size": 57430, }, "index.js.map": { - "offset": 10590590, + "offset": 10590380, "size": 143540, }, "index.min.js": { - "offset": 10734130, + "offset": 10733910, "size": 17530, }, "index.min.js.map": { - "offset": 10751650, + "offset": 10751440, "size": 123260, }, "package.json": { - "offset": 10874910, + "offset": 10874690, "size": 30, }, }, @@ -35163,27 +35163,27 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen "esm": { "files": { "index.d.ts.map": { - "offset": 10874930, + "offset": 10874720, "size": 14380, }, "index.js": { - "offset": 10889310, + "offset": 10889090, "size": 57300, }, "index.js.map": { - "offset": 10946600, + "offset": 10946390, "size": 143530, }, "index.min.js": { - "offset": 11090120, + "offset": 11089910, "size": 17440, }, "index.min.js.map": { - "offset": 11107560, + "offset": 11107340, "size": 123240, }, "package.json": { - "offset": 11230800, + "offset": 11230580, "size": 30, }, }, @@ -35191,7 +35191,7 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen }, }, "package.json": { - "offset": 11230820, + "offset": 11230600, "size": 1790, }, }, @@ -35199,14 +35199,14 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen "markdown-it": { "files": { "LICENSE": { - "offset": 11232600, + "offset": 11232390, "size": 1080, }, "bin": { "files": { "markdown-it.mjs": { "executable": true, - "offset": 11233680, + "offset": 11233460, "size": 2170, }, }, @@ -35214,21 +35214,21 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen "dist": { "files": { "index.cjs.js": { - "offset": 11235840, + "offset": 11235630, "size": 163060, }, "markdown-it.js": { - "offset": 11398890, + "offset": 11398680, "size": 298980, }, "markdown-it.min.js": { - "offset": 11697870, + "offset": 11697650, "size": 123620, }, }, }, "index.mjs": { - "offset": 11821490, + "offset": 11821270, "size": 50, }, "lib": { @@ -35236,15 +35236,15 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen "common": { "files": { "html_blocks.mjs": { - "offset": 11821530, + "offset": 11821310, "size": 800, }, "html_re.mjs": { - "offset": 11822330, + "offset": 11822110, "size": 1000, }, "utils.mjs": { - "offset": 11823320, + "offset": 11823100, "size": 7900, }, }, @@ -35252,111 +35252,111 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen "helpers": { "files": { "index.mjs": { - "offset": 11831220, + "offset": 11831000, "size": 280, }, "parse_link_destination.mjs": { - "offset": 11831490, + "offset": 11831270, "size": 1550, }, "parse_link_label.mjs": { - "offset": 11833030, + "offset": 11832820, "size": 990, }, "parse_link_title.mjs": { - "offset": 11834020, + "offset": 11833800, "size": 1860, }, }, }, "index.mjs": { - "offset": 11835870, + "offset": 11835650, "size": 17900, }, "parser_block.mjs": { - "offset": 11853770, + "offset": 11853550, "size": 3990, }, "parser_core.mjs": { - "offset": 11857750, + "offset": 11857540, "size": 1510, }, "parser_inline.mjs": { - "offset": 11859260, + "offset": 11859050, "size": 5440, }, "presets": { "files": { "commonmark.mjs": { - "offset": 11864700, + "offset": 11864480, "size": 1910, }, "default.mjs": { - "offset": 11866610, + "offset": 11866390, "size": 1290, }, "zero.mjs": { - "offset": 11867890, + "offset": 11867670, "size": 1660, }, }, }, "renderer.mjs": { - "offset": 11869540, + "offset": 11869320, "size": 8930, }, "ruler.mjs": { - "offset": 11878470, + "offset": 11878250, "size": 8480, }, "rules_block": { "files": { "blockquote.mjs": { - "offset": 11886950, + "offset": 11886730, "size": 6060, }, "code.mjs": { - "offset": 11893000, + "offset": 11892790, "size": 690, }, "fence.mjs": { - "offset": 11893690, + "offset": 11893470, "size": 2420, }, "heading.mjs": { - "offset": 11896100, + "offset": 11895880, "size": 1500, }, "hr.mjs": { - "offset": 11897600, + "offset": 11897380, "size": 1070, }, "html_block.mjs": { - "offset": 11898670, + "offset": 11898450, "size": 2200, }, "lheading.mjs": { - "offset": 11900870, + "offset": 11900650, "size": 2490, }, "list.mjs": { - "offset": 11903350, + "offset": 11903140, "size": 9110, }, "paragraph.mjs": { - "offset": 11912460, + "offset": 11912240, "size": 1460, }, "reference.mjs": { - "offset": 11913920, + "offset": 11913700, "size": 5830, }, "state_block.mjs": { - "offset": 11919740, + "offset": 11919530, "size": 5900, }, "table.mjs": { - "offset": 11925640, + "offset": 11925420, "size": 7090, }, }, @@ -35364,35 +35364,35 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen "rules_core": { "files": { "block.mjs": { - "offset": 11932730, + "offset": 11932510, "size": 340, }, "inline.mjs": { - "offset": 11933060, + "offset": 11932840, "size": 290, }, "linkify.mjs": { - "offset": 11933350, + "offset": 11933130, "size": 4250, }, "normalize.mjs": { - "offset": 11937600, + "offset": 11937380, "size": 360, }, "replacements.mjs": { - "offset": 11937950, + "offset": 11937730, "size": 2640, }, "smartquotes.mjs": { - "offset": 11940580, + "offset": 11940360, "size": 5730, }, "state_core.mjs": { - "offset": 11946300, + "offset": 11946090, "size": 330, }, "text_join.mjs": { - "offset": 11946630, + "offset": 11946410, "size": 1150, }, }, @@ -35400,69 +35400,69 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen "rules_inline": { "files": { "autolink.mjs": { - "offset": 11947780, + "offset": 11947560, "size": 2020, }, "backticks.mjs": { - "offset": 11949790, + "offset": 11949570, "size": 1680, }, "balance_pairs.mjs": { - "offset": 11951460, + "offset": 11951250, "size": 4090, }, "emphasis.mjs": { - "offset": 11955550, + "offset": 11955330, "size": 3520, }, "entity.mjs": { - "offset": 11959070, + "offset": 11958850, "size": 1490, }, "escape.mjs": { - "offset": 11960550, + "offset": 11960340, "size": 1420, }, "fragments_join.mjs": { - "offset": 11961970, + "offset": 11961760, "size": 1270, }, "html_inline.mjs": { - "offset": 11963240, + "offset": 11963020, "size": 1170, }, "image.mjs": { - "offset": 11964400, + "offset": 11964190, "size": 3640, }, "link.mjs": { - "offset": 11968040, + "offset": 11967830, "size": 3730, }, "linkify.mjs": { - "offset": 11971770, + "offset": 11971550, "size": 1680, }, "newline.mjs": { - "offset": 11973440, + "offset": 11973220, "size": 1200, }, "state_inline.mjs": { - "offset": 11974640, + "offset": 11974420, "size": 3500, }, "strikethrough.mjs": { - "offset": 11978130, + "offset": 11977920, "size": 2940, }, "text.mjs": { - "offset": 11981070, + "offset": 11980850, "size": 2110, }, }, }, "token.mjs": { - "offset": 11983170, + "offset": 11982950, "size": 3800, }, }, @@ -35472,163 +35472,163 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen "entities": { "files": { "LICENSE": { - "offset": 11988740, + "offset": 11988520, "size": 1260, }, "lib": { "files": { "decode.d.ts.map": { - "offset": 11990000, + "offset": 11989780, "size": 2210, }, "decode.js": { - "offset": 11992210, + "offset": 11991990, "size": 22620, }, "decode.js.map": { - "offset": 12014820, + "offset": 12014600, "size": 11600, }, "decode_codepoint.d.ts.map": { - "offset": 12026410, + "offset": 12026200, "size": 400, }, "decode_codepoint.js": { - "offset": 12026810, + "offset": 12026590, "size": 2320, }, "decode_codepoint.js.map": { - "offset": 12029120, + "offset": 12028900, "size": 1910, }, "encode.d.ts.map": { - "offset": 12031030, + "offset": 12030810, "size": 340, }, "encode.js": { - "offset": 12031360, + "offset": 12031150, "size": 2970, }, "encode.js.map": { - "offset": 12034330, + "offset": 12034110, "size": 1840, }, "escape.d.ts.map": { - "offset": 12036160, + "offset": 12035950, "size": 590, }, "escape.js": { - "offset": 12036750, + "offset": 12036530, "size": 4320, }, "escape.js.map": { - "offset": 12041060, + "offset": 12040850, "size": 2880, }, "esm": { "files": { "decode.d.ts.map": { - "offset": 12043940, + "offset": 12043720, "size": 2210, }, "decode.js": { - "offset": 12046150, + "offset": 12045930, "size": 19810, }, "decode.js.map": { - "offset": 12065960, + "offset": 12065740, "size": 11480, }, "decode_codepoint.d.ts.map": { - "offset": 12077430, + "offset": 12077210, "size": 400, }, "decode_codepoint.js": { - "offset": 12077830, + "offset": 12077610, "size": 2120, }, "decode_codepoint.js.map": { - "offset": 12079940, + "offset": 12079720, "size": 1910, }, "encode.d.ts.map": { - "offset": 12081840, + "offset": 12081630, "size": 340, }, "encode.js": { - "offset": 12082180, + "offset": 12081960, "size": 2570, }, "encode.js.map": { - "offset": 12084750, + "offset": 12084530, "size": 1870, }, "escape.d.ts.map": { - "offset": 12086610, + "offset": 12086400, "size": 590, }, "escape.js": { - "offset": 12087200, + "offset": 12086980, "size": 3970, }, "escape.js.map": { - "offset": 12091160, + "offset": 12090950, "size": 2900, }, "generated": { "files": { "decode-data-html.d.ts.map": { - "offset": 12094060, + "offset": 12093840, "size": 240, }, "decode-data-html.js": { - "offset": 12094290, + "offset": 12094080, "size": 47730, }, "decode-data-html.js.map": { - "offset": 12142020, + "offset": 12141800, "size": 400, }, "decode-data-xml.d.ts.map": { - "offset": 12142410, + "offset": 12142200, "size": 240, }, "decode-data-xml.js": { - "offset": 12142640, + "offset": 12142430, "size": 280, }, "decode-data-xml.js.map": { - "offset": 12142920, + "offset": 12142710, "size": 390, }, "encode-html.d.ts.map": { - "offset": 12143310, + "offset": 12143100, "size": 390, }, "encode-html.js": { - "offset": 12143700, + "offset": 12143480, "size": 27040, }, "encode-html.js.map": { - "offset": 12170740, + "offset": 12170520, "size": 48230, }, }, }, "index.d.ts.map": { - "offset": 12218960, + "offset": 12218750, "size": 1420, }, "index.js": { - "offset": 12220380, + "offset": 12220160, "size": 4060, }, "index.js.map": { - "offset": 12224440, + "offset": 12224220, "size": 2550, }, "package.json": { - "offset": 12226980, + "offset": 12226770, "size": 20, }, }, @@ -35636,59 +35636,59 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen "generated": { "files": { "decode-data-html.d.ts.map": { - "offset": 12227000, + "offset": 12226780, "size": 240, }, "decode-data-html.js": { - "offset": 12227230, + "offset": 12227020, "size": 47830, }, "decode-data-html.js.map": { - "offset": 12275050, + "offset": 12274840, "size": 410, }, "decode-data-xml.d.ts.map": { - "offset": 12275460, + "offset": 12275240, "size": 240, }, "decode-data-xml.js": { - "offset": 12275690, + "offset": 12275470, "size": 380, }, "decode-data-xml.js.map": { - "offset": 12276070, + "offset": 12275850, "size": 400, }, "encode-html.d.ts.map": { - "offset": 12276460, + "offset": 12276250, "size": 390, }, "encode-html.js": { - "offset": 12276850, + "offset": 12276630, "size": 27120, }, "encode-html.js.map": { - "offset": 12303970, + "offset": 12303750, "size": 48230, }, }, }, "index.d.ts.map": { - "offset": 12352200, + "offset": 12351980, "size": 1420, }, "index.js": { - "offset": 12353610, + "offset": 12353400, "size": 7150, }, "index.js.map": { - "offset": 12360760, + "offset": 12360540, "size": 2650, }, }, }, "package.json": { - "offset": 12363400, + "offset": 12363180, "size": 1510, }, }, @@ -35696,7 +35696,7 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen }, }, "package.json": { - "offset": 11986970, + "offset": 11986750, "size": 1780, }, }, @@ -35704,21 +35704,21 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen "mdn-data": { "files": { "LICENSE": { - "offset": 12364900, + "offset": 12364680, "size": 6560, }, "api": { "files": { "index.js": { - "offset": 12371460, + "offset": 12371240, "size": 70, }, "inheritance.json": { - "offset": 12371520, + "offset": 12371300, "size": 53040, }, "inheritance.schema.json": { - "offset": 12424560, + "offset": 12424340, "size": 530, }, }, @@ -35726,89 +35726,89 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen "css": { "files": { "at-rules.json": { - "offset": 12425090, + "offset": 12424870, "size": 15240, }, "at-rules.schema.json": { - "offset": 12440320, + "offset": 12440110, "size": 3200, }, "definitions.json": { - "offset": 12443520, + "offset": 12443300, "size": 1870, }, "functions.json": { - "offset": 12445390, + "offset": 12445170, "size": 17770, }, "functions.schema.json": { - "offset": 12463150, + "offset": 12462940, "size": 840, }, "index.js": { - "offset": 12463990, + "offset": 12463770, "size": 280, }, "properties.json": { - "offset": 12464270, + "offset": 12464050, "size": 312520, }, "properties.schema.json": { - "offset": 12776780, + "offset": 12776560, "size": 15130, }, "selectors.json": { - "offset": 12791900, + "offset": 12791690, "size": 26890, }, "selectors.schema.json": { - "offset": 12818790, + "offset": 12818570, "size": 690, }, "syntaxes.json": { - "offset": 12819480, + "offset": 12819260, "size": 30990, }, "syntaxes.schema.json": { - "offset": 12850470, + "offset": 12850250, "size": 230, }, "types.json": { - "offset": 12850700, + "offset": 12850480, "size": 6540, }, "types.schema.json": { - "offset": 12857240, + "offset": 12857020, "size": 630, }, "units.json": { - "offset": 12857860, + "offset": 12857640, "size": 3130, }, "units.schema.json": { - "offset": 12860990, + "offset": 12860770, "size": 510, }, }, }, "index.js": { - "offset": 12861490, + "offset": 12861270, "size": 100, }, "l10n": { "files": { "css.json": { - "offset": 12861590, + "offset": 12861370, "size": 162620, }, "index.js": { - "offset": 13024200, + "offset": 13023980, "size": 50, }, }, }, "package.json": { - "offset": 13024250, + "offset": 13024030, "size": 560, }, }, @@ -35816,43 +35816,43 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen "mdurl": { "files": { "LICENSE": { - "offset": 13024800, + "offset": 13024580, "size": 2310, }, "build": { "files": { "index.cjs.js": { - "offset": 13027100, + "offset": 13026880, "size": 15460, }, }, }, "index.mjs": { - "offset": 13042560, + "offset": 13042340, "size": 200, }, "lib": { "files": { "decode.mjs": { - "offset": 13042760, + "offset": 13042540, "size": 2850, }, "encode.mjs": { - "offset": 13045600, + "offset": 13045380, "size": 2220, }, "format.mjs": { - "offset": 13047810, + "offset": 13047600, "size": 490, }, "parse.mjs": { - "offset": 13048300, + "offset": 13048080, "size": 9740, }, }, }, "package.json": { - "offset": 13058030, + "offset": 13057810, "size": 610, }, }, @@ -35860,15 +35860,15 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen "ms": { "files": { "index.js": { - "offset": 13058630, + "offset": 13058420, "size": 3030, }, "license.md": { - "offset": 13061660, + "offset": 13061440, "size": 1080, }, "package.json": { - "offset": 13062730, + "offset": 13062520, "size": 500, }, }, @@ -35876,7 +35876,7 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen "parse5": { "files": { "LICENSE": { - "offset": 13063230, + "offset": 13063020, "size": 1110, }, "dist": { @@ -35884,47 +35884,47 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen "common": { "files": { "doctype.js": { - "offset": 13064340, + "offset": 13064120, "size": 4670, }, "error-codes.js": { - "offset": 13069000, + "offset": 13068790, "size": 4750, }, "foreign-content.js": { - "offset": 13073750, + "offset": 13073530, "size": 6300, }, "html.js": { - "offset": 13080050, + "offset": 13079830, "size": 17560, }, "token.js": { - "offset": 13097600, + "offset": 13097380, "size": 840, }, "unicode.js": { - "offset": 13098430, + "offset": 13098220, "size": 2990, }, }, }, "index.js": { - "offset": 13101420, + "offset": 13101210, "size": 1360, }, "parser": { "files": { "formatting-element-list.js": { - "offset": 13102780, + "offset": 13102560, "size": 4310, }, "index.js": { - "offset": 13107080, + "offset": 13106860, "size": 107130, }, "open-element-stack.js": { - "offset": 13214200, + "offset": 13213990, "size": 10920, }, }, @@ -35932,7 +35932,7 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen "serializer": { "files": { "index.js": { - "offset": 13225120, + "offset": 13224910, "size": 5270, }, }, @@ -35940,11 +35940,11 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen "tokenizer": { "files": { "index.js": { - "offset": 13230390, + "offset": 13230170, "size": 98130, }, "preprocessor.js": { - "offset": 13328510, + "offset": 13328300, "size": 7030, }, }, @@ -35952,11 +35952,11 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen "tree-adapters": { "files": { "default.js": { - "offset": 13335540, + "offset": 13335320, "size": 5240, }, "interface.js": { - "offset": 13340770, + "offset": 13340550, "size": 20, }, }, @@ -35964,7 +35964,7 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen }, }, "package.json": { - "offset": 13340780, + "offset": 13340560, "size": 670, }, }, @@ -35972,19 +35972,19 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen "punycode": { "files": { "LICENSE-MIT.txt": { - "offset": 13341450, + "offset": 13341230, "size": 1080, }, "package.json": { - "offset": 13342520, + "offset": 13342310, "size": 750, }, "punycode.es6.js": { - "offset": 13343270, + "offset": 13343060, "size": 12780, }, "punycode.js": { - "offset": 13356050, + "offset": 13355840, "size": 12720, }, }, @@ -35992,19 +35992,19 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen "punycode.js": { "files": { "LICENSE-MIT.txt": { - "offset": 13368760, + "offset": 13368550, "size": 1080, }, "package.json": { - "offset": 13369840, + "offset": 13369630, "size": 760, }, "punycode.es6.js": { - "offset": 13370590, + "offset": 13370380, "size": 12780, }, "punycode.js": { - "offset": 13383370, + "offset": 13383160, "size": 12720, }, }, @@ -36012,15 +36012,15 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen "require-from-string": { "files": { "index.js": { - "offset": 13396090, + "offset": 13395870, "size": 870, }, "license": { - "offset": 13396950, + "offset": 13396740, "size": 1130, }, "package.json": { - "offset": 13398080, + "offset": 13397860, "size": 450, }, }, @@ -36028,15 +36028,15 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen "saxes": { "files": { "package.json": { - "offset": 13398520, + "offset": 13398310, "size": 1700, }, "saxes.js": { - "offset": 13400210, + "offset": 13400000, "size": 73800, }, "saxes.js.map": { - "offset": 13474010, + "offset": 13473790, "size": 51770, }, }, @@ -36044,59 +36044,59 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen "source-map-js": { "files": { "LICENSE": { - "offset": 13525770, + "offset": 13525560, "size": 1530, }, "lib": { "files": { "array-set.js": { - "offset": 13527300, + "offset": 13527080, "size": 3200, }, "base64-vlq.js": { - "offset": 13530500, + "offset": 13530280, "size": 4720, }, "base64.js": { - "offset": 13535210, + "offset": 13535000, "size": 1540, }, "binary-search.js": { - "offset": 13536750, + "offset": 13536540, "size": 4250, }, "mapping-list.js": { - "offset": 13541000, + "offset": 13540780, "size": 2340, }, "quick-sort.js": { - "offset": 13543340, + "offset": 13543120, "size": 4070, }, "source-map-consumer.js": { - "offset": 13547410, + "offset": 13547190, "size": 41580, }, "source-map-generator.js": { - "offset": 13588990, + "offset": 13588770, "size": 14940, }, "source-node.js": { - "offset": 13603920, + "offset": 13603700, "size": 13810, }, "util.js": { - "offset": 13617730, + "offset": 13617510, "size": 15410, }, }, }, "package.json": { - "offset": 13633130, + "offset": 13632920, "size": 640, }, "source-map.js": { - "offset": 13633760, + "offset": 13633550, "size": 410, }, }, @@ -36104,31 +36104,31 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen "symbol-tree": { "files": { "LICENSE": { - "offset": 13634170, + "offset": 13633950, "size": 1090, }, "lib": { "files": { "SymbolTree.js": { - "offset": 13635250, + "offset": 13635040, "size": 29510, }, "SymbolTreeNode.js": { - "offset": 13664760, + "offset": 13664550, "size": 1940, }, "TreeIterator.js": { - "offset": 13666700, + "offset": 13666480, "size": 1980, }, "TreePosition.js": { - "offset": 13668670, + "offset": 13668460, "size": 250, }, }, }, "package.json": { - "offset": 13668910, + "offset": 13668700, "size": 700, }, }, @@ -36136,14 +36136,14 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen "tldts": { "files": { "LICENSE": { - "offset": 13669610, + "offset": 13669390, "size": 1080, }, "bin": { "files": { "cli.js": { "executable": true, - "offset": 13670690, + "offset": 13670470, "size": 550, }, }, @@ -36153,11 +36153,11 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen "cjs": { "files": { "index.js": { - "offset": 13671230, + "offset": 13671020, "size": 175640, }, "index.js.map": { - "offset": 13846870, + "offset": 13846660, "size": 410510, }, "src": { @@ -36165,27 +36165,27 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen "data": { "files": { "trie.js": { - "offset": 14257380, + "offset": 14257170, "size": 151830, }, "trie.js.map": { - "offset": 14409200, + "offset": 14408990, "size": 217490, }, }, }, "suffix-trie.js": { - "offset": 14626690, + "offset": 14626480, "size": 2490, }, "suffix-trie.js.map": { - "offset": 14629180, + "offset": 14628970, "size": 2270, }, }, }, "tsconfig.tsbuildinfo": { - "offset": 14631450, + "offset": 14631230, "size": 39380, }, }, @@ -36193,11 +36193,11 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen "es6": { "files": { "index.js": { - "offset": 14670820, + "offset": 14670610, "size": 1510, }, "index.js.map": { - "offset": 14672330, + "offset": 14672120, "size": 1290, }, "src": { @@ -36205,63 +36205,63 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen "data": { "files": { "trie.js": { - "offset": 14673620, + "offset": 14673400, "size": 151710, }, "trie.js.map": { - "offset": 14825330, + "offset": 14825110, "size": 217510, }, }, }, "suffix-trie.js": { - "offset": 15042840, + "offset": 15042620, "size": 2380, }, "suffix-trie.js.map": { - "offset": 15045210, + "offset": 15045000, "size": 2320, }, }, }, "tsconfig.bundle.tsbuildinfo": { - "offset": 15047530, + "offset": 15047320, "size": 39090, }, }, }, "index.cjs.min.js": { - "offset": 15086610, + "offset": 15086400, "size": 110070, }, "index.cjs.min.js.map": { - "offset": 15196680, + "offset": 15196470, "size": 394430, }, "index.esm.min.js": { - "offset": 15591110, + "offset": 15590890, "size": 110060, }, "index.esm.min.js.map": { - "offset": 15701160, + "offset": 15700950, "size": 394540, }, "index.umd.min.js": { - "offset": 16095700, + "offset": 16095480, "size": 110270, }, "index.umd.min.js.map": { - "offset": 16205960, + "offset": 16205740, "size": 394430, }, }, }, "index.ts": { - "offset": 16600380, + "offset": 16600170, "size": 1730, }, "package.json": { - "offset": 16602110, + "offset": 16601900, "size": 1100, }, "src": { @@ -36269,13 +36269,13 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen "data": { "files": { "trie.ts": { - "offset": 16603210, + "offset": 16603000, "size": 130740, }, }, }, "suffix-trie.ts": { - "offset": 16733940, + "offset": 16733730, "size": 2560, }, }, @@ -36285,7 +36285,7 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen "tldts-core": { "files": { "LICENSE": { - "offset": 16736490, + "offset": 16736280, "size": 1080, }, "dist": { @@ -36293,103 +36293,103 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen "cjs": { "files": { "index.js": { - "offset": 16737570, + "offset": 16737360, "size": 20370, }, "index.js.map": { - "offset": 16757930, + "offset": 16757720, "size": 34550, }, "src": { "files": { "domain-without-suffix.js": { - "offset": 16792480, + "offset": 16792260, "size": 590, }, "domain-without-suffix.js.map": { - "offset": 16793070, + "offset": 16792850, "size": 340, }, "domain.js": { - "offset": 16793400, + "offset": 16793190, "size": 3320, }, "domain.js.map": { - "offset": 16796720, + "offset": 16796510, "size": 1760, }, "extract-hostname.js": { - "offset": 16798480, + "offset": 16798260, "size": 5670, }, "extract-hostname.js.map": { - "offset": 16804150, + "offset": 16803930, "size": 4550, }, "factory.js": { - "offset": 16808690, + "offset": 16808470, "size": 4260, }, "factory.js.map": { - "offset": 16812940, + "offset": 16812730, "size": 2720, }, "is-ip.js": { - "offset": 16815650, + "offset": 16815440, "size": 2220, }, "is-ip.js.map": { - "offset": 16817870, + "offset": 16817660, "size": 2000, }, "is-valid.js": { - "offset": 16819870, + "offset": 16819650, "size": 2560, }, "is-valid.js.map": { - "offset": 16822420, + "offset": 16822210, "size": 1610, }, "lookup": { "files": { "fast-path.js": { - "offset": 16824030, + "offset": 16823820, "size": 2350, }, "fast-path.js.map": { - "offset": 16826380, + "offset": 16826160, "size": 2260, }, "interface.js": { - "offset": 16828640, + "offset": 16828420, "size": 120, }, "interface.js.map": { - "offset": 16828750, + "offset": 16828540, "size": 130, }, }, }, "options.js": { - "offset": 16828880, + "offset": 16828660, "size": 750, }, "options.js.map": { - "offset": 16829620, + "offset": 16829410, "size": 620, }, "subdomain.js": { - "offset": 16830240, + "offset": 16830030, "size": 440, }, "subdomain.js.map": { - "offset": 16830680, + "offset": 16830470, "size": 370, }, }, }, "tsconfig.tsbuildinfo": { - "offset": 16831050, + "offset": 16830830, "size": 40270, }, }, @@ -36397,103 +36397,103 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen "es6": { "files": { "index.js": { - "offset": 16871310, + "offset": 16871100, "size": 220, }, "index.js.map": { - "offset": 16871530, + "offset": 16871320, "size": 260, }, "src": { "files": { "domain-without-suffix.js": { - "offset": 16871790, + "offset": 16871570, "size": 490, }, "domain-without-suffix.js.map": { - "offset": 16872270, + "offset": 16872060, "size": 340, }, "domain.js": { - "offset": 16872610, + "offset": 16872390, "size": 3230, }, "domain.js.map": { - "offset": 16875830, + "offset": 16875620, "size": 1760, }, "extract-hostname.js": { - "offset": 16877590, + "offset": 16877370, "size": 5580, }, "extract-hostname.js.map": { - "offset": 16883160, + "offset": 16882940, "size": 4550, }, "factory.js": { - "offset": 16887700, + "offset": 16887480, "size": 3950, }, "factory.js.map": { - "offset": 16891640, + "offset": 16891430, "size": 2780, }, "is-ip.js": { - "offset": 16894420, + "offset": 16894210, "size": 2140, }, "is-ip.js.map": { - "offset": 16896560, + "offset": 16896340, "size": 1990, }, "is-valid.js": { - "offset": 16898550, + "offset": 16898330, "size": 2460, }, "is-valid.js.map": { - "offset": 16901000, + "offset": 16900790, "size": 1610, }, "lookup": { "files": { "fast-path.js": { - "offset": 16902610, + "offset": 16902390, "size": 2250, }, "fast-path.js.map": { - "offset": 16904860, + "offset": 16904640, "size": 2260, }, "interface.js": { - "offset": 16907110, + "offset": 16906900, "size": 50, }, "interface.js.map": { - "offset": 16907160, + "offset": 16906950, "size": 130, }, }, }, "options.js": { - "offset": 16907290, + "offset": 16907070, "size": 650, }, "options.js.map": { - "offset": 16907930, + "offset": 16907710, "size": 610, }, "subdomain.js": { - "offset": 16908540, + "offset": 16908320, "size": 350, }, "subdomain.js.map": { - "offset": 16908880, + "offset": 16908670, "size": 370, }, }, }, "tsconfig.bundle.tsbuildinfo": { - "offset": 16909250, + "offset": 16909040, "size": 39240, }, }, @@ -36501,57 +36501,57 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen }, }, "index.ts": { - "offset": 16948490, + "offset": 16948280, "size": 300, }, "package.json": { - "offset": 16948790, + "offset": 16948570, "size": 940, }, "src": { "files": { "domain-without-suffix.ts": { - "offset": 16949720, + "offset": 16949510, "size": 460, }, "domain.ts": { - "offset": 16950180, + "offset": 16949960, "size": 3220, }, "extract-hostname.ts": { - "offset": 16953400, + "offset": 16953180, "size": 4820, }, "factory.ts": { - "offset": 16958210, + "offset": 16958000, "size": 5110, }, "is-ip.ts": { - "offset": 16963320, + "offset": 16963100, "size": 2060, }, "is-valid.ts": { - "offset": 16965380, + "offset": 16965160, "size": 2310, }, "lookup": { "files": { "fast-path.ts": { - "offset": 16967680, + "offset": 16967470, "size": 2120, }, "interface.ts": { - "offset": 16969800, + "offset": 16969580, "size": 230, }, }, }, "options.ts": { - "offset": 16970020, + "offset": 16969810, "size": 870, }, "subdomain.ts": { - "offset": 16970890, + "offset": 16970670, "size": 330, }, }, @@ -36561,35 +36561,35 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen "tough-cookie": { "files": { "LICENSE": { - "offset": 16971210, + "offset": 16970990, "size": 1490, }, "dist": { "files": { "index.cjs": { - "offset": 16972700, + "offset": 16972480, "size": 74120, }, "index.cjs.map": { - "offset": 17046810, + "offset": 17046590, "size": 216350, }, "index.d.cts": { - "offset": 17263160, + "offset": 17262940, "size": 83680, }, "index.js": { - "offset": 17346840, + "offset": 17346620, "size": 72480, }, "index.js.map": { - "offset": 17419310, + "offset": 17419090, "size": 216180, }, }, }, "package.json": { - "offset": 17635480, + "offset": 17635270, "size": 1620, }, }, @@ -36597,31 +36597,31 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen "tr46": { "files": { "LICENSE.md": { - "offset": 17637100, + "offset": 17636890, "size": 1080, }, "index.js": { - "offset": 17638180, + "offset": 17637960, "size": 8590, }, "lib": { "files": { "mappingTable.json": { - "offset": 17646770, + "offset": 17646550, "size": 142920, }, "regexes.js": { - "offset": 17789680, + "offset": 17789460, "size": 72470, }, "statusMapping.js": { - "offset": 17862140, + "offset": 17861920, "size": 130, }, }, }, "package.json": { - "offset": 17862260, + "offset": 17862050, "size": 680, }, }, @@ -36629,13 +36629,13 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen "uc.micro": { "files": { "LICENSE.txt": { - "offset": 17862940, + "offset": 17862720, "size": 1080, }, "build": { "files": { "index.cjs.js": { - "offset": 17864020, + "offset": 17863800, "size": 5270, }, }, @@ -36645,7 +36645,7 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen "Cc": { "files": { "regex.mjs": { - "offset": 17869280, + "offset": 17869060, "size": 40, }, }, @@ -36653,7 +36653,7 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen "Cf": { "files": { "regex.mjs": { - "offset": 17869310, + "offset": 17869100, "size": 270, }, }, @@ -36661,7 +36661,7 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen "P": { "files": { "regex.mjs": { - "offset": 17869580, + "offset": 17869360, "size": 2050, }, }, @@ -36669,7 +36669,7 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen "S": { "files": { "regex.mjs": { - "offset": 17871620, + "offset": 17871400, "size": 2560, }, }, @@ -36677,7 +36677,7 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen "Z": { "files": { "regex.mjs": { - "offset": 17874170, + "offset": 17873960, "size": 80, }, }, @@ -36685,11 +36685,11 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen }, }, "index.mjs": { - "offset": 17874240, + "offset": 17874030, "size": 310, }, "package.json": { - "offset": 17874550, + "offset": 17874330, "size": 650, }, "properties": { @@ -36697,7 +36697,7 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen "Any": { "files": { "regex.mjs": { - "offset": 17875190, + "offset": 17874980, "size": 150, }, }, @@ -36709,27 +36709,27 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen "w3c-xmlserializer": { "files": { "LICENSE.md": { - "offset": 17875340, + "offset": 17875120, "size": 1110, }, "lib": { "files": { "attributes.js": { - "offset": 17876440, + "offset": 17876230, "size": 3700, }, "constants.js": { - "offset": 17880130, + "offset": 17879920, "size": 790, }, "serialize.js": { - "offset": 17880920, + "offset": 17880710, "size": 10100, }, }, }, "package.json": { - "offset": 17891020, + "offset": 17890810, "size": 460, }, }, @@ -36737,19 +36737,19 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen "webidl-conversions": { "files": { "LICENSE.md": { - "offset": 17891480, + "offset": 17891260, "size": 1330, }, "lib": { "files": { "index.js": { - "offset": 17892800, + "offset": 17892580, "size": 12230, }, }, }, "package.json": { - "offset": 17905020, + "offset": 17904800, "size": 600, }, }, @@ -36757,43 +36757,43 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen "whatwg-mimetype": { "files": { "LICENSE.txt": { - "offset": 17905610, + "offset": 17905400, "size": 1070, }, "lib": { "files": { "index.js": { - "offset": 17906680, + "offset": 17906460, "size": 120, }, "mime-type-parameters.js": { - "offset": 17906790, + "offset": 17906580, "size": 1440, }, "mime-type.js": { - "offset": 17908230, + "offset": 17908010, "size": 3160, }, "parser.js": { - "offset": 17911380, + "offset": 17911170, "size": 2520, }, "serializer.js": { - "offset": 17913900, + "offset": 17913680, "size": 600, }, "sniff.js": { - "offset": 17914500, + "offset": 17914280, "size": 23890, }, "utils.js": { - "offset": 17938390, + "offset": 17938170, "size": 1410, }, }, }, "package.json": { - "offset": 17939790, + "offset": 17939580, "size": 680, }, }, @@ -36801,71 +36801,71 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen "whatwg-url": { "files": { "LICENSE.txt": { - "offset": 17940470, + "offset": 17940250, "size": 1080, }, "index.js": { - "offset": 17941550, + "offset": 17941330, "size": 1270, }, "lib": { "files": { "Function.js": { - "offset": 17942810, + "offset": 17942590, "size": 1190, }, "URL-impl.js": { - "offset": 17944000, + "offset": 17943780, "size": 5090, }, "URL.js": { - "offset": 17949080, + "offset": 17948860, "size": 15390, }, "URLSearchParams-impl.js": { - "offset": 17964460, + "offset": 17964250, "size": 2970, }, "URLSearchParams.js": { - "offset": 17967430, + "offset": 17967220, "size": 17120, }, "VoidFunction.js": { - "offset": 17984550, + "offset": 17984340, "size": 730, }, "encoding.js": { - "offset": 17985280, + "offset": 17985060, "size": 330, }, "infra.js": { - "offset": 17985610, + "offset": 17985390, "size": 520, }, "percent-encoding.js": { - "offset": 17986130, + "offset": 17985910, "size": 4890, }, "url-state-machine.js": { - "offset": 17991010, + "offset": 17990800, "size": 31850, }, "urlencoded.js": { - "offset": 18022860, + "offset": 18022640, "size": 2280, }, "utils.js": { - "offset": 18025140, + "offset": 18024920, "size": 6770, }, }, }, "package.json": { - "offset": 18031900, + "offset": 18031690, "size": 980, }, "webidl2js-wrapper.js": { - "offset": 18032880, + "offset": 18032660, "size": 170, }, }, @@ -36873,79 +36873,79 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen "ws": { "files": { "LICENSE": { - "offset": 18033050, + "offset": 18032830, "size": 1190, }, "browser.js": { - "offset": 18034230, + "offset": 18034020, "size": 180, }, "index.js": { - "offset": 18034410, + "offset": 18034190, "size": 380, }, "lib": { "files": { "buffer-util.js": { - "offset": 18034780, + "offset": 18034570, "size": 3060, }, "constants.js": { - "offset": 18037840, + "offset": 18037620, "size": 510, }, "event-target.js": { - "offset": 18038340, + "offset": 18038130, "size": 7330, }, "extension.js": { - "offset": 18045660, + "offset": 18045450, "size": 6190, }, "limiter.js": { - "offset": 18051850, + "offset": 18051630, "size": 1040, }, "permessage-deflate.js": { - "offset": 18052880, + "offset": 18052660, "size": 14510, }, "receiver.js": { - "offset": 18067390, + "offset": 18067170, "size": 16460, }, "sender.js": { - "offset": 18083850, + "offset": 18083630, "size": 16720, }, "stream.js": { - "offset": 18100560, + "offset": 18100350, "size": 4210, }, "subprotocol.js": { - "offset": 18104770, + "offset": 18104550, "size": 1500, }, "validation.js": { - "offset": 18106260, + "offset": 18106050, "size": 3910, }, "websocket-server.js": { - "offset": 18110170, + "offset": 18109950, "size": 16620, }, "websocket.js": { - "offset": 18126780, + "offset": 18126570, "size": 36740, }, }, }, "package.json": { - "offset": 18163520, + "offset": 18163310, "size": 1280, }, "wrapper.mjs": { - "offset": 18164800, + "offset": 18164590, "size": 350, }, }, @@ -36953,19 +36953,19 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen "xml-name-validator": { "files": { "LICENSE.txt": { - "offset": 18165140, + "offset": 18164930, "size": 10180, }, "lib": { "files": { "xml-name-validator.js": { - "offset": 18175320, + "offset": 18175100, "size": 1710, }, }, }, "package.json": { - "offset": 18177020, + "offset": 18176800, "size": 530, }, }, @@ -36973,11 +36973,11 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen "xmlchars": { "files": { "LICENSE": { - "offset": 18177540, + "offset": 18177330, "size": 1090, }, "package.json": { - "offset": 18178630, + "offset": 18178410, "size": 860, }, "xml": { @@ -36985,19 +36985,19 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen "1.0": { "files": { "ed4.js": { - "offset": 18179490, + "offset": 18179270, "size": 5500, }, "ed4.js.map": { - "offset": 18184990, + "offset": 18184770, "size": 1400, }, "ed5.js": { - "offset": 18186380, + "offset": 18186160, "size": 3350, }, "ed5.js.map": { - "offset": 18189720, + "offset": 18189510, "size": 2610, }, }, @@ -37005,11 +37005,11 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen "1.1": { "files": { "ed2.js": { - "offset": 18192330, + "offset": 18192110, "size": 4740, }, "ed2.js.map": { - "offset": 18197070, + "offset": 18196850, "size": 3400, }, }, @@ -37017,11 +37017,11 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen }, }, "xmlchars.js": { - "offset": 18200460, + "offset": 18200240, "size": 6920, }, "xmlchars.js.map": { - "offset": 18207370, + "offset": 18207150, "size": 3080, }, "xmlns": { @@ -37029,11 +37029,11 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen "1.0": { "files": { "ed3.js": { - "offset": 18210450, + "offset": 18210230, "size": 2260, }, "ed3.js.map": { - "offset": 18212700, + "offset": 18212480, "size": 1690, }, }, @@ -37045,7 +37045,7 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen }, }, "package.json": { - "offset": 18217720, + "offset": 18217510, "size": 320, }, }, @@ -37167,11 +37167,11 @@ exports[`node_module collectors > yarn max stack 2`] = ` { "files": { "index.html": { - "offset": 3738560, + "offset": 3740280, "size": 380, }, "index.js": { - "offset": 3738940, + "offset": 3740660, "size": 620, }, "node_modules": { @@ -49360,10 +49360,10 @@ exports[`node_module collectors > yarn max stack 2`] = ` }, "minimatch.js": { "offset": 3180010, - "size": 26270, + "size": 27460, }, "package.json": { - "offset": 3206280, + "offset": 3207470, "size": 530, }, }, @@ -49371,17 +49371,17 @@ exports[`node_module collectors > yarn max stack 2`] = ` "nice-try": { "files": { "LICENSE": { - "offset": 3206800, + "offset": 3208000, "size": 1080, }, "package.json": { - "offset": 3207880, + "offset": 3209080, "size": 550, }, "src": { "files": { "index.js": { - "offset": 3208430, + "offset": 3209620, "size": 310, }, }, @@ -49391,47 +49391,47 @@ exports[`node_module collectors > yarn max stack 2`] = ` "normalize-package-data": { "files": { "AUTHORS": { - "offset": 3208730, + "offset": 3209920, "size": 160, }, "LICENSE": { - "offset": 3208880, + "offset": 3210080, "size": 1400, }, "lib": { "files": { "extract_description.js": { - "offset": 3210280, + "offset": 3211470, "size": 510, }, "fixer.js": { - "offset": 3210790, + "offset": 3211980, "size": 11810, }, "make_warning.js": { - "offset": 3222590, + "offset": 3223780, "size": 710, }, "normalize.js": { - "offset": 3223300, + "offset": 3224490, "size": 1350, }, "safe_format.js": { - "offset": 3224640, + "offset": 3225830, "size": 250, }, "typos.json": { - "offset": 3224880, + "offset": 3226080, "size": 750, }, "warning_messages.json": { - "offset": 3225630, + "offset": 3226830, "size": 1800, }, }, }, "package.json": { - "offset": 3227430, + "offset": 3228620, "size": 680, }, }, @@ -49439,7 +49439,7 @@ exports[`node_module collectors > yarn max stack 2`] = ` "npm-run-all": { "files": { "LICENSE": { - "offset": 3228110, + "offset": 3229300, "size": 1090, }, "bin": { @@ -49447,15 +49447,15 @@ exports[`node_module collectors > yarn max stack 2`] = ` "common": { "files": { "bootstrap.js": { - "offset": 3229190, + "offset": 3230380, "size": 1490, }, "parse-cli-args.js": { - "offset": 3230670, + "offset": 3231860, "size": 7280, }, "version.js": { - "offset": 3237950, + "offset": 3239140, "size": 690, }, }, @@ -49463,16 +49463,16 @@ exports[`node_module collectors > yarn max stack 2`] = ` "npm-run-all": { "files": { "help.js": { - "offset": 3238630, + "offset": 3239830, "size": 3180, }, "index.js": { "executable": true, - "offset": 3241810, + "offset": 3243010, "size": 400, }, "main.js": { - "offset": 3242210, + "offset": 3243400, "size": 2660, }, }, @@ -49480,16 +49480,16 @@ exports[`node_module collectors > yarn max stack 2`] = ` "run-p": { "files": { "help.js": { - "offset": 3244870, + "offset": 3246060, "size": 2610, }, "index.js": { "executable": true, - "offset": 3247470, + "offset": 3248670, "size": 400, }, "main.js": { - "offset": 3247870, + "offset": 3249060, "size": 2370, }, }, @@ -49497,16 +49497,16 @@ exports[`node_module collectors > yarn max stack 2`] = ` "run-s": { "files": { "help.js": { - "offset": 3250230, + "offset": 3251430, "size": 2200, }, "index.js": { "executable": true, - "offset": 3252430, + "offset": 3253620, "size": 400, }, "main.js": { - "offset": 3252820, + "offset": 3254010, "size": 2240, }, }, @@ -49516,19 +49516,19 @@ exports[`node_module collectors > yarn max stack 2`] = ` "docs": { "files": { "node-api.md": { - "offset": 3255050, + "offset": 3256250, "size": 5070, }, "npm-run-all.md": { - "offset": 3260110, + "offset": 3261310, "size": 7070, }, "run-p.md": { - "offset": 3267180, + "offset": 3268370, "size": 5510, }, "run-s.md": { - "offset": 3272680, + "offset": 3273880, "size": 4890, }, }, @@ -49536,53 +49536,53 @@ exports[`node_module collectors > yarn max stack 2`] = ` "lib": { "files": { "create-header.js": { - "offset": 3277560, + "offset": 3278760, "size": 1760, }, "create-prefix-transform-stream.js": { - "offset": 3279320, + "offset": 3280520, "size": 3210, }, "index.js": { - "offset": 3282530, + "offset": 3283720, "size": 10020, }, "match-tasks.js": { - "offset": 3292540, + "offset": 3293740, "size": 4030, }, "npm-run-all-error.js": { - "offset": 3296570, + "offset": 3297760, "size": 1420, }, "read-package-json.js": { - "offset": 3297990, + "offset": 3299180, "size": 980, }, "run-task.js": { - "offset": 3298970, + "offset": 3300160, "size": 7330, }, "run-tasks.js": { - "offset": 3306300, + "offset": 3307490, "size": 5140, }, "spawn-posix.js": { - "offset": 3311430, + "offset": 3312620, "size": 1850, }, "spawn-win32.js": { - "offset": 3313280, + "offset": 3314470, "size": 1570, }, "spawn.js": { - "offset": 3314840, + "offset": 3316030, "size": 610, }, }, }, "package.json": { - "offset": 3315440, + "offset": 3316640, "size": 1280, }, }, @@ -49590,31 +49590,31 @@ exports[`node_module collectors > yarn max stack 2`] = ` "object-inspect": { "files": { ".nycrc": { - "offset": 3316720, + "offset": 3317910, "size": 240, }, "LICENSE": { - "offset": 3316950, + "offset": 3318150, "size": 1080, }, "index.js": { - "offset": 3318020, + "offset": 3319220, "size": 19060, }, "package-support.json": { - "offset": 3337080, + "offset": 3338280, "size": 370, }, "package.json": { - "offset": 3337450, + "offset": 3338640, "size": 2000, }, "test-core-js.js": { - "offset": 3339440, + "offset": 3340630, "size": 540, }, "util.inspect.js": { - "offset": 3339970, + "offset": 3341170, "size": 50, }, }, @@ -49622,27 +49622,27 @@ exports[`node_module collectors > yarn max stack 2`] = ` "object-keys": { "files": { ".editorconfig": { - "offset": 3340020, + "offset": 3341210, "size": 280, }, "LICENSE": { - "offset": 3340290, + "offset": 3341490, "size": 1080, }, "implementation.js": { - "offset": 3341370, + "offset": 3342570, "size": 3220, }, "index.js": { - "offset": 3344590, + "offset": 3345780, "size": 830, }, "isArguments.js": { - "offset": 3345410, + "offset": 3346610, "size": 430, }, "package.json": { - "offset": 3345830, + "offset": 3347030, "size": 1130, }, }, @@ -49650,51 +49650,51 @@ exports[`node_module collectors > yarn max stack 2`] = ` "object.assign": { "files": { ".editorconfig": { - "offset": 3346960, + "offset": 3348150, "size": 290, }, ".nycrc": { - "offset": 3347240, + "offset": 3348440, "size": 140, }, "LICENSE": { - "offset": 3347380, + "offset": 3348580, "size": 1080, }, "auto.js": { - "offset": 3348460, + "offset": 3349660, "size": 40, }, "dist": { "files": { "browser.js": { - "offset": 3348500, + "offset": 3349690, "size": 41570, }, }, }, "hasSymbols.js": { - "offset": 3390060, + "offset": 3391260, "size": 1620, }, "implementation.js": { - "offset": 3391680, + "offset": 3392880, "size": 1430, }, "index.js": { - "offset": 3393110, + "offset": 3394300, "size": 540, }, "package.json": { - "offset": 3393640, + "offset": 3394830, "size": 1630, }, "polyfill.js": { - "offset": 3395260, + "offset": 3396460, "size": 1300, }, "shim.js": { - "offset": 3396560, + "offset": 3397760, "size": 310, }, }, @@ -49702,23 +49702,23 @@ exports[`node_module collectors > yarn max stack 2`] = ` "own-keys": { "files": { ".nycrc": { - "offset": 3396870, + "offset": 3398060, "size": 140, }, "LICENSE": { - "offset": 3397010, + "offset": 3398200, "size": 1080, }, "index.js": { - "offset": 3398080, + "offset": 3399270, "size": 590, }, "package.json": { - "offset": 3398660, + "offset": 3399850, "size": 1640, }, "tsconfig.json": { - "offset": 3400300, + "offset": 3401490, "size": 130, }, }, @@ -49726,15 +49726,15 @@ exports[`node_module collectors > yarn max stack 2`] = ` "parse-json": { "files": { "index.js": { - "offset": 3400420, + "offset": 3401610, "size": 620, }, "license": { - "offset": 3401040, + "offset": 3402230, "size": 1110, }, "package.json": { - "offset": 3402150, + "offset": 3403340, "size": 550, }, }, @@ -49742,15 +49742,15 @@ exports[`node_module collectors > yarn max stack 2`] = ` "path-key": { "files": { "index.js": { - "offset": 3402690, + "offset": 3403880, "size": 290, }, "license": { - "offset": 3402970, + "offset": 3404160, "size": 1120, }, "package.json": { - "offset": 3404090, + "offset": 3405280, "size": 430, }, }, @@ -49758,15 +49758,15 @@ exports[`node_module collectors > yarn max stack 2`] = ` "path-parse": { "files": { "LICENSE": { - "offset": 3404510, + "offset": 3405710, "size": 1080, }, "index.js": { - "offset": 3405590, + "offset": 3406790, "size": 1900, }, "package.json": { - "offset": 3407490, + "offset": 3408680, "size": 370, }, }, @@ -49774,15 +49774,15 @@ exports[`node_module collectors > yarn max stack 2`] = ` "path-type": { "files": { "index.js": { - "offset": 3407850, + "offset": 3409040, "size": 990, }, "license": { - "offset": 3408840, + "offset": 3410030, "size": 1110, }, "package.json": { - "offset": 3409950, + "offset": 3411140, "size": 470, }, }, @@ -49793,45 +49793,45 @@ exports[`node_module collectors > yarn max stack 2`] = ` "files": { "pidtree.js": { "executable": true, - "offset": 3410420, + "offset": 3411610, "size": 2860, }, }, }, "index.js": { - "offset": 3413280, + "offset": 3414470, "size": 1350, }, "lib": { "files": { "bin.js": { - "offset": 3414620, + "offset": 3415820, "size": 1030, }, "get.js": { - "offset": 3415650, + "offset": 3416840, "size": 730, }, "pidtree.js": { - "offset": 3416370, + "offset": 3417560, "size": 2690, }, "ps.js": { - "offset": 3419050, + "offset": 3420250, "size": 1070, }, "wmic.js": { - "offset": 3420120, + "offset": 3421310, "size": 1180, }, }, }, "license": { - "offset": 3421300, + "offset": 3422490, "size": 1080, }, "package.json": { - "offset": 3422370, + "offset": 3423560, "size": 810, }, }, @@ -49839,15 +49839,15 @@ exports[`node_module collectors > yarn max stack 2`] = ` "pify": { "files": { "index.js": { - "offset": 3423180, + "offset": 3424370, "size": 1810, }, "license": { - "offset": 3424980, + "offset": 3426180, "size": 1110, }, "package.json": { - "offset": 3426090, + "offset": 3427290, "size": 470, }, }, @@ -49855,19 +49855,19 @@ exports[`node_module collectors > yarn max stack 2`] = ` "possible-typed-array-names": { "files": { "LICENSE": { - "offset": 3426550, + "offset": 3427750, "size": 1080, }, "index.js": { - "offset": 3427630, + "offset": 3428820, "size": 270, }, "package.json": { - "offset": 3427890, + "offset": 3429080, "size": 1300, }, "tsconfig.json": { - "offset": 3429180, + "offset": 3430370, "size": 120, }, }, @@ -49875,15 +49875,15 @@ exports[`node_module collectors > yarn max stack 2`] = ` "read-pkg": { "files": { "index.js": { - "offset": 3429300, + "offset": 3430490, "size": 820, }, "license": { - "offset": 3430110, + "offset": 3431310, "size": 1110, }, "package.json": { - "offset": 3431220, + "offset": 3432420, "size": 530, }, }, @@ -49891,35 +49891,35 @@ exports[`node_module collectors > yarn max stack 2`] = ` "reflect.getprototypeof": { "files": { ".nycrc": { - "offset": 3431740, + "offset": 3432940, "size": 140, }, "LICENSE": { - "offset": 3431880, + "offset": 3433080, "size": 1080, }, "auto.js": { - "offset": 3432950, + "offset": 3434150, "size": 40, }, "implementation.js": { - "offset": 3432990, + "offset": 3434180, "size": 1100, }, "index.js": { - "offset": 3434080, + "offset": 3435280, "size": 430, }, "package.json": { - "offset": 3434500, + "offset": 3435700, "size": 1810, }, "polyfill.js": { - "offset": 3436310, + "offset": 3437500, "size": 350, }, "shim.js": { - "offset": 3436660, + "offset": 3437850, "size": 470, }, }, @@ -49927,39 +49927,39 @@ exports[`node_module collectors > yarn max stack 2`] = ` "regexp.prototype.flags": { "files": { ".editorconfig": { - "offset": 3437120, + "offset": 3438310, "size": 280, }, ".nycrc": { - "offset": 3437390, + "offset": 3438590, "size": 140, }, "LICENSE": { - "offset": 3437530, + "offset": 3438730, "size": 1090, }, "auto.js": { - "offset": 3438620, + "offset": 3439810, "size": 40, }, "implementation.js": { - "offset": 3438650, + "offset": 3439850, "size": 710, }, "index.js": { - "offset": 3439360, + "offset": 3440560, "size": 390, }, "package.json": { - "offset": 3439750, + "offset": 3440940, "size": 1920, }, "polyfill.js": { - "offset": 3441670, + "offset": 3442860, "size": 870, }, "shim.js": { - "offset": 3442530, + "offset": 3443720, "size": 780, }, }, @@ -49967,80 +49967,80 @@ exports[`node_module collectors > yarn max stack 2`] = ` "resolve": { "files": { ".editorconfig": { - "offset": 3443310, + "offset": 3444500, "size": 610, }, "LICENSE": { - "offset": 3443910, + "offset": 3445110, "size": 1080, }, "SECURITY.md": { - "offset": 3444990, + "offset": 3446180, "size": 360, }, "async.js": { - "offset": 3445340, + "offset": 3446540, "size": 60, }, "bin": { "files": { "resolve": { "executable": true, - "offset": 3445400, + "offset": 3446590, "size": 1540, }, }, }, "index.js": { - "offset": 3446930, + "offset": 3448130, "size": 180, }, "lib": { "files": { "async.js": { - "offset": 3447110, + "offset": 3448300, "size": 11520, }, "caller.js": { - "offset": 3458620, + "offset": 3459820, "size": 360, }, "core.js": { - "offset": 3458980, + "offset": 3460170, "size": 310, }, "core.json": { - "offset": 3459290, + "offset": 3460480, "size": 5960, }, "homedir.js": { - "offset": 3465240, + "offset": 3466430, "size": 810, }, "is-core.js": { - "offset": 3466050, + "offset": 3467240, "size": 120, }, "node-modules-paths.js": { - "offset": 3466160, + "offset": 3467360, "size": 1370, }, "normalize-options.js": { - "offset": 3467530, + "offset": 3468720, "size": 350, }, "sync.js": { - "offset": 3467870, + "offset": 3469070, "size": 7150, }, }, }, "package.json": { - "offset": 3475020, + "offset": 3476220, "size": 1320, }, "sync.js": { - "offset": 3476340, + "offset": 3477530, "size": 60, }, }, @@ -50048,23 +50048,23 @@ exports[`node_module collectors > yarn max stack 2`] = ` "safe-array-concat": { "files": { ".nycrc": { - "offset": 3476390, + "offset": 3477590, "size": 220, }, "LICENSE": { - "offset": 3476610, + "offset": 3477800, "size": 1080, }, "index.js": { - "offset": 3477680, + "offset": 3478880, "size": 1880, }, "package.json": { - "offset": 3479560, + "offset": 3480750, "size": 1720, }, "tsconfig.json": { - "offset": 3481270, + "offset": 3482460, "size": 130, }, }, @@ -50072,23 +50072,23 @@ exports[`node_module collectors > yarn max stack 2`] = ` "safe-push-apply": { "files": { ".nycrc": { - "offset": 3481400, + "offset": 3482590, "size": 220, }, "LICENSE": { - "offset": 3481610, + "offset": 3482810, "size": 1080, }, "index.js": { - "offset": 3482680, + "offset": 3483880, "size": 390, }, "package.json": { - "offset": 3483070, + "offset": 3484260, "size": 1460, }, "tsconfig.json": { - "offset": 3484520, + "offset": 3485720, "size": 130, }, }, @@ -50096,23 +50096,23 @@ exports[`node_module collectors > yarn max stack 2`] = ` "safe-regex-test": { "files": { ".nycrc": { - "offset": 3484650, + "offset": 3485840, "size": 220, }, "LICENSE": { - "offset": 3484860, + "offset": 3486060, "size": 1080, }, "index.js": { - "offset": 3485930, + "offset": 3487130, "size": 410, }, "package.json": { - "offset": 3486340, + "offset": 3487530, "size": 1590, }, "tsconfig.json": { - "offset": 3487920, + "offset": 3489110, "size": 120, }, }, @@ -50120,28 +50120,28 @@ exports[`node_module collectors > yarn max stack 2`] = ` "semver": { "files": { "LICENSE": { - "offset": 3488040, + "offset": 3489230, "size": 770, }, "bin": { "files": { "semver": { "executable": true, - "offset": 3488800, + "offset": 3490000, "size": 4420, }, }, }, "package.json": { - "offset": 3493220, + "offset": 3494420, "size": 670, }, "range.bnf": { - "offset": 3493890, + "offset": 3495080, "size": 620, }, "semver.js": { - "offset": 3494510, + "offset": 3495700, "size": 40820, }, }, @@ -50149,27 +50149,27 @@ exports[`node_module collectors > yarn max stack 2`] = ` "set-function-length": { "files": { ".nycrc": { - "offset": 3535320, + "offset": 3536510, "size": 220, }, "LICENSE": { - "offset": 3535540, + "offset": 3536730, "size": 1090, }, "env.js": { - "offset": 3536620, + "offset": 3537810, "size": 870, }, "index.js": { - "offset": 3537490, + "offset": 3538680, "size": 1280, }, "package.json": { - "offset": 3538760, + "offset": 3539950, "size": 1960, }, "tsconfig.json": { - "offset": 3540710, + "offset": 3541910, "size": 120, }, }, @@ -50177,19 +50177,19 @@ exports[`node_module collectors > yarn max stack 2`] = ` "set-function-name": { "files": { "LICENSE": { - "offset": 3540830, + "offset": 3542020, "size": 1090, }, "index.js": { - "offset": 3541910, + "offset": 3543100, "size": 750, }, "package.json": { - "offset": 3542650, + "offset": 3543850, "size": 2130, }, "tsconfig.json": { - "offset": 3544780, + "offset": 3545980, "size": 4890, }, }, @@ -50197,31 +50197,31 @@ exports[`node_module collectors > yarn max stack 2`] = ` "set-proto": { "files": { ".nycrc": { - "offset": 3549670, + "offset": 3550860, "size": 140, }, "LICENSE": { - "offset": 3549810, + "offset": 3551000, "size": 1080, }, "Object.setPrototypeOf.js": { - "offset": 3550880, + "offset": 3552070, "size": 160, }, "Reflect.setPrototypeOf.js": { - "offset": 3551040, + "offset": 3552230, "size": 150, }, "index.js": { - "offset": 3551190, + "offset": 3552380, "size": 740, }, "package.json": { - "offset": 3551920, + "offset": 3553110, "size": 1460, }, "tsconfig.json": { - "offset": 3553370, + "offset": 3554560, "size": 120, }, }, @@ -50229,15 +50229,15 @@ exports[`node_module collectors > yarn max stack 2`] = ` "shebang-command": { "files": { "index.js": { - "offset": 3553490, + "offset": 3554680, "size": 350, }, "license": { - "offset": 3553830, + "offset": 3555030, "size": 1130, }, "package.json": { - "offset": 3554960, + "offset": 3556150, "size": 480, }, }, @@ -50245,15 +50245,15 @@ exports[`node_module collectors > yarn max stack 2`] = ` "shebang-regex": { "files": { "index.js": { - "offset": 3555440, + "offset": 3556630, "size": 40, }, "license": { - "offset": 3555480, + "offset": 3556670, "size": 1120, }, "package.json": { - "offset": 3556600, + "offset": 3557790, "size": 420, }, }, @@ -50261,36 +50261,36 @@ exports[`node_module collectors > yarn max stack 2`] = ` "shell-quote": { "files": { ".nycrc": { - "offset": 3557010, + "offset": 3558210, "size": 230, }, "LICENSE": { - "offset": 3557240, + "offset": 3558440, "size": 1110, }, "index.js": { - "offset": 3558350, + "offset": 3559550, "size": 90, }, "package.json": { - "offset": 3558440, + "offset": 3559630, "size": 1200, }, "parse.js": { - "offset": 3559630, + "offset": 3560830, "size": 5190, }, "print.py": { "executable": true, - "offset": 3564820, + "offset": 3566020, "size": 60, }, "quote.js": { - "offset": 3564870, + "offset": 3566070, "size": 500, }, "security.md": { - "offset": 3565370, + "offset": 3566570, "size": 300, }, }, @@ -50298,27 +50298,27 @@ exports[`node_module collectors > yarn max stack 2`] = ` "side-channel": { "files": { ".editorconfig": { - "offset": 3565670, + "offset": 3566860, "size": 150, }, ".nycrc": { - "offset": 3565810, + "offset": 3567010, "size": 220, }, "LICENSE": { - "offset": 3566030, + "offset": 3567220, "size": 1080, }, "index.js": { - "offset": 3567100, + "offset": 3568290, "size": 1190, }, "package.json": { - "offset": 3568290, + "offset": 3569480, "size": 1570, }, "tsconfig.json": { - "offset": 3569850, + "offset": 3571050, "size": 120, }, }, @@ -50326,27 +50326,27 @@ exports[`node_module collectors > yarn max stack 2`] = ` "side-channel-list": { "files": { ".editorconfig": { - "offset": 3569970, + "offset": 3571160, "size": 150, }, ".nycrc": { - "offset": 3570110, + "offset": 3571310, "size": 220, }, "LICENSE": { - "offset": 3570330, + "offset": 3571520, "size": 1080, }, "index.js": { - "offset": 3571400, + "offset": 3572590, "size": 3400, }, "package.json": { - "offset": 3574790, + "offset": 3575980, "size": 1490, }, "tsconfig.json": { - "offset": 3576280, + "offset": 3577470, "size": 120, }, }, @@ -50354,27 +50354,27 @@ exports[`node_module collectors > yarn max stack 2`] = ` "side-channel-map": { "files": { ".editorconfig": { - "offset": 3576400, + "offset": 3577590, "size": 150, }, ".nycrc": { - "offset": 3576540, + "offset": 3577740, "size": 220, }, "LICENSE": { - "offset": 3576760, + "offset": 3577950, "size": 1080, }, "index.js": { - "offset": 3577830, + "offset": 3579020, "size": 1990, }, "package.json": { - "offset": 3579810, + "offset": 3581000, "size": 1580, }, "tsconfig.json": { - "offset": 3581390, + "offset": 3582580, "size": 120, }, }, @@ -50382,27 +50382,27 @@ exports[`node_module collectors > yarn max stack 2`] = ` "side-channel-weakmap": { "files": { ".editorconfig": { - "offset": 3581500, + "offset": 3582700, "size": 150, }, ".nycrc": { - "offset": 3581650, + "offset": 3582840, "size": 220, }, "LICENSE": { - "offset": 3581860, + "offset": 3583060, "size": 1080, }, "index.js": { - "offset": 3582930, + "offset": 3584130, "size": 2710, }, "package.json": { - "offset": 3585640, + "offset": 3586840, "size": 1650, }, "tsconfig.json": { - "offset": 3587290, + "offset": 3588480, "size": 120, }, }, @@ -50410,15 +50410,15 @@ exports[`node_module collectors > yarn max stack 2`] = ` "spdx-correct": { "files": { "LICENSE": { - "offset": 3587400, + "offset": 3588600, "size": 11360, }, "index.js": { - "offset": 3598760, + "offset": 3599960, "size": 10760, }, "package.json": { - "offset": 3609510, + "offset": 3610710, "size": 490, }, }, @@ -50426,15 +50426,15 @@ exports[`node_module collectors > yarn max stack 2`] = ` "spdx-exceptions": { "files": { "deprecated.json": { - "offset": 3610000, + "offset": 3611190, "size": 40, }, "index.json": { - "offset": 3610030, + "offset": 3611220, "size": 1740, }, "package.json": { - "offset": 3611760, + "offset": 3612950, "size": 290, }, }, @@ -50442,27 +50442,27 @@ exports[`node_module collectors > yarn max stack 2`] = ` "spdx-expression-parse": { "files": { "AUTHORS": { - "offset": 3612040, + "offset": 3613240, "size": 210, }, "LICENSE": { - "offset": 3612250, + "offset": 3613440, "size": 1120, }, "index.js": { - "offset": 3613360, + "offset": 3614550, "size": 150, }, "package.json": { - "offset": 3613500, + "offset": 3614700, "size": 560, }, "parse.js": { - "offset": 3614060, + "offset": 3615250, "size": 2910, }, "scan.js": { - "offset": 3616960, + "offset": 3618150, "size": 2760, }, }, @@ -50470,15 +50470,15 @@ exports[`node_module collectors > yarn max stack 2`] = ` "spdx-license-ids": { "files": { "deprecated.json": { - "offset": 3619710, + "offset": 3620900, "size": 520, }, "index.json": { - "offset": 3620220, - "size": 10760, + "offset": 3621420, + "size": 11290, }, "package.json": { - "offset": 3630980, + "offset": 3632700, "size": 310, }, }, @@ -50486,23 +50486,23 @@ exports[`node_module collectors > yarn max stack 2`] = ` "stop-iteration-iterator": { "files": { ".nycrc": { - "offset": 3631280, + "offset": 3633000, "size": 220, }, "LICENSE": { - "offset": 3631490, + "offset": 3633220, "size": 1080, }, "index.js": { - "offset": 3632560, + "offset": 3634290, "size": 1310, }, "package.json": { - "offset": 3633870, + "offset": 3635600, "size": 1420, }, "tsconfig.json": { - "offset": 3635290, + "offset": 3637010, "size": 70, }, }, @@ -50510,39 +50510,39 @@ exports[`node_module collectors > yarn max stack 2`] = ` "string.prototype.padend": { "files": { ".editorconfig": { - "offset": 3635350, + "offset": 3637080, "size": 290, }, ".nycrc": { - "offset": 3635640, + "offset": 3637360, "size": 140, }, "LICENSE": { - "offset": 3635780, + "offset": 3637500, "size": 1090, }, "auto.js": { - "offset": 3636860, + "offset": 3638590, "size": 40, }, "implementation.js": { - "offset": 3636900, + "offset": 3638620, "size": 1110, }, "index.js": { - "offset": 3638010, + "offset": 3639730, "size": 660, }, "package.json": { - "offset": 3638670, + "offset": 3640390, "size": 1700, }, "polyfill.js": { - "offset": 3640360, + "offset": 3642080, "size": 210, }, "shim.js": { - "offset": 3640570, + "offset": 3642290, "size": 340, }, }, @@ -50550,39 +50550,39 @@ exports[`node_module collectors > yarn max stack 2`] = ` "string.prototype.trim": { "files": { ".editorconfig": { - "offset": 3640900, + "offset": 3642630, "size": 290, }, ".nycrc": { - "offset": 3641190, + "offset": 3642910, "size": 140, }, "LICENSE": { - "offset": 3641330, + "offset": 3643050, "size": 1090, }, "auto.js": { - "offset": 3642410, + "offset": 3644130, "size": 40, }, "implementation.js": { - "offset": 3642450, + "offset": 3644170, "size": 1180, }, "index.js": { - "offset": 3643620, + "offset": 3645340, "size": 580, }, "package.json": { - "offset": 3644190, + "offset": 3645910, "size": 1870, }, "polyfill.js": { - "offset": 3646050, + "offset": 3647780, "size": 550, }, "shim.js": { - "offset": 3646600, + "offset": 3648320, "size": 500, }, }, @@ -50590,39 +50590,39 @@ exports[`node_module collectors > yarn max stack 2`] = ` "string.prototype.trimend": { "files": { ".editorconfig": { - "offset": 3647100, + "offset": 3648820, "size": 290, }, ".nycrc": { - "offset": 3647380, + "offset": 3649100, "size": 140, }, "LICENSE": { - "offset": 3647520, + "offset": 3649240, "size": 1080, }, "auto.js": { - "offset": 3648590, + "offset": 3650320, "size": 40, }, "implementation.js": { - "offset": 3648630, + "offset": 3650350, "size": 640, }, "index.js": { - "offset": 3649260, + "offset": 3650990, "size": 580, }, "package.json": { - "offset": 3649840, + "offset": 3651560, "size": 1250, }, "polyfill.js": { - "offset": 3651080, + "offset": 3652810, "size": 460, }, "shim.js": { - "offset": 3651540, + "offset": 3653260, "size": 330, }, }, @@ -50630,39 +50630,39 @@ exports[`node_module collectors > yarn max stack 2`] = ` "string.prototype.trimstart": { "files": { ".editorconfig": { - "offset": 3651870, + "offset": 3653590, "size": 290, }, ".nycrc": { - "offset": 3652160, + "offset": 3653880, "size": 140, }, "LICENSE": { - "offset": 3652300, + "offset": 3654020, "size": 1080, }, "auto.js": { - "offset": 3653370, + "offset": 3655090, "size": 40, }, "implementation.js": { - "offset": 3653400, + "offset": 3655130, "size": 650, }, "index.js": { - "offset": 3654050, + "offset": 3655780, "size": 580, }, "package.json": { - "offset": 3654630, + "offset": 3656350, "size": 1220, }, "polyfill.js": { - "offset": 3655850, + "offset": 3657570, "size": 470, }, "shim.js": { - "offset": 3656310, + "offset": 3658030, "size": 340, }, }, @@ -50670,15 +50670,15 @@ exports[`node_module collectors > yarn max stack 2`] = ` "strip-bom": { "files": { "index.js": { - "offset": 3656650, + "offset": 3658370, "size": 320, }, "license": { - "offset": 3656960, + "offset": 3658690, "size": 1120, }, "package.json": { - "offset": 3658080, + "offset": 3659800, "size": 430, }, }, @@ -50686,19 +50686,19 @@ exports[`node_module collectors > yarn max stack 2`] = ` "supports-color": { "files": { "browser.js": { - "offset": 3658500, + "offset": 3660230, "size": 70, }, "index.js": { - "offset": 3658570, + "offset": 3660290, "size": 2780, }, "license": { - "offset": 3661340, + "offset": 3663070, "size": 1110, }, "package.json": { - "offset": 3662450, + "offset": 3664170, "size": 560, }, }, @@ -50706,23 +50706,23 @@ exports[`node_module collectors > yarn max stack 2`] = ` "supports-preserve-symlinks-flag": { "files": { ".nycrc": { - "offset": 3663010, + "offset": 3664730, "size": 140, }, "LICENSE": { - "offset": 3663150, + "offset": 3664870, "size": 1070, }, "browser.js": { - "offset": 3664210, + "offset": 3665940, "size": 40, }, "index.js": { - "offset": 3664250, + "offset": 3665970, "size": 300, }, "package.json": { - "offset": 3664540, + "offset": 3666270, "size": 1270, }, }, @@ -50730,23 +50730,23 @@ exports[`node_module collectors > yarn max stack 2`] = ` "typed-array-buffer": { "files": { ".nycrc": { - "offset": 3665810, + "offset": 3667530, "size": 220, }, "LICENSE": { - "offset": 3666030, + "offset": 3667750, "size": 1080, }, "index.js": { - "offset": 3667100, + "offset": 3668820, "size": 600, }, "package.json": { - "offset": 3667690, + "offset": 3669410, "size": 1600, }, "tsconfig.json": { - "offset": 3669280, + "offset": 3671000, "size": 120, }, }, @@ -50754,23 +50754,23 @@ exports[`node_module collectors > yarn max stack 2`] = ` "typed-array-byte-length": { "files": { ".nycrc": { - "offset": 3669400, + "offset": 3671120, "size": 220, }, "LICENSE": { - "offset": 3669610, + "offset": 3671340, "size": 1070, }, "index.js": { - "offset": 3670680, + "offset": 3672400, "size": 2750, }, "package.json": { - "offset": 3673430, + "offset": 3675150, "size": 2020, }, "tsconfig.json": { - "offset": 3675440, + "offset": 3677160, "size": 120, }, }, @@ -50778,23 +50778,23 @@ exports[`node_module collectors > yarn max stack 2`] = ` "typed-array-byte-offset": { "files": { ".nycrc": { - "offset": 3675560, + "offset": 3677280, "size": 220, }, "LICENSE": { - "offset": 3675770, + "offset": 3677500, "size": 1070, }, "index.js": { - "offset": 3676840, + "offset": 3678560, "size": 2490, }, "package.json": { - "offset": 3679330, + "offset": 3681050, "size": 2130, }, "tsconfig.json": { - "offset": 3681450, + "offset": 3683170, "size": 150, }, }, @@ -50802,23 +50802,23 @@ exports[`node_module collectors > yarn max stack 2`] = ` "typed-array-length": { "files": { ".nycrc": { - "offset": 3681600, + "offset": 3683320, "size": 220, }, "LICENSE": { - "offset": 3681810, + "offset": 3683530, "size": 1070, }, "index.js": { - "offset": 3682880, + "offset": 3684600, "size": 2950, }, "package.json": { - "offset": 3685820, + "offset": 3687540, "size": 2000, }, "tsconfig.json": { - "offset": 3687820, + "offset": 3689540, "size": 150, }, }, @@ -50826,27 +50826,27 @@ exports[`node_module collectors > yarn max stack 2`] = ` "unbox-primitive": { "files": { ".editorconfig": { - "offset": 3687970, + "offset": 3689690, "size": 290, }, ".nycrc": { - "offset": 3688250, + "offset": 3689970, "size": 220, }, "LICENSE": { - "offset": 3688470, + "offset": 3690190, "size": 1080, }, "index.js": { - "offset": 3689540, + "offset": 3691260, "size": 1540, }, "package.json": { - "offset": 3691070, + "offset": 3692790, "size": 1540, }, "tsconfig.json": { - "offset": 3692610, + "offset": 3694330, "size": 70, }, }, @@ -50854,15 +50854,15 @@ exports[`node_module collectors > yarn max stack 2`] = ` "validate-npm-package-license": { "files": { "LICENSE": { - "offset": 3692680, + "offset": 3694400, "size": 11360, }, "index.js": { - "offset": 3704030, + "offset": 3705760, "size": 1930, }, "package.json": { - "offset": 3705960, + "offset": 3707680, "size": 520, }, }, @@ -50870,24 +50870,24 @@ exports[`node_module collectors > yarn max stack 2`] = ` "which": { "files": { "LICENSE": { - "offset": 3706480, + "offset": 3708200, "size": 770, }, "bin": { "files": { "which": { "executable": true, - "offset": 3707240, + "offset": 3708970, "size": 990, }, }, }, "package.json": { - "offset": 3708230, + "offset": 3709950, "size": 570, }, "which.js": { - "offset": 3708790, + "offset": 3710520, "size": 3190, }, }, @@ -50895,27 +50895,27 @@ exports[`node_module collectors > yarn max stack 2`] = ` "which-boxed-primitive": { "files": { ".editorconfig": { - "offset": 3711980, + "offset": 3713700, "size": 290, }, ".nycrc": { - "offset": 3712260, + "offset": 3713990, "size": 220, }, "LICENSE": { - "offset": 3712480, + "offset": 3714200, "size": 1080, }, "index.js": { - "offset": 3713550, + "offset": 3715270, "size": 720, }, "package.json": { - "offset": 3714270, + "offset": 3715990, "size": 1540, }, "tsconfig.json": { - "offset": 3715800, + "offset": 3717530, "size": 120, }, }, @@ -50923,23 +50923,23 @@ exports[`node_module collectors > yarn max stack 2`] = ` "which-builtin-type": { "files": { ".nycrc": { - "offset": 3715920, + "offset": 3717640, "size": 140, }, "LICENSE": { - "offset": 3716060, + "offset": 3717780, "size": 1080, }, "index.js": { - "offset": 3717130, + "offset": 3718850, "size": 3960, }, "package.json": { - "offset": 3721080, + "offset": 3722800, "size": 2570, }, "tsconfig.json": { - "offset": 3723640, + "offset": 3725370, "size": 130, }, }, @@ -50947,23 +50947,23 @@ exports[`node_module collectors > yarn max stack 2`] = ` "which-collection": { "files": { ".nycrc": { - "offset": 3723770, + "offset": 3725490, "size": 220, }, "LICENSE": { - "offset": 3723980, + "offset": 3725700, "size": 1070, }, "index.js": { - "offset": 3725050, + "offset": 3726770, "size": 510, }, "package.json": { - "offset": 3725560, + "offset": 3727280, "size": 1620, }, "tsconfig.json": { - "offset": 3727170, + "offset": 3728900, "size": 3620, }, }, @@ -50971,27 +50971,27 @@ exports[`node_module collectors > yarn max stack 2`] = ` "which-typed-array": { "files": { ".editorconfig": { - "offset": 3730780, + "offset": 3732510, "size": 290, }, ".nycrc": { - "offset": 3731070, + "offset": 3732790, "size": 220, }, "LICENSE": { - "offset": 3731290, + "offset": 3733010, "size": 1090, }, "index.js": { - "offset": 3732370, + "offset": 3734090, "size": 3770, }, "package.json": { - "offset": 3736130, + "offset": 3737860, "size": 2310, }, "tsconfig.json": { - "offset": 3738440, + "offset": 3740160, "size": 130, }, }, @@ -50999,7 +50999,7 @@ exports[`node_module collectors > yarn max stack 2`] = ` }, }, "package.json": { - "offset": 3739560, + "offset": 3741280, "size": 370, }, }, @@ -51016,11 +51016,11 @@ exports[`node_module collectors > yarn ms 2`] = ` { "files": { "index.html": { - "offset": 50814400, + "offset": 51032890, "size": 380, }, "index.js": { - "offset": 50814780, + "offset": 51033270, "size": 620, }, "node_modules": { @@ -62449,52 +62449,52 @@ exports[`node_module collectors > yarn ms 2`] = ` "files": { "experimental_attributes.js": { "offset": 27291830, - "size": 636050, + "size": 656910, }, "experimental_attributes.js.map": { - "offset": 27927880, - "size": 773070, + "offset": 27948740, + "size": 797940, }, "experimental_events.js": { - "offset": 28700940, - "size": 10280, + "offset": 28746680, + "size": 14650, }, "experimental_events.js.map": { - "offset": 28711220, - "size": 11890, + "offset": 28761320, + "size": 16670, }, "experimental_metrics.js": { - "offset": 28723110, - "size": 196500, + "offset": 28777990, + "size": 200190, }, "experimental_metrics.js.map": { - "offset": 28919600, - "size": 231890, + "offset": 28978180, + "size": 235980, }, "index-incubating.js": { - "offset": 29151490, + "offset": 29214150, "size": 1010, }, "index-incubating.js.map": { - "offset": 29152490, + "offset": 29215160, "size": 1330, }, "index.js": { - "offset": 29153820, + "offset": 29216480, "size": 1050, }, "index.js.map": { - "offset": 29154860, + "offset": 29217520, "size": 1350, }, "internal": { "files": { "utils.js": { - "offset": 29156200, + "offset": 29218870, "size": 1260, }, "utils.js.map": { - "offset": 29157460, + "offset": 29220120, "size": 1860, }, }, @@ -62502,73 +62502,73 @@ exports[`node_module collectors > yarn ms 2`] = ` "resource": { "files": { "SemanticResourceAttributes.js": { - "offset": 29159320, + "offset": 29221980, "size": 66820, }, "SemanticResourceAttributes.js.map": { - "offset": 29226140, + "offset": 29288800, "size": 106200, }, "index.js": { - "offset": 29332330, + "offset": 29394990, "size": 860, }, "index.js.map": { - "offset": 29333190, + "offset": 29395850, "size": 1050, }, }, }, "stable_attributes.js": { - "offset": 29334240, - "size": 44440, + "offset": 29396900, + "size": 49080, }, "stable_attributes.js.map": { - "offset": 29378670, - "size": 55560, + "offset": 29445980, + "size": 60480, }, "stable_events.js": { - "offset": 29434230, + "offset": 29506460, "size": 1080, }, "stable_events.js.map": { - "offset": 29435300, + "offset": 29507530, "size": 1330, }, "stable_metrics.js": { - "offset": 29436630, + "offset": 29508860, "size": 15970, }, "stable_metrics.js.map": { - "offset": 29452600, + "offset": 29524830, "size": 19990, }, "trace": { "files": { "SemanticAttributes.js": { - "offset": 29472580, + "offset": 29544820, "size": 142770, }, "SemanticAttributes.js.map": { - "offset": 29615340, + "offset": 29687580, "size": 215320, }, "index.js": { - "offset": 29830660, + "offset": 29902890, "size": 860, }, "index.js.map": { - "offset": 29831510, + "offset": 29903740, "size": 1040, }, }, }, "version.js": { - "offset": 29832550, + "offset": 29904780, "size": 740, }, "version.js.map": { - "offset": 29833280, + "offset": 29905520, "size": 930, }, }, @@ -62576,53 +62576,53 @@ exports[`node_module collectors > yarn ms 2`] = ` "esnext": { "files": { "experimental_attributes.js": { - "offset": 29834210, - "size": 636050, + "offset": 29906450, + "size": 656910, }, "experimental_attributes.js.map": { - "offset": 30470250, - "size": 773070, + "offset": 30563350, + "size": 797940, }, "experimental_events.js": { - "offset": 31243320, - "size": 10280, + "offset": 31361290, + "size": 14650, }, "experimental_events.js.map": { - "offset": 31253600, - "size": 11890, + "offset": 31375930, + "size": 16670, }, "experimental_metrics.js": { - "offset": 31265480, - "size": 196500, + "offset": 31392600, + "size": 200190, }, "experimental_metrics.js.map": { - "offset": 31461970, - "size": 231890, + "offset": 31592790, + "size": 235980, }, "index-incubating.js": { - "offset": 31693860, + "offset": 31828760, "size": 1010, }, "index-incubating.js.map": { - "offset": 31694870, + "offset": 31829770, "size": 1330, }, "index.js": { - "offset": 31696190, + "offset": 31831090, "size": 1050, }, "index.js.map": { - "offset": 31697240, + "offset": 31832130, "size": 1350, }, "internal": { "files": { "utils.js": { - "offset": 31698580, + "offset": 31833480, "size": 1260, }, "utils.js.map": { - "offset": 31699840, + "offset": 31834730, "size": 1860, }, }, @@ -62630,73 +62630,73 @@ exports[`node_module collectors > yarn ms 2`] = ` "resource": { "files": { "SemanticResourceAttributes.js": { - "offset": 31701690, + "offset": 31836590, "size": 66820, }, "SemanticResourceAttributes.js.map": { - "offset": 31768510, + "offset": 31903410, "size": 106200, }, "index.js": { - "offset": 31874710, + "offset": 32009600, "size": 860, }, "index.js.map": { - "offset": 31875570, + "offset": 32010460, "size": 1050, }, }, }, "stable_attributes.js": { - "offset": 31876610, - "size": 44440, + "offset": 32011510, + "size": 49080, }, "stable_attributes.js.map": { - "offset": 31921050, - "size": 55560, + "offset": 32060590, + "size": 60480, }, "stable_events.js": { - "offset": 31976600, + "offset": 32121070, "size": 1080, }, "stable_events.js.map": { - "offset": 31977680, + "offset": 32122150, "size": 1330, }, "stable_metrics.js": { - "offset": 31979000, + "offset": 32123470, "size": 15970, }, "stable_metrics.js.map": { - "offset": 31994970, + "offset": 32139440, "size": 19990, }, "trace": { "files": { "SemanticAttributes.js": { - "offset": 32014960, + "offset": 32159430, "size": 142770, }, "SemanticAttributes.js.map": { - "offset": 32157720, + "offset": 32302190, "size": 215320, }, "index.js": { - "offset": 32373030, + "offset": 32517500, "size": 860, }, "index.js.map": { - "offset": 32373890, + "offset": 32518360, "size": 1040, }, }, }, "version.js": { - "offset": 32374920, + "offset": 32519390, "size": 740, }, "version.js.map": { - "offset": 32375660, + "offset": 32520130, "size": 930, }, }, @@ -62704,53 +62704,53 @@ exports[`node_module collectors > yarn ms 2`] = ` "src": { "files": { "experimental_attributes.js": { - "offset": 32376590, - "size": 700290, + "offset": 32521060, + "size": 723100, }, "experimental_attributes.js.map": { - "offset": 33076880, - "size": 757390, + "offset": 33244150, + "size": 781890, }, "experimental_events.js": { - "offset": 33834270, - "size": 10910, + "offset": 34026040, + "size": 15470, }, "experimental_events.js.map": { - "offset": 33845170, - "size": 11710, + "offset": 34041510, + "size": 16440, }, "experimental_metrics.js": { - "offset": 33856880, - "size": 214370, + "offset": 34057950, + "size": 218240, }, "experimental_metrics.js.map": { - "offset": 34071250, - "size": 227470, + "offset": 34276180, + "size": 231520, }, "index-incubating.js": { - "offset": 34298720, + "offset": 34507690, "size": 1880, }, "index-incubating.js.map": { - "offset": 34300590, + "offset": 34509560, "size": 1290, }, "index.js": { - "offset": 34301870, + "offset": 34510840, "size": 1890, }, "index.js.map": { - "offset": 34303760, + "offset": 34512730, "size": 1320, }, "internal": { "files": { "utils.js": { - "offset": 34305070, + "offset": 34514050, "size": 1410, }, "utils.js.map": { - "offset": 34306470, + "offset": 34515450, "size": 1870, }, }, @@ -62758,73 +62758,73 @@ exports[`node_module collectors > yarn ms 2`] = ` "resource": { "files": { "SemanticResourceAttributes.js": { - "offset": 34308340, + "offset": 34517320, "size": 71670, }, "SemanticResourceAttributes.js.map": { - "offset": 34380010, + "offset": 34588980, "size": 104820, }, "index.js": { - "offset": 34484830, + "offset": 34693800, "size": 1640, }, "index.js.map": { - "offset": 34486460, + "offset": 34695440, "size": 1060, }, }, }, "stable_attributes.js": { - "offset": 34487520, - "size": 49400, + "offset": 34696490, + "size": 54100, }, "stable_attributes.js.map": { - "offset": 34536910, - "size": 54260, + "offset": 34750590, + "size": 59170, }, "stable_events.js": { - "offset": 34591170, + "offset": 34809750, "size": 1180, }, "stable_events.js.map": { - "offset": 34592350, + "offset": 34810930, "size": 1330, }, "stable_metrics.js": { - "offset": 34593670, + "offset": 34812250, "size": 18130, }, "stable_metrics.js.map": { - "offset": 34611800, + "offset": 34830380, "size": 19480, }, "trace": { "files": { "SemanticAttributes.js": { - "offset": 34631280, + "offset": 34849860, "size": 152600, }, "SemanticAttributes.js.map": { - "offset": 34783870, + "offset": 35002450, "size": 212640, }, "index.js": { - "offset": 34996500, + "offset": 35215090, "size": 1630, }, "index.js.map": { - "offset": 34998130, + "offset": 35216710, "size": 1050, }, }, }, "version.js": { - "offset": 34999170, + "offset": 35217760, "size": 840, }, "version.js.map": { - "offset": 35000010, + "offset": 35218590, "size": 930, }, }, @@ -62832,7 +62832,7 @@ exports[`node_module collectors > yarn ms 2`] = ` }, }, "package.json": { - "offset": 35000930, + "offset": 35219510, "size": 1750, }, }, @@ -62840,7 +62840,7 @@ exports[`node_module collectors > yarn ms 2`] = ` "sql-common": { "files": { "LICENSE": { - "offset": 35002670, + "offset": 35221250, "size": 11360, }, "build": { @@ -62848,11 +62848,11 @@ exports[`node_module collectors > yarn ms 2`] = ` "src": { "files": { "index.js": { - "offset": 35014030, + "offset": 35232610, "size": 3070, }, "index.js.map": { - "offset": 35017090, + "offset": 35235670, "size": 4700, }, }, @@ -62860,11 +62860,11 @@ exports[`node_module collectors > yarn ms 2`] = ` "test": { "files": { "sql-common.test.js": { - "offset": 35021780, + "offset": 35240370, "size": 3940, }, "sql-common.test.js.map": { - "offset": 35025720, + "offset": 35244300, "size": 6050, }, }, @@ -62872,7 +62872,7 @@ exports[`node_module collectors > yarn ms 2`] = ` }, }, "package.json": { - "offset": 35031770, + "offset": 35250350, "size": 940, }, }, @@ -62884,49 +62884,49 @@ exports[`node_module collectors > yarn ms 2`] = ` "instrumentation": { "files": { "LICENSE": { - "offset": 35032700, + "offset": 35251290, "size": 11360, }, "dist": { "files": { "ActiveTracingHelper.js": { - "offset": 35044060, + "offset": 35262640, "size": 1140, }, "PrismaInstrumentation.js": { - "offset": 35045190, + "offset": 35263780, "size": 1270, }, "chunk-5J6RGI77.js": { - "offset": 35046460, + "offset": 35265040, "size": 2700, }, "chunk-FTA5RKYX.js": { - "offset": 35049150, + "offset": 35267730, "size": 1170, }, "chunk-KSVJP65B.js": { - "offset": 35050320, + "offset": 35268900, "size": 2700, }, "chunk-O7OBHTYQ.js": { - "offset": 35053010, + "offset": 35271590, "size": 4010, }, "chunk-PVBRMQBZ.js": { - "offset": 35057020, + "offset": 35275600, "size": 1970, }, "chunk-YIAJHTIL.js": { - "offset": 35058980, + "offset": 35277560, "size": 1970, }, "constants.js": { - "offset": 35060950, + "offset": 35279530, "size": 1230, }, "index.js": { - "offset": 35062180, + "offset": 35280760, "size": 1220, }, }, @@ -62938,7 +62938,7 @@ exports[`node_module collectors > yarn ms 2`] = ` "api-logs": { "files": { "LICENSE": { - "offset": 35064260, + "offset": 35282840, "size": 11360, }, "build": { @@ -62946,49 +62946,49 @@ exports[`node_module collectors > yarn ms 2`] = ` "esm": { "files": { "NoopLogger.js": { - "offset": 35075620, + "offset": 35294200, "size": 880, }, "NoopLogger.js.map": { - "offset": 35076490, + "offset": 35295080, "size": 1160, }, "NoopLoggerProvider.js": { - "offset": 35077650, + "offset": 35296230, "size": 1050, }, "NoopLoggerProvider.js.map": { - "offset": 35078690, + "offset": 35297270, "size": 1540, }, "api": { "files": { "logs.js": { - "offset": 35080220, + "offset": 35298810, "size": 2220, }, "logs.js.map": { - "offset": 35082440, + "offset": 35301020, "size": 3360, }, }, }, "index.js": { - "offset": 35085790, + "offset": 35304380, "size": 910, }, "index.js.map": { - "offset": 35086700, + "offset": 35305280, "size": 1570, }, "internal": { "files": { "global-utils.js": { - "offset": 35088270, + "offset": 35306850, "size": 1880, }, "global-utils.js.map": { - "offset": 35090140, + "offset": 35308730, "size": 2680, }, }, @@ -62998,47 +62998,47 @@ exports[`node_module collectors > yarn ms 2`] = ` "browser": { "files": { "globalThis.js": { - "offset": 35092820, + "offset": 35311410, "size": 1400, }, "globalThis.js.map": { - "offset": 35094220, + "offset": 35312810, "size": 1930, }, "index.js": { - "offset": 35096150, + "offset": 35314730, "size": 690, }, "index.js.map": { - "offset": 35096830, + "offset": 35315410, "size": 890, }, }, }, "index.js": { - "offset": 35097710, + "offset": 35316300, "size": 680, }, "index.js.map": { - "offset": 35098390, + "offset": 35316970, "size": 870, }, "node": { "files": { "globalThis.js": { - "offset": 35099260, + "offset": 35317840, "size": 860, }, "globalThis.js.map": { - "offset": 35100110, + "offset": 35318700, "size": 1150, }, "index.js": { - "offset": 35101260, + "offset": 35319840, "size": 690, }, "index.js.map": { - "offset": 35101940, + "offset": 35320520, "size": 890, }, }, @@ -63048,53 +63048,53 @@ exports[`node_module collectors > yarn ms 2`] = ` "types": { "files": { "AnyValue.js": { - "offset": 35102820, + "offset": 35321410, "size": 660, }, "AnyValue.js.map": { - "offset": 35103480, + "offset": 35322060, "size": 1360, }, "LogRecord.js": { - "offset": 35104830, + "offset": 35323420, "size": 2270, }, "LogRecord.js.map": { - "offset": 35107100, + "offset": 35325680, "size": 2580, }, "Logger.js": { - "offset": 35109670, + "offset": 35328250, "size": 660, }, "Logger.js.map": { - "offset": 35110320, + "offset": 35328900, "size": 1020, }, "LoggerOptions.js": { - "offset": 35111340, + "offset": 35329920, "size": 60, }, "LoggerOptions.js.map": { - "offset": 35111390, + "offset": 35329970, "size": 1300, }, "LoggerProvider.js": { - "offset": 35112680, + "offset": 35331270, "size": 660, }, "LoggerProvider.js.map": { - "offset": 35113340, + "offset": 35331930, "size": 1500, }, }, }, "version.js": { - "offset": 35114840, + "offset": 35333420, "size": 740, }, "version.js.map": { - "offset": 35115570, + "offset": 35334150, "size": 930, }, }, @@ -63102,49 +63102,49 @@ exports[`node_module collectors > yarn ms 2`] = ` "esnext": { "files": { "NoopLogger.js": { - "offset": 35116500, + "offset": 35335080, "size": 750, }, "NoopLogger.js.map": { - "offset": 35117240, + "offset": 35335820, "size": 1130, }, "NoopLoggerProvider.js": { - "offset": 35118360, + "offset": 35336950, "size": 880, }, "NoopLoggerProvider.js.map": { - "offset": 35119240, + "offset": 35337820, "size": 1510, }, "api": { "files": { "logs.js": { - "offset": 35120740, + "offset": 35339320, "size": 2000, }, "logs.js.map": { - "offset": 35122740, + "offset": 35341320, "size": 3330, }, }, }, "index.js": { - "offset": 35126070, + "offset": 35344650, "size": 910, }, "index.js.map": { - "offset": 35126980, + "offset": 35345560, "size": 1570, }, "internal": { "files": { "global-utils.js": { - "offset": 35128540, + "offset": 35347130, "size": 1860, }, "global-utils.js.map": { - "offset": 35130400, + "offset": 35348980, "size": 2680, }, }, @@ -63154,47 +63154,47 @@ exports[`node_module collectors > yarn ms 2`] = ` "browser": { "files": { "globalThis.js": { - "offset": 35133070, + "offset": 35351650, "size": 1410, }, "globalThis.js.map": { - "offset": 35134470, + "offset": 35353050, "size": 1930, }, "index.js": { - "offset": 35136390, + "offset": 35354980, "size": 690, }, "index.js.map": { - "offset": 35137080, + "offset": 35355660, "size": 890, }, }, }, "index.js": { - "offset": 35137960, + "offset": 35356540, "size": 680, }, "index.js.map": { - "offset": 35138640, + "offset": 35357220, "size": 870, }, "node": { "files": { "globalThis.js": { - "offset": 35139510, + "offset": 35358090, "size": 860, }, "globalThis.js.map": { - "offset": 35140360, + "offset": 35358950, "size": 1150, }, "index.js": { - "offset": 35141510, + "offset": 35360090, "size": 690, }, "index.js.map": { - "offset": 35142190, + "offset": 35360780, "size": 890, }, }, @@ -63204,53 +63204,53 @@ exports[`node_module collectors > yarn ms 2`] = ` "types": { "files": { "AnyValue.js": { - "offset": 35143070, + "offset": 35361660, "size": 660, }, "AnyValue.js.map": { - "offset": 35143730, + "offset": 35362310, "size": 1360, }, "LogRecord.js": { - "offset": 35145080, + "offset": 35363670, "size": 2270, }, "LogRecord.js.map": { - "offset": 35147350, + "offset": 35365930, "size": 2580, }, "Logger.js": { - "offset": 35149920, + "offset": 35368500, "size": 660, }, "Logger.js.map": { - "offset": 35150570, + "offset": 35369160, "size": 1020, }, "LoggerOptions.js": { - "offset": 35151590, + "offset": 35370170, "size": 60, }, "LoggerOptions.js.map": { - "offset": 35151640, + "offset": 35370220, "size": 1300, }, "LoggerProvider.js": { - "offset": 35152940, + "offset": 35371520, "size": 660, }, "LoggerProvider.js.map": { - "offset": 35153590, + "offset": 35372180, "size": 1500, }, }, }, "version.js": { - "offset": 35155090, + "offset": 35373670, "size": 740, }, "version.js.map": { - "offset": 35155820, + "offset": 35374410, "size": 930, }, }, @@ -63258,49 +63258,49 @@ exports[`node_module collectors > yarn ms 2`] = ` "src": { "files": { "NoopLogger.js": { - "offset": 35156750, + "offset": 35375340, "size": 900, }, "NoopLogger.js.map": { - "offset": 35157640, + "offset": 35376230, "size": 1130, }, "NoopLoggerProvider.js": { - "offset": 35158760, + "offset": 35377350, "size": 1080, }, "NoopLoggerProvider.js.map": { - "offset": 35159840, + "offset": 35378420, "size": 1480, }, "api": { "files": { "logs.js": { - "offset": 35161310, + "offset": 35379900, "size": 2290, }, "logs.js.map": { - "offset": 35163600, + "offset": 35382180, "size": 3260, }, }, }, "index.js": { - "offset": 35166850, + "offset": 35385440, "size": 1780, }, "index.js.map": { - "offset": 35168630, + "offset": 35387210, "size": 1530, }, "internal": { "files": { "global-utils.js": { - "offset": 35170150, + "offset": 35388740, "size": 2080, }, "global-utils.js.map": { - "offset": 35172230, + "offset": 35390810, "size": 2630, }, }, @@ -63310,47 +63310,47 @@ exports[`node_module collectors > yarn ms 2`] = ` "browser": { "files": { "globalThis.js": { - "offset": 35174860, + "offset": 35393440, "size": 1510, }, "globalThis.js.map": { - "offset": 35176360, + "offset": 35394940, "size": 1920, }, "index.js": { - "offset": 35178280, + "offset": 35396860, "size": 920, }, "index.js.map": { - "offset": 35179190, + "offset": 35397770, "size": 890, }, }, }, "index.js": { - "offset": 35180070, + "offset": 35398650, "size": 900, }, "index.js.map": { - "offset": 35180970, + "offset": 35399550, "size": 870, }, "node": { "files": { "globalThis.js": { - "offset": 35181830, + "offset": 35400410, "size": 970, }, "globalThis.js.map": { - "offset": 35182790, + "offset": 35401370, "size": 1140, }, "index.js": { - "offset": 35183930, + "offset": 35402510, "size": 920, }, "index.js.map": { - "offset": 35184840, + "offset": 35403430, "size": 880, }, }, @@ -63360,53 +63360,53 @@ exports[`node_module collectors > yarn ms 2`] = ` "types": { "files": { "AnyValue.js": { - "offset": 35185720, + "offset": 35404300, "size": 720, }, "AnyValue.js.map": { - "offset": 35186440, + "offset": 35405020, "size": 1360, }, "LogRecord.js": { - "offset": 35187800, + "offset": 35406380, "size": 2410, }, "LogRecord.js.map": { - "offset": 35190200, + "offset": 35408780, "size": 2580, }, "Logger.js": { - "offset": 35192780, + "offset": 35411360, "size": 720, }, "Logger.js.map": { - "offset": 35193490, + "offset": 35412080, "size": 1020, }, "LoggerOptions.js": { - "offset": 35194510, + "offset": 35413090, "size": 120, }, "LoggerOptions.js.map": { - "offset": 35194630, + "offset": 35413210, "size": 1300, }, "LoggerProvider.js": { - "offset": 35195920, + "offset": 35414510, "size": 730, }, "LoggerProvider.js.map": { - "offset": 35196650, + "offset": 35415230, "size": 1500, }, }, }, "version.js": { - "offset": 35198140, + "offset": 35416730, "size": 840, }, "version.js.map": { - "offset": 35198980, + "offset": 35417560, "size": 930, }, }, @@ -63414,7 +63414,7 @@ exports[`node_module collectors > yarn ms 2`] = ` }, }, "package.json": { - "offset": 35199900, + "offset": 35418480, "size": 1830, }, }, @@ -63422,7 +63422,7 @@ exports[`node_module collectors > yarn ms 2`] = ` "instrumentation": { "files": { "LICENSE": { - "offset": 35201730, + "offset": 35420310, "size": 11360, }, "build": { @@ -63430,51 +63430,51 @@ exports[`node_module collectors > yarn ms 2`] = ` "esm": { "files": { "autoLoader.js": { - "offset": 35213080, + "offset": 35431670, "size": 1630, }, "autoLoader.js.map": { - "offset": 35214710, + "offset": 35433290, "size": 2430, }, "autoLoaderUtils.js": { - "offset": 35217140, + "offset": 35435720, "size": 1930, }, "autoLoaderUtils.js.map": { - "offset": 35219060, + "offset": 35437650, "size": 3080, }, "index.js": { - "offset": 35222130, + "offset": 35440720, "size": 1020, }, "index.js.map": { - "offset": 35223150, + "offset": 35441730, "size": 1670, }, "instrumentation.js": { - "offset": 35224820, + "offset": 35443400, "size": 6210, }, "instrumentation.js.map": { - "offset": 35231020, + "offset": 35449610, "size": 8580, }, "instrumentationNodeModuleDefinition.js": { - "offset": 35239590, + "offset": 35458180, "size": 1270, }, "instrumentationNodeModuleDefinition.js.map": { - "offset": 35240860, + "offset": 35459440, "size": 1810, }, "instrumentationNodeModuleFile.js": { - "offset": 35242660, + "offset": 35461250, "size": 1250, }, "instrumentationNodeModuleFile.js.map": { - "offset": 35243910, + "offset": 35462500, "size": 1750, }, "platform": { @@ -63482,79 +63482,79 @@ exports[`node_module collectors > yarn ms 2`] = ` "browser": { "files": { "index.js": { - "offset": 35245660, + "offset": 35464250, "size": 750, }, "index.js.map": { - "offset": 35246410, + "offset": 35464990, "size": 1000, }, "instrumentation.js": { - "offset": 35247400, + "offset": 35465980, "size": 2030, }, "instrumentation.js.map": { - "offset": 35249420, + "offset": 35468010, "size": 1840, }, "noop-normalize.js": { - "offset": 35251260, + "offset": 35469840, "size": 1410, }, "noop-normalize.js.map": { - "offset": 35252670, + "offset": 35471250, "size": 1780, }, }, }, "index.js": { - "offset": 35254440, + "offset": 35473030, "size": 700, }, "index.js.map": { - "offset": 35255140, + "offset": 35473720, "size": 900, }, "node": { "files": { "ModuleNameTrie.js": { - "offset": 35256040, + "offset": 35474620, "size": 5570, }, "ModuleNameTrie.js.map": { - "offset": 35261600, + "offset": 35480190, "size": 5350, }, "RequireInTheMiddleSingleton.js": { - "offset": 35266950, + "offset": 35485540, "size": 5430, }, "RequireInTheMiddleSingleton.js.map": { - "offset": 35272380, + "offset": 35490960, "size": 6180, }, "index.js": { - "offset": 35278560, + "offset": 35497140, "size": 740, }, "index.js.map": { - "offset": 35279290, + "offset": 35497880, "size": 980, }, "instrumentation.js": { - "offset": 35280270, + "offset": 35498860, "size": 15860, }, "instrumentation.js.map": { - "offset": 35296130, + "offset": 35514710, "size": 20370, }, "normalize.js": { - "offset": 35316490, + "offset": 35535080, "size": 680, }, "normalize.js.map": { - "offset": 35317170, + "offset": 35535750, "size": 880, }, }, @@ -63562,35 +63562,35 @@ exports[`node_module collectors > yarn ms 2`] = ` }, }, "types.js": { - "offset": 35318050, + "offset": 35536630, "size": 650, }, "types.js.map": { - "offset": 35318700, + "offset": 35537280, "size": 6630, }, "types_internal.js": { - "offset": 35325320, + "offset": 35543900, "size": 660, }, "types_internal.js.map": { - "offset": 35325980, + "offset": 35544560, "size": 1260, }, "utils.js": { - "offset": 35327240, + "offset": 35545820, "size": 5330, }, "utils.js.map": { - "offset": 35332560, + "offset": 35551140, "size": 3680, }, "version.js": { - "offset": 35336230, + "offset": 35554820, "size": 740, }, "version.js.map": { - "offset": 35336970, + "offset": 35555550, "size": 930, }, }, @@ -63598,51 +63598,51 @@ exports[`node_module collectors > yarn ms 2`] = ` "esnext": { "files": { "autoLoader.js": { - "offset": 35337900, + "offset": 35556480, "size": 1630, }, "autoLoader.js.map": { - "offset": 35339520, + "offset": 35558110, "size": 2440, }, "autoLoaderUtils.js": { - "offset": 35341960, + "offset": 35560550, "size": 1910, }, "autoLoaderUtils.js.map": { - "offset": 35343870, + "offset": 35562450, "size": 3060, }, "index.js": { - "offset": 35346930, + "offset": 35565510, "size": 1020, }, "index.js.map": { - "offset": 35347950, + "offset": 35566530, "size": 1670, }, "instrumentation.js": { - "offset": 35349620, + "offset": 35568200, "size": 4860, }, "instrumentation.js.map": { - "offset": 35354470, + "offset": 35573050, "size": 8460, }, "instrumentationNodeModuleDefinition.js": { - "offset": 35362920, + "offset": 35581500, "size": 1110, }, "instrumentationNodeModuleDefinition.js.map": { - "offset": 35364030, + "offset": 35582610, "size": 1800, }, "instrumentationNodeModuleFile.js": { - "offset": 35365830, + "offset": 35584410, "size": 1120, }, "instrumentationNodeModuleFile.js.map": { - "offset": 35366940, + "offset": 35585530, "size": 1750, }, "platform": { @@ -63650,79 +63650,79 @@ exports[`node_module collectors > yarn ms 2`] = ` "browser": { "files": { "index.js": { - "offset": 35368680, + "offset": 35587270, "size": 750, }, "index.js.map": { - "offset": 35369430, + "offset": 35588010, "size": 1000, }, "instrumentation.js": { - "offset": 35370420, + "offset": 35589000, "size": 1070, }, "instrumentation.js.map": { - "offset": 35371480, + "offset": 35590060, "size": 1800, }, "noop-normalize.js": { - "offset": 35373280, + "offset": 35591860, "size": 1410, }, "noop-normalize.js.map": { - "offset": 35374680, + "offset": 35593260, "size": 1780, }, }, }, "index.js": { - "offset": 35376460, + "offset": 35595040, "size": 700, }, "index.js.map": { - "offset": 35377160, + "offset": 35595740, "size": 900, }, "node": { "files": { "ModuleNameTrie.js": { - "offset": 35378050, + "offset": 35596640, "size": 2950, }, "ModuleNameTrie.js.map": { - "offset": 35381000, + "offset": 35599580, "size": 5130, }, "RequireInTheMiddleSingleton.js": { - "offset": 35386120, + "offset": 35604700, "size": 4140, }, "RequireInTheMiddleSingleton.js.map": { - "offset": 35390250, + "offset": 35608840, "size": 6110, }, "index.js": { - "offset": 35396360, + "offset": 35614940, "size": 740, }, "index.js.map": { - "offset": 35397090, + "offset": 35615680, "size": 980, }, "instrumentation.js": { - "offset": 35398070, + "offset": 35616660, "size": 11460, }, "instrumentation.js.map": { - "offset": 35409530, + "offset": 35628110, "size": 20080, }, "normalize.js": { - "offset": 35429600, + "offset": 35648180, "size": 680, }, "normalize.js.map": { - "offset": 35430270, + "offset": 35648860, "size": 880, }, }, @@ -63730,35 +63730,35 @@ exports[`node_module collectors > yarn ms 2`] = ` }, }, "types.js": { - "offset": 35431150, + "offset": 35649740, "size": 650, }, "types.js.map": { - "offset": 35431800, + "offset": 35650390, "size": 6630, }, "types_internal.js": { - "offset": 35438430, + "offset": 35657010, "size": 660, }, "types_internal.js.map": { - "offset": 35439080, + "offset": 35657670, "size": 1260, }, "utils.js": { - "offset": 35440340, + "offset": 35658930, "size": 2250, }, "utils.js.map": { - "offset": 35442590, + "offset": 35661180, "size": 3710, }, "version.js": { - "offset": 35446300, + "offset": 35664880, "size": 740, }, "version.js.map": { - "offset": 35447030, + "offset": 35665610, "size": 930, }, }, @@ -63766,51 +63766,51 @@ exports[`node_module collectors > yarn ms 2`] = ` "src": { "files": { "autoLoader.js": { - "offset": 35447960, + "offset": 35666540, "size": 1840, }, "autoLoader.js.map": { - "offset": 35449800, + "offset": 35668380, "size": 2350, }, "autoLoaderUtils.js": { - "offset": 35452140, + "offset": 35670730, "size": 2170, }, "autoLoaderUtils.js.map": { - "offset": 35454310, + "offset": 35672890, "size": 3080, }, "index.js": { - "offset": 35457380, + "offset": 35675970, "size": 2340, }, "index.js.map": { - "offset": 35459710, + "offset": 35678300, "size": 1660, }, "instrumentation.js": { - "offset": 35461370, + "offset": 35679950, "size": 5050, }, "instrumentation.js.map": { - "offset": 35466410, + "offset": 35685000, "size": 8370, }, "instrumentationNodeModuleDefinition.js": { - "offset": 35474780, + "offset": 35693360, "size": 1320, }, "instrumentationNodeModuleDefinition.js.map": { - "offset": 35476090, + "offset": 35694680, "size": 1810, }, "instrumentationNodeModuleFile.js": { - "offset": 35477900, + "offset": 35696480, "size": 1320, }, "instrumentationNodeModuleFile.js.map": { - "offset": 35479210, + "offset": 35697800, "size": 1730, }, "platform": { @@ -63818,79 +63818,79 @@ exports[`node_module collectors > yarn ms 2`] = ` "browser": { "files": { "index.js": { - "offset": 35480940, + "offset": 35699520, "size": 1150, }, "index.js.map": { - "offset": 35482090, + "offset": 35700670, "size": 980, }, "instrumentation.js": { - "offset": 35483070, + "offset": 35701650, "size": 1240, }, "instrumentation.js.map": { - "offset": 35484300, + "offset": 35702880, "size": 1780, }, "noop-normalize.js": { - "offset": 35486080, + "offset": 35704660, "size": 1550, }, "noop-normalize.js.map": { - "offset": 35487620, + "offset": 35706200, "size": 1760, }, }, }, "index.js": { - "offset": 35489380, + "offset": 35707960, "size": 1060, }, "index.js.map": { - "offset": 35490430, + "offset": 35709020, "size": 910, }, "node": { "files": { "ModuleNameTrie.js": { - "offset": 35491340, + "offset": 35709920, "size": 3130, }, "ModuleNameTrie.js.map": { - "offset": 35494470, + "offset": 35713050, "size": 5130, }, "RequireInTheMiddleSingleton.js": { - "offset": 35499590, + "offset": 35718170, "size": 4400, }, "RequireInTheMiddleSingleton.js.map": { - "offset": 35503980, + "offset": 35722570, "size": 6030, }, "index.js": { - "offset": 35510010, + "offset": 35728590, "size": 1140, }, "index.js.map": { - "offset": 35511140, + "offset": 35729720, "size": 970, }, "instrumentation.js": { - "offset": 35512110, + "offset": 35730690, "size": 11800, }, "instrumentation.js.map": { - "offset": 35523910, + "offset": 35742490, "size": 19760, }, "normalize.js": { - "offset": 35543670, + "offset": 35762250, "size": 900, }, "normalize.js.map": { - "offset": 35544560, + "offset": 35763140, "size": 880, }, }, @@ -63898,35 +63898,35 @@ exports[`node_module collectors > yarn ms 2`] = ` }, }, "types.js": { - "offset": 35545430, + "offset": 35764020, "size": 720, }, "types.js.map": { - "offset": 35546150, + "offset": 35764730, "size": 6630, }, "types_internal.js": { - "offset": 35552770, + "offset": 35771360, "size": 730, }, "types_internal.js.map": { - "offset": 35553500, + "offset": 35772080, "size": 1270, }, "utils.js": { - "offset": 35554760, + "offset": 35773340, "size": 2560, }, "utils.js.map": { - "offset": 35557320, + "offset": 35775900, "size": 3730, }, "version.js": { - "offset": 35561040, + "offset": 35779630, "size": 840, }, "version.js.map": { - "offset": 35561880, + "offset": 35780460, "size": 930, }, }, @@ -63934,11 +63934,11 @@ exports[`node_module collectors > yarn ms 2`] = ` }, }, "hook.mjs": { - "offset": 35562800, + "offset": 35781380, "size": 1010, }, "package.json": { - "offset": 35563810, + "offset": 35782390, "size": 2540, }, }, @@ -63948,7 +63948,7 @@ exports[`node_module collectors > yarn ms 2`] = ` }, }, "package.json": { - "offset": 35063390, + "offset": 35281970, "size": 880, }, }, @@ -63960,7 +63960,7 @@ exports[`node_module collectors > yarn ms 2`] = ` "browser": { "files": { "LICENSE": { - "offset": 40975500, + "offset": 41194080, "size": 1100, }, "build": { @@ -63970,113 +63970,113 @@ exports[`node_module collectors > yarn ms 2`] = ` "cjs": { "files": { "client.js": { - "offset": 40976600, + "offset": 41195180, "size": 2630, }, "client.js.map": { - "offset": 40979230, + "offset": 41197810, "size": 6530, }, "debug-build.js": { - "offset": 40985760, + "offset": 41204340, "size": 530, }, "debug-build.js.map": { - "offset": 40986280, + "offset": 41204870, "size": 610, }, "eventbuilder.js": { - "offset": 40986890, + "offset": 41205470, "size": 12040, }, "eventbuilder.js.map": { - "offset": 40998930, + "offset": 41217510, "size": 21900, }, "feedbackAsync.js": { - "offset": 41020830, + "offset": 41239410, "size": 570, }, "feedbackAsync.js.map": { - "offset": 41021390, + "offset": 41239970, "size": 650, }, "feedbackSync.js": { - "offset": 41022040, + "offset": 41240620, "size": 500, }, "feedbackSync.js.map": { - "offset": 41022530, + "offset": 41241120, "size": 750, }, "helpers.js": { - "offset": 41023280, + "offset": 41241860, "size": 4710, }, "helpers.js.map": { - "offset": 41027990, + "offset": 41246570, "size": 8090, }, "index.js": { - "offset": 41036070, + "offset": 41254660, "size": 9010, }, "index.js.map": { - "offset": 41045080, + "offset": 41263660, "size": 250, }, "integrations": { "files": { "breadcrumbs.js": { - "offset": 41045320, + "offset": 41263910, "size": 8620, }, "breadcrumbs.js.map": { - "offset": 41053940, + "offset": 41272520, "size": 17840, }, "browserapierrors.js": { - "offset": 41071780, + "offset": 41290360, "size": 7890, }, "browserapierrors.js.map": { - "offset": 41079670, + "offset": 41298250, "size": 14280, }, "browsersession.js": { - "offset": 41093940, + "offset": 41312520, "size": 1790, }, "browsersession.js.map": { - "offset": 41095730, + "offset": 41314310, "size": 2540, }, "contextlines.js": { - "offset": 41098270, + "offset": 41316850, "size": 2510, }, "contextlines.js.map": { - "offset": 41100770, + "offset": 41319350, "size": 4840, }, "featureFlags": { "files": { "featureFlagsIntegration.js": { - "offset": 41105600, + "offset": 41324190, "size": 1540, }, "featureFlagsIntegration.js.map": { - "offset": 41107140, + "offset": 41325720, "size": 2420, }, "launchdarkly": { "files": { "integration.js": { - "offset": 41109560, + "offset": 41328140, "size": 1850, }, "integration.js.map": { - "offset": 41111400, + "offset": 41329990, "size": 2810, }, }, @@ -64084,11 +64084,11 @@ exports[`node_module collectors > yarn ms 2`] = ` "openfeature": { "files": { "integration.js": { - "offset": 41114210, + "offset": 41332790, "size": 1000, }, "integration.js.map": { - "offset": 41115200, + "offset": 41333790, "size": 2240, }, }, @@ -64096,11 +64096,11 @@ exports[`node_module collectors > yarn ms 2`] = ` "unleash": { "files": { "integration.js": { - "offset": 41117440, + "offset": 41336020, "size": 2470, }, "integration.js.map": { - "offset": 41119900, + "offset": 41338480, "size": 4150, }, }, @@ -64108,131 +64108,131 @@ exports[`node_module collectors > yarn ms 2`] = ` }, }, "globalhandlers.js": { - "offset": 41124040, + "offset": 41342630, "size": 5240, }, "globalhandlers.js.map": { - "offset": 41129270, + "offset": 41347860, "size": 10440, }, "httpclient.js": { - "offset": 41139710, + "offset": 41358290, "size": 9630, }, "httpclient.js.map": { - "offset": 41149330, + "offset": 41367920, "size": 19990, }, "httpcontext.js": { - "offset": 41169320, + "offset": 41387900, "size": 1260, }, "httpcontext.js.map": { - "offset": 41170570, + "offset": 41389160, "size": 2140, }, "linkederrors.js": { - "offset": 41172700, + "offset": 41391290, "size": 1100, }, "linkederrors.js.map": { - "offset": 41173800, + "offset": 41392380, "size": 2020, }, "reportingobserver.js": { - "offset": 41175810, + "offset": 41394400, "size": 2210, }, "reportingobserver.js.map": { - "offset": 41178020, + "offset": 41396600, "size": 5650, }, "spotlight.js": { - "offset": 41183660, + "offset": 41402250, "size": 2710, }, "spotlight.js.map": { - "offset": 41186370, + "offset": 41404950, "size": 4980, }, }, }, "metrics.js": { - "offset": 41191350, + "offset": 41409930, "size": 2310, }, "metrics.js.map": { - "offset": 41193660, + "offset": 41412240, "size": 4010, }, "profiling": { "files": { "integration.js": { - "offset": 41197660, + "offset": 41416250, "size": 3140, }, "integration.js.map": { - "offset": 41200800, + "offset": 41419380, "size": 5750, }, "startProfileForSpan.js": { - "offset": 41206550, + "offset": 41425130, "size": 4590, }, "startProfileForSpan.js.map": { - "offset": 41211130, + "offset": 41429710, "size": 8180, }, "utils.js": { - "offset": 41219300, + "offset": 41437890, "size": 17960, }, "utils.js.map": { - "offset": 41237250, + "offset": 41455840, "size": 30750, }, }, }, "sdk.js": { - "offset": 41268000, + "offset": 41486580, "size": 8660, }, "sdk.js.map": { - "offset": 41276650, + "offset": 41495230, "size": 15170, }, "stack-parsers.js": { - "offset": 41291810, + "offset": 41510400, "size": 7220, }, "stack-parsers.js.map": { - "offset": 41299030, + "offset": 41517620, "size": 13750, }, "tracing": { "files": { "backgroundtab.js": { - "offset": 41312780, + "offset": 41531360, "size": 1630, }, "backgroundtab.js.map": { - "offset": 41314400, + "offset": 41532990, "size": 2590, }, "browserTracingIntegration.js": { - "offset": 41316980, + "offset": 41535570, "size": 13020, }, "browserTracingIntegration.js.map": { - "offset": 41330000, + "offset": 41548580, "size": 26340, }, "request.js": { - "offset": 41356340, + "offset": 41574920, "size": 12740, }, "request.js.map": { - "offset": 41369080, + "offset": 41587660, "size": 26630, }, }, @@ -64240,47 +64240,47 @@ exports[`node_module collectors > yarn ms 2`] = ` "transports": { "files": { "fetch.js": { - "offset": 41395700, + "offset": 41614280, "size": 2810, }, "fetch.js.map": { - "offset": 41398510, + "offset": 41617090, "size": 4630, }, "offline.js": { - "offset": 41403130, + "offset": 41621720, "size": 4820, }, "offline.js.map": { - "offset": 41407950, + "offset": 41626530, "size": 9830, }, }, }, "userfeedback.js": { - "offset": 41417770, + "offset": 41636360, "size": 940, }, "userfeedback.js.map": { - "offset": 41418710, + "offset": 41637290, "size": 2110, }, "utils": { "files": { "featureFlags.js": { - "offset": 41420820, + "offset": 41639400, "size": 3040, }, "featureFlags.js.map": { - "offset": 41423860, + "offset": 41642440, "size": 4810, }, "lazyLoadIntegration.js": { - "offset": 41428670, + "offset": 41647250, "size": 3430, }, "lazyLoadIntegration.js.map": { - "offset": 41432090, + "offset": 41650670, "size": 6310, }, }, @@ -64290,113 +64290,113 @@ exports[`node_module collectors > yarn ms 2`] = ` "esm": { "files": { "client.js": { - "offset": 41438390, + "offset": 41656980, "size": 2530, }, "client.js.map": { - "offset": 41440920, + "offset": 41659510, "size": 6370, }, "debug-build.js": { - "offset": 41447290, + "offset": 41665870, "size": 460, }, "debug-build.js.map": { - "offset": 41447740, + "offset": 41666320, "size": 610, }, "eventbuilder.js": { - "offset": 41448350, + "offset": 41666930, "size": 11940, }, "eventbuilder.js.map": { - "offset": 41460280, + "offset": 41678860, "size": 21630, }, "feedbackAsync.js": { - "offset": 41481900, + "offset": 41700490, "size": 440, }, "feedbackAsync.js.map": { - "offset": 41482340, + "offset": 41700930, "size": 600, }, "feedbackSync.js": { - "offset": 41482940, + "offset": 41701520, "size": 460, }, "feedbackSync.js.map": { - "offset": 41483390, + "offset": 41701970, "size": 660, }, "helpers.js": { - "offset": 41484050, + "offset": 41702630, "size": 4680, }, "helpers.js.map": { - "offset": 41488720, + "offset": 41707300, "size": 7920, }, "index.js": { - "offset": 41496630, + "offset": 41715210, "size": 4010, }, "index.js.map": { - "offset": 41500640, + "offset": 41719220, "size": 130, }, "integrations": { "files": { "breadcrumbs.js": { - "offset": 41500760, + "offset": 41719340, "size": 8680, }, "breadcrumbs.js.map": { - "offset": 41509440, + "offset": 41728020, "size": 17370, }, "browserapierrors.js": { - "offset": 41526800, + "offset": 41745390, "size": 7710, }, "browserapierrors.js.map": { - "offset": 41534510, + "offset": 41753090, "size": 14160, }, "browsersession.js": { - "offset": 41548670, + "offset": 41767250, "size": 1710, }, "browsersession.js.map": { - "offset": 41550370, + "offset": 41768950, "size": 2410, }, "contextlines.js": { - "offset": 41552780, + "offset": 41771360, "size": 2430, }, "contextlines.js.map": { - "offset": 41555200, + "offset": 41773790, "size": 4750, }, "featureFlags": { "files": { "featureFlagsIntegration.js": { - "offset": 41559950, + "offset": 41778540, "size": 1470, }, "featureFlagsIntegration.js.map": { - "offset": 41561410, + "offset": 41780000, "size": 2350, }, "launchdarkly": { "files": { "integration.js": { - "offset": 41563760, + "offset": 41782340, "size": 1730, }, "integration.js.map": { - "offset": 41565490, + "offset": 41784070, "size": 2730, }, }, @@ -64404,11 +64404,11 @@ exports[`node_module collectors > yarn ms 2`] = ` "openfeature": { "files": { "integration.js": { - "offset": 41568220, + "offset": 41786800, "size": 880, }, "integration.js.map": { - "offset": 41569090, + "offset": 41787670, "size": 2170, }, }, @@ -64416,11 +64416,11 @@ exports[`node_module collectors > yarn ms 2`] = ` "unleash": { "files": { "integration.js": { - "offset": 41571250, + "offset": 41789830, "size": 2390, }, "integration.js.map": { - "offset": 41573640, + "offset": 41792220, "size": 4040, }, }, @@ -64428,135 +64428,135 @@ exports[`node_module collectors > yarn ms 2`] = ` }, }, "globalhandlers.js": { - "offset": 41577670, + "offset": 41796260, "size": 5240, }, "globalhandlers.js.map": { - "offset": 41582900, + "offset": 41801490, "size": 10140, }, "httpclient.js": { - "offset": 41593040, + "offset": 41811630, "size": 9620, }, "httpclient.js.map": { - "offset": 41602660, + "offset": 41821250, "size": 19730, }, "httpcontext.js": { - "offset": 41622390, + "offset": 41840970, "size": 1120, }, "httpcontext.js.map": { - "offset": 41623510, + "offset": 41842090, "size": 2100, }, "linkederrors.js": { - "offset": 41625600, + "offset": 41844190, "size": 1040, }, "linkederrors.js.map": { - "offset": 41626640, + "offset": 41845220, "size": 1940, }, "reportingobserver.js": { - "offset": 41628570, + "offset": 41847160, "size": 2170, }, "reportingobserver.js.map": { - "offset": 41630740, + "offset": 41849330, "size": 5540, }, "spotlight.js": { - "offset": 41636280, + "offset": 41854860, "size": 2560, }, "spotlight.js.map": { - "offset": 41638840, + "offset": 41857420, "size": 4880, }, }, }, "metrics.js": { - "offset": 41643710, + "offset": 41862290, "size": 2240, }, "metrics.js.map": { - "offset": 41645950, + "offset": 41864530, "size": 3980, }, "package.json": { - "offset": 41649930, + "offset": 41868510, "size": 60, }, "profiling": { "files": { "integration.js": { - "offset": 41649980, + "offset": 41868570, "size": 3110, }, "integration.js.map": { - "offset": 41653090, + "offset": 41871670, "size": 5440, }, "startProfileForSpan.js": { - "offset": 41658530, + "offset": 41877110, "size": 4490, }, "startProfileForSpan.js.map": { - "offset": 41663010, + "offset": 41881600, "size": 7960, }, "utils.js": { - "offset": 41670970, + "offset": 41889550, "size": 17190, }, "utils.js.map": { - "offset": 41688150, + "offset": 41906730, "size": 30480, }, }, }, "sdk.js": { - "offset": 41718630, + "offset": 41937210, "size": 8430, }, "sdk.js.map": { - "offset": 41727050, + "offset": 41945640, "size": 14600, }, "stack-parsers.js": { - "offset": 41741650, + "offset": 41960230, "size": 6930, }, "stack-parsers.js.map": { - "offset": 41748580, + "offset": 41967160, "size": 13700, }, "tracing": { "files": { "backgroundtab.js": { - "offset": 41762270, + "offset": 41980850, "size": 1510, }, "backgroundtab.js.map": { - "offset": 41763770, + "offset": 41982350, "size": 2470, }, "browserTracingIntegration.js": { - "offset": 41766240, + "offset": 41984820, "size": 13030, }, "browserTracingIntegration.js.map": { - "offset": 41779260, + "offset": 41997850, "size": 25440, }, "request.js": { - "offset": 41804700, + "offset": 42023290, "size": 12760, }, "request.js.map": { - "offset": 41817460, + "offset": 42036040, "size": 26140, }, }, @@ -64564,47 +64564,47 @@ exports[`node_module collectors > yarn ms 2`] = ` "transports": { "files": { "fetch.js": { - "offset": 41843590, + "offset": 42062180, "size": 2740, }, "fetch.js.map": { - "offset": 41846330, + "offset": 42064910, "size": 4530, }, "offline.js": { - "offset": 41850860, + "offset": 42069440, "size": 4680, }, "offline.js.map": { - "offset": 41855540, + "offset": 42074120, "size": 9730, }, }, }, "userfeedback.js": { - "offset": 41865260, + "offset": 42083840, "size": 860, }, "userfeedback.js.map": { - "offset": 41866120, + "offset": 42084700, "size": 2080, }, "utils": { "files": { "featureFlags.js": { - "offset": 41868190, + "offset": 42086770, "size": 2860, }, "featureFlags.js.map": { - "offset": 41871050, + "offset": 42089630, "size": 4760, }, "lazyLoadIntegration.js": { - "offset": 41875810, + "offset": 42094390, "size": 3310, }, "lazyLoadIntegration.js.map": { - "offset": 41879110, + "offset": 42097690, "size": 6260, }, }, @@ -64614,109 +64614,109 @@ exports[`node_module collectors > yarn ms 2`] = ` "types": { "files": { "client.d.ts.map": { - "offset": 41885370, + "offset": 42103950, "size": 1160, }, "debug-build.d.ts.map": { - "offset": 41886530, + "offset": 42105110, "size": 170, }, "eventbuilder.d.ts.map": { - "offset": 41886690, + "offset": 42105280, "size": 1100, }, "exports.d.ts.map": { - "offset": 41887790, + "offset": 42106380, "size": 1660, }, "feedbackAsync.d.ts.map": { - "offset": 41889450, + "offset": 42108030, "size": 180, }, "feedbackSync.d.ts.map": { - "offset": 41889630, + "offset": 42108210, "size": 180, }, "helpers.d.ts.map": { - "offset": 41889810, + "offset": 42108390, "size": 600, }, "index.bundle.base.d.ts.map": { - "offset": 41890400, + "offset": 42108990, "size": 160, }, "index.bundle.d.ts.map": { - "offset": 41890560, + "offset": 42109140, "size": 370, }, "index.bundle.feedback.d.ts.map": { - "offset": 41890930, + "offset": 42109510, "size": 500, }, "index.bundle.replay.d.ts.map": { - "offset": 41891430, + "offset": 42110010, "size": 400, }, "index.bundle.tracing.d.ts.map": { - "offset": 41891830, + "offset": 42110410, "size": 540, }, "index.bundle.tracing.replay.d.ts.map": { - "offset": 41892360, + "offset": 42110940, "size": 570, }, "index.bundle.tracing.replay.feedback.d.ts.map": { - "offset": 41892920, + "offset": 42111510, "size": 640, }, "index.d.ts.map": { - "offset": 41893560, + "offset": 42112140, "size": 1700, }, "integrations": { "files": { "breadcrumbs.d.ts.map": { - "offset": 41897020, + "offset": 42115600, "size": 440, }, "browserapierrors.d.ts.map": { - "offset": 41897460, + "offset": 42116040, "size": 370, }, "browserprofiling.d.ts.map": { - "offset": 41897820, + "offset": 42116410, "size": 200, }, "browsersession.d.ts.map": { - "offset": 41898010, + "offset": 42116600, "size": 200, }, "contextlines.d.ts.map": { - "offset": 41898210, + "offset": 42116790, "size": 450, }, "featureFlags": { "files": { "featureFlagsIntegration.d.ts.map": { - "offset": 41898650, + "offset": 42117230, "size": 410, }, "index.d.ts.map": { - "offset": 41899060, + "offset": 42117640, "size": 210, }, "launchdarkly": { "files": { "index.d.ts.map": { - "offset": 41899260, + "offset": 42117850, "size": 220, }, "integration.d.ts.map": { - "offset": 41899470, + "offset": 42118060, "size": 330, }, "types.d.ts.map": { - "offset": 41899800, + "offset": 42118380, "size": 540, }, }, @@ -64724,15 +64724,15 @@ exports[`node_module collectors > yarn ms 2`] = ` "openfeature": { "files": { "index.d.ts.map": { - "offset": 41900340, + "offset": 42118920, "size": 210, }, "integration.d.ts.map": { - "offset": 41900550, + "offset": 42119130, "size": 590, }, "types.d.ts.map": { - "offset": 41901130, + "offset": 42119720, "size": 3220, }, }, @@ -64740,15 +64740,15 @@ exports[`node_module collectors > yarn ms 2`] = ` "unleash": { "files": { "index.d.ts.map": { - "offset": 41904350, + "offset": 42122930, "size": 200, }, "integration.d.ts.map": { - "offset": 41904550, + "offset": 42123130, "size": 300, }, "types.d.ts.map": { - "offset": 41904840, + "offset": 42123420, "size": 720, }, }, @@ -64756,27 +64756,27 @@ exports[`node_module collectors > yarn ms 2`] = ` }, }, "globalhandlers.d.ts.map": { - "offset": 41905550, + "offset": 42124140, "size": 290, }, "httpclient.d.ts.map": { - "offset": 41905840, + "offset": 42124420, "size": 430, }, "httpcontext.d.ts.map": { - "offset": 41906260, + "offset": 42124840, "size": 190, }, "linkederrors.d.ts.map": { - "offset": 41906440, + "offset": 42125030, "size": 270, }, "reportingobserver.d.ts.map": { - "offset": 41906710, + "offset": 42125300, "size": 310, }, "spotlight.d.ts.map": { - "offset": 41907020, + "offset": 42125600, "size": 420, }, }, @@ -64784,47 +64784,47 @@ exports[`node_module collectors > yarn ms 2`] = ` "integrations-bundle": { "files": { "index.captureconsole.d.ts.map": { - "offset": 41895250, + "offset": 42113830, "size": 210, }, "index.debug.d.ts.map": { - "offset": 41895450, + "offset": 42114040, "size": 240, }, "index.dedupe.d.ts.map": { - "offset": 41895690, + "offset": 42114270, "size": 190, }, "index.extraerrordata.d.ts.map": { - "offset": 41895870, + "offset": 42114460, "size": 210, }, "index.feedback.d.ts.map": { - "offset": 41896080, + "offset": 42114660, "size": 340, }, "index.modulemetadata.d.ts.map": { - "offset": 41896410, + "offset": 42115000, "size": 210, }, "index.rewriteframes.d.ts.map": { - "offset": 41896620, + "offset": 42115200, "size": 210, }, "index.sessiontiming.d.ts.map": { - "offset": 41896820, + "offset": 42115400, "size": 210, }, }, }, "metrics.d.ts.map": { - "offset": 41907430, + "offset": 42126010, "size": 210, }, "pluggable-exports-bundle": { "files": { "index.multiplexedtransport.d.ts.map": { - "offset": 41907640, + "offset": 42126220, "size": 230, }, }, @@ -64832,43 +64832,43 @@ exports[`node_module collectors > yarn ms 2`] = ` "profiling": { "files": { "integration.d.ts.map": { - "offset": 41907860, + "offset": 42126450, "size": 170, }, "jsSelfProfiling.d.ts.map": { - "offset": 41908030, + "offset": 42126610, "size": 1230, }, "startProfileForSpan.d.ts.map": { - "offset": 41909260, + "offset": 42127840, "size": 270, }, "utils.d.ts.map": { - "offset": 41909520, + "offset": 42128100, "size": 1690, }, }, }, "sdk.d.ts.map": { - "offset": 41911210, + "offset": 42129790, "size": 1420, }, "stack-parsers.d.ts.map": { - "offset": 41912630, + "offset": 42131210, "size": 440, }, "tracing": { "files": { "backgroundtab.d.ts.map": { - "offset": 41913070, + "offset": 42131650, "size": 190, }, "browserTracingIntegration.d.ts.map": { - "offset": 41913250, + "offset": 42131830, "size": 1570, }, "request.d.ts.map": { - "offset": 41914810, + "offset": 42133400, "size": 1200, }, }, @@ -64876,31 +64876,31 @@ exports[`node_module collectors > yarn ms 2`] = ` "transports": { "files": { "fetch.d.ts.map": { - "offset": 41916010, + "offset": 42134600, "size": 390, }, "offline.d.ts.map": { - "offset": 41916390, + "offset": 42134980, "size": 1130, }, "types.d.ts.map": { - "offset": 41917520, + "offset": 42136100, "size": 340, }, }, }, "userfeedback.d.ts.map": { - "offset": 41917860, + "offset": 42136440, "size": 430, }, "utils": { "files": { "featureFlags.d.ts.map": { - "offset": 41918290, + "offset": 42136870, "size": 570, }, "lazyLoadIntegration.d.ts.map": { - "offset": 41918850, + "offset": 42137430, "size": 370, }, }, @@ -64912,7 +64912,7 @@ exports[`node_module collectors > yarn ms 2`] = ` }, }, "package.json": { - "offset": 41919210, + "offset": 42137800, "size": 1430, }, }, @@ -64920,7 +64920,7 @@ exports[`node_module collectors > yarn ms 2`] = ` "core": { "files": { "LICENSE": { - "offset": 41920640, + "offset": 42139230, "size": 1100, }, "build": { @@ -64928,505 +64928,505 @@ exports[`node_module collectors > yarn ms 2`] = ` "cjs": { "files": { "api.js": { - "offset": 41921740, + "offset": 42140320, "size": 2580, }, "api.js.map": { - "offset": 41924320, + "offset": 42142900, "size": 5200, }, "asyncContext": { "files": { "index.js": { - "offset": 41929510, + "offset": 42148100, "size": 1000, }, "index.js.map": { - "offset": 41930510, + "offset": 42149090, "size": 1610, }, "stackStrategy.js": { - "offset": 41932120, + "offset": 42150700, "size": 3790, }, "stackStrategy.js.map": { - "offset": 41935900, + "offset": 42154490, "size": 7650, }, }, }, "baseclient.js": { - "offset": 41943550, + "offset": 42162140, "size": 26510, }, "baseclient.js.map": { - "offset": 41970060, + "offset": 42188640, "size": 51810, }, "breadcrumbs.js": { - "offset": 42021860, + "offset": 42240450, "size": 1420, }, "breadcrumbs.js.map": { - "offset": 42023280, + "offset": 42241860, "size": 2390, }, "carrier.js": { - "offset": 42025670, + "offset": 42244250, "size": 1490, }, "carrier.js.map": { - "offset": 42027150, + "offset": 42245730, "size": 2800, }, "checkin.js": { - "offset": 42029950, + "offset": 42248530, "size": 1090, }, "checkin.js.map": { - "offset": 42031030, + "offset": 42249620, "size": 2380, }, "constants.js": { - "offset": 42033410, + "offset": 42252000, "size": 200, }, "constants.js.map": { - "offset": 42033610, + "offset": 42252190, "size": 200, }, "currentScopes.js": { - "offset": 42033810, + "offset": 42252390, "size": 3900, }, "currentScopes.js.map": { - "offset": 42037700, + "offset": 42256290, "size": 7260, }, "debug-build.js": { - "offset": 42044960, + "offset": 42263540, "size": 530, }, "debug-build.js.map": { - "offset": 42045490, + "offset": 42264070, "size": 610, }, "defaultScopes.js": { - "offset": 42046090, + "offset": 42264680, "size": 660, }, "defaultScopes.js.map": { - "offset": 42046750, + "offset": 42265330, "size": 880, }, "envelope.js": { - "offset": 42047620, + "offset": 42266210, "size": 4560, }, "envelope.js.map": { - "offset": 42052180, + "offset": 42270760, "size": 9230, }, "eventProcessors.js": { - "offset": 42061400, + "offset": 42279990, "size": 1310, }, "eventProcessors.js.map": { - "offset": 42062710, + "offset": 42281290, "size": 2430, }, "exports.js": { - "offset": 42065140, + "offset": 42283720, "size": 11920, }, "exports.js.map": { - "offset": 42077050, + "offset": 42295640, "size": 18040, }, "feedback.js": { - "offset": 42095090, + "offset": 42313670, "size": 1010, }, "feedback.js.map": { - "offset": 42096090, + "offset": 42314680, "size": 2010, }, "fetch.js": { - "offset": 42098100, + "offset": 42316690, "size": 8470, }, "fetch.js.map": { - "offset": 42106570, + "offset": 42325150, "size": 15440, }, "getCurrentHubShim.js": { - "offset": 42122010, + "offset": 42340590, "size": 2870, }, "getCurrentHubShim.js.map": { - "offset": 42124880, + "offset": 42343460, "size": 4540, }, "index.js": { - "offset": 42129420, + "offset": 42348000, "size": 26120, }, "index.js.map": { - "offset": 42155530, + "offset": 42374120, "size": 540, }, "integration.js": { - "offset": 42156070, + "offset": 42374650, "size": 6000, }, "integration.js.map": { - "offset": 42162070, + "offset": 42380650, "size": 10220, }, "integrations": { "files": { "captureconsole.js": { - "offset": 42172280, + "offset": 42390870, "size": 2400, }, "captureconsole.js.map": { - "offset": 42174680, + "offset": 42393260, "size": 4930, }, "debug.js": { - "offset": 42179600, + "offset": 42398190, "size": 1640, }, "debug.js.map": { - "offset": 42181240, + "offset": 42399820, "size": 3140, }, "dedupe.js": { - "offset": 42184370, + "offset": 42402950, "size": 5150, }, "dedupe.js.map": { - "offset": 42189510, + "offset": 42408100, "size": 9190, }, "extraerrordata.js": { - "offset": 42198700, + "offset": 42417280, "size": 3940, }, "extraerrordata.js.map": { - "offset": 42202630, + "offset": 42421210, "size": 7460, }, "functiontostring.js": { - "offset": 42210090, + "offset": 42428670, "size": 1690, }, "functiontostring.js.map": { - "offset": 42211780, + "offset": 42430360, "size": 2730, }, "inboundfilters.js": { - "offset": 42214500, + "offset": 42433080, "size": 8090, }, "inboundfilters.js.map": { - "offset": 42222580, + "offset": 42441170, "size": 14750, }, "linkederrors.js": { - "offset": 42237330, + "offset": 42455910, "size": 1050, }, "linkederrors.js.map": { - "offset": 42238380, + "offset": 42456960, "size": 1900, }, "metadata.js": { - "offset": 42240270, + "offset": 42458850, "size": 1680, }, "metadata.js.map": { - "offset": 42241940, + "offset": 42460520, "size": 2680, }, "requestdata.js": { - "offset": 42244610, + "offset": 42463200, "size": 4240, }, "requestdata.js.map": { - "offset": 42248850, + "offset": 42467430, "size": 8090, }, "rewriteframes.js": { - "offset": 42256940, + "offset": 42475520, "size": 3250, }, "rewriteframes.js.map": { - "offset": 42260180, + "offset": 42478770, "size": 8080, }, "sessiontiming.js": { - "offset": 42268260, + "offset": 42486840, "size": 1250, }, "sessiontiming.js.map": { - "offset": 42269500, + "offset": 42488080, "size": 1930, }, "third-party-errors-filter.js": { - "offset": 42271420, + "offset": 42490010, "size": 3260, }, "third-party-errors-filter.js.map": { - "offset": 42274680, + "offset": 42493260, "size": 7460, }, "zoderrors.js": { - "offset": 42282130, + "offset": 42500710, "size": 2740, }, "zoderrors.js.map": { - "offset": 42284870, + "offset": 42503450, "size": 5930, }, }, }, "metadata.js": { - "offset": 42290800, + "offset": 42509380, "size": 3140, }, "metadata.js.map": { - "offset": 42293930, + "offset": 42512520, "size": 5010, }, "metrics": { "files": { "aggregator.js": { - "offset": 42298940, + "offset": 42517520, "size": 6260, }, "aggregator.js.map": { - "offset": 42305190, + "offset": 42523770, "size": 10620, }, "browser-aggregator.js": { - "offset": 42315810, + "offset": 42534390, "size": 3130, }, "browser-aggregator.js.map": { - "offset": 42318940, + "offset": 42537520, "size": 5830, }, "constants.js": { - "offset": 42324760, + "offset": 42543340, "size": 1090, }, "constants.js.map": { - "offset": 42325850, + "offset": 42544430, "size": 1100, }, "envelope.js": { - "offset": 42326940, + "offset": 42545530, "size": 1760, }, "envelope.js.map": { - "offset": 42328700, + "offset": 42547280, "size": 3360, }, "exports-default.js": { - "offset": 42332050, + "offset": 42550630, "size": 2770, }, "exports-default.js.map": { - "offset": 42334820, + "offset": 42553400, "size": 4720, }, "exports.js": { - "offset": 42339530, + "offset": 42558110, "size": 5550, }, "exports.js.map": { - "offset": 42345080, + "offset": 42563660, "size": 10210, }, "instance.js": { - "offset": 42355280, + "offset": 42573860, "size": 2390, }, "instance.js.map": { - "offset": 42357660, + "offset": 42576250, "size": 5320, }, "metric-summary.js": { - "offset": 42362980, + "offset": 42581560, "size": 1740, }, "metric-summary.js.map": { - "offset": 42364710, + "offset": 42583300, "size": 4010, }, "utils.js": { - "offset": 42368720, + "offset": 42587310, "size": 3320, }, "utils.js.map": { - "offset": 42372040, + "offset": 42590630, "size": 6470, }, }, }, "profiling.js": { - "offset": 42378510, + "offset": 42597090, "size": 2380, }, "profiling.js.map": { - "offset": 42380880, + "offset": 42599460, "size": 3860, }, "scope.js": { - "offset": 42384740, + "offset": 42603320, "size": 13390, }, "scope.js.map": { - "offset": 42398120, + "offset": 42616710, "size": 26880, }, "sdk.js": { - "offset": 42425000, + "offset": 42643580, "size": 1460, }, "sdk.js.map": { - "offset": 42426450, + "offset": 42645040, "size": 2360, }, "semanticAttributes.js": { - "offset": 42428810, + "offset": 42647390, "size": 3230, }, "semanticAttributes.js.map": { - "offset": 42432030, + "offset": 42650610, "size": 2690, }, "server-runtime-client.js": { - "offset": 42434710, + "offset": 42653300, "size": 9310, }, "server-runtime-client.js.map": { - "offset": 42444020, + "offset": 42662610, "size": 15830, }, "session.js": { - "offset": 42459840, + "offset": 42678430, "size": 5430, }, "session.js.map": { - "offset": 42465270, + "offset": 42683850, "size": 9380, }, "sessionflusher.js": { - "offset": 42474640, + "offset": 42693220, "size": 4360, }, "sessionflusher.js.map": { - "offset": 42479000, + "offset": 42697580, "size": 7670, }, "tracing": { "files": { "dynamicSamplingContext.js": { - "offset": 42486660, + "offset": 42705250, "size": 4470, }, "dynamicSamplingContext.js.map": { - "offset": 42491130, + "offset": 42709710, "size": 7400, }, "errors.js": { - "offset": 42498530, + "offset": 42717110, "size": 1630, }, "errors.js.map": { - "offset": 42500160, + "offset": 42718740, "size": 2510, }, "hubextensions.js": { - "offset": 42502670, + "offset": 42721250, "size": 500, }, "hubextensions.js.map": { - "offset": 42503160, + "offset": 42721740, "size": 620, }, "idleSpan.js": { - "offset": 42503770, + "offset": 42722360, "size": 10700, }, "idleSpan.js.map": { - "offset": 42514470, + "offset": 42733050, "size": 20360, }, "logSpans.js": { - "offset": 42534820, + "offset": 42753400, "size": 1880, }, "logSpans.js.map": { - "offset": 42536690, + "offset": 42755280, "size": 3700, }, "measurement.js": { - "offset": 42540390, + "offset": 42758970, "size": 1690, }, "measurement.js.map": { - "offset": 42542080, + "offset": 42760660, "size": 2970, }, "sampling.js": { - "offset": 42545040, + "offset": 42763630, "size": 3480, }, "sampling.js.map": { - "offset": 42548520, + "offset": 42767100, "size": 5250, }, "sentryNonRecordingSpan.js": { - "offset": 42553760, + "offset": 42772350, "size": 1970, }, "sentryNonRecordingSpan.js.map": { - "offset": 42555730, + "offset": 42774310, "size": 3800, }, "sentrySpan.js": { - "offset": 42559520, + "offset": 42778110, "size": 12630, }, "sentrySpan.js.map": { - "offset": 42572150, + "offset": 42790730, "size": 23100, }, "spanstatus.js": { - "offset": 42595240, + "offset": 42813820, "size": 2500, }, "spanstatus.js.map": { - "offset": 42597730, + "offset": 42816320, "size": 4220, }, "trace.js": { - "offset": 42601940, + "offset": 42820530, "size": 15220, }, "trace.js.map": { - "offset": 42617160, + "offset": 42835740, "size": 25620, }, "utils.js": { - "offset": 42642780, + "offset": 42861360, "size": 1020, }, "utils.js.map": { - "offset": 42643790, + "offset": 42862380, "size": 1770, }, }, @@ -65434,143 +65434,143 @@ exports[`node_module collectors > yarn ms 2`] = ` "transports": { "files": { "base.js": { - "offset": 42645560, + "offset": 42864140, "size": 3480, }, "base.js.map": { - "offset": 42649030, + "offset": 42867620, "size": 6680, }, "multiplexed.js": { - "offset": 42655710, + "offset": 42874290, "size": 3860, }, "multiplexed.js.map": { - "offset": 42659570, + "offset": 42878150, "size": 8680, }, "offline.js": { - "offset": 42668240, + "offset": 42886820, "size": 4480, }, "offline.js.map": { - "offset": 42672720, + "offset": 42891300, "size": 9190, }, }, }, "trpc.js": { - "offset": 42681900, + "offset": 42900480, "size": 2810, }, "trpc.js.map": { - "offset": 42684710, + "offset": 42903290, "size": 5100, }, "utils": { "files": { "applyScopeDataToEvent.js": { - "offset": 43217370, + "offset": 43435960, "size": 5410, }, "applyScopeDataToEvent.js.map": { - "offset": 43222770, + "offset": 43441360, "size": 10930, }, "handleCallbackErrors.js": { - "offset": 43233700, + "offset": 43452290, "size": 1800, }, "handleCallbackErrors.js.map": { - "offset": 43235500, + "offset": 43454080, "size": 2920, }, "hasTracingEnabled.js": { - "offset": 43238420, + "offset": 43457000, "size": 870, }, "hasTracingEnabled.js.map": { - "offset": 43239280, + "offset": 43457870, "size": 1450, }, "isSentryRequestUrl.js": { - "offset": 43240730, + "offset": 43459310, "size": 780, }, "isSentryRequestUrl.js.map": { - "offset": 43241510, + "offset": 43460090, "size": 1730, }, "merge.js": { - "offset": 43243230, + "offset": 43461820, "size": 1100, }, "merge.js.map": { - "offset": 43244330, + "offset": 43462910, "size": 1810, }, "meta.js": { - "offset": 43246130, + "offset": 43464710, "size": 830, }, "meta.js.map": { - "offset": 43246950, + "offset": 43465540, "size": 1190, }, "parameterize.js": { - "offset": 43248140, + "offset": 43466720, "size": 1010, }, "parameterize.js.map": { - "offset": 43249140, + "offset": 43467720, "size": 1550, }, "parseSampleRate.js": { - "offset": 43250680, + "offset": 43469260, "size": 1130, }, "parseSampleRate.js.map": { - "offset": 43251800, + "offset": 43470380, "size": 1750, }, "prepareEvent.js": { - "offset": 43253550, + "offset": 43472130, "size": 11860, }, "prepareEvent.js.map": { - "offset": 43265400, + "offset": 43483980, "size": 20820, }, "sdkMetadata.js": { - "offset": 43286210, + "offset": 43504800, "size": 1160, }, "sdkMetadata.js.map": { - "offset": 43287370, + "offset": 43505950, "size": 1820, }, "spanOnScope.js": { - "offset": 43289190, + "offset": 43507770, "size": 900, }, "spanOnScope.js.map": { - "offset": 43290080, + "offset": 43508670, "size": 1490, }, "spanUtils.js": { - "offset": 43291570, + "offset": 43510160, "size": 10880, }, "spanUtils.js.map": { - "offset": 43302450, + "offset": 43521030, "size": 17950, }, "traceData.js": { - "offset": 43320390, + "offset": 43538970, "size": 2760, }, "traceData.js.map": { - "offset": 43323140, + "offset": 43541730, "size": 4240, }, }, @@ -65578,463 +65578,463 @@ exports[`node_module collectors > yarn ms 2`] = ` "utils-hoist": { "files": { "aggregate-errors.js": { - "offset": 42689800, + "offset": 42908380, "size": 4590, }, "aggregate-errors.js.map": { - "offset": 42694390, + "offset": 42912970, "size": 8440, }, "anr.js": { - "offset": 42702830, + "offset": 42921410, "size": 1980, }, "anr.js.map": { - "offset": 42704800, + "offset": 42923390, "size": 4050, }, "array.js": { - "offset": 42708850, + "offset": 42927430, "size": 540, }, "array.js.map": { - "offset": 42709390, + "offset": 42927970, "size": 1120, }, "baggage.js": { - "offset": 42710500, + "offset": 42929080, "size": 5990, }, "baggage.js.map": { - "offset": 42716490, + "offset": 42935070, "size": 9350, }, "breadcrumb-log-level.js": { - "offset": 42725830, + "offset": 42944420, "size": 650, }, "breadcrumb-log-level.js.map": { - "offset": 42726480, + "offset": 42945060, "size": 1020, }, "browser.js": { - "offset": 42727500, + "offset": 42946080, "size": 6000, }, "browser.js.map": { - "offset": 42733500, + "offset": 42952080, "size": 10560, }, "buildPolyfills": { "files": { "_asyncNullishCoalesce.js": { - "offset": 42744060, + "offset": 42962640, "size": 2460, }, "_asyncNullishCoalesce.js.map": { - "offset": 42746520, + "offset": 42965100, "size": 2900, }, "_asyncOptionalChain.js": { - "offset": 42749410, + "offset": 42967990, "size": 2210, }, "_asyncOptionalChain.js.map": { - "offset": 42751620, + "offset": 42970200, "size": 4690, }, "_asyncOptionalChainDelete.js": { - "offset": 42756300, + "offset": 42974890, "size": 2920, }, "_asyncOptionalChainDelete.js.map": { - "offset": 42759220, + "offset": 42977810, "size": 3430, }, "_nullishCoalesce.js": { - "offset": 42762640, + "offset": 42981230, "size": 2330, }, "_nullishCoalesce.js.map": { - "offset": 42764970, + "offset": 42983550, "size": 2760, }, "_optionalChain.js": { - "offset": 42767730, + "offset": 42986310, "size": 2080, }, "_optionalChain.js.map": { - "offset": 42769800, + "offset": 42988390, "size": 4530, }, "_optionalChainDelete.js": { - "offset": 42774330, + "offset": 42992910, "size": 2930, }, "_optionalChainDelete.js.map": { - "offset": 42777250, + "offset": 42995840, "size": 3390, }, }, }, "cache.js": { - "offset": 42780640, + "offset": 42999220, "size": 1740, }, "cache.js.map": { - "offset": 42782370, + "offset": 43000960, "size": 3290, }, "clientreport.js": { - "offset": 42785660, + "offset": 43004240, "size": 730, }, "clientreport.js.map": { - "offset": 42786390, + "offset": 43004970, "size": 1350, }, "cookie.js": { - "offset": 42787730, + "offset": 43006310, "size": 2560, }, "cookie.js.map": { - "offset": 42790290, + "offset": 43008870, "size": 4060, }, "debug-build.js": { - "offset": 42794340, + "offset": 43012920, "size": 530, }, "debug-build.js.map": { - "offset": 42794870, + "offset": 43013450, "size": 620, }, "debug-ids.js": { - "offset": 42795490, + "offset": 43014070, "size": 2180, }, "debug-ids.js.map": { - "offset": 42797660, + "offset": 43016250, "size": 4260, }, "dsn.js": { - "offset": 42801920, + "offset": 43020500, "size": 3720, }, "dsn.js.map": { - "offset": 42805640, + "offset": 43024220, "size": 7390, }, "env.js": { - "offset": 42813030, + "offset": 43031610, "size": 1700, }, "env.js.map": { - "offset": 42814720, + "offset": 43033300, "size": 2080, }, "envelope.js": { - "offset": 42816790, + "offset": 43035370, "size": 7590, }, "envelope.js.map": { - "offset": 42824370, + "offset": 43042960, "size": 13960, }, "error.js": { - "offset": 42838330, + "offset": 43056910, "size": 840, }, "error.js.map": { - "offset": 42839160, + "offset": 43057740, "size": 1370, }, "eventbuilder.js": { - "offset": 42840520, + "offset": 43059100, "size": 5160, }, "eventbuilder.js.map": { - "offset": 42845670, + "offset": 43064250, "size": 10580, }, "instrument": { "files": { "console.js": { - "offset": 42856240, + "offset": 43074830, "size": 1370, }, "console.js.map": { - "offset": 42857610, + "offset": 43076190, "size": 2570, }, "fetch.js": { - "offset": 42860180, + "offset": 43078760, "size": 7210, }, "fetch.js.map": { - "offset": 42867380, + "offset": 43085970, "size": 12490, }, "globalError.js": { - "offset": 42879870, + "offset": 43098450, "size": 1450, }, "globalError.js.map": { - "offset": 42881320, + "offset": 43099900, "size": 2490, }, "globalUnhandledRejection.js": { - "offset": 42883800, + "offset": 43102380, "size": 1560, }, "globalUnhandledRejection.js.map": { - "offset": 42885350, + "offset": 43103940, "size": 2450, }, "handlers.js": { - "offset": 42887790, + "offset": 43106380, "size": 1760, }, "handlers.js.map": { - "offset": 42889550, + "offset": 43108130, "size": 3450, }, }, }, "is.js": { - "offset": 42893000, + "offset": 43111580, "size": 5600, }, "is.js.map": { - "offset": 42898590, + "offset": 43117170, "size": 8660, }, "isBrowser.js": { - "offset": 42907250, + "offset": 43125830, "size": 690, }, "isBrowser.js.map": { - "offset": 42907930, + "offset": 43126510, "size": 1110, }, "logger.js": { - "offset": 42909030, + "offset": 43127620, "size": 2380, }, "logger.js.map": { - "offset": 42911410, + "offset": 43129990, "size": 4630, }, "lru.js": { - "offset": 42916040, + "offset": 43134620, "size": 1560, }, "lru.js.map": { - "offset": 42917600, + "offset": 43136180, "size": 3200, }, "memo.js": { - "offset": 42920790, + "offset": 43139370, "size": 1250, }, "memo.js.map": { - "offset": 42922040, + "offset": 43140620, "size": 2480, }, "misc.js": { - "offset": 42924510, + "offset": 43143090, "size": 8840, }, "misc.js.map": { - "offset": 42933340, + "offset": 43151920, "size": 14600, }, "node-stack-trace.js": { - "offset": 42947930, + "offset": 43166520, "size": 4090, }, "node-stack-trace.js.map": { - "offset": 42952020, + "offset": 43170610, "size": 8830, }, "node.js": { - "offset": 42960840, + "offset": 43179430, "size": 2500, }, "node.js.map": { - "offset": 42963340, + "offset": 43181920, "size": 3470, }, "normalize.js": { - "offset": 42966800, + "offset": 43185380, "size": 10640, }, "normalize.js.map": { - "offset": 42977430, + "offset": 43196010, "size": 17280, }, "object.js": { - "offset": 42994700, + "offset": 43213280, "size": 10230, }, "object.js.map": { - "offset": 43004920, + "offset": 43223510, "size": 17220, }, "path.js": { - "offset": 43022140, + "offset": 43240720, "size": 5910, }, "path.js.map": { - "offset": 43028050, + "offset": 43246630, "size": 11010, }, "promisebuffer.js": { - "offset": 43039050, + "offset": 43257640, "size": 3630, }, "promisebuffer.js.map": { - "offset": 43042680, + "offset": 43261260, "size": 5990, }, "propagationContext.js": { - "offset": 43048660, + "offset": 43267250, "size": 760, }, "propagationContext.js.map": { - "offset": 43049420, + "offset": 43268000, "size": 1100, }, "ratelimit.js": { - "offset": 43050510, + "offset": 43269100, "size": 3910, }, "ratelimit.js.map": { - "offset": 43054420, + "offset": 43273010, "size": 6380, }, "requestdata.js": { - "offset": 43060800, + "offset": 43279380, "size": 16610, }, "requestdata.js.map": { - "offset": 43077410, + "offset": 43295990, "size": 29780, }, "severity.js": { - "offset": 43107180, + "offset": 43325760, "size": 860, }, "severity.js.map": { - "offset": 43108030, + "offset": 43326620, "size": 1260, }, "stacktrace.js": { - "offset": 43109290, + "offset": 43327870, "size": 5590, }, "stacktrace.js.map": { - "offset": 43114880, + "offset": 43333460, "size": 9090, }, "string.js": { - "offset": 43123960, + "offset": 43342550, "size": 4180, }, "string.js.map": { - "offset": 43128140, + "offset": 43346730, "size": 7030, }, "supports.js": { - "offset": 43135170, + "offset": 43353750, "size": 4620, }, "supports.js.map": { - "offset": 43139780, + "offset": 43358360, "size": 7080, }, "syncpromise.js": { - "offset": 43146860, + "offset": 43365440, "size": 4380, }, "syncpromise.js.map": { - "offset": 43151230, + "offset": 43369810, "size": 9120, }, "time.js": { - "offset": 43160350, + "offset": 43378930, "size": 5860, }, "time.js.map": { - "offset": 43166200, + "offset": 43384790, "size": 8140, }, "tracing.js": { - "offset": 43174340, + "offset": 43392920, "size": 2680, }, "tracing.js.map": { - "offset": 43177010, + "offset": 43395590, "size": 4440, }, "url.js": { - "offset": 43181450, + "offset": 43400030, "size": 2540, }, "url.js.map": { - "offset": 43183990, + "offset": 43402570, "size": 4110, }, "vendor": { "files": { "escapeStringForRegex.js": { - "offset": 43188090, + "offset": 43406670, "size": 2200, }, "escapeStringForRegex.js.map": { - "offset": 43190290, + "offset": 43408870, "size": 2560, }, "getIpAddress.js": { - "offset": 43192840, + "offset": 43411420, "size": 4970, }, "getIpAddress.js.map": { - "offset": 43197810, + "offset": 43416390, "size": 7060, }, "supportsHistory.js": { - "offset": 43204860, + "offset": 43423440, "size": 1110, }, "supportsHistory.js.map": { - "offset": 43205960, + "offset": 43424550, "size": 2780, }, }, }, "vercelWaitUntil.js": { - "offset": 43208730, + "offset": 43427320, "size": 780, }, "vercelWaitUntil.js.map": { - "offset": 43209510, + "offset": 43428090, "size": 1350, }, "version.js": { - "offset": 43210850, + "offset": 43429430, "size": 220, }, "version.js.map": { - "offset": 43211060, + "offset": 43429650, "size": 380, }, "worldwide.js": { - "offset": 43211440, + "offset": 43430030, "size": 1210, }, "worldwide.js.map": { - "offset": 43212650, + "offset": 43431230, "size": 4730, }, }, @@ -66044,509 +66044,509 @@ exports[`node_module collectors > yarn ms 2`] = ` "esm": { "files": { "api.js": { - "offset": 43327380, + "offset": 43545960, "size": 2450, }, "api.js.map": { - "offset": 43329820, + "offset": 43548400, "size": 5160, }, "asyncContext": { "files": { "index.js": { - "offset": 43334980, + "offset": 43553560, "size": 870, }, "index.js.map": { - "offset": 43335850, + "offset": 43554430, "size": 1530, }, "stackStrategy.js": { - "offset": 43337370, + "offset": 43555950, "size": 3670, }, "stackStrategy.js.map": { - "offset": 43341040, + "offset": 43559620, "size": 7520, }, }, }, "baseclient.js": { - "offset": 43348550, + "offset": 43567140, "size": 26170, }, "baseclient.js.map": { - "offset": 43374720, + "offset": 43593300, "size": 51000, }, "breadcrumbs.js": { - "offset": 43425720, + "offset": 43644300, "size": 1340, }, "breadcrumbs.js.map": { - "offset": 43427060, + "offset": 43645640, "size": 2310, }, "carrier.js": { - "offset": 43429360, + "offset": 43647940, "size": 1340, }, "carrier.js.map": { - "offset": 43430700, + "offset": 43649280, "size": 2760, }, "checkin.js": { - "offset": 43433460, + "offset": 43652040, "size": 1000, }, "checkin.js.map": { - "offset": 43434450, + "offset": 43653040, "size": 2320, }, "constants.js": { - "offset": 43436770, + "offset": 43655350, "size": 120, }, "constants.js.map": { - "offset": 43436880, + "offset": 43655460, "size": 200, }, "currentScopes.js": { - "offset": 43437080, + "offset": 43655660, "size": 3610, }, "currentScopes.js.map": { - "offset": 43440680, + "offset": 43659270, "size": 7140, }, "debug-build.js": { - "offset": 43447820, + "offset": 43666400, "size": 460, }, "debug-build.js.map": { - "offset": 43448270, + "offset": 43666850, "size": 610, }, "defaultScopes.js": { - "offset": 43448870, + "offset": 43667450, "size": 510, }, "defaultScopes.js.map": { - "offset": 43449380, + "offset": 43667960, "size": 850, }, "envelope.js": { - "offset": 43450230, + "offset": 43668810, "size": 4410, }, "envelope.js.map": { - "offset": 43454630, + "offset": 43673210, "size": 9000, }, "eventProcessors.js": { - "offset": 43463630, + "offset": 43682210, "size": 1190, }, "eventProcessors.js.map": { - "offset": 43464820, + "offset": 43683400, "size": 2380, }, "exports.js": { - "offset": 43467190, + "offset": 43685780, "size": 11040, }, "exports.js.map": { - "offset": 43478230, + "offset": 43696810, "size": 17690, }, "feedback.js": { - "offset": 43495920, + "offset": 43714500, "size": 920, }, "feedback.js.map": { - "offset": 43496830, + "offset": 43715410, "size": 1960, }, "fetch.js": { - "offset": 43498780, + "offset": 43717360, "size": 8260, }, "fetch.js.map": { - "offset": 43507030, + "offset": 43725620, "size": 15160, }, "getCurrentHubShim.js": { - "offset": 43522190, + "offset": 43740770, "size": 2500, }, "getCurrentHubShim.js.map": { - "offset": 43524690, + "offset": 43743270, "size": 4310, }, "index.js": { - "offset": 43528990, + "offset": 43747580, "size": 11800, }, "index.js.map": { - "offset": 43540790, + "offset": 43759370, "size": 210, }, "integration.js": { - "offset": 43541000, + "offset": 43759580, "size": 5670, }, "integration.js.map": { - "offset": 43546660, + "offset": 43765250, "size": 10170, }, "integrations": { "files": { "captureconsole.js": { - "offset": 43556830, + "offset": 43775410, "size": 2280, }, "captureconsole.js.map": { - "offset": 43559100, + "offset": 43777690, "size": 4710, }, "debug.js": { - "offset": 43563800, + "offset": 43782390, "size": 1550, }, "debug.js.map": { - "offset": 43565350, + "offset": 43783930, "size": 3100, }, "dedupe.js": { - "offset": 43568440, + "offset": 43787030, "size": 5000, }, "dedupe.js.map": { - "offset": 43573440, + "offset": 43792020, "size": 9120, }, "extraerrordata.js": { - "offset": 43582550, + "offset": 43801130, "size": 3820, }, "extraerrordata.js.map": { - "offset": 43586360, + "offset": 43804950, "size": 7330, }, "functiontostring.js": { - "offset": 43593690, + "offset": 43812270, "size": 1580, }, "functiontostring.js.map": { - "offset": 43595260, + "offset": 43813850, "size": 2670, }, "inboundfilters.js": { - "offset": 43597930, + "offset": 43816510, "size": 7830, }, "inboundfilters.js.map": { - "offset": 43605760, + "offset": 43824340, "size": 14630, }, "linkederrors.js": { - "offset": 43620380, + "offset": 43838960, "size": 940, }, "linkederrors.js.map": { - "offset": 43621320, + "offset": 43839900, "size": 1820, }, "metadata.js": { - "offset": 43623130, + "offset": 43841720, "size": 1610, }, "metadata.js.map": { - "offset": 43624740, + "offset": 43843320, "size": 2560, }, "requestdata.js": { - "offset": 43627290, + "offset": 43845870, "size": 4170, }, "requestdata.js.map": { - "offset": 43631450, + "offset": 43850030, "size": 8010, }, "rewriteframes.js": { - "offset": 43639460, + "offset": 43858040, "size": 3110, }, "rewriteframes.js.map": { - "offset": 43642560, + "offset": 43861150, "size": 8010, }, "sessiontiming.js": { - "offset": 43650570, + "offset": 43869160, "size": 1150, }, "sessiontiming.js.map": { - "offset": 43651720, + "offset": 43870310, "size": 1880, }, "third-party-errors-filter.js": { - "offset": 43653600, + "offset": 43872180, "size": 3170, }, "third-party-errors-filter.js.map": { - "offset": 43656770, + "offset": 43875350, "size": 7320, }, "zoderrors.js": { - "offset": 43664080, + "offset": 43882670, "size": 2620, }, "zoderrors.js.map": { - "offset": 43666700, + "offset": 43885280, "size": 5890, }, }, }, "metadata.js": { - "offset": 43672580, + "offset": 43891160, "size": 2960, }, "metadata.js.map": { - "offset": 43675530, + "offset": 43894110, "size": 4990, }, "metrics": { "files": { "aggregator.js": { - "offset": 43680510, + "offset": 43899100, "size": 6210, }, "aggregator.js.map": { - "offset": 43686720, + "offset": 43905300, "size": 10390, }, "browser-aggregator.js": { - "offset": 43697100, + "offset": 43915680, "size": 3100, }, "browser-aggregator.js.map": { - "offset": 43700200, + "offset": 43918780, "size": 5600, }, "constants.js": { - "offset": 43705800, + "offset": 43924380, "size": 820, }, "constants.js.map": { - "offset": 43706620, + "offset": 43925200, "size": 1090, }, "envelope.js": { - "offset": 43707710, + "offset": 43926290, "size": 1640, }, "envelope.js.map": { - "offset": 43709340, + "offset": 43927920, "size": 3270, }, "exports-default.js": { - "offset": 43712610, + "offset": 43931190, "size": 2570, }, "exports-default.js.map": { - "offset": 43715170, + "offset": 43933760, "size": 4690, }, "exports.js": { - "offset": 43719850, + "offset": 43938440, "size": 5450, }, "exports.js.map": { - "offset": 43725300, + "offset": 43943880, "size": 9940, }, "instance.js": { - "offset": 43735230, + "offset": 43953810, "size": 2250, }, "instance.js.map": { - "offset": 43737470, + "offset": 43956060, "size": 5210, }, "metric-summary.js": { - "offset": 43742680, + "offset": 43961260, "size": 1610, }, "metric-summary.js.map": { - "offset": 43744290, + "offset": 43962870, "size": 3990, }, "utils.js": { - "offset": 43748270, + "offset": 43966860, "size": 3120, }, "utils.js.map": { - "offset": 43751390, + "offset": 43969980, "size": 6440, }, }, }, "package.json": { - "offset": 43757830, + "offset": 43976410, "size": 60, }, "profiling.js": { - "offset": 43757880, + "offset": 43976470, "size": 2170, }, "profiling.js.map": { - "offset": 43760050, + "offset": 43978630, "size": 3800, }, "scope.js": { - "offset": 43763840, + "offset": 43982430, "size": 13200, }, "scope.js.map": { - "offset": 43777040, + "offset": 43995630, "size": 26700, }, "sdk.js": { - "offset": 43803740, + "offset": 44022320, "size": 1320, }, "sdk.js.map": { - "offset": 43805050, + "offset": 44023640, "size": 2290, }, "semanticAttributes.js": { - "offset": 43807340, + "offset": 44025920, "size": 2490, }, "semanticAttributes.js.map": { - "offset": 43809820, + "offset": 44028400, "size": 2670, }, "server-runtime-client.js": { - "offset": 43812490, + "offset": 44031070, "size": 9100, }, "server-runtime-client.js.map": { - "offset": 43821580, + "offset": 44040170, "size": 15420, }, "session.js": { - "offset": 43837000, + "offset": 44055590, "size": 5300, }, "session.js.map": { - "offset": 43842300, + "offset": 44060880, "size": 9320, }, "sessionflusher.js": { - "offset": 43851610, + "offset": 44070190, "size": 4280, }, "sessionflusher.js.map": { - "offset": 43855880, + "offset": 44074460, "size": 7630, }, "tracing": { "files": { "dynamicSamplingContext.js": { - "offset": 43863510, + "offset": 44082090, "size": 4280, }, "dynamicSamplingContext.js.map": { - "offset": 43867780, + "offset": 44086360, "size": 7080, }, "errors.js": { - "offset": 43874850, + "offset": 44093440, "size": 1520, }, "errors.js.map": { - "offset": 43876370, + "offset": 44094950, "size": 2340, }, "hubextensions.js": { - "offset": 43878700, + "offset": 44097290, "size": 430, }, "hubextensions.js.map": { - "offset": 43879130, + "offset": 44097710, "size": 580, }, "idleSpan.js": { - "offset": 43879710, + "offset": 44098290, "size": 10390, }, "idleSpan.js.map": { - "offset": 43890090, + "offset": 44108670, "size": 19980, }, "logSpans.js": { - "offset": 43910060, + "offset": 44128650, "size": 1710, }, "logSpans.js.map": { - "offset": 43911770, + "offset": 44130350, "size": 3610, }, "measurement.js": { - "offset": 43915380, + "offset": 44133960, "size": 1550, }, "measurement.js.map": { - "offset": 43916920, + "offset": 44135500, "size": 2820, }, "sampling.js": { - "offset": 43919730, + "offset": 44138310, "size": 3300, }, "sampling.js.map": { - "offset": 43923030, + "offset": 44141610, "size": 5150, }, "sentryNonRecordingSpan.js": { - "offset": 43928180, + "offset": 44146760, "size": 1860, }, "sentryNonRecordingSpan.js.map": { - "offset": 43930030, + "offset": 44148610, "size": 3740, }, "sentrySpan.js": { - "offset": 43933760, + "offset": 44152350, "size": 12340, }, "sentrySpan.js.map": { - "offset": 43946100, + "offset": 44164690, "size": 22350, }, "spanstatus.js": { - "offset": 43968450, + "offset": 44187030, "size": 2300, }, "spanstatus.js.map": { - "offset": 43970740, + "offset": 44189330, "size": 4210, }, "trace.js": { - "offset": 43974950, + "offset": 44193530, "size": 14510, }, "trace.js.map": { - "offset": 43989460, + "offset": 44208040, "size": 24930, }, "utils.js": { - "offset": 44014380, + "offset": 44232970, "size": 900, }, "utils.js.map": { - "offset": 44015280, + "offset": 44233870, "size": 1740, }, }, @@ -66554,143 +66554,143 @@ exports[`node_module collectors > yarn ms 2`] = ` "transports": { "files": { "base.js": { - "offset": 44017020, + "offset": 44235600, "size": 3310, }, "base.js.map": { - "offset": 44020320, + "offset": 44238900, "size": 6420, }, "multiplexed.js": { - "offset": 44026740, + "offset": 44245320, "size": 3770, }, "multiplexed.js.map": { - "offset": 44030510, + "offset": 44249090, "size": 8550, }, "offline.js": { - "offset": 44039050, + "offset": 44257630, "size": 4320, }, "offline.js.map": { - "offset": 44043370, + "offset": 44261950, "size": 9090, }, }, }, "trpc.js": { - "offset": 44052450, + "offset": 44271030, "size": 2680, }, "trpc.js.map": { - "offset": 44055120, + "offset": 44273700, "size": 4940, }, "utils": { "files": { "applyScopeDataToEvent.js": { - "offset": 44576740, + "offset": 44795320, "size": 5220, }, "applyScopeDataToEvent.js.map": { - "offset": 44581950, + "offset": 44800540, "size": 10810, }, "handleCallbackErrors.js": { - "offset": 44592760, + "offset": 44811340, "size": 1720, }, "handleCallbackErrors.js.map": { - "offset": 44594470, + "offset": 44813060, "size": 2910, }, "hasTracingEnabled.js": { - "offset": 44597380, + "offset": 44815960, "size": 770, }, "hasTracingEnabled.js.map": { - "offset": 44598140, + "offset": 44816720, "size": 1440, }, "isSentryRequestUrl.js": { - "offset": 44599570, + "offset": 44818150, "size": 700, }, "isSentryRequestUrl.js.map": { - "offset": 44600270, + "offset": 44818850, "size": 1730, }, "merge.js": { - "offset": 44601990, + "offset": 44820570, "size": 1030, }, "merge.js.map": { - "offset": 44603010, + "offset": 44821600, "size": 1810, }, "meta.js": { - "offset": 44604820, + "offset": 44823400, "size": 740, }, "meta.js.map": { - "offset": 44605550, + "offset": 44824140, "size": 1170, }, "parameterize.js": { - "offset": 44606720, + "offset": 44825300, "size": 930, }, "parameterize.js.map": { - "offset": 44607640, + "offset": 44826220, "size": 1550, }, "parseSampleRate.js": { - "offset": 44609180, + "offset": 44827770, "size": 1030, }, "parseSampleRate.js.map": { - "offset": 44610210, + "offset": 44828790, "size": 1720, }, "prepareEvent.js": { - "offset": 44611930, + "offset": 44830510, "size": 11500, }, "prepareEvent.js.map": { - "offset": 44623420, + "offset": 44842000, "size": 20530, }, "sdkMetadata.js": { - "offset": 44643950, + "offset": 44862530, "size": 1070, }, "sdkMetadata.js.map": { - "offset": 44645010, + "offset": 44863590, "size": 1800, }, "spanOnScope.js": { - "offset": 44646810, + "offset": 44865390, "size": 800, }, "spanOnScope.js.map": { - "offset": 44647610, + "offset": 44866190, "size": 1460, }, "spanUtils.js": { - "offset": 44649070, + "offset": 44867650, "size": 10370, }, "spanUtils.js.map": { - "offset": 44659430, + "offset": 44878010, "size": 17440, }, "traceData.js": { - "offset": 44676870, + "offset": 44895450, "size": 2680, }, "traceData.js.map": { - "offset": 44679540, + "offset": 44898130, "size": 3900, }, }, @@ -66698,463 +66698,463 @@ exports[`node_module collectors > yarn ms 2`] = ` "utils-hoist": { "files": { "aggregate-errors.js": { - "offset": 44060060, + "offset": 44278640, "size": 4500, }, "aggregate-errors.js.map": { - "offset": 44064550, + "offset": 44283130, "size": 8410, }, "anr.js": { - "offset": 44072950, + "offset": 44291540, "size": 1850, }, "anr.js.map": { - "offset": 44074800, + "offset": 44293390, "size": 3990, }, "array.js": { - "offset": 44078790, + "offset": 44297370, "size": 470, }, "array.js.map": { - "offset": 44079250, + "offset": 44297840, "size": 1120, }, "baggage.js": { - "offset": 44080370, + "offset": 44298950, "size": 5650, }, "baggage.js.map": { - "offset": 44086010, + "offset": 44304590, "size": 9300, }, "breadcrumb-log-level.js": { - "offset": 44095310, + "offset": 44313890, "size": 550, }, "breadcrumb-log-level.js.map": { - "offset": 44095850, + "offset": 44314430, "size": 1020, }, "browser.js": { - "offset": 44096870, + "offset": 44315450, "size": 5840, }, "browser.js.map": { - "offset": 44102700, + "offset": 44321290, "size": 10530, }, "buildPolyfills": { "files": { "_asyncNullishCoalesce.js": { - "offset": 44113230, + "offset": 44331810, "size": 2360, }, "_asyncNullishCoalesce.js.map": { - "offset": 44115590, + "offset": 44334170, "size": 2880, }, "_asyncOptionalChain.js": { - "offset": 44118460, + "offset": 44337040, "size": 2130, }, "_asyncOptionalChain.js.map": { - "offset": 44120590, + "offset": 44339170, "size": 4690, }, "_asyncOptionalChainDelete.js": { - "offset": 44125270, + "offset": 44343850, "size": 2810, }, "_asyncOptionalChainDelete.js.map": { - "offset": 44128080, + "offset": 44346660, "size": 3400, }, "_nullishCoalesce.js": { - "offset": 44131470, + "offset": 44350060, "size": 2250, }, "_nullishCoalesce.js.map": { - "offset": 44133720, + "offset": 44352300, "size": 2760, }, "_optionalChain.js": { - "offset": 44136470, + "offset": 44355060, "size": 2000, }, "_optionalChain.js.map": { - "offset": 44138470, + "offset": 44357060, "size": 4530, }, "_optionalChainDelete.js": { - "offset": 44143000, + "offset": 44361580, "size": 2830, }, "_optionalChainDelete.js.map": { - "offset": 44145820, + "offset": 44364400, "size": 3370, }, }, }, "cache.js": { - "offset": 44149190, + "offset": 44367770, "size": 1660, }, "cache.js.map": { - "offset": 44150840, + "offset": 44369430, "size": 3290, }, "clientreport.js": { - "offset": 44154130, + "offset": 44372710, "size": 650, }, "clientreport.js.map": { - "offset": 44154770, + "offset": 44373360, "size": 1300, }, "cookie.js": { - "offset": 44156070, + "offset": 44374650, "size": 2490, }, "cookie.js.map": { - "offset": 44158550, + "offset": 44377140, "size": 4050, }, "debug-build.js": { - "offset": 44162600, + "offset": 44381190, "size": 460, }, "debug-build.js.map": { - "offset": 44163060, + "offset": 44381640, "size": 620, }, "debug-ids.js": { - "offset": 44163670, + "offset": 44382260, "size": 2050, }, "debug-ids.js.map": { - "offset": 44165720, + "offset": 44384300, "size": 4240, }, "dsn.js": { - "offset": 44169960, + "offset": 44388540, "size": 3580, }, "dsn.js.map": { - "offset": 44173530, + "offset": 44392110, "size": 7340, }, "env.js": { - "offset": 44180860, + "offset": 44399450, "size": 1590, }, "env.js.map": { - "offset": 44182450, + "offset": 44401040, "size": 2080, }, "envelope.js": { - "offset": 44184520, + "offset": 44403110, "size": 7090, }, "envelope.js.map": { - "offset": 44191610, + "offset": 44410190, "size": 13860, }, "error.js": { - "offset": 44205470, + "offset": 44424050, "size": 760, }, "error.js.map": { - "offset": 44206230, + "offset": 44424810, "size": 1360, }, "eventbuilder.js": { - "offset": 44207590, + "offset": 44426170, "size": 5070, }, "eventbuilder.js.map": { - "offset": 44212650, + "offset": 44431230, "size": 10400, }, "instrument": { "files": { "console.js": { - "offset": 44223040, + "offset": 44441620, "size": 1240, }, "console.js.map": { - "offset": 44224280, + "offset": 44442860, "size": 2440, }, "fetch.js": { - "offset": 44226720, + "offset": 44445300, "size": 6990, }, "fetch.js.map": { - "offset": 44233710, + "offset": 44452290, "size": 12310, }, "globalError.js": { - "offset": 44246010, + "offset": 44464590, "size": 1330, }, "globalError.js.map": { - "offset": 44247340, + "offset": 44465920, "size": 2410, }, "globalUnhandledRejection.js": { - "offset": 44249750, + "offset": 44468330, "size": 1420, }, "globalUnhandledRejection.js.map": { - "offset": 44251160, + "offset": 44469750, "size": 2370, }, "handlers.js": { - "offset": 44253530, + "offset": 44472110, "size": 1550, }, "handlers.js.map": { - "offset": 44255080, + "offset": 44473660, "size": 3400, }, }, }, "is.js": { - "offset": 44258470, + "offset": 44477060, "size": 5210, }, "is.js.map": { - "offset": 44263670, + "offset": 44482260, "size": 8650, }, "isBrowser.js": { - "offset": 44272320, + "offset": 44490900, "size": 600, }, "isBrowser.js.map": { - "offset": 44272920, + "offset": 44491500, "size": 1080, }, "logger.js": { - "offset": 44273990, + "offset": 44492570, "size": 2200, }, "logger.js.map": { - "offset": 44276180, + "offset": 44494760, "size": 4570, }, "lru.js": { - "offset": 44280750, + "offset": 44499330, "size": 1490, }, "lru.js.map": { - "offset": 44282240, + "offset": 44500820, "size": 3190, }, "memo.js": { - "offset": 44285430, + "offset": 44504010, "size": 1180, }, "memo.js.map": { - "offset": 44286600, + "offset": 44505180, "size": 2470, }, "misc.js": { - "offset": 44289070, + "offset": 44507650, "size": 8550, }, "misc.js.map": { - "offset": 44297620, + "offset": 44516200, "size": 14530, }, "node-stack-trace.js": { - "offset": 44312140, + "offset": 44530730, "size": 3960, }, "node-stack-trace.js.map": { - "offset": 44316100, + "offset": 44534690, "size": 8800, }, "node.js": { - "offset": 44324900, + "offset": 44543480, "size": 2380, }, "node.js.map": { - "offset": 44327280, + "offset": 44545860, "size": 3440, }, "normalize.js": { - "offset": 44330720, + "offset": 44549300, "size": 10520, }, "normalize.js.map": { - "offset": 44341240, + "offset": 44559820, "size": 17160, }, "object.js": { - "offset": 44358400, + "offset": 44576980, "size": 9920, }, "object.js.map": { - "offset": 44368320, + "offset": 44586900, "size": 17060, }, "path.js": { - "offset": 44385370, + "offset": 44603960, "size": 5730, }, "path.js.map": { - "offset": 44391100, + "offset": 44609680, "size": 11000, }, "promisebuffer.js": { - "offset": 44402090, + "offset": 44620680, "size": 3550, }, "promisebuffer.js.map": { - "offset": 44405640, + "offset": 44624220, "size": 5910, }, "propagationContext.js": { - "offset": 44411550, + "offset": 44630130, "size": 610, }, "propagationContext.js.map": { - "offset": 44412150, + "offset": 44630730, "size": 1090, }, "ratelimit.js": { - "offset": 44413230, + "offset": 44631820, "size": 3720, }, "ratelimit.js.map": { - "offset": 44416950, + "offset": 44635540, "size": 6370, }, "requestdata.js": { - "offset": 44423320, + "offset": 44641900, "size": 16160, }, "requestdata.js.map": { - "offset": 44439470, + "offset": 44658050, "size": 29570, }, "severity.js": { - "offset": 44469030, + "offset": 44687620, "size": 740, }, "severity.js.map": { - "offset": 44469770, + "offset": 44688360, "size": 1250, }, "stacktrace.js": { - "offset": 44471020, + "offset": 44689610, "size": 5350, }, "stacktrace.js.map": { - "offset": 44476370, + "offset": 44694950, "size": 9090, }, "string.js": { - "offset": 44485450, + "offset": 44704030, "size": 4030, }, "string.js.map": { - "offset": 44489470, + "offset": 44708060, "size": 6980, }, "supports.js": { - "offset": 44496450, + "offset": 44715030, "size": 4300, }, "supports.js.map": { - "offset": 44500740, + "offset": 44719320, "size": 7030, }, "syncpromise.js": { - "offset": 44507770, + "offset": 44726350, "size": 4250, }, "syncpromise.js.map": { - "offset": 44512010, + "offset": 44730600, "size": 9110, }, "time.js": { - "offset": 44521110, + "offset": 44739700, "size": 5670, }, "time.js.map": { - "offset": 44526780, + "offset": 44745370, "size": 8080, }, "tracing.js": { - "offset": 44534860, + "offset": 44753440, "size": 2420, }, "tracing.js.map": { - "offset": 44537270, + "offset": 44755860, "size": 4340, }, "url.js": { - "offset": 44541610, + "offset": 44760190, "size": 2370, }, "url.js.map": { - "offset": 44543980, + "offset": 44762560, "size": 4100, }, "vendor": { "files": { "escapeStringForRegex.js": { - "offset": 44548070, + "offset": 44766660, "size": 2120, }, "escapeStringForRegex.js.map": { - "offset": 44550190, + "offset": 44768770, "size": 2560, }, "getIpAddress.js": { - "offset": 44552740, + "offset": 44771320, "size": 4860, }, "getIpAddress.js.map": { - "offset": 44557600, + "offset": 44776180, "size": 7060, }, "supportsHistory.js": { - "offset": 44564650, + "offset": 44783230, "size": 1020, }, "supportsHistory.js.map": { - "offset": 44565660, + "offset": 44784250, "size": 2760, }, }, }, "vercelWaitUntil.js": { - "offset": 44568420, + "offset": 44787000, "size": 690, }, "vercelWaitUntil.js.map": { - "offset": 44569100, + "offset": 44787690, "size": 1330, }, "version.js": { - "offset": 44570430, + "offset": 44789010, "size": 140, }, "version.js.map": { - "offset": 44570570, + "offset": 44789150, "size": 380, }, "worldwide.js": { - "offset": 44570950, + "offset": 44789530, "size": 1090, }, "worldwide.js.map": { - "offset": 44572030, + "offset": 44790620, "size": 4710, }, }, @@ -67164,277 +67164,277 @@ exports[`node_module collectors > yarn ms 2`] = ` "types": { "files": { "api.d.ts.map": { - "offset": 44683440, + "offset": 44902020, "size": 510, }, "asyncContext": { "files": { "index.d.ts.map": { - "offset": 44683950, + "offset": 44902530, "size": 370, }, "stackStrategy.d.ts.map": { - "offset": 44684310, + "offset": 44902890, "size": 850, }, "types.d.ts.map": { - "offset": 44685150, + "offset": 44903740, "size": 1330, }, }, }, "baseclient.d.ts.map": { - "offset": 44686480, + "offset": 44905060, "size": 7090, }, "breadcrumbs.d.ts.map": { - "offset": 44693560, + "offset": 44912140, "size": 270, }, "carrier.d.ts.map": { - "offset": 44693820, + "offset": 44912410, "size": 970, }, "checkin.d.ts.map": { - "offset": 44694790, + "offset": 44913370, "size": 400, }, "constants.d.ts.map": { - "offset": 44695180, + "offset": 44913760, "size": 150, }, "currentScopes.d.ts.map": { - "offset": 44695330, + "offset": 44913910, "size": 950, }, "debug-build.d.ts.map": { - "offset": 44696270, + "offset": 44914850, "size": 170, }, "defaultScopes.d.ts.map": { - "offset": 44696430, + "offset": 44915020, "size": 270, }, "envelope.d.ts.map": { - "offset": 44696700, + "offset": 44915280, "size": 910, }, "eventProcessors.d.ts.map": { - "offset": 44697600, + "offset": 44916190, "size": 370, }, "exports.d.ts.map": { - "offset": 44697970, + "offset": 44916550, "size": 2010, }, "featureFlags.d.ts.map": { - "offset": 44699970, + "offset": 44918560, "size": 230, }, "feedback.d.ts.map": { - "offset": 44700200, + "offset": 44918780, "size": 320, }, "fetch.d.ts.map": { - "offset": 44700520, + "offset": 44919100, "size": 1020, }, "getCurrentHubShim.d.ts.map": { - "offset": 44701530, + "offset": 44920120, "size": 280, }, "index.d.ts.map": { - "offset": 44701810, + "offset": 44920390, "size": 3450, }, "integration.d.ts.map": { - "offset": 44705260, + "offset": 44923840, "size": 940, }, "integrations": { "files": { "captureconsole.d.ts.map": { - "offset": 44706200, + "offset": 44924780, "size": 300, }, "debug.d.ts.map": { - "offset": 44706490, + "offset": 44925070, "size": 290, }, "dedupe.d.ts.map": { - "offset": 44706770, + "offset": 44925350, "size": 320, }, "extraerrordata.d.ts.map": { - "offset": 44707080, + "offset": 44925660, "size": 280, }, "functiontostring.d.ts.map": { - "offset": 44707360, + "offset": 44925940, "size": 200, }, "inboundfilters.d.ts.map": { - "offset": 44707550, + "offset": 44926140, "size": 480, }, "linkederrors.d.ts.map": { - "offset": 44708030, + "offset": 44926610, "size": 260, }, "metadata.d.ts.map": { - "offset": 44708280, + "offset": 44926870, "size": 180, }, "requestdata.d.ts.map": { - "offset": 44708460, + "offset": 44927050, "size": 640, }, "rewriteframes.d.ts.map": { - "offset": 44709100, + "offset": 44927690, "size": 650, }, "sessiontiming.d.ts.map": { - "offset": 44709750, + "offset": 44928330, "size": 190, }, "third-party-errors-filter.d.ts.map": { - "offset": 44709940, + "offset": 44928520, "size": 370, }, "zoderrors.d.ts.map": { - "offset": 44710300, + "offset": 44928880, "size": 420, }, }, }, "metadata.d.ts.map": { - "offset": 44710720, + "offset": 44929300, "size": 430, }, "metrics": { "files": { "aggregator.d.ts.map": { - "offset": 44711140, + "offset": 44929720, "size": 850, }, "browser-aggregator.d.ts.map": { - "offset": 44711990, + "offset": 44930570, "size": 730, }, "constants.d.ts.map": { - "offset": 44712710, + "offset": 44931300, "size": 390, }, "envelope.d.ts.map": { - "offset": 44713100, + "offset": 44931680, "size": 490, }, "exports-default.d.ts.map": { - "offset": 44713580, + "offset": 44932170, "size": 390, }, "exports.d.ts.map": { - "offset": 44713970, + "offset": 44932550, "size": 1230, }, "instance.d.ts.map": { - "offset": 44715190, + "offset": 44933770, "size": 1240, }, "metric-summary.d.ts.map": { - "offset": 44716430, + "offset": 44935010, "size": 670, }, "types.d.ts.map": { - "offset": 44717100, + "offset": 44935680, "size": 410, }, "utils.d.ts.map": { - "offset": 44717500, + "offset": 44936090, "size": 790, }, }, }, "profiling.d.ts.map": { - "offset": 44718290, + "offset": 44936870, "size": 200, }, "scope.d.ts.map": { - "offset": 44718490, + "offset": 44937070, "size": 3720, }, "sdk.d.ts.map": { - "offset": 44722200, + "offset": 44940780, "size": 500, }, "semanticAttributes.d.ts.map": { - "offset": 44722690, + "offset": 44941280, "size": 780, }, "server-runtime-client.d.ts.map": { - "offset": 44723470, + "offset": 44942050, "size": 1820, }, "session.d.ts.map": { - "offset": 44725280, + "offset": 44943860, "size": 510, }, "sessionflusher.d.ts.map": { - "offset": 44725780, + "offset": 44944360, "size": 730, }, "tracing": { "files": { "dynamicSamplingContext.d.ts.map": { - "offset": 44726510, + "offset": 44945090, "size": 710, }, "errors.d.ts.map": { - "offset": 44727210, + "offset": 44945800, "size": 220, }, "hubextensions.d.ts.map": { - "offset": 44727430, + "offset": 44946010, "size": 180, }, "idleSpan.d.ts.map": { - "offset": 44727600, + "offset": 44946190, "size": 590, }, "index.d.ts.map": { - "offset": 44728190, + "offset": 44946780, "size": 860, }, "logSpans.d.ts.map": { - "offset": 44729040, + "offset": 44947630, "size": 300, }, "measurement.d.ts.map": { - "offset": 44729340, + "offset": 44947930, "size": 410, }, "sampling.d.ts.map": { - "offset": 44729740, + "offset": 44948330, "size": 370, }, "sentryNonRecordingSpan.d.ts.map": { - "offset": 44730110, + "offset": 44948690, "size": 1080, }, "sentrySpan.d.ts.map": { - "offset": 44731190, + "offset": 44949770, "size": 1770, }, "spanstatus.d.ts.map": { - "offset": 44732950, + "offset": 44951530, "size": 440, }, "trace.d.ts.map": { - "offset": 44733390, + "offset": 44951970, "size": 1070, }, "utils.d.ts.map": { - "offset": 44734450, + "offset": 44953030, "size": 460, }, }, @@ -67442,263 +67442,263 @@ exports[`node_module collectors > yarn ms 2`] = ` "transports": { "files": { "base.d.ts.map": { - "offset": 44734910, + "offset": 44953490, "size": 420, }, "multiplexed.d.ts.map": { - "offset": 44735330, + "offset": 44953910, "size": 800, }, "offline.d.ts.map": { - "offset": 44736130, + "offset": 44954710, "size": 930, }, }, }, "trpc.d.ts.map": { - "offset": 44737060, + "offset": 44955640, "size": 550, }, "types-hoist": { "files": { "attachment.d.ts.map": { - "offset": 44737600, + "offset": 44956180, "size": 450, }, "breadcrumb.d.ts.map": { - "offset": 44738040, + "offset": 44956620, "size": 1310, }, "browseroptions.d.ts.map": { - "offset": 44739350, + "offset": 44957930, "size": 370, }, "checkin.d.ts.map": { - "offset": 44739710, + "offset": 44958290, "size": 2070, }, "client.d.ts.map": { - "offset": 44741770, + "offset": 44960360, "size": 6770, }, "clientreport.d.ts.map": { - "offset": 44748540, + "offset": 44967130, "size": 510, }, "context.d.ts.map": { - "offset": 44749050, + "offset": 44967640, "size": 4140, }, "csp.d.ts.map": { - "offset": 44753180, + "offset": 44971770, "size": 660, }, "datacategory.d.ts.map": { - "offset": 44753830, + "offset": 44972420, "size": 310, }, "debugMeta.d.ts.map": { - "offset": 44754140, + "offset": 44972720, "size": 720, }, "dsn.d.ts.map": { - "offset": 44754850, + "offset": 44973430, "size": 570, }, "envelope.d.ts.map": { - "offset": 44755410, + "offset": 44973990, "size": 5090, }, "error.d.ts.map": { - "offset": 44760500, + "offset": 44979080, "size": 210, }, "event.d.ts.map": { - "offset": 44760710, + "offset": 44979290, "size": 3130, }, "eventprocessor.d.ts.map": { - "offset": 44763830, + "offset": 44982420, "size": 380, }, "exception.d.ts.map": { - "offset": 44764200, + "offset": 44982790, "size": 450, }, "extra.d.ts.map": { - "offset": 44764640, + "offset": 44983230, "size": 220, }, "feedback": { "files": { "config.d.ts.map": { - "offset": 44764860, + "offset": 44983440, "size": 2010, }, "form.d.ts.map": { - "offset": 44766860, + "offset": 44985450, "size": 340, }, "index.d.ts.map": { - "offset": 44767200, + "offset": 44985780, "size": 1640, }, "sendFeedback.d.ts.map": { - "offset": 44768840, + "offset": 44987420, "size": 1280, }, "theme.d.ts.map": { - "offset": 44770110, + "offset": 44988690, "size": 500, }, }, }, "hub.d.ts.map": { - "offset": 44770610, + "offset": 44989190, "size": 2180, }, "index.d.ts.map": { - "offset": 44772780, + "offset": 44991370, "size": 3910, }, "instrument.d.ts.map": { - "offset": 44776690, + "offset": 44995270, "size": 2090, }, "integration.d.ts.map": { - "offset": 44778770, + "offset": 44997360, "size": 990, }, "measurement.d.ts.map": { - "offset": 44779760, + "offset": 44998340, "size": 800, }, "mechanism.d.ts.map": { - "offset": 44780560, + "offset": 44999140, "size": 560, }, "metrics.d.ts.map": { - "offset": 44781120, + "offset": 44999700, "size": 2030, }, "misc.d.ts.map": { - "offset": 44783140, + "offset": 45001720, "size": 1280, }, "opentelemetry.d.ts.map": { - "offset": 44784410, + "offset": 45002990, "size": 220, }, "options.d.ts.map": { - "offset": 44784620, + "offset": 45003210, "size": 3380, }, "package.d.ts.map": { - "offset": 44788000, + "offset": 45006580, "size": 330, }, "parameterize.d.ts.map": { - "offset": 44788320, + "offset": 45006910, "size": 260, }, "polymorphics.d.ts.map": { - "offset": 44788580, + "offset": 45007160, "size": 1740, }, "profiling.d.ts.map": { - "offset": 44790310, + "offset": 45008890, "size": 3700, }, "replay.d.ts.map": { - "offset": 44794010, + "offset": 45012590, "size": 550, }, "request.d.ts.map": { - "offset": 44794550, + "offset": 45013130, "size": 850, }, "runtime.d.ts.map": { - "offset": 44795400, + "offset": 45013980, "size": 230, }, "samplingcontext.d.ts.map": { - "offset": 44795620, + "offset": 45014200, "size": 800, }, "scope.d.ts.map": { - "offset": 44796410, + "offset": 45014990, "size": 4050, }, "sdkinfo.d.ts.map": { - "offset": 44800460, + "offset": 45019040, "size": 330, }, "sdkmetadata.d.ts.map": { - "offset": 44800790, + "offset": 45019370, "size": 240, }, "session.d.ts.map": { - "offset": 44801020, + "offset": 45019600, "size": 1850, }, "severity.d.ts.map": { - "offset": 44802870, + "offset": 45021450, "size": 220, }, "span.d.ts.map": { - "offset": 44803080, + "offset": 45021660, "size": 3920, }, "spanStatus.d.ts.map": { - "offset": 44806990, + "offset": 45025580, "size": 890, }, "stackframe.d.ts.map": { - "offset": 44807880, + "offset": 45026460, "size": 720, }, "stacktrace.d.ts.map": { - "offset": 44808590, + "offset": 45027180, "size": 550, }, "startSpanOptions.d.ts.map": { - "offset": 44809140, + "offset": 45027720, "size": 730, }, "thread.d.ts.map": { - "offset": 44809870, + "offset": 45028450, "size": 360, }, "timedEvent.d.ts.map": { - "offset": 44810230, + "offset": 45028810, "size": 300, }, "tracing.d.ts.map": { - "offset": 44810520, + "offset": 45029110, "size": 610, }, "transaction.d.ts.map": { - "offset": 44811130, + "offset": 45029720, "size": 510, }, "transport.d.ts.map": { - "offset": 44811640, + "offset": 45030220, "size": 970, }, "user.d.ts.map": { - "offset": 44812600, + "offset": 45031190, "size": 480, }, "view-hierarchy.d.ts.map": { - "offset": 44813080, + "offset": 45031670, "size": 640, }, "webfetchapi.d.ts.map": { - "offset": 44813720, + "offset": 45032300, "size": 710, }, "wrappedfunction.d.ts.map": { - "offset": 44814430, + "offset": 45033010, "size": 350, }, }, @@ -67706,55 +67706,55 @@ exports[`node_module collectors > yarn ms 2`] = ` "utils": { "files": { "applyScopeDataToEvent.d.ts.map": { - "offset": 44851530, + "offset": 45070120, "size": 740, }, "handleCallbackErrors.d.ts.map": { - "offset": 44852270, + "offset": 45070850, "size": 340, }, "hasTracingEnabled.d.ts.map": { - "offset": 44852600, + "offset": 45071190, "size": 320, }, "isSentryRequestUrl.d.ts.map": { - "offset": 44852920, + "offset": 45071500, "size": 290, }, "merge.d.ts.map": { - "offset": 44853210, + "offset": 45071790, "size": 230, }, "meta.d.ts.map": { - "offset": 44853440, + "offset": 45072020, "size": 180, }, "parameterize.d.ts.map": { - "offset": 44853620, + "offset": 45072200, "size": 290, }, "parseSampleRate.d.ts.map": { - "offset": 44853900, + "offset": 45072480, "size": 220, }, "prepareEvent.d.ts.map": { - "offset": 44854110, + "offset": 45072700, "size": 1020, }, "sdkMetadata.d.ts.map": { - "offset": 44855130, + "offset": 45073710, "size": 310, }, "spanOnScope.d.ts.map": { - "offset": 44855430, + "offset": 45074020, "size": 490, }, "spanUtils.d.ts.map": { - "offset": 44855910, + "offset": 45074500, "size": 2000, }, "traceData.d.ts.map": { - "offset": 44857910, + "offset": 45076500, "size": 290, }, }, @@ -67762,251 +67762,251 @@ exports[`node_module collectors > yarn ms 2`] = ` "utils-hoist": { "files": { "aggregate-errors.d.ts.map": { - "offset": 44814780, + "offset": 45033360, "size": 460, }, "anr.d.ts.map": { - "offset": 44815240, + "offset": 45033820, "size": 910, }, "array.d.ts.map": { - "offset": 44816150, + "offset": 45034730, "size": 310, }, "baggage.d.ts.map": { - "offset": 44816450, + "offset": 45035030, "size": 760, }, "breadcrumb-log-level.d.ts.map": { - "offset": 44817200, + "offset": 45035790, "size": 290, }, "browser.d.ts.map": { - "offset": 44817490, + "offset": 45036070, "size": 540, }, "buildPolyfills": { "files": { "_asyncNullishCoalesce.d.ts.map": { - "offset": 44818020, + "offset": 45036600, "size": 290, }, "_asyncOptionalChain.d.ts.map": { - "offset": 44818310, + "offset": 45036890, "size": 270, }, "_asyncOptionalChainDelete.d.ts.map": { - "offset": 44818570, + "offset": 45037150, "size": 280, }, "_nullishCoalesce.d.ts.map": { - "offset": 44818850, + "offset": 45037430, "size": 270, }, "_optionalChain.d.ts.map": { - "offset": 44819110, + "offset": 45037690, "size": 240, }, "_optionalChainDelete.d.ts.map": { - "offset": 44819340, + "offset": 45037930, "size": 250, }, "index.d.ts.map": { - "offset": 44819590, + "offset": 45038180, "size": 410, }, "types.d.ts.map": { - "offset": 44820000, + "offset": 45038580, "size": 460, }, }, }, "cache.d.ts.map": { - "offset": 44820450, + "offset": 45039040, "size": 470, }, "clientreport.d.ts.map": { - "offset": 44820920, + "offset": 45039500, "size": 340, }, "cookie.d.ts.map": { - "offset": 44821260, + "offset": 45039840, "size": 260, }, "debug-build.d.ts.map": { - "offset": 44821510, + "offset": 45040090, "size": 180, }, "debug-ids.d.ts.map": { - "offset": 44821680, + "offset": 45040270, "size": 390, }, "dsn.d.ts.map": { - "offset": 44822070, + "offset": 45040650, "size": 420, }, "env.d.ts.map": { - "offset": 44822490, + "offset": 45041070, "size": 270, }, "envelope.d.ts.map": { - "offset": 44822750, + "offset": 45041340, "size": 1540, }, "error.d.ts.map": { - "offset": 44824290, + "offset": 45042870, "size": 350, }, "eventbuilder.d.ts.map": { - "offset": 44824630, + "offset": 45043220, "size": 740, }, "index.d.ts.map": { - "offset": 44825370, + "offset": 45043950, "size": 4020, }, "instrument": { "files": { "console.d.ts.map": { - "offset": 44829380, + "offset": 45047970, "size": 290, }, "fetch.d.ts.map": { - "offset": 44829670, + "offset": 45048250, "size": 540, }, "globalError.d.ts.map": { - "offset": 44830200, + "offset": 45048780, "size": 300, }, "globalUnhandledRejection.d.ts.map": { - "offset": 44830490, + "offset": 45049080, "size": 320, }, "handlers.d.ts.map": { - "offset": 44830810, + "offset": 45049400, "size": 640, }, }, }, "is.d.ts.map": { - "offset": 44831450, + "offset": 45050030, "size": 1360, }, "isBrowser.d.ts.map": { - "offset": 44832800, + "offset": 45051390, "size": 180, }, "logger.d.ts.map": { - "offset": 44832980, + "offset": 45051560, "size": 720, }, "lru.d.ts.map": { - "offset": 44833700, + "offset": 45052280, "size": 640, }, "memo.d.ts.map": { - "offset": 44834330, + "offset": 45052920, "size": 280, }, "misc.d.ts.map": { - "offset": 44834610, + "offset": 45053190, "size": 1090, }, "node-stack-trace.d.ts.map": { - "offset": 44835700, + "offset": 45054280, "size": 520, }, "node.d.ts.map": { - "offset": 44836220, + "offset": 45054800, "size": 360, }, "normalize.d.ts.map": { - "offset": 44836570, + "offset": 45055160, "size": 510, }, "object.d.ts.map": { - "offset": 44837080, + "offset": 45055660, "size": 1430, }, "path.d.ts.map": { - "offset": 44838500, + "offset": 45057090, "size": 640, }, "promisebuffer.d.ts.map": { - "offset": 44839140, + "offset": 45057720, "size": 480, }, "propagationContext.d.ts.map": { - "offset": 44839610, + "offset": 45058190, "size": 340, }, "ratelimit.d.ts.map": { - "offset": 44839940, + "offset": 45058530, "size": 710, }, "requestdata.d.ts.map": { - "offset": 44840650, + "offset": 45059230, "size": 2380, }, "severity.d.ts.map": { - "offset": 44843020, + "offset": 45061600, "size": 300, }, "stacktrace.d.ts.map": { - "offset": 44843320, + "offset": 45061900, "size": 650, }, "string.d.ts.map": { - "offset": 44843960, + "offset": 45062540, "size": 720, }, "supports.d.ts.map": { - "offset": 44844670, + "offset": 45063250, "size": 580, }, "syncpromise.d.ts.map": { - "offset": 44845250, + "offset": 45063830, "size": 1500, }, "time.d.ts.map": { - "offset": 44846750, + "offset": 45065330, "size": 330, }, "tracing.d.ts.map": { - "offset": 44847070, + "offset": 45065660, "size": 580, }, "url.d.ts.map": { - "offset": 44847650, + "offset": 45066230, "size": 610, }, "vendor": { "files": { "escapeStringForRegex.d.ts.map": { - "offset": 44848260, + "offset": 45066840, "size": 240, }, "getIpAddress.d.ts.map": { - "offset": 44848490, + "offset": 45067070, "size": 330, }, "supportsHistory.d.ts.map": { - "offset": 44848820, + "offset": 45067400, "size": 200, }, }, }, "vercelWaitUntil.d.ts.map": { - "offset": 44849010, + "offset": 45067600, "size": 230, }, "version.d.ts.map": { - "offset": 44849240, + "offset": 45067820, "size": 160, }, "worldwide.d.ts.map": { - "offset": 44849390, + "offset": 45067980, "size": 2140, }, }, @@ -68016,7 +68016,7 @@ exports[`node_module collectors > yarn ms 2`] = ` }, }, "package.json": { - "offset": 44858200, + "offset": 45076780, "size": 1220, }, }, @@ -68024,45 +68024,45 @@ exports[`node_module collectors > yarn ms 2`] = ` "electron": { "files": { "LICENSE": { - "offset": 44859410, + "offset": 45077990, "size": 1130, }, "common": { "files": { "envelope.d.ts.map": { - "offset": 44860530, + "offset": 45079120, "size": 320, }, "envelope.js": { - "offset": 44860850, + "offset": 45079430, "size": 1020, }, "envelope.js.map": { - "offset": 44861860, + "offset": 45080440, "size": 1990, }, "ipc.d.ts.map": { - "offset": 44863850, + "offset": 45082430, "size": 1660, }, "ipc.js": { - "offset": 44865510, + "offset": 45084090, "size": 2130, }, "ipc.js.map": { - "offset": 44867630, + "offset": 45086220, "size": 4210, }, "scope.d.ts.map": { - "offset": 44871840, + "offset": 45090420, "size": 330, }, "scope.js": { - "offset": 44872160, + "offset": 45090740, "size": 1140, }, "scope.js.map": { - "offset": 44873290, + "offset": 45091880, "size": 2130, }, }, @@ -68072,299 +68072,299 @@ exports[`node_module collectors > yarn ms 2`] = ` "common": { "files": { "envelope.d.ts.map": { - "offset": 44875420, + "offset": 45094000, "size": 320, }, "envelope.js": { - "offset": 44875740, + "offset": 45094320, "size": 1010, }, "envelope.js.map": { - "offset": 44876740, + "offset": 45095320, "size": 1970, }, "ipc.d.ts.map": { - "offset": 44878710, + "offset": 45097290, "size": 1660, }, "ipc.js": { - "offset": 44880370, + "offset": 45098950, "size": 2000, }, "ipc.js.map": { - "offset": 44882360, + "offset": 45100950, "size": 4180, }, "scope.d.ts.map": { - "offset": 44886530, + "offset": 45105120, "size": 330, }, "scope.js": { - "offset": 44886860, + "offset": 45105440, "size": 1120, }, "scope.js.map": { - "offset": 44887980, + "offset": 45106560, "size": 2040, }, }, }, "index.d.ts.map": { - "offset": 44890010, + "offset": 45108600, "size": 130, }, "index.js": { - "offset": 44890140, + "offset": 45108720, "size": 390, }, "index.js.map": { - "offset": 44890520, + "offset": 45109100, "size": 530, }, "main": { "files": { "anr.d.ts.map": { - "offset": 44891050, + "offset": 45109630, "size": 290, }, "anr.js": { - "offset": 44891330, + "offset": 45109920, "size": 4750, }, "anr.js.map": { - "offset": 44896080, + "offset": 45114660, "size": 8860, }, "context.d.ts.map": { - "offset": 44904930, + "offset": 45123510, "size": 470, }, "context.js": { - "offset": 44905390, + "offset": 45123980, "size": 1240, }, "context.js.map": { - "offset": 44906630, + "offset": 45125210, "size": 2250, }, "electron-normalize.d.ts.map": { - "offset": 44908880, + "offset": 45127460, "size": 680, }, "electron-normalize.js": { - "offset": 44909550, + "offset": 45128130, "size": 2330, }, "electron-normalize.js.map": { - "offset": 44911880, + "offset": 45130460, "size": 4100, }, "index.d.ts.map": { - "offset": 44915970, + "offset": 45134560, "size": 2760, }, "index.js": { - "offset": 44918730, + "offset": 45137310, "size": 3980, }, "index.js.map": { - "offset": 44922700, + "offset": 45141280, "size": 110, }, "integrations": { "files": { "additional-context.d.ts.map": { - "offset": 44922810, + "offset": 45141390, "size": 260, }, "additional-context.js": { - "offset": 44923060, + "offset": 45141640, "size": 1630, }, "additional-context.js.map": { - "offset": 44924690, + "offset": 45143270, "size": 2970, }, "anr.d.ts.map": { - "offset": 44927660, + "offset": 45146240, "size": 360, }, "anr.js": { - "offset": 44928020, + "offset": 45146600, "size": 1220, }, "anr.js.map": { - "offset": 44929240, + "offset": 45147820, "size": 2190, }, "browser-window-session.d.ts.map": { - "offset": 44931420, + "offset": 45150000, "size": 290, }, "browser-window-session.js": { - "offset": 44931700, + "offset": 45150280, "size": 3210, }, "browser-window-session.js.map": { - "offset": 44934910, + "offset": 45153490, "size": 5210, }, "child-process.d.ts.map": { - "offset": 44940110, + "offset": 45158700, "size": 490, }, "child-process.js": { - "offset": 44940600, + "offset": 45159180, "size": 3580, }, "child-process.js.map": { - "offset": 44944170, + "offset": 45162750, "size": 6350, }, "electron-breadcrumbs.d.ts.map": { - "offset": 44950520, + "offset": 45169100, "size": 800, }, "electron-breadcrumbs.js": { - "offset": 44951310, + "offset": 45169890, "size": 4290, }, "electron-breadcrumbs.js.map": { - "offset": 44955590, + "offset": 45174180, "size": 9330, }, "electron-context.d.ts.map": { - "offset": 44964920, + "offset": 45183500, "size": 190, }, "electron-context.js": { - "offset": 44965100, + "offset": 45183680, "size": 3220, }, "electron-context.js.map": { - "offset": 44968320, + "offset": 45186900, "size": 4880, }, "electron-minidump.d.ts.map": { - "offset": 44973200, + "offset": 45191780, "size": 280, }, "electron-minidump.js": { - "offset": 44973470, + "offset": 45192050, "size": 7140, }, "electron-minidump.js.map": { - "offset": 44980610, + "offset": 45199190, "size": 11560, }, "main-process-session.d.ts.map": { - "offset": 44992170, + "offset": 45210750, "size": 280, }, "main-process-session.js": { - "offset": 44992440, + "offset": 45211030, "size": 510, }, "main-process-session.js.map": { - "offset": 44992950, + "offset": 45211530, "size": 960, }, "net-breadcrumbs.d.ts.map": { - "offset": 44993910, + "offset": 45212490, "size": 400, }, "net-breadcrumbs.js": { - "offset": 44994310, + "offset": 45212890, "size": 7790, }, "net-breadcrumbs.js.map": { - "offset": 45002090, + "offset": 45220670, "size": 14190, }, "normalize-paths.d.ts.map": { - "offset": 45016270, + "offset": 45234860, "size": 190, }, "normalize-paths.js": { - "offset": 45016450, + "offset": 45235040, "size": 440, }, "normalize-paths.js.map": { - "offset": 45016890, + "offset": 45235470, "size": 690, }, "onuncaughtexception.d.ts.map": { - "offset": 45017580, + "offset": 45236160, "size": 210, }, "onuncaughtexception.js": { - "offset": 45017780, + "offset": 45236360, "size": 2050, }, "onuncaughtexception.js.map": { - "offset": 45019830, + "offset": 45238410, "size": 3060, }, "preload-injection.d.ts.map": { - "offset": 45022880, + "offset": 45241460, "size": 200, }, "preload-injection.js": { - "offset": 45023080, + "offset": 45241660, "size": 2170, }, "preload-injection.js.map": { - "offset": 45025250, + "offset": 45243830, "size": 3280, }, "renderer-profiling.d.ts.map": { - "offset": 45028520, + "offset": 45247100, "size": 340, }, "renderer-profiling.js": { - "offset": 45028860, + "offset": 45247440, "size": 3780, }, "renderer-profiling.js.map": { - "offset": 45032640, + "offset": 45251220, "size": 6010, }, "screenshots.d.ts.map": { - "offset": 45038640, + "offset": 45257230, "size": 190, }, "screenshots.js": { - "offset": 45038830, + "offset": 45257410, "size": 1690, }, "screenshots.js.map": { - "offset": 45040520, + "offset": 45259100, "size": 2610, }, "sentry-minidump": { "files": { "index.d.ts.map": { - "offset": 45043120, + "offset": 45261710, "size": 260, }, "index.js": { - "offset": 45043380, + "offset": 45261970, "size": 8720, }, "index.js.map": { - "offset": 45052090, + "offset": 45270680, "size": 13490, }, "minidump-loader.d.ts.map": { - "offset": 45065580, + "offset": 45284160, "size": 590, }, "minidump-loader.js": { - "offset": 45066160, + "offset": 45284750, "size": 9010, }, "minidump-loader.js.map": { - "offset": 45075170, + "offset": 45293750, "size": 14730, }, }, @@ -68372,191 +68372,191 @@ exports[`node_module collectors > yarn ms 2`] = ` }, }, "ipc.d.ts.map": { - "offset": 45089890, + "offset": 45308470, "size": 220, }, "ipc.js": { - "offset": 45090110, + "offset": 45308690, "size": 9160, }, "ipc.js.map": { - "offset": 45099260, + "offset": 45317840, "size": 16600, }, "merge.d.ts.map": { - "offset": 45115850, + "offset": 45334440, "size": 240, }, "merge.js": { - "offset": 45116090, + "offset": 45334680, "size": 1280, }, "merge.js.map": { - "offset": 45117370, + "offset": 45335950, "size": 2010, }, "mutex.d.ts.map": { - "offset": 45119370, + "offset": 45337950, "size": 520, }, "mutex.js": { - "offset": 45119890, + "offset": 45338470, "size": 2010, }, "mutex.js.map": { - "offset": 45121900, + "offset": 45340480, "size": 4870, }, "normalize.d.ts.map": { - "offset": 45126760, + "offset": 45345340, "size": 450, }, "normalize.js": { - "offset": 45127200, + "offset": 45345790, "size": 3310, }, "normalize.js.map": { - "offset": 45130510, + "offset": 45349090, "size": 5860, }, "renderers.d.ts.map": { - "offset": 45136370, + "offset": 45354950, "size": 360, }, "renderers.js": { - "offset": 45136720, + "offset": 45355310, "size": 1550, }, "renderers.js.map": { - "offset": 45138270, + "offset": 45356860, "size": 3030, }, "sdk.d.ts.map": { - "offset": 45141300, + "offset": 45359880, "size": 1000, }, "sdk.js": { - "offset": 45142300, + "offset": 45360880, "size": 5390, }, "sdk.js.map": { - "offset": 45147680, + "offset": 45366260, "size": 9760, }, "sessions.d.ts.map": { - "offset": 45157430, + "offset": 45376020, "size": 820, }, "sessions.js": { - "offset": 45158240, + "offset": 45376830, "size": 8070, }, "sessions.js.map": { - "offset": 45166310, + "offset": 45384890, "size": 13580, }, "stack-parse.d.ts.map": { - "offset": 45179880, + "offset": 45398470, "size": 210, }, "stack-parse.js": { - "offset": 45180090, + "offset": 45398670, "size": 430, }, "stack-parse.js.map": { - "offset": 45180510, + "offset": 45399090, "size": 630, }, "store.d.ts.map": { - "offset": 45181140, + "offset": 45399720, "size": 1110, }, "store.js": { - "offset": 45182240, + "offset": 45400820, "size": 4690, }, "store.js.map": { - "offset": 45186930, + "offset": 45405510, "size": 7580, }, "transports": { "files": { "electron-net.d.ts.map": { - "offset": 45194500, + "offset": 45413080, "size": 500, }, "electron-net.js": { - "offset": 45195000, + "offset": 45413580, "size": 3250, }, "electron-net.js.map": { - "offset": 45198250, + "offset": 45416830, "size": 6020, }, "electron-offline-net.d.ts.map": { - "offset": 45204260, + "offset": 45422850, "size": 680, }, "electron-offline-net.js": { - "offset": 45204940, + "offset": 45423520, "size": 1790, }, "electron-offline-net.js.map": { - "offset": 45206730, + "offset": 45425310, "size": 3570, }, "offline-store.d.ts.map": { - "offset": 45210290, + "offset": 45428870, "size": 410, }, "offline-store.js": { - "offset": 45210700, + "offset": 45429280, "size": 3530, }, "offline-store.js.map": { - "offset": 45214220, + "offset": 45432810, "size": 7080, }, }, }, "utility-processes.d.ts.map": { - "offset": 45221300, + "offset": 45439880, "size": 190, }, "utility-processes.js": { - "offset": 45221480, + "offset": 45440060, "size": 3940, }, "utility-processes.js.map": { - "offset": 45225420, + "offset": 45444000, "size": 6100, }, "version.d.ts.map": { - "offset": 45231510, + "offset": 45450090, "size": 150, }, "version.js": { - "offset": 45231650, + "offset": 45450240, "size": 100, }, "version.js.map": { - "offset": 45231740, + "offset": 45450330, "size": 190, }, }, }, "package.json": { - "offset": 45231920, + "offset": 45450510, "size": 20, }, "preload": { "files": { "index.js": { - "offset": 45231940, + "offset": 45450530, "size": 2670, }, "index.js.map": { - "offset": 45234610, + "offset": 45453190, "size": 6160, }, }, @@ -68564,103 +68564,103 @@ exports[`node_module collectors > yarn ms 2`] = ` "renderer": { "files": { "anr.d.ts.map": { - "offset": 45240760, + "offset": 45459340, "size": 240, }, "anr.js": { - "offset": 45241000, + "offset": 45459580, "size": 700, }, "anr.js.map": { - "offset": 45241690, + "offset": 45460280, "size": 1480, }, "index.d.ts.map": { - "offset": 45243170, + "offset": 45461760, "size": 1780, }, "index.js": { - "offset": 45244950, + "offset": 45463540, "size": 2480, }, "index.js.map": { - "offset": 45247430, + "offset": 45466010, "size": 100, }, "integrations": { "files": { "scope-to-main.d.ts.map": { - "offset": 45247520, + "offset": 45466100, "size": 200, }, "scope-to-main.js": { - "offset": 45247710, + "offset": 45466300, "size": 700, }, "scope-to-main.js.map": { - "offset": 45248410, + "offset": 45466990, "size": 1130, }, }, }, "ipc.d.ts.map": { - "offset": 45249530, + "offset": 45468110, "size": 200, }, "ipc.js": { - "offset": 45249730, + "offset": 45468310, "size": 3290, }, "ipc.js.map": { - "offset": 45253010, + "offset": 45471590, "size": 5160, }, "metrics.d.ts.map": { - "offset": 45258170, + "offset": 45476750, "size": 1040, }, "metrics.js": { - "offset": 45259200, + "offset": 45477780, "size": 2430, }, "metrics.js.map": { - "offset": 45261630, + "offset": 45480210, "size": 5080, }, "sdk.d.ts.map": { - "offset": 45266700, + "offset": 45485280, "size": 760, }, "sdk.js": { - "offset": 45267450, + "offset": 45486040, "size": 2850, }, "sdk.js.map": { - "offset": 45270300, + "offset": 45488880, "size": 5180, }, "stack-parse.d.ts.map": { - "offset": 45275480, + "offset": 45494060, "size": 220, }, "stack-parse.js": { - "offset": 45275700, + "offset": 45494280, "size": 1120, }, "stack-parse.js.map": { - "offset": 45276810, + "offset": 45495390, "size": 1940, }, "transport.d.ts.map": { - "offset": 45278740, + "offset": 45497320, "size": 250, }, "transport.js": { - "offset": 45278990, + "offset": 45497570, "size": 580, }, "transport.js.map": { - "offset": 45279560, + "offset": 45498140, "size": 1070, }, }, @@ -68668,39 +68668,39 @@ exports[`node_module collectors > yarn ms 2`] = ` "utility": { "files": { "index.d.ts.map": { - "offset": 45280630, + "offset": 45499210, "size": 1950, }, "index.js": { - "offset": 45282580, + "offset": 45501160, "size": 2650, }, "index.js.map": { - "offset": 45285220, + "offset": 45503810, "size": 100, }, "sdk.d.ts.map": { - "offset": 45285320, + "offset": 45503900, "size": 360, }, "sdk.js": { - "offset": 45285680, + "offset": 45504260, "size": 2410, }, "sdk.js.map": { - "offset": 45288090, + "offset": 45506670, "size": 3650, }, "transport.d.ts.map": { - "offset": 45291730, + "offset": 45510310, "size": 250, }, "transport.js": { - "offset": 45291980, + "offset": 45510560, "size": 2430, }, "transport.js.map": { - "offset": 45294410, + "offset": 45512990, "size": 3940, }, }, @@ -68708,261 +68708,261 @@ exports[`node_module collectors > yarn ms 2`] = ` }, }, "index.d.ts.map": { - "offset": 45298350, + "offset": 45516930, "size": 120, }, "index.js": { - "offset": 45298470, + "offset": 45517050, "size": 390, }, "index.js.map": { - "offset": 45298850, + "offset": 45517440, "size": 540, }, "main": { "files": { "anr.d.ts.map": { - "offset": 45299380, + "offset": 45517970, "size": 290, }, "anr.js": { - "offset": 45299670, + "offset": 45518250, "size": 4720, }, "anr.js.map": { - "offset": 45304380, + "offset": 45522960, "size": 9030, }, "context.d.ts.map": { - "offset": 45313400, + "offset": 45531980, "size": 460, }, "context.js": { - "offset": 45313860, + "offset": 45532440, "size": 1410, }, "context.js.map": { - "offset": 45315270, + "offset": 45533850, "size": 2280, }, "electron-normalize.d.ts.map": { - "offset": 45317550, + "offset": 45536130, "size": 680, }, "electron-normalize.js": { - "offset": 45318220, + "offset": 45536810, "size": 2500, }, "electron-normalize.js.map": { - "offset": 45320720, + "offset": 45539300, "size": 4160, }, "index.d.ts.map": { - "offset": 45324880, + "offset": 45543460, "size": 2750, }, "index.js": { - "offset": 45327630, + "offset": 45546210, "size": 9470, }, "index.js.map": { - "offset": 45337100, + "offset": 45555680, "size": 260, }, "integrations": { "files": { "additional-context.d.ts.map": { - "offset": 45337350, + "offset": 45555940, "size": 250, }, "additional-context.js": { - "offset": 45337600, + "offset": 45556190, "size": 1670, }, "additional-context.js.map": { - "offset": 45339270, + "offset": 45557850, "size": 3010, }, "anr.d.ts.map": { - "offset": 45342270, + "offset": 45560850, "size": 360, }, "anr.js": { - "offset": 45342630, + "offset": 45561210, "size": 1260, }, "anr.js.map": { - "offset": 45343880, + "offset": 45562460, "size": 2260, }, "browser-window-session.d.ts.map": { - "offset": 45346140, + "offset": 45564720, "size": 280, }, "browser-window-session.js": { - "offset": 45346410, + "offset": 45565000, "size": 3240, }, "browser-window-session.js.map": { - "offset": 45349650, + "offset": 45568230, "size": 5310, }, "child-process.d.ts.map": { - "offset": 45354960, + "offset": 45573540, "size": 480, }, "child-process.js": { - "offset": 45355430, + "offset": 45574020, "size": 3630, }, "child-process.js.map": { - "offset": 45359060, + "offset": 45577640, "size": 6440, }, "electron-breadcrumbs.d.ts.map": { - "offset": 45365490, + "offset": 45584080, "size": 790, }, "electron-breadcrumbs.js": { - "offset": 45366280, + "offset": 45584870, "size": 4350, }, "electron-breadcrumbs.js.map": { - "offset": 45370630, + "offset": 45589210, "size": 9470, }, "electron-context.d.ts.map": { - "offset": 45380090, + "offset": 45598680, "size": 190, }, "electron-context.js": { - "offset": 45380280, + "offset": 45598860, "size": 3270, }, "electron-context.js.map": { - "offset": 45383540, + "offset": 45602120, "size": 4980, }, "electron-minidump.d.ts.map": { - "offset": 45388510, + "offset": 45607090, "size": 280, }, "electron-minidump.js": { - "offset": 45388780, + "offset": 45607370, "size": 7250, }, "electron-minidump.js.map": { - "offset": 45396030, + "offset": 45614610, "size": 11920, }, "main-process-session.d.ts.map": { - "offset": 45407950, + "offset": 45626530, "size": 280, }, "main-process-session.js": { - "offset": 45408220, + "offset": 45626800, "size": 530, }, "main-process-session.js.map": { - "offset": 45408750, + "offset": 45627330, "size": 1020, }, "net-breadcrumbs.d.ts.map": { - "offset": 45409760, + "offset": 45628350, "size": 400, }, "net-breadcrumbs.js": { - "offset": 45410160, + "offset": 45628740, "size": 7820, }, "net-breadcrumbs.js.map": { - "offset": 45417970, + "offset": 45636560, "size": 14690, }, "normalize-paths.d.ts.map": { - "offset": 45432660, + "offset": 45651240, "size": 180, }, "normalize-paths.js": { - "offset": 45432840, + "offset": 45651420, "size": 480, }, "normalize-paths.js.map": { - "offset": 45433310, + "offset": 45651890, "size": 740, }, "onuncaughtexception.d.ts.map": { - "offset": 45434050, + "offset": 45652630, "size": 200, }, "onuncaughtexception.js": { - "offset": 45434250, + "offset": 45652830, "size": 2070, }, "onuncaughtexception.js.map": { - "offset": 45436320, + "offset": 45654900, "size": 3110, }, "preload-injection.d.ts.map": { - "offset": 45439420, + "offset": 45658000, "size": 200, }, "preload-injection.js": { - "offset": 45439610, + "offset": 45658200, "size": 2580, }, "preload-injection.js.map": { - "offset": 45442190, + "offset": 45660770, "size": 3380, }, "renderer-profiling.d.ts.map": { - "offset": 45445560, + "offset": 45664140, "size": 340, }, "renderer-profiling.js": { - "offset": 45445900, + "offset": 45664480, "size": 3830, }, "renderer-profiling.js.map": { - "offset": 45449720, + "offset": 45668300, "size": 6140, }, "screenshots.d.ts.map": { - "offset": 45455860, + "offset": 45674440, "size": 190, }, "screenshots.js": { - "offset": 45456040, + "offset": 45674620, "size": 1710, }, "screenshots.js.map": { - "offset": 45457740, + "offset": 45676330, "size": 2660, }, "sentry-minidump": { "files": { "index.d.ts.map": { - "offset": 45460400, + "offset": 45678980, "size": 260, }, "index.js": { - "offset": 45460660, + "offset": 45679240, "size": 8750, }, "index.js.map": { - "offset": 45469410, + "offset": 45687990, "size": 13940, }, "minidump-loader.d.ts.map": { - "offset": 45483340, + "offset": 45701920, "size": 590, }, "minidump-loader.js": { - "offset": 45483920, + "offset": 45702510, "size": 9230, }, "minidump-loader.js.map": { - "offset": 45493150, + "offset": 45711730, "size": 14830, }, }, @@ -68970,191 +68970,191 @@ exports[`node_module collectors > yarn ms 2`] = ` }, }, "ipc.d.ts.map": { - "offset": 45507970, + "offset": 45726560, "size": 220, }, "ipc.js": { - "offset": 45508190, + "offset": 45726770, "size": 9320, }, "ipc.js.map": { - "offset": 45517510, + "offset": 45736090, "size": 17020, }, "merge.d.ts.map": { - "offset": 45534530, + "offset": 45753110, "size": 240, }, "merge.js": { - "offset": 45534760, + "offset": 45753340, "size": 1290, }, "merge.js.map": { - "offset": 45536050, + "offset": 45754630, "size": 2010, }, "mutex.d.ts.map": { - "offset": 45538050, + "offset": 45756640, "size": 520, }, "mutex.js": { - "offset": 45538570, + "offset": 45757150, "size": 2020, }, "mutex.js.map": { - "offset": 45540580, + "offset": 45759170, "size": 4870, }, "normalize.d.ts.map": { - "offset": 45545450, + "offset": 45764030, "size": 440, }, "normalize.js": { - "offset": 45545890, + "offset": 45764470, "size": 3370, }, "normalize.js.map": { - "offset": 45549260, + "offset": 45767840, "size": 5980, }, "renderers.d.ts.map": { - "offset": 45555240, + "offset": 45773820, "size": 350, }, "renderers.js": { - "offset": 45555590, + "offset": 45774170, "size": 1630, }, "renderers.js.map": { - "offset": 45557210, + "offset": 45775790, "size": 3060, }, "sdk.d.ts.map": { - "offset": 45560260, + "offset": 45778840, "size": 1000, }, "sdk.js": { - "offset": 45561260, + "offset": 45779840, "size": 5220, }, "sdk.js.map": { - "offset": 45566480, + "offset": 45785060, "size": 10730, }, "sessions.d.ts.map": { - "offset": 45577200, + "offset": 45795780, "size": 810, }, "sessions.js": { - "offset": 45578010, + "offset": 45796590, "size": 8450, }, "sessions.js.map": { - "offset": 45586460, + "offset": 45805040, "size": 13770, }, "stack-parse.d.ts.map": { - "offset": 45600220, + "offset": 45818810, "size": 200, }, "stack-parse.js": { - "offset": 45600420, + "offset": 45819010, "size": 420, }, "stack-parse.js.map": { - "offset": 45600840, + "offset": 45819420, "size": 710, }, "store.d.ts.map": { - "offset": 45601550, + "offset": 45820130, "size": 1100, }, "store.js": { - "offset": 45602650, + "offset": 45821230, "size": 4750, }, "store.js.map": { - "offset": 45607400, + "offset": 45825980, "size": 7630, }, "transports": { "files": { "electron-net.d.ts.map": { - "offset": 45615020, + "offset": 45833600, "size": 500, }, "electron-net.js": { - "offset": 45615520, + "offset": 45834100, "size": 3340, }, "electron-net.js.map": { - "offset": 45618850, + "offset": 45837430, "size": 6110, }, "electron-offline-net.d.ts.map": { - "offset": 45624950, + "offset": 45843540, "size": 680, }, "electron-offline-net.js": { - "offset": 45625630, + "offset": 45844210, "size": 1820, }, "electron-offline-net.js.map": { - "offset": 45627450, + "offset": 45846030, "size": 3640, }, "offline-store.d.ts.map": { - "offset": 45631080, + "offset": 45849660, "size": 410, }, "offline-store.js": { - "offset": 45631490, + "offset": 45850070, "size": 3580, }, "offline-store.js.map": { - "offset": 45635060, + "offset": 45853640, "size": 7180, }, }, }, "utility-processes.d.ts.map": { - "offset": 45642230, + "offset": 45860810, "size": 180, }, "utility-processes.js": { - "offset": 45642410, + "offset": 45860990, "size": 4260, }, "utility-processes.js.map": { - "offset": 45646670, + "offset": 45865250, "size": 6280, }, "version.d.ts.map": { - "offset": 45652940, + "offset": 45871530, "size": 150, }, "version.js": { - "offset": 45653080, + "offset": 45871670, "size": 110, }, "version.js.map": { - "offset": 45653190, + "offset": 45871770, "size": 190, }, }, }, "package.json": { - "offset": 45653370, + "offset": 45871950, "size": 2070, }, "preload": { "files": { "index.js": { - "offset": 45655430, + "offset": 45874010, "size": 2730, }, "index.js.map": { - "offset": 45658150, + "offset": 45876740, "size": 6200, }, }, @@ -69162,103 +69162,103 @@ exports[`node_module collectors > yarn ms 2`] = ` "renderer": { "files": { "anr.d.ts.map": { - "offset": 45664350, + "offset": 45882930, "size": 240, }, "anr.js": { - "offset": 45664580, + "offset": 45883160, "size": 730, }, "anr.js.map": { - "offset": 45665310, + "offset": 45883890, "size": 1500, }, "index.d.ts.map": { - "offset": 45666810, + "offset": 45885390, "size": 1780, }, "index.js": { - "offset": 45668590, + "offset": 45887170, "size": 6560, }, "index.js.map": { - "offset": 45675140, + "offset": 45893730, "size": 210, }, "integrations": { "files": { "scope-to-main.d.ts.map": { - "offset": 45675350, + "offset": 45893930, "size": 190, }, "scope-to-main.js": { - "offset": 45675540, + "offset": 45894120, "size": 710, }, "scope-to-main.js.map": { - "offset": 45676240, + "offset": 45894820, "size": 1200, }, }, }, "ipc.d.ts.map": { - "offset": 45677430, + "offset": 45896020, "size": 200, }, "ipc.js": { - "offset": 45677630, + "offset": 45896210, "size": 3280, }, "ipc.js.map": { - "offset": 45680910, + "offset": 45899490, "size": 5240, }, "metrics.d.ts.map": { - "offset": 45686150, + "offset": 45904730, "size": 1030, }, "metrics.js": { - "offset": 45687180, + "offset": 45905760, "size": 2440, }, "metrics.js.map": { - "offset": 45689610, + "offset": 45908200, "size": 5090, }, "sdk.d.ts.map": { - "offset": 45694700, + "offset": 45913280, "size": 760, }, "sdk.js": { - "offset": 45695450, + "offset": 45914030, "size": 2820, }, "sdk.js.map": { - "offset": 45698270, + "offset": 45916850, "size": 5310, }, "stack-parse.d.ts.map": { - "offset": 45703570, + "offset": 45922150, "size": 220, }, "stack-parse.js": { - "offset": 45703780, + "offset": 45922370, "size": 1090, }, "stack-parse.js.map": { - "offset": 45704870, + "offset": 45923450, "size": 2040, }, "transport.d.ts.map": { - "offset": 45706900, + "offset": 45925490, "size": 250, }, "transport.js": { - "offset": 45707150, + "offset": 45925730, "size": 600, }, "transport.js.map": { - "offset": 45707740, + "offset": 45926330, "size": 1110, }, }, @@ -69266,39 +69266,39 @@ exports[`node_module collectors > yarn ms 2`] = ` "utility": { "files": { "index.d.ts.map": { - "offset": 45708850, + "offset": 45927430, "size": 1950, }, "index.js": { - "offset": 45710790, + "offset": 45929380, "size": 7010, }, "index.js.map": { - "offset": 45717800, + "offset": 45936380, "size": 230, }, "sdk.d.ts.map": { - "offset": 45718020, + "offset": 45936610, "size": 360, }, "sdk.js": { - "offset": 45718380, + "offset": 45936960, "size": 2170, }, "sdk.js.map": { - "offset": 45720540, + "offset": 45939120, "size": 4130, }, "transport.d.ts.map": { - "offset": 45724660, + "offset": 45943240, "size": 250, }, "transport.js": { - "offset": 45724910, + "offset": 45943490, "size": 2440, }, "transport.js.map": { - "offset": 45727340, + "offset": 45945930, "size": 4000, }, }, @@ -69308,7 +69308,7 @@ exports[`node_module collectors > yarn ms 2`] = ` "node": { "files": { "LICENSE": { - "offset": 45731340, + "offset": 45949930, "size": 1100, }, "build": { @@ -69318,69 +69318,69 @@ exports[`node_module collectors > yarn ms 2`] = ` "cron": { "files": { "common.js": { - "offset": 45732440, + "offset": 45951020, "size": 1160, }, "common.js.map": { - "offset": 45733600, + "offset": 45952180, "size": 2860, }, "cron.js": { - "offset": 45736450, + "offset": 45955040, "size": 3100, }, "cron.js.map": { - "offset": 45739550, + "offset": 45958130, "size": 6960, }, "index.js": { - "offset": 45746500, + "offset": 45965090, "size": 500, }, "index.js.map": { - "offset": 45747000, + "offset": 45965580, "size": 600, }, "node-cron.js": { - "offset": 45747590, + "offset": 45966170, "size": 2250, }, "node-cron.js.map": { - "offset": 45749840, + "offset": 45968420, "size": 8160, }, "node-schedule.js": { - "offset": 45757990, + "offset": 45976570, "size": 2230, }, "node-schedule.js.map": { - "offset": 45760210, + "offset": 45978800, "size": 8700, }, }, }, "debug-build.js": { - "offset": 45768910, + "offset": 45987490, "size": 530, }, "debug-build.js.map": { - "offset": 45769440, + "offset": 45988020, "size": 610, }, "index.js": { - "offset": 45770040, + "offset": 45988620, "size": 10200, }, "index.js.map": { - "offset": 45780240, + "offset": 45998820, "size": 280, }, "init.js": { - "offset": 45780510, + "offset": 45999100, "size": 380, }, "init.js.map": { - "offset": 45780890, + "offset": 45999480, "size": 510, }, "integrations": { @@ -69388,81 +69388,81 @@ exports[`node_module collectors > yarn ms 2`] = ` "anr": { "files": { "index.js": { - "offset": 45781400, + "offset": 45999980, "size": 52930, }, "index.js.map": { - "offset": 45834320, + "offset": 46052900, "size": 259750, }, }, }, "childProcess.js": { - "offset": 46094070, + "offset": 46312650, "size": 3040, }, "childProcess.js.map": { - "offset": 46097100, + "offset": 46315680, "size": 5640, }, "console.js": { - "offset": 46102740, + "offset": 46321320, "size": 910, }, "console.js.map": { - "offset": 46103640, + "offset": 46322220, "size": 1760, }, "context.js": { - "offset": 46105400, + "offset": 46323980, "size": 15700, }, "context.js.map": { - "offset": 46121090, + "offset": 46339670, "size": 70240, }, "contextlines.js": { - "offset": 46191320, + "offset": 46409900, "size": 14370, }, "contextlines.js.map": { - "offset": 46205680, + "offset": 46424270, "size": 63200, }, "fs.js": { - "offset": 46268870, + "offset": 46487460, "size": 4620, }, "fs.js.map": { - "offset": 46273490, + "offset": 46492080, "size": 8650, }, "http": { "files": { "SentryHttpInstrumentation.js": { - "offset": 46282140, + "offset": 46500720, "size": 13890, }, "SentryHttpInstrumentation.js.map": { - "offset": 46296030, + "offset": 46514610, "size": 26000, }, "index.js": { - "offset": 46322020, + "offset": 46540600, "size": 6170, }, "index.js.map": { - "offset": 46328180, + "offset": 46546760, "size": 29770, }, "vendor": { "files": { "getRequestInfo.js": { - "offset": 46357950, + "offset": 46576530, "size": 4040, }, "getRequestInfo.js.map": { - "offset": 46361980, + "offset": 46580570, "size": 8890, }, }, @@ -69472,305 +69472,305 @@ exports[`node_module collectors > yarn ms 2`] = ` "local-variables": { "files": { "common.js": { - "offset": 46370860, + "offset": 46589450, "size": 1780, }, "common.js.map": { - "offset": 46372640, + "offset": 46591220, "size": 4590, }, "index.js": { - "offset": 46377220, + "offset": 46595810, "size": 580, }, "index.js.map": { - "offset": 46377800, + "offset": 46596380, "size": 940, }, "local-variables-async.js": { - "offset": 46378730, + "offset": 46597310, "size": 9370, }, "local-variables-async.js.map": { - "offset": 46388100, + "offset": 46606680, "size": 42400, }, "local-variables-sync.js": { - "offset": 46430490, + "offset": 46649080, "size": 13250, }, "local-variables-sync.js.map": { - "offset": 46443740, + "offset": 46662320, "size": 54360, }, }, }, "modules.js": { - "offset": 46498090, + "offset": 46716680, "size": 2480, }, "modules.js.map": { - "offset": 46500570, + "offset": 46719160, "size": 4890, }, "node-fetch.js": { - "offset": 46505460, + "offset": 46724040, "size": 4150, }, "node-fetch.js.map": { - "offset": 46509600, + "offset": 46728180, "size": 17480, }, "onuncaughtexception.js": { - "offset": 46527070, + "offset": 46745650, "size": 5900, }, "onuncaughtexception.js.map": { - "offset": 46532960, + "offset": 46751550, "size": 9940, }, "onunhandledrejection.js": { - "offset": 46542900, + "offset": 46761480, "size": 2350, }, "onunhandledrejection.js.map": { - "offset": 46545240, + "offset": 46763820, "size": 4490, }, "spotlight.js": { - "offset": 46549730, + "offset": 46768310, "size": 2990, }, "spotlight.js.map": { - "offset": 46552720, + "offset": 46771300, "size": 5920, }, "tracing": { "files": { "amqplib.js": { - "offset": 46558640, + "offset": 46777220, "size": 1510, }, "amqplib.js.map": { - "offset": 46560150, + "offset": 46778730, "size": 2340, }, "connect.js": { - "offset": 46562480, + "offset": 46781060, "size": 3190, }, "connect.js.map": { - "offset": 46565670, + "offset": 46784250, "size": 5160, }, "dataloader.js": { - "offset": 46570830, + "offset": 46789410, "size": 2360, }, "dataloader.js.map": { - "offset": 46573180, + "offset": 46791770, "size": 9270, }, "express.js": { - "offset": 46582450, + "offset": 46801030, "size": 6490, }, "express.js.map": { - "offset": 46588930, + "offset": 46807510, "size": 27920, }, "fastify.js": { - "offset": 46616840, + "offset": 46835420, "size": 4580, }, "fastify.js.map": { - "offset": 46621420, + "offset": 46840000, "size": 20580, }, "genericPool.js": { - "offset": 46642000, + "offset": 46860580, "size": 1840, }, "genericPool.js.map": { - "offset": 46643840, + "offset": 46862420, "size": 2780, }, "graphql.js": { - "offset": 46646620, + "offset": 46865200, "size": 3580, }, "graphql.js.map": { - "offset": 46650190, + "offset": 46868770, "size": 6550, }, "hapi": { "files": { "index.js": { - "offset": 46656730, + "offset": 46875320, "size": 4240, }, "index.js.map": { - "offset": 46660970, + "offset": 46879550, "size": 17820, }, }, }, "index.js": { - "offset": 46678780, + "offset": 46897360, "size": 3140, }, "index.js.map": { - "offset": 46681920, + "offset": 46900500, "size": 5230, }, "kafka.js": { - "offset": 46687140, + "offset": 46905730, "size": 1480, }, "kafka.js.map": { - "offset": 46688620, + "offset": 46907200, "size": 2160, }, "knex.js": { - "offset": 46690780, + "offset": 46909360, "size": 1510, }, "knex.js.map": { - "offset": 46692290, + "offset": 46910870, "size": 2430, }, "koa.js": { - "offset": 46694710, + "offset": 46913290, "size": 3820, }, "koa.js.map": { - "offset": 46698520, + "offset": 46917110, "size": 15170, }, "lrumemoizer.js": { - "offset": 46713690, + "offset": 46932270, "size": 1280, }, "lrumemoizer.js.map": { - "offset": 46714960, + "offset": 46933550, "size": 1750, }, "mongo.js": { - "offset": 46716710, + "offset": 46935290, "size": 2580, }, "mongo.js.map": { - "offset": 46719290, + "offset": 46937870, "size": 4580, }, "mongoose.js": { - "offset": 46723870, + "offset": 46942450, "size": 1420, }, "mongoose.js.map": { - "offset": 46725280, + "offset": 46943860, "size": 2030, }, "mysql.js": { - "offset": 46727300, + "offset": 46945890, "size": 1170, }, "mysql.js.map": { - "offset": 46728460, + "offset": 46947050, "size": 1660, }, "mysql2.js": { - "offset": 46730120, + "offset": 46948700, "size": 1370, }, "mysql2.js.map": { - "offset": 46731490, + "offset": 46950070, "size": 1990, }, "nest": { "files": { "helpers.js": { - "offset": 46733480, + "offset": 46952060, "size": 2920, }, "helpers.js.map": { - "offset": 46736390, + "offset": 46954970, "size": 12390, }, "nest.js": { - "offset": 46748770, + "offset": 46967360, "size": 5750, }, "nest.js.map": { - "offset": 46754520, + "offset": 46973100, "size": 24900, }, "sentry-nest-event-instrumentation.js": { - "offset": 46779410, + "offset": 46997990, "size": 4230, }, "sentry-nest-event-instrumentation.js.map": { - "offset": 46783640, + "offset": 47002220, "size": 7270, }, "sentry-nest-instrumentation.js": { - "offset": 46790900, + "offset": 47009490, "size": 11770, }, "sentry-nest-instrumentation.js.map": { - "offset": 46802670, + "offset": 47021250, "size": 44530, }, }, }, "postgres.js": { - "offset": 46847190, + "offset": 47065780, "size": 1410, }, "postgres.js.map": { - "offset": 46848600, + "offset": 47067180, "size": 2050, }, "prisma.js": { - "offset": 46850650, + "offset": 47069230, "size": 3950, }, "prisma.js.map": { - "offset": 46854600, + "offset": 47073180, "size": 17540, }, "redis.js": { - "offset": 46872130, + "offset": 47090720, "size": 4020, }, "redis.js.map": { - "offset": 46876150, + "offset": 47094730, "size": 18400, }, "tedious.js": { - "offset": 46894550, + "offset": 47113130, "size": 2070, }, "tedious.js.map": { - "offset": 46896610, + "offset": 47115190, "size": 8440, }, "vercelai": { "files": { "index.js": { - "offset": 46905050, + "offset": 47123630, "size": 7150, }, "index.js.map": { - "offset": 46912190, + "offset": 47130770, "size": 27580, }, "instrumentation.js": { - "offset": 46939770, + "offset": 47158350, "size": 2320, }, "instrumentation.js.map": { - "offset": 46942080, + "offset": 47160670, "size": 4420, }, }, @@ -69780,65 +69780,65 @@ exports[`node_module collectors > yarn ms 2`] = ` }, }, "nodeVersion.js": { - "offset": 46946500, + "offset": 47165080, "size": 320, }, "nodeVersion.js.map": { - "offset": 46946810, + "offset": 47165400, "size": 450, }, "otel": { "files": { "contextManager.js": { - "offset": 46947260, + "offset": 47165840, "size": 790, }, "contextManager.js.map": { - "offset": 46948050, + "offset": 47166630, "size": 920, }, "instrument.js": { - "offset": 46948960, + "offset": 47167540, "size": 1040, }, "instrument.js.map": { - "offset": 46949990, + "offset": 47168570, "size": 1800, }, }, }, "preload.js": { - "offset": 46951780, + "offset": 47170360, "size": 1020, }, "preload.js.map": { - "offset": 46952800, + "offset": 47171380, "size": 1480, }, "proxy": { "files": { "base.js": { - "offset": 46954270, + "offset": 47172850, "size": 4140, }, "base.js.map": { - "offset": 46958410, + "offset": 47176990, "size": 19110, }, "index.js": { - "offset": 46977510, + "offset": 47196100, "size": 5790, }, "index.js.map": { - "offset": 46983300, + "offset": 47201880, "size": 27640, }, "parse-proxy-response.js": { - "offset": 47010930, + "offset": 47229520, "size": 3110, }, "parse-proxy-response.js.map": { - "offset": 47014040, + "offset": 47232620, "size": 7930, }, }, @@ -69846,35 +69846,35 @@ exports[`node_module collectors > yarn ms 2`] = ` "sdk": { "files": { "api.js": { - "offset": 47021960, + "offset": 47240550, "size": 6090, }, "api.js.map": { - "offset": 47028050, + "offset": 47246630, "size": 8740, }, "client.js": { - "offset": 47036790, + "offset": 47255370, "size": 4690, }, "client.js.map": { - "offset": 47041470, + "offset": 47260050, "size": 20270, }, "index.js": { - "offset": 47061730, + "offset": 47280320, "size": 10870, }, "index.js.map": { - "offset": 47072600, + "offset": 47291180, "size": 18910, }, "initOtel.js": { - "offset": 47091510, + "offset": 47310090, "size": 7330, }, "initOtel.js.map": { - "offset": 47098840, + "offset": 47317420, "size": 30570, }, }, @@ -69882,11 +69882,11 @@ exports[`node_module collectors > yarn ms 2`] = ` "transports": { "files": { "http.js": { - "offset": 47129410, + "offset": 47347990, "size": 5060, }, "http.js.map": { - "offset": 47134460, + "offset": 47353050, "size": 21490, }, }, @@ -69894,83 +69894,83 @@ exports[`node_module collectors > yarn ms 2`] = ` "utils": { "files": { "addOriginToSpan.js": { - "offset": 47155940, + "offset": 47374530, "size": 350, }, "addOriginToSpan.js.map": { - "offset": 47156290, + "offset": 47374870, "size": 640, }, "commonjs.js": { - "offset": 47156920, + "offset": 47375500, "size": 220, }, "commonjs.js.map": { - "offset": 47157130, + "offset": 47375710, "size": 310, }, "createMissingInstrumentationContext.js": { - "offset": 47157430, + "offset": 47376020, "size": 380, }, "createMissingInstrumentationContext.js.map": { - "offset": 47157810, + "offset": 47376390, "size": 570, }, "debug.js": { - "offset": 47158370, + "offset": 47376950, "size": 600, }, "debug.js.map": { - "offset": 47158970, + "offset": 47377550, "size": 960, }, "ensureIsWrapped.js": { - "offset": 47159920, + "offset": 47378500, "size": 1630, }, "ensureIsWrapped.js.map": { - "offset": 47161550, + "offset": 47380130, "size": 5390, }, "envToBool.js": { - "offset": 47166930, + "offset": 47385510, "size": 1190, }, "envToBool.js.map": { - "offset": 47168120, + "offset": 47386700, "size": 2200, }, "errorhandling.js": { - "offset": 47170320, + "offset": 47388900, "size": 1190, }, "errorhandling.js.map": { - "offset": 47171500, + "offset": 47390080, "size": 2180, }, "getRequestUrl.js": { - "offset": 47173670, + "offset": 47392260, "size": 800, }, "getRequestUrl.js.map": { - "offset": 47174470, + "offset": 47393050, "size": 1420, }, "module.js": { - "offset": 47175880, + "offset": 47394460, "size": 1880, }, "module.js.map": { - "offset": 47177750, + "offset": 47396340, "size": 3500, }, "redisCache.js": { - "offset": 47181250, + "offset": 47399830, "size": 3660, }, "redisCache.js.map": { - "offset": 47184910, + "offset": 47403490, "size": 7040, }, }, @@ -69982,69 +69982,69 @@ exports[`node_module collectors > yarn ms 2`] = ` "cron": { "files": { "common.js": { - "offset": 47191940, + "offset": 47410530, "size": 1080, }, "common.js.map": { - "offset": 47193020, + "offset": 47411610, "size": 2860, }, "cron.js": { - "offset": 47195880, + "offset": 47414460, "size": 3020, }, "cron.js.map": { - "offset": 47198890, + "offset": 47417480, "size": 6900, }, "index.js": { - "offset": 47205790, + "offset": 47424370, "size": 360, }, "index.js.map": { - "offset": 47206150, + "offset": 47424730, "size": 520, }, "node-cron.js": { - "offset": 47206670, + "offset": 47425250, "size": 2180, }, "node-cron.js.map": { - "offset": 47208840, + "offset": 47427430, "size": 7970, }, "node-schedule.js": { - "offset": 47216810, + "offset": 47435390, "size": 2140, }, "node-schedule.js.map": { - "offset": 47218950, + "offset": 47437530, "size": 8580, }, }, }, "debug-build.js": { - "offset": 47227520, + "offset": 47446100, "size": 460, }, "debug-build.js.map": { - "offset": 47227970, + "offset": 47446560, "size": 610, }, "index.js": { - "offset": 47228570, + "offset": 47447160, "size": 4920, }, "index.js.map": { - "offset": 47233490, + "offset": 47452080, "size": 140, }, "init.js": { - "offset": 47233630, + "offset": 47452210, "size": 380, }, "init.js.map": { - "offset": 47234000, + "offset": 47452580, "size": 500, }, "integrations": { @@ -70052,85 +70052,85 @@ exports[`node_module collectors > yarn ms 2`] = ` "anr": { "files": { "index.js": { - "offset": 47234490, + "offset": 47453080, "size": 52770, }, "index.js.map": { - "offset": 47287260, + "offset": 47505840, "size": 258830, }, "worker-script.js": { - "offset": 47546080, + "offset": 47764660, "size": 34320, }, }, }, "childProcess.js": { - "offset": 47580390, + "offset": 47798980, "size": 2910, }, "childProcess.js.map": { - "offset": 47583300, + "offset": 47801880, "size": 5600, }, "console.js": { - "offset": 47588900, + "offset": 47807480, "size": 900, }, "console.js.map": { - "offset": 47589790, + "offset": 47808380, "size": 1630, }, "context.js": { - "offset": 47591420, + "offset": 47810000, "size": 15460, }, "context.js.map": { - "offset": 47606870, + "offset": 47825460, "size": 69820, }, "contextlines.js": { - "offset": 47676690, + "offset": 47895270, "size": 14070, }, "contextlines.js.map": { - "offset": 47690760, + "offset": 47909340, "size": 62670, }, "fs.js": { - "offset": 47753420, + "offset": 47972000, "size": 4590, }, "fs.js.map": { - "offset": 47758000, + "offset": 47976580, "size": 8510, }, "http": { "files": { "SentryHttpInstrumentation.js": { - "offset": 47766510, + "offset": 47985090, "size": 13870, }, "SentryHttpInstrumentation.js.map": { - "offset": 47780380, + "offset": 47998960, "size": 25650, }, "index.js": { - "offset": 47806020, + "offset": 48024600, "size": 5920, }, "index.js.map": { - "offset": 47811930, + "offset": 48030510, "size": 28860, }, "vendor": { "files": { "getRequestInfo.js": { - "offset": 47840790, + "offset": 48059370, "size": 3960, }, "getRequestInfo.js.map": { - "offset": 47844740, + "offset": 48063330, "size": 8880, }, }, @@ -70140,309 +70140,309 @@ exports[`node_module collectors > yarn ms 2`] = ` "local-variables": { "files": { "common.js": { - "offset": 47853620, + "offset": 48072210, "size": 1610, }, "common.js.map": { - "offset": 47855230, + "offset": 48073820, "size": 4590, }, "index.js": { - "offset": 47859820, + "offset": 48078400, "size": 460, }, "index.js.map": { - "offset": 47860270, + "offset": 48078850, "size": 850, }, "local-variables-async.js": { - "offset": 47861120, + "offset": 48079700, "size": 9200, }, "local-variables-async.js.map": { - "offset": 47870320, + "offset": 48088900, "size": 41830, }, "local-variables-sync.js": { - "offset": 47912140, + "offset": 48130720, "size": 13080, }, "local-variables-sync.js.map": { - "offset": 47925220, + "offset": 48143800, "size": 53870, }, "worker-script.js": { - "offset": 47979080, + "offset": 48197660, "size": 3670, }, }, }, "modules.js": { - "offset": 47982750, + "offset": 48201330, "size": 2370, }, "modules.js.map": { - "offset": 47985110, + "offset": 48203700, "size": 4780, }, "node-fetch.js": { - "offset": 47989890, + "offset": 48208470, "size": 4150, }, "node-fetch.js.map": { - "offset": 47994030, + "offset": 48212620, "size": 16610, }, "onuncaughtexception.js": { - "offset": 48010640, + "offset": 48229220, "size": 5770, }, "onuncaughtexception.js.map": { - "offset": 48016400, + "offset": 48234990, "size": 9830, }, "onunhandledrejection.js": { - "offset": 48026230, + "offset": 48244810, "size": 2240, }, "onunhandledrejection.js.map": { - "offset": 48028460, + "offset": 48247050, "size": 4400, }, "spotlight.js": { - "offset": 48032860, + "offset": 48251440, "size": 2860, }, "spotlight.js.map": { - "offset": 48035710, + "offset": 48254300, "size": 5870, }, "tracing": { "files": { "amqplib.js": { - "offset": 48041570, + "offset": 48260160, "size": 1350, }, "amqplib.js.map": { - "offset": 48042920, + "offset": 48261500, "size": 2240, }, "connect.js": { - "offset": 48045160, + "offset": 48263740, "size": 3090, }, "connect.js.map": { - "offset": 48048240, + "offset": 48266820, "size": 4950, }, "dataloader.js": { - "offset": 48053190, + "offset": 48271770, "size": 2280, }, "dataloader.js.map": { - "offset": 48055460, + "offset": 48274050, "size": 8950, }, "express.js": { - "offset": 48064410, + "offset": 48282990, "size": 6310, }, "express.js.map": { - "offset": 48070720, + "offset": 48289300, "size": 27090, }, "fastify.js": { - "offset": 48097810, + "offset": 48316390, "size": 4490, }, "fastify.js.map": { - "offset": 48102290, + "offset": 48320870, "size": 20050, }, "genericPool.js": { - "offset": 48122340, + "offset": 48340920, "size": 1740, }, "genericPool.js.map": { - "offset": 48124070, + "offset": 48342660, "size": 2650, }, "graphql.js": { - "offset": 48126720, + "offset": 48345300, "size": 3420, }, "graphql.js.map": { - "offset": 48130130, + "offset": 48348720, "size": 6370, }, "hapi": { "files": { "index.js": { - "offset": 48136500, + "offset": 48355080, "size": 4150, }, "index.js.map": { - "offset": 48140640, + "offset": 48359230, "size": 16870, }, }, }, "index.js": { - "offset": 48157510, + "offset": 48376090, "size": 3250, }, "index.js.map": { - "offset": 48160750, + "offset": 48379340, "size": 4390, }, "kafka.js": { - "offset": 48165140, + "offset": 48383720, "size": 1320, }, "kafka.js.map": { - "offset": 48166460, + "offset": 48385040, "size": 2070, }, "knex.js": { - "offset": 48168520, + "offset": 48387110, "size": 1430, }, "knex.js.map": { - "offset": 48169950, + "offset": 48388530, "size": 2300, }, "koa.js": { - "offset": 48172250, + "offset": 48390830, "size": 3710, }, "koa.js.map": { - "offset": 48175960, + "offset": 48394540, "size": 14490, }, "lrumemoizer.js": { - "offset": 48190450, + "offset": 48409030, "size": 1140, }, "lrumemoizer.js.map": { - "offset": 48191590, + "offset": 48410170, "size": 1670, }, "mongo.js": { - "offset": 48193250, + "offset": 48411830, "size": 2400, }, "mongo.js.map": { - "offset": 48195650, + "offset": 48414230, "size": 4490, }, "mongoose.js": { - "offset": 48200130, + "offset": 48418710, "size": 1270, }, "mongoose.js.map": { - "offset": 48201400, + "offset": 48419980, "size": 1930, }, "mysql.js": { - "offset": 48203330, + "offset": 48421910, "size": 1040, }, "mysql.js.map": { - "offset": 48204370, + "offset": 48422950, "size": 1580, }, "mysql2.js": { - "offset": 48205950, + "offset": 48424530, "size": 1230, }, "mysql2.js.map": { - "offset": 48207170, + "offset": 48425760, "size": 1900, }, "nest": { "files": { "helpers.js": { - "offset": 48209070, + "offset": 48427650, "size": 2790, }, "helpers.js.map": { - "offset": 48211850, + "offset": 48430430, "size": 12070, }, "nest.js": { - "offset": 48223910, + "offset": 48442500, "size": 5610, }, "nest.js.map": { - "offset": 48229520, + "offset": 48448110, "size": 23270, }, "sentry-nest-event-instrumentation.js": { - "offset": 48252780, + "offset": 48471370, "size": 4180, }, "sentry-nest-event-instrumentation.js.map": { - "offset": 48256960, + "offset": 48475540, "size": 7090, }, "sentry-nest-instrumentation.js": { - "offset": 48264040, + "offset": 48482620, "size": 11660, }, "sentry-nest-instrumentation.js.map": { - "offset": 48275700, + "offset": 48494280, "size": 42550, }, }, }, "postgres.js": { - "offset": 48318250, + "offset": 48536830, "size": 1270, }, "postgres.js.map": { - "offset": 48319510, + "offset": 48538100, "size": 1960, }, "prisma.js": { - "offset": 48321470, + "offset": 48540050, "size": 3880, }, "prisma.js.map": { - "offset": 48325350, + "offset": 48543930, "size": 17310, }, "redis.js": { - "offset": 48342650, + "offset": 48561240, "size": 4030, }, "redis.js.map": { - "offset": 48346680, + "offset": 48565270, "size": 16940, }, "tedious.js": { - "offset": 48363620, + "offset": 48582200, "size": 1970, }, "tedious.js.map": { - "offset": 48365590, + "offset": 48584170, "size": 7970, }, "vercelai": { "files": { "index.js": { - "offset": 48373560, + "offset": 48592140, "size": 7000, }, "index.js.map": { - "offset": 48380550, + "offset": 48599130, "size": 26610, }, "instrumentation.js": { - "offset": 48407150, + "offset": 48625740, "size": 2250, }, "instrumentation.js.map": { - "offset": 48409390, + "offset": 48627980, "size": 4320, }, }, @@ -70452,69 +70452,69 @@ exports[`node_module collectors > yarn ms 2`] = ` }, }, "nodeVersion.js": { - "offset": 48413710, + "offset": 48632290, "size": 220, }, "nodeVersion.js.map": { - "offset": 48413930, + "offset": 48632510, "size": 430, }, "otel": { "files": { "contextManager.js": { - "offset": 48414360, + "offset": 48632940, "size": 700, }, "contextManager.js.map": { - "offset": 48415050, + "offset": 48633640, "size": 850, }, "instrument.js": { - "offset": 48415900, + "offset": 48634480, "size": 910, }, "instrument.js.map": { - "offset": 48416810, + "offset": 48635390, "size": 1740, }, }, }, "package.json": { - "offset": 48418550, + "offset": 48637130, "size": 60, }, "preload.js": { - "offset": 48418600, + "offset": 48637180, "size": 1010, }, "preload.js.map": { - "offset": 48419610, + "offset": 48638190, "size": 1440, }, "proxy": { "files": { "base.js": { - "offset": 48421040, + "offset": 48639620, "size": 4070, }, "base.js.map": { - "offset": 48425100, + "offset": 48643690, "size": 19110, }, "index.js": { - "offset": 48444200, + "offset": 48662790, "size": 5670, }, "index.js.map": { - "offset": 48449870, + "offset": 48668450, "size": 27430, }, "parse-proxy-response.js": { - "offset": 48477290, + "offset": 48695870, "size": 3020, }, "parse-proxy-response.js.map": { - "offset": 48480310, + "offset": 48698890, "size": 7920, }, }, @@ -70522,35 +70522,35 @@ exports[`node_module collectors > yarn ms 2`] = ` "sdk": { "files": { "api.js": { - "offset": 48488220, + "offset": 48706810, "size": 6010, }, "api.js.map": { - "offset": 48494230, + "offset": 48712810, "size": 8650, }, "client.js": { - "offset": 48502870, + "offset": 48721460, "size": 4580, }, "client.js.map": { - "offset": 48507450, + "offset": 48726040, "size": 19720, }, "index.js": { - "offset": 48527160, + "offset": 48745750, "size": 10890, }, "index.js.map": { - "offset": 48538050, + "offset": 48756630, "size": 17870, }, "initOtel.js": { - "offset": 48555910, + "offset": 48774490, "size": 6470, }, "initOtel.js.map": { - "offset": 48562370, + "offset": 48780950, "size": 26710, }, }, @@ -70558,11 +70558,11 @@ exports[`node_module collectors > yarn ms 2`] = ` "transports": { "files": { "http.js": { - "offset": 48589070, + "offset": 48807660, "size": 4970, }, "http.js.map": { - "offset": 48594040, + "offset": 48812620, "size": 21020, }, }, @@ -70570,83 +70570,83 @@ exports[`node_module collectors > yarn ms 2`] = ` "utils": { "files": { "addOriginToSpan.js": { - "offset": 48615050, + "offset": 48833640, "size": 290, }, "addOriginToSpan.js.map": { - "offset": 48615340, + "offset": 48833920, "size": 600, }, "commonjs.js": { - "offset": 48615930, + "offset": 48834520, "size": 150, }, "commonjs.js.map": { - "offset": 48616070, + "offset": 48834660, "size": 310, }, "createMissingInstrumentationContext.js": { - "offset": 48616380, + "offset": 48834960, "size": 270, }, "createMissingInstrumentationContext.js.map": { - "offset": 48616640, + "offset": 48835220, "size": 560, }, "debug.js": { - "offset": 48617190, + "offset": 48835770, "size": 520, }, "debug.js.map": { - "offset": 48617710, + "offset": 48836290, "size": 960, }, "ensureIsWrapped.js": { - "offset": 48618660, + "offset": 48837240, "size": 1530, }, "ensureIsWrapped.js.map": { - "offset": 48620190, + "offset": 48838770, "size": 4810, }, "envToBool.js": { - "offset": 48624990, + "offset": 48843580, "size": 1070, }, "envToBool.js.map": { - "offset": 48626060, + "offset": 48844640, "size": 2200, }, "errorhandling.js": { - "offset": 48628250, + "offset": 48846830, "size": 1080, }, "errorhandling.js.map": { - "offset": 48629320, + "offset": 48847910, "size": 2110, }, "getRequestUrl.js": { - "offset": 48631430, + "offset": 48850010, "size": 720, }, "getRequestUrl.js.map": { - "offset": 48632150, + "offset": 48850730, "size": 1420, }, "module.js": { - "offset": 48633560, + "offset": 48852140, "size": 1760, }, "module.js.map": { - "offset": 48635320, + "offset": 48853900, "size": 3470, }, "redisCache.js": { - "offset": 48638790, + "offset": 48857370, "size": 3420, }, "redisCache.js.map": { - "offset": 48642200, + "offset": 48860780, "size": 7030, }, }, @@ -70654,11 +70654,11 @@ exports[`node_module collectors > yarn ms 2`] = ` }, }, "import-hook.mjs": { - "offset": 48649230, + "offset": 48867810, "size": 160, }, "loader-hook.mjs": { - "offset": 48649390, + "offset": 48867970, "size": 100, }, "types": { @@ -70666,37 +70666,37 @@ exports[`node_module collectors > yarn ms 2`] = ` "cron": { "files": { "common.d.ts.map": { - "offset": 48649480, + "offset": 48868060, "size": 190, }, "cron.d.ts.map": { - "offset": 48649660, + "offset": 48868250, "size": 1660, }, "index.d.ts.map": { - "offset": 48651320, + "offset": 48869900, "size": 290, }, "node-cron.d.ts.map": { - "offset": 48651610, + "offset": 48870190, "size": 450, }, "node-schedule.d.ts.map": { - "offset": 48652050, + "offset": 48870630, "size": 430, }, }, }, "debug-build.d.ts.map": { - "offset": 48652470, + "offset": 48871050, "size": 170, }, "index.d.ts.map": { - "offset": 48652630, + "offset": 48871220, "size": 3460, }, "init.d.ts.map": { - "offset": 48656090, + "offset": 48874670, "size": 110, }, "integrations": { @@ -70704,53 +70704,53 @@ exports[`node_module collectors > yarn ms 2`] = ` "anr": { "files": { "common.d.ts.map": { - "offset": 48656190, + "offset": 48874770, "size": 800, }, "index.d.ts.map": { - "offset": 48656990, + "offset": 48875570, "size": 650, }, "worker.d.ts.map": { - "offset": 48657630, + "offset": 48876220, "size": 140, }, }, }, "childProcess.d.ts.map": { - "offset": 48657760, + "offset": 48876350, "size": 300, }, "console.d.ts.map": { - "offset": 48658060, + "offset": 48876640, "size": 180, }, "context.d.ts.map": { - "offset": 48658230, + "offset": 48876810, "size": 750, }, "contextlines.d.ts.map": { - "offset": 48658970, + "offset": 48877560, "size": 660, }, "fs.d.ts.map": { - "offset": 48659630, + "offset": 48878210, "size": 200, }, "http": { "files": { "SentryHttpInstrumentation.d.ts.map": { - "offset": 48659820, + "offset": 48878410, "size": 850, }, "index.d.ts.map": { - "offset": 48660670, + "offset": 48879250, "size": 1390, }, "vendor": { "files": { "getRequestInfo.d.ts.map": { - "offset": 48662060, + "offset": 48880640, "size": 460, }, }, @@ -70760,177 +70760,177 @@ exports[`node_module collectors > yarn ms 2`] = ` "local-variables": { "files": { "common.d.ts.map": { - "offset": 48662510, + "offset": 48881090, "size": 1150, }, "index.d.ts.map": { - "offset": 48663660, + "offset": 48882240, "size": 290, }, "local-variables-async.d.ts.map": { - "offset": 48663940, + "offset": 48882530, "size": 310, }, "local-variables-sync.d.ts.map": { - "offset": 48664250, + "offset": 48882830, "size": 1360, }, "worker.d.ts.map": { - "offset": 48665600, + "offset": 48884180, "size": 150, }, }, }, "modules.d.ts.map": { - "offset": 48665740, + "offset": 48884330, "size": 180, }, "node-fetch.d.ts.map": { - "offset": 48665920, + "offset": 48884500, "size": 310, }, "onuncaughtexception.d.ts.map": { - "offset": 48666220, + "offset": 48884800, "size": 620, }, "onunhandledrejection.d.ts.map": { - "offset": 48666830, + "offset": 48885410, "size": 510, }, "spotlight.d.ts.map": { - "offset": 48667330, + "offset": 48885920, "size": 420, }, "tracing": { "files": { "amqplib.d.ts.map": { - "offset": 48667750, + "offset": 48886330, "size": 230, }, "connect.d.ts.map": { - "offset": 48667980, + "offset": 48886560, "size": 390, }, "dataloader.d.ts.map": { - "offset": 48668370, + "offset": 48886950, "size": 240, }, "express.d.ts.map": { - "offset": 48668600, + "offset": 48887190, "size": 1160, }, "fastify.d.ts.map": { - "offset": 48669760, + "offset": 48888340, "size": 530, }, "genericPool.d.ts.map": { - "offset": 48670280, + "offset": 48888860, "size": 240, }, "graphql.d.ts.map": { - "offset": 48670520, + "offset": 48889100, "size": 400, }, "hapi": { "files": { "index.d.ts.map": { - "offset": 48670910, + "offset": 48889490, "size": 450, }, "types.d.ts.map": { - "offset": 48671360, + "offset": 48889940, "size": 6030, }, }, }, "index.d.ts.map": { - "offset": 48677380, + "offset": 48895960, "size": 370, }, "kafka.d.ts.map": { - "offset": 48677750, + "offset": 48896330, "size": 220, }, "knex.d.ts.map": { - "offset": 48677970, + "offset": 48896550, "size": 220, }, "koa.d.ts.map": { - "offset": 48678190, + "offset": 48896770, "size": 350, }, "lrumemoizer.d.ts.map": { - "offset": 48678530, + "offset": 48897110, "size": 240, }, "mongo.d.ts.map": { - "offset": 48678760, + "offset": 48897350, "size": 320, }, "mongoose.d.ts.map": { - "offset": 48679080, + "offset": 48897660, "size": 230, }, "mysql.d.ts.map": { - "offset": 48679310, + "offset": 48897890, "size": 230, }, "mysql2.d.ts.map": { - "offset": 48679530, + "offset": 48898110, "size": 230, }, "nest": { "files": { "helpers.d.ts.map": { - "offset": 48679750, + "offset": 48898340, "size": 850, }, "nest.d.ts.map": { - "offset": 48680600, + "offset": 48899180, "size": 390, }, "sentry-nest-event-instrumentation.d.ts.map": { - "offset": 48680980, + "offset": 48899570, "size": 540, }, "sentry-nest-instrumentation.d.ts.map": { - "offset": 48681520, + "offset": 48900100, "size": 600, }, "types.d.ts.map": { - "offset": 48682110, + "offset": 48900700, "size": 2270, }, }, }, "postgres.d.ts.map": { - "offset": 48684380, + "offset": 48902960, "size": 230, }, "prisma.d.ts.map": { - "offset": 48684600, + "offset": 48903190, "size": 320, }, "redis.d.ts.map": { - "offset": 48684920, + "offset": 48903500, "size": 310, }, "tedious.d.ts.map": { - "offset": 48685220, + "offset": 48903800, "size": 230, }, "vercelai": { "files": { "index.d.ts.map": { - "offset": 48685450, + "offset": 48904030, "size": 260, }, "instrumentation.d.ts.map": { - "offset": 48685710, + "offset": 48904290, "size": 450, }, "types.d.ts.map": { - "offset": 48686160, + "offset": 48904740, "size": 660, }, }, @@ -70940,41 +70940,41 @@ exports[`node_module collectors > yarn ms 2`] = ` }, }, "nodeVersion.d.ts.map": { - "offset": 48686810, + "offset": 48905390, "size": 220, }, "otel": { "files": { "contextManager.d.ts.map": { - "offset": 48687020, + "offset": 48905600, "size": 230, }, "instrument.d.ts.map": { - "offset": 48687240, + "offset": 48905830, "size": 470, }, }, }, "preload.d.ts.map": { - "offset": 48687710, + "offset": 48906290, "size": 120, }, "proxy": { "files": { "base.d.ts.map": { - "offset": 48687820, + "offset": 48906400, "size": 1400, }, "helpers.d.ts.map": { - "offset": 48689220, + "offset": 48907800, "size": 630, }, "index.d.ts.map": { - "offset": 48689840, + "offset": 48908430, "size": 1440, }, "parse-proxy-response.d.ts.map": { - "offset": 48691280, + "offset": 48909860, "size": 510, }, }, @@ -70982,23 +70982,23 @@ exports[`node_module collectors > yarn ms 2`] = ` "sdk": { "files": { "api.d.ts.map": { - "offset": 48691790, + "offset": 48910370, "size": 290, }, "client.d.ts.map": { - "offset": 48692070, + "offset": 48910660, "size": 960, }, "index.d.ts.map": { - "offset": 48693030, + "offset": 48911620, "size": 600, }, "initOtel.d.ts.map": { - "offset": 48693620, + "offset": 48912210, "size": 930, }, "scope.d.ts.map": { - "offset": 48694540, + "offset": 48913130, "size": 230, }, }, @@ -71006,71 +71006,71 @@ exports[`node_module collectors > yarn ms 2`] = ` "transports": { "files": { "http-module.d.ts.map": { - "offset": 48694770, + "offset": 48913350, "size": 850, }, "http.d.ts.map": { - "offset": 48695610, + "offset": 48914200, "size": 630, }, "index.d.ts.map": { - "offset": 48696240, + "offset": 48914820, "size": 210, }, }, }, "types.d.ts.map": { - "offset": 48696440, + "offset": 48915020, "size": 1770, }, "utils": { "files": { "addOriginToSpan.d.ts.map": { - "offset": 48698200, + "offset": 48916790, "size": 320, }, "commonjs.d.ts.map": { - "offset": 48698520, + "offset": 48917100, "size": 170, }, "createMissingInstrumentationContext.d.ts.map": { - "offset": 48698690, + "offset": 48917270, "size": 280, }, "debug.d.ts.map": { - "offset": 48698960, + "offset": 48917540, "size": 180, }, "ensureIsWrapped.d.ts.map": { - "offset": 48699130, + "offset": 48917720, "size": 270, }, "entry-point.d.ts.map": { - "offset": 48699400, + "offset": 48917980, "size": 540, }, "envToBool.d.ts.map": { - "offset": 48699930, + "offset": 48918510, "size": 620, }, "errorhandling.d.ts.map": { - "offset": 48700540, + "offset": 48919130, "size": 200, }, "getRequestUrl.d.ts.map": { - "offset": 48700740, + "offset": 48919320, "size": 250, }, "module.d.ts.map": { - "offset": 48700990, + "offset": 48919570, "size": 260, }, "prepareEvent.d.ts.map": { - "offset": 48701240, + "offset": 48919820, "size": 500, }, "redisCache.d.ts.map": { - "offset": 48701730, + "offset": 48920320, "size": 760, }, }, @@ -71080,7 +71080,7 @@ exports[`node_module collectors > yarn ms 2`] = ` }, }, "package.json": { - "offset": 48702480, + "offset": 48921070, "size": 3480, }, }, @@ -71088,7 +71088,7 @@ exports[`node_module collectors > yarn ms 2`] = ` "opentelemetry": { "files": { "LICENSE": { - "offset": 48705960, + "offset": 48924550, "size": 1100, }, "build": { @@ -71096,11 +71096,11 @@ exports[`node_module collectors > yarn ms 2`] = ` "cjs": { "files": { "index.js": { - "offset": 48707060, + "offset": 48925640, "size": 83200, }, "index.js.map": { - "offset": 48790260, + "offset": 49008840, "size": 395070, }, }, @@ -71108,15 +71108,15 @@ exports[`node_module collectors > yarn ms 2`] = ` "esm": { "files": { "index.js": { - "offset": 49185320, + "offset": 49403900, "size": 82160, }, "index.js.map": { - "offset": 49267480, + "offset": 49486060, "size": 385510, }, "package.json": { - "offset": 49652980, + "offset": 49871560, "size": 60, }, }, @@ -71124,137 +71124,137 @@ exports[`node_module collectors > yarn ms 2`] = ` "types": { "files": { "asyncContextStrategy.d.ts.map": { - "offset": 49653040, + "offset": 49871620, "size": 190, }, "constants.d.ts.map": { - "offset": 49653220, + "offset": 49871800, "size": 420, }, "contextManager.d.ts.map": { - "offset": 49653640, + "offset": 49872220, "size": 320, }, "custom": { "files": { "client.d.ts.map": { - "offset": 49653950, + "offset": 49872540, "size": 490, }, }, }, "debug-build.d.ts.map": { - "offset": 49654440, + "offset": 49873020, "size": 170, }, "index.d.ts.map": { - "offset": 49654600, + "offset": 49873190, "size": 1310, }, "instrumentation.d.ts.map": { - "offset": 49655910, + "offset": 49874490, "size": 260, }, "propagator.d.ts.map": { - "offset": 49656160, + "offset": 49874750, "size": 1310, }, "sampler.d.ts.map": { - "offset": 49657470, + "offset": 49876050, "size": 840, }, "semanticAttributes.d.ts.map": { - "offset": 49658300, + "offset": 49876880, "size": 220, }, "setupEventContextTrace.d.ts.map": { - "offset": 49658510, + "offset": 49877100, "size": 260, }, "spanExporter.d.ts.map": { - "offset": 49658770, + "offset": 49877350, "size": 700, }, "spanProcessor.d.ts.map": { - "offset": 49659470, + "offset": 49878050, "size": 620, }, "trace.d.ts.map": { - "offset": 49660080, + "offset": 49878660, "size": 1100, }, "types.d.ts.map": { - "offset": 49661170, + "offset": 49879750, "size": 630, }, "utils": { "files": { "addOriginToSpan.d.ts.map": { - "offset": 49661790, + "offset": 49880380, "size": 320, }, "contextData.d.ts.map": { - "offset": 49662110, + "offset": 49880690, "size": 600, }, "enhanceDscWithOpenTelemetryRootSpanName.d.ts.map": { - "offset": 49662700, + "offset": 49881290, "size": 300, }, "generateSpanContextForPropagationContext.d.ts.map": { - "offset": 49663000, + "offset": 49881580, "size": 360, }, "getActiveSpan.d.ts.map": { - "offset": 49663360, + "offset": 49881940, "size": 240, }, "getRequestSpanData.d.ts.map": { - "offset": 49663590, + "offset": 49882170, "size": 380, }, "getSamplingDecision.d.ts.map": { - "offset": 49663970, + "offset": 49882550, "size": 280, }, "getSpanKind.d.ts.map": { - "offset": 49664240, + "offset": 49882820, "size": 290, }, "getTraceData.d.ts.map": { - "offset": 49664520, + "offset": 49883110, "size": 300, }, "groupSpansWithParents.d.ts.map": { - "offset": 49664820, + "offset": 49883400, "size": 510, }, "isSentryRequest.d.ts.map": { - "offset": 49665320, + "offset": 49883900, "size": 250, }, "makeTraceState.d.ts.map": { - "offset": 49665570, + "offset": 49884150, "size": 390, }, "mapStatus.d.ts.map": { - "offset": 49665960, + "offset": 49884540, "size": 290, }, "parseSpanDescription.d.ts.map": { - "offset": 49666240, + "offset": 49884820, "size": 1340, }, "setupCheck.d.ts.map": { - "offset": 49667570, + "offset": 49886160, "size": 370, }, "spanTypes.d.ts.map": { - "offset": 49667940, + "offset": 49886520, "size": 1100, }, "suppressTracing.d.ts.map": { - "offset": 49669040, + "offset": 49887620, "size": 220, }, }, @@ -71264,7 +71264,7 @@ exports[`node_module collectors > yarn ms 2`] = ` }, }, "package.json": { - "offset": 49669250, + "offset": 49887830, "size": 1640, }, }, @@ -71276,7 +71276,7 @@ exports[`node_module collectors > yarn ms 2`] = ` "browser-utils": { "files": { "LICENSE": { - "offset": 35566340, + "offset": 35784920, "size": 1100, }, "build": { @@ -71284,53 +71284,53 @@ exports[`node_module collectors > yarn ms 2`] = ` "cjs": { "files": { "debug-build.js": { - "offset": 35567440, + "offset": 35786020, "size": 530, }, "debug-build.js.map": { - "offset": 35567970, + "offset": 35786550, "size": 610, }, "getNativeImplementation.js": { - "offset": 35568570, + "offset": 35787150, "size": 4450, }, "getNativeImplementation.js.map": { - "offset": 35573020, + "offset": 35791600, "size": 6680, }, "index.js": { - "offset": 35579700, + "offset": 35798280, "size": 2070, }, "index.js.map": { - "offset": 35581760, + "offset": 35800340, "size": 130, }, "instrument": { "files": { "dom.js": { - "offset": 35581880, + "offset": 35800460, "size": 8730, }, "dom.js.map": { - "offset": 35590600, + "offset": 35809180, "size": 14800, }, "history.js": { - "offset": 35605400, + "offset": 35823980, "size": 2320, }, "history.js.map": { - "offset": 35607720, + "offset": 35826300, "size": 4050, }, "xhr.js": { - "offset": 35611770, + "offset": 35830350, "size": 5970, }, "xhr.js.map": { - "offset": 35617730, + "offset": 35836310, "size": 9970, }, }, @@ -71338,205 +71338,205 @@ exports[`node_module collectors > yarn ms 2`] = ` "metrics": { "files": { "browserMetrics.js": { - "offset": 35627690, + "offset": 35846270, "size": 22180, }, "browserMetrics.js.map": { - "offset": 35649870, + "offset": 35868450, "size": 41550, }, "cls.js": { - "offset": 35691410, + "offset": 35910000, "size": 3890, }, "cls.js.map": { - "offset": 35695300, + "offset": 35913880, "size": 7450, }, "inp.js": { - "offset": 35702740, + "offset": 35921320, "size": 4770, }, "inp.js.map": { - "offset": 35707510, + "offset": 35926090, "size": 9310, }, "instrument.js": { - "offset": 35716810, + "offset": 35935400, "size": 6530, }, "instrument.js.map": { - "offset": 35723340, + "offset": 35941930, "size": 15240, }, "utils.js": { - "offset": 35738580, + "offset": 35957170, "size": 4150, }, "utils.js.map": { - "offset": 35742730, + "offset": 35961310, "size": 6920, }, "web-vitals": { "files": { "getCLS.js": { - "offset": 35749640, + "offset": 35968230, "size": 4630, }, "getCLS.js.map": { - "offset": 35754270, + "offset": 35972850, "size": 6610, }, "getFID.js": { - "offset": 35760870, + "offset": 35979450, "size": 2710, }, "getFID.js.map": { - "offset": 35763570, + "offset": 35982150, "size": 4110, }, "getINP.js": { - "offset": 35767680, + "offset": 35986260, "size": 5290, }, "getINP.js.map": { - "offset": 35772970, + "offset": 35991550, "size": 7220, }, "getLCP.js": { - "offset": 35780180, + "offset": 35998760, "size": 4500, }, "getLCP.js.map": { - "offset": 35784670, + "offset": 36003260, "size": 6520, }, "lib": { "files": { "bindReporter.js": { - "offset": 35791190, + "offset": 36009770, "size": 1110, }, "bindReporter.js.map": { - "offset": 35792290, + "offset": 36010880, "size": 2920, }, "generateUniqueID.js": { - "offset": 35795210, + "offset": 36013800, "size": 1040, }, "generateUniqueID.js.map": { - "offset": 35796240, + "offset": 36014830, "size": 1370, }, "getActivationStart.js": { - "offset": 35797610, + "offset": 36016200, "size": 980, }, "getActivationStart.js.map": { - "offset": 35798590, + "offset": 36017170, "size": 1240, }, "getNavigationEntry.js": { - "offset": 35799820, + "offset": 36018400, "size": 1890, }, "getNavigationEntry.js.map": { - "offset": 35801710, + "offset": 36020290, "size": 2460, }, "getVisibilityWatcher.js": { - "offset": 35804170, + "offset": 36022750, "size": 3320, }, "getVisibilityWatcher.js.map": { - "offset": 35807480, + "offset": 36026070, "size": 4550, }, "initMetric.js": { - "offset": 35812030, + "offset": 36030620, "size": 1850, }, "initMetric.js.map": { - "offset": 35813880, + "offset": 36032470, "size": 2970, }, "interactions.js": { - "offset": 35816840, + "offset": 36035430, "size": 5200, }, "interactions.js.map": { - "offset": 35822040, + "offset": 36040620, "size": 7630, }, "observe.js": { - "offset": 35829660, + "offset": 36048240, "size": 1890, }, "observe.js.map": { - "offset": 35831540, + "offset": 36050130, "size": 3490, }, "onHidden.js": { - "offset": 35835030, + "offset": 36053620, "size": 2110, }, "onHidden.js.map": { - "offset": 35837140, + "offset": 36055730, "size": 2800, }, "polyfills": { "files": { "interactionCountPolyfill.js": { - "offset": 35839940, + "offset": 36058520, "size": 1930, }, "interactionCountPolyfill.js.map": { - "offset": 35841860, + "offset": 36060450, "size": 3050, }, }, }, "runOnce.js": { - "offset": 35844910, + "offset": 36063490, "size": 860, }, "runOnce.js.map": { - "offset": 35845770, + "offset": 36064350, "size": 1190, }, "whenActivated.js": { - "offset": 35846950, + "offset": 36065530, "size": 1000, }, "whenActivated.js.map": { - "offset": 35847950, + "offset": 36066530, "size": 1340, }, "whenIdle.js": { - "offset": 35849290, + "offset": 36067870, "size": 1520, }, "whenIdle.js.map": { - "offset": 35850800, + "offset": 36069380, "size": 2110, }, }, }, "onFCP.js": { - "offset": 35852900, + "offset": 36071490, "size": 2730, }, "onFCP.js.map": { - "offset": 35855620, + "offset": 36074210, "size": 3970, }, "onTTFB.js": { - "offset": 35859590, + "offset": 36078170, "size": 3390, }, "onTTFB.js.map": { - "offset": 35862970, + "offset": 36081560, "size": 4710, }, }, @@ -71544,11 +71544,11 @@ exports[`node_module collectors > yarn ms 2`] = ` }, }, "types.js": { - "offset": 35867680, + "offset": 36086260, "size": 200, }, "types.js.map": { - "offset": 35867880, + "offset": 36086460, "size": 460, }, }, @@ -71556,53 +71556,53 @@ exports[`node_module collectors > yarn ms 2`] = ` "esm": { "files": { "debug-build.js": { - "offset": 35868340, + "offset": 36086920, "size": 460, }, "debug-build.js.map": { - "offset": 35868790, + "offset": 36087370, "size": 610, }, "getNativeImplementation.js": { - "offset": 35869390, + "offset": 36087970, "size": 4270, }, "getNativeImplementation.js.map": { - "offset": 35873650, + "offset": 36092240, "size": 6620, }, "index.js": { - "offset": 35880270, + "offset": 36098850, "size": 890, }, "index.js.map": { - "offset": 35881160, + "offset": 36099740, "size": 100, }, "instrument": { "files": { "dom.js": { - "offset": 35881250, + "offset": 36099840, "size": 8610, }, "dom.js.map": { - "offset": 35889860, + "offset": 36108440, "size": 14690, }, "history.js": { - "offset": 35904540, + "offset": 36123120, "size": 2230, }, "history.js.map": { - "offset": 35906760, + "offset": 36125340, "size": 3950, }, "xhr.js": { - "offset": 35910710, + "offset": 36129290, "size": 5830, }, "xhr.js.map": { - "offset": 35916530, + "offset": 36135110, "size": 9860, }, }, @@ -71610,205 +71610,205 @@ exports[`node_module collectors > yarn ms 2`] = ` "metrics": { "files": { "browserMetrics.js": { - "offset": 35926390, + "offset": 36144970, "size": 21760, }, "browserMetrics.js.map": { - "offset": 35948140, + "offset": 36166730, "size": 40950, }, "cls.js": { - "offset": 35989090, + "offset": 36207680, "size": 4060, }, "cls.js.map": { - "offset": 35993150, + "offset": 36211730, "size": 6980, }, "inp.js": { - "offset": 36000120, + "offset": 36218710, "size": 4950, }, "inp.js.map": { - "offset": 36005070, + "offset": 36223650, "size": 8790, }, "instrument.js": { - "offset": 36013860, + "offset": 36232440, "size": 6150, }, "instrument.js.map": { - "offset": 36020000, + "offset": 36238580, "size": 15130, }, "utils.js": { - "offset": 36035130, + "offset": 36253710, "size": 3960, }, "utils.js.map": { - "offset": 36039080, + "offset": 36257670, "size": 6810, }, "web-vitals": { "files": { "getCLS.js": { - "offset": 36045890, + "offset": 36264470, "size": 4480, }, "getCLS.js.map": { - "offset": 36050360, + "offset": 36268940, "size": 6530, }, "getFID.js": { - "offset": 36056890, + "offset": 36275470, "size": 2520, }, "getFID.js.map": { - "offset": 36059400, + "offset": 36277990, "size": 4000, }, "getINP.js": { - "offset": 36063400, + "offset": 36281980, "size": 5130, }, "getINP.js.map": { - "offset": 36068530, + "offset": 36287110, "size": 6990, }, "getLCP.js": { - "offset": 36075520, + "offset": 36294100, "size": 4280, }, "getLCP.js.map": { - "offset": 36079790, + "offset": 36298370, "size": 6370, }, "lib": { "files": { "bindReporter.js": { - "offset": 36086150, + "offset": 36304730, "size": 1030, }, "bindReporter.js.map": { - "offset": 36087180, + "offset": 36305760, "size": 2920, }, "generateUniqueID.js": { - "offset": 36090100, + "offset": 36308680, "size": 960, }, "generateUniqueID.js.map": { - "offset": 36091050, + "offset": 36309630, "size": 1370, }, "getActivationStart.js": { - "offset": 36092420, + "offset": 36311000, "size": 880, }, "getActivationStart.js.map": { - "offset": 36093290, + "offset": 36311870, "size": 1210, }, "getNavigationEntry.js": { - "offset": 36094500, + "offset": 36313080, "size": 1790, }, "getNavigationEntry.js.map": { - "offset": 36096280, + "offset": 36314870, "size": 2450, }, "getVisibilityWatcher.js": { - "offset": 36098730, + "offset": 36317310, "size": 3210, }, "getVisibilityWatcher.js.map": { - "offset": 36101940, + "offset": 36320520, "size": 4540, }, "initMetric.js": { - "offset": 36106470, + "offset": 36325060, "size": 1700, }, "initMetric.js.map": { - "offset": 36108170, + "offset": 36326750, "size": 2890, }, "interactions.js": { - "offset": 36111050, + "offset": 36329630, "size": 4900, }, "interactions.js.map": { - "offset": 36115950, + "offset": 36334530, "size": 7600, }, "observe.js": { - "offset": 36123540, + "offset": 36342120, "size": 1820, }, "observe.js.map": { - "offset": 36125350, + "offset": 36343940, "size": 3490, }, "onHidden.js": { - "offset": 36128840, + "offset": 36347430, "size": 2020, }, "onHidden.js.map": { - "offset": 36130860, + "offset": 36349440, "size": 2780, }, "polyfills": { "files": { "interactionCountPolyfill.js": { - "offset": 36133640, + "offset": 36352220, "size": 1800, }, "interactionCountPolyfill.js.map": { - "offset": 36135440, + "offset": 36354020, "size": 3040, }, }, }, "runOnce.js": { - "offset": 36138470, + "offset": 36357060, "size": 790, }, "runOnce.js.map": { - "offset": 36139260, + "offset": 36357840, "size": 1190, }, "whenActivated.js": { - "offset": 36140440, + "offset": 36359020, "size": 910, }, "whenActivated.js.map": { - "offset": 36141350, + "offset": 36359930, "size": 1330, }, "whenIdle.js": { - "offset": 36142670, + "offset": 36361260, "size": 1400, }, "whenIdle.js.map": { - "offset": 36144070, + "offset": 36362660, "size": 2070, }, }, }, "onFCP.js": { - "offset": 36146140, + "offset": 36364720, "size": 2540, }, "onFCP.js.map": { - "offset": 36148670, + "offset": 36367260, "size": 3860, }, "onTTFB.js": { - "offset": 36152530, + "offset": 36371110, "size": 3190, }, "onTTFB.js.map": { - "offset": 36155710, + "offset": 36374300, "size": 4600, }, }, @@ -71816,15 +71816,15 @@ exports[`node_module collectors > yarn ms 2`] = ` }, }, "package.json": { - "offset": 36160310, + "offset": 36378900, "size": 60, }, "types.js": { - "offset": 36160370, + "offset": 36378950, "size": 130, }, "types.js.map": { - "offset": 36160500, + "offset": 36379080, "size": 450, }, }, @@ -71832,29 +71832,29 @@ exports[`node_module collectors > yarn ms 2`] = ` "types": { "files": { "debug-build.d.ts.map": { - "offset": 36160940, + "offset": 36379520, "size": 170, }, "getNativeImplementation.d.ts.map": { - "offset": 36161100, + "offset": 36379680, "size": 790, }, "index.d.ts.map": { - "offset": 36161890, + "offset": 36380470, "size": 570, }, "instrument": { "files": { "dom.d.ts.map": { - "offset": 36162450, + "offset": 36381040, "size": 310, }, "history.d.ts.map": { - "offset": 36162760, + "offset": 36381340, "size": 270, }, "xhr.d.ts.map": { - "offset": 36163030, + "offset": 36381610, "size": 350, }, }, @@ -71862,149 +71862,149 @@ exports[`node_module collectors > yarn ms 2`] = ` "metrics": { "files": { "browserMetrics.d.ts.map": { - "offset": 36163370, + "offset": 36381950, "size": 1010, }, "cls.d.ts.map": { - "offset": 36164370, + "offset": 36382960, "size": 170, }, "inp.d.ts.map": { - "offset": 36164540, + "offset": 36383120, "size": 240, }, "instrument.d.ts.map": { - "offset": 36164780, + "offset": 36383360, "size": 2490, }, "utils.d.ts.map": { - "offset": 36167270, + "offset": 36385850, "size": 780, }, "web-vitals": { "files": { "getCLS.d.ts.map": { - "offset": 36168050, + "offset": 36386630, "size": 350, }, "getFID.d.ts.map": { - "offset": 36168390, + "offset": 36386980, "size": 340, }, "getINP.d.ts.map": { - "offset": 36168730, + "offset": 36387310, "size": 360, }, "getLCP.d.ts.map": { - "offset": 36169080, + "offset": 36387660, "size": 340, }, "lib": { "files": { "bindReporter.d.ts.map": { - "offset": 36169420, + "offset": 36388000, "size": 300, }, "generateUniqueID.d.ts.map": { - "offset": 36169720, + "offset": 36388300, "size": 210, }, "getActivationStart.d.ts.map": { - "offset": 36169920, + "offset": 36388510, "size": 210, }, "getNavigationEntry.d.ts.map": { - "offset": 36170130, + "offset": 36388710, "size": 220, }, "getVisibilityWatcher.d.ts.map": { - "offset": 36170340, + "offset": 36388930, "size": 210, }, "initMetric.d.ts.map": { - "offset": 36170550, + "offset": 36389130, "size": 220, }, "interactions.d.ts.map": { - "offset": 36170760, + "offset": 36389340, "size": 660, }, "observe.d.ts.map": { - "offset": 36171420, + "offset": 36390000, "size": 560, }, "onHidden.d.ts.map": { - "offset": 36171980, + "offset": 36390560, "size": 260, }, "polyfills": { "files": { "interactionCountPolyfill.d.ts.map": { - "offset": 36172230, + "offset": 36390820, "size": 370, }, }, }, "runOnce.d.ts.map": { - "offset": 36172600, + "offset": 36391180, "size": 190, }, "whenActivated.d.ts.map": { - "offset": 36172790, + "offset": 36391370, "size": 210, }, "whenIdle.d.ts.map": { - "offset": 36172990, + "offset": 36391570, "size": 210, }, }, }, "onFCP.d.ts.map": { - "offset": 36173200, + "offset": 36391780, "size": 330, }, "onTTFB.d.ts.map": { - "offset": 36173530, + "offset": 36392110, "size": 350, }, "types": { "files": { "base.d.ts.map": { - "offset": 36175290, + "offset": 36393870, "size": 1480, }, "cls.d.ts.map": { - "offset": 36176770, + "offset": 36395350, "size": 690, }, "fcp.d.ts.map": { - "offset": 36177450, + "offset": 36396040, "size": 620, }, "fid.d.ts.map": { - "offset": 36178070, + "offset": 36396650, "size": 610, }, "inp.d.ts.map": { - "offset": 36178670, + "offset": 36397260, "size": 910, }, "lcp.d.ts.map": { - "offset": 36179580, + "offset": 36398160, "size": 790, }, "polyfills.d.ts.map": { - "offset": 36180360, + "offset": 36398950, "size": 290, }, "ttfb.d.ts.map": { - "offset": 36180650, + "offset": 36399230, "size": 650, }, }, }, "types.d.ts.map": { - "offset": 36173870, + "offset": 36392450, "size": 1420, }, }, @@ -72012,7 +72012,7 @@ exports[`node_module collectors > yarn ms 2`] = ` }, }, "types.d.ts.map": { - "offset": 36181300, + "offset": 36399880, "size": 140, }, }, @@ -72020,7 +72020,7 @@ exports[`node_module collectors > yarn ms 2`] = ` }, }, "package.json": { - "offset": 36181440, + "offset": 36400020, "size": 1140, }, }, @@ -72028,7 +72028,7 @@ exports[`node_module collectors > yarn ms 2`] = ` "feedback": { "files": { "LICENSE": { - "offset": 36182570, + "offset": 36401160, "size": 1100, }, "build": { @@ -72038,11 +72038,11 @@ exports[`node_module collectors > yarn ms 2`] = ` "cjs": { "files": { "index.js": { - "offset": 36183670, + "offset": 36402250, "size": 78170, }, "index.js.map": { - "offset": 36261840, + "offset": 36480420, "size": 175760, }, }, @@ -72050,15 +72050,15 @@ exports[`node_module collectors > yarn ms 2`] = ` "esm": { "files": { "index.js": { - "offset": 36437600, + "offset": 36656180, "size": 78020, }, "index.js.map": { - "offset": 36515610, + "offset": 36734200, "size": 175580, }, "package.json": { - "offset": 36691190, + "offset": 36909770, "size": 60, }, }, @@ -72068,7 +72068,7 @@ exports[`node_module collectors > yarn ms 2`] = ` "constants": { "files": { "index.d.ts.map": { - "offset": 36691240, + "offset": 36909830, "size": 830, }, }, @@ -72076,65 +72076,65 @@ exports[`node_module collectors > yarn ms 2`] = ` "core": { "files": { "TestClient.d.ts.map": { - "offset": 36692070, + "offset": 36910650, "size": 690, }, "components": { "files": { "Actor.css.d.ts.map": { - "offset": 36692750, + "offset": 36911340, "size": 220, }, "Actor.d.ts.map": { - "offset": 36692970, + "offset": 36911550, "size": 560, }, "Actor.test.d.ts.map": { - "offset": 36693520, + "offset": 36912100, "size": 150, }, "FeedbackIcon.d.ts.map": { - "offset": 36693660, + "offset": 36912240, "size": 190, }, }, }, "createMainStyles.d.ts.map": { - "offset": 36693850, + "offset": 36912430, "size": 300, }, "getFeedback.d.ts.map": { - "offset": 36694150, + "offset": 36912730, "size": 310, }, "getFeedback.test.d.ts.map": { - "offset": 36694450, + "offset": 36913030, "size": 140, }, "integration.d.ts.map": { - "offset": 36694590, + "offset": 36913170, "size": 850, }, "mockSdk.d.ts.map": { - "offset": 36695440, + "offset": 36914020, "size": 340, }, "sendFeedback.d.ts.map": { - "offset": 36695770, + "offset": 36914350, "size": 230, }, "sendFeedback.test.d.ts.map": { - "offset": 36696000, + "offset": 36914580, "size": 150, }, "types.d.ts.map": { - "offset": 36696140, + "offset": 36914720, "size": 500, }, }, }, "index.d.ts.map": { - "offset": 36696640, + "offset": 36915220, "size": 330, }, "modal": { @@ -72142,33 +72142,33 @@ exports[`node_module collectors > yarn ms 2`] = ` "components": { "files": { "Dialog.css.d.ts.map": { - "offset": 36696960, + "offset": 36915550, "size": 220, }, "Dialog.d.ts.map": { - "offset": 36697180, + "offset": 36915760, "size": 560, }, "DialogHeader.d.ts.map": { - "offset": 36697740, + "offset": 36916320, "size": 360, }, "Form.d.ts.map": { - "offset": 36698100, + "offset": 36916680, "size": 800, }, "SentryLogo.d.ts.map": { - "offset": 36698900, + "offset": 36917480, "size": 190, }, "SuccessIcon.d.ts.map": { - "offset": 36699080, + "offset": 36917670, "size": 190, }, }, }, "integration.d.ts.map": { - "offset": 36699270, + "offset": 36917860, "size": 230, }, }, @@ -72178,25 +72178,25 @@ exports[`node_module collectors > yarn ms 2`] = ` "components": { "files": { "CropCorner.d.ts.map": { - "offset": 36699500, + "offset": 36918080, "size": 410, }, "ScreenshotEditor.d.ts.map": { - "offset": 36699900, + "offset": 36918490, "size": 720, }, "ScreenshotInput.css.d.ts.map": { - "offset": 36700620, + "offset": 36919200, "size": 240, }, "useTakeScreenshot.d.ts.map": { - "offset": 36700860, + "offset": 36919440, "size": 620, }, }, }, "integration.d.ts.map": { - "offset": 36701470, + "offset": 36920060, "size": 230, }, }, @@ -72204,23 +72204,23 @@ exports[`node_module collectors > yarn ms 2`] = ` "util": { "files": { "debug-build.d.ts.map": { - "offset": 36701700, + "offset": 36920280, "size": 180, }, "isScreenshotSupported.d.ts.map": { - "offset": 36701870, + "offset": 36920450, "size": 210, }, "mergeOptions.d.ts.map": { - "offset": 36702080, + "offset": 36920660, "size": 330, }, "setAttributesNS.d.ts.map": { - "offset": 36702400, + "offset": 36920980, "size": 270, }, "validate.d.ts.map": { - "offset": 36702670, + "offset": 36921250, "size": 390, }, }, @@ -72232,7 +72232,7 @@ exports[`node_module collectors > yarn ms 2`] = ` }, }, "package.json": { - "offset": 36703050, + "offset": 36921630, "size": 1220, }, }, @@ -72240,7 +72240,7 @@ exports[`node_module collectors > yarn ms 2`] = ` "replay": { "files": { "LICENSE": { - "offset": 36704260, + "offset": 36922840, "size": 1100, }, "build": { @@ -72250,11 +72250,11 @@ exports[`node_module collectors > yarn ms 2`] = ` "cjs": { "files": { "index.js": { - "offset": 36705360, + "offset": 36923940, "size": 321040, }, "index.js.map": { - "offset": 37026390, + "offset": 37244980, "size": 1526840, }, }, @@ -72262,15 +72262,15 @@ exports[`node_module collectors > yarn ms 2`] = ` "esm": { "files": { "index.js": { - "offset": 38553230, + "offset": 38771820, "size": 321380, }, "index.js.map": { - "offset": 38874600, + "offset": 39093190, "size": 1523230, }, "package.json": { - "offset": 40397830, + "offset": 40616420, "size": 60, }, }, @@ -72278,91 +72278,91 @@ exports[`node_module collectors > yarn ms 2`] = ` "types": { "files": { "constants.d.ts.map": { - "offset": 40397890, + "offset": 40616470, "size": 890, }, "coreHandlers": { "files": { "handleAfterSendEvent.d.ts.map": { - "offset": 40398770, + "offset": 40617350, "size": 410, }, "handleBeforeSendEvent.d.ts.map": { - "offset": 40399180, + "offset": 40617760, "size": 380, }, "handleBreadcrumbs.d.ts.map": { - "offset": 40399560, + "offset": 40618140, "size": 620, }, "handleClick.d.ts.map": { - "offset": 40400170, + "offset": 40618750, "size": 1500, }, "handleDom.d.ts.map": { - "offset": 40401660, + "offset": 40620250, "size": 500, }, "handleGlobalEvent.d.ts.map": { - "offset": 40402160, + "offset": 40620750, "size": 380, }, "handleHistory.d.ts.map": { - "offset": 40402540, + "offset": 40621120, "size": 340, }, "handleKeyboardEvent.d.ts.map": { - "offset": 40402870, + "offset": 40621450, "size": 420, }, "handleNetworkBreadcrumbs.d.ts.map": { - "offset": 40403280, + "offset": 40621860, "size": 530, }, "performanceObserver.d.ts.map": { - "offset": 40403810, + "offset": 40622390, "size": 280, }, "util": { "files": { "addBreadcrumbEvent.d.ts.map": { - "offset": 40404080, + "offset": 40622660, "size": 340, }, "addFeedbackBreadcrumb.d.ts.map": { - "offset": 40404420, + "offset": 40623000, "size": 350, }, "addNetworkBreadcrumb.d.ts.map": { - "offset": 40404760, + "offset": 40623350, "size": 360, }, "domUtils.d.ts.map": { - "offset": 40405120, + "offset": 40623700, "size": 500, }, "fetchUtils.d.ts.map": { - "offset": 40405610, + "offset": 40624190, "size": 890, }, "getAttributesToRecord.d.ts.map": { - "offset": 40406500, + "offset": 40625080, "size": 290, }, "networkUtils.d.ts.map": { - "offset": 40406780, + "offset": 40625360, "size": 1370, }, "onWindowOpen.d.ts.map": { - "offset": 40408150, + "offset": 40626730, "size": 260, }, "shouldSampleForBufferEvent.d.ts.map": { - "offset": 40408400, + "offset": 40626990, "size": 360, }, "xhrUtils.d.ts.map": { - "offset": 40408760, + "offset": 40627340, "size": 810, }, }, @@ -72370,81 +72370,81 @@ exports[`node_module collectors > yarn ms 2`] = ` }, }, "debug-build.d.ts.map": { - "offset": 40409560, + "offset": 40628150, "size": 170, }, "eventBuffer": { "files": { "EventBufferArray.d.ts.map": { - "offset": 40409730, + "offset": 40628310, "size": 730, }, "EventBufferCompressionWorker.d.ts.map": { - "offset": 40410460, + "offset": 40629040, "size": 940, }, "EventBufferProxy.d.ts.map": { - "offset": 40411400, + "offset": 40629980, "size": 1070, }, "WorkerHandler.d.ts.map": { - "offset": 40412460, + "offset": 40631050, "size": 580, }, "error.d.ts.map": { - "offset": 40413040, + "offset": 40631630, "size": 180, }, "index.d.ts.map": { - "offset": 40413210, + "offset": 40631800, "size": 350, }, }, }, "index.d.ts.map": { - "offset": 40413560, + "offset": 40632150, "size": 380, }, "integration.d.ts.map": { - "offset": 40413940, + "offset": 40632520, "size": 1550, }, "replay.d.ts.map": { - "offset": 40415480, + "offset": 40634060, "size": 3670, }, "session": { "files": { "Session.d.ts.map": { - "offset": 40419140, + "offset": 40637730, "size": 300, }, "clearSession.d.ts.map": { - "offset": 40419440, + "offset": 40638020, "size": 250, }, "createSession.d.ts.map": { - "offset": 40419690, + "offset": 40638270, "size": 460, }, "fetchSession.d.ts.map": { - "offset": 40420140, + "offset": 40638720, "size": 240, }, "index.d.ts.map": { - "offset": 40420380, + "offset": 40638960, "size": 150, }, "loadOrCreateSession.d.ts.map": { - "offset": 40420520, + "offset": 40639100, "size": 420, }, "saveSession.d.ts.map": { - "offset": 40420940, + "offset": 40639520, "size": 250, }, "shouldRefreshSession.d.ts.map": { - "offset": 40421180, + "offset": 40639760, "size": 370, }, }, @@ -72452,27 +72452,27 @@ exports[`node_module collectors > yarn ms 2`] = ` "types": { "files": { "index.d.ts.map": { - "offset": 40421540, + "offset": 40640130, "size": 230, }, "performance.d.ts.map": { - "offset": 40421770, + "offset": 40640350, "size": 2290, }, "replay.d.ts.map": { - "offset": 40424050, + "offset": 40642630, "size": 7490, }, "replayFrame.d.ts.map": { - "offset": 40431530, + "offset": 40650120, "size": 4790, }, "request.d.ts.map": { - "offset": 40436320, + "offset": 40654900, "size": 610, }, "rrweb.d.ts.map": { - "offset": 40436920, + "offset": 40655510, "size": 1840, }, }, @@ -72480,115 +72480,115 @@ exports[`node_module collectors > yarn ms 2`] = ` "util": { "files": { "addEvent.d.ts.map": { - "offset": 40438760, + "offset": 40657340, "size": 540, }, "addGlobalListeners.d.ts.map": { - "offset": 40439290, + "offset": 40657880, "size": 260, }, "addMemoryEntry.d.ts.map": { - "offset": 40439550, + "offset": 40658130, "size": 300, }, "createBreadcrumb.d.ts.map": { - "offset": 40439850, + "offset": 40658430, "size": 350, }, "createPerformanceEntries.d.ts.map": { - "offset": 40440200, + "offset": 40658780, "size": 1270, }, "createPerformanceSpans.d.ts.map": { - "offset": 40441460, + "offset": 40660050, "size": 380, }, "createReplayEnvelope.d.ts.map": { - "offset": 40441840, + "offset": 40660420, "size": 370, }, "debounce.d.ts.map": { - "offset": 40442200, + "offset": 40660780, "size": 490, }, "eventUtils.d.ts.map": { - "offset": 40442690, + "offset": 40661270, "size": 530, }, "getPrivacyOptions.d.ts.map": { - "offset": 40443210, + "offset": 40661790, "size": 610, }, "getRecordingSamplingOptions.d.ts.map": { - "offset": 40443810, + "offset": 40662400, "size": 280, }, "getReplay.d.ts.map": { - "offset": 40444090, + "offset": 40662670, "size": 260, }, "handleRecordingEmit.d.ts.map": { - "offset": 40444340, + "offset": 40662920, "size": 440, }, "hasSessionStorage.d.ts.map": { - "offset": 40444780, + "offset": 40663360, "size": 190, }, "isExpired.d.ts.map": { - "offset": 40444960, + "offset": 40663550, "size": 260, }, "isRrwebError.d.ts.map": { - "offset": 40445220, + "offset": 40663800, "size": 280, }, "isSampled.d.ts.map": { - "offset": 40445490, + "offset": 40664070, "size": 200, }, "isSessionExpired.d.ts.map": { - "offset": 40445690, + "offset": 40664270, "size": 400, }, "logger.d.ts.map": { - "offset": 40446080, + "offset": 40664660, "size": 660, }, "maskAttribute.d.ts.map": { - "offset": 40446730, + "offset": 40665320, "size": 520, }, "prepareRecordingData.d.ts.map": { - "offset": 40447250, + "offset": 40665830, "size": 370, }, "prepareReplayEvent.d.ts.map": { - "offset": 40447610, + "offset": 40666200, "size": 550, }, "resetReplayIdOnDynamicSamplingContext.d.ts.map": { - "offset": 40448160, + "offset": 40666740, "size": 230, }, "sendReplay.d.ts.map": { - "offset": 40448390, + "offset": 40666970, "size": 280, }, "sendReplayRequest.d.ts.map": { - "offset": 40448660, + "offset": 40667240, "size": 560, }, "shouldFilterRequest.d.ts.map": { - "offset": 40449220, + "offset": 40667800, "size": 280, }, "throttle.d.ts.map": { - "offset": 40449490, + "offset": 40668080, "size": 450, }, "timestamp.d.ts.map": { - "offset": 40449940, + "offset": 40668520, "size": 260, }, }, @@ -72600,7 +72600,7 @@ exports[`node_module collectors > yarn ms 2`] = ` }, }, "package.json": { - "offset": 40450190, + "offset": 40668770, "size": 1500, }, }, @@ -72608,7 +72608,7 @@ exports[`node_module collectors > yarn ms 2`] = ` "replay-canvas": { "files": { "LICENSE": { - "offset": 40451690, + "offset": 40670270, "size": 1100, }, "build": { @@ -72618,11 +72618,11 @@ exports[`node_module collectors > yarn ms 2`] = ` "cjs": { "files": { "index.js": { - "offset": 40452780, + "offset": 40671360, "size": 32910, }, "index.js.map": { - "offset": 40485690, + "offset": 40704270, "size": 227260, }, }, @@ -72630,15 +72630,15 @@ exports[`node_module collectors > yarn ms 2`] = ` "esm": { "files": { "index.js": { - "offset": 40712950, + "offset": 40931530, "size": 32830, }, "index.js.map": { - "offset": 40745770, + "offset": 40964360, "size": 227210, }, "package.json": { - "offset": 40972980, + "offset": 41191560, "size": 60, }, }, @@ -72646,11 +72646,11 @@ exports[`node_module collectors > yarn ms 2`] = ` "types": { "files": { "canvas.d.ts.map": { - "offset": 40973040, + "offset": 41191620, "size": 990, }, "index.d.ts.map": { - "offset": 40974030, + "offset": 41192610, "size": 200, }, }, @@ -72660,7 +72660,7 @@ exports[`node_module collectors > yarn ms 2`] = ` }, }, "package.json": { - "offset": 40974220, + "offset": 41192800, "size": 1290, }, }, @@ -72673,12 +72673,12 @@ exports[`node_module collectors > yarn ms 2`] = ` "files": { "LICENSE": { "executable": true, - "offset": 49670880, + "offset": 49889470, "size": 1150, }, "package.json": { "executable": true, - "offset": 49672020, + "offset": 49890610, "size": 590, }, }, @@ -72686,11 +72686,11 @@ exports[`node_module collectors > yarn ms 2`] = ` "mysql": { "files": { "LICENSE": { - "offset": 49672610, + "offset": 49891190, "size": 1150, }, "package.json": { - "offset": 49673750, + "offset": 49892330, "size": 580, }, }, @@ -72698,11 +72698,11 @@ exports[`node_module collectors > yarn ms 2`] = ` "node": { "files": { "LICENSE": { - "offset": 49674320, + "offset": 49892900, "size": 1150, }, "package.json": { - "offset": 49675460, + "offset": 49894050, "size": 750, }, }, @@ -72710,15 +72710,15 @@ exports[`node_module collectors > yarn ms 2`] = ` "pg": { "files": { "LICENSE": { - "offset": 49676210, + "offset": 49894800, "size": 1150, }, "index.d.mts": { - "offset": 49677350, + "offset": 49895940, "size": 1980, }, "package.json": { - "offset": 49679330, + "offset": 49897920, "size": 820, }, }, @@ -72726,11 +72726,11 @@ exports[`node_module collectors > yarn ms 2`] = ` "pg-pool": { "files": { "LICENSE": { - "offset": 49680140, + "offset": 49898730, "size": 1150, }, "package.json": { - "offset": 49681290, + "offset": 49899870, "size": 580, }, }, @@ -72738,11 +72738,11 @@ exports[`node_module collectors > yarn ms 2`] = ` "shimmer": { "files": { "LICENSE": { - "offset": 49681860, + "offset": 49900450, "size": 1150, }, "package.json": { - "offset": 49683010, + "offset": 49901590, "size": 560, }, }, @@ -72750,11 +72750,11 @@ exports[`node_module collectors > yarn ms 2`] = ` "tedious": { "files": { "LICENSE": { - "offset": 49683560, + "offset": 49902140, "size": 1150, }, "package.json": { - "offset": 49684700, + "offset": 49903280, "size": 590, }, }, @@ -72764,14 +72764,14 @@ exports[`node_module collectors > yarn ms 2`] = ` "acorn": { "files": { "LICENSE": { - "offset": 49685280, + "offset": 49903870, "size": 1100, }, "bin": { "files": { "acorn": { "executable": true, - "offset": 49686380, + "offset": 49904970, "size": 60, }, }, @@ -72779,25 +72779,25 @@ exports[`node_module collectors > yarn ms 2`] = ` "dist": { "files": { "acorn.d.mts": { - "offset": 49686440, + "offset": 49905030, "size": 22020, }, "acorn.js": { - "offset": 49708460, + "offset": 49927040, "size": 242820, }, "acorn.mjs": { - "offset": 49951280, + "offset": 50169860, "size": 230980, }, "bin.js": { - "offset": 50182250, + "offset": 50400830, "size": 3330, }, }, }, "package.json": { - "offset": 50185580, + "offset": 50404160, "size": 1000, }, }, @@ -72805,29 +72805,29 @@ exports[`node_module collectors > yarn ms 2`] = ` "acorn-import-attributes": { "files": { "LICENSE": { - "offset": 50186580, + "offset": 50405160, "size": 1070, }, "lib": { "files": { "index.js": { - "offset": 50187650, + "offset": 50406230, "size": 10490, }, "index.mjs": { - "offset": 50198130, + "offset": 50416710, "size": 9400, }, }, }, "package.json": { - "offset": 50207530, + "offset": 50426110, "size": 1010, }, "src": { "files": { "index.js": { - "offset": 50208530, + "offset": 50427110, "size": 9400, }, }, @@ -72838,29 +72838,29 @@ exports[`node_module collectors > yarn ms 2`] = ` "files": { "LICENSE": { "executable": true, - "offset": 50217930, + "offset": 50436510, "size": 1090, }, "dist": { "files": { "lexer.js": { - "offset": 50219020, + "offset": 50437600, "size": 33510, }, "lexer.mjs": { - "offset": 50252520, + "offset": 50471110, "size": 33480, }, }, }, "lexer.js": { "executable": true, - "offset": 50286000, + "offset": 50504590, "size": 53720, }, "package.json": { "executable": true, - "offset": 50339720, + "offset": 50558300, "size": 830, }, }, @@ -72868,29 +72868,29 @@ exports[`node_module collectors > yarn ms 2`] = ` "debug": { "files": { "LICENSE": { - "offset": 50340550, + "offset": 50559130, "size": 1140, }, "package.json": { - "offset": 50341680, + "offset": 50560270, "size": 910, }, "src": { "files": { "browser.js": { - "offset": 50342590, + "offset": 50561180, "size": 6110, }, "common.js": { - "offset": 50348700, + "offset": 50567280, "size": 6920, }, "index.js": { - "offset": 50355610, + "offset": 50574200, "size": 320, }, "node.js": { - "offset": 50355930, + "offset": 50574510, "size": 4730, }, }, @@ -72900,39 +72900,39 @@ exports[`node_module collectors > yarn ms 2`] = ` "deepmerge": { "files": { ".editorconfig": { - "offset": 50360650, + "offset": 50579240, "size": 120, }, ".eslintcache": { - "offset": 50360770, + "offset": 50579350, "size": 390, }, "dist": { "files": { "cjs.js": { - "offset": 50361150, + "offset": 50579730, "size": 4050, }, "umd.js": { - "offset": 50365200, + "offset": 50583780, "size": 4420, }, }, }, "index.js": { - "offset": 50369620, + "offset": 50588200, "size": 3300, }, "license.txt": { - "offset": 50372910, + "offset": 50591490, "size": 1120, }, "package.json": { - "offset": 50374030, + "offset": 50592610, "size": 730, }, "rollup.config.js": { - "offset": 50374760, + "offset": 50593340, "size": 350, }, }, @@ -72940,19 +72940,19 @@ exports[`node_module collectors > yarn ms 2`] = ` "electron-clear-data": { "files": { "LICENSE.md": { - "offset": 50375100, + "offset": 50593680, "size": 1060, }, "dist": { "files": { "main.js": { - "offset": 50376160, + "offset": 50594740, "size": 1740, }, }, }, "package.json": { - "offset": 50377890, + "offset": 50596470, "size": 960, }, }, @@ -72960,27 +72960,27 @@ exports[`node_module collectors > yarn ms 2`] = ` "forwarded-parse": { "files": { "LICENSE": { - "offset": 50378850, + "offset": 50597430, "size": 1060, }, "index.js": { - "offset": 50379910, + "offset": 50598490, "size": 4200, }, "lib": { "files": { "ascii.js": { - "offset": 50384100, + "offset": 50602680, "size": 2230, }, "error.js": { - "offset": 50386330, + "offset": 50604910, "size": 470, }, }, }, "package.json": { - "offset": 50386790, + "offset": 50605380, "size": 470, }, }, @@ -72988,23 +72988,23 @@ exports[`node_module collectors > yarn ms 2`] = ` "function-bind": { "files": { ".nycrc": { - "offset": 50387260, + "offset": 50605840, "size": 220, }, "LICENSE": { - "offset": 50387470, + "offset": 50606060, "size": 1060, }, "implementation.js": { - "offset": 50388530, + "offset": 50607110, "size": 2050, }, "index.js": { - "offset": 50390570, + "offset": 50609150, "size": 130, }, "package.json": { - "offset": 50390700, + "offset": 50609280, "size": 1330, }, }, @@ -73012,23 +73012,23 @@ exports[`node_module collectors > yarn ms 2`] = ` "hasown": { "files": { ".nycrc": { - "offset": 50392020, + "offset": 50610610, "size": 220, }, "LICENSE": { - "offset": 50392240, + "offset": 50610820, "size": 1090, }, "index.js": { - "offset": 50393320, + "offset": 50611910, "size": 210, }, "package.json": { - "offset": 50393530, + "offset": 50612110, "size": 1480, }, "tsconfig.json": { - "offset": 50395000, + "offset": 50613590, "size": 80, }, }, @@ -73036,79 +73036,79 @@ exports[`node_module collectors > yarn ms 2`] = ` "import-in-the-middle": { "files": { ".editorconfig": { - "offset": 50395080, + "offset": 50613660, "size": 220, }, ".eslintrc.yaml": { - "offset": 50395290, + "offset": 50613870, "size": 560, }, ".release-please-manifest.json": { - "offset": 50395840, + "offset": 50614430, "size": 20, }, "CODE_OF_CONDUCT.md": { - "offset": 50395860, + "offset": 50614450, "size": 150, }, "CONTRIBUTING.md": { - "offset": 50396010, + "offset": 50614590, "size": 1410, }, "GOVERNANCE.md": { - "offset": 50397420, + "offset": 50616000, "size": 1270, }, "LICENSE": { - "offset": 50398690, + "offset": 50617270, "size": 11360, }, "LICENSE-3rdparty.csv": { - "offset": 50410040, + "offset": 50628630, "size": 210, }, "NOTICE": { - "offset": 50410250, + "offset": 50628830, "size": 1500, }, "hook.js": { - "offset": 50411740, + "offset": 50630320, "size": 14810, }, "hook.mjs": { - "offset": 50426550, + "offset": 50645130, "size": 420, }, "index.js": { - "offset": 50426960, + "offset": 50645540, "size": 4720, }, "lib": { "files": { "get-esm-exports.js": { - "offset": 50431680, + "offset": 50650260, "size": 3450, }, "get-exports.js": { - "offset": 50435120, + "offset": 50653700, "size": 6410, }, "register.js": { - "offset": 50441520, + "offset": 50660100, "size": 1720, }, }, }, "package.json": { - "offset": 50443230, + "offset": 50661820, "size": 1400, }, "release-please-config.json": { - "offset": 50444630, + "offset": 50663220, "size": 300, }, "tsconfig.json": { - "offset": 50444930, + "offset": 50663520, "size": 310, }, }, @@ -73116,23 +73116,23 @@ exports[`node_module collectors > yarn ms 2`] = ` "is-core-module": { "files": { ".nycrc": { - "offset": 50445240, + "offset": 50663820, "size": 140, }, "LICENSE": { - "offset": 50445380, + "offset": 50663960, "size": 1080, }, "core.json": { - "offset": 50446450, + "offset": 50665040, "size": 5960, }, "index.js": { - "offset": 50452410, + "offset": 50670990, "size": 1770, }, "package.json": { - "offset": 50454170, + "offset": 50672760, "size": 1240, }, }, @@ -73140,15 +73140,15 @@ exports[`node_module collectors > yarn ms 2`] = ` "module-details-from-path": { "files": { "LICENSE": { - "offset": 50455410, + "offset": 50673990, "size": 1100, }, "index.js": { - "offset": 50456500, + "offset": 50675080, "size": 970, }, "package.json": { - "offset": 50457470, + "offset": 50676050, "size": 680, }, }, @@ -73156,15 +73156,15 @@ exports[`node_module collectors > yarn ms 2`] = ` "ms": { "files": { "index.js": { - "offset": 50458140, + "offset": 50676720, "size": 3030, }, "license.md": { - "offset": 50461160, + "offset": 50679750, "size": 1080, }, "package.json": { - "offset": 50462240, + "offset": 50680830, "size": 500, }, }, @@ -73172,15 +73172,15 @@ exports[`node_module collectors > yarn ms 2`] = ` "path-parse": { "files": { "LICENSE": { - "offset": 50462740, + "offset": 50681320, "size": 1080, }, "index.js": { - "offset": 50463820, + "offset": 50682400, "size": 1900, }, "package.json": { - "offset": 50465710, + "offset": 50684300, "size": 370, }, }, @@ -73188,15 +73188,15 @@ exports[`node_module collectors > yarn ms 2`] = ` "pg-int8": { "files": { "LICENSE": { - "offset": 50466080, + "offset": 50684660, "size": 750, }, "index.js": { - "offset": 50466830, + "offset": 50685410, "size": 1580, }, "package.json": { - "offset": 50468400, + "offset": 50686980, "size": 410, }, }, @@ -73204,81 +73204,81 @@ exports[`node_module collectors > yarn ms 2`] = ` "pg-protocol": { "files": { "LICENSE": { - "offset": 50468800, + "offset": 50687380, "size": 1080, }, "dist": { "files": { "b.js": { - "offset": 50469880, + "offset": 50688460, "size": 640, }, "b.js.map": { - "offset": 50470510, + "offset": 50689100, "size": 800, }, "buffer-reader.js": { - "offset": 50471300, - "size": 1640, + "offset": 50689890, + "size": 1610, }, "buffer-reader.js.map": { - "offset": 50472940, - "size": 1750, + "offset": 50691490, + "size": 1720, }, "buffer-writer.js": { - "offset": 50474690, + "offset": 50693210, "size": 2780, }, "buffer-writer.js.map": { - "offset": 50477460, + "offset": 50695980, "size": 3090, }, "inbound-parser.test.js": { - "offset": 50480550, + "offset": 50699070, "size": 19520, }, "inbound-parser.test.js.map": { - "offset": 50500060, + "offset": 50718580, "size": 14940, }, "index.js": { - "offset": 50515000, + "offset": 50733520, "size": 800, }, "index.js.map": { - "offset": 50515790, + "offset": 50734310, "size": 530, }, "messages.js": { - "offset": 50516320, + "offset": 50734830, "size": 4980, }, "messages.js.map": { - "offset": 50521290, + "offset": 50739810, "size": 3390, }, "outbound-serializer.test.js": { - "offset": 50524670, + "offset": 50743190, "size": 11070, }, "outbound-serializer.test.js.map": { - "offset": 50535740, + "offset": 50754260, "size": 10280, }, "parser.js": { - "offset": 50546010, + "offset": 50764530, "size": 13450, }, "parser.js.map": { - "offset": 50559460, + "offset": 50777980, "size": 10480, }, "serializer.js": { - "offset": 50569930, + "offset": 50788450, "size": 6940, }, "serializer.js.map": { - "offset": 50576870, + "offset": 50795390, "size": 7130, }, }, @@ -73286,61 +73286,61 @@ exports[`node_module collectors > yarn ms 2`] = ` "esm": { "files": { "index.js": { - "offset": 50583990, + "offset": 50802510, "size": 330, }, }, }, "package.json": { - "offset": 50584320, + "offset": 50802840, "size": 880, }, "src": { "files": { "b.ts": { - "offset": 50585190, + "offset": 50803710, "size": 480, }, "buffer-reader.ts": { - "offset": 50585660, - "size": 1440, + "offset": 50804180, + "size": 1410, }, "buffer-writer.ts": { - "offset": 50587100, + "offset": 50805590, "size": 2510, }, "inbound-parser.test.ts": { - "offset": 50589600, + "offset": 50808090, "size": 15410, }, "index.ts": { - "offset": 50605010, + "offset": 50823490, "size": 450, }, "messages.ts": { - "offset": 50605450, + "offset": 50823940, "size": 6460, }, "outbound-serializer.test.ts": { - "offset": 50611910, + "offset": 50830400, "size": 8570, }, "parser.ts": { - "offset": 50620470, + "offset": 50838960, "size": 12990, }, "serializer.ts": { - "offset": 50633460, + "offset": 50851950, "size": 7200, }, "testing": { "files": { "buffer-list.ts": { - "offset": 50640650, + "offset": 50859140, "size": 1730, }, "test-buffers.ts": { - "offset": 50642380, + "offset": 50860870, "size": 4360, }, }, @@ -73352,39 +73352,39 @@ exports[`node_module collectors > yarn ms 2`] = ` "pg-types": { "files": { "Makefile": { - "offset": 50646740, + "offset": 50865230, "size": 240, }, "index.js": { - "offset": 50646970, + "offset": 50865460, "size": 1220, }, "index.test-d.ts": { - "offset": 50648190, + "offset": 50866670, "size": 760, }, "lib": { "files": { "arrayParser.js": { - "offset": 50648950, + "offset": 50867430, "size": 210, }, "binaryParsers.js": { - "offset": 50649150, + "offset": 50867640, "size": 6070, }, "builtins.js": { - "offset": 50655220, + "offset": 50873700, "size": 1570, }, "textParsers.js": { - "offset": 50656780, + "offset": 50875270, "size": 5370, }, }, }, "package.json": { - "offset": 50662150, + "offset": 50880630, "size": 710, }, }, @@ -73392,15 +73392,15 @@ exports[`node_module collectors > yarn ms 2`] = ` "postgres-array": { "files": { "index.js": { - "offset": 50662860, + "offset": 50881340, "size": 2320, }, "license": { - "offset": 50665180, + "offset": 50883660, "size": 1120, }, "package.json": { - "offset": 50666290, + "offset": 50884770, "size": 530, }, }, @@ -73408,15 +73408,15 @@ exports[`node_module collectors > yarn ms 2`] = ` "postgres-bytea": { "files": { "index.js": { - "offset": 50666810, + "offset": 50885300, "size": 870, }, "license": { - "offset": 50667680, + "offset": 50886160, "size": 1120, }, "package.json": { - "offset": 50668790, + "offset": 50887270, "size": 480, }, }, @@ -73424,15 +73424,15 @@ exports[`node_module collectors > yarn ms 2`] = ` "postgres-date": { "files": { "index.js": { - "offset": 50669270, + "offset": 50887750, "size": 2680, }, "license": { - "offset": 50671940, + "offset": 50890430, "size": 1120, }, "package.json": { - "offset": 50673050, + "offset": 50891540, "size": 490, }, }, @@ -73440,15 +73440,15 @@ exports[`node_module collectors > yarn ms 2`] = ` "postgres-interval": { "files": { "index.js": { - "offset": 50673540, + "offset": 50892020, "size": 3420, }, "license": { - "offset": 50676950, + "offset": 50895440, "size": 1120, }, "package.json": { - "offset": 50678060, + "offset": 50896550, "size": 540, }, }, @@ -73456,15 +73456,15 @@ exports[`node_module collectors > yarn ms 2`] = ` "require-in-the-middle": { "files": { "LICENSE": { - "offset": 50678600, + "offset": 50897090, "size": 1200, }, "index.js": { - "offset": 50679790, + "offset": 50898280, "size": 14150, }, "package.json": { - "offset": 50693940, + "offset": 50912430, "size": 970, }, }, @@ -73472,80 +73472,80 @@ exports[`node_module collectors > yarn ms 2`] = ` "resolve": { "files": { ".editorconfig": { - "offset": 50694910, + "offset": 50913400, "size": 610, }, "LICENSE": { - "offset": 50695520, + "offset": 50914000, "size": 1080, }, "SECURITY.md": { - "offset": 50696590, + "offset": 50915070, "size": 360, }, "async.js": { - "offset": 50696950, + "offset": 50915430, "size": 60, }, "bin": { "files": { "resolve": { "executable": true, - "offset": 50697000, + "offset": 50915490, "size": 1540, }, }, }, "index.js": { - "offset": 50698540, + "offset": 50917020, "size": 180, }, "lib": { "files": { "async.js": { - "offset": 50698710, + "offset": 50917200, "size": 11520, }, "caller.js": { - "offset": 50710230, + "offset": 50928710, "size": 360, }, "core.js": { - "offset": 50710580, + "offset": 50929070, "size": 310, }, "core.json": { - "offset": 50710890, + "offset": 50929380, "size": 5960, }, "homedir.js": { - "offset": 50716840, + "offset": 50935330, "size": 810, }, "is-core.js": { - "offset": 50717650, + "offset": 50936130, "size": 120, }, "node-modules-paths.js": { - "offset": 50717760, + "offset": 50936250, "size": 1370, }, "normalize-options.js": { - "offset": 50719130, + "offset": 50937620, "size": 350, }, "sync.js": { - "offset": 50719480, + "offset": 50937960, "size": 7150, }, }, }, "package.json": { - "offset": 50726620, + "offset": 50945110, "size": 1320, }, "sync.js": { - "offset": 50727940, + "offset": 50946430, "size": 60, }, }, @@ -73553,14 +73553,14 @@ exports[`node_module collectors > yarn ms 2`] = ` "semver": { "files": { "LICENSE": { - "offset": 50728000, + "offset": 50946480, "size": 770, }, "bin": { "files": { "semver.js": { "executable": true, - "offset": 50728760, + "offset": 50947250, "size": 4750, }, }, @@ -73568,19 +73568,19 @@ exports[`node_module collectors > yarn ms 2`] = ` "classes": { "files": { "comparator.js": { - "offset": 50733510, + "offset": 50952000, "size": 3640, }, "index.js": { - "offset": 50737140, + "offset": 50955630, "size": 150, }, "range.js": { - "offset": 50737280, + "offset": 50955770, "size": 14980, }, "semver.js": { - "offset": 50752260, + "offset": 50970750, "size": 9480, }, }, @@ -73588,191 +73588,191 @@ exports[`node_module collectors > yarn ms 2`] = ` "functions": { "files": { "clean.js": { - "offset": 50761740, + "offset": 50980230, "size": 210, }, "cmp.js": { - "offset": 50761950, + "offset": 50980430, "size": 970, }, "coerce.js": { - "offset": 50762910, + "offset": 50981390, "size": 2010, }, "compare-build.js": { - "offset": 50764910, + "offset": 50983400, "size": 290, }, "compare-loose.js": { - "offset": 50765190, + "offset": 50983680, "size": 140, }, "compare.js": { - "offset": 50765320, + "offset": 50983810, "size": 170, }, "diff.js": { - "offset": 50765490, + "offset": 50983980, "size": 1430, }, "eq.js": { - "offset": 50766920, + "offset": 50985400, "size": 130, }, "gt.js": { - "offset": 50767040, + "offset": 50985530, "size": 130, }, "gte.js": { - "offset": 50767170, + "offset": 50985650, "size": 130, }, "inc.js": { - "offset": 50767290, + "offset": 50985780, "size": 480, }, "lt.js": { - "offset": 50767770, + "offset": 50986260, "size": 130, }, "lte.js": { - "offset": 50767900, + "offset": 50986380, "size": 130, }, "major.js": { - "offset": 50768020, + "offset": 50986510, "size": 140, }, "minor.js": { - "offset": 50768160, + "offset": 50986650, "size": 140, }, "neq.js": { - "offset": 50768300, + "offset": 50986780, "size": 130, }, "parse.js": { - "offset": 50768420, + "offset": 50986910, "size": 340, }, "patch.js": { - "offset": 50768750, + "offset": 50987240, "size": 140, }, "prerelease.js": { - "offset": 50768890, + "offset": 50987380, "size": 240, }, "rcompare.js": { - "offset": 50769120, + "offset": 50987610, "size": 140, }, "rsort.js": { - "offset": 50769260, + "offset": 50987740, "size": 170, }, "satisfies.js": { - "offset": 50769420, + "offset": 50987910, "size": 250, }, "sort.js": { - "offset": 50769670, + "offset": 50988150, "size": 170, }, "valid.js": { - "offset": 50769830, + "offset": 50988310, "size": 180, }, }, }, "index.js": { - "offset": 50770000, + "offset": 50988490, "size": 2630, }, "internal": { "files": { "constants.js": { - "offset": 50772630, + "offset": 50991120, "size": 880, }, "debug.js": { - "offset": 50773510, + "offset": 50991990, "size": 240, }, "identifiers.js": { - "offset": 50773750, + "offset": 50992230, "size": 530, }, "lrucache.js": { - "offset": 50774270, + "offset": 50992760, "size": 810, }, "parse-options.js": { - "offset": 50775070, + "offset": 50993560, "size": 340, }, "re.js": { - "offset": 50775410, + "offset": 50993900, "size": 8140, }, }, }, "package.json": { - "offset": 50783550, + "offset": 51002040, "size": 1350, }, "preload.js": { - "offset": 50784900, + "offset": 51003390, "size": 90, }, "range.bnf": { - "offset": 50784980, + "offset": 51003470, "size": 620, }, "ranges": { "files": { "gtr.js": { - "offset": 50785600, + "offset": 51004090, "size": 240, }, "intersects.js": { - "offset": 50785830, + "offset": 51004320, "size": 230, }, "ltr.js": { - "offset": 50786060, + "offset": 51004540, "size": 230, }, "max-satisfying.js": { - "offset": 50786280, + "offset": 51004770, "size": 600, }, "min-satisfying.js": { - "offset": 50786880, + "offset": 51005360, "size": 600, }, "min-version.js": { - "offset": 50787470, + "offset": 51005950, "size": 1520, }, "outside.js": { - "offset": 50788980, + "offset": 51007470, "size": 2210, }, "simplify.js": { - "offset": 50791190, + "offset": 51009670, "size": 1360, }, "subset.js": { - "offset": 50792540, + "offset": 51011030, "size": 7530, }, "to-comparators.js": { - "offset": 50800060, + "offset": 51018550, "size": 290, }, "valid.js": { - "offset": 50800350, + "offset": 51018830, "size": 330, }, }, @@ -73782,15 +73782,15 @@ exports[`node_module collectors > yarn ms 2`] = ` "shimmer": { "files": { "LICENSE": { - "offset": 50800670, + "offset": 51019160, "size": 1330, }, "index.js": { - "offset": 50802000, + "offset": 51020490, "size": 2950, }, "package.json": { - "offset": 50804940, + "offset": 51023430, "size": 410, }, }, @@ -73798,23 +73798,23 @@ exports[`node_module collectors > yarn ms 2`] = ` "supports-preserve-symlinks-flag": { "files": { ".nycrc": { - "offset": 50805350, + "offset": 51023830, "size": 140, }, "LICENSE": { - "offset": 50805480, + "offset": 51023970, "size": 1070, }, "browser.js": { - "offset": 50806550, + "offset": 51025040, "size": 40, }, "index.js": { - "offset": 50806590, + "offset": 51025080, "size": 300, }, "package.json": { - "offset": 50806880, + "offset": 51025370, "size": 1270, }, }, @@ -73822,11 +73822,11 @@ exports[`node_module collectors > yarn ms 2`] = ` "undici-types": { "files": { "LICENSE": { - "offset": 50808150, + "offset": 51026630, "size": 1090, }, "package.json": { - "offset": 50809240, + "offset": 51027720, "size": 330, }, }, @@ -73834,23 +73834,23 @@ exports[`node_module collectors > yarn ms 2`] = ` "xtend": { "files": { "LICENSE": { - "offset": 50809560, + "offset": 51028050, "size": 1080, }, "immutable.js": { - "offset": 50810640, + "offset": 51029130, "size": 390, }, "mutable.js": { - "offset": 50811030, + "offset": 51029510, "size": 370, }, "package.json": { - "offset": 50811390, + "offset": 51029880, "size": 710, }, "test.js": { - "offset": 50812100, + "offset": 51030580, "size": 2310, }, }, @@ -73858,7 +73858,7 @@ exports[`node_module collectors > yarn ms 2`] = ` }, }, "package.json": { - "offset": 50815400, + "offset": 51033890, "size": 410, }, }, @@ -78514,11 +78514,11 @@ exports[`node_module collectors > yarn two package.json without node_modules 2`] { "files": { "index.html": { - "offset": 3591350, + "offset": 3592540, "size": 380, }, "index.js": { - "offset": 3591720, + "offset": 3592920, "size": 620, }, "node_modules": { @@ -80775,10 +80775,10 @@ exports[`node_module collectors > yarn two package.json without node_modules 2`] }, "minimatch.js": { "offset": 2162790, - "size": 26270, + "size": 27460, }, "package.json": { - "offset": 2189060, + "offset": 2190250, "size": 530, }, }, @@ -80786,19 +80786,19 @@ exports[`node_module collectors > yarn two package.json without node_modules 2`] "minimist": { "files": { ".nycrc": { - "offset": 2189590, + "offset": 2190780, "size": 230, }, "LICENSE": { - "offset": 2189820, + "offset": 2191010, "size": 1080, }, "index.js": { - "offset": 2190890, + "offset": 2192080, "size": 6200, }, "package.json": { - "offset": 2197090, + "offset": 2198280, "size": 1250, }, }, @@ -80806,15 +80806,15 @@ exports[`node_module collectors > yarn two package.json without node_modules 2`] "ms": { "files": { "index.js": { - "offset": 2198330, + "offset": 2199530, "size": 3030, }, "license.md": { - "offset": 2201360, + "offset": 2202550, "size": 1080, }, "package.json": { - "offset": 2202440, + "offset": 2203630, "size": 500, }, }, @@ -80822,35 +80822,35 @@ exports[`node_module collectors > yarn two package.json without node_modules 2`] "negotiator": { "files": { "LICENSE": { - "offset": 2202930, + "offset": 2204130, "size": 1170, }, "lib": { "files": { "charset.js": { - "offset": 2204100, + "offset": 2205290, "size": 1650, }, "encoding.js": { - "offset": 2205750, + "offset": 2206940, "size": 2000, }, "language.js": { - "offset": 2207740, + "offset": 2208930, "size": 2140, }, "mediaType.js": { - "offset": 2209880, + "offset": 2211070, "size": 2180, }, "negotiator.js": { - "offset": 2212050, + "offset": 2213240, "size": 910, }, }, }, "package.json": { - "offset": 2212950, + "offset": 2214150, "size": 460, }, }, @@ -80858,27 +80858,27 @@ exports[`node_module collectors > yarn two package.json without node_modules 2`] "object-keys": { "files": { ".editorconfig": { - "offset": 2213400, + "offset": 2214600, "size": 280, }, "LICENSE": { - "offset": 2213680, + "offset": 2214870, "size": 1080, }, "implementation.js": { - "offset": 2214760, + "offset": 2215950, "size": 3220, }, "index.js": { - "offset": 2217980, + "offset": 2219170, "size": 830, }, "isArguments.js": { - "offset": 2218800, + "offset": 2219990, "size": 430, }, "package.json": { - "offset": 2219220, + "offset": 2220420, "size": 1130, }, }, @@ -80886,15 +80886,15 @@ exports[`node_module collectors > yarn two package.json without node_modules 2`] "once": { "files": { "LICENSE": { - "offset": 2220340, + "offset": 2221540, "size": 770, }, "once.js": { - "offset": 2221110, + "offset": 2222300, "size": 940, }, "package.json": { - "offset": 2222040, + "offset": 2223240, "size": 460, }, }, @@ -80902,20 +80902,20 @@ exports[`node_module collectors > yarn two package.json without node_modules 2`] "open": { "files": { "index.js": { - "offset": 2222500, + "offset": 2223690, "size": 4850, }, "license": { - "offset": 2227340, + "offset": 2228530, "size": 1120, }, "package.json": { - "offset": 2228460, + "offset": 2229650, "size": 660, }, "xdg-open": { "executable": true, - "offset": 2229120, + "offset": 2230310, "size": 25770, }, }, @@ -80923,15 +80923,15 @@ exports[`node_module collectors > yarn two package.json without node_modules 2`] "os-tmpdir": { "files": { "index.js": { - "offset": 2254880, + "offset": 2256070, "size": 580, }, "license": { - "offset": 2255450, + "offset": 2256650, "size": 1120, }, "package.json": { - "offset": 2256570, + "offset": 2257770, "size": 420, }, }, @@ -80939,11 +80939,11 @@ exports[`node_module collectors > yarn two package.json without node_modules 2`] "parseurl": { "files": { "index.js": { - "offset": 2256990, + "offset": 2258180, "size": 590, }, "package.json": { - "offset": 2257570, + "offset": 2258760, "size": 380, }, }, @@ -80951,141 +80951,141 @@ exports[`node_module collectors > yarn two package.json without node_modules 2`] "patch-package": { "files": { "LICENSE": { - "offset": 2257950, + "offset": 2259140, "size": 1070, }, "dist": { "files": { "PackageDetails.js": { - "offset": 2259020, + "offset": 2260210, "size": 14600, }, "PackageDetails.test.js": { - "offset": 2273610, + "offset": 2274810, "size": 26260, }, "applyPatches.js": { - "offset": 2299860, + "offset": 2301060, "size": 54160, }, "assertNever.js": { - "offset": 2354020, + "offset": 2355210, "size": 720, }, "coerceSemVer.js": { - "offset": 2354740, + "offset": 2355930, "size": 1130, }, "createIssue.js": { - "offset": 2355860, + "offset": 2357060, "size": 11370, }, "createIssue.test.js": { - "offset": 2367230, + "offset": 2368420, "size": 3020, }, "detectPackageManager.js": { - "offset": 2370240, + "offset": 2371440, "size": 7600, }, "filterFiles.js": { - "offset": 2377840, + "offset": 2379040, "size": 2370, }, "getAppRootPath.js": { - "offset": 2380210, + "offset": 2381400, "size": 2100, }, "getPackageResolution.js": { - "offset": 2382310, + "offset": 2383500, "size": 16780, }, "getPackageVersion.js": { - "offset": 2399080, + "offset": 2400270, "size": 980, }, "getPackageVersion.test.js": { - "offset": 2400050, + "offset": 2401250, "size": 8070, }, "hash.js": { - "offset": 2408120, + "offset": 2409310, "size": 3250, }, "index.js": { "executable": true, - "offset": 2411360, + "offset": 2412550, "size": 21200, }, "makePatch.js": { - "offset": 2432560, + "offset": 2433750, "size": 64410, }, "makeRegExp.js": { - "offset": 2496970, + "offset": 2498160, "size": 2550, }, "packageIsDevDependency.js": { - "offset": 2499520, + "offset": 2500710, "size": 2060, }, "packageIsDevDependency.test.js": { - "offset": 2501570, + "offset": 2502770, "size": 4650, }, "patch": { "files": { "apply.js": { - "offset": 2506220, + "offset": 2507420, "size": 30170, }, "parse.js": { - "offset": 2536380, + "offset": 2537580, "size": 41350, }, "read.js": { - "offset": 2577730, + "offset": 2578930, "size": 6400, }, "reverse.js": { - "offset": 2584130, + "offset": 2585320, "size": 9840, }, }, }, "patchFs.js": { - "offset": 2593970, + "offset": 2595160, "size": 6350, }, "path.js": { - "offset": 2600320, + "offset": 2601510, "size": 2140, }, "rebase.js": { - "offset": 2602450, + "offset": 2603650, "size": 20840, }, "resolveRelativeFileDependencies.js": { - "offset": 2623290, + "offset": 2624480, "size": 2620, }, "resolveRelativeFileDependencies.test.js": { - "offset": 2625900, + "offset": 2627100, "size": 2940, }, "spawnSafe.js": { - "offset": 2628840, + "offset": 2630030, "size": 3250, }, "stateFile.js": { - "offset": 2632090, + "offset": 2633280, "size": 9100, }, }, }, "index.js": { "executable": true, - "offset": 2641180, + "offset": 2642380, "size": 50, }, "node_modules": { @@ -81093,7 +81093,7 @@ exports[`node_module collectors > yarn two package.json without node_modules 2`] "fs-extra": { "files": { "LICENSE": { - "offset": 2643320, + "offset": 2644510, "size": 1090, }, "lib": { @@ -81101,11 +81101,11 @@ exports[`node_module collectors > yarn two package.json without node_modules 2`] "copy": { "files": { "copy.js": { - "offset": 2650110, + "offset": 2651310, "size": 7610, }, "index.js": { - "offset": 2657720, + "offset": 2658910, "size": 120, }, }, @@ -81113,11 +81113,11 @@ exports[`node_module collectors > yarn two package.json without node_modules 2`] "copy-sync": { "files": { "copy-sync.js": { - "offset": 2644400, + "offset": 2645600, "size": 5640, }, "index.js": { - "offset": 2650040, + "offset": 2651240, "size": 70, }, }, @@ -81125,7 +81125,7 @@ exports[`node_module collectors > yarn two package.json without node_modules 2`] "empty": { "files": { "index.js": { - "offset": 2657830, + "offset": 2659020, "size": 990, }, }, @@ -81133,27 +81133,27 @@ exports[`node_module collectors > yarn two package.json without node_modules 2`] "ensure": { "files": { "file.js": { - "offset": 2658820, + "offset": 2660010, "size": 1710, }, "index.js": { - "offset": 2660530, + "offset": 2661720, "size": 630, }, "link.js": { - "offset": 2661150, + "offset": 2662340, "size": 1570, }, "symlink-paths.js": { - "offset": 2662710, + "offset": 2663910, "size": 3380, }, "symlink-type.js": { - "offset": 2666090, + "offset": 2667280, "size": 700, }, "symlink.js": { - "offset": 2666780, + "offset": 2667970, "size": 2050, }, }, @@ -81161,31 +81161,31 @@ exports[`node_module collectors > yarn two package.json without node_modules 2`] "fs": { "files": { "index.js": { - "offset": 2668830, + "offset": 2670020, "size": 3440, }, }, }, "index.js": { - "offset": 2672260, + "offset": 2673460, "size": 720, }, "json": { "files": { "index.js": { - "offset": 2672980, + "offset": 2674180, "size": 510, }, "jsonfile.js": { - "offset": 2673490, + "offset": 2674680, "size": 240, }, "output-json-sync.js": { - "offset": 2673730, + "offset": 2674920, "size": 280, }, "output-json.js": { - "offset": 2674000, + "offset": 2675190, "size": 280, }, }, @@ -81193,11 +81193,11 @@ exports[`node_module collectors > yarn two package.json without node_modules 2`] "mkdirs": { "files": { "index.js": { - "offset": 2674270, + "offset": 2675460, "size": 330, }, "make-dir.js": { - "offset": 2674600, + "offset": 2675790, "size": 4410, }, }, @@ -81205,11 +81205,11 @@ exports[`node_module collectors > yarn two package.json without node_modules 2`] "move": { "files": { "index.js": { - "offset": 2680270, + "offset": 2681460, "size": 120, }, "move.js": { - "offset": 2680380, + "offset": 2681570, "size": 1640, }, }, @@ -81217,11 +81217,11 @@ exports[`node_module collectors > yarn two package.json without node_modules 2`] "move-sync": { "files": { "index.js": { - "offset": 2679000, + "offset": 2680190, "size": 70, }, "move-sync.js": { - "offset": 2679070, + "offset": 2680260, "size": 1200, }, }, @@ -81229,7 +81229,7 @@ exports[`node_module collectors > yarn two package.json without node_modules 2`] "output": { "files": { "index.js": { - "offset": 2682010, + "offset": 2683210, "size": 950, }, }, @@ -81237,7 +81237,7 @@ exports[`node_module collectors > yarn two package.json without node_modules 2`] "path-exists": { "files": { "index.js": { - "offset": 2682960, + "offset": 2684150, "size": 270, }, }, @@ -81245,11 +81245,11 @@ exports[`node_module collectors > yarn two package.json without node_modules 2`] "remove": { "files": { "index.js": { - "offset": 2683220, + "offset": 2684420, "size": 170, }, "rimraf.js": { - "offset": 2683390, + "offset": 2684580, "size": 7450, }, }, @@ -81257,11 +81257,11 @@ exports[`node_module collectors > yarn two package.json without node_modules 2`] "util": { "files": { "stat.js": { - "offset": 2690830, + "offset": 2692020, "size": 4630, }, "utimes.js": { - "offset": 2695460, + "offset": 2696650, "size": 620, }, }, @@ -81269,7 +81269,7 @@ exports[`node_module collectors > yarn two package.json without node_modules 2`] }, }, "package.json": { - "offset": 2696070, + "offset": 2697270, "size": 960, }, }, @@ -81277,7 +81277,7 @@ exports[`node_module collectors > yarn two package.json without node_modules 2`] }, }, "package.json": { - "offset": 2641230, + "offset": 2642430, "size": 2090, }, }, @@ -81285,15 +81285,15 @@ exports[`node_module collectors > yarn two package.json without node_modules 2`] "path-is-absolute": { "files": { "index.js": { - "offset": 2697030, + "offset": 2698220, "size": 620, }, "license": { - "offset": 2697640, + "offset": 2698830, "size": 1120, }, "package.json": { - "offset": 2698760, + "offset": 2699950, "size": 430, }, }, @@ -81301,15 +81301,15 @@ exports[`node_module collectors > yarn two package.json without node_modules 2`] "path-key": { "files": { "index.js": { - "offset": 2699180, + "offset": 2700370, "size": 420, }, "license": { - "offset": 2699590, + "offset": 2700790, "size": 1110, }, "package.json": { - "offset": 2700700, + "offset": 2701900, "size": 510, }, }, @@ -81317,23 +81317,23 @@ exports[`node_module collectors > yarn two package.json without node_modules 2`] "path-to-regexp": { "files": { "History.md": { - "offset": 2701210, + "offset": 2702400, "size": 180, }, "component.json": { - "offset": 2701390, + "offset": 2702580, "size": 250, }, "index.js": { - "offset": 2701630, + "offset": 2702830, "size": 1490, }, "package.json": { - "offset": 2703120, + "offset": 2704310, "size": 370, }, "test.js": { - "offset": 2703490, + "offset": 2704680, "size": 13770, }, }, @@ -81341,39 +81341,39 @@ exports[`node_module collectors > yarn two package.json without node_modules 2`] "picomatch": { "files": { "LICENSE": { - "offset": 2717260, + "offset": 2718450, "size": 1100, }, "index.js": { - "offset": 2718350, + "offset": 2719540, "size": 60, }, "lib": { "files": { "constants.js": { - "offset": 2718410, + "offset": 2719600, "size": 4450, }, "parse.js": { - "offset": 2722860, + "offset": 2724050, "size": 27770, }, "picomatch.js": { - "offset": 2750620, + "offset": 2751810, "size": 9960, }, "scan.js": { - "offset": 2760570, + "offset": 2761770, "size": 9190, }, "utils.js": { - "offset": 2769760, + "offset": 2770960, "size": 1890, }, }, }, "package.json": { - "offset": 2771650, + "offset": 2772840, "size": 1370, }, }, @@ -81381,15 +81381,15 @@ exports[`node_module collectors > yarn two package.json without node_modules 2`] "qs": { "files": { ".gitmodules": { - "offset": 2773010, + "offset": 2774210, "size": 210, }, "index.js": { - "offset": 2773220, + "offset": 2774410, "size": 7370, }, "package.json": { - "offset": 2780580, + "offset": 2781770, "size": 390, }, }, @@ -81397,19 +81397,19 @@ exports[`node_module collectors > yarn two package.json without node_modules 2`] "range-parser": { "files": { "History.md": { - "offset": 2780960, + "offset": 2782160, "size": 340, }, "Makefile": { - "offset": 2781300, + "offset": 2782490, "size": 90, }, "index.js": { - "offset": 2781380, + "offset": 2782580, "size": 920, }, "package.json": { - "offset": 2782300, + "offset": 2783500, "size": 520, }, }, @@ -81417,20 +81417,20 @@ exports[`node_module collectors > yarn two package.json without node_modules 2`] "rimraf": { "files": { "LICENSE": { - "offset": 2782820, + "offset": 2784010, "size": 770, }, "bin.js": { "executable": true, - "offset": 2783580, + "offset": 2784780, "size": 1200, }, "package.json": { - "offset": 2784780, + "offset": 2785970, "size": 500, }, "rimraf.js": { - "offset": 2785280, + "offset": 2786470, "size": 9230, }, }, @@ -81438,19 +81438,19 @@ exports[`node_module collectors > yarn two package.json without node_modules 2`] "sax": { "files": { "LICENSE.md": { - "offset": 2794500, + "offset": 2795690, "size": 1560, }, "lib": { "files": { "sax.js": { - "offset": 2796050, + "offset": 2797250, "size": 45640, }, }, }, "package.json": { - "offset": 2841690, + "offset": 2842890, "size": 530, }, }, @@ -81458,14 +81458,14 @@ exports[`node_module collectors > yarn two package.json without node_modules 2`] "semver": { "files": { "LICENSE": { - "offset": 2842210, + "offset": 2843410, "size": 770, }, "bin": { "files": { "semver.js": { "executable": true, - "offset": 2842980, + "offset": 2844170, "size": 4750, }, }, @@ -81473,19 +81473,19 @@ exports[`node_module collectors > yarn two package.json without node_modules 2`] "classes": { "files": { "comparator.js": { - "offset": 2847730, + "offset": 2848920, "size": 3640, }, "index.js": { - "offset": 2851360, + "offset": 2852550, "size": 150, }, "range.js": { - "offset": 2851500, + "offset": 2852690, "size": 14980, }, "semver.js": { - "offset": 2866480, + "offset": 2867670, "size": 9480, }, }, @@ -81493,191 +81493,191 @@ exports[`node_module collectors > yarn two package.json without node_modules 2`] "functions": { "files": { "clean.js": { - "offset": 2875960, + "offset": 2877150, "size": 210, }, "cmp.js": { - "offset": 2876160, + "offset": 2877360, "size": 970, }, "coerce.js": { - "offset": 2877120, + "offset": 2878320, "size": 2010, }, "compare-build.js": { - "offset": 2879130, + "offset": 2880320, "size": 290, }, "compare-loose.js": { - "offset": 2879410, + "offset": 2880600, "size": 140, }, "compare.js": { - "offset": 2879540, + "offset": 2880730, "size": 170, }, "diff.js": { - "offset": 2879710, + "offset": 2880900, "size": 1430, }, "eq.js": { - "offset": 2881130, + "offset": 2882330, "size": 130, }, "gt.js": { - "offset": 2881260, + "offset": 2882450, "size": 130, }, "gte.js": { - "offset": 2881380, + "offset": 2882580, "size": 130, }, "inc.js": { - "offset": 2881510, + "offset": 2882700, "size": 480, }, "lt.js": { - "offset": 2881990, + "offset": 2883180, "size": 130, }, "lte.js": { - "offset": 2882110, + "offset": 2883310, "size": 130, }, "major.js": { - "offset": 2882240, + "offset": 2883430, "size": 140, }, "minor.js": { - "offset": 2882380, + "offset": 2883570, "size": 140, }, "neq.js": { - "offset": 2882510, + "offset": 2883710, "size": 130, }, "parse.js": { - "offset": 2882640, + "offset": 2883830, "size": 340, }, "patch.js": { - "offset": 2882970, + "offset": 2884160, "size": 140, }, "prerelease.js": { - "offset": 2883110, + "offset": 2884300, "size": 240, }, "rcompare.js": { - "offset": 2883340, + "offset": 2884530, "size": 140, }, "rsort.js": { - "offset": 2883470, + "offset": 2884670, "size": 170, }, "satisfies.js": { - "offset": 2883640, + "offset": 2884830, "size": 250, }, "sort.js": { - "offset": 2883880, + "offset": 2885080, "size": 170, }, "valid.js": { - "offset": 2884040, + "offset": 2885240, "size": 180, }, }, }, "index.js": { - "offset": 2884220, + "offset": 2885410, "size": 2630, }, "internal": { "files": { "constants.js": { - "offset": 2886850, + "offset": 2888040, "size": 880, }, "debug.js": { - "offset": 2887720, + "offset": 2888920, "size": 240, }, "identifiers.js": { - "offset": 2887960, + "offset": 2889160, "size": 530, }, "lrucache.js": { - "offset": 2888490, + "offset": 2889680, "size": 810, }, "parse-options.js": { - "offset": 2889290, + "offset": 2890480, "size": 340, }, "re.js": { - "offset": 2889630, + "offset": 2890820, "size": 8140, }, }, }, "package.json": { - "offset": 2897770, + "offset": 2898960, "size": 1350, }, "preload.js": { - "offset": 2899120, + "offset": 2900310, "size": 90, }, "range.bnf": { - "offset": 2899200, + "offset": 2900390, "size": 620, }, "ranges": { "files": { "gtr.js": { - "offset": 2899820, + "offset": 2901010, "size": 240, }, "intersects.js": { - "offset": 2900050, + "offset": 2901240, "size": 230, }, "ltr.js": { - "offset": 2900270, + "offset": 2901470, "size": 230, }, "max-satisfying.js": { - "offset": 2900500, + "offset": 2901690, "size": 600, }, "min-satisfying.js": { - "offset": 2901090, + "offset": 2902290, "size": 600, }, "min-version.js": { - "offset": 2901680, + "offset": 2902880, "size": 1520, }, "outside.js": { - "offset": 2903200, + "offset": 2904390, "size": 2210, }, "simplify.js": { - "offset": 2905400, + "offset": 2906600, "size": 1360, }, "subset.js": { - "offset": 2906760, + "offset": 2907950, "size": 7530, }, "to-comparators.js": { - "offset": 2914280, + "offset": 2915470, "size": 290, }, "valid.js": { - "offset": 2914560, + "offset": 2915760, "size": 330, }, }, @@ -81687,25 +81687,25 @@ exports[`node_module collectors > yarn two package.json without node_modules 2`] "send": { "files": { "History.md": { - "offset": 2914890, + "offset": 2916080, "size": 710, }, "Makefile": { - "offset": 2915600, + "offset": 2916790, "size": 100, }, "index.js": { - "offset": 2915700, + "offset": 2916890, "size": 40, }, "lib": { "files": { "send.js": { - "offset": 2915740, + "offset": 2916930, "size": 9740, }, "utils.js": { - "offset": 2925470, + "offset": 2926670, "size": 800, }, }, @@ -81715,19 +81715,19 @@ exports[`node_module collectors > yarn two package.json without node_modules 2`] "fresh": { "files": { "HISTORY.md": { - "offset": 2926800, + "offset": 2927990, "size": 390, }, "LICENSE": { - "offset": 2927190, + "offset": 2928380, "size": 1100, }, "index.js": { - "offset": 2928290, + "offset": 2929480, "size": 1230, }, "package.json": { - "offset": 2929510, + "offset": 2930700, "size": 420, }, }, @@ -81735,19 +81735,19 @@ exports[`node_module collectors > yarn two package.json without node_modules 2`] "range-parser": { "files": { "HISTORY.md": { - "offset": 2929930, + "offset": 2931120, "size": 580, }, "LICENSE": { - "offset": 2930500, + "offset": 2931700, "size": 1100, }, "index.js": { - "offset": 2931600, + "offset": 2932800, "size": 1080, }, "package.json": { - "offset": 2932680, + "offset": 2933870, "size": 430, }, }, @@ -81755,7 +81755,7 @@ exports[`node_module collectors > yarn two package.json without node_modules 2`] }, }, "package.json": { - "offset": 2926270, + "offset": 2927460, "size": 530, }, }, @@ -81763,11 +81763,11 @@ exports[`node_module collectors > yarn two package.json without node_modules 2`] "serve-static": { "files": { "LICENSE": { - "offset": 2933100, + "offset": 2934300, "size": 1190, }, "index.js": { - "offset": 2934290, + "offset": 2935480, "size": 2990, }, "node_modules": { @@ -81775,19 +81775,19 @@ exports[`node_module collectors > yarn two package.json without node_modules 2`] "fresh": { "files": { "History.md": { - "offset": 2937770, + "offset": 2938960, "size": 80, }, "Makefile": { - "offset": 2937840, + "offset": 2939040, "size": 90, }, "index.js": { - "offset": 2937930, + "offset": 2939130, "size": 1230, }, "package.json": { - "offset": 2939160, + "offset": 2940350, "size": 470, }, }, @@ -81795,19 +81795,19 @@ exports[`node_module collectors > yarn two package.json without node_modules 2`] "range-parser": { "files": { "History.md": { - "offset": 2939620, + "offset": 2940810, "size": 240, }, "Makefile": { - "offset": 2939860, + "offset": 2941050, "size": 90, }, "index.js": { - "offset": 2939950, + "offset": 2941140, "size": 920, }, "package.json": { - "offset": 2940870, + "offset": 2942060, "size": 290, }, }, @@ -81815,31 +81815,31 @@ exports[`node_module collectors > yarn two package.json without node_modules 2`] "send": { "files": { "History.md": { - "offset": 2941160, + "offset": 2942350, "size": 640, }, "Makefile": { - "offset": 2941790, + "offset": 2942990, "size": 100, }, "index.js": { - "offset": 2941890, + "offset": 2943090, "size": 40, }, "lib": { "files": { "send.js": { - "offset": 2941930, + "offset": 2943130, "size": 9740, }, "utils.js": { - "offset": 2951670, + "offset": 2952860, "size": 800, }, }, }, "package.json": { - "offset": 2952470, + "offset": 2953660, "size": 530, }, }, @@ -81847,7 +81847,7 @@ exports[`node_module collectors > yarn two package.json without node_modules 2`] }, }, "package.json": { - "offset": 2937270, + "offset": 2938470, "size": 500, }, }, @@ -81855,27 +81855,27 @@ exports[`node_module collectors > yarn two package.json without node_modules 2`] "set-function-length": { "files": { ".nycrc": { - "offset": 2952990, + "offset": 2954190, "size": 220, }, "LICENSE": { - "offset": 2953210, + "offset": 2954400, "size": 1090, }, "env.js": { - "offset": 2954290, + "offset": 2955490, "size": 870, }, "index.js": { - "offset": 2955160, + "offset": 2956350, "size": 1280, }, "package.json": { - "offset": 2956430, + "offset": 2957630, "size": 1960, }, "tsconfig.json": { - "offset": 2958380, + "offset": 2959580, "size": 120, }, }, @@ -81883,15 +81883,15 @@ exports[`node_module collectors > yarn two package.json without node_modules 2`] "shebang-command": { "files": { "index.js": { - "offset": 2958500, + "offset": 2959690, "size": 390, }, "license": { - "offset": 2958890, + "offset": 2960080, "size": 1120, }, "package.json": { - "offset": 2960000, + "offset": 2961200, "size": 490, }, }, @@ -81899,15 +81899,15 @@ exports[`node_module collectors > yarn two package.json without node_modules 2`] "shebang-regex": { "files": { "index.js": { - "offset": 2960490, + "offset": 2961680, "size": 50, }, "license": { - "offset": 2960530, + "offset": 2961720, "size": 1110, }, "package.json": { - "offset": 2961640, + "offset": 2962830, "size": 480, }, }, @@ -81915,15 +81915,15 @@ exports[`node_module collectors > yarn two package.json without node_modules 2`] "slash": { "files": { "index.js": { - "offset": 2962120, + "offset": 2963310, "size": 300, }, "license": { - "offset": 2962410, + "offset": 2963610, "size": 1110, }, "package.json": { - "offset": 2963520, + "offset": 2964720, "size": 420, }, }, @@ -81931,19 +81931,19 @@ exports[`node_module collectors > yarn two package.json without node_modules 2`] "supports-color": { "files": { "browser.js": { - "offset": 2963940, + "offset": 2965130, "size": 70, }, "index.js": { - "offset": 2964000, + "offset": 2965200, "size": 2750, }, "license": { - "offset": 2966750, + "offset": 2967940, "size": 1110, }, "package.json": { - "offset": 2967860, + "offset": 2969050, "size": 560, }, }, @@ -81951,19 +81951,19 @@ exports[`node_module collectors > yarn two package.json without node_modules 2`] "tiny-typed-emitter": { "files": { "LICENSE": { - "offset": 2968410, + "offset": 2969610, "size": 1110, }, "lib": { "files": { "index.js": { - "offset": 2969520, + "offset": 2970710, "size": 140, }, }, }, "package.json": { - "offset": 2969650, + "offset": 2970840, "size": 400, }, }, @@ -81971,19 +81971,19 @@ exports[`node_module collectors > yarn two package.json without node_modules 2`] "tmp": { "files": { "LICENSE": { - "offset": 2970050, + "offset": 2971240, "size": 1090, }, "lib": { "files": { "tmp.js": { - "offset": 2971130, + "offset": 2972320, "size": 14900, }, }, }, "package.json": { - "offset": 2986020, + "offset": 2987220, "size": 480, }, }, @@ -81991,15 +81991,15 @@ exports[`node_module collectors > yarn two package.json without node_modules 2`] "to-regex-range": { "files": { "LICENSE": { - "offset": 2986490, + "offset": 2987690, "size": 1100, }, "index.js": { - "offset": 2987580, + "offset": 2988780, "size": 6490, }, "package.json": { - "offset": 2994070, + "offset": 2995260, "size": 1150, }, }, @@ -82007,15 +82007,15 @@ exports[`node_module collectors > yarn two package.json without node_modules 2`] "type-is": { "files": { "Makefile": { - "offset": 2995210, + "offset": 2996410, "size": 110, }, "index.js": { - "offset": 2995320, + "offset": 2996510, "size": 2300, }, "package.json": { - "offset": 2997610, + "offset": 2998810, "size": 500, }, }, @@ -82023,15 +82023,15 @@ exports[`node_module collectors > yarn two package.json without node_modules 2`] "universalify": { "files": { "LICENSE": { - "offset": 2998110, + "offset": 2999300, "size": 1100, }, "index.js": { - "offset": 2999210, + "offset": 3000400, "size": 710, }, "package.json": { - "offset": 2999910, + "offset": 3001110, "size": 620, }, }, @@ -82039,15 +82039,15 @@ exports[`node_module collectors > yarn two package.json without node_modules 2`] "utils-merge": { "files": { "LICENSE": { - "offset": 3000530, + "offset": 3001730, "size": 1080, }, "index.js": { - "offset": 3001610, + "offset": 3002800, "size": 390, }, "package.json": { - "offset": 3001990, + "offset": 3003180, "size": 590, }, }, @@ -82055,24 +82055,24 @@ exports[`node_module collectors > yarn two package.json without node_modules 2`] "which": { "files": { "LICENSE": { - "offset": 3002570, + "offset": 3003770, "size": 770, }, "bin": { "files": { "node-which": { "executable": true, - "offset": 3003340, + "offset": 3004530, "size": 990, }, }, }, "package.json": { - "offset": 3004320, + "offset": 3005520, "size": 690, }, "which.js": { - "offset": 3005000, + "offset": 3006200, "size": 3170, }, }, @@ -82080,15 +82080,15 @@ exports[`node_module collectors > yarn two package.json without node_modules 2`] "wrappy": { "files": { "LICENSE": { - "offset": 3008170, + "offset": 3009360, "size": 770, }, "package.json": { - "offset": 3008930, + "offset": 3010130, "size": 480, }, "wrappy.js": { - "offset": 3009410, + "offset": 3010600, "size": 910, }, }, @@ -82096,12 +82096,12 @@ exports[`node_module collectors > yarn two package.json without node_modules 2`] "yaml": { "files": { "LICENSE": { - "offset": 3010320, + "offset": 3011510, "size": 740, }, "bin.mjs": { "executable": true, - "offset": 3011050, + "offset": 3012250, "size": 310, }, "browser": { @@ -82111,67 +82111,67 @@ exports[`node_module collectors > yarn two package.json without node_modules 2`] "compose": { "files": { "compose-collection.js": { - "offset": 3011360, + "offset": 3012560, "size": 3500, }, "compose-doc.js": { - "offset": 3014860, + "offset": 3016060, "size": 1560, }, "compose-node.js": { - "offset": 3016420, + "offset": 3017610, "size": 3820, }, "compose-scalar.js": { - "offset": 3020240, + "offset": 3021430, "size": 3320, }, "composer.js": { - "offset": 3023550, + "offset": 3024750, "size": 8400, }, "resolve-block-map.js": { - "offset": 3031950, + "offset": 3033150, "size": 4920, }, "resolve-block-scalar.js": { - "offset": 3036870, + "offset": 3038060, "size": 7450, }, "resolve-block-seq.js": { - "offset": 3044310, + "offset": 3045510, "size": 1740, }, "resolve-end.js": { - "offset": 3046050, + "offset": 3047250, "size": 1240, }, "resolve-flow-collection.js": { - "offset": 3047290, + "offset": 3048490, "size": 8780, }, "resolve-flow-scalar.js": { - "offset": 3056070, + "offset": 3057260, "size": 7310, }, "resolve-props.js": { - "offset": 3063370, + "offset": 3064570, "size": 5560, }, "util-contains-newline.js": { - "offset": 3068920, + "offset": 3070120, "size": 1060, }, "util-empty-scalar-position.js": { - "offset": 3069980, + "offset": 3071170, "size": 820, }, "util-flow-indent-check.js": { - "offset": 3070790, + "offset": 3071990, "size": 500, }, "util-map-includes.js": { - "offset": 3071290, + "offset": 3072480, "size": 430, }, }, @@ -82179,79 +82179,79 @@ exports[`node_module collectors > yarn two package.json without node_modules 2`] "doc": { "files": { "Document.js": { - "offset": 3071710, + "offset": 3072910, "size": 12910, }, "anchors.js": { - "offset": 3084620, + "offset": 3085810, "size": 2280, }, "applyReviver.js": { - "offset": 3086890, + "offset": 3088090, "size": 1930, }, "createNode.js": { - "offset": 3088820, + "offset": 3090010, "size": 3070, }, "directives.js": { - "offset": 3091880, + "offset": 3093070, "size": 6190, }, }, }, "errors.js": { - "offset": 3098060, + "offset": 3099260, "size": 2030, }, "index.js": { - "offset": 3100090, + "offset": 3101280, "size": 880, }, "log.js": { - "offset": 3100970, + "offset": 3102160, "size": 260, }, "nodes": { "files": { "Alias.js": { - "offset": 3101230, + "offset": 3102420, "size": 3750, }, "Collection.js": { - "offset": 3104980, + "offset": 3106170, "size": 5080, }, "Node.js": { - "offset": 3110050, + "offset": 3111250, "size": 1340, }, "Pair.js": { - "offset": 3111390, + "offset": 3112580, "size": 1130, }, "Scalar.js": { - "offset": 3112510, + "offset": 3113710, "size": 700, }, "YAMLMap.js": { - "offset": 3113210, + "offset": 3114410, "size": 4960, }, "YAMLSeq.js": { - "offset": 3118170, + "offset": 3119370, "size": 3580, }, "addPairToJSMap.js": { - "offset": 3121740, + "offset": 3122940, "size": 2290, }, "identity.js": { - "offset": 3124030, + "offset": 3125230, "size": 1520, }, "toJS.js": { - "offset": 3125550, + "offset": 3126740, "size": 1270, }, }, @@ -82259,61 +82259,61 @@ exports[`node_module collectors > yarn two package.json without node_modules 2`] "parse": { "files": { "cst-scalar.js": { - "offset": 3126810, + "offset": 3128010, "size": 9240, }, "cst-stringify.js": { - "offset": 3136050, + "offset": 3137240, "size": 1780, }, "cst-visit.js": { - "offset": 3137820, + "offset": 3139020, "size": 3970, }, "cst.js": { - "offset": 3141790, + "offset": 3142980, "size": 2890, }, "lexer.js": { - "offset": 3144670, + "offset": 3145870, "size": 24070, }, "line-counter.js": { - "offset": 3168740, + "offset": 3169930, "size": 1420, }, "parser.js": { - "offset": 3170160, + "offset": 3171350, "size": 35170, }, }, }, "public-api.js": { - "offset": 3205320, + "offset": 3206520, "size": 4000, }, "schema": { "files": { "Schema.js": { - "offset": 3209310, + "offset": 3210510, "size": 1500, }, "common": { "files": { "map.js": { - "offset": 3210810, + "offset": 3212000, "size": 440, }, "null.js": { - "offset": 3211250, + "offset": 3212440, "size": 440, }, "seq.js": { - "offset": 3211680, + "offset": 3212880, "size": 440, }, "string.js": { - "offset": 3212120, + "offset": 3213320, "size": 430, }, }, @@ -82321,19 +82321,19 @@ exports[`node_module collectors > yarn two package.json without node_modules 2`] "core": { "files": { "bool.js": { - "offset": 3212540, + "offset": 3213740, "size": 610, }, "float.js": { - "offset": 3213150, + "offset": 3214340, "size": 1400, }, "int.js": { - "offset": 3214550, + "offset": 3215740, "size": 1330, }, "schema.js": { - "offset": 3215870, + "offset": 3217070, "size": 480, }, }, @@ -82341,55 +82341,55 @@ exports[`node_module collectors > yarn two package.json without node_modules 2`] "json": { "files": { "schema.js": { - "offset": 3216350, + "offset": 3217550, "size": 1870, }, }, }, "tags.js": { - "offset": 3218220, + "offset": 3219410, "size": 2970, }, "yaml-1.1": { "files": { "binary.js": { - "offset": 3221180, + "offset": 3222380, "size": 2320, }, "bool.js": { - "offset": 3223500, + "offset": 3224690, "size": 790, }, "float.js": { - "offset": 3224280, + "offset": 3225480, "size": 1520, }, "int.js": { - "offset": 3225800, + "offset": 3226990, "size": 2140, }, "merge.js": { - "offset": 3227930, + "offset": 3229130, "size": 2450, }, "omap.js": { - "offset": 3230380, + "offset": 3231570, "size": 2480, }, "pairs.js": { - "offset": 3232850, + "offset": 3234050, "size": 2760, }, "schema.js": { - "offset": 3235600, + "offset": 3236800, "size": 860, }, "set.js": { - "offset": 3236460, + "offset": 3237660, "size": 3030, }, "timestamp.js": { - "offset": 3239490, + "offset": 3240690, "size": 3700, }, }, @@ -82399,55 +82399,55 @@ exports[`node_module collectors > yarn two package.json without node_modules 2`] "stringify": { "files": { "foldFlowLines.js": { - "offset": 3243190, + "offset": 3244380, "size": 4800, }, "stringify.js": { - "offset": 3247980, + "offset": 3249180, "size": 4370, }, "stringifyCollection.js": { - "offset": 3252350, + "offset": 3253550, "size": 5200, }, "stringifyComment.js": { - "offset": 3257550, + "offset": 3258740, "size": 730, }, "stringifyDocument.js": { - "offset": 3258270, + "offset": 3259470, "size": 2990, }, "stringifyNumber.js": { - "offset": 3261250, + "offset": 3262450, "size": 750, }, "stringifyPair.js": { - "offset": 3262000, + "offset": 3263200, "size": 5290, }, "stringifyString.js": { - "offset": 3267290, + "offset": 3268480, "size": 13170, }, }, }, "util.js": { - "offset": 3280450, + "offset": 3281650, "size": 600, }, "visit.js": { - "offset": 3281050, + "offset": 3282240, "size": 9110, }, }, }, "index.js": { - "offset": 3290150, + "offset": 3291350, "size": 200, }, "package.json": { - "offset": 3290340, + "offset": 3291540, "size": 30, }, }, @@ -82455,73 +82455,73 @@ exports[`node_module collectors > yarn two package.json without node_modules 2`] "dist": { "files": { "cli.mjs": { - "offset": 3290370, + "offset": 3291560, "size": 7470, }, "compose": { "files": { "compose-collection.js": { - "offset": 3297830, + "offset": 3299020, "size": 3620, }, "compose-doc.js": { - "offset": 3301440, + "offset": 3302640, "size": 1620, }, "compose-node.js": { - "offset": 3303060, + "offset": 3304250, "size": 3970, }, "compose-scalar.js": { - "offset": 3307020, + "offset": 3308210, "size": 3450, }, "composer.js": { - "offset": 3310470, + "offset": 3311660, "size": 8610, }, "resolve-block-map.js": { - "offset": 3319070, + "offset": 3320270, "size": 5080, }, "resolve-block-scalar.js": { - "offset": 3324150, + "offset": 3325340, "size": 7500, }, "resolve-block-seq.js": { - "offset": 3331650, + "offset": 3332840, "size": 1820, }, "resolve-end.js": { - "offset": 3333460, + "offset": 3334650, "size": 1270, }, "resolve-flow-collection.js": { - "offset": 3334720, + "offset": 3335920, "size": 8930, }, "resolve-flow-scalar.js": { - "offset": 3343650, + "offset": 3344840, "size": 7370, }, "resolve-props.js": { - "offset": 3351010, + "offset": 3352210, "size": 5580, }, "util-contains-newline.js": { - "offset": 3356590, + "offset": 3357790, "size": 1090, }, "util-empty-scalar-position.js": { - "offset": 3357670, + "offset": 3358870, "size": 850, }, "util-flow-indent-check.js": { - "offset": 3358520, + "offset": 3359720, "size": 550, }, "util-map-includes.js": { - "offset": 3359070, + "offset": 3360260, "size": 480, }, }, @@ -82529,79 +82529,79 @@ exports[`node_module collectors > yarn two package.json without node_modules 2`] "doc": { "files": { "Document.js": { - "offset": 3359540, + "offset": 3360730, "size": 13120, }, "anchors.js": { - "offset": 3372650, + "offset": 3373850, "size": 2390, }, "applyReviver.js": { - "offset": 3375040, + "offset": 3376230, "size": 1950, }, "createNode.js": { - "offset": 3376990, + "offset": 3378180, "size": 3140, }, "directives.js": { - "offset": 3380130, + "offset": 3381320, "size": 6240, }, }, }, "errors.js": { - "offset": 3386370, + "offset": 3387560, "size": 2120, }, "index.js": { - "offset": 3388480, + "offset": 3389680, "size": 1770, }, "log.js": { - "offset": 3390250, + "offset": 3391450, "size": 460, }, "nodes": { "files": { "Alias.js": { - "offset": 3390710, + "offset": 3391910, "size": 3800, }, "Collection.js": { - "offset": 3394500, + "offset": 3395700, "size": 5230, }, "Node.js": { - "offset": 3399730, + "offset": 3400920, "size": 1390, }, "Pair.js": { - "offset": 3401110, + "offset": 3402300, "size": 1240, }, "Scalar.js": { - "offset": 3402340, + "offset": 3403530, "size": 760, }, "YAMLMap.js": { - "offset": 3403100, + "offset": 3404290, "size": 5110, }, "YAMLSeq.js": { - "offset": 3408200, + "offset": 3409400, "size": 3670, }, "addPairToJSMap.js": { - "offset": 3411870, + "offset": 3413060, "size": 2340, }, "identity.js": { - "offset": 3414210, + "offset": 3415400, "size": 1800, }, "toJS.js": { - "offset": 3416000, + "offset": 3417200, "size": 1300, }, }, @@ -82609,61 +82609,61 @@ exports[`node_module collectors > yarn two package.json without node_modules 2`] "parse": { "files": { "cst-scalar.js": { - "offset": 3417290, + "offset": 3418490, "size": 9390, }, "cst-stringify.js": { - "offset": 3426680, + "offset": 3427870, "size": 1800, }, "cst-visit.js": { - "offset": 3428480, + "offset": 3429670, "size": 3990, }, "cst.js": { - "offset": 3432460, + "offset": 3433660, "size": 3250, }, "lexer.js": { - "offset": 3435700, + "offset": 3436900, "size": 24080, }, "line-counter.js": { - "offset": 3459780, + "offset": 3460970, "size": 1450, }, "parser.js": { - "offset": 3461220, + "offset": 3462420, "size": 35330, }, }, }, "public-api.js": { - "offset": 3496550, + "offset": 3497740, "size": 4190, }, "schema": { "files": { "Schema.js": { - "offset": 3500730, + "offset": 3501930, "size": 1550, }, "common": { "files": { "map.js": { - "offset": 3502280, + "offset": 3503470, "size": 490, }, "null.js": { - "offset": 3502760, + "offset": 3503960, "size": 470, }, "seq.js": { - "offset": 3503230, + "offset": 3504430, "size": 490, }, "string.js": { - "offset": 3503720, + "offset": 3504910, "size": 460, }, }, @@ -82671,19 +82671,19 @@ exports[`node_module collectors > yarn two package.json without node_modules 2`] "core": { "files": { "bool.js": { - "offset": 3504170, + "offset": 3505370, "size": 640, }, "float.js": { - "offset": 3504810, + "offset": 3506000, "size": 1510, }, "int.js": { - "offset": 3506320, + "offset": 3507510, "size": 1410, }, "schema.js": { - "offset": 3507730, + "offset": 3508920, "size": 510, }, }, @@ -82691,55 +82691,55 @@ exports[`node_module collectors > yarn two package.json without node_modules 2`] "json": { "files": { "schema.js": { - "offset": 3508230, + "offset": 3509430, "size": 1900, }, }, }, "tags.js": { - "offset": 3510130, + "offset": 3511330, "size": 3240, }, "yaml-1.1": { "files": { "binary.js": { - "offset": 3513370, + "offset": 3514570, "size": 2800, }, "bool.js": { - "offset": 3516170, + "offset": 3517370, "size": 850, }, "float.js": { - "offset": 3517010, + "offset": 3518210, "size": 1630, }, "int.js": { - "offset": 3518640, + "offset": 3519830, "size": 2240, }, "merge.js": { - "offset": 3520870, + "offset": 3522070, "size": 2550, }, "omap.js": { - "offset": 3523420, + "offset": 3524610, "size": 2590, }, "pairs.js": { - "offset": 3526000, + "offset": 3527200, "size": 2860, }, "schema.js": { - "offset": 3528860, + "offset": 3530050, "size": 920, }, "set.js": { - "offset": 3529770, + "offset": 3530960, "size": 3120, }, "timestamp.js": { - "offset": 3532880, + "offset": 3534080, "size": 3780, }, }, @@ -82749,59 +82749,59 @@ exports[`node_module collectors > yarn two package.json without node_modules 2`] "stringify": { "files": { "foldFlowLines.js": { - "offset": 3536660, + "offset": 3537850, "size": 4890, }, "stringify.js": { - "offset": 3541540, + "offset": 3542740, "size": 4510, }, "stringifyCollection.js": { - "offset": 3546050, + "offset": 3547240, "size": 5360, }, "stringifyComment.js": { - "offset": 3551400, + "offset": 3552600, "size": 810, }, "stringifyDocument.js": { - "offset": 3552210, + "offset": 3553400, "size": 3110, }, "stringifyNumber.js": { - "offset": 3555310, + "offset": 3556500, "size": 780, }, "stringifyPair.js": { - "offset": 3556090, + "offset": 3557280, "size": 5470, }, "stringifyString.js": { - "offset": 3561560, + "offset": 3562750, "size": 13350, }, }, }, "test-events.js": { - "offset": 3574900, + "offset": 3576100, "size": 4280, }, "util.js": { - "offset": 3579180, + "offset": 3580370, "size": 1010, }, "visit.js": { - "offset": 3580180, + "offset": 3581380, "size": 9260, }, }, }, "package.json": { - "offset": 3589440, + "offset": 3590630, "size": 1830, }, "util.js": { - "offset": 3591270, + "offset": 3592460, "size": 80, }, }, @@ -82809,7 +82809,7 @@ exports[`node_module collectors > yarn two package.json without node_modules 2`] }, }, "package.json": { - "offset": 3592340, + "offset": 3593540, "size": 360, }, }, From 9f8306a554836340921ab6b7d3b8695a0ceca476 Mon Sep 17 00:00:00 2001 From: beyondkmp Date: Thu, 5 Mar 2026 00:02:02 +0800 Subject: [PATCH 30/61] test: stabilize HoistedNodeModuleTest lockfile fixtures and snapshots (#9628) --- .../npm electron-clear-data.txt | 42 +- .../HoistedNodeModuleTest/npm tar.txt | 32 +- .../HoistedNodeModuleTest/pnpm max stack.txt | 46 +- .../pnpm optional dependencies.txt | 54 +- .../pnpm workspace with native module.txt | 45 +- ...ion conflict with hoisted dependencies.txt | 516 ++++++ .../yarn electron-clear-data.txt | 2 +- .../HoistedNodeModuleTest/yarn max stack.txt | 20 +- .../HoistedNodeModuleTest/yarn ms.txt | 72 +- .../HoistedNodeModuleTest/yarn parse-asn1.txt | 12 +- ... two package.json without node_modules.txt | 1509 ++++++----------- .../yarn two package.json.txt | 1509 ++++++----------- test/snapshots/BuildTest.js.snap | 3 + test/snapshots/HoistedNodeModuleTest.js.snap | 1448 ++++++++-------- test/snapshots/rebuilderTest.js.snap | 6 + test/src/helpers/packTester.ts | 52 +- 16 files changed, 2547 insertions(+), 2821 deletions(-) create mode 100644 test/fixtures/lockfiles/HoistedNodeModuleTest/yarn berry version conflict with hoisted dependencies.txt diff --git a/test/fixtures/lockfiles/HoistedNodeModuleTest/npm electron-clear-data.txt b/test/fixtures/lockfiles/HoistedNodeModuleTest/npm electron-clear-data.txt index 6709068f97f..3ccff087ee5 100644 --- a/test/fixtures/lockfiles/HoistedNodeModuleTest/npm electron-clear-data.txt +++ b/test/fixtures/lockfiles/HoistedNodeModuleTest/npm electron-clear-data.txt @@ -9,7 +9,7 @@ "version": "1.1.0", "license": "MIT", "dependencies": { - "electron-clear-data": "^1.0.5" + "electron-clear-data": "1.0.5" }, "optionalDependencies": { "debug": "3.1.0" @@ -96,9 +96,9 @@ } }, "node_modules/@types/http-cache-semantics": { - "version": "4.0.4", - "resolved": "https://registry.npmjs.org/@types/http-cache-semantics/-/http-cache-semantics-4.0.4.tgz", - "integrity": "sha512-1m0bIFVc7eJWyve9S0RnuRgcQqF/Xd5QsUZAZeQFr1Q3/p9JWoQQEqmVy+DPTNpGXwhgIetAoYF8JSc33q29QA==", + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/@types/http-cache-semantics/-/http-cache-semantics-4.2.0.tgz", + "integrity": "sha512-L3LgimLHXtGkWikKnsPg0/VFx9OGZaC+eN1u4r+OB1XRqH3meBIAVC2zr1WdMH+RHmnRkqliQAOHNJ/E0j/e0Q==", "peer": true }, "node_modules/@types/keyv": { @@ -111,12 +111,12 @@ } }, "node_modules/@types/node": { - "version": "22.19.3", - "resolved": "https://registry.npmjs.org/@types/node/-/node-22.19.3.tgz", - "integrity": "sha512-1N9SBnWYOJTrNZCdh/yJE+t910Y128BoyY+zBLWhL3r0TYzlTmFdXrPwHL9DyFZmlEXNQQolTZh3KHV31QDhyA==", + "version": "24.11.0", + "resolved": "https://registry.npmjs.org/@types/node/-/node-24.11.0.tgz", + "integrity": "sha512-fPxQqz4VTgPI/IQ+lj9r0h+fDR66bzoeMGHp8ASee+32OSGIkeASsoZuJixsQoVef1QJbeubcPBxKk22QVoWdw==", "peer": true, "dependencies": { - "undici-types": "~6.21.0" + "undici-types": "~7.16.0" } }, "node_modules/@types/responselike": { @@ -283,14 +283,14 @@ "peer": true }, "node_modules/electron": { - "version": "39.2.7", - "resolved": "https://registry.npmjs.org/electron/-/electron-39.2.7.tgz", - "integrity": "sha512-KU0uFS6LSTh4aOIC3miolcbizOFP7N1M46VTYVfqIgFiuA2ilfNaOHLDS9tCMvwwHRowAsvqBrh9NgMXcTOHCQ==", + "version": "40.6.1", + "resolved": "https://registry.npmjs.org/electron/-/electron-40.6.1.tgz", + "integrity": "sha512-u9YfoixttdauciHV9Ut9Zf3YipJoU093kR1GSYTTXTAXqhiXI0G1A0NnL/f0O2m2UULCXaXMf2W71PloR6V9pQ==", "hasInstallScript": true, "peer": true, "dependencies": { "@electron/get": "^2.0.0", - "@types/node": "^22.7.7", + "@types/node": "^24.9.0", "extract-zip": "^2.0.1" }, "bin": { @@ -469,9 +469,9 @@ } }, "node_modules/global-agent/node_modules/semver": { - "version": "7.7.3", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.7.3.tgz", - "integrity": "sha512-SdsKMrI9TdgjdweUSR9MweHA4EJ8YxHn8DFaDisvhVlUOe4BF1tLD7GAj0lIqWVl+dPb/rExr0Btby5loQm20Q==", + "version": "7.7.4", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.7.4.tgz", + "integrity": "sha512-vFKC2IEtQnVhpT78h1Yp8wzwrf8CM+MzKMHGJZfBtzhZNycRFnXsHk6E5TxIkkMsgNS7mdX3AGB7x2QM2di4lA==", "optional": true, "peer": true, "bin": { @@ -698,9 +698,9 @@ } }, "node_modules/pump": { - "version": "3.0.3", - "resolved": "https://registry.npmjs.org/pump/-/pump-3.0.3.tgz", - "integrity": "sha512-todwxLMY7/heScKmntwQG8CXVkWUOdYxIvY2s0VWAAMh/nd8SoYiRaKjlr7+iCs984f2P8zvrfWcDDYVb73NfA==", + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/pump/-/pump-3.0.4.tgz", + "integrity": "sha512-VS7sjc6KR7e1ukRFhQSY5LM2uBWAUPiOPa/A3mkKmiMwSmRFUITt0xuj+/lesgnCv+dPIEYlkzrcyXgquIHMcA==", "peer": true, "dependencies": { "end-of-stream": "^1.1.0", @@ -843,9 +843,9 @@ } }, "node_modules/undici-types": { - "version": "6.21.0", - "resolved": "https://registry.npmjs.org/undici-types/-/undici-types-6.21.0.tgz", - "integrity": "sha512-iwDZqg0QAGrg9Rav5H4n0M64c3mkR59cJ6wQp+7C4nI0gsmExaedaYLNO44eT4AtBBwjbTiGPMlt2Md0T9H9JQ==", + "version": "7.16.0", + "resolved": "https://registry.npmjs.org/undici-types/-/undici-types-7.16.0.tgz", + "integrity": "sha512-Zz+aZWSj8LE6zoxD+xrjh4VfkIG8Ya6LvYkZqtUQGJPZjYl53ypCaUwWqo7eI0x66KBGeRo+mlBEkMSeSZ38Nw==", "peer": true }, "node_modules/universalify": { diff --git a/test/fixtures/lockfiles/HoistedNodeModuleTest/npm tar.txt b/test/fixtures/lockfiles/HoistedNodeModuleTest/npm tar.txt index ad57dd22a75..95b98d5f12d 100644 --- a/test/fixtures/lockfiles/HoistedNodeModuleTest/npm tar.txt +++ b/test/fixtures/lockfiles/HoistedNodeModuleTest/npm tar.txt @@ -9,7 +9,7 @@ "version": "1.1.0", "license": "MIT", "dependencies": { - "tar": "7.4.3" + "tar": "7.5.6" } }, "node_modules/@isaacs/fs-minipass": { @@ -32,9 +32,9 @@ } }, "node_modules/minipass": { - "version": "7.1.2", - "resolved": "https://registry.npmjs.org/minipass/-/minipass-7.1.2.tgz", - "integrity": "sha512-qOOzS1cBTWYF4BH8fVePDBOO9iptMnGUEZwNc/cMWnTV2nVLZ7VoNWEPHkYczZA0pdoA7dl6e7FL659nX9S2aw==", + "version": "7.1.3", + "resolved": "https://registry.npmjs.org/minipass/-/minipass-7.1.3.tgz", + "integrity": "sha512-tEBHqDnIoM/1rXME1zgka9g6Q2lcoCkxHLuc7ODJ5BxbP5d4c2Z5cGgtXAku59200Cx7diuHTOYfSBD8n6mm8A==", "engines": { "node": ">=16 || 14 >=14.17" } @@ -50,30 +50,16 @@ "node": ">= 18" } }, - "node_modules/mkdirp": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-3.0.1.tgz", - "integrity": "sha512-+NsyUUAZDmo6YVHzL/stxSu3t9YS1iljliy3BSDrXJ/dkn1KYdmtZODGGjLcc9XLgVVpH4KshHB8XmZgMhaBXg==", - "bin": { - "mkdirp": "dist/cjs/src/bin.js" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/isaacs" - } - }, "node_modules/tar": { - "version": "7.4.3", - "resolved": "https://registry.npmjs.org/tar/-/tar-7.4.3.tgz", - "integrity": "sha512-5S7Va8hKfV7W5U6g3aYxXmlPoZVAwUMy9AOKyF2fVuZa2UD3qZjg578OrLRt8PcNN1PleVaL/5/yYATNL0ICUw==", + "version": "7.5.6", + "resolved": "https://registry.npmjs.org/tar/-/tar-7.5.6.tgz", + "integrity": "sha512-xqUeu2JAIJpXyvskvU3uvQW8PAmHrtXp2KDuMJwQqW8Sqq0CaZBAQ+dKS3RBXVhU4wC5NjAdKrmh84241gO9cA==", + "deprecated": "Old versions of tar are not supported, and contain widely publicized security vulnerabilities, which have been fixed in the current version. Please update. Support for old versions may be purchased (at exorbitant rates) by contacting i@izs.me", "dependencies": { "@isaacs/fs-minipass": "^4.0.0", "chownr": "^3.0.0", "minipass": "^7.1.2", - "minizlib": "^3.0.1", - "mkdirp": "^3.0.1", + "minizlib": "^3.1.0", "yallist": "^5.0.0" }, "engines": { diff --git a/test/fixtures/lockfiles/HoistedNodeModuleTest/pnpm max stack.txt b/test/fixtures/lockfiles/HoistedNodeModuleTest/pnpm max stack.txt index 4fc85d43096..9364da4b1aa 100644 --- a/test/fixtures/lockfiles/HoistedNodeModuleTest/pnpm max stack.txt +++ b/test/fixtures/lockfiles/HoistedNodeModuleTest/pnpm max stack.txt @@ -9,7 +9,7 @@ importers: .: dependencies: npm-run-all: - specifier: ^4.1.5 + specifier: 4.1.5 version: 4.1.5 packages: @@ -96,8 +96,8 @@ packages: error-ex@1.3.4: resolution: {integrity: sha512-sqQamAnR14VgCr1A618A3sGrygcpK+HEbenA/HiEAkkUwcZIIB/tgWqHFxWgOyDh4nB4JCRimh79dR5Ywc9MDQ==} - es-abstract@1.24.0: - resolution: {integrity: sha512-WSzPgsdLtTcQwm4CROfS5ju2Wa1QQcVeT37jFjYzdFz1r9ahadC8B8/a4qxJxM+09F18iumCdRmlr96ZYkQvEg==} + es-abstract@1.24.1: + resolution: {integrity: sha512-zHXBLhP+QehSSbsS9Pt23Gg964240DPd6QCf8WpkqEXxQ7fhdZzYsocOr5u7apWonsS5EjZDmTF+/slGMyasvw==} engines: {node: '>= 0.4'} es-define-property@1.0.1: @@ -311,8 +311,8 @@ packages: resolution: {integrity: sha512-S3UwM3yj5mtUSEfP41UZmt/0SCoVYUcU1rkXv+BQ5Ig8ndL4sPoJNBUJERafdPb5jjHJGuMgytgKvKIf58XNBw==} engines: {node: '>= 0.10.0'} - minimatch@3.1.2: - resolution: {integrity: sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==} + minimatch@3.1.3: + resolution: {integrity: sha512-M2GCs7Vk83NxkUyQV1bkABc4yxgz9kILhHImZiBPAZ9ybuvCb0/H7lEl5XvIg3g+9d4eNotkZA5IWwYl0tibaA==} nice-try@1.0.5: resolution: {integrity: sha512-1nh45deeb5olNY7eX82BkPO7SSxR5SSYJiPTrTdFUVYwAl8CKMA5N9PjTYkHiRjisVcxcQ1HXdLhx2qxxJzLNQ==} @@ -451,8 +451,8 @@ packages: spdx-expression-parse@3.0.1: resolution: {integrity: sha512-cbqHunsQWnJNE6KhVSMsMeH5H/L9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx/ZK4Q==} - spdx-license-ids@3.0.22: - resolution: {integrity: sha512-4PRT4nh1EImPbt2jASOKHX7PB7I+e4IWNLvkKFDxNhJlfjbYlleYQh285Z/3mPTHSAK/AvdMmw5BNNuYH8ShgQ==} + spdx-license-ids@3.0.23: + resolution: {integrity: sha512-CWLcCCH7VLu13TgOH+r8p1O/Znwhqv/dbb6lqWy67G+pT1kHmeD/+V36AVb/vq8QMIQwVShJ6Ssl5FPh0fuSdw==} stop-iteration-iterator@1.1.0: resolution: {integrity: sha512-eLoXW/DHyl62zxY4SCaIgnRhuMr6ri4juEYARS8E6sCEqzKpOiE521Ucofdx+KnDZl5xmvGYaaKCk5FEOxJCoQ==} @@ -521,8 +521,8 @@ packages: resolution: {integrity: sha512-K4jVyjnBdgvc86Y6BkaLZEN933SwYOuBFkdmBu9ZfkcAbdVbpITnDmjvZ/aQjRXQrv5EPkTnD1s39GiiqbngCw==} engines: {node: '>= 0.4'} - which-typed-array@1.1.19: - resolution: {integrity: sha512-rEvr90Bck4WZt9HHFC4DJMsjvu7x+r6bImz0/BrbWb7A2djJ8hnZMrWnHo9F8ssv0OMErasDhftrfROTyqSDrw==} + which-typed-array@1.1.20: + resolution: {integrity: sha512-LYfpUkmqwl0h9A2HL09Mms427Q1RZWuOHsukfVcKRq9q95iQxdw0ix1JQrqbcDR9PH1QDwf5Qo8OZb5lksZ8Xg==} engines: {node: '>= 0.4'} which@1.3.1: @@ -545,7 +545,7 @@ snapshots: array-buffer-byte-length: 1.0.2 call-bind: 1.0.8 define-properties: 1.2.1 - es-abstract: 1.24.0 + es-abstract: 1.24.1 es-errors: 1.3.0 get-intrinsic: 1.3.0 is-array-buffer: 3.0.5 @@ -642,7 +642,7 @@ snapshots: dependencies: is-arrayish: 0.2.1 - es-abstract@1.24.0: + es-abstract@1.24.1: dependencies: array-buffer-byte-length: 1.0.2 arraybuffer.prototype.slice: 1.0.4 @@ -697,7 +697,7 @@ snapshots: typed-array-byte-offset: 1.0.4 typed-array-length: 1.0.7 unbox-primitive: 1.1.0 - which-typed-array: 1.1.19 + which-typed-array: 1.1.20 es-define-property@1.0.1: {} @@ -893,7 +893,7 @@ snapshots: is-typed-array@1.1.15: dependencies: - which-typed-array: 1.1.19 + which-typed-array: 1.1.20 is-weakmap@2.0.2: {} @@ -923,7 +923,7 @@ snapshots: memorystream@0.3.1: {} - minimatch@3.1.2: + minimatch@3.1.3: dependencies: brace-expansion: 1.1.12 @@ -942,7 +942,7 @@ snapshots: chalk: 2.4.2 cross-spawn: 6.0.6 memorystream: 0.3.1 - minimatch: 3.1.2 + minimatch: 3.1.3 pidtree: 0.3.1 read-pkg: 3.0.0 shell-quote: 1.8.3 @@ -996,7 +996,7 @@ snapshots: dependencies: call-bind: 1.0.8 define-properties: 1.2.1 - es-abstract: 1.24.0 + es-abstract: 1.24.1 es-errors: 1.3.0 es-object-atoms: 1.1.1 get-intrinsic: 1.3.0 @@ -1100,16 +1100,16 @@ snapshots: spdx-correct@3.2.0: dependencies: spdx-expression-parse: 3.0.1 - spdx-license-ids: 3.0.22 + spdx-license-ids: 3.0.23 spdx-exceptions@2.5.0: {} spdx-expression-parse@3.0.1: dependencies: spdx-exceptions: 2.5.0 - spdx-license-ids: 3.0.22 + spdx-license-ids: 3.0.23 - spdx-license-ids@3.0.22: {} + spdx-license-ids@3.0.23: {} stop-iteration-iterator@1.1.0: dependencies: @@ -1120,7 +1120,7 @@ snapshots: dependencies: call-bind: 1.0.8 define-properties: 1.2.1 - es-abstract: 1.24.0 + es-abstract: 1.24.1 es-object-atoms: 1.1.1 string.prototype.trim@1.2.10: @@ -1129,7 +1129,7 @@ snapshots: call-bound: 1.0.4 define-data-property: 1.1.4 define-properties: 1.2.1 - es-abstract: 1.24.0 + es-abstract: 1.24.1 es-object-atoms: 1.1.1 has-property-descriptors: 1.0.2 @@ -1221,7 +1221,7 @@ snapshots: isarray: 2.0.5 which-boxed-primitive: 1.1.1 which-collection: 1.0.2 - which-typed-array: 1.1.19 + which-typed-array: 1.1.20 which-collection@1.0.2: dependencies: @@ -1230,7 +1230,7 @@ snapshots: is-weakmap: 2.0.2 is-weakset: 2.0.4 - which-typed-array@1.1.19: + which-typed-array@1.1.20: dependencies: available-typed-arrays: 1.0.7 call-bind: 1.0.8 diff --git a/test/fixtures/lockfiles/HoistedNodeModuleTest/pnpm optional dependencies.txt b/test/fixtures/lockfiles/HoistedNodeModuleTest/pnpm optional dependencies.txt index 3a631266981..a3383d935d8 100644 --- a/test/fixtures/lockfiles/HoistedNodeModuleTest/pnpm optional dependencies.txt +++ b/test/fixtures/lockfiles/HoistedNodeModuleTest/pnpm optional dependencies.txt @@ -9,8 +9,8 @@ importers: .: dependencies: electron-clear-data: - specifier: ^1.0.5 - version: 1.0.5(electron@39.2.6) + specifier: 1.0.5 + version: 1.0.5(electron@40.6.0) optionalDependencies: debug: specifier: 3.1.0 @@ -33,14 +33,14 @@ packages: '@types/cacheable-request@6.0.3': resolution: {integrity: sha512-IQ3EbTzGxIigb1I3qPZc1rWJnH0BmSKv5QYTalEwweFvyBDLSAe24zP0le/hyi7ecGfZVlIVAg4BZqb8WBwKqw==} - '@types/http-cache-semantics@4.0.4': - resolution: {integrity: sha512-1m0bIFVc7eJWyve9S0RnuRgcQqF/Xd5QsUZAZeQFr1Q3/p9JWoQQEqmVy+DPTNpGXwhgIetAoYF8JSc33q29QA==} + '@types/http-cache-semantics@4.2.0': + resolution: {integrity: sha512-L3LgimLHXtGkWikKnsPg0/VFx9OGZaC+eN1u4r+OB1XRqH3meBIAVC2zr1WdMH+RHmnRkqliQAOHNJ/E0j/e0Q==} '@types/keyv@3.1.4': resolution: {integrity: sha512-BQ5aZNSCpj7D6K2ksrRCTmKRLEpnPvWDiLPfoGyhZ++8YtiK9d/3DBKPJgry359X/P1PfruyYwvnvwFjuEiEIg==} - '@types/node@22.19.2': - resolution: {integrity: sha512-LPM2G3Syo1GLzXLGJAKdqoU35XvrWzGJ21/7sgZTUpbkBaOasTj8tjwn6w+hCkqaa1TfJ/w67rJSwYItlJ2mYw==} + '@types/node@24.10.13': + resolution: {integrity: sha512-oH72nZRfDv9lADUBSo104Aq7gPHpQZc4BTx38r9xf9pg5LfP6EzSyH2n7qFmmxRQXh7YlUXODcYsg6PuTDSxGg==} '@types/responselike@1.0.3': resolution: {integrity: sha512-H/+L+UkTV33uf49PH5pCAUBVPNj2nDBXTN+qS1dOwyyg24l3CcicicCA7ca+HMvJBZcFgl5r8e+RR6elsb4Lyw==} @@ -108,8 +108,8 @@ packages: peerDependencies: electron: '>= 1.2.2' - electron@39.2.6: - resolution: {integrity: sha512-dHBgTodWBZd+tL1Dt0PSh/CFLHeDkFCTKCTXu1dgPhlE9Z3k2zzlBQ9B2oW55CFsKanBDHiUomHJNw0XaSdQpA==} + electron@40.6.0: + resolution: {integrity: sha512-ett8W+yOFGDuM0vhJMamYSkrbV3LoaffzJd9GfjI96zRAxyrNqUSKqBpf/WGbQCweDxX2pkUCUfrv4wwKpsFZA==} engines: {node: '>= 12.20.55'} hasBin: true @@ -260,8 +260,8 @@ packages: resolution: {integrity: sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==} hasBin: true - semver@7.7.3: - resolution: {integrity: sha512-SdsKMrI9TdgjdweUSR9MweHA4EJ8YxHn8DFaDisvhVlUOe4BF1tLD7GAj0lIqWVl+dPb/rExr0Btby5loQm20Q==} + semver@7.7.4: + resolution: {integrity: sha512-vFKC2IEtQnVhpT78h1Yp8wzwrf8CM+MzKMHGJZfBtzhZNycRFnXsHk6E5TxIkkMsgNS7mdX3AGB7x2QM2di4lA==} engines: {node: '>=10'} hasBin: true @@ -280,8 +280,8 @@ packages: resolution: {integrity: sha512-34R7HTnG0XIJcBSn5XhDd7nNFPRcXYRZrBB2O2jdKqYODldSzBAqzsWoZYYvduky73toYS/ESqxPvkDf/F0XMg==} engines: {node: '>=10'} - undici-types@6.21.0: - resolution: {integrity: sha512-iwDZqg0QAGrg9Rav5H4n0M64c3mkR59cJ6wQp+7C4nI0gsmExaedaYLNO44eT4AtBBwjbTiGPMlt2Md0T9H9JQ==} + undici-types@7.16.0: + resolution: {integrity: sha512-Zz+aZWSj8LE6zoxD+xrjh4VfkIG8Ya6LvYkZqtUQGJPZjYl53ypCaUwWqo7eI0x66KBGeRo+mlBEkMSeSZ38Nw==} universalify@0.1.2: resolution: {integrity: sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg==} @@ -317,28 +317,28 @@ snapshots: '@types/cacheable-request@6.0.3': dependencies: - '@types/http-cache-semantics': 4.0.4 + '@types/http-cache-semantics': 4.2.0 '@types/keyv': 3.1.4 - '@types/node': 22.19.2 + '@types/node': 24.10.13 '@types/responselike': 1.0.3 - '@types/http-cache-semantics@4.0.4': {} + '@types/http-cache-semantics@4.2.0': {} '@types/keyv@3.1.4': dependencies: - '@types/node': 22.19.2 + '@types/node': 24.10.13 - '@types/node@22.19.2': + '@types/node@24.10.13': dependencies: - undici-types: 6.21.0 + undici-types: 7.16.0 '@types/responselike@1.0.3': dependencies: - '@types/node': 22.19.2 + '@types/node': 24.10.13 '@types/yauzl@2.10.3': dependencies: - '@types/node': 22.19.2 + '@types/node': 24.10.13 optional: true boolean@3.2.0: @@ -394,14 +394,14 @@ snapshots: detect-node@2.1.0: optional: true - electron-clear-data@1.0.5(electron@39.2.6): + electron-clear-data@1.0.5(electron@40.6.0): dependencies: - electron: 39.2.6 + electron: 40.6.0 - electron@39.2.6: + electron@40.6.0: dependencies: '@electron/get': 2.0.3 - '@types/node': 22.19.2 + '@types/node': 24.10.13 extract-zip: 2.0.1 transitivePeerDependencies: - supports-color @@ -454,7 +454,7 @@ snapshots: es6-error: 4.1.1 matcher: 3.0.0 roarr: 2.15.4 - semver: 7.7.3 + semver: 7.7.4 serialize-error: 7.0.1 optional: true @@ -567,7 +567,7 @@ snapshots: semver@6.3.1: {} - semver@7.7.3: + semver@7.7.4: optional: true serialize-error@7.0.1: @@ -587,7 +587,7 @@ snapshots: type-fest@0.13.1: optional: true - undici-types@6.21.0: {} + undici-types@7.16.0: {} universalify@0.1.2: {} diff --git a/test/fixtures/lockfiles/HoistedNodeModuleTest/pnpm workspace with native module.txt b/test/fixtures/lockfiles/HoistedNodeModuleTest/pnpm workspace with native module.txt index deabedba3d6..f1f7ffc0c6c 100644 --- a/test/fixtures/lockfiles/HoistedNodeModuleTest/pnpm workspace with native module.txt +++ b/test/fixtures/lockfiles/HoistedNodeModuleTest/pnpm workspace with native module.txt @@ -17,7 +17,7 @@ importers: packages/test-app: dependencies: better-sqlite3: - specifier: ^11.10.0 + specifier: 11.10.0 version: 11.10.0 debug: specifier: 4.4.3 @@ -44,14 +44,14 @@ packages: '@types/cacheable-request@6.0.3': resolution: {integrity: sha512-IQ3EbTzGxIigb1I3qPZc1rWJnH0BmSKv5QYTalEwweFvyBDLSAe24zP0le/hyi7ecGfZVlIVAg4BZqb8WBwKqw==} - '@types/http-cache-semantics@4.0.4': - resolution: {integrity: sha512-1m0bIFVc7eJWyve9S0RnuRgcQqF/Xd5QsUZAZeQFr1Q3/p9JWoQQEqmVy+DPTNpGXwhgIetAoYF8JSc33q29QA==} + '@types/http-cache-semantics@4.2.0': + resolution: {integrity: sha512-L3LgimLHXtGkWikKnsPg0/VFx9OGZaC+eN1u4r+OB1XRqH3meBIAVC2zr1WdMH+RHmnRkqliQAOHNJ/E0j/e0Q==} '@types/keyv@3.1.4': resolution: {integrity: sha512-BQ5aZNSCpj7D6K2ksrRCTmKRLEpnPvWDiLPfoGyhZ++8YtiK9d/3DBKPJgry359X/P1PfruyYwvnvwFjuEiEIg==} - '@types/node@22.19.2': - resolution: {integrity: sha512-LPM2G3Syo1GLzXLGJAKdqoU35XvrWzGJ21/7sgZTUpbkBaOasTj8tjwn6w+hCkqaa1TfJ/w67rJSwYItlJ2mYw==} + '@types/node@22.19.11': + resolution: {integrity: sha512-BH7YwL6rA93ReqeQS1c4bsPpcfOmJasG+Fkr6Y59q83f9M1WcBRHR2vM+P9eOisYRcN3ujQoiZY8uk5W+1WL8w==} '@types/responselike@1.0.3': resolution: {integrity: sha512-H/+L+UkTV33uf49PH5pCAUBVPNj2nDBXTN+qS1dOwyyg24l3CcicicCA7ca+HMvJBZcFgl5r8e+RR6elsb4Lyw==} @@ -268,8 +268,8 @@ packages: napi-build-utils@2.0.0: resolution: {integrity: sha512-GEbrYkbfF7MoNaoh2iGG84Mnf/WZfB0GdGEsM8wz7Expx/LlWf5U8t9nvJKXSp3qr5IsEbK04cBGhol/KwOsWA==} - node-abi@3.85.0: - resolution: {integrity: sha512-zsFhmbkAzwhTft6nd3VxcG0cvJsT70rL+BIGHWVq5fi6MwGrHwzqKaxXE+Hl2GmnGItnDKPPkO5/LQqjVkIdFg==} + node-abi@3.87.0: + resolution: {integrity: sha512-+CGM1L1CgmtheLcBuleyYOn7NWPVu0s0EJH2C4puxgEZb9h8QpR9G2dBfZJOAUhi7VQxuBPMd0hiISWcTyiYyQ==} engines: {node: '>=10'} normalize-url@6.1.0: @@ -293,6 +293,7 @@ packages: prebuild-install@7.1.3: resolution: {integrity: sha512-8Mf2cbV7x1cXPUILADGI3wuhfqWvtiLA1iclTDbFRZkgRQS0NqsPZphna9V+HyTEadheuPmjaJMsbzKQFOzLug==} engines: {node: '>=10'} + deprecated: No longer maintained. Please contact the author of the relevant native addon; alternatives are available. hasBin: true progress@2.0.3: @@ -334,8 +335,8 @@ packages: resolution: {integrity: sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==} hasBin: true - semver@7.7.3: - resolution: {integrity: sha512-SdsKMrI9TdgjdweUSR9MweHA4EJ8YxHn8DFaDisvhVlUOe4BF1tLD7GAj0lIqWVl+dPb/rExr0Btby5loQm20Q==} + semver@7.7.4: + resolution: {integrity: sha512-vFKC2IEtQnVhpT78h1Yp8wzwrf8CM+MzKMHGJZfBtzhZNycRFnXsHk6E5TxIkkMsgNS7mdX3AGB7x2QM2di4lA==} engines: {node: '>=10'} hasBin: true @@ -417,28 +418,28 @@ snapshots: '@types/cacheable-request@6.0.3': dependencies: - '@types/http-cache-semantics': 4.0.4 + '@types/http-cache-semantics': 4.2.0 '@types/keyv': 3.1.4 - '@types/node': 22.19.2 + '@types/node': 22.19.11 '@types/responselike': 1.0.3 - '@types/http-cache-semantics@4.0.4': {} + '@types/http-cache-semantics@4.2.0': {} '@types/keyv@3.1.4': dependencies: - '@types/node': 22.19.2 + '@types/node': 22.19.11 - '@types/node@22.19.2': + '@types/node@22.19.11': dependencies: undici-types: 6.21.0 '@types/responselike@1.0.3': dependencies: - '@types/node': 22.19.2 + '@types/node': 22.19.11 '@types/yauzl@2.10.3': dependencies: - '@types/node': 22.19.2 + '@types/node': 22.19.11 optional: true base64-js@1.5.1: {} @@ -520,7 +521,7 @@ snapshots: electron@35.7.5: dependencies: '@electron/get': 2.0.3 - '@types/node': 22.19.2 + '@types/node': 22.19.11 extract-zip: 2.0.1 transitivePeerDependencies: - supports-color @@ -581,7 +582,7 @@ snapshots: es6-error: 4.1.1 matcher: 3.0.0 roarr: 2.15.4 - semver: 7.7.3 + semver: 7.7.4 serialize-error: 7.0.1 optional: true @@ -662,9 +663,9 @@ snapshots: napi-build-utils@2.0.0: {} - node-abi@3.85.0: + node-abi@3.87.0: dependencies: - semver: 7.7.3 + semver: 7.7.4 normalize-url@6.1.0: {} @@ -687,7 +688,7 @@ snapshots: minimist: 1.2.8 mkdirp-classic: 0.5.3 napi-build-utils: 2.0.0 - node-abi: 3.85.0 + node-abi: 3.87.0 pump: 3.0.3 rc: 1.2.8 simple-get: 4.0.1 @@ -739,7 +740,7 @@ snapshots: semver@6.3.1: {} - semver@7.7.3: {} + semver@7.7.4: {} serialize-error@7.0.1: dependencies: diff --git a/test/fixtures/lockfiles/HoistedNodeModuleTest/yarn berry version conflict with hoisted dependencies.txt b/test/fixtures/lockfiles/HoistedNodeModuleTest/yarn berry version conflict with hoisted dependencies.txt new file mode 100644 index 00000000000..f0993ed9218 --- /dev/null +++ b/test/fixtures/lockfiles/HoistedNodeModuleTest/yarn berry version conflict with hoisted dependencies.txt @@ -0,0 +1,516 @@ +# This file is generated by running "yarn install" inside your project. +# Manual changes might be lost - proceed with caution! + +__metadata: + version: 6 + cacheKey: 8 + +"@acemir/cssom@npm:^0.9.28": + version: 0.9.31 + resolution: "@acemir/cssom@npm:0.9.31" + checksum: f7a8d7f3eec3143f1cb9ce332ebe1d8a1922aa155f7a0619c9400753131d9f9baf22fa300352a9f93f20f53083e4acc20d4a8e663aa7b47e8c3191839e50d404 + languageName: node + linkType: hard + +"@asamuzakjp/css-color@npm:^4.1.1": + version: 4.1.2 + resolution: "@asamuzakjp/css-color@npm:4.1.2" + dependencies: + "@csstools/css-calc": ^3.0.0 + "@csstools/css-color-parser": ^4.0.1 + "@csstools/css-parser-algorithms": ^4.0.0 + "@csstools/css-tokenizer": ^4.0.0 + lru-cache: ^11.2.5 + checksum: b345abccc27844b703fc5dc5a25d0d219c00ea115764c8a6c702332b0b34daa483727a6c2d0d8bbc2a91767f343cbc236393e1cfad7ede5b88c904c72e0e7479 + languageName: node + linkType: hard + +"@asamuzakjp/dom-selector@npm:^6.7.6": + version: 6.8.1 + resolution: "@asamuzakjp/dom-selector@npm:6.8.1" + dependencies: + "@asamuzakjp/nwsapi": ^2.3.9 + bidi-js: ^1.0.3 + css-tree: ^3.1.0 + is-potential-custom-element-name: ^1.0.1 + lru-cache: ^11.2.6 + checksum: 19f39ae862d3451c6a8919d73f00e0c1b7a711c209ad6079abe9998089c7cca1307e5ddf9057f1776bd6a79ffd496ae582aaee2924bf15e6992526379b7d3b45 + languageName: node + linkType: hard + +"@asamuzakjp/nwsapi@npm:^2.3.9": + version: 2.3.9 + resolution: "@asamuzakjp/nwsapi@npm:2.3.9" + checksum: 5fe839eb5cdc231176a671f8723b40a2f3f29f2fee5bf76120732819dbbd4ecda0e8d7464135aafb16731eea4b0e85a998bece983aae8612fe00e73433bc2cf4 + languageName: node + linkType: hard + +"@csstools/color-helpers@npm:^6.0.2": + version: 6.0.2 + resolution: "@csstools/color-helpers@npm:6.0.2" + checksum: 0261a2d1280189c7e15c8b3583c74fa8956a87c2a55fc1d2f759ca454b030d3440cbee5d8c6dc8a34898781c432f94632b163051ccdbc23a2fcfdd6871255692 + languageName: node + linkType: hard + +"@csstools/css-calc@npm:^3.0.0, @csstools/css-calc@npm:^3.1.1": + version: 3.1.1 + resolution: "@csstools/css-calc@npm:3.1.1" + peerDependencies: + "@csstools/css-parser-algorithms": ^4.0.0 + "@csstools/css-tokenizer": ^4.0.0 + checksum: 22d76fa9a83b58ad61c9341937549304f51dfddbd7f03324e3ea4a59c7e317f54ec9c75122bf9ccf8b32c448ea5b453c239cbaa161a1a4995ee0779bb81ecbc8 + languageName: node + linkType: hard + +"@csstools/css-color-parser@npm:^4.0.1": + version: 4.0.2 + resolution: "@csstools/css-color-parser@npm:4.0.2" + dependencies: + "@csstools/color-helpers": ^6.0.2 + "@csstools/css-calc": ^3.1.1 + peerDependencies: + "@csstools/css-parser-algorithms": ^4.0.0 + "@csstools/css-tokenizer": ^4.0.0 + checksum: 97f20f8eb9395eccd532cccdd0fbd03bdbdcdb204f2bfbac368fc0c1a1458bbfae6e04f36b322979a8f5e0d23e75affc0f19d0cd3b3055bd2fe5fb825cd5677b + languageName: node + linkType: hard + +"@csstools/css-parser-algorithms@npm:^4.0.0": + version: 4.0.0 + resolution: "@csstools/css-parser-algorithms@npm:4.0.0" + peerDependencies: + "@csstools/css-tokenizer": ^4.0.0 + checksum: 5e7003224ac756586163f36d64d5c8fd49af24d2ec218b084a22026b4e8a6d652cbffcaf042f542cf3d2662becea2fc112f5ab2c5a61355a4a2e0f6ebeebffb2 + languageName: node + linkType: hard + +"@csstools/css-syntax-patches-for-csstree@npm:^1.0.21": + version: 1.0.28 + resolution: "@csstools/css-syntax-patches-for-csstree@npm:1.0.28" + checksum: 14bd421d87f00b7f9fcbd7d78d758c1851a08b141de6fa90ee16587a55780756fe78a39cccaf4edf31a435b2f622f15cd023cf4958d03b354ec5200f891b79ac + languageName: node + linkType: hard + +"@csstools/css-tokenizer@npm:^4.0.0": + version: 4.0.0 + resolution: "@csstools/css-tokenizer@npm:4.0.0" + checksum: 924d1223561c035c7e9d8cde747d0ea37c4cba5b635b401901fe3f67ef0ccc33106a7c78b9751e80519457e432d950954717497093a5df56900f258ab4a50641 + languageName: node + linkType: hard + +"@exodus/bytes@npm:^1.6.0": + version: 1.14.1 + resolution: "@exodus/bytes@npm:1.14.1" + peerDependencies: + "@noble/hashes": ^1.8.0 || ^2.0.0 + peerDependenciesMeta: + "@noble/hashes": + optional: true + checksum: 1b767061100e0b9ffc80efe2f3b3f0f8d895b30d5ff0c28e0dd0b0f96263163ba4aaa1968733ace058b9d502bd5e595fa537fcec0afedb79d981405b04f3bfb6 + languageName: node + linkType: hard + +"agent-base@npm:^7.1.0, agent-base@npm:^7.1.2": + version: 7.1.4 + resolution: "agent-base@npm:7.1.4" + checksum: 86a7f542af277cfbd77dd61e7df8422f90bac512953709003a1c530171a9d019d072e2400eab2b59f84b49ab9dd237be44315ca663ac73e82b3922d10ea5eafa + languageName: node + linkType: hard + +"argparse@npm:^2.0.1": + version: 2.0.1 + resolution: "argparse@npm:2.0.1" + checksum: 83644b56493e89a254bae05702abf3a1101b4fa4d0ca31df1c9985275a5a5bd47b3c27b7fa0b71098d41114d8ca000e6ed90cad764b306f8a503665e4d517ced + languageName: node + linkType: hard + +"bidi-js@npm:^1.0.3": + version: 1.0.3 + resolution: "bidi-js@npm:1.0.3" + dependencies: + require-from-string: ^2.0.2 + checksum: 877c5dcfd69a35fd30fee9e49a03faf205a7a4cd04a38af7648974a659cab7b1cd51fa881d7957c07bd1fc5adf22b90a56da3617bb0885ee69d58ff41117658c + languageName: node + linkType: hard + +"css-tree@npm:^3.1.0": + version: 3.1.0 + resolution: "css-tree@npm:3.1.0" + dependencies: + mdn-data: 2.12.2 + source-map-js: ^1.0.1 + checksum: 6b8c713c22b7223c0e71179575c3bbf421a13a61641204645d6c3b560bdc4ffed8d676220bbcb83777e07b46a934ec3b1c629aa61d57422c196c8e2e7417ee1a + languageName: node + linkType: hard + +"cssstyle@npm:^5.3.4": + version: 5.3.7 + resolution: "cssstyle@npm:5.3.7" + dependencies: + "@asamuzakjp/css-color": ^4.1.1 + "@csstools/css-syntax-patches-for-csstree": ^1.0.21 + css-tree: ^3.1.0 + lru-cache: ^11.2.4 + checksum: a2c0902aa2ef11be3ace82867e5c3c5cd310e9c356a84e9e5d3f4944ee25ce36feefee7f182486336ee682fa494c74363bb717160c0336ef386858cefe26d072 + languageName: node + linkType: hard + +"data-urls@npm:^6.0.0": + version: 6.0.1 + resolution: "data-urls@npm:6.0.1" + dependencies: + whatwg-mimetype: ^5.0.0 + whatwg-url: ^15.1.0 + checksum: 6ab8025df0ee497bfb12241f815fd3f3438dd34cd851c0801c16aa4e1e70f4f68d6334e3176ca340fe4084622b8a299a98b3d3059bbca671f1eaf8bae1088ec2 + languageName: node + linkType: hard + +"debug@npm:4, debug@npm:^4.3.4": + version: 4.4.3 + resolution: "debug@npm:4.4.3" + dependencies: + ms: ^2.1.3 + peerDependenciesMeta: + supports-color: + optional: true + checksum: 4805abd570e601acdca85b6aa3757186084a45cff9b2fa6eee1f3b173caa776b45f478b2a71a572d616d2010cea9211d0ac4a02a610e4c18ac4324bde3760834 + languageName: node + linkType: hard + +"decimal.js@npm:^10.6.0": + version: 10.6.0 + resolution: "decimal.js@npm:10.6.0" + checksum: 9302b990cd6f4da1c7602200002e40e15d15660374432963421d3cd6d81cc6e27e0a488356b030fee64650947e32e78bdbea245d596dadfeeeb02e146d485999 + languageName: node + linkType: hard + +"entities@npm:^4.4.0": + version: 4.5.0 + resolution: "entities@npm:4.5.0" + checksum: 853f8ebd5b425d350bffa97dd6958143179a5938352ccae092c62d1267c4e392a039be1bae7d51b6e4ffad25f51f9617531fedf5237f15df302ccfb452cbf2d7 + languageName: node + linkType: hard + +"entities@npm:^6.0.0": + version: 6.0.1 + resolution: "entities@npm:6.0.1" + checksum: 937b952e81aca641660a6a07f70001c6821973dea3ae7f6a5013eadce94620f3ed2e9c745832d503c8811ce6e97704d8a0396159580c0e567d815234de7fdecf + languageName: node + linkType: hard + +"foo@workspace:packages/foo": + version: 0.0.0-use.local + resolution: "foo@workspace:packages/foo" + dependencies: + ms: 2.0.0 + languageName: unknown + linkType: soft + +"html-encoding-sniffer@npm:^6.0.0": + version: 6.0.0 + resolution: "html-encoding-sniffer@npm:6.0.0" + dependencies: + "@exodus/bytes": ^1.6.0 + checksum: a8d30cbc6f7044c6d671bec9fbdddb90f429a326da176307c2253bed8a68b541d18b5577bc1317c0bf36af45438a43e22da19f0c2cc58d298506d97a3a7dfa90 + languageName: node + linkType: hard + +"http-proxy-agent@npm:^7.0.2": + version: 7.0.2 + resolution: "http-proxy-agent@npm:7.0.2" + dependencies: + agent-base: ^7.1.0 + debug: ^4.3.4 + checksum: 670858c8f8f3146db5889e1fa117630910101db601fff7d5a8aa637da0abedf68c899f03d3451cac2f83bcc4c3d2dabf339b3aa00ff8080571cceb02c3ce02f3 + languageName: node + linkType: hard + +"https-proxy-agent@npm:^7.0.6": + version: 7.0.6 + resolution: "https-proxy-agent@npm:7.0.6" + dependencies: + agent-base: ^7.1.2 + debug: 4 + checksum: b882377a120aa0544846172e5db021fa8afbf83fea2a897d397bd2ddd8095ab268c24bc462f40a15f2a8c600bf4aa05ce52927f70038d4014e68aefecfa94e8d + languageName: node + linkType: hard + +"is-potential-custom-element-name@npm:^1.0.1": + version: 1.0.1 + resolution: "is-potential-custom-element-name@npm:1.0.1" + checksum: ced7bbbb6433a5b684af581872afe0e1767e2d1146b2207ca0068a648fb5cab9d898495d1ac0583524faaf24ca98176a7d9876363097c2d14fee6dd324f3a1ab + languageName: node + linkType: hard + +"jsdom@npm:27.4.0": + version: 27.4.0 + resolution: "jsdom@npm:27.4.0" + dependencies: + "@acemir/cssom": ^0.9.28 + "@asamuzakjp/dom-selector": ^6.7.6 + "@exodus/bytes": ^1.6.0 + cssstyle: ^5.3.4 + data-urls: ^6.0.0 + decimal.js: ^10.6.0 + html-encoding-sniffer: ^6.0.0 + http-proxy-agent: ^7.0.2 + https-proxy-agent: ^7.0.6 + is-potential-custom-element-name: ^1.0.1 + parse5: ^8.0.0 + saxes: ^6.0.0 + symbol-tree: ^3.2.4 + tough-cookie: ^6.0.0 + w3c-xmlserializer: ^5.0.0 + webidl-conversions: ^8.0.0 + whatwg-mimetype: ^4.0.0 + whatwg-url: ^15.1.0 + ws: ^8.18.3 + xml-name-validator: ^5.0.0 + peerDependencies: + canvas: ^3.0.0 + peerDependenciesMeta: + canvas: + optional: true + checksum: ec3f4a98174f2cf739ea33a2f59dcb66a2555e475b57d9e016fa55cdcc5b61f002e3d3c161142869d161d7535a6cc11d9fb1328860b27848b3ea94e1d99279bd + languageName: node + linkType: hard + +"linkify-it@npm:^5.0.0": + version: 5.0.0 + resolution: "linkify-it@npm:5.0.0" + dependencies: + uc.micro: ^2.0.0 + checksum: b0b86cadaf816b64c947a83994ceaad1c15f9fe7e079776ab88699fb71afd7b8fc3fd3d0ae5ebec8c92c1d347be9ba257b8aef338c0ebf81b0d27dcf429a765a + languageName: node + linkType: hard + +"lru-cache@npm:^11.2.4, lru-cache@npm:^11.2.5, lru-cache@npm:^11.2.6": + version: 11.2.6 + resolution: "lru-cache@npm:11.2.6" + checksum: 26fe602c92a0cb7a8da9a85db162ddd810d84507d9c4ef8d95a785a805648f9579e1148aaeac260f6b6315197bcf27c1b7e60a0a066621d6e95b3587699a0c70 + languageName: node + linkType: hard + +"markdown-it@npm:14.1.0": + version: 14.1.0 + resolution: "markdown-it@npm:14.1.0" + dependencies: + argparse: ^2.0.1 + entities: ^4.4.0 + linkify-it: ^5.0.0 + mdurl: ^2.0.0 + punycode.js: ^2.3.1 + uc.micro: ^2.1.0 + bin: + markdown-it: bin/markdown-it.mjs + checksum: 07296b45ebd0b13a55611a24d1b1ad002c6729ec54f558f597846994b0b7b1de79d13cd99ff3e7b6e9e027f36b63125cdcf69174da294ecabdd4e6b9fff39e5d + languageName: node + linkType: hard + +"mdn-data@npm:2.12.2": + version: 2.12.2 + resolution: "mdn-data@npm:2.12.2" + checksum: 77f38c180292cfbbd41c06641a27940cc293c08f47faa98f80bf64f98bb1b2a804df371e864e31a1ea97bdf181c0b0f85a2d96d1a6261f43c427b32222f33f1f + languageName: node + linkType: hard + +"mdurl@npm:^2.0.0": + version: 2.0.0 + resolution: "mdurl@npm:2.0.0" + checksum: 880bc289ef668df0bb34c5b2b5aaa7b6ea755052108cdaf4a5e5968ad01cf27e74927334acc9ebcc50a8628b65272ae6b1fd51fae1330c130e261c0466e1a3b2 + languageName: node + linkType: hard + +"ms@npm:2.0.0": + version: 2.0.0 + resolution: "ms@npm:2.0.0" + checksum: 0e6a22b8b746d2e0b65a430519934fefd41b6db0682e3477c10f60c76e947c4c0ad06f63ffdf1d78d335f83edee8c0aa928aa66a36c7cd95b69b26f468d527f4 + languageName: node + linkType: hard + +"ms@npm:^2.1.3": + version: 2.1.3 + resolution: "ms@npm:2.1.3" + checksum: aa92de608021b242401676e35cfa5aa42dd70cbdc082b916da7fb925c542173e36bce97ea3e804923fe92c0ad991434e4a38327e15a1b5b5f945d66df615ae6d + languageName: node + linkType: hard + +"parse5@npm:^8.0.0": + version: 8.0.0 + resolution: "parse5@npm:8.0.0" + dependencies: + entities: ^6.0.0 + checksum: 6f5844c71214f70b97e09573699693cfaa37cbb0ab3a41af4c0d295474a82c23cd48b2daaa2cefa5f5cdc7d0bfa6b1949300668155f54d389e51edec1dc6d27a + languageName: node + linkType: hard + +"punycode.js@npm:^2.3.1": + version: 2.3.1 + resolution: "punycode.js@npm:2.3.1" + checksum: 13466d7ed5e8dacdab8c4cc03837e7dd14218a59a40eb14a837f1f53ca396e18ef2c4ee6d7766b8ed2fc391d6a3ac489eebf2de83b3596f5a54e86df4a251b72 + languageName: node + linkType: hard + +"punycode@npm:^2.3.1": + version: 2.3.1 + resolution: "punycode@npm:2.3.1" + checksum: bb0a0ceedca4c3c57a9b981b90601579058903c62be23c5e8e843d2c2d4148a3ecf029d5133486fb0e1822b098ba8bba09e89d6b21742d02fa26bda6441a6fb2 + languageName: node + linkType: hard + +"require-from-string@npm:^2.0.2": + version: 2.0.2 + resolution: "require-from-string@npm:2.0.2" + checksum: a03ef6895445f33a4015300c426699bc66b2b044ba7b670aa238610381b56d3f07c686251740d575e22f4c87531ba662d06937508f0f3c0f1ddc04db3130560b + languageName: node + linkType: hard + +"root-workspace-0b6124@workspace:.": + version: 0.0.0-use.local + resolution: "root-workspace-0b6124@workspace:." + languageName: unknown + linkType: soft + +"saxes@npm:^6.0.0": + version: 6.0.0 + resolution: "saxes@npm:6.0.0" + dependencies: + xmlchars: ^2.2.0 + checksum: d3fa3e2aaf6c65ed52ee993aff1891fc47d5e47d515164b5449cbf5da2cbdc396137e55590472e64c5c436c14ae64a8a03c29b9e7389fc6f14035cf4e982ef3b + languageName: node + linkType: hard + +"source-map-js@npm:^1.0.1": + version: 1.2.1 + resolution: "source-map-js@npm:1.2.1" + checksum: 4eb0cd997cdf228bc253bcaff9340afeb706176e64868ecd20efbe6efea931465f43955612346d6b7318789e5265bdc419bc7669c1cebe3db0eb255f57efa76b + languageName: node + linkType: hard + +"symbol-tree@npm:^3.2.4": + version: 3.2.4 + resolution: "symbol-tree@npm:3.2.4" + checksum: 6e8fc7e1486b8b54bea91199d9535bb72f10842e40c79e882fc94fb7b14b89866adf2fd79efa5ebb5b658bc07fb459ccce5ac0e99ef3d72f474e74aaf284029d + languageName: node + linkType: hard + +"test-app@workspace:packages/test-app": + version: 0.0.0-use.local + resolution: "test-app@workspace:packages/test-app" + dependencies: + jsdom: 27.4.0 + markdown-it: 14.1.0 + languageName: unknown + linkType: soft + +"tldts-core@npm:^7.0.23": + version: 7.0.23 + resolution: "tldts-core@npm:7.0.23" + checksum: 9ad8639b6559480f9517af2d233f68b90f9fa51ad65203b96db26b3c235f82075c5358aefa686515baa37ebeedcd0cfa2fe60833aca53709373975e607bb3d8f + languageName: node + linkType: hard + +"tldts@npm:^7.0.5": + version: 7.0.23 + resolution: "tldts@npm:7.0.23" + dependencies: + tldts-core: ^7.0.23 + bin: + tldts: bin/cli.js + checksum: d18a0ce0103ae5e550a41e1d2b657026814c6bae1d8b668093dc68252391d9c27a662620488ace60da1368823112bfcfb0892e90d67274740901ae268f0aadb3 + languageName: node + linkType: hard + +"tough-cookie@npm:^6.0.0": + version: 6.0.0 + resolution: "tough-cookie@npm:6.0.0" + dependencies: + tldts: ^7.0.5 + checksum: 66d32ee40e1c6c61be5388e1c124674871dae0a684c30853f1628a4da2c5ad4199a825d1b0a7ba424dadfba7b5a9b37e8c761eafbf48f1b9f75a4629e73b14bc + languageName: node + linkType: hard + +"tr46@npm:^6.0.0": + version: 6.0.0 + resolution: "tr46@npm:6.0.0" + dependencies: + punycode: ^2.3.1 + checksum: e7e95d847a63a90ac82c8d9358320671a68b99a661bef905c39aca365c0028accc9c68a2ba052fecf740bc954099c8db83bef288b3ddbc4f19ac57f2f34af0e5 + languageName: node + linkType: hard + +"uc.micro@npm:^2.0.0, uc.micro@npm:^2.1.0": + version: 2.1.0 + resolution: "uc.micro@npm:2.1.0" + checksum: 37197358242eb9afe367502d4638ac8c5838b78792ab218eafe48287b0ed28aaca268ec0392cc5729f6c90266744de32c06ae938549aee041fc93b0f9672d6b2 + languageName: node + linkType: hard + +"w3c-xmlserializer@npm:^5.0.0": + version: 5.0.0 + resolution: "w3c-xmlserializer@npm:5.0.0" + dependencies: + xml-name-validator: ^5.0.0 + checksum: 593acc1fdab3f3207ec39d851e6df0f3fa41a36b5809b0ace364c7a6d92e351938c53424a7618ce8e0fbaffee8be2e8e070a5734d05ee54666a8bdf1a376cc40 + languageName: node + linkType: hard + +"webidl-conversions@npm:^8.0.0": + version: 8.0.1 + resolution: "webidl-conversions@npm:8.0.1" + checksum: c96c267a6c2946b688108737b796f20b29687f5fd6796a44f6bd2296e66ad891c62b43e720b6695b6b327345e20b2124b0daf6c8da50128e2379e6b33605c2e7 + languageName: node + linkType: hard + +"whatwg-mimetype@npm:^4.0.0": + version: 4.0.0 + resolution: "whatwg-mimetype@npm:4.0.0" + checksum: f97edd4b4ee7e46a379f3fb0e745de29fe8b839307cc774300fd49059fcdd560d38cb8fe21eae5575b8f39b022f23477cc66e40b0355c2851ce84760339cef30 + languageName: node + linkType: hard + +"whatwg-mimetype@npm:^5.0.0": + version: 5.0.0 + resolution: "whatwg-mimetype@npm:5.0.0" + checksum: 33380b6faefa17476a122a8584155b4af211574a45204988978fea53a871ce1a8882a2fc08f6a1d045948dc8aab18ea62c77d4538edda54eaefb7e9dd4a144a1 + languageName: node + linkType: hard + +"whatwg-url@npm:^15.1.0": + version: 15.1.0 + resolution: "whatwg-url@npm:15.1.0" + dependencies: + tr46: ^6.0.0 + webidl-conversions: ^8.0.0 + checksum: 30c7a3f9fcf73435e7a1f6d7bb9ae114a5a05e32f30b7c92e1a80e29a54981fdace8afe7f7e0903c770e2a29da591061f29c3efa737732e7cfa1e57bc44afec3 + languageName: node + linkType: hard + +"ws@npm:^8.18.3": + version: 8.19.0 + resolution: "ws@npm:8.19.0" + peerDependencies: + bufferutil: ^4.0.1 + utf-8-validate: ">=5.0.2" + peerDependenciesMeta: + bufferutil: + optional: true + utf-8-validate: + optional: true + checksum: 7a426122c373e053a65a2affbcdcdbf8f643ba0265577afd4e08595397ca244c05de81570300711e2363a9dab5aea3ae644b445bc7468b1ebbb51bfe2efb20e1 + languageName: node + linkType: hard + +"xml-name-validator@npm:^5.0.0": + version: 5.0.0 + resolution: "xml-name-validator@npm:5.0.0" + checksum: 86effcc7026f437701252fcc308b877b4bc045989049cfc79b0cc112cb365cf7b009f4041fab9fb7cd1795498722c3e9fe9651afc66dfa794c16628a639a4c45 + languageName: node + linkType: hard + +"xmlchars@npm:^2.2.0": + version: 2.2.0 + resolution: "xmlchars@npm:2.2.0" + checksum: 8c70ac94070ccca03f47a81fcce3b271bd1f37a591bf5424e787ae313fcb9c212f5f6786e1fa82076a2c632c0141552babcd85698c437506dfa6ae2d58723062 + languageName: node + linkType: hard diff --git a/test/fixtures/lockfiles/HoistedNodeModuleTest/yarn electron-clear-data.txt b/test/fixtures/lockfiles/HoistedNodeModuleTest/yarn electron-clear-data.txt index 16a58427448..a9f9c15a9e1 100644 --- a/test/fixtures/lockfiles/HoistedNodeModuleTest/yarn electron-clear-data.txt +++ b/test/fixtures/lockfiles/HoistedNodeModuleTest/yarn electron-clear-data.txt @@ -9,7 +9,7 @@ debug@3.1.0: dependencies: ms "2.0.0" -electron-clear-data@^1.0.5: +electron-clear-data@1.0.5: version "1.0.5" resolved "https://registry.yarnpkg.com/electron-clear-data/-/electron-clear-data-1.0.5.tgz#bc636f6850f57b1e8ed3fe2e57ca877e30d31bc9" integrity sha512-vynYILZ2F+S5qnc81bnTOfh8uCVlxP6j42T7h/ELaDL+vxmlT1QNgte8KNuXb+s9ed+Qx4IIRbMRUcbAJa/8rA== diff --git a/test/fixtures/lockfiles/HoistedNodeModuleTest/yarn max stack.txt b/test/fixtures/lockfiles/HoistedNodeModuleTest/yarn max stack.txt index c2bd1576b10..11a3a4ec2e6 100644 --- a/test/fixtures/lockfiles/HoistedNodeModuleTest/yarn max stack.txt +++ b/test/fixtures/lockfiles/HoistedNodeModuleTest/yarn max stack.txt @@ -629,9 +629,9 @@ memorystream@^0.3.1: integrity sha512-S3UwM3yj5mtUSEfP41UZmt/0SCoVYUcU1rkXv+BQ5Ig8ndL4sPoJNBUJERafdPb5jjHJGuMgytgKvKIf58XNBw== minimatch@^3.0.4: - version "3.1.2" - resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.1.2.tgz#19cd194bfd3e428f049a70817c038d89ab4be35b" - integrity sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw== + version "3.1.5" + resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.1.5.tgz#580c88f8d5445f2bd6aa8f3cadefa0de79fbd69e" + integrity sha512-VgjWUsnnT6n+NUk6eZq77zeFdpW2LWDzP6zFGrCbHXiYNul5Dzqk2HHQ5uFH2DNW5Xbp8+jVzaeNt94ssEEl4w== dependencies: brace-expansion "^1.1.7" @@ -650,7 +650,7 @@ normalize-package-data@^2.3.2: semver "2 || 3 || 4 || 5" validate-npm-package-license "^3.0.1" -npm-run-all@^4.1.5: +npm-run-all@4.1.5: version "4.1.5" resolved "https://registry.yarnpkg.com/npm-run-all/-/npm-run-all-4.1.5.tgz#04476202a15ee0e2e214080861bff12a51d98fba" integrity sha512-Oo82gJDAVcaMdi3nuoKFavkIHBRVqQ1qvMb+9LHk/cF4P6B2m8aP04hGf7oL6wZ9BuGwX1onlLhpuoofSyoQDQ== @@ -923,9 +923,9 @@ spdx-expression-parse@^3.0.0: spdx-license-ids "^3.0.0" spdx-license-ids@^3.0.0: - version "3.0.22" - resolved "https://registry.yarnpkg.com/spdx-license-ids/-/spdx-license-ids-3.0.22.tgz#abf5a08a6f5d7279559b669f47f0a43e8f3464ef" - integrity sha512-4PRT4nh1EImPbt2jASOKHX7PB7I+e4IWNLvkKFDxNhJlfjbYlleYQh285Z/3mPTHSAK/AvdMmw5BNNuYH8ShgQ== + version "3.0.23" + resolved "https://registry.yarnpkg.com/spdx-license-ids/-/spdx-license-ids-3.0.23.tgz#b069e687b1291a32f126893ed76a27a745ee2133" + integrity sha512-CWLcCCH7VLu13TgOH+r8p1O/Znwhqv/dbb6lqWy67G+pT1kHmeD/+V36AVb/vq8QMIQwVShJ6Ssl5FPh0fuSdw== stop-iteration-iterator@^1.1.0: version "1.1.0" @@ -1098,9 +1098,9 @@ which-collection@^1.0.2: is-weakset "^2.0.3" which-typed-array@^1.1.16, which-typed-array@^1.1.19: - version "1.1.19" - resolved "https://registry.yarnpkg.com/which-typed-array/-/which-typed-array-1.1.19.tgz#df03842e870b6b88e117524a4b364b6fc689f956" - integrity sha512-rEvr90Bck4WZt9HHFC4DJMsjvu7x+r6bImz0/BrbWb7A2djJ8hnZMrWnHo9F8ssv0OMErasDhftrfROTyqSDrw== + version "1.1.20" + resolved "https://registry.yarnpkg.com/which-typed-array/-/which-typed-array-1.1.20.tgz#3fdb7adfafe0ea69157b1509f3a1cd892bd1d122" + integrity sha512-LYfpUkmqwl0h9A2HL09Mms427Q1RZWuOHsukfVcKRq9q95iQxdw0ix1JQrqbcDR9PH1QDwf5Qo8OZb5lksZ8Xg== dependencies: available-typed-arrays "^1.0.7" call-bind "^1.0.8" diff --git a/test/fixtures/lockfiles/HoistedNodeModuleTest/yarn ms.txt b/test/fixtures/lockfiles/HoistedNodeModuleTest/yarn ms.txt index e266d14828e..d6578bf082e 100644 --- a/test/fixtures/lockfiles/HoistedNodeModuleTest/yarn ms.txt +++ b/test/fixtures/lockfiles/HoistedNodeModuleTest/yarn ms.txt @@ -320,9 +320,9 @@ integrity sha512-lp4qAiMTD4sNWW4DbKLBkfiMZ4jbAboJIGOQr5DvciMRI494OapieI9qiODpOt0XBr1LjIDy1xAGAnVs5supTA== "@opentelemetry/semantic-conventions@^1.27.0", "@opentelemetry/semantic-conventions@^1.28.0": - version "1.38.0" - resolved "https://registry.yarnpkg.com/@opentelemetry/semantic-conventions/-/semantic-conventions-1.38.0.tgz#8b5f415395a7ddb7c8e0c7932171deb9278df1a3" - integrity sha512-kocjix+/sSggfJhwXqClZ3i9Y/MI0fp7b+g7kCRm6psy2dsf8uApTRclwG18h8Avm7C9+fnt+O36PspJ/OzoWg== + version "1.40.0" + resolved "https://registry.yarnpkg.com/@opentelemetry/semantic-conventions/-/semantic-conventions-1.40.0.tgz#10b2944ca559386590683392022a897eefd011d3" + integrity sha512-cifvXDhcqMwwTlTK04GBNeIe7yyo28Mfby85QXFe1Yk8nmi36Ab/5UQwptOx84SsoGNRg+EVSjwzfSZMy6pmlw== "@opentelemetry/sql-common@^0.40.1": version "0.40.1" @@ -474,9 +474,9 @@ "@types/node" "*" "@types/http-cache-semantics@*": - version "4.0.4" - resolved "https://registry.yarnpkg.com/@types/http-cache-semantics/-/http-cache-semantics-4.0.4.tgz#b979ebad3919799c979b17c72621c0bc0a31c6c4" - integrity sha512-1m0bIFVc7eJWyve9S0RnuRgcQqF/Xd5QsUZAZeQFr1Q3/p9JWoQQEqmVy+DPTNpGXwhgIetAoYF8JSc33q29QA== + version "4.2.0" + resolved "https://registry.yarnpkg.com/@types/http-cache-semantics/-/http-cache-semantics-4.2.0.tgz#f6a7788f438cbfde15f29acad46512b4c01913b3" + integrity sha512-L3LgimLHXtGkWikKnsPg0/VFx9OGZaC+eN1u4r+OB1XRqH3meBIAVC2zr1WdMH+RHmnRkqliQAOHNJ/E0j/e0Q== "@types/keyv@^3.1.4": version "3.1.4" @@ -493,16 +493,16 @@ "@types/node" "*" "@types/node@*": - version "25.0.3" - resolved "https://registry.yarnpkg.com/@types/node/-/node-25.0.3.tgz#79b9ac8318f373fbfaaf6e2784893efa9701f269" - integrity sha512-W609buLVRVmeW693xKfzHeIV6nJGGz98uCPfeXI1ELMLXVeKYZ9m15fAMSaUPBHYLGFsVRcMmSCksQOrZV9BYA== + version "25.3.3" + resolved "https://registry.yarnpkg.com/@types/node/-/node-25.3.3.tgz#605862544ee7ffd7a936bcbf0135a14012f1e549" + integrity sha512-DpzbrH7wIcBaJibpKo9nnSQL0MTRdnWttGyE5haGwK86xgMOkFLp7vEyfQPGLOJh5wNYiJ3V9PmUMDhV9u8kkQ== dependencies: - undici-types "~7.16.0" + undici-types "~7.18.0" "@types/node@^20.9.0": - version "20.19.27" - resolved "https://registry.yarnpkg.com/@types/node/-/node-20.19.27.tgz#d51333f77953a5e4e71d3b5aefa83ec5297fbb80" - integrity sha512-N2clP5pJhB2YnZJ3PIHFk5RkygRX5WO/5f0WC08tp0wd+sv0rsJk3MqWn3CbNmT2J505a5336jaQj4ph1AdMug== + version "20.19.35" + resolved "https://registry.yarnpkg.com/@types/node/-/node-20.19.35.tgz#117b373fd1dff528b2f9f8c2d1a85de6af8101ca" + integrity sha512-Uarfe6J91b9HAUXxjvSOdiO2UPOKLm07Q1oh0JHxoZ1y8HoqxDAu3gVrsrOHeiio0kSsoVBt4wFrKOm0dKxVPQ== dependencies: undici-types "~6.21.0" @@ -514,9 +514,9 @@ "@types/pg" "*" "@types/pg@*": - version "8.16.0" - resolved "https://registry.yarnpkg.com/@types/pg/-/pg-8.16.0.tgz#b7af0d642752340b7c9de1c33afd9bc5c5f0ebeb" - integrity sha512-RmhMd/wD+CF8Dfo+cVIy3RR5cl8CyfXQ0tGgW6XBL8L4LM/UTEbNXYRbLwU6w+CgrKBNbrQWt4FUtTfaU5jSYQ== + version "8.18.0" + resolved "https://registry.yarnpkg.com/@types/pg/-/pg-8.18.0.tgz#0535e33bda45c34803d809719f7afc62c145ed50" + integrity sha512-gT+oueVQkqnj6ajGJXblFR4iavIXWsGAFCk3dP4Kki5+a9R4NMt0JARdk6s8cUKcfUoqP5dAtDSLU8xYUTFV+Q== dependencies: "@types/node" "*" pg-protocol "*" @@ -563,9 +563,9 @@ acorn-import-attributes@^1.9.5: integrity sha512-n02Vykv5uA3eHGM/Z2dQrcD56kL8TyDb2p1+0P83PClMnC/nc+anbQRhIOWnSq4Ke/KvDPrY3C9hDtC/A3eHnQ== acorn@^8.14.0: - version "8.15.0" - resolved "https://registry.yarnpkg.com/acorn/-/acorn-8.15.0.tgz#a360898bc415edaac46c8241f6383975b930b816" - integrity sha512-NZyJarBfL7nWwIq+FDL6Zp/yHEhePMNnnJ0y3qfieCrmNvYct8uvtiV41UvlSe6apAfk0fY1FbWx+NwfmpvtTg== + version "8.16.0" + resolved "https://registry.yarnpkg.com/acorn/-/acorn-8.16.0.tgz#4ce79c89be40afe7afe8f3adb902a1f1ce9ac08a" + integrity sha512-UVJyE9MttOsBQIDKw1skb9nAwQuR5wuGD3+82K6JgJlm/Y+KI92oNsMNGZCYdDsVtRHSak0pcV5Dno5+4jh9sw== boolean@^3.0.1: version "3.2.0" @@ -654,7 +654,7 @@ detect-node@^2.0.4: resolved "https://registry.yarnpkg.com/detect-node/-/detect-node-2.1.0.tgz#c9c70775a49c3d03bc2c06d9a73be550f978f8b1" integrity sha512-T0NIuQpnTvFDATNuHN5roPwSBG83rFsuO+MXXH9/3N1eFbn4wcPjttvjMLEPWJ0RGUYgQE7cGgS3tNxbqCGM7g== -electron-clear-data@^1.0.5: +electron-clear-data@1.0.5: version "1.0.5" resolved "https://registry.yarnpkg.com/electron-clear-data/-/electron-clear-data-1.0.5.tgz#bc636f6850f57b1e8ed3fe2e57ca877e30d31bc9" integrity sha512-vynYILZ2F+S5qnc81bnTOfh8uCVlxP6j42T7h/ELaDL+vxmlT1QNgte8KNuXb+s9ed+Qx4IIRbMRUcbAJa/8rA== @@ -929,9 +929,9 @@ pg-int8@1.0.1: integrity sha512-WCtabS6t3c8SkpDBUlb1kjOs7l66xsGdKpIPZsg4wR+B3+u9UAum2odSsF9tnvxg80h4ZxLWMy4pRjOsFIqQpw== pg-protocol@*: - version "1.10.3" - resolved "https://registry.yarnpkg.com/pg-protocol/-/pg-protocol-1.10.3.tgz#ac9e4778ad3f84d0c5670583bab976ea0a34f69f" - integrity sha512-6DIBgBQaTKDJyxnXaLiLR8wBpQQcGWuAESkRBX/t6OwA8YsqP+iVSiond2EDy6Y/dsGk8rh/jtax3js5NeV7JQ== + version "1.12.0" + resolved "https://registry.yarnpkg.com/pg-protocol/-/pg-protocol-1.12.0.tgz#e9827f3e1dae6cdcb78d009cba5bb699d88ae998" + integrity sha512-uOANXNRACNdElMXJ0tPz6RBM0XQ61nONGAwlt8da5zs/iUOOCLBQOHSXnrC6fMsvtjxbOJrZZl5IScGv+7mpbg== pg-types@^2.2.0: version "2.2.0" @@ -950,9 +950,9 @@ postgres-array@~2.0.0: integrity sha512-VpZrUqU5A69eQyW2c5CA1jtLecCsN2U/bD6VilrFDWq5+5UIEVO7nazS3TEcHf1zuPYO/sqGvUvW62g86RXZuA== postgres-bytea@~1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/postgres-bytea/-/postgres-bytea-1.0.0.tgz#027b533c0aa890e26d172d47cf9ccecc521acd35" - integrity sha512-xy3pmLuQqRBZBXDULy7KbaitYqLcmxigw14Q5sj8QBVLqEwXfeybIKVWiqAXTlcvdvb0+xkOtDbfQMOf4lST1w== + version "1.0.1" + resolved "https://registry.yarnpkg.com/postgres-bytea/-/postgres-bytea-1.0.1.tgz#c40b3da0222c500ff1e51c5d7014b60b79697c7a" + integrity sha512-5+5HqXnsZPE65IJZSMkZtURARZelel2oXUEO8rH83VS/hxH5vv1uHquPg5wZs8yMAfdv971IU+kcPUczi7NVBQ== postgres-date@~1.0.4: version "1.0.7" @@ -972,9 +972,9 @@ progress@^2.0.3: integrity sha512-7PiHtLll5LdnKIMw100I+8xJXR5gW2QwWYkT6iJva0bXitZKa/XMrSbdmg3r2Xnaidz9Qumd0VPaMrZlF9V9sA== pump@^3.0.0: - version "3.0.3" - resolved "https://registry.yarnpkg.com/pump/-/pump-3.0.3.tgz#151d979f1a29668dc0025ec589a455b53282268d" - integrity sha512-todwxLMY7/heScKmntwQG8CXVkWUOdYxIvY2s0VWAAMh/nd8SoYiRaKjlr7+iCs984f2P8zvrfWcDDYVb73NfA== + version "3.0.4" + resolved "https://registry.yarnpkg.com/pump/-/pump-3.0.4.tgz#1f313430527fa8b905622ebd22fe1444e757ab3c" + integrity sha512-VS7sjc6KR7e1ukRFhQSY5LM2uBWAUPiOPa/A3mkKmiMwSmRFUITt0xuj+/lesgnCv+dPIEYlkzrcyXgquIHMcA== dependencies: end-of-stream "^1.1.0" once "^1.3.1" @@ -1037,9 +1037,9 @@ semver@^6.2.0: integrity sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA== semver@^7.3.2, semver@^7.5.2: - version "7.7.3" - resolved "https://registry.yarnpkg.com/semver/-/semver-7.7.3.tgz#4b5f4143d007633a8dc671cd0a6ef9147b8bb946" - integrity sha512-SdsKMrI9TdgjdweUSR9MweHA4EJ8YxHn8DFaDisvhVlUOe4BF1tLD7GAj0lIqWVl+dPb/rExr0Btby5loQm20Q== + version "7.7.4" + resolved "https://registry.yarnpkg.com/semver/-/semver-7.7.4.tgz#28464e36060e991fa7a11d0279d2d3f3b57a7e8a" + integrity sha512-vFKC2IEtQnVhpT78h1Yp8wzwrf8CM+MzKMHGJZfBtzhZNycRFnXsHk6E5TxIkkMsgNS7mdX3AGB7x2QM2di4lA== serialize-error@^7.0.1: version "7.0.1" @@ -1080,10 +1080,10 @@ undici-types@~6.21.0: resolved "https://registry.yarnpkg.com/undici-types/-/undici-types-6.21.0.tgz#691d00af3909be93a7faa13be61b3a5b50ef12cb" integrity sha512-iwDZqg0QAGrg9Rav5H4n0M64c3mkR59cJ6wQp+7C4nI0gsmExaedaYLNO44eT4AtBBwjbTiGPMlt2Md0T9H9JQ== -undici-types@~7.16.0: - version "7.16.0" - resolved "https://registry.yarnpkg.com/undici-types/-/undici-types-7.16.0.tgz#ffccdff36aea4884cbfce9a750a0580224f58a46" - integrity sha512-Zz+aZWSj8LE6zoxD+xrjh4VfkIG8Ya6LvYkZqtUQGJPZjYl53ypCaUwWqo7eI0x66KBGeRo+mlBEkMSeSZ38Nw== +undici-types@~7.18.0: + version "7.18.2" + resolved "https://registry.yarnpkg.com/undici-types/-/undici-types-7.18.2.tgz#29357a89e7b7ca4aef3bf0fd3fd0cd73884229e9" + integrity sha512-AsuCzffGHJybSaRrmr5eHr81mwJU3kjw6M+uprWvCXiNeN9SOGwQ3Jn8jb8m3Z6izVgknn1R0FTCEAP2QrLY/w== universalify@^0.1.0: version "0.1.2" diff --git a/test/fixtures/lockfiles/HoistedNodeModuleTest/yarn parse-asn1.txt b/test/fixtures/lockfiles/HoistedNodeModuleTest/yarn parse-asn1.txt index 4d299bd1f6b..3a6d17ab754 100644 --- a/test/fixtures/lockfiles/HoistedNodeModuleTest/yarn parse-asn1.txt +++ b/test/fixtures/lockfiles/HoistedNodeModuleTest/yarn parse-asn1.txt @@ -19,9 +19,9 @@ available-typed-arrays@^1.0.7: possible-typed-array-names "^1.0.0" bn.js@^4.0.0: - version "4.12.2" - resolved "https://registry.yarnpkg.com/bn.js/-/bn.js-4.12.2.tgz#3d8fed6796c24e177737f7cc5172ee04ef39ec99" - integrity sha512-n4DSx829VRTRByMRGdjQ9iqsN0Bh4OolPsFnaZBLcbi8iXcB+kJ9s7EnRt4wILZNV3kPLHkRVfOc/HvhC3ovDw== + version "4.12.3" + resolved "https://registry.yarnpkg.com/bn.js/-/bn.js-4.12.3.tgz#2cc2c679188eb35b006f2d0d4710bed8437a769e" + integrity sha512-fGTi3gxV/23FTYdAoUtLYp6qySe2KE3teyZitipKNRuVYcBkoP/bB3guXN/XVKUe9mxCHXnc9C4ocyz8OmgN0g== browserify-aes@^1.2.0: version "1.2.0" @@ -394,9 +394,9 @@ util-deprecate@~1.0.1: integrity sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw== which-typed-array@^1.1.16: - version "1.1.19" - resolved "https://registry.yarnpkg.com/which-typed-array/-/which-typed-array-1.1.19.tgz#df03842e870b6b88e117524a4b364b6fc689f956" - integrity sha512-rEvr90Bck4WZt9HHFC4DJMsjvu7x+r6bImz0/BrbWb7A2djJ8hnZMrWnHo9F8ssv0OMErasDhftrfROTyqSDrw== + version "1.1.20" + resolved "https://registry.yarnpkg.com/which-typed-array/-/which-typed-array-1.1.20.tgz#3fdb7adfafe0ea69157b1509f3a1cd892bd1d122" + integrity sha512-LYfpUkmqwl0h9A2HL09Mms427Q1RZWuOHsukfVcKRq9q95iQxdw0ix1JQrqbcDR9PH1QDwf5Qo8OZb5lksZ8Xg== dependencies: available-typed-arrays "^1.0.7" call-bind "^1.0.8" diff --git a/test/fixtures/lockfiles/HoistedNodeModuleTest/yarn two package.json without node_modules.txt b/test/fixtures/lockfiles/HoistedNodeModuleTest/yarn two package.json without node_modules.txt index ff04ec557e4..d9c079f8101 100644 --- a/test/fixtures/lockfiles/HoistedNodeModuleTest/yarn two package.json without node_modules.txt +++ b/test/fixtures/lockfiles/HoistedNodeModuleTest/yarn two package.json without node_modules.txt @@ -15,16 +15,7 @@ ajv "^6.12.0" ajv-keywords "^3.4.1" -"@electron/asar@3.2.18": - version "3.2.18" - resolved "https://registry.yarnpkg.com/@electron/asar/-/asar-3.2.18.tgz#fa607f829209bab8b9e0ce6658d3fe81b2cba517" - integrity sha512-2XyvMe3N3Nrs8cV39IKELRHTYUWFKrmqqSY1U+GMlc0jvqjIVnoxhNd2H4JolWQncbJi1DCvb5TNxZuI2fEjWg== - dependencies: - commander "^5.0.0" - glob "^7.1.6" - minimatch "^3.0.4" - -"@electron/asar@^3.2.7": +"@electron/asar@3.4.1", "@electron/asar@^3.3.1": version "3.4.1" resolved "https://registry.yarnpkg.com/@electron/asar/-/asar-3.4.1.tgz#4e9196a4b54fba18c56cd8d5cac67c5bdc588065" integrity sha512-i4/rNPRS84t0vSRa2HorerGRXWyF4vThfHesw0dmcWHp+cspK743UanA0suA5Q5y8kzY2y6YKrvbIUn69BCAiA== @@ -57,20 +48,20 @@ optionalDependencies: global-agent "^3.0.0" -"@electron/node-gyp@git+https://github.com/electron/node-gyp.git#06b29aafb7708acef8b3669835c8a7857ebc92d2": - version "10.2.0-electron.1" - resolved "git+https://github.com/electron/node-gyp.git#06b29aafb7708acef8b3669835c8a7857ebc92d2" +"@electron/get@^3.0.0": + version "3.1.0" + resolved "https://registry.yarnpkg.com/@electron/get/-/get-3.1.0.tgz#22c5a0bd917ab201badeb77bc4ad18cba54cb4ec" + integrity sha512-F+nKc0xW+kVbBRhFzaMgPy3KwmuNTYX1fx6+FxxoSnNgwYX6LD7AKBTWkU0MQ6IBoe7dz069CNkR673sPAgkCQ== dependencies: + debug "^4.1.1" env-paths "^2.2.0" - exponential-backoff "^3.1.1" - glob "^8.1.0" - graceful-fs "^4.2.6" - make-fetch-happen "^10.2.1" - nopt "^6.0.0" - proc-log "^2.0.1" - semver "^7.3.5" - tar "^6.2.1" - which "^2.0.2" + fs-extra "^8.1.0" + got "^11.8.5" + progress "^2.0.3" + semver "^6.2.0" + sumchecker "^3.0.1" + optionalDependencies: + global-agent "^3.0.0" "@electron/notarize@2.5.0": version "2.5.0" @@ -81,10 +72,10 @@ fs-extra "^9.0.1" promise-retry "^2.0.1" -"@electron/osx-sign@1.3.1": - version "1.3.1" - resolved "https://registry.yarnpkg.com/@electron/osx-sign/-/osx-sign-1.3.1.tgz#faf7eeca7ca004a6be541dc4cf7a1bd59ec59b1c" - integrity sha512-BAfviURMHpmb1Yb50YbCxnOY0wfwaLXH5KJ4+80zS0gUkzDX3ec23naTlEqKsN+PwYn+a1cCzM7BJ4Wcd3sGzw== +"@electron/osx-sign@1.3.3": + version "1.3.3" + resolved "https://registry.yarnpkg.com/@electron/osx-sign/-/osx-sign-1.3.3.tgz#af751510488318d9f7663694af85819690d75583" + integrity sha512-KZ8mhXvWv2rIEgMbWZ4y33bDHyUKMXnx4M0sTyPNK/vcB81ImdeY9Ggdqy0SWbMDgmbqyQ+phgejh6V3R2QuSg== dependencies: compare-version "^0.1.2" debug "^4.3.4" @@ -93,32 +84,31 @@ minimist "^1.2.6" plist "^3.0.5" -"@electron/rebuild@3.7.0": - version "3.7.0" - resolved "https://registry.yarnpkg.com/@electron/rebuild/-/rebuild-3.7.0.tgz#82e20c467ddedbb295d7f641592c52e68c141e9f" - integrity sha512-VW++CNSlZwMYP7MyXEbrKjpzEwhB5kDNbzGtiPEjwYysqyTCF+YbNJ210Dj3AjWsGSV4iEEwNkmJN9yGZmVvmw== +"@electron/rebuild@^4.0.3": + version "4.0.3" + resolved "https://registry.yarnpkg.com/@electron/rebuild/-/rebuild-4.0.3.tgz#f022f7e66874920fd16a4d802b8605885cb549d3" + integrity sha512-u9vpTHRMkOYCs/1FLiSVAFZ7FbjsXK+bQuzviJZa+lG7BHZl1nz52/IcGvwa3sk80/fc3llutBkbCq10Vh8WQA== dependencies: - "@electron/node-gyp" "https://github.com/electron/node-gyp#06b29aafb7708acef8b3669835c8a7857ebc92d2" "@malept/cross-spawn-promise" "^2.0.0" - chalk "^4.0.0" debug "^4.1.1" detect-libc "^2.0.1" - fs-extra "^10.0.0" got "^11.7.0" - node-abi "^3.45.0" - node-api-version "^0.2.0" + graceful-fs "^4.2.11" + node-abi "^4.2.0" + node-api-version "^0.2.1" + node-gyp "^11.2.0" ora "^5.1.0" read-binary-file-arch "^1.0.6" semver "^7.3.5" - tar "^6.0.5" + tar "^7.5.6" yargs "^17.0.1" -"@electron/universal@2.0.1": - version "2.0.1" - resolved "https://registry.yarnpkg.com/@electron/universal/-/universal-2.0.1.tgz#7b070ab355e02957388f3dbd68e2c3cd08c448ae" - integrity sha512-fKpv9kg4SPmt+hY7SVBnIYULE9QJl8L3sCfcBsnqbJwwBwAeTLokJ9TRt9y7bK0JAzIW2y78TVVjvnQEms/yyA== +"@electron/universal@2.0.3": + version "2.0.3" + resolved "https://registry.yarnpkg.com/@electron/universal/-/universal-2.0.3.tgz#1680df6ced8f128ca0ff24e29c2165d41d78b3ce" + integrity sha512-Wn9sPYIVFRFl5HmwMJkARCCf7rqK/EurkfQ/rJZ14mHP3iYTjZSIOSVonEAnhWeAXwtw7zOekGRlc6yTtZ0t+g== dependencies: - "@electron/asar" "^3.2.7" + "@electron/asar" "^3.3.1" "@malept/cross-spawn-promise" "^2.0.0" debug "^4.3.1" dir-compare "^4.2.0" @@ -126,23 +116,6 @@ minimatch "^9.0.3" plist "^3.1.0" -"@gar/promisify@^1.1.3": - version "1.1.3" - resolved "https://registry.yarnpkg.com/@gar/promisify/-/promisify-1.1.3.tgz#555193ab2e3bb3b6adc3d551c9c030d9e860daf6" - integrity sha512-k2Ty1JcVojjJFwrg/ThKi2ujJ7XNLYaFGNB/bWT9wGR+oSMJHMa5w+CUq6p/pVrKeNNgA7pCqEcjSnHVoqJQFw== - -"@isaacs/balanced-match@^4.0.1": - version "4.0.1" - resolved "https://registry.yarnpkg.com/@isaacs/balanced-match/-/balanced-match-4.0.1.tgz#3081dadbc3460661b751e7591d7faea5df39dd29" - integrity sha512-yzMTt9lEb8Gv7zRioUilSglI0c0smZ9k5D65677DLWLtWJaXIS3CqcGyUFByYKlnUj6TkjLVs54fBl6+TiGQDQ== - -"@isaacs/brace-expansion@^5.0.0": - version "5.0.0" - resolved "https://registry.yarnpkg.com/@isaacs/brace-expansion/-/brace-expansion-5.0.0.tgz#4b3dabab7d8e75a429414a96bd67bf4c1d13e0f3" - integrity sha512-ZT55BDLV0yv0RBm2czMiZ+SqCGO7AvmOM3G/w2xhVPH+te0aKgFjmBvGlL1dH+ql2tgGO3MVrbb3jCKyvpgnxA== - dependencies: - "@isaacs/balanced-match" "^4.0.1" - "@isaacs/cliui@^8.0.2": version "8.0.2" resolved "https://registry.yarnpkg.com/@isaacs/cliui/-/cliui-8.0.2.tgz#b37667b7bc181c168782259bab42474fbf52b550" @@ -155,6 +128,13 @@ wrap-ansi "^8.1.0" wrap-ansi-cjs "npm:wrap-ansi@^7.0.0" +"@isaacs/fs-minipass@^4.0.0": + version "4.0.1" + resolved "https://registry.yarnpkg.com/@isaacs/fs-minipass/-/fs-minipass-4.0.1.tgz#2d59ae3ab4b38fb4270bfa23d30f8e2e86c7fe32" + integrity sha512-wgm9Ehl2jpeqP3zw/7mo3kRHFp5MEDhqAdwy1fTGkHAwnkGOVsgpvQhL8B5n1qlb01jV3n/bI0ZfZp5lWA1k4w== + dependencies: + minipass "^7.0.4" + "@malept/cross-spawn-promise@^2.0.0": version "2.0.0" resolved "https://registry.yarnpkg.com/@malept/cross-spawn-promise/-/cross-spawn-promise-2.0.0.tgz#d0772de1aa680a0bfb9ba2f32b4c828c7857cb9d" @@ -172,43 +152,24 @@ lodash "^4.17.15" tmp-promise "^3.0.2" -"@nodelib/fs.scandir@2.1.5": - version "2.1.5" - resolved "https://registry.yarnpkg.com/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz#7619c2eb21b25483f6d167548b4cfd5a7488c3d5" - integrity sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g== - dependencies: - "@nodelib/fs.stat" "2.0.5" - run-parallel "^1.1.9" - -"@nodelib/fs.stat@2.0.5", "@nodelib/fs.stat@^2.0.2": - version "2.0.5" - resolved "https://registry.yarnpkg.com/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz#5bd262af94e9d25bd1e71b05deed44876a222e8b" - integrity sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A== - -"@nodelib/fs.walk@^1.2.3": - version "1.2.8" - resolved "https://registry.yarnpkg.com/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz#e95737e8bb6746ddedf69c556953494f196fe69a" - integrity sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg== +"@npmcli/agent@^3.0.0": + version "3.0.0" + resolved "https://registry.yarnpkg.com/@npmcli/agent/-/agent-3.0.0.tgz#1685b1fbd4a1b7bb4f930cbb68ce801edfe7aa44" + integrity sha512-S79NdEgDQd/NGCay6TCoVzXSj74skRZIKJcpJjC5lOq34SZzyI6MqtiiWoiVWoVrTcGjNeC4ipbh1VIHlpfF5Q== dependencies: - "@nodelib/fs.scandir" "2.1.5" - fastq "^1.6.0" + agent-base "^7.1.0" + http-proxy-agent "^7.0.0" + https-proxy-agent "^7.0.1" + lru-cache "^10.0.1" + socks-proxy-agent "^8.0.3" -"@npmcli/fs@^2.1.0": - version "2.1.2" - resolved "https://registry.yarnpkg.com/@npmcli/fs/-/fs-2.1.2.tgz#a9e2541a4a2fec2e69c29b35e6060973da79b865" - integrity sha512-yOJKRvohFOaLqipNtwYB9WugyZKhC/DZC4VYPmpaCzDBrA8YpK3qHZ8/HGscMnE4GqbkLNuVcCnxkeQEdGt6LQ== +"@npmcli/fs@^4.0.0": + version "4.0.0" + resolved "https://registry.yarnpkg.com/@npmcli/fs/-/fs-4.0.0.tgz#a1eb1aeddefd2a4a347eca0fab30bc62c0e1c0f2" + integrity sha512-/xGlezI6xfGO9NwuJlnwz/K14qD1kCSAGtacBHnGzeAIuJGazcp45KP5NuyARXoKb7cwulAGWVsbeSxdG/cb0Q== dependencies: - "@gar/promisify" "^1.1.3" semver "^7.3.5" -"@npmcli/move-file@^2.0.0": - version "2.0.1" - resolved "https://registry.yarnpkg.com/@npmcli/move-file/-/move-file-2.0.1.tgz#26f6bdc379d87f75e55739bab89db525b06100e4" - integrity sha512-mJd2Z5TjYWq/ttPLLGqArdtnC74J6bOzg4rMDnN+p1xTacZ2yPRCk2y0oSWQtygLR9YVQXgOcONrwtnk3JupxQ== - dependencies: - mkdirp "^1.0.4" - rimraf "^3.0.2" - "@pkgjs/parseargs@^0.11.0": version "0.11.0" resolved "https://registry.yarnpkg.com/@pkgjs/parseargs/-/parseargs-0.11.0.tgz#a77ea742fab25775145434eb1d2328cf5013ac33" @@ -219,11 +180,6 @@ resolved "https://registry.yarnpkg.com/@sindresorhus/is/-/is-4.6.0.tgz#3c7c9c46e678feefe7a2e5bb609d3dbd665ffb3f" integrity sha512-t09vSN3MdfsyCHoFcTRCH/iUtG7OJ0CsjzB8cjAmKc/va/kIgeDI/TxsigdncE/4be734m0cvIYwNaV4i2XqAw== -"@sindresorhus/merge-streams@^2.1.0": - version "2.3.0" - resolved "https://registry.yarnpkg.com/@sindresorhus/merge-streams/-/merge-streams-2.3.0.tgz#719df7fb41766bc143369eaa0dd56d8dc87c9958" - integrity sha512-LtoMMhxAlorcGhmFYI+LhPgbPZCkgP6ra1YL604EeF6U98pLlQ3iWIGMdWSC+vWmPBWBNgmDBAhnAobLROJmwg== - "@szmarczak/http-timer@^4.0.5": version "4.0.6" resolved "https://registry.yarnpkg.com/@szmarczak/http-timer/-/http-timer-4.0.6.tgz#b4a914bb62e7c272d4e5989fe4440f812ab1d807" @@ -231,11 +187,6 @@ dependencies: defer-to-connect "^2.0.0" -"@tootallnate/once@2": - version "2.0.0" - resolved "https://registry.yarnpkg.com/@tootallnate/once/-/once-2.0.0.tgz#f544a148d3ab35801c1f633a7441fd87c2e484bf" - integrity sha512-XCuKFP5PS55gnMVu3dty8KPatLqUoy/ZYzDzAGCQ8JNFCkLXzmI7vNHCR+XpbZaMWQK/vQubr7PkYq8g470J/A== - "@types/cacheable-request@^6.0.1": version "6.0.3" resolved "https://registry.yarnpkg.com/@types/cacheable-request/-/cacheable-request-6.0.3.tgz#a430b3260466ca7b5ca5bfd735693b36e7a9d183" @@ -261,9 +212,9 @@ "@types/node" "*" "@types/http-cache-semantics@*": - version "4.0.4" - resolved "https://registry.yarnpkg.com/@types/http-cache-semantics/-/http-cache-semantics-4.0.4.tgz#b979ebad3919799c979b17c72621c0bc0a31c6c4" - integrity sha512-1m0bIFVc7eJWyve9S0RnuRgcQqF/Xd5QsUZAZeQFr1Q3/p9JWoQQEqmVy+DPTNpGXwhgIetAoYF8JSc33q29QA== + version "4.2.0" + resolved "https://registry.yarnpkg.com/@types/http-cache-semantics/-/http-cache-semantics-4.2.0.tgz#f6a7788f438cbfde15f29acad46512b4c01913b3" + integrity sha512-L3LgimLHXtGkWikKnsPg0/VFx9OGZaC+eN1u4r+OB1XRqH3meBIAVC2zr1WdMH+RHmnRkqliQAOHNJ/E0j/e0Q== "@types/keyv@^3.1.4": version "3.1.4" @@ -278,11 +229,11 @@ integrity sha512-GsCCIZDE/p3i96vtEqx+7dBUGXrc7zeSK3wwPHIaRThS+9OhWIXRqzs4d6k1SVU8g91DrNRWxWUGhp5KXQb2VA== "@types/node@*": - version "25.0.3" - resolved "https://registry.yarnpkg.com/@types/node/-/node-25.0.3.tgz#79b9ac8318f373fbfaaf6e2784893efa9701f269" - integrity sha512-W609buLVRVmeW693xKfzHeIV6nJGGz98uCPfeXI1ELMLXVeKYZ9m15fAMSaUPBHYLGFsVRcMmSCksQOrZV9BYA== + version "25.3.3" + resolved "https://registry.yarnpkg.com/@types/node/-/node-25.3.3.tgz#605862544ee7ffd7a936bcbf0135a14012f1e549" + integrity sha512-DpzbrH7wIcBaJibpKo9nnSQL0MTRdnWttGyE5haGwK86xgMOkFLp7vEyfQPGLOJh5wNYiJ3V9PmUMDhV9u8kkQ== dependencies: - undici-types "~7.16.0" + undici-types "~7.18.0" "@types/node@^16.11.26": version "16.18.126" @@ -326,55 +277,33 @@ resolved "https://registry.yarnpkg.com/@yarnpkg/lockfile/-/lockfile-1.1.0.tgz#e77a97fbd345b76d83245edcd17d393b1b41fb31" integrity sha512-GpSwvyXOcOOlV70vbnzjj4fW5xW/FdUF6nQEt1ENy7m4ZCczi1+/buVUPAqmGfqznsORNFzUMjctTIp8a9tuCQ== -abbrev@^1.0.0: - version "1.1.1" - resolved "https://registry.yarnpkg.com/abbrev/-/abbrev-1.1.1.tgz#f8f2c887ad10bf67f634f005b6987fed3179aac8" - integrity sha512-nne9/IiQ/hzIhY6pdDnbBtz7DjPTKrY00P/zvPSm5pOFkl6xuGrGnXn/VtTNNfNtAfZ9/1RtehkszU9qcTii0Q== - -accepts@~1.3.8: - version "1.3.8" - resolved "https://registry.yarnpkg.com/accepts/-/accepts-1.3.8.tgz#0bf0be125b67014adcb0b0921e62db7bffe16b2e" - integrity sha512-PYAthTa2m2VKxuvSD3DPC/Gy+U+sOA1LAuT8mkmRuvw+NACSaeXEQ+NHcVF7rONl6qcaxV3Uuemwawk+7+SJLw== - dependencies: - mime-types "~2.1.34" - negotiator "0.6.3" +abbrev@^3.0.0: + version "3.0.1" + resolved "https://registry.yarnpkg.com/abbrev/-/abbrev-3.0.1.tgz#8ac8b3b5024d31464fe2a5feeea9f4536bf44025" + integrity sha512-AO2ac6pjRB3SJmGJo+v5/aK6Omggp6fsLrs6wN9bd35ulu4cCwaAU9+7ZhXjeqHVkaHThLuzH0nZr0YpCDhygg== -agent-base@6, agent-base@^6.0.2: - version "6.0.2" - resolved "https://registry.yarnpkg.com/agent-base/-/agent-base-6.0.2.tgz#49fff58577cfee3f37176feab4c22e00f86d7f77" - integrity sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ== +accepts@1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/accepts/-/accepts-1.0.0.tgz#3604c765586c3b9cf7877b6937cdbd4587f947dc" + integrity sha512-2GdyQ5yRXA5MZi1gmU/XUFQTo7FtXsR2Jt90pl1pQftbsRdXQn69Mycn7xNGxVVmu1xdzZKe/GyMHnDlcV7ojg== dependencies: - debug "4" + mime "~1.2.11" + negotiator "~0.3.0" agent-base@^7.1.0, agent-base@^7.1.2: version "7.1.4" resolved "https://registry.yarnpkg.com/agent-base/-/agent-base-7.1.4.tgz#e3cd76d4c548ee895d3c3fd8dc1f6c5b9032e7a8" integrity sha512-MnA+YT8fwfJPgBx3m60MNqakm30XOkyIoH1y6huTQvC0PwZG7ki8NacLBcrPbNoo8vEZy7Jpuk7+jMO+CUovTQ== -agentkeepalive@^4.2.1: - version "4.6.0" - resolved "https://registry.yarnpkg.com/agentkeepalive/-/agentkeepalive-4.6.0.tgz#35f73e94b3f40bf65f105219c623ad19c136ea6a" - integrity sha512-kja8j7PjmncONqaTsB8fQ+wE2mSU2DJ9D4XKoJ5PFWIdRMa6SLSN1ff4mOr4jCbfRSsxR4keIiySJU0N9T5hIQ== - dependencies: - humanize-ms "^1.2.1" - -aggregate-error@^3.0.0: - version "3.1.0" - resolved "https://registry.yarnpkg.com/aggregate-error/-/aggregate-error-3.1.0.tgz#92670ff50f5359bdb7a3e0d40d0ec30c5737687a" - integrity sha512-4I7Td01quW/RpocfNayFdFVk1qSuoh0E7JrbRJ16nH01HhKFQ88INq9Sd+nd72zqRySlr9BmDA8xlEJ6vJMrYA== - dependencies: - clean-stack "^2.0.0" - indent-string "^4.0.0" - ajv-keywords@^3.4.1: version "3.5.2" resolved "https://registry.yarnpkg.com/ajv-keywords/-/ajv-keywords-3.5.2.tgz#31f29da5ab6e00d1c2d329acf7b5929614d5014d" integrity sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ== ajv@^6.10.0, ajv@^6.12.0: - version "6.12.6" - resolved "https://registry.yarnpkg.com/ajv/-/ajv-6.12.6.tgz#baf5a62e802b07d977034586f8c3baf5adf26df4" - integrity sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g== + version "6.14.0" + resolved "https://registry.yarnpkg.com/ajv/-/ajv-6.14.0.tgz#fd067713e228210636ebb08c60bd3765d6dbe73a" + integrity sha512-IWrosm/yrn43eiKqkfkHis7QioDleaXQHdDVPKg0FSwwd/DuvyX79TZnFOnYpB7dcsFAMmtFztZuXPDvSePkFw== dependencies: fast-deep-equal "^3.1.1" fast-json-stable-stringify "^2.0.0" @@ -386,7 +315,7 @@ ansi-regex@^5.0.1: resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-5.0.1.tgz#082cb2c89c9fe8659a311a53bd6a4dc5301db304" integrity sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ== -ansi-regex@^6.0.1: +ansi-regex@^6.2.2: version "6.2.2" resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-6.2.2.tgz#60216eea464d864597ce2832000738a0589650c1" integrity sha512-Bq3SmSpyFHaWjPk8If9yc6svM8c56dB5BAtW4Qbw5jHTwwXXcTLoRMkpDJp6VL0XzlWaCHTXrkFURMYmD0sLqg== @@ -408,55 +337,53 @@ app-builder-bin@5.0.0-alpha.12: resolved "https://registry.yarnpkg.com/app-builder-bin/-/app-builder-bin-5.0.0-alpha.12.tgz#2daf82f8badc698e0adcc95ba36af4ff0650dc80" integrity sha512-j87o0j6LqPL3QRr8yid6c+Tt5gC7xNfYo6uQIQkorAC6MpeayVMZrEDzKmJJ/Hlv7EnOQpaRm53k6ktDYZyB6w== -app-builder-lib@26.0.12: - version "26.0.12" - resolved "https://registry.yarnpkg.com/app-builder-lib/-/app-builder-lib-26.0.12.tgz#2e33df936e0f78d4266b058ece90308ea981eefb" - integrity sha512-+/CEPH1fVKf6HowBUs6LcAIoRcjeqgvAeoSE+cl7Y7LndyQ9ViGPYibNk7wmhMHzNgHIuIbw4nWADPO+4mjgWw== +app-builder-lib@26.8.1: + version "26.8.1" + resolved "https://registry.yarnpkg.com/app-builder-lib/-/app-builder-lib-26.8.1.tgz#315c893bf1f5882cc6cd174cfcd00535dbb76786" + integrity sha512-p0Im/Dx5C4tmz8QEE1Yn4MkuPC8PrnlRneMhWJj7BBXQfNTJUshM/bp3lusdEsDbvvfJZpXWnYesgSLvwtM2Zw== dependencies: "@develar/schema-utils" "~2.6.5" - "@electron/asar" "3.2.18" + "@electron/asar" "3.4.1" "@electron/fuses" "^1.8.0" + "@electron/get" "^3.0.0" "@electron/notarize" "2.5.0" - "@electron/osx-sign" "1.3.1" - "@electron/rebuild" "3.7.0" - "@electron/universal" "2.0.1" + "@electron/osx-sign" "1.3.3" + "@electron/rebuild" "^4.0.3" + "@electron/universal" "2.0.3" "@malept/flatpak-bundler" "^0.4.0" "@types/fs-extra" "9.0.13" async-exit-hook "^2.0.1" - builder-util "26.0.11" - builder-util-runtime "9.3.1" + builder-util "26.8.1" + builder-util-runtime "9.5.1" chromium-pickle-js "^0.2.0" - config-file-ts "0.2.8-rc1" + ci-info "4.3.1" debug "^4.3.4" dotenv "^16.4.5" dotenv-expand "^11.0.6" ejs "^3.1.8" - electron-publish "26.0.11" + electron-publish "26.8.1" fs-extra "^10.1.0" hosted-git-info "^4.1.0" - is-ci "^3.0.0" isbinaryfile "^5.0.0" + jiti "^2.4.2" js-yaml "^4.1.0" json5 "^2.2.3" lazy-val "^1.0.5" - minimatch "^10.0.0" + minimatch "^10.0.3" plist "3.1.0" + proper-lockfile "^4.1.2" resedit "^1.7.0" - semver "^7.3.8" - tar "^6.1.12" + semver "~7.7.3" + tar "^7.5.7" temp-file "^3.4.0" tiny-async-pool "1.3.0" + which "^5.0.0" argparse@^2.0.1: version "2.0.1" resolved "https://registry.yarnpkg.com/argparse/-/argparse-2.0.1.tgz#246f50f3ca78a3240f6c997e8a9bd1eac49e4b38" integrity sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q== -array-flatten@1.1.1: - version "1.1.1" - resolved "https://registry.yarnpkg.com/array-flatten/-/array-flatten-1.1.1.tgz#9a5f699051b1e7073328f2a008968b64ea2955d2" - integrity sha512-PCVAQswWemu6UdxsDFFX/+gVeYqKAod3D3UVm91jHwynguOwAvYPhx8nNlM++NqRcK6CxxpUafjmhIdKiHibqg== - assert-plus@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-1.0.0.tgz#f12e0f3c5d77b0b1cdd9146942e4e96c1e4dd525" @@ -492,6 +419,11 @@ balanced-match@^1.0.0: resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.2.tgz#e83e3a7e3f300b34cb9d87f615fa0cbf357690ee" integrity sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw== +balanced-match@^4.0.2: + version "4.0.4" + resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-4.0.4.tgz#bfb10662feed8196a2c62e7c68e17720c274179a" + integrity sha512-BLrgEcRTwX2o6gGxGOCNyMvGSp35YofuYzw9h1IMTRmKqttAZZVU67bdb9Pr2vUHA8+j3i2tJfjO6C6+4myGTA== + base64-js@^1.3.1, base64-js@^1.5.1: version "1.5.1" resolved "https://registry.yarnpkg.com/base64-js/-/base64-js-1.5.1.tgz#1b1b440160a5bf7ad40b650f095963481903930a" @@ -506,24 +438,6 @@ bl@^4.1.0: inherits "^2.0.4" readable-stream "^3.4.0" -body-parser@~1.20.3: - version "1.20.4" - resolved "https://registry.yarnpkg.com/body-parser/-/body-parser-1.20.4.tgz#f8e20f4d06ca8a50a71ed329c15dccad1cdc547f" - integrity sha512-ZTgYYLMOXY9qKU/57FAo8F+HA2dGX7bqGc71txDRC1rS4frdFI5R7NhluHxH6M0YItAP0sHB4uqAOcYKxO6uGA== - dependencies: - bytes "~3.1.2" - content-type "~1.0.5" - debug "2.6.9" - depd "2.0.0" - destroy "~1.2.0" - http-errors "~2.0.1" - iconv-lite "~0.4.24" - on-finished "~2.4.1" - qs "~6.14.0" - raw-body "~2.5.3" - type-is "~1.6.18" - unpipe "~1.0.0" - boolean@^3.0.1: version "3.2.0" resolved "https://registry.yarnpkg.com/boolean/-/boolean-3.2.0.tgz#9e5294af4e98314494cbb17979fa54ca159f116b" @@ -537,13 +451,20 @@ brace-expansion@^1.1.7: balanced-match "^1.0.0" concat-map "0.0.1" -brace-expansion@^2.0.1: +brace-expansion@^2.0.1, brace-expansion@^2.0.2: version "2.0.2" resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-2.0.2.tgz#54fc53237a613d854c7bd37463aad17df87214e7" integrity sha512-Jt0vHyM+jmUBqojB7E1NIYadt0vI0Qxjxd2TErW94wDz+E2LAm5vKMXXwg6ZZBTHPuUlDgQHKXvjGBdfcF1ZDQ== dependencies: balanced-match "^1.0.0" +brace-expansion@^5.0.2: + version "5.0.4" + resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-5.0.4.tgz#614daaecd0a688f660bbbc909a8748c3d80d4336" + integrity sha512-h+DEnpVvxmfVefa4jFbCf5HdH5YMDXRsmKflpf1pILZWRFlTbJpxeU55nJl4Smt5HQaGzg1o6RHFPJaOqnmBDg== + dependencies: + balanced-match "^4.0.2" + braces@^3.0.3: version "3.0.3" resolved "https://registry.yarnpkg.com/braces/-/braces-3.0.3.tgz#490332f40919452272d55a8480adc0c441358789" @@ -551,6 +472,11 @@ braces@^3.0.3: dependencies: fill-range "^7.1.1" +buffer-crc32@0.2.1: + version "0.2.1" + resolved "https://registry.yarnpkg.com/buffer-crc32/-/buffer-crc32-0.2.1.tgz#be3e5382fc02b6d6324956ac1af98aa98b08534c" + integrity sha512-vMfBIRp/wjlpueSz7Sb0OmO7C5SH58SSmbsT8G4D48YfO/Zgbr29xNXMpZVSC14ujVJfrZZH1Bl+kXYRQPuvfQ== + buffer-crc32@~0.2.3: version "0.2.13" resolved "https://registry.yarnpkg.com/buffer-crc32/-/buffer-crc32-0.2.13.tgz#0d333e3f00eac50aa1454abd30ef8c2a5d9a7242" @@ -569,30 +495,29 @@ buffer@^5.1.0, buffer@^5.5.0: base64-js "^1.3.1" ieee754 "^1.1.13" -builder-util-runtime@9.3.1: - version "9.3.1" - resolved "https://registry.yarnpkg.com/builder-util-runtime/-/builder-util-runtime-9.3.1.tgz#0daedde0f6d381f2a00a50a407b166fe7dca1a67" - integrity sha512-2/egrNDDnRaxVwK3A+cJq6UOlqOdedGA7JPqCeJjN2Zjk1/QB/6QUi3b714ScIGS7HafFXTyzJEOr5b44I3kvQ== +builder-util-runtime@9.5.1: + version "9.5.1" + resolved "https://registry.yarnpkg.com/builder-util-runtime/-/builder-util-runtime-9.5.1.tgz#74125fb374d1ecbf472ae1787485485ff7619702" + integrity sha512-qt41tMfgHTllhResqM5DcnHyDIWNgzHvuY2jDcYP9iaGpkWxTUzV6GQjDeLnlR1/DtdlcsWQbA7sByMpmJFTLQ== dependencies: debug "^4.3.4" sax "^1.2.4" -builder-util@26.0.11: - version "26.0.11" - resolved "https://registry.yarnpkg.com/builder-util/-/builder-util-26.0.11.tgz#ad85b92c93f2b976b973e1d87337e0c6813fcb8f" - integrity sha512-xNjXfsldUEe153h1DraD0XvDOpqGR0L5eKFkdReB7eFW5HqysDZFfly4rckda6y9dF39N3pkPlOblcfHKGw+uA== +builder-util@26.8.1: + version "26.8.1" + resolved "https://registry.yarnpkg.com/builder-util/-/builder-util-26.8.1.tgz#50fdfc2d4ffeb6f739af363b5bd60c49c95d4170" + integrity sha512-pm1lTYbGyc90DHgCDO7eo8Rl4EqKLciayNbZqGziqnH9jrlKe8ZANGdityLZU+pJh16dfzjAx2xQq9McuIPEtw== dependencies: "7zip-bin" "~5.2.0" "@types/debug" "^4.1.6" app-builder-bin "5.0.0-alpha.12" - builder-util-runtime "9.3.1" + builder-util-runtime "9.5.1" chalk "^4.1.2" cross-spawn "^7.0.6" debug "^4.3.4" fs-extra "^10.1.0" http-proxy-agent "^7.0.0" https-proxy-agent "^7.0.0" - is-ci "^3.0.0" js-yaml "^4.1.0" sanitize-filename "^1.6.3" source-map-support "^0.5.19" @@ -600,34 +525,23 @@ builder-util@26.0.11: temp-file "^3.4.0" tiny-async-pool "1.3.0" -bytes@~3.1.2: - version "3.1.2" - resolved "https://registry.yarnpkg.com/bytes/-/bytes-3.1.2.tgz#8b0beeb98605adf1b128fa4386403c009e0221a5" - integrity sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg== - -cacache@^16.1.0: - version "16.1.3" - resolved "https://registry.yarnpkg.com/cacache/-/cacache-16.1.3.tgz#a02b9f34ecfaf9a78c9f4bc16fceb94d5d67a38e" - integrity sha512-/+Emcj9DAXxX4cwlLmRI9c166RuL3w30zp4R7Joiv2cQTtTtA+jeuCAjH3ZlGnYS3tKENSrKhAzVVP9GVyzeYQ== - dependencies: - "@npmcli/fs" "^2.1.0" - "@npmcli/move-file" "^2.0.0" - chownr "^2.0.0" - fs-minipass "^2.1.0" - glob "^8.0.1" - infer-owner "^1.0.4" - lru-cache "^7.7.1" - minipass "^3.1.6" - minipass-collect "^1.0.2" +cacache@^19.0.1: + version "19.0.1" + resolved "https://registry.yarnpkg.com/cacache/-/cacache-19.0.1.tgz#3370cc28a758434c85c2585008bd5bdcff17d6cd" + integrity sha512-hdsUxulXCi5STId78vRVYEtDAjq99ICAUktLTeTYsLoTE6Z8dS0c8pWNCxwdrk9YfJeobDZc2Y186hD/5ZQgFQ== + dependencies: + "@npmcli/fs" "^4.0.0" + fs-minipass "^3.0.0" + glob "^10.2.2" + lru-cache "^10.0.1" + minipass "^7.0.3" + minipass-collect "^2.0.1" minipass-flush "^1.0.5" minipass-pipeline "^1.2.4" - mkdirp "^1.0.4" - p-map "^4.0.0" - promise-inflight "^1.0.1" - rimraf "^3.0.2" - ssri "^9.0.0" - tar "^6.1.11" - unique-filename "^2.0.0" + p-map "^7.0.2" + ssri "^12.0.0" + tar "^7.4.3" + unique-filename "^4.0.0" cacheable-lookup@^5.0.3: version "5.0.4" @@ -665,7 +579,7 @@ call-bind@^1.0.8: get-intrinsic "^1.2.4" set-function-length "^1.2.2" -call-bound@^1.0.2, call-bound@^1.0.4: +call-bound@^1.0.4: version "1.0.4" resolved "https://registry.yarnpkg.com/call-bound/-/call-bound-1.0.4.tgz#238de935d2a2a692928c538c7ccfa91067fd062a" integrity sha512-+ys997U96po4Kx/ABpBCqhA9EuxJaQWDQg7295H4hBphv3IZg0boBKuwYpt4YXp6MZ5AmZQnU/tyMTlRpaSejg== @@ -673,7 +587,7 @@ call-bound@^1.0.2, call-bound@^1.0.4: call-bind-apply-helpers "^1.0.2" get-intrinsic "^1.3.0" -chalk@^4.0.0, chalk@^4.1.0, chalk@^4.1.1, chalk@^4.1.2: +chalk@^4.1.0, chalk@^4.1.1, chalk@^4.1.2: version "4.1.2" resolved "https://registry.yarnpkg.com/chalk/-/chalk-4.1.2.tgz#aac4e2b7734a740867aeb16bf02aad556a1e7a01" integrity sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA== @@ -681,25 +595,30 @@ chalk@^4.0.0, chalk@^4.1.0, chalk@^4.1.1, chalk@^4.1.2: ansi-styles "^4.1.0" supports-color "^7.1.0" -chownr@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/chownr/-/chownr-2.0.0.tgz#15bfbe53d2eab4cf70f18a8cd68ebe5b3cb1dece" - integrity sha512-bIomtDF5KGpdogkLd9VspvFzk9KfpyyGlS8YFVZl7TGPBHL5snIOnxeshwVgPteQ9b4Eydl+pVbIyE1DcvCWgQ== +chownr@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/chownr/-/chownr-3.0.0.tgz#9855e64ecd240a9cc4267ce8a4aa5d24a1da15e4" + integrity sha512-+IxzY9BZOQd/XuYPRmrvEVjF/nqj5kgT4kEq7VofrDoM1MxoRjEWkrCC3EtLi59TVawxTAn+orJwFQcrqEN1+g== chromium-pickle-js@^0.2.0: version "0.2.0" resolved "https://registry.yarnpkg.com/chromium-pickle-js/-/chromium-pickle-js-0.2.0.tgz#04a106672c18b085ab774d983dfa3ea138f22205" integrity sha512-1R5Fho+jBq0DDydt+/vHWj5KJNJCKdARKOCwZUen84I5BreWoLqRLANH1U87eJy1tiASPtMnGqJJq0ZsLoRPOw== -ci-info@^3.2.0, ci-info@^3.7.0: +ci-info@4.3.1: + version "4.3.1" + resolved "https://registry.yarnpkg.com/ci-info/-/ci-info-4.3.1.tgz#355ad571920810b5623e11d40232f443f16f1daa" + integrity sha512-Wdy2Igu8OcBpI2pZePZ5oWjPC38tmDVx5WKUXKwlLYkA0ozo85sLsLvkBbBn/sZaSCMFOGZJ14fvW9t5/d7kdA== + +ci-info@^3.7.0: version "3.9.0" resolved "https://registry.yarnpkg.com/ci-info/-/ci-info-3.9.0.tgz#4279a62028a7b1f262f3473fc9605f5e218c59b4" integrity sha512-NIxF55hv4nSqQswkAeiOi1r83xy8JldOFDTWiug55KBu9Jnblncd2U6ViHmYgHf01TPZS77NJBhBMKdWj9HQMQ== -clean-stack@^2.0.0: - version "2.2.0" - resolved "https://registry.yarnpkg.com/clean-stack/-/clean-stack-2.2.0.tgz#ee8472dbb129e727b31e8a10a427dee9dfe4008b" - integrity sha512-4diC9HaTE+KRAMWhDhrGOECgWZxoevMc5TlkObMqNSsVU62PYzXZ/SMTjzyGAFF1YusgxGcSWTEXBhp0CPwQ1A== +ci-info@^4.2.0: + version "4.4.0" + resolved "https://registry.yarnpkg.com/ci-info/-/ci-info-4.4.0.tgz#7d54eff9f54b45b62401c26032696eb59c8bd18c" + integrity sha512-77PSwercCZU2Fc4sX94eF8k8Pxte6JAwL4/ICZLFjJLqegs7kCuAsqqj/70NQF6TvDpgFjkubQB2FW2ZZddvQg== cli-cursor@^3.1.0: version "3.1.0" @@ -776,35 +695,15 @@ concat-map@0.0.1: resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" integrity sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg== -config-file-ts@0.2.8-rc1: - version "0.2.8-rc1" - resolved "https://registry.yarnpkg.com/config-file-ts/-/config-file-ts-0.2.8-rc1.tgz#fb7fc6ccb2e313f69dbeb78f1db0b00038049de0" - integrity sha512-GtNECbVI82bT4RiDIzBSVuTKoSHufnU7Ce7/42bkWZJZFLjmDF2WBpVsvRkhKCfKBnTBb3qZrBwPpFBU/Myvhg== - dependencies: - glob "^10.3.12" - typescript "^5.4.3" - -content-disposition@~0.5.4: - version "0.5.4" - resolved "https://registry.yarnpkg.com/content-disposition/-/content-disposition-0.5.4.tgz#8b82b4efac82512a02bb0b1dcec9d2c5e8eb5bfe" - integrity sha512-FveZTNuGw04cxlAiWbzi6zTAL/lhehaWbTtgluJh4/E95DqMwTmha3KZN1aAWA8cFIhHzMZUvLevkw5Rqk+tSQ== - dependencies: - safe-buffer "5.2.1" - -content-type@~1.0.4, content-type@~1.0.5: - version "1.0.5" - resolved "https://registry.yarnpkg.com/content-type/-/content-type-1.0.5.tgz#8b773162656d1d1086784c8f23a54ce6d73d7918" - integrity sha512-nTjqfcBFEipKdXCv4YDQWCfmcLZKm81ldF0pAopTvyrFGVbcR6P/VAAd5G7N+0tTr8QqiU0tFadD6FK4NtJwOA== - -cookie-signature@~1.0.6: - version "1.0.7" - resolved "https://registry.yarnpkg.com/cookie-signature/-/cookie-signature-1.0.7.tgz#ab5dd7ab757c54e60f37ef6550f481c426d10454" - integrity sha512-NXdYc3dLr47pBkpUCHtKSwIOQXLVn8dZEuywboCOJY/osA0wFSLlSawr3KN8qXJEyX66FcONTH8EIlVuK0yyFA== +cookie-signature@1.0.3: + version "1.0.3" + resolved "https://registry.yarnpkg.com/cookie-signature/-/cookie-signature-1.0.3.tgz#91cd997cc51fb641595738c69cda020328f50ff9" + integrity sha512-/KzKzsm0OlguYov01OlOpTkX5MhBKUmfL/KMum7R80rPKheb9AwUzr78TwtBt1OdbnWrt4X+wxbTfcQ3noZqHw== -cookie@~0.7.1: - version "0.7.2" - resolved "https://registry.yarnpkg.com/cookie/-/cookie-0.7.2.tgz#556369c472a2ba910f2979891b526b3436237ed7" - integrity sha512-yki5XnKuf750l50uGTllt6kKILY4nQ1eNIQatoXEByZ5dWgnKqbnqmTrBE5B4N7lrMJKQ2ytWMiTO2o0v6Ew/w== +cookie@0.1.0: + version "0.1.0" + resolved "https://registry.yarnpkg.com/cookie/-/cookie-0.1.0.tgz#90eb469ddce905c866de687efc43131d8801f9d0" + integrity sha512-YSNOBX085/nzHvrTLEHYHoNdkvpLU1MPjU3r1IGawudZJjfuqnRNIFrcOJJ7bfwC+HWbHL1Y4yMkC0O+HWjV7w== core-util-is@1.0.2: version "1.0.2" @@ -827,20 +726,18 @@ cross-spawn@^7.0.1, cross-spawn@^7.0.3, cross-spawn@^7.0.6: shebang-command "^2.0.0" which "^2.0.1" -debug@2.6.9: - version "2.6.9" - resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.9.tgz#5d128515df134ff327e90a4c93f4e077a536341f" - integrity sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA== - dependencies: - ms "2.0.0" - -debug@4, debug@^4.1.0, debug@^4.1.1, debug@^4.3.1, debug@^4.3.3, debug@^4.3.4: +debug@*, debug@4, debug@^4.1.0, debug@^4.1.1, debug@^4.3.1, debug@^4.3.4: version "4.4.3" resolved "https://registry.yarnpkg.com/debug/-/debug-4.4.3.tgz#c6ae432d9bd9662582fce08709b038c58e9e3d6a" integrity sha512-RGwwWnwQvkVfavKVt22FGLw+xYSdzARwm0ru6DhTVA3umU5hZc28V3kO4stgYryrTlLpuvgI9GiijltAjNbcqA== dependencies: ms "^2.1.3" +"debug@>= 0.7.3 < 1": + version "0.8.1" + resolved "https://registry.yarnpkg.com/debug/-/debug-0.8.1.tgz#20ff4d26f5e422cb68a1bacbbb61039ad8c1c130" + integrity sha512-HlXEJm99YsRjLJ8xmuz0Lq8YUwrv7hAJkTEr6/Em3sUlSUNl0UdFA+1SrY4fnykeq1FVkUEUtwRGHs9VvlYbGA== + decompress-response@^6.0.0: version "6.0.0" resolved "https://registry.yarnpkg.com/decompress-response/-/decompress-response-6.0.0.tgz#ca387612ddb7e104bd16d85aab00d5ecf09c66fc" @@ -878,42 +775,11 @@ define-properties@^1.2.1: has-property-descriptors "^1.0.0" object-keys "^1.1.1" -del-cli@6: - version "6.0.0" - resolved "https://registry.yarnpkg.com/del-cli/-/del-cli-6.0.0.tgz#7822d0ffd5b73449a506a586d839711485bfb119" - integrity sha512-9nitGV2W6KLFyya4qYt4+9AKQFL+c0Ehj5K7V7IwlxTc6RMCfQUGY9E9pLG6e8TQjtwXpuiWIGGZb3mfVxyZkw== - dependencies: - del "^8.0.0" - meow "^13.2.0" - -del@^8.0.0: - version "8.0.1" - resolved "https://registry.yarnpkg.com/del/-/del-8.0.1.tgz#86772fe3a8c9f91bad0d7c6f79e04c6f310e50ac" - integrity sha512-gPqh0mKTPvaUZGAuHbrBUYKZWBNAeHG7TU3QH5EhVwPMyKvmfJaNXhcD2jTcXsJRRcffuho4vaYweu80dRrMGA== - dependencies: - globby "^14.0.2" - is-glob "^4.0.3" - is-path-cwd "^3.0.0" - is-path-inside "^4.0.0" - p-map "^7.0.2" - presentable-error "^0.0.1" - slash "^5.1.0" - delayed-stream@~1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/delayed-stream/-/delayed-stream-1.0.0.tgz#df3ae199acadfb7d440aaae0b29e2272b24ec619" integrity sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ== -depd@2.0.0, depd@~2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/depd/-/depd-2.0.0.tgz#b696163cc757560d09cf22cc8fad1571b79e76df" - integrity sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw== - -destroy@1.2.0, destroy@~1.2.0: - version "1.2.0" - resolved "https://registry.yarnpkg.com/destroy/-/destroy-1.2.0.tgz#4803735509ad8be552934c67df614f94e66fa015" - integrity sha512-2sJGJTaXIIaR1w4iJSNoN0hnMY7Gpc/n8D4qSCJw8QqFWXf7cuAgnEHxBpweaVcPevC2l3KpjYCx3NypQQgaJg== - detect-libc@^2.0.1: version "2.1.2" resolved "https://registry.yarnpkg.com/detect-libc/-/detect-libc-2.1.2.tgz#689c5dcdc1900ef5583a4cb9f6d7b473742074ad" @@ -932,14 +798,13 @@ dir-compare@^4.2.0: minimatch "^3.0.5" p-limit "^3.1.0 " -dmg-builder@26.0.12: - version "26.0.12" - resolved "https://registry.yarnpkg.com/dmg-builder/-/dmg-builder-26.0.12.tgz#6996ad0bab80a861c9a7b33ee9734d4f60566b46" - integrity sha512-59CAAjAhTaIMCN8y9kD573vDkxbs1uhDcrFLHSgutYdPcGOU35Rf95725snvzEOy4BFB7+eLJ8djCNPmGwG67w== +dmg-builder@26.8.1: + version "26.8.1" + resolved "https://registry.yarnpkg.com/dmg-builder/-/dmg-builder-26.8.1.tgz#df99aa790676ac2a2ac0333bbadbef3b6076cb03" + integrity sha512-glMJgnTreo8CFINujtAhCgN96QAqApDMZ8Vl1r8f0QT8QprvC1UCltV4CcWj20YoIyLZx6IUskaJZ0NV8fokcg== dependencies: - app-builder-lib "26.0.12" - builder-util "26.0.11" - builder-util-runtime "9.3.1" + app-builder-lib "26.8.1" + builder-util "26.8.1" fs-extra "^10.1.0" iconv-lite "^0.6.2" js-yaml "^4.1.0" @@ -986,11 +851,6 @@ eastasianwidth@^0.2.0: resolved "https://registry.yarnpkg.com/eastasianwidth/-/eastasianwidth-0.2.0.tgz#696ce2ec0aa0e6ea93a397ffcf24aa7840c827cb" integrity sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA== -ee-first@1.1.1: - version "1.1.1" - resolved "https://registry.yarnpkg.com/ee-first/-/ee-first-1.1.1.tgz#590c61156b0ae2f4f0255732a158b266bc56b21d" - integrity sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow== - ejs@^3.1.8: version "3.1.10" resolved "https://registry.yarnpkg.com/ejs/-/ejs-3.1.10.tgz#69ab8358b14e896f80cc39e62087b88500c3ac3b" @@ -998,48 +858,48 @@ ejs@^3.1.8: dependencies: jake "^10.8.5" -electron-builder@26: - version "26.0.12" - resolved "https://registry.yarnpkg.com/electron-builder/-/electron-builder-26.0.12.tgz#797af2e70efdd96c9ea5d8a8164b8728c90d65ff" - integrity sha512-cD1kz5g2sgPTMFHjLxfMjUK5JABq3//J4jPswi93tOPFz6btzXYtK5NrDt717NRbukCUDOrrvmYVOWERlqoiXA== +electron-builder@26.8.1: + version "26.8.1" + resolved "https://registry.yarnpkg.com/electron-builder/-/electron-builder-26.8.1.tgz#d49056b2fe5d37f0f94aa2eb0e1db38f261fc8c0" + integrity sha512-uWhx1r74NGpCagG0ULs/P9Nqv2nsoo+7eo4fLUOB8L8MdWltq9odW/uuLXMFCDGnPafknYLZgjNX0ZIFRzOQAw== dependencies: - app-builder-lib "26.0.12" - builder-util "26.0.11" - builder-util-runtime "9.3.1" + app-builder-lib "26.8.1" + builder-util "26.8.1" + builder-util-runtime "9.5.1" chalk "^4.1.2" - dmg-builder "26.0.12" + ci-info "^4.2.0" + dmg-builder "26.8.1" fs-extra "^10.1.0" - is-ci "^3.0.0" lazy-val "^1.0.5" simple-update-notifier "2.0.0" yargs "^17.6.2" -electron-publish@26.0.11: - version "26.0.11" - resolved "https://registry.yarnpkg.com/electron-publish/-/electron-publish-26.0.11.tgz#92c9329a101af2836d9d228c82966eca1eee9a7b" - integrity sha512-a8QRH0rAPIWH9WyyS5LbNvW9Ark6qe63/LqDB7vu2JXYpi0Gma5Q60Dh4tmTqhOBQt0xsrzD8qE7C+D7j+B24A== +electron-publish@26.8.1: + version "26.8.1" + resolved "https://registry.yarnpkg.com/electron-publish/-/electron-publish-26.8.1.tgz#6a32fa8eed0d41971dda53072bea06b9932be583" + integrity sha512-q+jrSTIh/Cv4eGZa7oVR+grEJo/FoLMYBAnSL5GCtqwUpr1T+VgKB/dn1pnzxIxqD8S/jP1yilT9VrwCqINR4w== dependencies: "@types/fs-extra" "^9.0.11" - builder-util "26.0.11" - builder-util-runtime "9.3.1" + builder-util "26.8.1" + builder-util-runtime "9.5.1" chalk "^4.1.2" - form-data "^4.0.0" + form-data "^4.0.5" fs-extra "^10.1.0" lazy-val "^1.0.5" mime "^2.5.2" -electron-updater@6: - version "6.6.2" - resolved "https://registry.yarnpkg.com/electron-updater/-/electron-updater-6.6.2.tgz#3e65e044f1a99b00d61e200e24de8e709c69ce99" - integrity sha512-Cr4GDOkbAUqRHP5/oeOmH/L2Bn6+FQPxVLZtPbcmKZC63a1F3uu5EefYOssgZXG3u/zBlubbJ5PJdITdMVggbw== +electron-updater@6.8.3: + version "6.8.3" + resolved "https://registry.yarnpkg.com/electron-updater/-/electron-updater-6.8.3.tgz#bb0c8ef6509e5c67663f6481a729244d1bce21fb" + integrity sha512-Z6sgw3jgbikWKXei1ENdqFOxBP0WlXg3TtKfz0rgw2vIZFJUyI4pD7ZN7jrkm7EoMK+tcm/qTnPUdqfZukBlBQ== dependencies: - builder-util-runtime "9.3.1" + builder-util-runtime "9.5.1" fs-extra "^10.1.0" js-yaml "^4.1.0" lazy-val "^1.0.5" lodash.escaperegexp "^4.1.2" lodash.isequal "^4.5.0" - semver "^7.6.3" + semver "~7.7.3" tiny-typed-emitter "^2.1.0" electron@23.2.0: @@ -1061,11 +921,6 @@ emoji-regex@^9.2.2: resolved "https://registry.yarnpkg.com/emoji-regex/-/emoji-regex-9.2.2.tgz#840c8803b0d8047f4ff0cf963176b32d4ef3ed72" integrity sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg== -encodeurl@~2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/encodeurl/-/encodeurl-2.0.0.tgz#7b8ea898077d7e409d3ac45474ea38eaf0857a58" - integrity sha512-Q0n9HRi4m6JuGIV1eFlmvJB7ZEVxu93IrMyiMsGC0lrMJMWzRgx6WGquyfQgZVb31vhGgXnfmPNNXmxnOkRBrg== - encoding@^0.1.13: version "0.1.13" resolved "https://registry.yarnpkg.com/encoding/-/encoding-0.1.13.tgz#56574afdd791f54a8e9b2785c0582a2d26210fa9" @@ -1127,62 +982,43 @@ escalade@^3.1.1: resolved "https://registry.yarnpkg.com/escalade/-/escalade-3.2.0.tgz#011a3f69856ba189dffa7dc8fcce99d2a87903e5" integrity sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA== -escape-html@~1.0.3: - version "1.0.3" - resolved "https://registry.yarnpkg.com/escape-html/-/escape-html-1.0.3.tgz#0258eae4d3d0c0974de1c169188ef0051d1d1988" - integrity sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow== +escape-html@1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/escape-html/-/escape-html-1.0.1.tgz#181a286ead397a39a92857cfb1d43052e356bff0" + integrity sha512-z6kAnok8fqVTra7Yu77dZF2Y6ETJlxH58wN38wNyuNQLm8xXdKnfNrlSmfXsTePWP03rRVUKHubtUwanwUi7+g== escape-string-regexp@^4.0.0: version "4.0.0" resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz#14ba83a5d373e3d311e5afca29cf5bfad965bf34" integrity sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA== -etag@~1.8.1: - version "1.8.1" - resolved "https://registry.yarnpkg.com/etag/-/etag-1.8.1.tgz#41ae2eeb65efa62268aebfea83ac7d79299b0887" - integrity sha512-aIL5Fx7mawVa300al2BnEE4iNvo1qETxLrPI/o05L7z6go7fCw1J6EQmbK4FmJ2AS7kgVF/KEZWufBfdClMcPg== - exponential-backoff@^3.1.1: version "3.1.3" resolved "https://registry.yarnpkg.com/exponential-backoff/-/exponential-backoff-3.1.3.tgz#51cf92c1c0493c766053f9d3abee4434c244d2f6" integrity sha512-ZgEeZXj30q+I0EN+CbSSpIyPaJ5HVQD18Z1m+u1FXbAeT94mr1zw50q4q6jiiC447Nl/YTcIYSAftiGqetwXCA== -express@4: - version "4.22.1" - resolved "https://registry.yarnpkg.com/express/-/express-4.22.1.tgz#1de23a09745a4fffdb39247b344bb5eaff382069" - integrity sha512-F2X8g9P1X7uCPZMA3MVf9wcTqlyNp7IhH5qPCI0izhaOIYXaW9L535tGA3qmjRzpH+bZczqq7hVKxTR4NWnu+g== - dependencies: - accepts "~1.3.8" - array-flatten "1.1.1" - body-parser "~1.20.3" - content-disposition "~0.5.4" - content-type "~1.0.4" - cookie "~0.7.1" - cookie-signature "~1.0.6" - debug "2.6.9" - depd "2.0.0" - encodeurl "~2.0.0" - escape-html "~1.0.3" - etag "~1.8.1" - finalhandler "~1.3.1" - fresh "~0.5.2" - http-errors "~2.0.0" - merge-descriptors "1.0.3" - methods "~1.1.2" - on-finished "~2.4.1" - parseurl "~1.3.3" - path-to-regexp "~0.1.12" - proxy-addr "~2.0.7" - qs "~6.14.0" - range-parser "~1.2.1" - safe-buffer "5.2.1" - send "~0.19.0" - serve-static "~1.16.2" - setprototypeof "1.2.0" - statuses "~2.0.1" - type-is "~1.6.18" - utils-merge "1.0.1" - vary "~1.1.2" +express@4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/express/-/express-4.0.0.tgz#274dc82933c9f574cc38a0ce5ea8172be9c6b094" + integrity sha512-HP2D9TkAYTAfau6FklzmchQQH/7Dh/JmbrbiJanV80rO12Kc00z5tDrqahBG3fR6x/RuUZvpEwiQ91b7UhJ8qQ== + dependencies: + accepts "1.0.0" + buffer-crc32 "0.2.1" + cookie "0.1.0" + cookie-signature "1.0.3" + debug ">= 0.7.3 < 1" + escape-html "1.0.1" + fresh "0.2.2" + merge-descriptors "0.0.2" + methods "0.1.0" + parseurl "1.0.1" + path-to-regexp "0.1.2" + qs "0.6.6" + range-parser "1.0.0" + send "0.2.0" + serve-static "1.0.1" + type-is "1.0.0" + utils-merge "1.0.0" extract-zip@^2.0.1: version "2.0.1" @@ -1205,29 +1041,11 @@ fast-deep-equal@^3.1.1: resolved "https://registry.yarnpkg.com/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz#3a7d56b559d6cbc3eb512325244e619a65c6c525" integrity sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q== -fast-glob@^3.3.3: - version "3.3.3" - resolved "https://registry.yarnpkg.com/fast-glob/-/fast-glob-3.3.3.tgz#d06d585ce8dba90a16b0505c543c3ccfb3aeb818" - integrity sha512-7MptL8U0cqcFdzIzwOTHoilX9x5BrNqye7Z/LuC7kCMRio1EMSyqRK3BEAUD7sXRq4iT4AzTVuZdhgQ2TCvYLg== - dependencies: - "@nodelib/fs.stat" "^2.0.2" - "@nodelib/fs.walk" "^1.2.3" - glob-parent "^5.1.2" - merge2 "^1.3.0" - micromatch "^4.0.8" - fast-json-stable-stringify@^2.0.0: version "2.1.0" resolved "https://registry.yarnpkg.com/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz#874bf69c6f404c2b5d99c481341399fd55892633" integrity sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw== -fastq@^1.6.0: - version "1.19.1" - resolved "https://registry.yarnpkg.com/fastq/-/fastq-1.19.1.tgz#d50eaba803c8846a883c16492821ebcd2cda55f5" - integrity sha512-GwLTyxkCXjXbxqIhTsMI2Nui8huMPtnxg7krajPJAjnEG/iiOS7i+zCtWGZR9G0NBKbXKh6X9m9UIsYX/N6vvQ== - dependencies: - reusify "^1.0.4" - fd-slicer@~1.1.0: version "1.1.0" resolved "https://registry.yarnpkg.com/fd-slicer/-/fd-slicer-1.1.0.tgz#25c7c89cb1f9077f8891bbe61d8f390eae256f1e" @@ -1235,10 +1053,15 @@ fd-slicer@~1.1.0: dependencies: pend "~1.2.0" +fdir@^6.5.0: + version "6.5.0" + resolved "https://registry.yarnpkg.com/fdir/-/fdir-6.5.0.tgz#ed2ab967a331ade62f18d077dae192684d50d350" + integrity sha512-tIbYtZbucOs0BRGqPJkshJUYdL+SDH7dVM8gjy+ERp3WAUjLEFJE+02kanyHtwjWOnwrKYBiwAmM0p4kLJAnXg== + filelist@^1.0.4: - version "1.0.4" - resolved "https://registry.yarnpkg.com/filelist/-/filelist-1.0.4.tgz#f78978a1e944775ff9e62e744424f215e58352b5" - integrity sha512-w1cEuf3S+DrLCQL7ET6kz+gmlJdbq9J7yXCSjK/OZCPA+qEN1WyF4ZAf0YYJa4/shHJra2t/d/r8SV4Ji+x+8Q== + version "1.0.6" + resolved "https://registry.yarnpkg.com/filelist/-/filelist-1.0.6.tgz#1e8870942a7c636c862f7c49b9394937b6a995a3" + integrity sha512-5giy2PkLYY1cP39p17Ech+2xlpTRL9HLspOfEgm0L6CwBXBTgsK5ou0JtzYuepxkaQ/tvhCFIJ5uXo0OrM2DxA== dependencies: minimatch "^5.0.1" @@ -1249,19 +1072,6 @@ fill-range@^7.1.1: dependencies: to-regex-range "^5.0.1" -finalhandler@~1.3.1: - version "1.3.2" - resolved "https://registry.yarnpkg.com/finalhandler/-/finalhandler-1.3.2.tgz#1ebc2228fc7673aac4a472c310cc05b77d852b88" - integrity sha512-aA4RyPcd3badbdABGDuTXCMTtOneUCAYH/gxoYRTZlIJdF0YPWuGqiAsIrhNnnqdXGswYk6dGujem4w80UJFhg== - dependencies: - debug "2.6.9" - encodeurl "~2.0.0" - escape-html "~1.0.3" - on-finished "~2.4.1" - parseurl "~1.3.3" - statuses "~2.0.2" - unpipe "~1.0.0" - find-yarn-workspace-root@^2.0.0: version "2.0.0" resolved "https://registry.yarnpkg.com/find-yarn-workspace-root/-/find-yarn-workspace-root-2.0.0.tgz#f47fb8d239c900eb78179aa81b66673eac88f7bd" @@ -1277,7 +1087,7 @@ foreground-child@^3.1.0: cross-spawn "^7.0.6" signal-exit "^4.0.1" -form-data@^4.0.0: +form-data@^4.0.5: version "4.0.5" resolved "https://registry.yarnpkg.com/form-data/-/form-data-4.0.5.tgz#b49e48858045ff4cbf6b03e1805cebcad3679053" integrity sha512-8RipRLol37bNs2bhoV67fiTEvdTrbMUYcFTiy3+wuuOnUog2QBHCZWXDRijWQfAkhBj2Uf5UnVaiWwA5vdd82w== @@ -1288,20 +1098,25 @@ form-data@^4.0.0: hasown "^2.0.2" mime-types "^2.1.12" -forwarded@0.2.0: +fresh@0.2.0: version "0.2.0" - resolved "https://registry.yarnpkg.com/forwarded/-/forwarded-0.2.0.tgz#2269936428aad4c15c7ebe9779a84bf0b2a81811" - integrity sha512-buRG0fpBtRHSTCOASe6hD258tEubFoRLb4ZNA6NxMVHNw2gOcwHo9wyablzMzOA5z9xA9L1KNjk/Nt6MT9aYow== + resolved "https://registry.yarnpkg.com/fresh/-/fresh-0.2.0.tgz#bfd9402cf3df12c4a4c310c79f99a3dde13d34a7" + integrity sha512-ckGdAuSRr1wBmnq7CsW7eU37DBwQxHx3vW8foJUIrF56rkOy8Osm6Fe8KSwemwyKejivKki7jVBgpBpBJexmrw== + +fresh@0.2.2: + version "0.2.2" + resolved "https://registry.yarnpkg.com/fresh/-/fresh-0.2.2.tgz#9731dcf5678c7faeb44fb903c4f72df55187fa77" + integrity sha512-ZGGi8GROK//ijm2gB33sUuN9TjN1tC/dvG4Bt4j6IWrVGpMmudUBCxx+Ir7qePsdREfkpQC4FL8W0jeSOsgv1w== -fresh@~0.5.2: - version "0.5.2" - resolved "https://registry.yarnpkg.com/fresh/-/fresh-0.5.2.tgz#3d8cadd90d976569fa835ab1f8e4b23a105605a7" - integrity sha512-zJ2mQYM18rEFOudeV4GShTGIQ7RbzA7ozbU9I/XBpm7kqgMywgmylMwXHxZJmkVoYkna9d2pVXVXPdYTP9ej8Q== +fresh@~0.2.1: + version "0.2.4" + resolved "https://registry.yarnpkg.com/fresh/-/fresh-0.2.4.tgz#3582499206c9723714190edd74b4604feb4a614c" + integrity sha512-mnBGgIFRNu54GtbkXy6+QKPYW/b5joAURorA8ELeJc/5BBNph6Go1NmHa9dt08ghFnhGuLenrUmNO8Za1CwEUQ== -fs-extra@11, fs-extra@^11.1.1: - version "11.3.2" - resolved "https://registry.yarnpkg.com/fs-extra/-/fs-extra-11.3.2.tgz#c838aeddc6f4a8c74dd15f85e11fe5511bfe02a4" - integrity sha512-Xr9F6z6up6Ws+NjzMCZc6WXg2YFRlrLP9NQDO3VQrWrfiojdhS56TzueT88ze0uBdCTwEIhQ3ptnmKeWGFAe0A== +fs-extra@11.0.0: + version "11.0.0" + resolved "https://registry.yarnpkg.com/fs-extra/-/fs-extra-11.0.0.tgz#5c50cf225ab1b16804cabd4249b7e58feb4bdbe7" + integrity sha512-4YxRvMi4P5C3WQTvdRfrv5UVqbISpqjORFQAW5QPiKAauaxNCwrEdIi6pG3tDFhKKpMen+enEhHIzB/tvIO+/w== dependencies: graceful-fs "^4.2.0" jsonfile "^6.0.1" @@ -1316,6 +1131,15 @@ fs-extra@^10.0.0, fs-extra@^10.1.0: jsonfile "^6.0.1" universalify "^2.0.0" +fs-extra@^11.1.1: + version "11.3.3" + resolved "https://registry.yarnpkg.com/fs-extra/-/fs-extra-11.3.3.tgz#a27da23b72524e81ac6c3815cc0179b8c74c59ee" + integrity sha512-VWSRii4t0AFm6ixFFmLLx1t7wS1gh+ckoa84aOeapGum0h+EZd1EhEumSB+ZdDLnEPuucsVB9oB7cxJHap6Afg== + dependencies: + graceful-fs "^4.2.0" + jsonfile "^6.0.1" + universalify "^2.0.0" + fs-extra@^8.1.0: version "8.1.0" resolved "https://registry.yarnpkg.com/fs-extra/-/fs-extra-8.1.0.tgz#49d43c45a88cd9677668cb7be1b46efdb8d2e1c0" @@ -1335,12 +1159,12 @@ fs-extra@^9.0.0, fs-extra@^9.0.1: jsonfile "^6.0.1" universalify "^2.0.0" -fs-minipass@^2.0.0, fs-minipass@^2.1.0: - version "2.1.0" - resolved "https://registry.yarnpkg.com/fs-minipass/-/fs-minipass-2.1.0.tgz#7f5036fdbf12c63c169190cbe4199c852271f9fb" - integrity sha512-V/JgOLFCS+R6Vcq0slCuaeWEdNC3ouDlJMNIsacH2VtALiu9mV4LPrHc5cDl8k5aw6J8jwgWWpiTo5RYhmIzvg== +fs-minipass@^3.0.0: + version "3.0.3" + resolved "https://registry.yarnpkg.com/fs-minipass/-/fs-minipass-3.0.3.tgz#79a85981c4dc120065e96f62086bf6f9dc26cc54" + integrity sha512-XUBA9XClHbnJWSfBzjkm6RvPsyg3sryZt06BEQoXcF7EK/xpGaQYJgQKDJSUH5SGZ76Y7pFx1QBnXz09rU5Fbw== dependencies: - minipass "^3.0.0" + minipass "^7.0.3" fs.realpath@^1.0.0: version "1.0.0" @@ -1357,7 +1181,7 @@ get-caller-file@^2.0.5: resolved "https://registry.yarnpkg.com/get-caller-file/-/get-caller-file-2.0.5.tgz#4f94412a82db32f36e3b0b9741f8a97feb031f7e" integrity sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg== -get-intrinsic@^1.2.4, get-intrinsic@^1.2.5, get-intrinsic@^1.2.6, get-intrinsic@^1.3.0: +get-intrinsic@^1.2.4, get-intrinsic@^1.2.6, get-intrinsic@^1.3.0: version "1.3.0" resolved "https://registry.yarnpkg.com/get-intrinsic/-/get-intrinsic-1.3.0.tgz#743f0e3b6964a93a5491ed1bffaae054d7f98d01" integrity sha512-9fSjSaos/fRIVIp+xSJlE6lfwhES7LNtKaCBIamHsjr2na1BiABJPo0mOjjz8GJDURarmCPGqaiVg5mfjb98CQ== @@ -1388,14 +1212,7 @@ get-stream@^5.1.0: dependencies: pump "^3.0.0" -glob-parent@^5.1.2: - version "5.1.2" - resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-5.1.2.tgz#869832c58034fe68a4093c17dc15e8340d8401c4" - integrity sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow== - dependencies: - is-glob "^4.0.1" - -glob@^10.3.12: +glob@^10.2.2: version "10.5.0" resolved "https://registry.yarnpkg.com/glob/-/glob-10.5.0.tgz#8ec0355919cd3338c28428a23d4f24ecc5fe738c" integrity sha512-DfXN8DfhJ7NH3Oe7cFmu3NCu1wKbkReJ8TorzSAFbSKrlNaQSKfIzqYqVY8zlbs2NLBbWpRiU52GX2PbaBVNkg== @@ -1419,17 +1236,6 @@ glob@^7.1.3, glob@^7.1.6: once "^1.3.0" path-is-absolute "^1.0.0" -glob@^8.0.1, glob@^8.1.0: - version "8.1.0" - resolved "https://registry.yarnpkg.com/glob/-/glob-8.1.0.tgz#d388f656593ef708ee3e34640fdfb99a9fd1c33e" - integrity sha512-r8hpEjiQEYlF2QU0df3dS+nxxSIreXQS1qRhMJM0Q5NDdR386C7jb7Hwwod8Fgiuex+k0GFjgft18yvxm5XoCQ== - dependencies: - fs.realpath "^1.0.0" - inflight "^1.0.4" - inherits "2" - minimatch "^5.0.1" - once "^1.3.0" - global-agent@^3.0.0: version "3.0.0" resolved "https://registry.yarnpkg.com/global-agent/-/global-agent-3.0.0.tgz#ae7cd31bd3583b93c5a16437a1afe27cc33a1ab6" @@ -1450,18 +1256,6 @@ globalthis@^1.0.1: define-properties "^1.2.1" gopd "^1.0.1" -globby@^14.0.2: - version "14.1.0" - resolved "https://registry.yarnpkg.com/globby/-/globby-14.1.0.tgz#138b78e77cf5a8d794e327b15dce80bf1fb0a73e" - integrity sha512-0Ia46fDOaT7k4og1PDW4YbodWWr3scS2vAr2lTbsplOt2WkKp0vQbkI9wKis/T5LV/dqPjO3bpS/z6GTJB82LA== - dependencies: - "@sindresorhus/merge-streams" "^2.1.0" - fast-glob "^3.3.3" - ignore "^7.0.3" - path-type "^6.0.0" - slash "^5.1.0" - unicorn-magic "^0.3.0" - gopd@^1.0.1, gopd@^1.2.0: version "1.2.0" resolved "https://registry.yarnpkg.com/gopd/-/gopd-1.2.0.tgz#89f56b8217bdbc8802bd299df6d7f1081d7e51a1" @@ -1484,7 +1278,7 @@ got@^11.7.0, got@^11.8.5: p-cancelable "^2.0.0" responselike "^2.0.0" -graceful-fs@^4.1.11, graceful-fs@^4.1.6, graceful-fs@^4.2.0, graceful-fs@^4.2.6: +graceful-fs@^4.1.11, graceful-fs@^4.1.6, graceful-fs@^4.2.0, graceful-fs@^4.2.11, graceful-fs@^4.2.4, graceful-fs@^4.2.6: version "4.2.11" resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.2.11.tgz#4183e4e8bf08bb6e05bbb2f7d2e0c8f712ca40e3" integrity sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ== @@ -1527,31 +1321,11 @@ hosted-git-info@^4.1.0: dependencies: lru-cache "^6.0.0" -http-cache-semantics@^4.0.0, http-cache-semantics@^4.1.0: +http-cache-semantics@^4.0.0, http-cache-semantics@^4.1.1: version "4.2.0" resolved "https://registry.yarnpkg.com/http-cache-semantics/-/http-cache-semantics-4.2.0.tgz#205f4db64f8562b76a4ff9235aa5279839a09dd5" integrity sha512-dTxcvPXqPvXBQpq5dUr6mEMJX4oIEFv6bwom3FDwKRDsuIjjJGANqhBuoAn9c1RQJIdAKav33ED65E2ys+87QQ== -http-errors@~2.0.0, http-errors@~2.0.1: - version "2.0.1" - resolved "https://registry.yarnpkg.com/http-errors/-/http-errors-2.0.1.tgz#36d2f65bc909c8790018dd36fb4d93da6caae06b" - integrity sha512-4FbRdAX+bSdmo4AUFuS0WNiPz8NgFt+r8ThgNWmlrjQjt1Q7ZR9+zTlce2859x4KSXrwIsaeTqDoKQmtP8pLmQ== - dependencies: - depd "~2.0.0" - inherits "~2.0.4" - setprototypeof "~1.2.0" - statuses "~2.0.2" - toidentifier "~1.0.1" - -http-proxy-agent@^5.0.0: - version "5.0.0" - resolved "https://registry.yarnpkg.com/http-proxy-agent/-/http-proxy-agent-5.0.0.tgz#5129800203520d434f142bc78ff3c170800f2b43" - integrity sha512-n2hY8YdoRE1i7r6M0w9DIw5GgZN0G25P8zLCRQ8rjXtTU3vsNFBI/vWK/UIeE6g5MUUz6avwAPXmL6Fy9D/90w== - dependencies: - "@tootallnate/once" "2" - agent-base "6" - debug "4" - http-proxy-agent@^7.0.0: version "7.0.2" resolved "https://registry.yarnpkg.com/http-proxy-agent/-/http-proxy-agent-7.0.2.tgz#9a8b1f246866c028509486585f62b8f2c18c270e" @@ -1568,15 +1342,7 @@ http2-wrapper@^1.0.0-beta.5.2: quick-lru "^5.1.1" resolve-alpn "^1.0.0" -https-proxy-agent@^5.0.0: - version "5.0.1" - resolved "https://registry.yarnpkg.com/https-proxy-agent/-/https-proxy-agent-5.0.1.tgz#c59ef224a04fe8b754f3db0063a25ea30d0005d6" - integrity sha512-dFcAjpTQFgoLMzC2VwU+C/CbS7uRL0lWmxDITmqm7C+7F0Odmj6s9l6alZc6AELXhrnggM2CeWSXHGOdX2YtwA== - dependencies: - agent-base "6" - debug "4" - -https-proxy-agent@^7.0.0: +https-proxy-agent@^7.0.0, https-proxy-agent@^7.0.1: version "7.0.6" resolved "https://registry.yarnpkg.com/https-proxy-agent/-/https-proxy-agent-7.0.6.tgz#da8dfeac7da130b05c2ba4b59c9b6cd66611a6b9" integrity sha512-vK9P5/iUfdl95AI+JVyUuIcVtd4ofvtrOr3HNtM2yxC9bnMbEdp3x01OhQNnjb8IJYi38VlTE3mBXwcfvywuSw== @@ -1584,13 +1350,6 @@ https-proxy-agent@^7.0.0: agent-base "^7.1.2" debug "4" -humanize-ms@^1.2.1: - version "1.2.1" - resolved "https://registry.yarnpkg.com/humanize-ms/-/humanize-ms-1.2.1.tgz#c46e3159a293f6b896da29316d8b6fe8bb79bbed" - integrity sha512-Fl70vYtsAFb/C06PTS9dZBo7ihau+Tu/DNCk/OyHhea07S+aeMWpFFkUaXRa8fI+ScZbEI8dfSxwY7gxZ9SAVQ== - dependencies: - ms "^2.0.0" - iconv-corefoundation@^1.1.7: version "1.1.7" resolved "https://registry.yarnpkg.com/iconv-corefoundation/-/iconv-corefoundation-1.1.7.tgz#31065e6ab2c9272154c8b0821151e2c88f1b002a" @@ -1606,38 +1365,16 @@ iconv-lite@^0.6.2: dependencies: safer-buffer ">= 2.1.2 < 3.0.0" -iconv-lite@~0.4.24: - version "0.4.24" - resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.24.tgz#2022b4b25fbddc21d2f524974a474aafe733908b" - integrity sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA== - dependencies: - safer-buffer ">= 2.1.2 < 3" - ieee754@^1.1.13: version "1.2.1" resolved "https://registry.yarnpkg.com/ieee754/-/ieee754-1.2.1.tgz#8eb7a10a63fff25d15a57b001586d177d1b0d352" integrity sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA== -ignore@^7.0.3: - version "7.0.5" - resolved "https://registry.yarnpkg.com/ignore/-/ignore-7.0.5.tgz#4cb5f6cd7d4c7ab0365738c7aea888baa6d7efd9" - integrity sha512-Hs59xBNfUIunMFgWAbGX5cq6893IbWg4KnrjbYwX3tx0ztorVgTDA6B2sxf8ejHJ4wz8BqGUMYlnzNBer5NvGg== - imurmurhash@^0.1.4: version "0.1.4" resolved "https://registry.yarnpkg.com/imurmurhash/-/imurmurhash-0.1.4.tgz#9218b9b2b928a238b13dc4fb6b6d576f231453ea" integrity sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA== -indent-string@^4.0.0: - version "4.0.0" - resolved "https://registry.yarnpkg.com/indent-string/-/indent-string-4.0.0.tgz#624f8f4497d619b2d9768531d58f4122854d7251" - integrity sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg== - -infer-owner@^1.0.4: - version "1.0.4" - resolved "https://registry.yarnpkg.com/infer-owner/-/infer-owner-1.0.4.tgz#c4cefcaa8e51051c2a40ba2ce8a3d27295af9467" - integrity sha512-IClj+Xz94+d7irH5qRyfJonOdfTzuDaifE6ZPWfx0N0+/ATZCbuTPq2prFl526urkQd90WyUKIh1DfBQ2hMz9A== - inflight@^1.0.4: version "1.0.6" resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9" @@ -1646,7 +1383,7 @@ inflight@^1.0.4: once "^1.3.0" wrappy "1" -inherits@2, inherits@^2.0.3, inherits@^2.0.4, inherits@~2.0.4: +inherits@2, inherits@^2.0.3, inherits@^2.0.4: version "2.0.4" resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.4.tgz#0fa2c64f932917c3433a0ded55363aae37416b7c" integrity sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ== @@ -1656,65 +1393,26 @@ ip-address@^10.0.1: resolved "https://registry.yarnpkg.com/ip-address/-/ip-address-10.1.0.tgz#d8dcffb34d0e02eb241427444a6e23f5b0595aa4" integrity sha512-XXADHxXmvT9+CRxhXg56LJovE+bmWnEWB78LB83VZTprKTmaC5QfruXocxzTZ2Kl0DNwKuBdlIhjL8LeY8Sf8Q== -ipaddr.js@1.9.1: - version "1.9.1" - resolved "https://registry.yarnpkg.com/ipaddr.js/-/ipaddr.js-1.9.1.tgz#bff38543eeb8984825079ff3a2a8e6cbd46781b3" - integrity sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g== - -is-ci@^3.0.0: - version "3.0.1" - resolved "https://registry.yarnpkg.com/is-ci/-/is-ci-3.0.1.tgz#db6ecbed1bd659c43dac0f45661e7674103d1867" - integrity sha512-ZYvCgrefwqoQ6yTyYUbQu64HsITZ3NfKX1lzaEYdkTDcfKzzCI/wthRRYKkdjHKFVgNiXKAKm65Zo1pk2as/QQ== - dependencies: - ci-info "^3.2.0" - is-docker@^2.0.0: version "2.2.1" resolved "https://registry.yarnpkg.com/is-docker/-/is-docker-2.2.1.tgz#33eeabe23cfe86f14bde4408a02c0cfb853acdaa" integrity sha512-F+i2BKsFrH66iaUFc0woD8sLy8getkwTwtOBjvs56Cx4CgJDeKQeqfz8wAYiSb8JOprWhHH5p77PbmYCvvUuXQ== -is-extglob@^2.1.1: - version "2.1.1" - resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-2.1.1.tgz#a88c02535791f02ed37c76a1b9ea9773c833f8c2" - integrity sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ== - is-fullwidth-code-point@^3.0.0: version "3.0.0" resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz#f116f8064fe90b3f7844a38997c0b75051269f1d" integrity sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg== -is-glob@^4.0.1, is-glob@^4.0.3: - version "4.0.3" - resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-4.0.3.tgz#64f61e42cbbb2eec2071a9dac0b28ba1e65d5084" - integrity sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg== - dependencies: - is-extglob "^2.1.1" - is-interactive@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/is-interactive/-/is-interactive-1.0.0.tgz#cea6e6ae5c870a7b0a0004070b7b587e0252912e" integrity sha512-2HvIEKRoqS62guEC+qBjpvRubdX910WCMuJTZ+I9yvqKU2/12eSL549HMwtabb4oupdj2sMP50k+XJfB/8JE6w== -is-lambda@^1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/is-lambda/-/is-lambda-1.0.1.tgz#3d9877899e6a53efc0160504cde15f82e6f061d5" - integrity sha512-z7CMFGNrENq5iFB9Bqo64Xk6Y9sg+epq1myIcdHaGnbMTYOxvzsEtdYqQUylB7LxfkvgrrjP32T6Ywciio9UIQ== - is-number@^7.0.0: version "7.0.0" resolved "https://registry.yarnpkg.com/is-number/-/is-number-7.0.0.tgz#7535345b896734d5f80c4d06c50955527a14f12b" integrity sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng== -is-path-cwd@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/is-path-cwd/-/is-path-cwd-3.0.0.tgz#889b41e55c8588b1eb2a96a61d05740a674521c7" - integrity sha512-kyiNFFLU0Ampr6SDZitD/DwUo4Zs1nSdnygUBqsu3LooL00Qvb5j+UnvApUn/TTj1J3OuE6BTdQ5rudKmU2ZaA== - -is-path-inside@^4.0.0: - version "4.0.0" - resolved "https://registry.yarnpkg.com/is-path-inside/-/is-path-inside-4.0.0.tgz#805aeb62c47c1b12fc3fd13bfb3ed1e7430071db" - integrity sha512-lJJV/5dYS+RcL8uQdBDW9c9uWFLLBNRyFhnAKXw5tVqLlKZ4RMGZKv+YQ/IA3OhD+RpbJa1LLFM1FQPGyIXvOA== - is-unicode-supported@^0.1.0: version "0.1.0" resolved "https://registry.yarnpkg.com/is-unicode-supported/-/is-unicode-supported-0.1.0.tgz#3f26c76a809593b52bfa2ecb5710ed2779b522a7" @@ -1747,6 +1445,11 @@ isexe@^2.0.0: resolved "https://registry.yarnpkg.com/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10" integrity sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw== +isexe@^3.1.1: + version "3.1.5" + resolved "https://registry.yarnpkg.com/isexe/-/isexe-3.1.5.tgz#42e368f68d5e10dadfee4fda7b550bc2d8892dc9" + integrity sha512-6B3tLtFqtQS4ekarvLVMZ+X+VlvQekbe4taUkf/rhVO3d/h0M2rfARm/pXLcPEsjjMsFgrFgSrhQIxcSVrBz8w== + jackspeak@^3.1.2: version "3.4.3" resolved "https://registry.yarnpkg.com/jackspeak/-/jackspeak-3.4.3.tgz#8833a9d89ab4acde6188942bd1c53b6390ed5a8a" @@ -1765,6 +1468,11 @@ jake@^10.8.5: filelist "^1.0.4" picocolors "^1.1.1" +jiti@^2.4.2: + version "2.6.1" + resolved "https://registry.yarnpkg.com/jiti/-/jiti-2.6.1.tgz#178ef2fc9a1a594248c20627cd820187a4d78d92" + integrity sha512-ekilCSN1jwRvIbgeg/57YFh8qQDNbwDb9xT/qu2DAHbFFZUicIl4ygVaAvzveMhMVr3LnpSKTNnwt8PoOfmKhQ== + js-yaml@^4.1.0: version "4.1.1" resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-4.1.1.tgz#854c292467705b699476e1a2decc0c8a3458806b" @@ -1854,9 +1562,9 @@ lodash.isequal@^4.5.0: integrity sha512-pDo3lu8Jhfjqls6GkMgpahsF9kCyayhgykjyLMNFTKWrpVdAQtYyB4muAMWozBB4ig/dtWAmsMxLEI8wuz+DYQ== lodash@^4.17.15: - version "4.17.21" - resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.21.tgz#679591c564c3bffaae8454cf0b3df370c3d6911c" - integrity sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg== + version "4.17.23" + resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.23.tgz#f113b0378386103be4f6893388c73d0bde7f2c5a" + integrity sha512-LgVTMpQtIopCi79SJeDiP0TfWi5CNEc/L/aRdTh3yIvmZXTnheWpKjSZhnvMl8iXbC1tFg9gdHHDMLoV7CnG+w== log-symbols@^4.1.0: version "4.1.0" @@ -1871,7 +1579,7 @@ lowercase-keys@^2.0.0: resolved "https://registry.yarnpkg.com/lowercase-keys/-/lowercase-keys-2.0.0.tgz#2603e78b7b4b0006cbca2fbcc8a3202558ac9479" integrity sha512-tqNXrS78oMOE73NMxK4EMLQsQowWf8jKooH9g7xPavRT706R6bkQJ6DY2Te7QukaZsulxa30wQ7bk0pm4XiHmA== -lru-cache@^10.2.0: +lru-cache@^10.0.1, lru-cache@^10.2.0: version "10.4.3" resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-10.4.3.tgz#410fc8a17b70e598013df257c2446b7f3383f119" integrity sha512-JNAzZcXrCt42VGLuYz0zfAzDfAvJWW6AfYlDBQyDV5DClI2m5sAmK+OIO7s59XfsRsWHp02jAJrRadPRGTt6SQ== @@ -1883,32 +1591,22 @@ lru-cache@^6.0.0: dependencies: yallist "^4.0.0" -lru-cache@^7.7.1: - version "7.18.3" - resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-7.18.3.tgz#f793896e0fd0e954a59dfdd82f0773808df6aa89" - integrity sha512-jumlc0BIUrS3qJGgIkWZsyfAM7NCWiBcCDhnd+3NNM5KbBmLTgHVfWBcg6W+rLUsIpzpERPsvwUP7CckAQSOoA== - -make-fetch-happen@^10.2.1: - version "10.2.1" - resolved "https://registry.yarnpkg.com/make-fetch-happen/-/make-fetch-happen-10.2.1.tgz#f5e3835c5e9817b617f2770870d9492d28678164" - integrity sha512-NgOPbRiaQM10DYXvN3/hhGVI2M5MtITFryzBGxHM5p4wnFxsVCbxkrBrDsk+EZ5OB4jEOT7AjDxtdF+KVEFT7w== - dependencies: - agentkeepalive "^4.2.1" - cacache "^16.1.0" - http-cache-semantics "^4.1.0" - http-proxy-agent "^5.0.0" - https-proxy-agent "^5.0.0" - is-lambda "^1.0.1" - lru-cache "^7.7.1" - minipass "^3.1.6" - minipass-collect "^1.0.2" - minipass-fetch "^2.0.3" +make-fetch-happen@^14.0.3: + version "14.0.3" + resolved "https://registry.yarnpkg.com/make-fetch-happen/-/make-fetch-happen-14.0.3.tgz#d74c3ecb0028f08ab604011e0bc6baed483fcdcd" + integrity sha512-QMjGbFTP0blj97EeidG5hk/QhKQ3T4ICckQGLgz38QF7Vgbk6e6FTARN8KhKxyBbWn8R0HU+bnw8aSoFPD4qtQ== + dependencies: + "@npmcli/agent" "^3.0.0" + cacache "^19.0.1" + http-cache-semantics "^4.1.1" + minipass "^7.0.2" + minipass-fetch "^4.0.0" minipass-flush "^1.0.5" minipass-pipeline "^1.2.4" - negotiator "^0.6.3" + negotiator "^1.0.0" + proc-log "^5.0.0" promise-retry "^2.0.1" - socks-proxy-agent "^7.0.0" - ssri "^9.0.0" + ssri "^12.0.0" matcher@^3.0.0: version "3.0.0" @@ -1922,32 +1620,17 @@ math-intrinsics@^1.1.0: resolved "https://registry.yarnpkg.com/math-intrinsics/-/math-intrinsics-1.1.0.tgz#a0dd74be81e2aa5c2f27e65ce283605ee4e2b7f9" integrity sha512-/IXtbwEk5HTPyEwyKX6hGkYXxM9nbj64B+ilVJnC/R6B0pH5G4V3b0pVbL7DBj4tkhBAppbQUlf6F6Xl9LHu1g== -media-typer@0.3.0: - version "0.3.0" - resolved "https://registry.yarnpkg.com/media-typer/-/media-typer-0.3.0.tgz#8710d7af0aa626f8fffa1ce00168545263255748" - integrity sha512-dq+qelQ9akHpcOl/gUVRTxVIOkAJ1wR3QAvb4RsVjS8oVoFjDGTc679wJYmUmknUF5HwMLOgb5O+a3KxfWapPQ== - -meow@^13.2.0: - version "13.2.0" - resolved "https://registry.yarnpkg.com/meow/-/meow-13.2.0.tgz#6b7d63f913f984063b3cc261b6e8800c4cd3474f" - integrity sha512-pxQJQzB6djGPXh08dacEloMFopsOqGVRKFPYvPOt9XDZ1HasbgDZA74CJGreSU4G3Ak7EFJGoiH2auq+yXISgA== +merge-descriptors@0.0.2: + version "0.0.2" + resolved "https://registry.yarnpkg.com/merge-descriptors/-/merge-descriptors-0.0.2.tgz#c36a52a781437513c57275f39dd9d317514ac8c7" + integrity sha512-dYBT4Ep+t/qnPeJcnMymmhTdd4g8/hn48ciaDqLAkfRf8abzLPS6Rb6EBdz5CZCL8tzZuI5ps9MhGQGxk+EuKg== -merge-descriptors@1.0.3: - version "1.0.3" - resolved "https://registry.yarnpkg.com/merge-descriptors/-/merge-descriptors-1.0.3.tgz#d80319a65f3c7935351e5cfdac8f9318504dbed5" - integrity sha512-gaNvAS7TZ897/rVaZ0nMtAyxNyi/pdbjbAwUpFQpN70GqnVfOiXpeUUMKRBmzXaSQ8DdTX4/0ms62r2K+hE6mQ== - -merge2@^1.3.0: - version "1.4.1" - resolved "https://registry.yarnpkg.com/merge2/-/merge2-1.4.1.tgz#4368892f885e907455a6fd7dc55c0c9d404990ae" - integrity sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg== - -methods@~1.1.2: - version "1.1.2" - resolved "https://registry.yarnpkg.com/methods/-/methods-1.1.2.tgz#5529a4d67654134edcc5266656835b0f851afcee" - integrity sha512-iclAHeNqNm68zFtnZ0e+1L2yUIdvzNoauKU4WBA3VvH/vPFieF7qfRlwUZU+DA9P9bPXIS90ulxoUoCH23sV2w== +methods@0.1.0: + version "0.1.0" + resolved "https://registry.yarnpkg.com/methods/-/methods-0.1.0.tgz#335d429eefd21b7bacf2e9c922a8d2bd14a30e4f" + integrity sha512-N4cn4CbDqu7Fp3AT4z3AsO19calgczhsmCGzXLCiUOrWg9sjb1B+yKFKOrnnPGKKvjyJBmw+k6b3adFN2LbuBw== -micromatch@^4.0.2, micromatch@^4.0.8: +micromatch@^4.0.2: version "4.0.8" resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-4.0.8.tgz#d66fa18f3a47076789320b9b1af32bd86d9fa202" integrity sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA== @@ -1960,23 +1643,23 @@ mime-db@1.52.0: resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.52.0.tgz#bbabcdc02859f4987301c856e3387ce5ec43bf70" integrity sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg== -mime-types@^2.1.12, mime-types@~2.1.24, mime-types@~2.1.34: +mime-types@^2.1.12: version "2.1.35" resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.35.tgz#381a871b62a734450660ae3deee44813f70d959a" integrity sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw== dependencies: mime-db "1.52.0" -mime@1.6.0: - version "1.6.0" - resolved "https://registry.yarnpkg.com/mime/-/mime-1.6.0.tgz#32cd9e5c64553bd58d19a568af452acff04981b1" - integrity sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg== - mime@^2.5.2: version "2.6.0" resolved "https://registry.yarnpkg.com/mime/-/mime-2.6.0.tgz#a2a682a95cd4d0cb1d6257e28f83da7e35800367" integrity sha512-USPkMeET31rOMiarsBNIHZKLGgvKc/LrjofAnBlOttf5ajRvqiRA8QsenbcooctK6d6Ts6aqZXBA+XbkKthiQg== +mime@~1.2.11, mime@~1.2.9: + version "1.2.11" + resolved "https://registry.yarnpkg.com/mime/-/mime-1.2.11.tgz#58203eed86e3a5ef17aed2b7d9ebd47f0a60dd10" + integrity sha512-Ysa2F/nqTNGHhhm9MV8ure4+Hc+Y8AWiqUdHxsO7xu8zc92ND9f3kpALHjaP026Ft17UfxrMt95c50PLUeynBw== + mimic-fn@^2.1.0: version "2.1.0" resolved "https://registry.yarnpkg.com/mimic-fn/-/mimic-fn-2.1.0.tgz#7ed2c2ccccaf84d3ffcb7a69b57711fc2083401b" @@ -1992,54 +1675,54 @@ mimic-response@^3.1.0: resolved "https://registry.yarnpkg.com/mimic-response/-/mimic-response-3.1.0.tgz#2d1d59af9c1b129815accc2c46a022a5ce1fa3c9" integrity sha512-z0yWI+4FDrrweS8Zmt4Ej5HdJmky15+L2e6Wgn3+iK5fWzb6T3fhNFq2+MeTRb064c6Wr4N/wv0DzQTjNzHNGQ== -minimatch@^10.0.0: - version "10.1.1" - resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-10.1.1.tgz#e6e61b9b0c1dcab116b5a7d1458e8b6ae9e73a55" - integrity sha512-enIvLvRAFZYXJzkCYG5RKmPfrFArdLv+R+lbQ53BmIMLIry74bjKzX6iHAm8WYamJkhSSEabrWN5D97XnKObjQ== +minimatch@^10.0.3: + version "10.2.4" + resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-10.2.4.tgz#465b3accbd0218b8281f5301e27cedc697f96fde" + integrity sha512-oRjTw/97aTBN0RHbYCdtF1MQfvusSIBQM0IZEgzl6426+8jSC0nF1a/GmnVLpfB9yyr6g6FTqWqiZVbxrtaCIg== dependencies: - "@isaacs/brace-expansion" "^5.0.0" + brace-expansion "^5.0.2" minimatch@^3.0.4, minimatch@^3.0.5, minimatch@^3.1.1: - version "3.1.2" - resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.1.2.tgz#19cd194bfd3e428f049a70817c038d89ab4be35b" - integrity sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw== + version "3.1.5" + resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.1.5.tgz#580c88f8d5445f2bd6aa8f3cadefa0de79fbd69e" + integrity sha512-VgjWUsnnT6n+NUk6eZq77zeFdpW2LWDzP6zFGrCbHXiYNul5Dzqk2HHQ5uFH2DNW5Xbp8+jVzaeNt94ssEEl4w== dependencies: brace-expansion "^1.1.7" minimatch@^5.0.1: - version "5.1.6" - resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-5.1.6.tgz#1cfcb8cf5522ea69952cd2af95ae09477f122a96" - integrity sha512-lKwV/1brpG6mBUFHtb7NUmtABCb2WZZmm2wNiOA5hAb8VdCS4B3dtMWyvcoViccwAW/COERjXLt0zP1zXUN26g== + version "5.1.9" + resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-5.1.9.tgz#1293ef15db0098b394540e8f9f744f9fda8dee4b" + integrity sha512-7o1wEA2RyMP7Iu7GNba9vc0RWWGACJOCZBJX2GJWip0ikV+wcOsgVuY9uE8CPiyQhkGFSlhuSkZPavN7u1c2Fw== dependencies: brace-expansion "^2.0.1" minimatch@^9.0.3, minimatch@^9.0.4: - version "9.0.5" - resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-9.0.5.tgz#d74f9dd6b57d83d8e98cfb82133b03978bc929e5" - integrity sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow== + version "9.0.9" + resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-9.0.9.tgz#9b0cb9fcb78087f6fd7eababe2511c4d3d60574e" + integrity sha512-OBwBN9AL4dqmETlpS2zasx+vTeWclWzkblfZk7KTA5j3jeOONz/tRCnZomUyvNg83wL5Zv9Ss6HMJXAgL8R2Yg== dependencies: - brace-expansion "^2.0.1" + brace-expansion "^2.0.2" minimist@^1.2.5, minimist@^1.2.6: version "1.2.8" resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.8.tgz#c1a464e7693302e082a075cee0c057741ac4772c" integrity sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA== -minipass-collect@^1.0.2: - version "1.0.2" - resolved "https://registry.yarnpkg.com/minipass-collect/-/minipass-collect-1.0.2.tgz#22b813bf745dc6edba2576b940022ad6edc8c617" - integrity sha512-6T6lH0H8OG9kITm/Jm6tdooIbogG9e0tLgpY6mphXSm/A9u8Nq1ryBG+Qspiub9LjWlBPsPS3tWQ/Botq4FdxA== +minipass-collect@^2.0.1: + version "2.0.1" + resolved "https://registry.yarnpkg.com/minipass-collect/-/minipass-collect-2.0.1.tgz#1621bc77e12258a12c60d34e2276ec5c20680863" + integrity sha512-D7V8PO9oaz7PWGLbCACuI1qEOsq7UKfLotx/C0Aet43fCUB/wfQ7DYeq2oR/svFJGYDHPr38SHATeaj/ZoKHKw== dependencies: - minipass "^3.0.0" + minipass "^7.0.3" -minipass-fetch@^2.0.3: - version "2.1.2" - resolved "https://registry.yarnpkg.com/minipass-fetch/-/minipass-fetch-2.1.2.tgz#95560b50c472d81a3bc76f20ede80eaed76d8add" - integrity sha512-LT49Zi2/WMROHYoqGgdlQIZh8mLPZmOrN2NdJjMXxYe4nkN6FUyuPuOAOedNJDrx0IRGg9+4guZewtp8hE6TxA== +minipass-fetch@^4.0.0: + version "4.0.1" + resolved "https://registry.yarnpkg.com/minipass-fetch/-/minipass-fetch-4.0.1.tgz#f2d717d5a418ad0b1a7274f9b913515d3e78f9e5" + integrity sha512-j7U11C5HXigVuutxebFadoYBbd7VSdZWggSe64NVdvWNBqGAiXPL2QVCehjmw7lY1oF9gOllYbORh+hiNgfPgQ== dependencies: - minipass "^3.1.6" + minipass "^7.0.3" minipass-sized "^1.0.3" - minizlib "^2.1.2" + minizlib "^3.0.1" optionalDependencies: encoding "^0.1.13" @@ -2064,104 +1747,92 @@ minipass-sized@^1.0.3: dependencies: minipass "^3.0.0" -minipass@^3.0.0, minipass@^3.1.1, minipass@^3.1.6: +minipass@^3.0.0: version "3.3.6" resolved "https://registry.yarnpkg.com/minipass/-/minipass-3.3.6.tgz#7bba384db3a1520d18c9c0e5251c3444e95dd94a" integrity sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw== dependencies: yallist "^4.0.0" -minipass@^5.0.0: - version "5.0.0" - resolved "https://registry.yarnpkg.com/minipass/-/minipass-5.0.0.tgz#3e9788ffb90b694a5d0ec94479a45b5d8738133d" - integrity sha512-3FnjYuehv9k6ovOEbyOswadCDPX1piCfhV8ncmYtHOjuPwylVWsghTLo7rabjC3Rx5xD4HDx8Wm1xnMF7S5qFQ== - -"minipass@^5.0.0 || ^6.0.2 || ^7.0.0", minipass@^7.1.2: - version "7.1.2" - resolved "https://registry.yarnpkg.com/minipass/-/minipass-7.1.2.tgz#93a9626ce5e5e66bd4db86849e7515e92340a707" - integrity sha512-qOOzS1cBTWYF4BH8fVePDBOO9iptMnGUEZwNc/cMWnTV2nVLZ7VoNWEPHkYczZA0pdoA7dl6e7FL659nX9S2aw== +"minipass@^5.0.0 || ^6.0.2 || ^7.0.0", minipass@^7.0.2, minipass@^7.0.3, minipass@^7.0.4, minipass@^7.1.2: + version "7.1.3" + resolved "https://registry.yarnpkg.com/minipass/-/minipass-7.1.3.tgz#79389b4eb1bb2d003a9bba87d492f2bd37bdc65b" + integrity sha512-tEBHqDnIoM/1rXME1zgka9g6Q2lcoCkxHLuc7ODJ5BxbP5d4c2Z5cGgtXAku59200Cx7diuHTOYfSBD8n6mm8A== -minizlib@^2.1.1, minizlib@^2.1.2: - version "2.1.2" - resolved "https://registry.yarnpkg.com/minizlib/-/minizlib-2.1.2.tgz#e90d3466ba209b932451508a11ce3d3632145931" - integrity sha512-bAxsR8BVfj60DWXHE3u30oHzfl4G7khkSuPW+qvpd7jFRHm7dLxOjUk1EHACJ/hxLY8phGJ0YhYHZo7jil7Qdg== +minizlib@^3.0.1, minizlib@^3.1.0: + version "3.1.0" + resolved "https://registry.yarnpkg.com/minizlib/-/minizlib-3.1.0.tgz#6ad76c3a8f10227c9b51d1c9ac8e30b27f5a251c" + integrity sha512-KZxYo1BUkWD2TVFLr0MQoM8vUUigWD3LlD83a/75BqC+4qE0Hb1Vo5v1FgcfaNXvfXzr+5EhQ6ing/CaBijTlw== dependencies: - minipass "^3.0.0" - yallist "^4.0.0" - -mkdirp@^1.0.3, mkdirp@^1.0.4: - version "1.0.4" - resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-1.0.4.tgz#3eb5ed62622756d79a5f0e2a221dfebad75c2f7e" - integrity sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw== - -ms@2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/ms/-/ms-2.0.0.tgz#5608aeadfc00be6c2901df5f9861788de0d597c8" - integrity sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A== + minipass "^7.1.2" -ms@2.1.3, ms@^2.0.0, ms@^2.1.3: +ms@^2.1.3: version "2.1.3" resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.3.tgz#574c8138ce1d2b5861f0b44579dbadd60c6615b2" integrity sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA== -negotiator@0.6.3: - version "0.6.3" - resolved "https://registry.yarnpkg.com/negotiator/-/negotiator-0.6.3.tgz#58e323a72fedc0d6f9cd4d31fe49f51479590ccd" - integrity sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg== +negotiator@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/negotiator/-/negotiator-1.0.0.tgz#b6c91bb47172d69f93cfd7c357bbb529019b5f6a" + integrity sha512-8Ofs/AUQh8MaEcrlq5xOX0CQ9ypTF5dl78mjlMNfOK08fzpgTHQRQPBxcPlEtIw0yRpws+Zo/3r+5WRby7u3Gg== -negotiator@^0.6.3: - version "0.6.4" - resolved "https://registry.yarnpkg.com/negotiator/-/negotiator-0.6.4.tgz#777948e2452651c570b712dd01c23e262713fff7" - integrity sha512-myRT3DiWPHqho5PrJaIRyaMv2kgYf0mUVgBNOYMuCH5Ki1yEiQaf/ZJuQ62nvpc44wL5WDbTX7yGJi1Neevw8w== +negotiator@~0.3.0: + version "0.3.0" + resolved "https://registry.yarnpkg.com/negotiator/-/negotiator-0.3.0.tgz#706d692efeddf574d57ea9fb1ab89a4fa7ee8f60" + integrity sha512-q9wF64uB31BDZQ44DWf+8gE7y8xSpBdREAsJfnBO2WX9ecsutfUO6S9uWEdixlDLOlWaqnlnFXXwZxUUmyLfgg== -node-abi@^3.45.0: - version "3.85.0" - resolved "https://registry.yarnpkg.com/node-abi/-/node-abi-3.85.0.tgz#b115d575e52b2495ef08372b058e13d202875a7d" - integrity sha512-zsFhmbkAzwhTft6nd3VxcG0cvJsT70rL+BIGHWVq5fi6MwGrHwzqKaxXE+Hl2GmnGItnDKPPkO5/LQqjVkIdFg== +node-abi@^4.2.0: + version "4.26.0" + resolved "https://registry.yarnpkg.com/node-abi/-/node-abi-4.26.0.tgz#7068474b3a945c08372995d823b71053e3ed85af" + integrity sha512-8QwIZqikRvDIkXS2S93LjzhsSPJuIbfaMETWH+Bx8oOT9Sa9UsUtBFQlc3gBNd1+QINjaTloitXr1W3dQLi9Iw== dependencies: - semver "^7.3.5" + semver "^7.6.3" node-addon-api@^1.6.3: version "1.7.2" resolved "https://registry.yarnpkg.com/node-addon-api/-/node-addon-api-1.7.2.tgz#3df30b95720b53c24e59948b49532b662444f54d" integrity sha512-ibPK3iA+vaY1eEjESkQkM0BbCqFOaZMiXRTtdB0u7b4djtY6JnsjvPdUHVMg6xQt3B8fpTTWHI9A+ADjM9frzg== -node-api-version@^0.2.0: +node-api-version@^0.2.1: version "0.2.1" resolved "https://registry.yarnpkg.com/node-api-version/-/node-api-version-0.2.1.tgz#19bad54f6d65628cbee4e607a325e4488ace2de9" integrity sha512-2xP/IGGMmmSQpI1+O/k72jF/ykvZ89JeuKX3TLJAYPDVLUalrshrLHkeVcCCZqG/eEa635cr8IBYzgnDvM2O8Q== dependencies: semver "^7.3.5" -nopt@^6.0.0: - version "6.0.0" - resolved "https://registry.yarnpkg.com/nopt/-/nopt-6.0.0.tgz#245801d8ebf409c6df22ab9d95b65e1309cdb16d" - integrity sha512-ZwLpbTgdhuZUnZzjd7nb1ZV+4DoiC6/sfiVKok72ym/4Tlf+DFdlHYmT2JPmcNNWV6Pi3SDf1kT+A4r9RTuT9g== +node-gyp@^11.2.0: + version "11.5.0" + resolved "https://registry.yarnpkg.com/node-gyp/-/node-gyp-11.5.0.tgz#82661b5f40647a7361efe918e3cea76d297fcc56" + integrity sha512-ra7Kvlhxn5V9Slyus0ygMa2h+UqExPqUIkfk7Pc8QTLT956JLSy51uWFwHtIYy0vI8cB4BDhc/S03+880My/LQ== + dependencies: + env-paths "^2.2.0" + exponential-backoff "^3.1.1" + graceful-fs "^4.2.6" + make-fetch-happen "^14.0.3" + nopt "^8.0.0" + proc-log "^5.0.0" + semver "^7.3.5" + tar "^7.4.3" + tinyglobby "^0.2.12" + which "^5.0.0" + +nopt@^8.0.0: + version "8.1.0" + resolved "https://registry.yarnpkg.com/nopt/-/nopt-8.1.0.tgz#b11d38caf0f8643ce885818518064127f602eae3" + integrity sha512-ieGu42u/Qsa4TFktmaKEwM6MQH0pOWnaB3htzh0JRtx84+Mebc0cbZYN5bC+6WTZ4+77xrL9Pn5m7CV6VIkV7A== dependencies: - abbrev "^1.0.0" + abbrev "^3.0.0" normalize-url@^6.0.1: version "6.1.0" resolved "https://registry.yarnpkg.com/normalize-url/-/normalize-url-6.1.0.tgz#40d0885b535deffe3f3147bec877d05fe4c5668a" integrity sha512-DlL+XwOy3NxAQ8xuC0okPgK46iuVNAK01YN7RueYBqqFeGsBjV9XmCAzAdgt+667bCl5kPh9EqKKDwnaPG1I7A== -object-inspect@^1.13.3: - version "1.13.4" - resolved "https://registry.yarnpkg.com/object-inspect/-/object-inspect-1.13.4.tgz#8375265e21bc20d0fa582c22e1b13485d6e00213" - integrity sha512-W67iLl4J2EXEGTbfeHCffrjDfitvLANg0UlX3wFUUSTx92KXRFegMHUVgSqE+wvhAbi4WqjGg9czysTV2Epbew== - object-keys@^1.1.1: version "1.1.1" resolved "https://registry.yarnpkg.com/object-keys/-/object-keys-1.1.1.tgz#1c47f272df277f3b1daf061677d9c82e2322c60e" integrity sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA== -on-finished@~2.4.1: - version "2.4.1" - resolved "https://registry.yarnpkg.com/on-finished/-/on-finished-2.4.1.tgz#58c8c44116e54845ad57f14ab10b03533184ac3f" - integrity sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg== - dependencies: - ee-first "1.1.1" - once@^1.3.0, once@^1.3.1, once@^1.4.0: version "1.4.0" resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1" @@ -2199,6 +1870,11 @@ ora@^5.1.0: strip-ansi "^6.0.0" wcwidth "^1.0.1" +os-tmpdir@~1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/os-tmpdir/-/os-tmpdir-1.0.2.tgz#bbe67406c79aa85c5cfec766fe5734555dfa1274" + integrity sha512-D2FR03Vir7FIu45XBY20mTb+/ZSWB00sjU9jdQXt83gDrI4Ztz5Fs7/yy74g2N5SVQY4xY1qDr4rNddwYRVX0g== + p-cancelable@^2.0.0: version "2.1.1" resolved "https://registry.yarnpkg.com/p-cancelable/-/p-cancelable-2.1.1.tgz#aab7fbd416582fa32a3db49859c122487c5ed2cf" @@ -2211,13 +1887,6 @@ p-cancelable@^2.0.0: dependencies: yocto-queue "^0.1.0" -p-map@^4.0.0: - version "4.0.0" - resolved "https://registry.yarnpkg.com/p-map/-/p-map-4.0.0.tgz#bb2f95a5eda2ec168ec9274e06a747c3e2904d2b" - integrity sha512-/bjOqmgETBYB5BoEeGVea8dmvHb2m9GLy1E9W43yeyfP6QQCZGFNa+XRceJEuDB6zqr+gKpIAmlLebMpykw/MQ== - dependencies: - aggregate-error "^3.0.0" - p-map@^7.0.2: version "7.0.4" resolved "https://registry.yarnpkg.com/p-map/-/p-map-7.0.4.tgz#b81814255f542e252d5729dca4d66e5ec14935b8" @@ -2228,29 +1897,30 @@ package-json-from-dist@^1.0.0: resolved "https://registry.yarnpkg.com/package-json-from-dist/-/package-json-from-dist-1.0.1.tgz#4f1471a010827a86f94cfd9b0727e36d267de505" integrity sha512-UEZIS3/by4OC8vL3P2dTXRETpebLI2NiI5vIrjaD/5UtrkFX/tNbwjTSRAGC/+7CAo2pIcBaRgWmcBBHcsaCIw== -parseurl@~1.3.3: - version "1.3.3" - resolved "https://registry.yarnpkg.com/parseurl/-/parseurl-1.3.3.tgz#9da19e7bee8d12dff0513ed5b76957793bc2e8d4" - integrity sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ== +parseurl@1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/parseurl/-/parseurl-1.0.1.tgz#2e57dce6efdd37c3518701030944c22bf388b7b4" + integrity sha512-6W9+0+9Ihayqwjgp4OaLLqZ3KDtqPY2PtUPz8YNiy4PamjJv+7x6J9GO93O9rUZOLgaanTPxsKTasxqKkO1iSw== -patch-package@^8.0.0: - version "8.0.1" - resolved "https://registry.yarnpkg.com/patch-package/-/patch-package-8.0.1.tgz#79d02f953f711e06d1f8949c8a13e5d3d7ba1a60" - integrity sha512-VsKRIA8f5uqHQ7NGhwIna6Bx6D9s/1iXlA1hthBVBEbkq+t4kXD0HHt+rJhf/Z+Ci0F/HCB2hvn0qLdLG+Qxlw== +patch-package@8.0.0: + version "8.0.0" + resolved "https://registry.yarnpkg.com/patch-package/-/patch-package-8.0.0.tgz#d191e2f1b6e06a4624a0116bcb88edd6714ede61" + integrity sha512-da8BVIhzjtgScwDJ2TtKsfT5JFWz1hYoBl9rUQ1f38MC2HwnEIkK8VN3dKMKcP7P7bvvgzNDbfNHtx3MsQb5vA== dependencies: "@yarnpkg/lockfile" "^1.1.0" chalk "^4.1.2" ci-info "^3.7.0" cross-spawn "^7.0.3" find-yarn-workspace-root "^2.0.0" - fs-extra "^10.0.0" + fs-extra "^9.0.0" json-stable-stringify "^1.0.2" klaw-sync "^6.0.0" minimist "^1.2.6" open "^7.4.2" + rimraf "^2.6.3" semver "^7.5.3" slash "^2.0.0" - tmp "^0.2.4" + tmp "^0.0.33" yaml "^2.2.2" path-is-absolute@^1.0.0: @@ -2271,15 +1941,10 @@ path-scurry@^1.11.1: lru-cache "^10.2.0" minipass "^5.0.0 || ^6.0.2 || ^7.0.0" -path-to-regexp@~0.1.12: - version "0.1.12" - resolved "https://registry.yarnpkg.com/path-to-regexp/-/path-to-regexp-0.1.12.tgz#d5e1a12e478a976d432ef3c58d534b9923164bb7" - integrity sha512-RA1GjUVMnvYFxuqovrEqZoxxW5NUZqbwKtYz/Tt7nXerk0LbLblQmrsgdeOxV5SFHf0UDggjS/bSeOZwt1pmEQ== - -path-type@^6.0.0: - version "6.0.0" - resolved "https://registry.yarnpkg.com/path-type/-/path-type-6.0.0.tgz#2f1bb6791a91ce99194caede5d6c5920ed81eb51" - integrity sha512-Vj7sf++t5pBD637NSfkxpHSMfWaeig5+DKWLhcqIYx6mWQz5hdJTGDVMQiJcw1ZYkhs7AazKDGpRVji1LJCZUQ== +path-to-regexp@0.1.2: + version "0.1.2" + resolved "https://registry.yarnpkg.com/path-to-regexp/-/path-to-regexp-0.1.2.tgz#9b2b151f9cc3018c9eea50ca95729e05781712b4" + integrity sha512-BZU7Qr+qKkXJX9UBypMNikdZ85cQSjtfMhUykJFLJn4SNF0jhEbb9nMRpnNdA76ESryY8JpMA4k6XKdz3JS1pw== pe-library@^0.4.1: version "0.4.1" @@ -2301,6 +1966,11 @@ picomatch@^2.3.1: resolved "https://registry.yarnpkg.com/picomatch/-/picomatch-2.3.1.tgz#3ba3833733646d9d3e4995946c1365a67fb07a42" integrity sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA== +picomatch@^4.0.3: + version "4.0.3" + resolved "https://registry.yarnpkg.com/picomatch/-/picomatch-4.0.3.tgz#796c76136d1eead715db1e7bad785dedd695a042" + integrity sha512-5gTmgEY/sqK6gFXLIsQNH19lWb4ebPDLA4SdLP7dsWkIXHWlG66oPuVvXSGFPppYZz8ZDZq0dYYrbHfBCVUb1Q== + plist@3.1.0, plist@^3.0.4, plist@^3.0.5, plist@^3.1.0: version "3.1.0" resolved "https://registry.yarnpkg.com/plist/-/plist-3.1.0.tgz#797a516a93e62f5bde55e0b9cc9c967f860893c9" @@ -2310,26 +1980,16 @@ plist@3.1.0, plist@^3.0.4, plist@^3.0.5, plist@^3.1.0: base64-js "^1.5.1" xmlbuilder "^15.1.1" -presentable-error@^0.0.1: - version "0.0.1" - resolved "https://registry.yarnpkg.com/presentable-error/-/presentable-error-0.0.1.tgz#6d2579d397b1384a0cc733b36375c2c8755d53c6" - integrity sha512-E6rsNU1QNJgB3sjj7OANinGncFKuK+164sLXw1/CqBjj/EkXSoSdHCtWQGBNlREIGLnL7IEUEGa08YFVUbrhVg== - -proc-log@^2.0.1: - version "2.0.1" - resolved "https://registry.yarnpkg.com/proc-log/-/proc-log-2.0.1.tgz#8f3f69a1f608de27878f91f5c688b225391cb685" - integrity sha512-Kcmo2FhfDTXdcbfDH76N7uBYHINxc/8GW7UAVuVP9I+Va3uHSerrnKV6dLooga/gh7GlgzuCCr/eoldnL1muGw== +proc-log@^5.0.0: + version "5.0.0" + resolved "https://registry.yarnpkg.com/proc-log/-/proc-log-5.0.0.tgz#e6c93cf37aef33f835c53485f314f50ea906a9d8" + integrity sha512-Azwzvl90HaF0aCz1JrDdXQykFakSSNPaPoiZ9fm5qJIMHioDZEi7OAdRwSm6rSoPtY3Qutnm3L7ogmg3dc+wbQ== progress@^2.0.3: version "2.0.3" resolved "https://registry.yarnpkg.com/progress/-/progress-2.0.3.tgz#7e8cf8d8f5b8f239c1bc68beb4eb78567d572ef8" integrity sha512-7PiHtLll5LdnKIMw100I+8xJXR5gW2QwWYkT6iJva0bXitZKa/XMrSbdmg3r2Xnaidz9Qumd0VPaMrZlF9V9sA== -promise-inflight@^1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/promise-inflight/-/promise-inflight-1.0.1.tgz#98472870bf228132fcbdd868129bad12c3c029e3" - integrity sha512-6zWPyEOFaQBJYcGMHBKTKJ3u6TBsnMFOIZSa6ce1e/ZrrsOlnHRHbabMjLiBYKp+n44X9eUI6VUPaukCXHuG4g== - promise-retry@^2.0.1: version "2.0.1" resolved "https://registry.yarnpkg.com/promise-retry/-/promise-retry-2.0.1.tgz#ff747a13620ab57ba688f5fc67855410c370da22" @@ -2338,18 +1998,19 @@ promise-retry@^2.0.1: err-code "^2.0.2" retry "^0.12.0" -proxy-addr@~2.0.7: - version "2.0.7" - resolved "https://registry.yarnpkg.com/proxy-addr/-/proxy-addr-2.0.7.tgz#f19fe69ceab311eeb94b42e70e8c2070f9ba1025" - integrity sha512-llQsMLSUDUPT44jdrU/O37qlnifitDP+ZwrmmZcoSKyLKvtZxpyV0n2/bD/N4tBAAZ/gJEdZU7KMraoK1+XYAg== +proper-lockfile@^4.1.2: + version "4.1.2" + resolved "https://registry.yarnpkg.com/proper-lockfile/-/proper-lockfile-4.1.2.tgz#c8b9de2af6b2f1601067f98e01ac66baa223141f" + integrity sha512-TjNPblN4BwAWMXU8s9AEz4JmQxnD1NNL7bNOY/AKUzyamc379FWASUhc/K1pL2noVb+XmZKLL68cjzLsiOAMaA== dependencies: - forwarded "0.2.0" - ipaddr.js "1.9.1" + graceful-fs "^4.2.4" + retry "^0.12.0" + signal-exit "^3.0.2" pump@^3.0.0: - version "3.0.3" - resolved "https://registry.yarnpkg.com/pump/-/pump-3.0.3.tgz#151d979f1a29668dc0025ec589a455b53282268d" - integrity sha512-todwxLMY7/heScKmntwQG8CXVkWUOdYxIvY2s0VWAAMh/nd8SoYiRaKjlr7+iCs984f2P8zvrfWcDDYVb73NfA== + version "3.0.4" + resolved "https://registry.yarnpkg.com/pump/-/pump-3.0.4.tgz#1f313430527fa8b905622ebd22fe1444e757ab3c" + integrity sha512-VS7sjc6KR7e1ukRFhQSY5LM2uBWAUPiOPa/A3mkKmiMwSmRFUITt0xuj+/lesgnCv+dPIEYlkzrcyXgquIHMcA== dependencies: end-of-stream "^1.1.0" once "^1.3.1" @@ -2359,37 +2020,30 @@ punycode@^2.1.0: resolved "https://registry.yarnpkg.com/punycode/-/punycode-2.3.1.tgz#027422e2faec0b25e1549c3e1bd8309b9133b6e5" integrity sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg== -qs@~6.14.0: - version "6.14.0" - resolved "https://registry.yarnpkg.com/qs/-/qs-6.14.0.tgz#c63fa40680d2c5c941412a0e899c89af60c0a930" - integrity sha512-YWWTjgABSKcvs/nWBi9PycY/JiPJqOD4JA6o9Sej2AtvSGarXxKC3OQSk4pAarbdQlKAh5D4FCQkJNkW+GAn3w== - dependencies: - side-channel "^1.1.0" - -queue-microtask@^1.2.2: - version "1.2.3" - resolved "https://registry.yarnpkg.com/queue-microtask/-/queue-microtask-1.2.3.tgz#4929228bbc724dfac43e0efb058caf7b6cfb6243" - integrity sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A== +qs@0.6.6: + version "0.6.6" + resolved "https://registry.yarnpkg.com/qs/-/qs-0.6.6.tgz#6e015098ff51968b8a3c819001d5f2c89bc4b107" + integrity sha512-kN+yNdAf29Jgp+AYHUmC7X4QdJPR8czuMWLNLc0aRxkQ7tB3vJQEONKKT9ou/rW7EbqVec11srC9q9BiVbcnHA== quick-lru@^5.1.1: version "5.1.1" resolved "https://registry.yarnpkg.com/quick-lru/-/quick-lru-5.1.1.tgz#366493e6b3e42a3a6885e2e99d18f80fb7a8c932" integrity sha512-WuyALRjWPDGtt/wzJiadO5AXY+8hZ80hVpe6MyivgraREW751X3SbhRvG3eLKOYN+8VEvqLcf3wdnt44Z4S4SA== -range-parser@~1.2.1: - version "1.2.1" - resolved "https://registry.yarnpkg.com/range-parser/-/range-parser-1.2.1.tgz#3cf37023d199e1c24d1a55b84800c2f3e6468031" - integrity sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg== +range-parser@0.0.4: + version "0.0.4" + resolved "https://registry.yarnpkg.com/range-parser/-/range-parser-0.0.4.tgz#c0427ffef51c10acba0782a46c9602e744ff620b" + integrity sha512-okJVEq9DbZyg+5lD8pr6ooQmeA0uu8DYIyAU7VK1WUUK7hctI1yw2ZHhKiKjB6RXaDrYRmTR4SsIHkyiQpaLMA== -raw-body@~2.5.3: - version "2.5.3" - resolved "https://registry.yarnpkg.com/raw-body/-/raw-body-2.5.3.tgz#11c6650ee770a7de1b494f197927de0c923822e2" - integrity sha512-s4VSOf6yN0rvbRZGxs8Om5CWj6seneMwK3oDb4lWDH0UPhWcxwOWw5+qk24bxq87szX1ydrwylIOp2uG1ojUpA== - dependencies: - bytes "~3.1.2" - http-errors "~2.0.1" - iconv-lite "~0.4.24" - unpipe "~1.0.0" +range-parser@1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/range-parser/-/range-parser-1.0.0.tgz#a4b264cfe0be5ce36abe3765ac9c2a248746dbc0" + integrity sha512-wOH5LIH2ZHo0P7/bwkR+aNbJ+kv3CHVX4B8qs9GqbtY29fi1bGPV5xczrutN20G+Z4XhRqRMTW3q0S4iyJJPfw== + +range-parser@~1.0.0: + version "1.0.3" + resolved "https://registry.yarnpkg.com/range-parser/-/range-parser-1.0.3.tgz#6872823535c692e2c2a0103826afd82c2e0ff175" + integrity sha512-nDsRrtIxVUO5opg/A8T2S3ebULVIfuh8ECbh4w3N4mWxIiT3QILDJDUQayPqm2e8Q8NUa0RSUkGCfe33AfjR3Q== read-binary-file-arch@^1.0.6: version "1.0.6" @@ -2444,15 +2098,10 @@ retry@^0.12.0: resolved "https://registry.yarnpkg.com/retry/-/retry-0.12.0.tgz#1b42a6266a21f07421d1b0b54b7dc167b01c013b" integrity sha512-9LkiTwjUh6rT555DtE9rTX+BKByPfrMzEAtnlEtdEwr3Nkffwiihqe2bWADg+OQRjt9gl6ICdmB/ZFDCGAtSow== -reusify@^1.0.4: - version "1.1.0" - resolved "https://registry.yarnpkg.com/reusify/-/reusify-1.1.0.tgz#0fe13b9522e1473f51b558ee796e08f11f9b489f" - integrity sha512-g6QUff04oZpHs0eG5p83rFLhHeV00ug/Yf9nZM6fLeUrPguBTkTQOdpAWWspMh55TZfVQDPaN3NQJfbVRAxdIw== - -rimraf@^3.0.2: - version "3.0.2" - resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-3.0.2.tgz#f1a5402ba6220ad52cc1282bac1ae3aa49fd061a" - integrity sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA== +rimraf@^2.6.3: + version "2.7.1" + resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.7.1.tgz#35797f13a7fdadc566142c29d4f07ccad483e3ec" + integrity sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w== dependencies: glob "^7.1.3" @@ -2468,19 +2117,12 @@ roarr@^2.15.3: semver-compare "^1.0.0" sprintf-js "^1.1.2" -run-parallel@^1.1.9: - version "1.2.0" - resolved "https://registry.yarnpkg.com/run-parallel/-/run-parallel-1.2.0.tgz#66d1368da7bdf921eb9d95bd1a9229e7f21a43ee" - integrity sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA== - dependencies: - queue-microtask "^1.2.2" - -safe-buffer@5.2.1, safe-buffer@~5.2.0: +safe-buffer@~5.2.0: version "5.2.1" resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.2.1.tgz#1eaf9fa9bdb1fdd4ec75f58f9cdb4e6b7827eec6" integrity sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ== -"safer-buffer@>= 2.1.2 < 3", "safer-buffer@>= 2.1.2 < 3.0.0": +"safer-buffer@>= 2.1.2 < 3.0.0": version "2.1.2" resolved "https://registry.yarnpkg.com/safer-buffer/-/safer-buffer-2.1.2.tgz#44fa161b0187b9549dd84bb91802f9bd8385cd6a" integrity sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg== @@ -2493,9 +2135,9 @@ sanitize-filename@^1.6.3: truncate-utf8-bytes "^1.0.0" sax@^1.2.4: - version "1.4.3" - resolved "https://registry.yarnpkg.com/sax/-/sax-1.4.3.tgz#fcebae3b756cdc8428321805f4b70f16ec0ab5db" - integrity sha512-yqYn1JhPczigF94DMS+shiDMjDowYO6y9+wB/4WgO0Y19jWYk0lQ4tuG5KI7kj4FTp1wxPj5IFfcrz/s1c3jjQ== + version "1.5.0" + resolved "https://registry.yarnpkg.com/sax/-/sax-1.5.0.tgz#b5549b671069b7aa392df55ec7574cf411179eb8" + integrity sha512-21IYA3Q5cQf089Z6tgaUTr7lDAyzoTPx5HRtbhsME8Udispad8dC/+sziTNugOEx54ilvatQ9YCzl4KQLPcRHA== semver-compare@^1.0.0: version "1.0.0" @@ -2512,29 +2154,30 @@ semver@^6.2.0: resolved "https://registry.yarnpkg.com/semver/-/semver-6.3.1.tgz#556d2ef8689146e46dcea4bfdd095f3434dffcb4" integrity sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA== -semver@^7.3.2, semver@^7.3.5, semver@^7.3.8, semver@^7.5.3, semver@^7.6.3: - version "7.7.3" - resolved "https://registry.yarnpkg.com/semver/-/semver-7.7.3.tgz#4b5f4143d007633a8dc671cd0a6ef9147b8bb946" - integrity sha512-SdsKMrI9TdgjdweUSR9MweHA4EJ8YxHn8DFaDisvhVlUOe4BF1tLD7GAj0lIqWVl+dPb/rExr0Btby5loQm20Q== - -send@~0.19.0, send@~0.19.1: - version "0.19.2" - resolved "https://registry.yarnpkg.com/send/-/send-0.19.2.tgz#59bc0da1b4ea7ad42736fd642b1c4294e114ff29" - integrity sha512-VMbMxbDeehAxpOtWJXlcUS5E8iXh6QmN+BkRX1GARS3wRaXEEgzCcB10gTQazO42tpNIya8xIyNx8fll1OFPrg== - dependencies: - debug "2.6.9" - depd "2.0.0" - destroy "1.2.0" - encodeurl "~2.0.0" - escape-html "~1.0.3" - etag "~1.8.1" - fresh "~0.5.2" - http-errors "~2.0.1" - mime "1.6.0" - ms "2.1.3" - on-finished "~2.4.1" - range-parser "~1.2.1" - statuses "~2.0.2" +semver@^7.3.2, semver@^7.3.5, semver@^7.5.3, semver@^7.6.3, semver@~7.7.3: + version "7.7.4" + resolved "https://registry.yarnpkg.com/semver/-/semver-7.7.4.tgz#28464e36060e991fa7a11d0279d2d3f3b57a7e8a" + integrity sha512-vFKC2IEtQnVhpT78h1Yp8wzwrf8CM+MzKMHGJZfBtzhZNycRFnXsHk6E5TxIkkMsgNS7mdX3AGB7x2QM2di4lA== + +send@0.1.4: + version "0.1.4" + resolved "https://registry.yarnpkg.com/send/-/send-0.1.4.tgz#be70d8d1be01de61821af13780b50345a4f71abd" + integrity sha512-NJnIaB29/EcNqkNneUAm16oEVnzM2LeNBc/hmgKuExv2k9pCZQEw8SHJeCdjqesHJTyWAr7x5HjeOmRFS4BoFw== + dependencies: + debug "*" + fresh "0.2.0" + mime "~1.2.9" + range-parser "0.0.4" + +send@0.2.0: + version "0.2.0" + resolved "https://registry.yarnpkg.com/send/-/send-0.2.0.tgz#067abf45cff8bffb29cbdb7439725b32388a2c58" + integrity sha512-CR/kej5a8BChsMJwpmAtqOgdGI3nemoRaPcoXj/choHibvaOfkYcohcAbd9aEG8MhL9CfRH3KlUb+oHZsdNmTg== + dependencies: + debug "*" + fresh "~0.2.1" + mime "~1.2.9" + range-parser "~1.0.0" serialize-error@^7.0.1: version "7.0.1" @@ -2543,15 +2186,12 @@ serialize-error@^7.0.1: dependencies: type-fest "^0.13.1" -serve-static@~1.16.2: - version "1.16.3" - resolved "https://registry.yarnpkg.com/serve-static/-/serve-static-1.16.3.tgz#a97b74d955778583f3862a4f0b841eb4d5d78cf9" - integrity sha512-x0RTqQel6g5SY7Lg6ZreMmsOzncHFU7nhnRWkKgWuMTu5NN0DR5oruckMqRvacAN9d5w6ARnRBXl9xhDCgfMeA== +serve-static@1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/serve-static/-/serve-static-1.0.1.tgz#10dcbfd44b3e0291a131fc9ab4ab25a9f5a78a42" + integrity sha512-bo0TWkZYykHO97QfRgoaXQQBBmyheAb3MeYFzufTXDHUdaTwJXFa8NejuKbt7UdovoUzB8lJn4gHGQSEC+R4Nw== dependencies: - encodeurl "~2.0.0" - escape-html "~1.0.3" - parseurl "~1.3.3" - send "~0.19.1" + send "0.1.4" set-function-length@^1.2.2: version "1.2.2" @@ -2565,11 +2205,6 @@ set-function-length@^1.2.2: gopd "^1.0.1" has-property-descriptors "^1.0.2" -setprototypeof@1.2.0, setprototypeof@~1.2.0: - version "1.2.0" - resolved "https://registry.yarnpkg.com/setprototypeof/-/setprototypeof-1.2.0.tgz#66c9a24a73f9fc28cbe66b09fed3d33dcaf1b424" - integrity sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw== - shebang-command@^2.0.0: version "2.0.0" resolved "https://registry.yarnpkg.com/shebang-command/-/shebang-command-2.0.0.tgz#ccd0af4f8835fbdc265b82461aaf0c36663f34ea" @@ -2582,46 +2217,6 @@ shebang-regex@^3.0.0: resolved "https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-3.0.0.tgz#ae16f1644d873ecad843b0307b143362d4c42172" integrity sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A== -side-channel-list@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/side-channel-list/-/side-channel-list-1.0.0.tgz#10cb5984263115d3b7a0e336591e290a830af8ad" - integrity sha512-FCLHtRD/gnpCiCHEiJLOwdmFP+wzCmDEkc9y7NsYxeF4u7Btsn1ZuwgwJGxImImHicJArLP4R0yX4c2KCrMrTA== - dependencies: - es-errors "^1.3.0" - object-inspect "^1.13.3" - -side-channel-map@^1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/side-channel-map/-/side-channel-map-1.0.1.tgz#d6bb6b37902c6fef5174e5f533fab4c732a26f42" - integrity sha512-VCjCNfgMsby3tTdo02nbjtM/ewra6jPHmpThenkTYh8pG9ucZ/1P8So4u4FGBek/BjpOVsDCMoLA/iuBKIFXRA== - dependencies: - call-bound "^1.0.2" - es-errors "^1.3.0" - get-intrinsic "^1.2.5" - object-inspect "^1.13.3" - -side-channel-weakmap@^1.0.2: - version "1.0.2" - resolved "https://registry.yarnpkg.com/side-channel-weakmap/-/side-channel-weakmap-1.0.2.tgz#11dda19d5368e40ce9ec2bdc1fb0ecbc0790ecea" - integrity sha512-WPS/HvHQTYnHisLo9McqBHOJk2FkHO/tlpvldyrnem4aeQp4hai3gythswg6p01oSoTl58rcpiFAjF2br2Ak2A== - dependencies: - call-bound "^1.0.2" - es-errors "^1.3.0" - get-intrinsic "^1.2.5" - object-inspect "^1.13.3" - side-channel-map "^1.0.1" - -side-channel@^1.1.0: - version "1.1.0" - resolved "https://registry.yarnpkg.com/side-channel/-/side-channel-1.1.0.tgz#c3fcff9c4da932784873335ec9765fa94ff66bc9" - integrity sha512-ZX99e6tRweoUXqR+VBrslhda51Nh5MTQwou5tnUDgbtyM0dBgmhEDtWGP/xbKn6hqfPRHujUNwz5fy/wbbhnpw== - dependencies: - es-errors "^1.3.0" - object-inspect "^1.13.3" - side-channel-list "^1.0.0" - side-channel-map "^1.0.1" - side-channel-weakmap "^1.0.2" - signal-exit@^3.0.2: version "3.0.7" resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.7.tgz#a9a1767f8af84155114eaabd73f99273c8f59ad9" @@ -2644,11 +2239,6 @@ slash@^2.0.0: resolved "https://registry.yarnpkg.com/slash/-/slash-2.0.0.tgz#de552851a1759df3a8f206535442f5ec4ddeab44" integrity sha512-ZYKh3Wh2z1PpEXWr0MpSBZ0V6mZHAQfYevttO11c51CaWjGTaadiKZ+wVt1PbMlDV5qhMFslpZCemhwOK7C89A== -slash@^5.1.0: - version "5.1.0" - resolved "https://registry.yarnpkg.com/slash/-/slash-5.1.0.tgz#be3adddcdf09ac38eebe8dcdc7b1a57a75b095ce" - integrity sha512-ZA6oR3T/pEyuqwMgAKT0/hAv8oAXckzbkmR0UkUosQ+Mc4RxGoJkRmwHgHufaenlyAgE1Mxgpdcrf75y6XcnDg== - slice-ansi@^3.0.0: version "3.0.0" resolved "https://registry.yarnpkg.com/slice-ansi/-/slice-ansi-3.0.0.tgz#31ddc10930a1b7e0b67b08c96c2f49b77a789787" @@ -2663,16 +2253,16 @@ smart-buffer@^4.0.2, smart-buffer@^4.2.0: resolved "https://registry.yarnpkg.com/smart-buffer/-/smart-buffer-4.2.0.tgz#6e1d71fa4f18c05f7d0ff216dd16a481d0e8d9ae" integrity sha512-94hK0Hh8rPqQl2xXc3HsaBoOXKV20MToPkcXvwbISWLEs+64sBq5kFgn2kJDHb1Pry9yrP0dxrCI9RRci7RXKg== -socks-proxy-agent@^7.0.0: - version "7.0.0" - resolved "https://registry.yarnpkg.com/socks-proxy-agent/-/socks-proxy-agent-7.0.0.tgz#dc069ecf34436621acb41e3efa66ca1b5fed15b6" - integrity sha512-Fgl0YPZ902wEsAyiQ+idGd1A7rSFx/ayC1CQVMw5P+EQx2V0SgpGtf6OKFhVjPflPUl9YMmEOnmfjCdMUsygww== +socks-proxy-agent@^8.0.3: + version "8.0.5" + resolved "https://registry.yarnpkg.com/socks-proxy-agent/-/socks-proxy-agent-8.0.5.tgz#b9cdb4e7e998509d7659d689ce7697ac21645bee" + integrity sha512-HehCEsotFqbPW9sJ8WVYB6UbmIMv7kUUORIF2Nncq4VQvBfNBLibW9YZR5dlYCSUhwcD628pRllm7n+E+YTzJw== dependencies: - agent-base "^6.0.2" - debug "^4.3.3" - socks "^2.6.2" + agent-base "^7.1.2" + debug "^4.3.4" + socks "^2.8.3" -socks@^2.6.2: +socks@^2.8.3: version "2.8.7" resolved "https://registry.yarnpkg.com/socks/-/socks-2.8.7.tgz#e2fb1d9a603add75050a2067db8c381a0b5669ea" integrity sha512-HLpt+uLy/pxB+bum/9DzAgiKS8CX1EvbWxI4zlmgGCExImLdiad2iCwXT5Z4c9c3Eq8rP2318mPW2c+QbtjK8A== @@ -2698,23 +2288,18 @@ sprintf-js@^1.1.2: resolved "https://registry.yarnpkg.com/sprintf-js/-/sprintf-js-1.1.3.tgz#4914b903a2f8b685d17fdf78a70e917e872e444a" integrity sha512-Oo+0REFV59/rz3gfJNKQiBlwfHaSESl1pcGyABQsnnIfWOFt6JNj5gCog2U6MLZ//IGYD+nA8nI+mTShREReaA== -ssri@^9.0.0: - version "9.0.1" - resolved "https://registry.yarnpkg.com/ssri/-/ssri-9.0.1.tgz#544d4c357a8d7b71a19700074b6883fcb4eae057" - integrity sha512-o57Wcn66jMQvfHG1FlYbWeZWW/dHZhJXjpIcTfXldXEk5nz5lStPo3mK0OJQfGR3RbZUlbISexbljkJzuEj/8Q== +ssri@^12.0.0: + version "12.0.0" + resolved "https://registry.yarnpkg.com/ssri/-/ssri-12.0.0.tgz#bcb4258417c702472f8191981d3c8a771fee6832" + integrity sha512-S7iGNosepx9RadX82oimUkvr0Ct7IjJbEbs4mJcTxst8um95J3sDYU1RBEOvdu6oL1Wek2ODI5i4MAw+dZ6cAQ== dependencies: - minipass "^3.1.1" + minipass "^7.0.3" stat-mode@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/stat-mode/-/stat-mode-1.0.0.tgz#68b55cb61ea639ff57136f36b216a291800d1465" integrity sha512-jH9EhtKIjuXZ2cWxmXS8ZP80XyC3iasQxMDV8jzhNJpfDb7VbQLVW4Wvsxz9QZvzV+G4YoSfBUVKDOyxLzi/sg== -statuses@~2.0.1, statuses@~2.0.2: - version "2.0.2" - resolved "https://registry.yarnpkg.com/statuses/-/statuses-2.0.2.tgz#8f75eecef765b5e1cfcdc080da59409ed424e382" - integrity sha512-DvEy55V3DB7uknRo+4iOGT5fP1slR8wQohVdknigZPMpMstaKJQWhwiYBACJE3Ul2pTnATihhBYnRhZQHGBiRw== - "string-width-cjs@npm:string-width@^4.2.0", string-width@^4.1.0, string-width@^4.2.0, string-width@^4.2.3: version "4.2.3" resolved "https://registry.yarnpkg.com/string-width/-/string-width-4.2.3.tgz#269c7117d27b05ad2e536830a8ec895ef9c6d010" @@ -2748,11 +2333,11 @@ string_decoder@^1.1.1: ansi-regex "^5.0.1" strip-ansi@^7.0.1: - version "7.1.2" - resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-7.1.2.tgz#132875abde678c7ea8d691533f2e7e22bb744dba" - integrity sha512-gmBGslpoQJtgnMAvOVqGZpEz9dyoKTCzy2nfz/n8aIFhN/jCE/rCmcxabB6jOOHV+0WNnylOxaxBQPSvcWklhA== + version "7.2.0" + resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-7.2.0.tgz#d22a269522836a627af8d04b5c3fd2c7fa3e32e3" + integrity sha512-yDPMNjp4WyfYBkHnjIRLfca1i6KMyGCtsVgoKe/z1+6vukgaENdgGBZt+ZmKPc4gavvEZ5OgHfHdrazhgNyG7w== dependencies: - ansi-regex "^6.0.1" + ansi-regex "^6.2.2" sumchecker@^3.0.1: version "3.0.1" @@ -2768,17 +2353,16 @@ supports-color@^7.1.0: dependencies: has-flag "^4.0.0" -tar@^6.0.5, tar@^6.1.11, tar@^6.1.12, tar@^6.2.1: - version "6.2.1" - resolved "https://registry.yarnpkg.com/tar/-/tar-6.2.1.tgz#717549c541bc3c2af15751bea94b1dd068d4b03a" - integrity sha512-DZ4yORTwrbTj/7MZYq2w+/ZFdI6OZ/f9SFHR+71gIVUZhOQPHzVCLpvRnPgyaMpfWxxk/4ONva3GQSyNIKRv6A== +tar@^7.4.3, tar@^7.5.6, tar@^7.5.7: + version "7.5.9" + resolved "https://registry.yarnpkg.com/tar/-/tar-7.5.9.tgz#817ac12a54bc4362c51340875b8985d7dc9724b8" + integrity sha512-BTLcK0xsDh2+PUe9F6c2TlRp4zOOBMTkoQHQIWSIzI0R7KG46uEwq4OPk2W7bZcprBMsuaeFsqwYr7pjh6CuHg== dependencies: - chownr "^2.0.0" - fs-minipass "^2.0.0" - minipass "^5.0.0" - minizlib "^2.1.1" - mkdirp "^1.0.3" - yallist "^4.0.0" + "@isaacs/fs-minipass" "^4.0.0" + chownr "^3.0.0" + minipass "^7.1.2" + minizlib "^3.1.0" + yallist "^5.0.0" temp-file@^3.4.0: version "3.4.0" @@ -2800,6 +2384,14 @@ tiny-typed-emitter@^2.1.0: resolved "https://registry.yarnpkg.com/tiny-typed-emitter/-/tiny-typed-emitter-2.1.0.tgz#b3b027fdd389ff81a152c8e847ee2f5be9fad7b5" integrity sha512-qVtvMxeXbVej0cQWKqVSSAHmKZEHAvxdF8HEUBFWts8h+xEo5m/lEiPakuyZ3BnCBjOD8i24kzNOiOLLgsSxhA== +tinyglobby@^0.2.12: + version "0.2.15" + resolved "https://registry.yarnpkg.com/tinyglobby/-/tinyglobby-0.2.15.tgz#e228dd1e638cea993d2fdb4fcd2d4602a79951c2" + integrity sha512-j2Zq4NyQYG5XMST4cbs02Ak8iJUdxRM0XI5QyxXuZOzKOINmWurp3smXu3y5wDcJrptwpSjgXHzIQxR0omXljQ== + dependencies: + fdir "^6.5.0" + picomatch "^4.0.3" + tmp-promise@^3.0.2: version "3.0.3" resolved "https://registry.yarnpkg.com/tmp-promise/-/tmp-promise-3.0.3.tgz#60a1a1cc98c988674fcbfd23b6e3367bdeac4ce7" @@ -2807,7 +2399,14 @@ tmp-promise@^3.0.2: dependencies: tmp "^0.2.0" -tmp@^0.2.0, tmp@^0.2.4: +tmp@^0.0.33: + version "0.0.33" + resolved "https://registry.yarnpkg.com/tmp/-/tmp-0.0.33.tgz#6d34335889768d21b2bcda0aa277ced3b1bfadf9" + integrity sha512-jRCJlojKnZ3addtTOjdIqoRuPEKBvNXcGYqzO6zWZX8KfKEpnGY5jfggJQ3EjKuu8D4bJRr0y+cYJFmYbImXGw== + dependencies: + os-tmpdir "~1.0.2" + +tmp@^0.2.0: version "0.2.5" resolved "https://registry.yarnpkg.com/tmp/-/tmp-0.2.5.tgz#b06bcd23f0f3c8357b426891726d16015abfd8f8" integrity sha512-voyz6MApa1rQGUxT3E+BK7/ROe8itEx7vD8/HEvt4xwXucvQ5G5oeEiHkmHZJuBO21RpOf+YYm9MOivj709jow== @@ -2819,11 +2418,6 @@ to-regex-range@^5.0.1: dependencies: is-number "^7.0.0" -toidentifier@~1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/toidentifier/-/toidentifier-1.0.1.tgz#3be34321a88a820ed1bd80dfaa33e479fbb8dd35" - integrity sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA== - truncate-utf8-bytes@^1.0.0: version "1.0.2" resolved "https://registry.yarnpkg.com/truncate-utf8-bytes/-/truncate-utf8-bytes-1.0.2.tgz#405923909592d56f78a5818434b0b78489ca5f2b" @@ -2836,40 +2430,29 @@ type-fest@^0.13.1: resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.13.1.tgz#0172cb5bce80b0bd542ea348db50c7e21834d934" integrity sha512-34R7HTnG0XIJcBSn5XhDd7nNFPRcXYRZrBB2O2jdKqYODldSzBAqzsWoZYYvduky73toYS/ESqxPvkDf/F0XMg== -type-is@~1.6.18: - version "1.6.18" - resolved "https://registry.yarnpkg.com/type-is/-/type-is-1.6.18.tgz#4e552cd05df09467dcbc4ef739de89f2cf37c131" - integrity sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g== +type-is@1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/type-is/-/type-is-1.0.0.tgz#4ff424e97349a1ee1910b4bfc488595ecdc443fc" + integrity sha512-CLdmAJgLeMtSPcTFX3eDdC1+ysfYoVdcYjMtuDtg23/fhHXoP5quNsvobr05ZNlG7og+oHQ4bosEzJX++DlIzQ== dependencies: - media-typer "0.3.0" - mime-types "~2.1.24" - -typescript@^5.4.3: - version "5.9.3" - resolved "https://registry.yarnpkg.com/typescript/-/typescript-5.9.3.tgz#5b4f59e15310ab17a216f5d6cf53ee476ede670f" - integrity sha512-jl1vZzPDinLr9eUt3J/t7V6FgNEw9QjvBPdysz9KfQDD41fQrC2Y4vKQdiaUpFT4bXlb1RHhLpp8wtm6M5TgSw== + mime "~1.2.11" -undici-types@~7.16.0: - version "7.16.0" - resolved "https://registry.yarnpkg.com/undici-types/-/undici-types-7.16.0.tgz#ffccdff36aea4884cbfce9a750a0580224f58a46" - integrity sha512-Zz+aZWSj8LE6zoxD+xrjh4VfkIG8Ya6LvYkZqtUQGJPZjYl53ypCaUwWqo7eI0x66KBGeRo+mlBEkMSeSZ38Nw== - -unicorn-magic@^0.3.0: - version "0.3.0" - resolved "https://registry.yarnpkg.com/unicorn-magic/-/unicorn-magic-0.3.0.tgz#4efd45c85a69e0dd576d25532fbfa22aa5c8a104" - integrity sha512-+QBBXBCvifc56fsbuxZQ6Sic3wqqc3WWaqxs58gvJrcOuN83HGTCwz3oS5phzU9LthRNE9VrJCFCLUgHeeFnfA== +undici-types@~7.18.0: + version "7.18.2" + resolved "https://registry.yarnpkg.com/undici-types/-/undici-types-7.18.2.tgz#29357a89e7b7ca4aef3bf0fd3fd0cd73884229e9" + integrity sha512-AsuCzffGHJybSaRrmr5eHr81mwJU3kjw6M+uprWvCXiNeN9SOGwQ3Jn8jb8m3Z6izVgknn1R0FTCEAP2QrLY/w== -unique-filename@^2.0.0: - version "2.0.1" - resolved "https://registry.yarnpkg.com/unique-filename/-/unique-filename-2.0.1.tgz#e785f8675a9a7589e0ac77e0b5c34d2eaeac6da2" - integrity sha512-ODWHtkkdx3IAR+veKxFV+VBkUMcN+FaqzUUd7IZzt+0zhDZFPFxhlqwPF3YQvMHx1TD0tdgYl+kuPnJ8E6ql7A== +unique-filename@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/unique-filename/-/unique-filename-4.0.0.tgz#a06534d370e7c977a939cd1d11f7f0ab8f1fed13" + integrity sha512-XSnEewXmQ+veP7xX2dS5Q4yZAvO40cBN2MWkJ7D/6sW4Dg6wYBNwM1Vrnz1FhH5AdeLIlUXRI9e28z1YZi71NQ== dependencies: - unique-slug "^3.0.0" + unique-slug "^5.0.0" -unique-slug@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/unique-slug/-/unique-slug-3.0.0.tgz#6d347cf57c8a7a7a6044aabd0e2d74e4d76dc7c9" - integrity sha512-8EyMynh679x/0gqE9fT9oilG+qEt+ibFyqjuVTsZn1+CMxH+XLlpvr2UZx4nVcCwTpx81nICr2JQFkM+HPLq4w== +unique-slug@^5.0.0: + version "5.0.0" + resolved "https://registry.yarnpkg.com/unique-slug/-/unique-slug-5.0.0.tgz#ca72af03ad0dbab4dad8aa683f633878b1accda8" + integrity sha512-9OdaqO5kwqR+1kVgHAhsp5vPNU0hnxRa26rBFNfNgM7M6pNtgzeBn3s/xbyCQL3dcjzOatcef6UUHpB/6MaETg== dependencies: imurmurhash "^0.1.4" @@ -2883,11 +2466,6 @@ universalify@^2.0.0: resolved "https://registry.yarnpkg.com/universalify/-/universalify-2.0.1.tgz#168efc2180964e6386d061e094df61afe239b18d" integrity sha512-gptHNQghINnc/vTGIk0SOFGFNXw7JVrlRUtConJRlvaw6DuX0wO5Jeko9sWrMBhh+PsYAZ7oXAiOnf/UKogyiw== -unpipe@~1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/unpipe/-/unpipe-1.0.0.tgz#b2bf4ee8514aae6165b4817829d21b2ef49904ec" - integrity sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ== - uri-js@^4.2.2: version "4.4.1" resolved "https://registry.yarnpkg.com/uri-js/-/uri-js-4.4.1.tgz#9b1a52595225859e55f669d928f88c6c57f2a77e" @@ -2905,15 +2483,10 @@ util-deprecate@^1.0.1: resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf" integrity sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw== -utils-merge@1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/utils-merge/-/utils-merge-1.0.1.tgz#9f95710f50a267947b2ccc124741c1028427e713" - integrity sha512-pMZTvIkT1d+TFGvDOqodOclx0QWkkgi6Tdoa8gC8ffGAAqz9pzPTZWAybbsHHoED/ztMtkv/VoYTYyShUn81hA== - -vary@~1.1.2: - version "1.1.2" - resolved "https://registry.yarnpkg.com/vary/-/vary-1.1.2.tgz#2299f02c6ded30d4a5961b0b9f74524a18f634fc" - integrity sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg== +utils-merge@1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/utils-merge/-/utils-merge-1.0.0.tgz#0294fb922bb9375153541c4f7096231f287c8af8" + integrity sha512-HwU9SLQEtyo+0uoKXd1nkLqigUWLB+QuNQR4OcmB73eWqksM5ovuqcycks2x043W8XVb75rG1HQ0h93TMXkzQQ== verror@^1.10.0: version "1.10.1" @@ -2931,13 +2504,20 @@ wcwidth@^1.0.1: dependencies: defaults "^1.0.3" -which@^2.0.1, which@^2.0.2: +which@^2.0.1: version "2.0.2" resolved "https://registry.yarnpkg.com/which/-/which-2.0.2.tgz#7c6a8dd0a636a0327e10b59c9286eee93f3f51b1" integrity sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA== dependencies: isexe "^2.0.0" +which@^5.0.0: + version "5.0.0" + resolved "https://registry.yarnpkg.com/which/-/which-5.0.0.tgz#d93f2d93f79834d4363c7d0c23e00d07c466c8d6" + integrity sha512-JEdGzHwwkrbWoGOlIHqQ5gtprKGOenpDHpxE9zVR1bWbOtYRyPPHMe9FaP6x61CmNaTThSkb0DAJte5jD+DmzQ== + dependencies: + isexe "^3.1.1" + "wrap-ansi-cjs@npm:wrap-ansi@^7.0.0", wrap-ansi@^7.0.0: version "7.0.0" resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-7.0.0.tgz#67e145cff510a6a6984bdf1152911d69d2eb9e43" @@ -2976,6 +2556,11 @@ yallist@^4.0.0: resolved "https://registry.yarnpkg.com/yallist/-/yallist-4.0.0.tgz#9bb92790d9c0effec63be73519e11a35019a3a72" integrity sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A== +yallist@^5.0.0: + version "5.0.0" + resolved "https://registry.yarnpkg.com/yallist/-/yallist-5.0.0.tgz#00e2de443639ed0d78fd87de0d27469fbcffb533" + integrity sha512-YgvUTfwqyc7UXVMrB+SImsVYSmTS8X/tSrtdNZMImM+n7+QTriRXyXim0mBrTXNeqzVF0KWGgHPeiyViFFrNDw== + yaml@^2.2.2: version "2.8.2" resolved "https://registry.yarnpkg.com/yaml/-/yaml-2.8.2.tgz#5694f25eca0ce9c3e7a9d9e00ce0ddabbd9e35c5" diff --git a/test/fixtures/lockfiles/HoistedNodeModuleTest/yarn two package.json.txt b/test/fixtures/lockfiles/HoistedNodeModuleTest/yarn two package.json.txt index ff04ec557e4..d9c079f8101 100644 --- a/test/fixtures/lockfiles/HoistedNodeModuleTest/yarn two package.json.txt +++ b/test/fixtures/lockfiles/HoistedNodeModuleTest/yarn two package.json.txt @@ -15,16 +15,7 @@ ajv "^6.12.0" ajv-keywords "^3.4.1" -"@electron/asar@3.2.18": - version "3.2.18" - resolved "https://registry.yarnpkg.com/@electron/asar/-/asar-3.2.18.tgz#fa607f829209bab8b9e0ce6658d3fe81b2cba517" - integrity sha512-2XyvMe3N3Nrs8cV39IKELRHTYUWFKrmqqSY1U+GMlc0jvqjIVnoxhNd2H4JolWQncbJi1DCvb5TNxZuI2fEjWg== - dependencies: - commander "^5.0.0" - glob "^7.1.6" - minimatch "^3.0.4" - -"@electron/asar@^3.2.7": +"@electron/asar@3.4.1", "@electron/asar@^3.3.1": version "3.4.1" resolved "https://registry.yarnpkg.com/@electron/asar/-/asar-3.4.1.tgz#4e9196a4b54fba18c56cd8d5cac67c5bdc588065" integrity sha512-i4/rNPRS84t0vSRa2HorerGRXWyF4vThfHesw0dmcWHp+cspK743UanA0suA5Q5y8kzY2y6YKrvbIUn69BCAiA== @@ -57,20 +48,20 @@ optionalDependencies: global-agent "^3.0.0" -"@electron/node-gyp@git+https://github.com/electron/node-gyp.git#06b29aafb7708acef8b3669835c8a7857ebc92d2": - version "10.2.0-electron.1" - resolved "git+https://github.com/electron/node-gyp.git#06b29aafb7708acef8b3669835c8a7857ebc92d2" +"@electron/get@^3.0.0": + version "3.1.0" + resolved "https://registry.yarnpkg.com/@electron/get/-/get-3.1.0.tgz#22c5a0bd917ab201badeb77bc4ad18cba54cb4ec" + integrity sha512-F+nKc0xW+kVbBRhFzaMgPy3KwmuNTYX1fx6+FxxoSnNgwYX6LD7AKBTWkU0MQ6IBoe7dz069CNkR673sPAgkCQ== dependencies: + debug "^4.1.1" env-paths "^2.2.0" - exponential-backoff "^3.1.1" - glob "^8.1.0" - graceful-fs "^4.2.6" - make-fetch-happen "^10.2.1" - nopt "^6.0.0" - proc-log "^2.0.1" - semver "^7.3.5" - tar "^6.2.1" - which "^2.0.2" + fs-extra "^8.1.0" + got "^11.8.5" + progress "^2.0.3" + semver "^6.2.0" + sumchecker "^3.0.1" + optionalDependencies: + global-agent "^3.0.0" "@electron/notarize@2.5.0": version "2.5.0" @@ -81,10 +72,10 @@ fs-extra "^9.0.1" promise-retry "^2.0.1" -"@electron/osx-sign@1.3.1": - version "1.3.1" - resolved "https://registry.yarnpkg.com/@electron/osx-sign/-/osx-sign-1.3.1.tgz#faf7eeca7ca004a6be541dc4cf7a1bd59ec59b1c" - integrity sha512-BAfviURMHpmb1Yb50YbCxnOY0wfwaLXH5KJ4+80zS0gUkzDX3ec23naTlEqKsN+PwYn+a1cCzM7BJ4Wcd3sGzw== +"@electron/osx-sign@1.3.3": + version "1.3.3" + resolved "https://registry.yarnpkg.com/@electron/osx-sign/-/osx-sign-1.3.3.tgz#af751510488318d9f7663694af85819690d75583" + integrity sha512-KZ8mhXvWv2rIEgMbWZ4y33bDHyUKMXnx4M0sTyPNK/vcB81ImdeY9Ggdqy0SWbMDgmbqyQ+phgejh6V3R2QuSg== dependencies: compare-version "^0.1.2" debug "^4.3.4" @@ -93,32 +84,31 @@ minimist "^1.2.6" plist "^3.0.5" -"@electron/rebuild@3.7.0": - version "3.7.0" - resolved "https://registry.yarnpkg.com/@electron/rebuild/-/rebuild-3.7.0.tgz#82e20c467ddedbb295d7f641592c52e68c141e9f" - integrity sha512-VW++CNSlZwMYP7MyXEbrKjpzEwhB5kDNbzGtiPEjwYysqyTCF+YbNJ210Dj3AjWsGSV4iEEwNkmJN9yGZmVvmw== +"@electron/rebuild@^4.0.3": + version "4.0.3" + resolved "https://registry.yarnpkg.com/@electron/rebuild/-/rebuild-4.0.3.tgz#f022f7e66874920fd16a4d802b8605885cb549d3" + integrity sha512-u9vpTHRMkOYCs/1FLiSVAFZ7FbjsXK+bQuzviJZa+lG7BHZl1nz52/IcGvwa3sk80/fc3llutBkbCq10Vh8WQA== dependencies: - "@electron/node-gyp" "https://github.com/electron/node-gyp#06b29aafb7708acef8b3669835c8a7857ebc92d2" "@malept/cross-spawn-promise" "^2.0.0" - chalk "^4.0.0" debug "^4.1.1" detect-libc "^2.0.1" - fs-extra "^10.0.0" got "^11.7.0" - node-abi "^3.45.0" - node-api-version "^0.2.0" + graceful-fs "^4.2.11" + node-abi "^4.2.0" + node-api-version "^0.2.1" + node-gyp "^11.2.0" ora "^5.1.0" read-binary-file-arch "^1.0.6" semver "^7.3.5" - tar "^6.0.5" + tar "^7.5.6" yargs "^17.0.1" -"@electron/universal@2.0.1": - version "2.0.1" - resolved "https://registry.yarnpkg.com/@electron/universal/-/universal-2.0.1.tgz#7b070ab355e02957388f3dbd68e2c3cd08c448ae" - integrity sha512-fKpv9kg4SPmt+hY7SVBnIYULE9QJl8L3sCfcBsnqbJwwBwAeTLokJ9TRt9y7bK0JAzIW2y78TVVjvnQEms/yyA== +"@electron/universal@2.0.3": + version "2.0.3" + resolved "https://registry.yarnpkg.com/@electron/universal/-/universal-2.0.3.tgz#1680df6ced8f128ca0ff24e29c2165d41d78b3ce" + integrity sha512-Wn9sPYIVFRFl5HmwMJkARCCf7rqK/EurkfQ/rJZ14mHP3iYTjZSIOSVonEAnhWeAXwtw7zOekGRlc6yTtZ0t+g== dependencies: - "@electron/asar" "^3.2.7" + "@electron/asar" "^3.3.1" "@malept/cross-spawn-promise" "^2.0.0" debug "^4.3.1" dir-compare "^4.2.0" @@ -126,23 +116,6 @@ minimatch "^9.0.3" plist "^3.1.0" -"@gar/promisify@^1.1.3": - version "1.1.3" - resolved "https://registry.yarnpkg.com/@gar/promisify/-/promisify-1.1.3.tgz#555193ab2e3bb3b6adc3d551c9c030d9e860daf6" - integrity sha512-k2Ty1JcVojjJFwrg/ThKi2ujJ7XNLYaFGNB/bWT9wGR+oSMJHMa5w+CUq6p/pVrKeNNgA7pCqEcjSnHVoqJQFw== - -"@isaacs/balanced-match@^4.0.1": - version "4.0.1" - resolved "https://registry.yarnpkg.com/@isaacs/balanced-match/-/balanced-match-4.0.1.tgz#3081dadbc3460661b751e7591d7faea5df39dd29" - integrity sha512-yzMTt9lEb8Gv7zRioUilSglI0c0smZ9k5D65677DLWLtWJaXIS3CqcGyUFByYKlnUj6TkjLVs54fBl6+TiGQDQ== - -"@isaacs/brace-expansion@^5.0.0": - version "5.0.0" - resolved "https://registry.yarnpkg.com/@isaacs/brace-expansion/-/brace-expansion-5.0.0.tgz#4b3dabab7d8e75a429414a96bd67bf4c1d13e0f3" - integrity sha512-ZT55BDLV0yv0RBm2czMiZ+SqCGO7AvmOM3G/w2xhVPH+te0aKgFjmBvGlL1dH+ql2tgGO3MVrbb3jCKyvpgnxA== - dependencies: - "@isaacs/balanced-match" "^4.0.1" - "@isaacs/cliui@^8.0.2": version "8.0.2" resolved "https://registry.yarnpkg.com/@isaacs/cliui/-/cliui-8.0.2.tgz#b37667b7bc181c168782259bab42474fbf52b550" @@ -155,6 +128,13 @@ wrap-ansi "^8.1.0" wrap-ansi-cjs "npm:wrap-ansi@^7.0.0" +"@isaacs/fs-minipass@^4.0.0": + version "4.0.1" + resolved "https://registry.yarnpkg.com/@isaacs/fs-minipass/-/fs-minipass-4.0.1.tgz#2d59ae3ab4b38fb4270bfa23d30f8e2e86c7fe32" + integrity sha512-wgm9Ehl2jpeqP3zw/7mo3kRHFp5MEDhqAdwy1fTGkHAwnkGOVsgpvQhL8B5n1qlb01jV3n/bI0ZfZp5lWA1k4w== + dependencies: + minipass "^7.0.4" + "@malept/cross-spawn-promise@^2.0.0": version "2.0.0" resolved "https://registry.yarnpkg.com/@malept/cross-spawn-promise/-/cross-spawn-promise-2.0.0.tgz#d0772de1aa680a0bfb9ba2f32b4c828c7857cb9d" @@ -172,43 +152,24 @@ lodash "^4.17.15" tmp-promise "^3.0.2" -"@nodelib/fs.scandir@2.1.5": - version "2.1.5" - resolved "https://registry.yarnpkg.com/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz#7619c2eb21b25483f6d167548b4cfd5a7488c3d5" - integrity sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g== - dependencies: - "@nodelib/fs.stat" "2.0.5" - run-parallel "^1.1.9" - -"@nodelib/fs.stat@2.0.5", "@nodelib/fs.stat@^2.0.2": - version "2.0.5" - resolved "https://registry.yarnpkg.com/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz#5bd262af94e9d25bd1e71b05deed44876a222e8b" - integrity sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A== - -"@nodelib/fs.walk@^1.2.3": - version "1.2.8" - resolved "https://registry.yarnpkg.com/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz#e95737e8bb6746ddedf69c556953494f196fe69a" - integrity sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg== +"@npmcli/agent@^3.0.0": + version "3.0.0" + resolved "https://registry.yarnpkg.com/@npmcli/agent/-/agent-3.0.0.tgz#1685b1fbd4a1b7bb4f930cbb68ce801edfe7aa44" + integrity sha512-S79NdEgDQd/NGCay6TCoVzXSj74skRZIKJcpJjC5lOq34SZzyI6MqtiiWoiVWoVrTcGjNeC4ipbh1VIHlpfF5Q== dependencies: - "@nodelib/fs.scandir" "2.1.5" - fastq "^1.6.0" + agent-base "^7.1.0" + http-proxy-agent "^7.0.0" + https-proxy-agent "^7.0.1" + lru-cache "^10.0.1" + socks-proxy-agent "^8.0.3" -"@npmcli/fs@^2.1.0": - version "2.1.2" - resolved "https://registry.yarnpkg.com/@npmcli/fs/-/fs-2.1.2.tgz#a9e2541a4a2fec2e69c29b35e6060973da79b865" - integrity sha512-yOJKRvohFOaLqipNtwYB9WugyZKhC/DZC4VYPmpaCzDBrA8YpK3qHZ8/HGscMnE4GqbkLNuVcCnxkeQEdGt6LQ== +"@npmcli/fs@^4.0.0": + version "4.0.0" + resolved "https://registry.yarnpkg.com/@npmcli/fs/-/fs-4.0.0.tgz#a1eb1aeddefd2a4a347eca0fab30bc62c0e1c0f2" + integrity sha512-/xGlezI6xfGO9NwuJlnwz/K14qD1kCSAGtacBHnGzeAIuJGazcp45KP5NuyARXoKb7cwulAGWVsbeSxdG/cb0Q== dependencies: - "@gar/promisify" "^1.1.3" semver "^7.3.5" -"@npmcli/move-file@^2.0.0": - version "2.0.1" - resolved "https://registry.yarnpkg.com/@npmcli/move-file/-/move-file-2.0.1.tgz#26f6bdc379d87f75e55739bab89db525b06100e4" - integrity sha512-mJd2Z5TjYWq/ttPLLGqArdtnC74J6bOzg4rMDnN+p1xTacZ2yPRCk2y0oSWQtygLR9YVQXgOcONrwtnk3JupxQ== - dependencies: - mkdirp "^1.0.4" - rimraf "^3.0.2" - "@pkgjs/parseargs@^0.11.0": version "0.11.0" resolved "https://registry.yarnpkg.com/@pkgjs/parseargs/-/parseargs-0.11.0.tgz#a77ea742fab25775145434eb1d2328cf5013ac33" @@ -219,11 +180,6 @@ resolved "https://registry.yarnpkg.com/@sindresorhus/is/-/is-4.6.0.tgz#3c7c9c46e678feefe7a2e5bb609d3dbd665ffb3f" integrity sha512-t09vSN3MdfsyCHoFcTRCH/iUtG7OJ0CsjzB8cjAmKc/va/kIgeDI/TxsigdncE/4be734m0cvIYwNaV4i2XqAw== -"@sindresorhus/merge-streams@^2.1.0": - version "2.3.0" - resolved "https://registry.yarnpkg.com/@sindresorhus/merge-streams/-/merge-streams-2.3.0.tgz#719df7fb41766bc143369eaa0dd56d8dc87c9958" - integrity sha512-LtoMMhxAlorcGhmFYI+LhPgbPZCkgP6ra1YL604EeF6U98pLlQ3iWIGMdWSC+vWmPBWBNgmDBAhnAobLROJmwg== - "@szmarczak/http-timer@^4.0.5": version "4.0.6" resolved "https://registry.yarnpkg.com/@szmarczak/http-timer/-/http-timer-4.0.6.tgz#b4a914bb62e7c272d4e5989fe4440f812ab1d807" @@ -231,11 +187,6 @@ dependencies: defer-to-connect "^2.0.0" -"@tootallnate/once@2": - version "2.0.0" - resolved "https://registry.yarnpkg.com/@tootallnate/once/-/once-2.0.0.tgz#f544a148d3ab35801c1f633a7441fd87c2e484bf" - integrity sha512-XCuKFP5PS55gnMVu3dty8KPatLqUoy/ZYzDzAGCQ8JNFCkLXzmI7vNHCR+XpbZaMWQK/vQubr7PkYq8g470J/A== - "@types/cacheable-request@^6.0.1": version "6.0.3" resolved "https://registry.yarnpkg.com/@types/cacheable-request/-/cacheable-request-6.0.3.tgz#a430b3260466ca7b5ca5bfd735693b36e7a9d183" @@ -261,9 +212,9 @@ "@types/node" "*" "@types/http-cache-semantics@*": - version "4.0.4" - resolved "https://registry.yarnpkg.com/@types/http-cache-semantics/-/http-cache-semantics-4.0.4.tgz#b979ebad3919799c979b17c72621c0bc0a31c6c4" - integrity sha512-1m0bIFVc7eJWyve9S0RnuRgcQqF/Xd5QsUZAZeQFr1Q3/p9JWoQQEqmVy+DPTNpGXwhgIetAoYF8JSc33q29QA== + version "4.2.0" + resolved "https://registry.yarnpkg.com/@types/http-cache-semantics/-/http-cache-semantics-4.2.0.tgz#f6a7788f438cbfde15f29acad46512b4c01913b3" + integrity sha512-L3LgimLHXtGkWikKnsPg0/VFx9OGZaC+eN1u4r+OB1XRqH3meBIAVC2zr1WdMH+RHmnRkqliQAOHNJ/E0j/e0Q== "@types/keyv@^3.1.4": version "3.1.4" @@ -278,11 +229,11 @@ integrity sha512-GsCCIZDE/p3i96vtEqx+7dBUGXrc7zeSK3wwPHIaRThS+9OhWIXRqzs4d6k1SVU8g91DrNRWxWUGhp5KXQb2VA== "@types/node@*": - version "25.0.3" - resolved "https://registry.yarnpkg.com/@types/node/-/node-25.0.3.tgz#79b9ac8318f373fbfaaf6e2784893efa9701f269" - integrity sha512-W609buLVRVmeW693xKfzHeIV6nJGGz98uCPfeXI1ELMLXVeKYZ9m15fAMSaUPBHYLGFsVRcMmSCksQOrZV9BYA== + version "25.3.3" + resolved "https://registry.yarnpkg.com/@types/node/-/node-25.3.3.tgz#605862544ee7ffd7a936bcbf0135a14012f1e549" + integrity sha512-DpzbrH7wIcBaJibpKo9nnSQL0MTRdnWttGyE5haGwK86xgMOkFLp7vEyfQPGLOJh5wNYiJ3V9PmUMDhV9u8kkQ== dependencies: - undici-types "~7.16.0" + undici-types "~7.18.0" "@types/node@^16.11.26": version "16.18.126" @@ -326,55 +277,33 @@ resolved "https://registry.yarnpkg.com/@yarnpkg/lockfile/-/lockfile-1.1.0.tgz#e77a97fbd345b76d83245edcd17d393b1b41fb31" integrity sha512-GpSwvyXOcOOlV70vbnzjj4fW5xW/FdUF6nQEt1ENy7m4ZCczi1+/buVUPAqmGfqznsORNFzUMjctTIp8a9tuCQ== -abbrev@^1.0.0: - version "1.1.1" - resolved "https://registry.yarnpkg.com/abbrev/-/abbrev-1.1.1.tgz#f8f2c887ad10bf67f634f005b6987fed3179aac8" - integrity sha512-nne9/IiQ/hzIhY6pdDnbBtz7DjPTKrY00P/zvPSm5pOFkl6xuGrGnXn/VtTNNfNtAfZ9/1RtehkszU9qcTii0Q== - -accepts@~1.3.8: - version "1.3.8" - resolved "https://registry.yarnpkg.com/accepts/-/accepts-1.3.8.tgz#0bf0be125b67014adcb0b0921e62db7bffe16b2e" - integrity sha512-PYAthTa2m2VKxuvSD3DPC/Gy+U+sOA1LAuT8mkmRuvw+NACSaeXEQ+NHcVF7rONl6qcaxV3Uuemwawk+7+SJLw== - dependencies: - mime-types "~2.1.34" - negotiator "0.6.3" +abbrev@^3.0.0: + version "3.0.1" + resolved "https://registry.yarnpkg.com/abbrev/-/abbrev-3.0.1.tgz#8ac8b3b5024d31464fe2a5feeea9f4536bf44025" + integrity sha512-AO2ac6pjRB3SJmGJo+v5/aK6Omggp6fsLrs6wN9bd35ulu4cCwaAU9+7ZhXjeqHVkaHThLuzH0nZr0YpCDhygg== -agent-base@6, agent-base@^6.0.2: - version "6.0.2" - resolved "https://registry.yarnpkg.com/agent-base/-/agent-base-6.0.2.tgz#49fff58577cfee3f37176feab4c22e00f86d7f77" - integrity sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ== +accepts@1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/accepts/-/accepts-1.0.0.tgz#3604c765586c3b9cf7877b6937cdbd4587f947dc" + integrity sha512-2GdyQ5yRXA5MZi1gmU/XUFQTo7FtXsR2Jt90pl1pQftbsRdXQn69Mycn7xNGxVVmu1xdzZKe/GyMHnDlcV7ojg== dependencies: - debug "4" + mime "~1.2.11" + negotiator "~0.3.0" agent-base@^7.1.0, agent-base@^7.1.2: version "7.1.4" resolved "https://registry.yarnpkg.com/agent-base/-/agent-base-7.1.4.tgz#e3cd76d4c548ee895d3c3fd8dc1f6c5b9032e7a8" integrity sha512-MnA+YT8fwfJPgBx3m60MNqakm30XOkyIoH1y6huTQvC0PwZG7ki8NacLBcrPbNoo8vEZy7Jpuk7+jMO+CUovTQ== -agentkeepalive@^4.2.1: - version "4.6.0" - resolved "https://registry.yarnpkg.com/agentkeepalive/-/agentkeepalive-4.6.0.tgz#35f73e94b3f40bf65f105219c623ad19c136ea6a" - integrity sha512-kja8j7PjmncONqaTsB8fQ+wE2mSU2DJ9D4XKoJ5PFWIdRMa6SLSN1ff4mOr4jCbfRSsxR4keIiySJU0N9T5hIQ== - dependencies: - humanize-ms "^1.2.1" - -aggregate-error@^3.0.0: - version "3.1.0" - resolved "https://registry.yarnpkg.com/aggregate-error/-/aggregate-error-3.1.0.tgz#92670ff50f5359bdb7a3e0d40d0ec30c5737687a" - integrity sha512-4I7Td01quW/RpocfNayFdFVk1qSuoh0E7JrbRJ16nH01HhKFQ88INq9Sd+nd72zqRySlr9BmDA8xlEJ6vJMrYA== - dependencies: - clean-stack "^2.0.0" - indent-string "^4.0.0" - ajv-keywords@^3.4.1: version "3.5.2" resolved "https://registry.yarnpkg.com/ajv-keywords/-/ajv-keywords-3.5.2.tgz#31f29da5ab6e00d1c2d329acf7b5929614d5014d" integrity sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ== ajv@^6.10.0, ajv@^6.12.0: - version "6.12.6" - resolved "https://registry.yarnpkg.com/ajv/-/ajv-6.12.6.tgz#baf5a62e802b07d977034586f8c3baf5adf26df4" - integrity sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g== + version "6.14.0" + resolved "https://registry.yarnpkg.com/ajv/-/ajv-6.14.0.tgz#fd067713e228210636ebb08c60bd3765d6dbe73a" + integrity sha512-IWrosm/yrn43eiKqkfkHis7QioDleaXQHdDVPKg0FSwwd/DuvyX79TZnFOnYpB7dcsFAMmtFztZuXPDvSePkFw== dependencies: fast-deep-equal "^3.1.1" fast-json-stable-stringify "^2.0.0" @@ -386,7 +315,7 @@ ansi-regex@^5.0.1: resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-5.0.1.tgz#082cb2c89c9fe8659a311a53bd6a4dc5301db304" integrity sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ== -ansi-regex@^6.0.1: +ansi-regex@^6.2.2: version "6.2.2" resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-6.2.2.tgz#60216eea464d864597ce2832000738a0589650c1" integrity sha512-Bq3SmSpyFHaWjPk8If9yc6svM8c56dB5BAtW4Qbw5jHTwwXXcTLoRMkpDJp6VL0XzlWaCHTXrkFURMYmD0sLqg== @@ -408,55 +337,53 @@ app-builder-bin@5.0.0-alpha.12: resolved "https://registry.yarnpkg.com/app-builder-bin/-/app-builder-bin-5.0.0-alpha.12.tgz#2daf82f8badc698e0adcc95ba36af4ff0650dc80" integrity sha512-j87o0j6LqPL3QRr8yid6c+Tt5gC7xNfYo6uQIQkorAC6MpeayVMZrEDzKmJJ/Hlv7EnOQpaRm53k6ktDYZyB6w== -app-builder-lib@26.0.12: - version "26.0.12" - resolved "https://registry.yarnpkg.com/app-builder-lib/-/app-builder-lib-26.0.12.tgz#2e33df936e0f78d4266b058ece90308ea981eefb" - integrity sha512-+/CEPH1fVKf6HowBUs6LcAIoRcjeqgvAeoSE+cl7Y7LndyQ9ViGPYibNk7wmhMHzNgHIuIbw4nWADPO+4mjgWw== +app-builder-lib@26.8.1: + version "26.8.1" + resolved "https://registry.yarnpkg.com/app-builder-lib/-/app-builder-lib-26.8.1.tgz#315c893bf1f5882cc6cd174cfcd00535dbb76786" + integrity sha512-p0Im/Dx5C4tmz8QEE1Yn4MkuPC8PrnlRneMhWJj7BBXQfNTJUshM/bp3lusdEsDbvvfJZpXWnYesgSLvwtM2Zw== dependencies: "@develar/schema-utils" "~2.6.5" - "@electron/asar" "3.2.18" + "@electron/asar" "3.4.1" "@electron/fuses" "^1.8.0" + "@electron/get" "^3.0.0" "@electron/notarize" "2.5.0" - "@electron/osx-sign" "1.3.1" - "@electron/rebuild" "3.7.0" - "@electron/universal" "2.0.1" + "@electron/osx-sign" "1.3.3" + "@electron/rebuild" "^4.0.3" + "@electron/universal" "2.0.3" "@malept/flatpak-bundler" "^0.4.0" "@types/fs-extra" "9.0.13" async-exit-hook "^2.0.1" - builder-util "26.0.11" - builder-util-runtime "9.3.1" + builder-util "26.8.1" + builder-util-runtime "9.5.1" chromium-pickle-js "^0.2.0" - config-file-ts "0.2.8-rc1" + ci-info "4.3.1" debug "^4.3.4" dotenv "^16.4.5" dotenv-expand "^11.0.6" ejs "^3.1.8" - electron-publish "26.0.11" + electron-publish "26.8.1" fs-extra "^10.1.0" hosted-git-info "^4.1.0" - is-ci "^3.0.0" isbinaryfile "^5.0.0" + jiti "^2.4.2" js-yaml "^4.1.0" json5 "^2.2.3" lazy-val "^1.0.5" - minimatch "^10.0.0" + minimatch "^10.0.3" plist "3.1.0" + proper-lockfile "^4.1.2" resedit "^1.7.0" - semver "^7.3.8" - tar "^6.1.12" + semver "~7.7.3" + tar "^7.5.7" temp-file "^3.4.0" tiny-async-pool "1.3.0" + which "^5.0.0" argparse@^2.0.1: version "2.0.1" resolved "https://registry.yarnpkg.com/argparse/-/argparse-2.0.1.tgz#246f50f3ca78a3240f6c997e8a9bd1eac49e4b38" integrity sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q== -array-flatten@1.1.1: - version "1.1.1" - resolved "https://registry.yarnpkg.com/array-flatten/-/array-flatten-1.1.1.tgz#9a5f699051b1e7073328f2a008968b64ea2955d2" - integrity sha512-PCVAQswWemu6UdxsDFFX/+gVeYqKAod3D3UVm91jHwynguOwAvYPhx8nNlM++NqRcK6CxxpUafjmhIdKiHibqg== - assert-plus@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-1.0.0.tgz#f12e0f3c5d77b0b1cdd9146942e4e96c1e4dd525" @@ -492,6 +419,11 @@ balanced-match@^1.0.0: resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.2.tgz#e83e3a7e3f300b34cb9d87f615fa0cbf357690ee" integrity sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw== +balanced-match@^4.0.2: + version "4.0.4" + resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-4.0.4.tgz#bfb10662feed8196a2c62e7c68e17720c274179a" + integrity sha512-BLrgEcRTwX2o6gGxGOCNyMvGSp35YofuYzw9h1IMTRmKqttAZZVU67bdb9Pr2vUHA8+j3i2tJfjO6C6+4myGTA== + base64-js@^1.3.1, base64-js@^1.5.1: version "1.5.1" resolved "https://registry.yarnpkg.com/base64-js/-/base64-js-1.5.1.tgz#1b1b440160a5bf7ad40b650f095963481903930a" @@ -506,24 +438,6 @@ bl@^4.1.0: inherits "^2.0.4" readable-stream "^3.4.0" -body-parser@~1.20.3: - version "1.20.4" - resolved "https://registry.yarnpkg.com/body-parser/-/body-parser-1.20.4.tgz#f8e20f4d06ca8a50a71ed329c15dccad1cdc547f" - integrity sha512-ZTgYYLMOXY9qKU/57FAo8F+HA2dGX7bqGc71txDRC1rS4frdFI5R7NhluHxH6M0YItAP0sHB4uqAOcYKxO6uGA== - dependencies: - bytes "~3.1.2" - content-type "~1.0.5" - debug "2.6.9" - depd "2.0.0" - destroy "~1.2.0" - http-errors "~2.0.1" - iconv-lite "~0.4.24" - on-finished "~2.4.1" - qs "~6.14.0" - raw-body "~2.5.3" - type-is "~1.6.18" - unpipe "~1.0.0" - boolean@^3.0.1: version "3.2.0" resolved "https://registry.yarnpkg.com/boolean/-/boolean-3.2.0.tgz#9e5294af4e98314494cbb17979fa54ca159f116b" @@ -537,13 +451,20 @@ brace-expansion@^1.1.7: balanced-match "^1.0.0" concat-map "0.0.1" -brace-expansion@^2.0.1: +brace-expansion@^2.0.1, brace-expansion@^2.0.2: version "2.0.2" resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-2.0.2.tgz#54fc53237a613d854c7bd37463aad17df87214e7" integrity sha512-Jt0vHyM+jmUBqojB7E1NIYadt0vI0Qxjxd2TErW94wDz+E2LAm5vKMXXwg6ZZBTHPuUlDgQHKXvjGBdfcF1ZDQ== dependencies: balanced-match "^1.0.0" +brace-expansion@^5.0.2: + version "5.0.4" + resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-5.0.4.tgz#614daaecd0a688f660bbbc909a8748c3d80d4336" + integrity sha512-h+DEnpVvxmfVefa4jFbCf5HdH5YMDXRsmKflpf1pILZWRFlTbJpxeU55nJl4Smt5HQaGzg1o6RHFPJaOqnmBDg== + dependencies: + balanced-match "^4.0.2" + braces@^3.0.3: version "3.0.3" resolved "https://registry.yarnpkg.com/braces/-/braces-3.0.3.tgz#490332f40919452272d55a8480adc0c441358789" @@ -551,6 +472,11 @@ braces@^3.0.3: dependencies: fill-range "^7.1.1" +buffer-crc32@0.2.1: + version "0.2.1" + resolved "https://registry.yarnpkg.com/buffer-crc32/-/buffer-crc32-0.2.1.tgz#be3e5382fc02b6d6324956ac1af98aa98b08534c" + integrity sha512-vMfBIRp/wjlpueSz7Sb0OmO7C5SH58SSmbsT8G4D48YfO/Zgbr29xNXMpZVSC14ujVJfrZZH1Bl+kXYRQPuvfQ== + buffer-crc32@~0.2.3: version "0.2.13" resolved "https://registry.yarnpkg.com/buffer-crc32/-/buffer-crc32-0.2.13.tgz#0d333e3f00eac50aa1454abd30ef8c2a5d9a7242" @@ -569,30 +495,29 @@ buffer@^5.1.0, buffer@^5.5.0: base64-js "^1.3.1" ieee754 "^1.1.13" -builder-util-runtime@9.3.1: - version "9.3.1" - resolved "https://registry.yarnpkg.com/builder-util-runtime/-/builder-util-runtime-9.3.1.tgz#0daedde0f6d381f2a00a50a407b166fe7dca1a67" - integrity sha512-2/egrNDDnRaxVwK3A+cJq6UOlqOdedGA7JPqCeJjN2Zjk1/QB/6QUi3b714ScIGS7HafFXTyzJEOr5b44I3kvQ== +builder-util-runtime@9.5.1: + version "9.5.1" + resolved "https://registry.yarnpkg.com/builder-util-runtime/-/builder-util-runtime-9.5.1.tgz#74125fb374d1ecbf472ae1787485485ff7619702" + integrity sha512-qt41tMfgHTllhResqM5DcnHyDIWNgzHvuY2jDcYP9iaGpkWxTUzV6GQjDeLnlR1/DtdlcsWQbA7sByMpmJFTLQ== dependencies: debug "^4.3.4" sax "^1.2.4" -builder-util@26.0.11: - version "26.0.11" - resolved "https://registry.yarnpkg.com/builder-util/-/builder-util-26.0.11.tgz#ad85b92c93f2b976b973e1d87337e0c6813fcb8f" - integrity sha512-xNjXfsldUEe153h1DraD0XvDOpqGR0L5eKFkdReB7eFW5HqysDZFfly4rckda6y9dF39N3pkPlOblcfHKGw+uA== +builder-util@26.8.1: + version "26.8.1" + resolved "https://registry.yarnpkg.com/builder-util/-/builder-util-26.8.1.tgz#50fdfc2d4ffeb6f739af363b5bd60c49c95d4170" + integrity sha512-pm1lTYbGyc90DHgCDO7eo8Rl4EqKLciayNbZqGziqnH9jrlKe8ZANGdityLZU+pJh16dfzjAx2xQq9McuIPEtw== dependencies: "7zip-bin" "~5.2.0" "@types/debug" "^4.1.6" app-builder-bin "5.0.0-alpha.12" - builder-util-runtime "9.3.1" + builder-util-runtime "9.5.1" chalk "^4.1.2" cross-spawn "^7.0.6" debug "^4.3.4" fs-extra "^10.1.0" http-proxy-agent "^7.0.0" https-proxy-agent "^7.0.0" - is-ci "^3.0.0" js-yaml "^4.1.0" sanitize-filename "^1.6.3" source-map-support "^0.5.19" @@ -600,34 +525,23 @@ builder-util@26.0.11: temp-file "^3.4.0" tiny-async-pool "1.3.0" -bytes@~3.1.2: - version "3.1.2" - resolved "https://registry.yarnpkg.com/bytes/-/bytes-3.1.2.tgz#8b0beeb98605adf1b128fa4386403c009e0221a5" - integrity sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg== - -cacache@^16.1.0: - version "16.1.3" - resolved "https://registry.yarnpkg.com/cacache/-/cacache-16.1.3.tgz#a02b9f34ecfaf9a78c9f4bc16fceb94d5d67a38e" - integrity sha512-/+Emcj9DAXxX4cwlLmRI9c166RuL3w30zp4R7Joiv2cQTtTtA+jeuCAjH3ZlGnYS3tKENSrKhAzVVP9GVyzeYQ== - dependencies: - "@npmcli/fs" "^2.1.0" - "@npmcli/move-file" "^2.0.0" - chownr "^2.0.0" - fs-minipass "^2.1.0" - glob "^8.0.1" - infer-owner "^1.0.4" - lru-cache "^7.7.1" - minipass "^3.1.6" - minipass-collect "^1.0.2" +cacache@^19.0.1: + version "19.0.1" + resolved "https://registry.yarnpkg.com/cacache/-/cacache-19.0.1.tgz#3370cc28a758434c85c2585008bd5bdcff17d6cd" + integrity sha512-hdsUxulXCi5STId78vRVYEtDAjq99ICAUktLTeTYsLoTE6Z8dS0c8pWNCxwdrk9YfJeobDZc2Y186hD/5ZQgFQ== + dependencies: + "@npmcli/fs" "^4.0.0" + fs-minipass "^3.0.0" + glob "^10.2.2" + lru-cache "^10.0.1" + minipass "^7.0.3" + minipass-collect "^2.0.1" minipass-flush "^1.0.5" minipass-pipeline "^1.2.4" - mkdirp "^1.0.4" - p-map "^4.0.0" - promise-inflight "^1.0.1" - rimraf "^3.0.2" - ssri "^9.0.0" - tar "^6.1.11" - unique-filename "^2.0.0" + p-map "^7.0.2" + ssri "^12.0.0" + tar "^7.4.3" + unique-filename "^4.0.0" cacheable-lookup@^5.0.3: version "5.0.4" @@ -665,7 +579,7 @@ call-bind@^1.0.8: get-intrinsic "^1.2.4" set-function-length "^1.2.2" -call-bound@^1.0.2, call-bound@^1.0.4: +call-bound@^1.0.4: version "1.0.4" resolved "https://registry.yarnpkg.com/call-bound/-/call-bound-1.0.4.tgz#238de935d2a2a692928c538c7ccfa91067fd062a" integrity sha512-+ys997U96po4Kx/ABpBCqhA9EuxJaQWDQg7295H4hBphv3IZg0boBKuwYpt4YXp6MZ5AmZQnU/tyMTlRpaSejg== @@ -673,7 +587,7 @@ call-bound@^1.0.2, call-bound@^1.0.4: call-bind-apply-helpers "^1.0.2" get-intrinsic "^1.3.0" -chalk@^4.0.0, chalk@^4.1.0, chalk@^4.1.1, chalk@^4.1.2: +chalk@^4.1.0, chalk@^4.1.1, chalk@^4.1.2: version "4.1.2" resolved "https://registry.yarnpkg.com/chalk/-/chalk-4.1.2.tgz#aac4e2b7734a740867aeb16bf02aad556a1e7a01" integrity sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA== @@ -681,25 +595,30 @@ chalk@^4.0.0, chalk@^4.1.0, chalk@^4.1.1, chalk@^4.1.2: ansi-styles "^4.1.0" supports-color "^7.1.0" -chownr@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/chownr/-/chownr-2.0.0.tgz#15bfbe53d2eab4cf70f18a8cd68ebe5b3cb1dece" - integrity sha512-bIomtDF5KGpdogkLd9VspvFzk9KfpyyGlS8YFVZl7TGPBHL5snIOnxeshwVgPteQ9b4Eydl+pVbIyE1DcvCWgQ== +chownr@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/chownr/-/chownr-3.0.0.tgz#9855e64ecd240a9cc4267ce8a4aa5d24a1da15e4" + integrity sha512-+IxzY9BZOQd/XuYPRmrvEVjF/nqj5kgT4kEq7VofrDoM1MxoRjEWkrCC3EtLi59TVawxTAn+orJwFQcrqEN1+g== chromium-pickle-js@^0.2.0: version "0.2.0" resolved "https://registry.yarnpkg.com/chromium-pickle-js/-/chromium-pickle-js-0.2.0.tgz#04a106672c18b085ab774d983dfa3ea138f22205" integrity sha512-1R5Fho+jBq0DDydt+/vHWj5KJNJCKdARKOCwZUen84I5BreWoLqRLANH1U87eJy1tiASPtMnGqJJq0ZsLoRPOw== -ci-info@^3.2.0, ci-info@^3.7.0: +ci-info@4.3.1: + version "4.3.1" + resolved "https://registry.yarnpkg.com/ci-info/-/ci-info-4.3.1.tgz#355ad571920810b5623e11d40232f443f16f1daa" + integrity sha512-Wdy2Igu8OcBpI2pZePZ5oWjPC38tmDVx5WKUXKwlLYkA0ozo85sLsLvkBbBn/sZaSCMFOGZJ14fvW9t5/d7kdA== + +ci-info@^3.7.0: version "3.9.0" resolved "https://registry.yarnpkg.com/ci-info/-/ci-info-3.9.0.tgz#4279a62028a7b1f262f3473fc9605f5e218c59b4" integrity sha512-NIxF55hv4nSqQswkAeiOi1r83xy8JldOFDTWiug55KBu9Jnblncd2U6ViHmYgHf01TPZS77NJBhBMKdWj9HQMQ== -clean-stack@^2.0.0: - version "2.2.0" - resolved "https://registry.yarnpkg.com/clean-stack/-/clean-stack-2.2.0.tgz#ee8472dbb129e727b31e8a10a427dee9dfe4008b" - integrity sha512-4diC9HaTE+KRAMWhDhrGOECgWZxoevMc5TlkObMqNSsVU62PYzXZ/SMTjzyGAFF1YusgxGcSWTEXBhp0CPwQ1A== +ci-info@^4.2.0: + version "4.4.0" + resolved "https://registry.yarnpkg.com/ci-info/-/ci-info-4.4.0.tgz#7d54eff9f54b45b62401c26032696eb59c8bd18c" + integrity sha512-77PSwercCZU2Fc4sX94eF8k8Pxte6JAwL4/ICZLFjJLqegs7kCuAsqqj/70NQF6TvDpgFjkubQB2FW2ZZddvQg== cli-cursor@^3.1.0: version "3.1.0" @@ -776,35 +695,15 @@ concat-map@0.0.1: resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" integrity sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg== -config-file-ts@0.2.8-rc1: - version "0.2.8-rc1" - resolved "https://registry.yarnpkg.com/config-file-ts/-/config-file-ts-0.2.8-rc1.tgz#fb7fc6ccb2e313f69dbeb78f1db0b00038049de0" - integrity sha512-GtNECbVI82bT4RiDIzBSVuTKoSHufnU7Ce7/42bkWZJZFLjmDF2WBpVsvRkhKCfKBnTBb3qZrBwPpFBU/Myvhg== - dependencies: - glob "^10.3.12" - typescript "^5.4.3" - -content-disposition@~0.5.4: - version "0.5.4" - resolved "https://registry.yarnpkg.com/content-disposition/-/content-disposition-0.5.4.tgz#8b82b4efac82512a02bb0b1dcec9d2c5e8eb5bfe" - integrity sha512-FveZTNuGw04cxlAiWbzi6zTAL/lhehaWbTtgluJh4/E95DqMwTmha3KZN1aAWA8cFIhHzMZUvLevkw5Rqk+tSQ== - dependencies: - safe-buffer "5.2.1" - -content-type@~1.0.4, content-type@~1.0.5: - version "1.0.5" - resolved "https://registry.yarnpkg.com/content-type/-/content-type-1.0.5.tgz#8b773162656d1d1086784c8f23a54ce6d73d7918" - integrity sha512-nTjqfcBFEipKdXCv4YDQWCfmcLZKm81ldF0pAopTvyrFGVbcR6P/VAAd5G7N+0tTr8QqiU0tFadD6FK4NtJwOA== - -cookie-signature@~1.0.6: - version "1.0.7" - resolved "https://registry.yarnpkg.com/cookie-signature/-/cookie-signature-1.0.7.tgz#ab5dd7ab757c54e60f37ef6550f481c426d10454" - integrity sha512-NXdYc3dLr47pBkpUCHtKSwIOQXLVn8dZEuywboCOJY/osA0wFSLlSawr3KN8qXJEyX66FcONTH8EIlVuK0yyFA== +cookie-signature@1.0.3: + version "1.0.3" + resolved "https://registry.yarnpkg.com/cookie-signature/-/cookie-signature-1.0.3.tgz#91cd997cc51fb641595738c69cda020328f50ff9" + integrity sha512-/KzKzsm0OlguYov01OlOpTkX5MhBKUmfL/KMum7R80rPKheb9AwUzr78TwtBt1OdbnWrt4X+wxbTfcQ3noZqHw== -cookie@~0.7.1: - version "0.7.2" - resolved "https://registry.yarnpkg.com/cookie/-/cookie-0.7.2.tgz#556369c472a2ba910f2979891b526b3436237ed7" - integrity sha512-yki5XnKuf750l50uGTllt6kKILY4nQ1eNIQatoXEByZ5dWgnKqbnqmTrBE5B4N7lrMJKQ2ytWMiTO2o0v6Ew/w== +cookie@0.1.0: + version "0.1.0" + resolved "https://registry.yarnpkg.com/cookie/-/cookie-0.1.0.tgz#90eb469ddce905c866de687efc43131d8801f9d0" + integrity sha512-YSNOBX085/nzHvrTLEHYHoNdkvpLU1MPjU3r1IGawudZJjfuqnRNIFrcOJJ7bfwC+HWbHL1Y4yMkC0O+HWjV7w== core-util-is@1.0.2: version "1.0.2" @@ -827,20 +726,18 @@ cross-spawn@^7.0.1, cross-spawn@^7.0.3, cross-spawn@^7.0.6: shebang-command "^2.0.0" which "^2.0.1" -debug@2.6.9: - version "2.6.9" - resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.9.tgz#5d128515df134ff327e90a4c93f4e077a536341f" - integrity sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA== - dependencies: - ms "2.0.0" - -debug@4, debug@^4.1.0, debug@^4.1.1, debug@^4.3.1, debug@^4.3.3, debug@^4.3.4: +debug@*, debug@4, debug@^4.1.0, debug@^4.1.1, debug@^4.3.1, debug@^4.3.4: version "4.4.3" resolved "https://registry.yarnpkg.com/debug/-/debug-4.4.3.tgz#c6ae432d9bd9662582fce08709b038c58e9e3d6a" integrity sha512-RGwwWnwQvkVfavKVt22FGLw+xYSdzARwm0ru6DhTVA3umU5hZc28V3kO4stgYryrTlLpuvgI9GiijltAjNbcqA== dependencies: ms "^2.1.3" +"debug@>= 0.7.3 < 1": + version "0.8.1" + resolved "https://registry.yarnpkg.com/debug/-/debug-0.8.1.tgz#20ff4d26f5e422cb68a1bacbbb61039ad8c1c130" + integrity sha512-HlXEJm99YsRjLJ8xmuz0Lq8YUwrv7hAJkTEr6/Em3sUlSUNl0UdFA+1SrY4fnykeq1FVkUEUtwRGHs9VvlYbGA== + decompress-response@^6.0.0: version "6.0.0" resolved "https://registry.yarnpkg.com/decompress-response/-/decompress-response-6.0.0.tgz#ca387612ddb7e104bd16d85aab00d5ecf09c66fc" @@ -878,42 +775,11 @@ define-properties@^1.2.1: has-property-descriptors "^1.0.0" object-keys "^1.1.1" -del-cli@6: - version "6.0.0" - resolved "https://registry.yarnpkg.com/del-cli/-/del-cli-6.0.0.tgz#7822d0ffd5b73449a506a586d839711485bfb119" - integrity sha512-9nitGV2W6KLFyya4qYt4+9AKQFL+c0Ehj5K7V7IwlxTc6RMCfQUGY9E9pLG6e8TQjtwXpuiWIGGZb3mfVxyZkw== - dependencies: - del "^8.0.0" - meow "^13.2.0" - -del@^8.0.0: - version "8.0.1" - resolved "https://registry.yarnpkg.com/del/-/del-8.0.1.tgz#86772fe3a8c9f91bad0d7c6f79e04c6f310e50ac" - integrity sha512-gPqh0mKTPvaUZGAuHbrBUYKZWBNAeHG7TU3QH5EhVwPMyKvmfJaNXhcD2jTcXsJRRcffuho4vaYweu80dRrMGA== - dependencies: - globby "^14.0.2" - is-glob "^4.0.3" - is-path-cwd "^3.0.0" - is-path-inside "^4.0.0" - p-map "^7.0.2" - presentable-error "^0.0.1" - slash "^5.1.0" - delayed-stream@~1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/delayed-stream/-/delayed-stream-1.0.0.tgz#df3ae199acadfb7d440aaae0b29e2272b24ec619" integrity sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ== -depd@2.0.0, depd@~2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/depd/-/depd-2.0.0.tgz#b696163cc757560d09cf22cc8fad1571b79e76df" - integrity sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw== - -destroy@1.2.0, destroy@~1.2.0: - version "1.2.0" - resolved "https://registry.yarnpkg.com/destroy/-/destroy-1.2.0.tgz#4803735509ad8be552934c67df614f94e66fa015" - integrity sha512-2sJGJTaXIIaR1w4iJSNoN0hnMY7Gpc/n8D4qSCJw8QqFWXf7cuAgnEHxBpweaVcPevC2l3KpjYCx3NypQQgaJg== - detect-libc@^2.0.1: version "2.1.2" resolved "https://registry.yarnpkg.com/detect-libc/-/detect-libc-2.1.2.tgz#689c5dcdc1900ef5583a4cb9f6d7b473742074ad" @@ -932,14 +798,13 @@ dir-compare@^4.2.0: minimatch "^3.0.5" p-limit "^3.1.0 " -dmg-builder@26.0.12: - version "26.0.12" - resolved "https://registry.yarnpkg.com/dmg-builder/-/dmg-builder-26.0.12.tgz#6996ad0bab80a861c9a7b33ee9734d4f60566b46" - integrity sha512-59CAAjAhTaIMCN8y9kD573vDkxbs1uhDcrFLHSgutYdPcGOU35Rf95725snvzEOy4BFB7+eLJ8djCNPmGwG67w== +dmg-builder@26.8.1: + version "26.8.1" + resolved "https://registry.yarnpkg.com/dmg-builder/-/dmg-builder-26.8.1.tgz#df99aa790676ac2a2ac0333bbadbef3b6076cb03" + integrity sha512-glMJgnTreo8CFINujtAhCgN96QAqApDMZ8Vl1r8f0QT8QprvC1UCltV4CcWj20YoIyLZx6IUskaJZ0NV8fokcg== dependencies: - app-builder-lib "26.0.12" - builder-util "26.0.11" - builder-util-runtime "9.3.1" + app-builder-lib "26.8.1" + builder-util "26.8.1" fs-extra "^10.1.0" iconv-lite "^0.6.2" js-yaml "^4.1.0" @@ -986,11 +851,6 @@ eastasianwidth@^0.2.0: resolved "https://registry.yarnpkg.com/eastasianwidth/-/eastasianwidth-0.2.0.tgz#696ce2ec0aa0e6ea93a397ffcf24aa7840c827cb" integrity sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA== -ee-first@1.1.1: - version "1.1.1" - resolved "https://registry.yarnpkg.com/ee-first/-/ee-first-1.1.1.tgz#590c61156b0ae2f4f0255732a158b266bc56b21d" - integrity sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow== - ejs@^3.1.8: version "3.1.10" resolved "https://registry.yarnpkg.com/ejs/-/ejs-3.1.10.tgz#69ab8358b14e896f80cc39e62087b88500c3ac3b" @@ -998,48 +858,48 @@ ejs@^3.1.8: dependencies: jake "^10.8.5" -electron-builder@26: - version "26.0.12" - resolved "https://registry.yarnpkg.com/electron-builder/-/electron-builder-26.0.12.tgz#797af2e70efdd96c9ea5d8a8164b8728c90d65ff" - integrity sha512-cD1kz5g2sgPTMFHjLxfMjUK5JABq3//J4jPswi93tOPFz6btzXYtK5NrDt717NRbukCUDOrrvmYVOWERlqoiXA== +electron-builder@26.8.1: + version "26.8.1" + resolved "https://registry.yarnpkg.com/electron-builder/-/electron-builder-26.8.1.tgz#d49056b2fe5d37f0f94aa2eb0e1db38f261fc8c0" + integrity sha512-uWhx1r74NGpCagG0ULs/P9Nqv2nsoo+7eo4fLUOB8L8MdWltq9odW/uuLXMFCDGnPafknYLZgjNX0ZIFRzOQAw== dependencies: - app-builder-lib "26.0.12" - builder-util "26.0.11" - builder-util-runtime "9.3.1" + app-builder-lib "26.8.1" + builder-util "26.8.1" + builder-util-runtime "9.5.1" chalk "^4.1.2" - dmg-builder "26.0.12" + ci-info "^4.2.0" + dmg-builder "26.8.1" fs-extra "^10.1.0" - is-ci "^3.0.0" lazy-val "^1.0.5" simple-update-notifier "2.0.0" yargs "^17.6.2" -electron-publish@26.0.11: - version "26.0.11" - resolved "https://registry.yarnpkg.com/electron-publish/-/electron-publish-26.0.11.tgz#92c9329a101af2836d9d228c82966eca1eee9a7b" - integrity sha512-a8QRH0rAPIWH9WyyS5LbNvW9Ark6qe63/LqDB7vu2JXYpi0Gma5Q60Dh4tmTqhOBQt0xsrzD8qE7C+D7j+B24A== +electron-publish@26.8.1: + version "26.8.1" + resolved "https://registry.yarnpkg.com/electron-publish/-/electron-publish-26.8.1.tgz#6a32fa8eed0d41971dda53072bea06b9932be583" + integrity sha512-q+jrSTIh/Cv4eGZa7oVR+grEJo/FoLMYBAnSL5GCtqwUpr1T+VgKB/dn1pnzxIxqD8S/jP1yilT9VrwCqINR4w== dependencies: "@types/fs-extra" "^9.0.11" - builder-util "26.0.11" - builder-util-runtime "9.3.1" + builder-util "26.8.1" + builder-util-runtime "9.5.1" chalk "^4.1.2" - form-data "^4.0.0" + form-data "^4.0.5" fs-extra "^10.1.0" lazy-val "^1.0.5" mime "^2.5.2" -electron-updater@6: - version "6.6.2" - resolved "https://registry.yarnpkg.com/electron-updater/-/electron-updater-6.6.2.tgz#3e65e044f1a99b00d61e200e24de8e709c69ce99" - integrity sha512-Cr4GDOkbAUqRHP5/oeOmH/L2Bn6+FQPxVLZtPbcmKZC63a1F3uu5EefYOssgZXG3u/zBlubbJ5PJdITdMVggbw== +electron-updater@6.8.3: + version "6.8.3" + resolved "https://registry.yarnpkg.com/electron-updater/-/electron-updater-6.8.3.tgz#bb0c8ef6509e5c67663f6481a729244d1bce21fb" + integrity sha512-Z6sgw3jgbikWKXei1ENdqFOxBP0WlXg3TtKfz0rgw2vIZFJUyI4pD7ZN7jrkm7EoMK+tcm/qTnPUdqfZukBlBQ== dependencies: - builder-util-runtime "9.3.1" + builder-util-runtime "9.5.1" fs-extra "^10.1.0" js-yaml "^4.1.0" lazy-val "^1.0.5" lodash.escaperegexp "^4.1.2" lodash.isequal "^4.5.0" - semver "^7.6.3" + semver "~7.7.3" tiny-typed-emitter "^2.1.0" electron@23.2.0: @@ -1061,11 +921,6 @@ emoji-regex@^9.2.2: resolved "https://registry.yarnpkg.com/emoji-regex/-/emoji-regex-9.2.2.tgz#840c8803b0d8047f4ff0cf963176b32d4ef3ed72" integrity sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg== -encodeurl@~2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/encodeurl/-/encodeurl-2.0.0.tgz#7b8ea898077d7e409d3ac45474ea38eaf0857a58" - integrity sha512-Q0n9HRi4m6JuGIV1eFlmvJB7ZEVxu93IrMyiMsGC0lrMJMWzRgx6WGquyfQgZVb31vhGgXnfmPNNXmxnOkRBrg== - encoding@^0.1.13: version "0.1.13" resolved "https://registry.yarnpkg.com/encoding/-/encoding-0.1.13.tgz#56574afdd791f54a8e9b2785c0582a2d26210fa9" @@ -1127,62 +982,43 @@ escalade@^3.1.1: resolved "https://registry.yarnpkg.com/escalade/-/escalade-3.2.0.tgz#011a3f69856ba189dffa7dc8fcce99d2a87903e5" integrity sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA== -escape-html@~1.0.3: - version "1.0.3" - resolved "https://registry.yarnpkg.com/escape-html/-/escape-html-1.0.3.tgz#0258eae4d3d0c0974de1c169188ef0051d1d1988" - integrity sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow== +escape-html@1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/escape-html/-/escape-html-1.0.1.tgz#181a286ead397a39a92857cfb1d43052e356bff0" + integrity sha512-z6kAnok8fqVTra7Yu77dZF2Y6ETJlxH58wN38wNyuNQLm8xXdKnfNrlSmfXsTePWP03rRVUKHubtUwanwUi7+g== escape-string-regexp@^4.0.0: version "4.0.0" resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz#14ba83a5d373e3d311e5afca29cf5bfad965bf34" integrity sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA== -etag@~1.8.1: - version "1.8.1" - resolved "https://registry.yarnpkg.com/etag/-/etag-1.8.1.tgz#41ae2eeb65efa62268aebfea83ac7d79299b0887" - integrity sha512-aIL5Fx7mawVa300al2BnEE4iNvo1qETxLrPI/o05L7z6go7fCw1J6EQmbK4FmJ2AS7kgVF/KEZWufBfdClMcPg== - exponential-backoff@^3.1.1: version "3.1.3" resolved "https://registry.yarnpkg.com/exponential-backoff/-/exponential-backoff-3.1.3.tgz#51cf92c1c0493c766053f9d3abee4434c244d2f6" integrity sha512-ZgEeZXj30q+I0EN+CbSSpIyPaJ5HVQD18Z1m+u1FXbAeT94mr1zw50q4q6jiiC447Nl/YTcIYSAftiGqetwXCA== -express@4: - version "4.22.1" - resolved "https://registry.yarnpkg.com/express/-/express-4.22.1.tgz#1de23a09745a4fffdb39247b344bb5eaff382069" - integrity sha512-F2X8g9P1X7uCPZMA3MVf9wcTqlyNp7IhH5qPCI0izhaOIYXaW9L535tGA3qmjRzpH+bZczqq7hVKxTR4NWnu+g== - dependencies: - accepts "~1.3.8" - array-flatten "1.1.1" - body-parser "~1.20.3" - content-disposition "~0.5.4" - content-type "~1.0.4" - cookie "~0.7.1" - cookie-signature "~1.0.6" - debug "2.6.9" - depd "2.0.0" - encodeurl "~2.0.0" - escape-html "~1.0.3" - etag "~1.8.1" - finalhandler "~1.3.1" - fresh "~0.5.2" - http-errors "~2.0.0" - merge-descriptors "1.0.3" - methods "~1.1.2" - on-finished "~2.4.1" - parseurl "~1.3.3" - path-to-regexp "~0.1.12" - proxy-addr "~2.0.7" - qs "~6.14.0" - range-parser "~1.2.1" - safe-buffer "5.2.1" - send "~0.19.0" - serve-static "~1.16.2" - setprototypeof "1.2.0" - statuses "~2.0.1" - type-is "~1.6.18" - utils-merge "1.0.1" - vary "~1.1.2" +express@4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/express/-/express-4.0.0.tgz#274dc82933c9f574cc38a0ce5ea8172be9c6b094" + integrity sha512-HP2D9TkAYTAfau6FklzmchQQH/7Dh/JmbrbiJanV80rO12Kc00z5tDrqahBG3fR6x/RuUZvpEwiQ91b7UhJ8qQ== + dependencies: + accepts "1.0.0" + buffer-crc32 "0.2.1" + cookie "0.1.0" + cookie-signature "1.0.3" + debug ">= 0.7.3 < 1" + escape-html "1.0.1" + fresh "0.2.2" + merge-descriptors "0.0.2" + methods "0.1.0" + parseurl "1.0.1" + path-to-regexp "0.1.2" + qs "0.6.6" + range-parser "1.0.0" + send "0.2.0" + serve-static "1.0.1" + type-is "1.0.0" + utils-merge "1.0.0" extract-zip@^2.0.1: version "2.0.1" @@ -1205,29 +1041,11 @@ fast-deep-equal@^3.1.1: resolved "https://registry.yarnpkg.com/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz#3a7d56b559d6cbc3eb512325244e619a65c6c525" integrity sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q== -fast-glob@^3.3.3: - version "3.3.3" - resolved "https://registry.yarnpkg.com/fast-glob/-/fast-glob-3.3.3.tgz#d06d585ce8dba90a16b0505c543c3ccfb3aeb818" - integrity sha512-7MptL8U0cqcFdzIzwOTHoilX9x5BrNqye7Z/LuC7kCMRio1EMSyqRK3BEAUD7sXRq4iT4AzTVuZdhgQ2TCvYLg== - dependencies: - "@nodelib/fs.stat" "^2.0.2" - "@nodelib/fs.walk" "^1.2.3" - glob-parent "^5.1.2" - merge2 "^1.3.0" - micromatch "^4.0.8" - fast-json-stable-stringify@^2.0.0: version "2.1.0" resolved "https://registry.yarnpkg.com/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz#874bf69c6f404c2b5d99c481341399fd55892633" integrity sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw== -fastq@^1.6.0: - version "1.19.1" - resolved "https://registry.yarnpkg.com/fastq/-/fastq-1.19.1.tgz#d50eaba803c8846a883c16492821ebcd2cda55f5" - integrity sha512-GwLTyxkCXjXbxqIhTsMI2Nui8huMPtnxg7krajPJAjnEG/iiOS7i+zCtWGZR9G0NBKbXKh6X9m9UIsYX/N6vvQ== - dependencies: - reusify "^1.0.4" - fd-slicer@~1.1.0: version "1.1.0" resolved "https://registry.yarnpkg.com/fd-slicer/-/fd-slicer-1.1.0.tgz#25c7c89cb1f9077f8891bbe61d8f390eae256f1e" @@ -1235,10 +1053,15 @@ fd-slicer@~1.1.0: dependencies: pend "~1.2.0" +fdir@^6.5.0: + version "6.5.0" + resolved "https://registry.yarnpkg.com/fdir/-/fdir-6.5.0.tgz#ed2ab967a331ade62f18d077dae192684d50d350" + integrity sha512-tIbYtZbucOs0BRGqPJkshJUYdL+SDH7dVM8gjy+ERp3WAUjLEFJE+02kanyHtwjWOnwrKYBiwAmM0p4kLJAnXg== + filelist@^1.0.4: - version "1.0.4" - resolved "https://registry.yarnpkg.com/filelist/-/filelist-1.0.4.tgz#f78978a1e944775ff9e62e744424f215e58352b5" - integrity sha512-w1cEuf3S+DrLCQL7ET6kz+gmlJdbq9J7yXCSjK/OZCPA+qEN1WyF4ZAf0YYJa4/shHJra2t/d/r8SV4Ji+x+8Q== + version "1.0.6" + resolved "https://registry.yarnpkg.com/filelist/-/filelist-1.0.6.tgz#1e8870942a7c636c862f7c49b9394937b6a995a3" + integrity sha512-5giy2PkLYY1cP39p17Ech+2xlpTRL9HLspOfEgm0L6CwBXBTgsK5ou0JtzYuepxkaQ/tvhCFIJ5uXo0OrM2DxA== dependencies: minimatch "^5.0.1" @@ -1249,19 +1072,6 @@ fill-range@^7.1.1: dependencies: to-regex-range "^5.0.1" -finalhandler@~1.3.1: - version "1.3.2" - resolved "https://registry.yarnpkg.com/finalhandler/-/finalhandler-1.3.2.tgz#1ebc2228fc7673aac4a472c310cc05b77d852b88" - integrity sha512-aA4RyPcd3badbdABGDuTXCMTtOneUCAYH/gxoYRTZlIJdF0YPWuGqiAsIrhNnnqdXGswYk6dGujem4w80UJFhg== - dependencies: - debug "2.6.9" - encodeurl "~2.0.0" - escape-html "~1.0.3" - on-finished "~2.4.1" - parseurl "~1.3.3" - statuses "~2.0.2" - unpipe "~1.0.0" - find-yarn-workspace-root@^2.0.0: version "2.0.0" resolved "https://registry.yarnpkg.com/find-yarn-workspace-root/-/find-yarn-workspace-root-2.0.0.tgz#f47fb8d239c900eb78179aa81b66673eac88f7bd" @@ -1277,7 +1087,7 @@ foreground-child@^3.1.0: cross-spawn "^7.0.6" signal-exit "^4.0.1" -form-data@^4.0.0: +form-data@^4.0.5: version "4.0.5" resolved "https://registry.yarnpkg.com/form-data/-/form-data-4.0.5.tgz#b49e48858045ff4cbf6b03e1805cebcad3679053" integrity sha512-8RipRLol37bNs2bhoV67fiTEvdTrbMUYcFTiy3+wuuOnUog2QBHCZWXDRijWQfAkhBj2Uf5UnVaiWwA5vdd82w== @@ -1288,20 +1098,25 @@ form-data@^4.0.0: hasown "^2.0.2" mime-types "^2.1.12" -forwarded@0.2.0: +fresh@0.2.0: version "0.2.0" - resolved "https://registry.yarnpkg.com/forwarded/-/forwarded-0.2.0.tgz#2269936428aad4c15c7ebe9779a84bf0b2a81811" - integrity sha512-buRG0fpBtRHSTCOASe6hD258tEubFoRLb4ZNA6NxMVHNw2gOcwHo9wyablzMzOA5z9xA9L1KNjk/Nt6MT9aYow== + resolved "https://registry.yarnpkg.com/fresh/-/fresh-0.2.0.tgz#bfd9402cf3df12c4a4c310c79f99a3dde13d34a7" + integrity sha512-ckGdAuSRr1wBmnq7CsW7eU37DBwQxHx3vW8foJUIrF56rkOy8Osm6Fe8KSwemwyKejivKki7jVBgpBpBJexmrw== + +fresh@0.2.2: + version "0.2.2" + resolved "https://registry.yarnpkg.com/fresh/-/fresh-0.2.2.tgz#9731dcf5678c7faeb44fb903c4f72df55187fa77" + integrity sha512-ZGGi8GROK//ijm2gB33sUuN9TjN1tC/dvG4Bt4j6IWrVGpMmudUBCxx+Ir7qePsdREfkpQC4FL8W0jeSOsgv1w== -fresh@~0.5.2: - version "0.5.2" - resolved "https://registry.yarnpkg.com/fresh/-/fresh-0.5.2.tgz#3d8cadd90d976569fa835ab1f8e4b23a105605a7" - integrity sha512-zJ2mQYM18rEFOudeV4GShTGIQ7RbzA7ozbU9I/XBpm7kqgMywgmylMwXHxZJmkVoYkna9d2pVXVXPdYTP9ej8Q== +fresh@~0.2.1: + version "0.2.4" + resolved "https://registry.yarnpkg.com/fresh/-/fresh-0.2.4.tgz#3582499206c9723714190edd74b4604feb4a614c" + integrity sha512-mnBGgIFRNu54GtbkXy6+QKPYW/b5joAURorA8ELeJc/5BBNph6Go1NmHa9dt08ghFnhGuLenrUmNO8Za1CwEUQ== -fs-extra@11, fs-extra@^11.1.1: - version "11.3.2" - resolved "https://registry.yarnpkg.com/fs-extra/-/fs-extra-11.3.2.tgz#c838aeddc6f4a8c74dd15f85e11fe5511bfe02a4" - integrity sha512-Xr9F6z6up6Ws+NjzMCZc6WXg2YFRlrLP9NQDO3VQrWrfiojdhS56TzueT88ze0uBdCTwEIhQ3ptnmKeWGFAe0A== +fs-extra@11.0.0: + version "11.0.0" + resolved "https://registry.yarnpkg.com/fs-extra/-/fs-extra-11.0.0.tgz#5c50cf225ab1b16804cabd4249b7e58feb4bdbe7" + integrity sha512-4YxRvMi4P5C3WQTvdRfrv5UVqbISpqjORFQAW5QPiKAauaxNCwrEdIi6pG3tDFhKKpMen+enEhHIzB/tvIO+/w== dependencies: graceful-fs "^4.2.0" jsonfile "^6.0.1" @@ -1316,6 +1131,15 @@ fs-extra@^10.0.0, fs-extra@^10.1.0: jsonfile "^6.0.1" universalify "^2.0.0" +fs-extra@^11.1.1: + version "11.3.3" + resolved "https://registry.yarnpkg.com/fs-extra/-/fs-extra-11.3.3.tgz#a27da23b72524e81ac6c3815cc0179b8c74c59ee" + integrity sha512-VWSRii4t0AFm6ixFFmLLx1t7wS1gh+ckoa84aOeapGum0h+EZd1EhEumSB+ZdDLnEPuucsVB9oB7cxJHap6Afg== + dependencies: + graceful-fs "^4.2.0" + jsonfile "^6.0.1" + universalify "^2.0.0" + fs-extra@^8.1.0: version "8.1.0" resolved "https://registry.yarnpkg.com/fs-extra/-/fs-extra-8.1.0.tgz#49d43c45a88cd9677668cb7be1b46efdb8d2e1c0" @@ -1335,12 +1159,12 @@ fs-extra@^9.0.0, fs-extra@^9.0.1: jsonfile "^6.0.1" universalify "^2.0.0" -fs-minipass@^2.0.0, fs-minipass@^2.1.0: - version "2.1.0" - resolved "https://registry.yarnpkg.com/fs-minipass/-/fs-minipass-2.1.0.tgz#7f5036fdbf12c63c169190cbe4199c852271f9fb" - integrity sha512-V/JgOLFCS+R6Vcq0slCuaeWEdNC3ouDlJMNIsacH2VtALiu9mV4LPrHc5cDl8k5aw6J8jwgWWpiTo5RYhmIzvg== +fs-minipass@^3.0.0: + version "3.0.3" + resolved "https://registry.yarnpkg.com/fs-minipass/-/fs-minipass-3.0.3.tgz#79a85981c4dc120065e96f62086bf6f9dc26cc54" + integrity sha512-XUBA9XClHbnJWSfBzjkm6RvPsyg3sryZt06BEQoXcF7EK/xpGaQYJgQKDJSUH5SGZ76Y7pFx1QBnXz09rU5Fbw== dependencies: - minipass "^3.0.0" + minipass "^7.0.3" fs.realpath@^1.0.0: version "1.0.0" @@ -1357,7 +1181,7 @@ get-caller-file@^2.0.5: resolved "https://registry.yarnpkg.com/get-caller-file/-/get-caller-file-2.0.5.tgz#4f94412a82db32f36e3b0b9741f8a97feb031f7e" integrity sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg== -get-intrinsic@^1.2.4, get-intrinsic@^1.2.5, get-intrinsic@^1.2.6, get-intrinsic@^1.3.0: +get-intrinsic@^1.2.4, get-intrinsic@^1.2.6, get-intrinsic@^1.3.0: version "1.3.0" resolved "https://registry.yarnpkg.com/get-intrinsic/-/get-intrinsic-1.3.0.tgz#743f0e3b6964a93a5491ed1bffaae054d7f98d01" integrity sha512-9fSjSaos/fRIVIp+xSJlE6lfwhES7LNtKaCBIamHsjr2na1BiABJPo0mOjjz8GJDURarmCPGqaiVg5mfjb98CQ== @@ -1388,14 +1212,7 @@ get-stream@^5.1.0: dependencies: pump "^3.0.0" -glob-parent@^5.1.2: - version "5.1.2" - resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-5.1.2.tgz#869832c58034fe68a4093c17dc15e8340d8401c4" - integrity sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow== - dependencies: - is-glob "^4.0.1" - -glob@^10.3.12: +glob@^10.2.2: version "10.5.0" resolved "https://registry.yarnpkg.com/glob/-/glob-10.5.0.tgz#8ec0355919cd3338c28428a23d4f24ecc5fe738c" integrity sha512-DfXN8DfhJ7NH3Oe7cFmu3NCu1wKbkReJ8TorzSAFbSKrlNaQSKfIzqYqVY8zlbs2NLBbWpRiU52GX2PbaBVNkg== @@ -1419,17 +1236,6 @@ glob@^7.1.3, glob@^7.1.6: once "^1.3.0" path-is-absolute "^1.0.0" -glob@^8.0.1, glob@^8.1.0: - version "8.1.0" - resolved "https://registry.yarnpkg.com/glob/-/glob-8.1.0.tgz#d388f656593ef708ee3e34640fdfb99a9fd1c33e" - integrity sha512-r8hpEjiQEYlF2QU0df3dS+nxxSIreXQS1qRhMJM0Q5NDdR386C7jb7Hwwod8Fgiuex+k0GFjgft18yvxm5XoCQ== - dependencies: - fs.realpath "^1.0.0" - inflight "^1.0.4" - inherits "2" - minimatch "^5.0.1" - once "^1.3.0" - global-agent@^3.0.0: version "3.0.0" resolved "https://registry.yarnpkg.com/global-agent/-/global-agent-3.0.0.tgz#ae7cd31bd3583b93c5a16437a1afe27cc33a1ab6" @@ -1450,18 +1256,6 @@ globalthis@^1.0.1: define-properties "^1.2.1" gopd "^1.0.1" -globby@^14.0.2: - version "14.1.0" - resolved "https://registry.yarnpkg.com/globby/-/globby-14.1.0.tgz#138b78e77cf5a8d794e327b15dce80bf1fb0a73e" - integrity sha512-0Ia46fDOaT7k4og1PDW4YbodWWr3scS2vAr2lTbsplOt2WkKp0vQbkI9wKis/T5LV/dqPjO3bpS/z6GTJB82LA== - dependencies: - "@sindresorhus/merge-streams" "^2.1.0" - fast-glob "^3.3.3" - ignore "^7.0.3" - path-type "^6.0.0" - slash "^5.1.0" - unicorn-magic "^0.3.0" - gopd@^1.0.1, gopd@^1.2.0: version "1.2.0" resolved "https://registry.yarnpkg.com/gopd/-/gopd-1.2.0.tgz#89f56b8217bdbc8802bd299df6d7f1081d7e51a1" @@ -1484,7 +1278,7 @@ got@^11.7.0, got@^11.8.5: p-cancelable "^2.0.0" responselike "^2.0.0" -graceful-fs@^4.1.11, graceful-fs@^4.1.6, graceful-fs@^4.2.0, graceful-fs@^4.2.6: +graceful-fs@^4.1.11, graceful-fs@^4.1.6, graceful-fs@^4.2.0, graceful-fs@^4.2.11, graceful-fs@^4.2.4, graceful-fs@^4.2.6: version "4.2.11" resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.2.11.tgz#4183e4e8bf08bb6e05bbb2f7d2e0c8f712ca40e3" integrity sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ== @@ -1527,31 +1321,11 @@ hosted-git-info@^4.1.0: dependencies: lru-cache "^6.0.0" -http-cache-semantics@^4.0.0, http-cache-semantics@^4.1.0: +http-cache-semantics@^4.0.0, http-cache-semantics@^4.1.1: version "4.2.0" resolved "https://registry.yarnpkg.com/http-cache-semantics/-/http-cache-semantics-4.2.0.tgz#205f4db64f8562b76a4ff9235aa5279839a09dd5" integrity sha512-dTxcvPXqPvXBQpq5dUr6mEMJX4oIEFv6bwom3FDwKRDsuIjjJGANqhBuoAn9c1RQJIdAKav33ED65E2ys+87QQ== -http-errors@~2.0.0, http-errors@~2.0.1: - version "2.0.1" - resolved "https://registry.yarnpkg.com/http-errors/-/http-errors-2.0.1.tgz#36d2f65bc909c8790018dd36fb4d93da6caae06b" - integrity sha512-4FbRdAX+bSdmo4AUFuS0WNiPz8NgFt+r8ThgNWmlrjQjt1Q7ZR9+zTlce2859x4KSXrwIsaeTqDoKQmtP8pLmQ== - dependencies: - depd "~2.0.0" - inherits "~2.0.4" - setprototypeof "~1.2.0" - statuses "~2.0.2" - toidentifier "~1.0.1" - -http-proxy-agent@^5.0.0: - version "5.0.0" - resolved "https://registry.yarnpkg.com/http-proxy-agent/-/http-proxy-agent-5.0.0.tgz#5129800203520d434f142bc78ff3c170800f2b43" - integrity sha512-n2hY8YdoRE1i7r6M0w9DIw5GgZN0G25P8zLCRQ8rjXtTU3vsNFBI/vWK/UIeE6g5MUUz6avwAPXmL6Fy9D/90w== - dependencies: - "@tootallnate/once" "2" - agent-base "6" - debug "4" - http-proxy-agent@^7.0.0: version "7.0.2" resolved "https://registry.yarnpkg.com/http-proxy-agent/-/http-proxy-agent-7.0.2.tgz#9a8b1f246866c028509486585f62b8f2c18c270e" @@ -1568,15 +1342,7 @@ http2-wrapper@^1.0.0-beta.5.2: quick-lru "^5.1.1" resolve-alpn "^1.0.0" -https-proxy-agent@^5.0.0: - version "5.0.1" - resolved "https://registry.yarnpkg.com/https-proxy-agent/-/https-proxy-agent-5.0.1.tgz#c59ef224a04fe8b754f3db0063a25ea30d0005d6" - integrity sha512-dFcAjpTQFgoLMzC2VwU+C/CbS7uRL0lWmxDITmqm7C+7F0Odmj6s9l6alZc6AELXhrnggM2CeWSXHGOdX2YtwA== - dependencies: - agent-base "6" - debug "4" - -https-proxy-agent@^7.0.0: +https-proxy-agent@^7.0.0, https-proxy-agent@^7.0.1: version "7.0.6" resolved "https://registry.yarnpkg.com/https-proxy-agent/-/https-proxy-agent-7.0.6.tgz#da8dfeac7da130b05c2ba4b59c9b6cd66611a6b9" integrity sha512-vK9P5/iUfdl95AI+JVyUuIcVtd4ofvtrOr3HNtM2yxC9bnMbEdp3x01OhQNnjb8IJYi38VlTE3mBXwcfvywuSw== @@ -1584,13 +1350,6 @@ https-proxy-agent@^7.0.0: agent-base "^7.1.2" debug "4" -humanize-ms@^1.2.1: - version "1.2.1" - resolved "https://registry.yarnpkg.com/humanize-ms/-/humanize-ms-1.2.1.tgz#c46e3159a293f6b896da29316d8b6fe8bb79bbed" - integrity sha512-Fl70vYtsAFb/C06PTS9dZBo7ihau+Tu/DNCk/OyHhea07S+aeMWpFFkUaXRa8fI+ScZbEI8dfSxwY7gxZ9SAVQ== - dependencies: - ms "^2.0.0" - iconv-corefoundation@^1.1.7: version "1.1.7" resolved "https://registry.yarnpkg.com/iconv-corefoundation/-/iconv-corefoundation-1.1.7.tgz#31065e6ab2c9272154c8b0821151e2c88f1b002a" @@ -1606,38 +1365,16 @@ iconv-lite@^0.6.2: dependencies: safer-buffer ">= 2.1.2 < 3.0.0" -iconv-lite@~0.4.24: - version "0.4.24" - resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.24.tgz#2022b4b25fbddc21d2f524974a474aafe733908b" - integrity sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA== - dependencies: - safer-buffer ">= 2.1.2 < 3" - ieee754@^1.1.13: version "1.2.1" resolved "https://registry.yarnpkg.com/ieee754/-/ieee754-1.2.1.tgz#8eb7a10a63fff25d15a57b001586d177d1b0d352" integrity sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA== -ignore@^7.0.3: - version "7.0.5" - resolved "https://registry.yarnpkg.com/ignore/-/ignore-7.0.5.tgz#4cb5f6cd7d4c7ab0365738c7aea888baa6d7efd9" - integrity sha512-Hs59xBNfUIunMFgWAbGX5cq6893IbWg4KnrjbYwX3tx0ztorVgTDA6B2sxf8ejHJ4wz8BqGUMYlnzNBer5NvGg== - imurmurhash@^0.1.4: version "0.1.4" resolved "https://registry.yarnpkg.com/imurmurhash/-/imurmurhash-0.1.4.tgz#9218b9b2b928a238b13dc4fb6b6d576f231453ea" integrity sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA== -indent-string@^4.0.0: - version "4.0.0" - resolved "https://registry.yarnpkg.com/indent-string/-/indent-string-4.0.0.tgz#624f8f4497d619b2d9768531d58f4122854d7251" - integrity sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg== - -infer-owner@^1.0.4: - version "1.0.4" - resolved "https://registry.yarnpkg.com/infer-owner/-/infer-owner-1.0.4.tgz#c4cefcaa8e51051c2a40ba2ce8a3d27295af9467" - integrity sha512-IClj+Xz94+d7irH5qRyfJonOdfTzuDaifE6ZPWfx0N0+/ATZCbuTPq2prFl526urkQd90WyUKIh1DfBQ2hMz9A== - inflight@^1.0.4: version "1.0.6" resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9" @@ -1646,7 +1383,7 @@ inflight@^1.0.4: once "^1.3.0" wrappy "1" -inherits@2, inherits@^2.0.3, inherits@^2.0.4, inherits@~2.0.4: +inherits@2, inherits@^2.0.3, inherits@^2.0.4: version "2.0.4" resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.4.tgz#0fa2c64f932917c3433a0ded55363aae37416b7c" integrity sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ== @@ -1656,65 +1393,26 @@ ip-address@^10.0.1: resolved "https://registry.yarnpkg.com/ip-address/-/ip-address-10.1.0.tgz#d8dcffb34d0e02eb241427444a6e23f5b0595aa4" integrity sha512-XXADHxXmvT9+CRxhXg56LJovE+bmWnEWB78LB83VZTprKTmaC5QfruXocxzTZ2Kl0DNwKuBdlIhjL8LeY8Sf8Q== -ipaddr.js@1.9.1: - version "1.9.1" - resolved "https://registry.yarnpkg.com/ipaddr.js/-/ipaddr.js-1.9.1.tgz#bff38543eeb8984825079ff3a2a8e6cbd46781b3" - integrity sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g== - -is-ci@^3.0.0: - version "3.0.1" - resolved "https://registry.yarnpkg.com/is-ci/-/is-ci-3.0.1.tgz#db6ecbed1bd659c43dac0f45661e7674103d1867" - integrity sha512-ZYvCgrefwqoQ6yTyYUbQu64HsITZ3NfKX1lzaEYdkTDcfKzzCI/wthRRYKkdjHKFVgNiXKAKm65Zo1pk2as/QQ== - dependencies: - ci-info "^3.2.0" - is-docker@^2.0.0: version "2.2.1" resolved "https://registry.yarnpkg.com/is-docker/-/is-docker-2.2.1.tgz#33eeabe23cfe86f14bde4408a02c0cfb853acdaa" integrity sha512-F+i2BKsFrH66iaUFc0woD8sLy8getkwTwtOBjvs56Cx4CgJDeKQeqfz8wAYiSb8JOprWhHH5p77PbmYCvvUuXQ== -is-extglob@^2.1.1: - version "2.1.1" - resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-2.1.1.tgz#a88c02535791f02ed37c76a1b9ea9773c833f8c2" - integrity sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ== - is-fullwidth-code-point@^3.0.0: version "3.0.0" resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz#f116f8064fe90b3f7844a38997c0b75051269f1d" integrity sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg== -is-glob@^4.0.1, is-glob@^4.0.3: - version "4.0.3" - resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-4.0.3.tgz#64f61e42cbbb2eec2071a9dac0b28ba1e65d5084" - integrity sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg== - dependencies: - is-extglob "^2.1.1" - is-interactive@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/is-interactive/-/is-interactive-1.0.0.tgz#cea6e6ae5c870a7b0a0004070b7b587e0252912e" integrity sha512-2HvIEKRoqS62guEC+qBjpvRubdX910WCMuJTZ+I9yvqKU2/12eSL549HMwtabb4oupdj2sMP50k+XJfB/8JE6w== -is-lambda@^1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/is-lambda/-/is-lambda-1.0.1.tgz#3d9877899e6a53efc0160504cde15f82e6f061d5" - integrity sha512-z7CMFGNrENq5iFB9Bqo64Xk6Y9sg+epq1myIcdHaGnbMTYOxvzsEtdYqQUylB7LxfkvgrrjP32T6Ywciio9UIQ== - is-number@^7.0.0: version "7.0.0" resolved "https://registry.yarnpkg.com/is-number/-/is-number-7.0.0.tgz#7535345b896734d5f80c4d06c50955527a14f12b" integrity sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng== -is-path-cwd@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/is-path-cwd/-/is-path-cwd-3.0.0.tgz#889b41e55c8588b1eb2a96a61d05740a674521c7" - integrity sha512-kyiNFFLU0Ampr6SDZitD/DwUo4Zs1nSdnygUBqsu3LooL00Qvb5j+UnvApUn/TTj1J3OuE6BTdQ5rudKmU2ZaA== - -is-path-inside@^4.0.0: - version "4.0.0" - resolved "https://registry.yarnpkg.com/is-path-inside/-/is-path-inside-4.0.0.tgz#805aeb62c47c1b12fc3fd13bfb3ed1e7430071db" - integrity sha512-lJJV/5dYS+RcL8uQdBDW9c9uWFLLBNRyFhnAKXw5tVqLlKZ4RMGZKv+YQ/IA3OhD+RpbJa1LLFM1FQPGyIXvOA== - is-unicode-supported@^0.1.0: version "0.1.0" resolved "https://registry.yarnpkg.com/is-unicode-supported/-/is-unicode-supported-0.1.0.tgz#3f26c76a809593b52bfa2ecb5710ed2779b522a7" @@ -1747,6 +1445,11 @@ isexe@^2.0.0: resolved "https://registry.yarnpkg.com/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10" integrity sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw== +isexe@^3.1.1: + version "3.1.5" + resolved "https://registry.yarnpkg.com/isexe/-/isexe-3.1.5.tgz#42e368f68d5e10dadfee4fda7b550bc2d8892dc9" + integrity sha512-6B3tLtFqtQS4ekarvLVMZ+X+VlvQekbe4taUkf/rhVO3d/h0M2rfARm/pXLcPEsjjMsFgrFgSrhQIxcSVrBz8w== + jackspeak@^3.1.2: version "3.4.3" resolved "https://registry.yarnpkg.com/jackspeak/-/jackspeak-3.4.3.tgz#8833a9d89ab4acde6188942bd1c53b6390ed5a8a" @@ -1765,6 +1468,11 @@ jake@^10.8.5: filelist "^1.0.4" picocolors "^1.1.1" +jiti@^2.4.2: + version "2.6.1" + resolved "https://registry.yarnpkg.com/jiti/-/jiti-2.6.1.tgz#178ef2fc9a1a594248c20627cd820187a4d78d92" + integrity sha512-ekilCSN1jwRvIbgeg/57YFh8qQDNbwDb9xT/qu2DAHbFFZUicIl4ygVaAvzveMhMVr3LnpSKTNnwt8PoOfmKhQ== + js-yaml@^4.1.0: version "4.1.1" resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-4.1.1.tgz#854c292467705b699476e1a2decc0c8a3458806b" @@ -1854,9 +1562,9 @@ lodash.isequal@^4.5.0: integrity sha512-pDo3lu8Jhfjqls6GkMgpahsF9kCyayhgykjyLMNFTKWrpVdAQtYyB4muAMWozBB4ig/dtWAmsMxLEI8wuz+DYQ== lodash@^4.17.15: - version "4.17.21" - resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.21.tgz#679591c564c3bffaae8454cf0b3df370c3d6911c" - integrity sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg== + version "4.17.23" + resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.23.tgz#f113b0378386103be4f6893388c73d0bde7f2c5a" + integrity sha512-LgVTMpQtIopCi79SJeDiP0TfWi5CNEc/L/aRdTh3yIvmZXTnheWpKjSZhnvMl8iXbC1tFg9gdHHDMLoV7CnG+w== log-symbols@^4.1.0: version "4.1.0" @@ -1871,7 +1579,7 @@ lowercase-keys@^2.0.0: resolved "https://registry.yarnpkg.com/lowercase-keys/-/lowercase-keys-2.0.0.tgz#2603e78b7b4b0006cbca2fbcc8a3202558ac9479" integrity sha512-tqNXrS78oMOE73NMxK4EMLQsQowWf8jKooH9g7xPavRT706R6bkQJ6DY2Te7QukaZsulxa30wQ7bk0pm4XiHmA== -lru-cache@^10.2.0: +lru-cache@^10.0.1, lru-cache@^10.2.0: version "10.4.3" resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-10.4.3.tgz#410fc8a17b70e598013df257c2446b7f3383f119" integrity sha512-JNAzZcXrCt42VGLuYz0zfAzDfAvJWW6AfYlDBQyDV5DClI2m5sAmK+OIO7s59XfsRsWHp02jAJrRadPRGTt6SQ== @@ -1883,32 +1591,22 @@ lru-cache@^6.0.0: dependencies: yallist "^4.0.0" -lru-cache@^7.7.1: - version "7.18.3" - resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-7.18.3.tgz#f793896e0fd0e954a59dfdd82f0773808df6aa89" - integrity sha512-jumlc0BIUrS3qJGgIkWZsyfAM7NCWiBcCDhnd+3NNM5KbBmLTgHVfWBcg6W+rLUsIpzpERPsvwUP7CckAQSOoA== - -make-fetch-happen@^10.2.1: - version "10.2.1" - resolved "https://registry.yarnpkg.com/make-fetch-happen/-/make-fetch-happen-10.2.1.tgz#f5e3835c5e9817b617f2770870d9492d28678164" - integrity sha512-NgOPbRiaQM10DYXvN3/hhGVI2M5MtITFryzBGxHM5p4wnFxsVCbxkrBrDsk+EZ5OB4jEOT7AjDxtdF+KVEFT7w== - dependencies: - agentkeepalive "^4.2.1" - cacache "^16.1.0" - http-cache-semantics "^4.1.0" - http-proxy-agent "^5.0.0" - https-proxy-agent "^5.0.0" - is-lambda "^1.0.1" - lru-cache "^7.7.1" - minipass "^3.1.6" - minipass-collect "^1.0.2" - minipass-fetch "^2.0.3" +make-fetch-happen@^14.0.3: + version "14.0.3" + resolved "https://registry.yarnpkg.com/make-fetch-happen/-/make-fetch-happen-14.0.3.tgz#d74c3ecb0028f08ab604011e0bc6baed483fcdcd" + integrity sha512-QMjGbFTP0blj97EeidG5hk/QhKQ3T4ICckQGLgz38QF7Vgbk6e6FTARN8KhKxyBbWn8R0HU+bnw8aSoFPD4qtQ== + dependencies: + "@npmcli/agent" "^3.0.0" + cacache "^19.0.1" + http-cache-semantics "^4.1.1" + minipass "^7.0.2" + minipass-fetch "^4.0.0" minipass-flush "^1.0.5" minipass-pipeline "^1.2.4" - negotiator "^0.6.3" + negotiator "^1.0.0" + proc-log "^5.0.0" promise-retry "^2.0.1" - socks-proxy-agent "^7.0.0" - ssri "^9.0.0" + ssri "^12.0.0" matcher@^3.0.0: version "3.0.0" @@ -1922,32 +1620,17 @@ math-intrinsics@^1.1.0: resolved "https://registry.yarnpkg.com/math-intrinsics/-/math-intrinsics-1.1.0.tgz#a0dd74be81e2aa5c2f27e65ce283605ee4e2b7f9" integrity sha512-/IXtbwEk5HTPyEwyKX6hGkYXxM9nbj64B+ilVJnC/R6B0pH5G4V3b0pVbL7DBj4tkhBAppbQUlf6F6Xl9LHu1g== -media-typer@0.3.0: - version "0.3.0" - resolved "https://registry.yarnpkg.com/media-typer/-/media-typer-0.3.0.tgz#8710d7af0aa626f8fffa1ce00168545263255748" - integrity sha512-dq+qelQ9akHpcOl/gUVRTxVIOkAJ1wR3QAvb4RsVjS8oVoFjDGTc679wJYmUmknUF5HwMLOgb5O+a3KxfWapPQ== - -meow@^13.2.0: - version "13.2.0" - resolved "https://registry.yarnpkg.com/meow/-/meow-13.2.0.tgz#6b7d63f913f984063b3cc261b6e8800c4cd3474f" - integrity sha512-pxQJQzB6djGPXh08dacEloMFopsOqGVRKFPYvPOt9XDZ1HasbgDZA74CJGreSU4G3Ak7EFJGoiH2auq+yXISgA== +merge-descriptors@0.0.2: + version "0.0.2" + resolved "https://registry.yarnpkg.com/merge-descriptors/-/merge-descriptors-0.0.2.tgz#c36a52a781437513c57275f39dd9d317514ac8c7" + integrity sha512-dYBT4Ep+t/qnPeJcnMymmhTdd4g8/hn48ciaDqLAkfRf8abzLPS6Rb6EBdz5CZCL8tzZuI5ps9MhGQGxk+EuKg== -merge-descriptors@1.0.3: - version "1.0.3" - resolved "https://registry.yarnpkg.com/merge-descriptors/-/merge-descriptors-1.0.3.tgz#d80319a65f3c7935351e5cfdac8f9318504dbed5" - integrity sha512-gaNvAS7TZ897/rVaZ0nMtAyxNyi/pdbjbAwUpFQpN70GqnVfOiXpeUUMKRBmzXaSQ8DdTX4/0ms62r2K+hE6mQ== - -merge2@^1.3.0: - version "1.4.1" - resolved "https://registry.yarnpkg.com/merge2/-/merge2-1.4.1.tgz#4368892f885e907455a6fd7dc55c0c9d404990ae" - integrity sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg== - -methods@~1.1.2: - version "1.1.2" - resolved "https://registry.yarnpkg.com/methods/-/methods-1.1.2.tgz#5529a4d67654134edcc5266656835b0f851afcee" - integrity sha512-iclAHeNqNm68zFtnZ0e+1L2yUIdvzNoauKU4WBA3VvH/vPFieF7qfRlwUZU+DA9P9bPXIS90ulxoUoCH23sV2w== +methods@0.1.0: + version "0.1.0" + resolved "https://registry.yarnpkg.com/methods/-/methods-0.1.0.tgz#335d429eefd21b7bacf2e9c922a8d2bd14a30e4f" + integrity sha512-N4cn4CbDqu7Fp3AT4z3AsO19calgczhsmCGzXLCiUOrWg9sjb1B+yKFKOrnnPGKKvjyJBmw+k6b3adFN2LbuBw== -micromatch@^4.0.2, micromatch@^4.0.8: +micromatch@^4.0.2: version "4.0.8" resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-4.0.8.tgz#d66fa18f3a47076789320b9b1af32bd86d9fa202" integrity sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA== @@ -1960,23 +1643,23 @@ mime-db@1.52.0: resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.52.0.tgz#bbabcdc02859f4987301c856e3387ce5ec43bf70" integrity sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg== -mime-types@^2.1.12, mime-types@~2.1.24, mime-types@~2.1.34: +mime-types@^2.1.12: version "2.1.35" resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.35.tgz#381a871b62a734450660ae3deee44813f70d959a" integrity sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw== dependencies: mime-db "1.52.0" -mime@1.6.0: - version "1.6.0" - resolved "https://registry.yarnpkg.com/mime/-/mime-1.6.0.tgz#32cd9e5c64553bd58d19a568af452acff04981b1" - integrity sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg== - mime@^2.5.2: version "2.6.0" resolved "https://registry.yarnpkg.com/mime/-/mime-2.6.0.tgz#a2a682a95cd4d0cb1d6257e28f83da7e35800367" integrity sha512-USPkMeET31rOMiarsBNIHZKLGgvKc/LrjofAnBlOttf5ajRvqiRA8QsenbcooctK6d6Ts6aqZXBA+XbkKthiQg== +mime@~1.2.11, mime@~1.2.9: + version "1.2.11" + resolved "https://registry.yarnpkg.com/mime/-/mime-1.2.11.tgz#58203eed86e3a5ef17aed2b7d9ebd47f0a60dd10" + integrity sha512-Ysa2F/nqTNGHhhm9MV8ure4+Hc+Y8AWiqUdHxsO7xu8zc92ND9f3kpALHjaP026Ft17UfxrMt95c50PLUeynBw== + mimic-fn@^2.1.0: version "2.1.0" resolved "https://registry.yarnpkg.com/mimic-fn/-/mimic-fn-2.1.0.tgz#7ed2c2ccccaf84d3ffcb7a69b57711fc2083401b" @@ -1992,54 +1675,54 @@ mimic-response@^3.1.0: resolved "https://registry.yarnpkg.com/mimic-response/-/mimic-response-3.1.0.tgz#2d1d59af9c1b129815accc2c46a022a5ce1fa3c9" integrity sha512-z0yWI+4FDrrweS8Zmt4Ej5HdJmky15+L2e6Wgn3+iK5fWzb6T3fhNFq2+MeTRb064c6Wr4N/wv0DzQTjNzHNGQ== -minimatch@^10.0.0: - version "10.1.1" - resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-10.1.1.tgz#e6e61b9b0c1dcab116b5a7d1458e8b6ae9e73a55" - integrity sha512-enIvLvRAFZYXJzkCYG5RKmPfrFArdLv+R+lbQ53BmIMLIry74bjKzX6iHAm8WYamJkhSSEabrWN5D97XnKObjQ== +minimatch@^10.0.3: + version "10.2.4" + resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-10.2.4.tgz#465b3accbd0218b8281f5301e27cedc697f96fde" + integrity sha512-oRjTw/97aTBN0RHbYCdtF1MQfvusSIBQM0IZEgzl6426+8jSC0nF1a/GmnVLpfB9yyr6g6FTqWqiZVbxrtaCIg== dependencies: - "@isaacs/brace-expansion" "^5.0.0" + brace-expansion "^5.0.2" minimatch@^3.0.4, minimatch@^3.0.5, minimatch@^3.1.1: - version "3.1.2" - resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.1.2.tgz#19cd194bfd3e428f049a70817c038d89ab4be35b" - integrity sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw== + version "3.1.5" + resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.1.5.tgz#580c88f8d5445f2bd6aa8f3cadefa0de79fbd69e" + integrity sha512-VgjWUsnnT6n+NUk6eZq77zeFdpW2LWDzP6zFGrCbHXiYNul5Dzqk2HHQ5uFH2DNW5Xbp8+jVzaeNt94ssEEl4w== dependencies: brace-expansion "^1.1.7" minimatch@^5.0.1: - version "5.1.6" - resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-5.1.6.tgz#1cfcb8cf5522ea69952cd2af95ae09477f122a96" - integrity sha512-lKwV/1brpG6mBUFHtb7NUmtABCb2WZZmm2wNiOA5hAb8VdCS4B3dtMWyvcoViccwAW/COERjXLt0zP1zXUN26g== + version "5.1.9" + resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-5.1.9.tgz#1293ef15db0098b394540e8f9f744f9fda8dee4b" + integrity sha512-7o1wEA2RyMP7Iu7GNba9vc0RWWGACJOCZBJX2GJWip0ikV+wcOsgVuY9uE8CPiyQhkGFSlhuSkZPavN7u1c2Fw== dependencies: brace-expansion "^2.0.1" minimatch@^9.0.3, minimatch@^9.0.4: - version "9.0.5" - resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-9.0.5.tgz#d74f9dd6b57d83d8e98cfb82133b03978bc929e5" - integrity sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow== + version "9.0.9" + resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-9.0.9.tgz#9b0cb9fcb78087f6fd7eababe2511c4d3d60574e" + integrity sha512-OBwBN9AL4dqmETlpS2zasx+vTeWclWzkblfZk7KTA5j3jeOONz/tRCnZomUyvNg83wL5Zv9Ss6HMJXAgL8R2Yg== dependencies: - brace-expansion "^2.0.1" + brace-expansion "^2.0.2" minimist@^1.2.5, minimist@^1.2.6: version "1.2.8" resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.8.tgz#c1a464e7693302e082a075cee0c057741ac4772c" integrity sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA== -minipass-collect@^1.0.2: - version "1.0.2" - resolved "https://registry.yarnpkg.com/minipass-collect/-/minipass-collect-1.0.2.tgz#22b813bf745dc6edba2576b940022ad6edc8c617" - integrity sha512-6T6lH0H8OG9kITm/Jm6tdooIbogG9e0tLgpY6mphXSm/A9u8Nq1ryBG+Qspiub9LjWlBPsPS3tWQ/Botq4FdxA== +minipass-collect@^2.0.1: + version "2.0.1" + resolved "https://registry.yarnpkg.com/minipass-collect/-/minipass-collect-2.0.1.tgz#1621bc77e12258a12c60d34e2276ec5c20680863" + integrity sha512-D7V8PO9oaz7PWGLbCACuI1qEOsq7UKfLotx/C0Aet43fCUB/wfQ7DYeq2oR/svFJGYDHPr38SHATeaj/ZoKHKw== dependencies: - minipass "^3.0.0" + minipass "^7.0.3" -minipass-fetch@^2.0.3: - version "2.1.2" - resolved "https://registry.yarnpkg.com/minipass-fetch/-/minipass-fetch-2.1.2.tgz#95560b50c472d81a3bc76f20ede80eaed76d8add" - integrity sha512-LT49Zi2/WMROHYoqGgdlQIZh8mLPZmOrN2NdJjMXxYe4nkN6FUyuPuOAOedNJDrx0IRGg9+4guZewtp8hE6TxA== +minipass-fetch@^4.0.0: + version "4.0.1" + resolved "https://registry.yarnpkg.com/minipass-fetch/-/minipass-fetch-4.0.1.tgz#f2d717d5a418ad0b1a7274f9b913515d3e78f9e5" + integrity sha512-j7U11C5HXigVuutxebFadoYBbd7VSdZWggSe64NVdvWNBqGAiXPL2QVCehjmw7lY1oF9gOllYbORh+hiNgfPgQ== dependencies: - minipass "^3.1.6" + minipass "^7.0.3" minipass-sized "^1.0.3" - minizlib "^2.1.2" + minizlib "^3.0.1" optionalDependencies: encoding "^0.1.13" @@ -2064,104 +1747,92 @@ minipass-sized@^1.0.3: dependencies: minipass "^3.0.0" -minipass@^3.0.0, minipass@^3.1.1, minipass@^3.1.6: +minipass@^3.0.0: version "3.3.6" resolved "https://registry.yarnpkg.com/minipass/-/minipass-3.3.6.tgz#7bba384db3a1520d18c9c0e5251c3444e95dd94a" integrity sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw== dependencies: yallist "^4.0.0" -minipass@^5.0.0: - version "5.0.0" - resolved "https://registry.yarnpkg.com/minipass/-/minipass-5.0.0.tgz#3e9788ffb90b694a5d0ec94479a45b5d8738133d" - integrity sha512-3FnjYuehv9k6ovOEbyOswadCDPX1piCfhV8ncmYtHOjuPwylVWsghTLo7rabjC3Rx5xD4HDx8Wm1xnMF7S5qFQ== - -"minipass@^5.0.0 || ^6.0.2 || ^7.0.0", minipass@^7.1.2: - version "7.1.2" - resolved "https://registry.yarnpkg.com/minipass/-/minipass-7.1.2.tgz#93a9626ce5e5e66bd4db86849e7515e92340a707" - integrity sha512-qOOzS1cBTWYF4BH8fVePDBOO9iptMnGUEZwNc/cMWnTV2nVLZ7VoNWEPHkYczZA0pdoA7dl6e7FL659nX9S2aw== +"minipass@^5.0.0 || ^6.0.2 || ^7.0.0", minipass@^7.0.2, minipass@^7.0.3, minipass@^7.0.4, minipass@^7.1.2: + version "7.1.3" + resolved "https://registry.yarnpkg.com/minipass/-/minipass-7.1.3.tgz#79389b4eb1bb2d003a9bba87d492f2bd37bdc65b" + integrity sha512-tEBHqDnIoM/1rXME1zgka9g6Q2lcoCkxHLuc7ODJ5BxbP5d4c2Z5cGgtXAku59200Cx7diuHTOYfSBD8n6mm8A== -minizlib@^2.1.1, minizlib@^2.1.2: - version "2.1.2" - resolved "https://registry.yarnpkg.com/minizlib/-/minizlib-2.1.2.tgz#e90d3466ba209b932451508a11ce3d3632145931" - integrity sha512-bAxsR8BVfj60DWXHE3u30oHzfl4G7khkSuPW+qvpd7jFRHm7dLxOjUk1EHACJ/hxLY8phGJ0YhYHZo7jil7Qdg== +minizlib@^3.0.1, minizlib@^3.1.0: + version "3.1.0" + resolved "https://registry.yarnpkg.com/minizlib/-/minizlib-3.1.0.tgz#6ad76c3a8f10227c9b51d1c9ac8e30b27f5a251c" + integrity sha512-KZxYo1BUkWD2TVFLr0MQoM8vUUigWD3LlD83a/75BqC+4qE0Hb1Vo5v1FgcfaNXvfXzr+5EhQ6ing/CaBijTlw== dependencies: - minipass "^3.0.0" - yallist "^4.0.0" - -mkdirp@^1.0.3, mkdirp@^1.0.4: - version "1.0.4" - resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-1.0.4.tgz#3eb5ed62622756d79a5f0e2a221dfebad75c2f7e" - integrity sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw== - -ms@2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/ms/-/ms-2.0.0.tgz#5608aeadfc00be6c2901df5f9861788de0d597c8" - integrity sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A== + minipass "^7.1.2" -ms@2.1.3, ms@^2.0.0, ms@^2.1.3: +ms@^2.1.3: version "2.1.3" resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.3.tgz#574c8138ce1d2b5861f0b44579dbadd60c6615b2" integrity sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA== -negotiator@0.6.3: - version "0.6.3" - resolved "https://registry.yarnpkg.com/negotiator/-/negotiator-0.6.3.tgz#58e323a72fedc0d6f9cd4d31fe49f51479590ccd" - integrity sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg== +negotiator@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/negotiator/-/negotiator-1.0.0.tgz#b6c91bb47172d69f93cfd7c357bbb529019b5f6a" + integrity sha512-8Ofs/AUQh8MaEcrlq5xOX0CQ9ypTF5dl78mjlMNfOK08fzpgTHQRQPBxcPlEtIw0yRpws+Zo/3r+5WRby7u3Gg== -negotiator@^0.6.3: - version "0.6.4" - resolved "https://registry.yarnpkg.com/negotiator/-/negotiator-0.6.4.tgz#777948e2452651c570b712dd01c23e262713fff7" - integrity sha512-myRT3DiWPHqho5PrJaIRyaMv2kgYf0mUVgBNOYMuCH5Ki1yEiQaf/ZJuQ62nvpc44wL5WDbTX7yGJi1Neevw8w== +negotiator@~0.3.0: + version "0.3.0" + resolved "https://registry.yarnpkg.com/negotiator/-/negotiator-0.3.0.tgz#706d692efeddf574d57ea9fb1ab89a4fa7ee8f60" + integrity sha512-q9wF64uB31BDZQ44DWf+8gE7y8xSpBdREAsJfnBO2WX9ecsutfUO6S9uWEdixlDLOlWaqnlnFXXwZxUUmyLfgg== -node-abi@^3.45.0: - version "3.85.0" - resolved "https://registry.yarnpkg.com/node-abi/-/node-abi-3.85.0.tgz#b115d575e52b2495ef08372b058e13d202875a7d" - integrity sha512-zsFhmbkAzwhTft6nd3VxcG0cvJsT70rL+BIGHWVq5fi6MwGrHwzqKaxXE+Hl2GmnGItnDKPPkO5/LQqjVkIdFg== +node-abi@^4.2.0: + version "4.26.0" + resolved "https://registry.yarnpkg.com/node-abi/-/node-abi-4.26.0.tgz#7068474b3a945c08372995d823b71053e3ed85af" + integrity sha512-8QwIZqikRvDIkXS2S93LjzhsSPJuIbfaMETWH+Bx8oOT9Sa9UsUtBFQlc3gBNd1+QINjaTloitXr1W3dQLi9Iw== dependencies: - semver "^7.3.5" + semver "^7.6.3" node-addon-api@^1.6.3: version "1.7.2" resolved "https://registry.yarnpkg.com/node-addon-api/-/node-addon-api-1.7.2.tgz#3df30b95720b53c24e59948b49532b662444f54d" integrity sha512-ibPK3iA+vaY1eEjESkQkM0BbCqFOaZMiXRTtdB0u7b4djtY6JnsjvPdUHVMg6xQt3B8fpTTWHI9A+ADjM9frzg== -node-api-version@^0.2.0: +node-api-version@^0.2.1: version "0.2.1" resolved "https://registry.yarnpkg.com/node-api-version/-/node-api-version-0.2.1.tgz#19bad54f6d65628cbee4e607a325e4488ace2de9" integrity sha512-2xP/IGGMmmSQpI1+O/k72jF/ykvZ89JeuKX3TLJAYPDVLUalrshrLHkeVcCCZqG/eEa635cr8IBYzgnDvM2O8Q== dependencies: semver "^7.3.5" -nopt@^6.0.0: - version "6.0.0" - resolved "https://registry.yarnpkg.com/nopt/-/nopt-6.0.0.tgz#245801d8ebf409c6df22ab9d95b65e1309cdb16d" - integrity sha512-ZwLpbTgdhuZUnZzjd7nb1ZV+4DoiC6/sfiVKok72ym/4Tlf+DFdlHYmT2JPmcNNWV6Pi3SDf1kT+A4r9RTuT9g== +node-gyp@^11.2.0: + version "11.5.0" + resolved "https://registry.yarnpkg.com/node-gyp/-/node-gyp-11.5.0.tgz#82661b5f40647a7361efe918e3cea76d297fcc56" + integrity sha512-ra7Kvlhxn5V9Slyus0ygMa2h+UqExPqUIkfk7Pc8QTLT956JLSy51uWFwHtIYy0vI8cB4BDhc/S03+880My/LQ== + dependencies: + env-paths "^2.2.0" + exponential-backoff "^3.1.1" + graceful-fs "^4.2.6" + make-fetch-happen "^14.0.3" + nopt "^8.0.0" + proc-log "^5.0.0" + semver "^7.3.5" + tar "^7.4.3" + tinyglobby "^0.2.12" + which "^5.0.0" + +nopt@^8.0.0: + version "8.1.0" + resolved "https://registry.yarnpkg.com/nopt/-/nopt-8.1.0.tgz#b11d38caf0f8643ce885818518064127f602eae3" + integrity sha512-ieGu42u/Qsa4TFktmaKEwM6MQH0pOWnaB3htzh0JRtx84+Mebc0cbZYN5bC+6WTZ4+77xrL9Pn5m7CV6VIkV7A== dependencies: - abbrev "^1.0.0" + abbrev "^3.0.0" normalize-url@^6.0.1: version "6.1.0" resolved "https://registry.yarnpkg.com/normalize-url/-/normalize-url-6.1.0.tgz#40d0885b535deffe3f3147bec877d05fe4c5668a" integrity sha512-DlL+XwOy3NxAQ8xuC0okPgK46iuVNAK01YN7RueYBqqFeGsBjV9XmCAzAdgt+667bCl5kPh9EqKKDwnaPG1I7A== -object-inspect@^1.13.3: - version "1.13.4" - resolved "https://registry.yarnpkg.com/object-inspect/-/object-inspect-1.13.4.tgz#8375265e21bc20d0fa582c22e1b13485d6e00213" - integrity sha512-W67iLl4J2EXEGTbfeHCffrjDfitvLANg0UlX3wFUUSTx92KXRFegMHUVgSqE+wvhAbi4WqjGg9czysTV2Epbew== - object-keys@^1.1.1: version "1.1.1" resolved "https://registry.yarnpkg.com/object-keys/-/object-keys-1.1.1.tgz#1c47f272df277f3b1daf061677d9c82e2322c60e" integrity sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA== -on-finished@~2.4.1: - version "2.4.1" - resolved "https://registry.yarnpkg.com/on-finished/-/on-finished-2.4.1.tgz#58c8c44116e54845ad57f14ab10b03533184ac3f" - integrity sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg== - dependencies: - ee-first "1.1.1" - once@^1.3.0, once@^1.3.1, once@^1.4.0: version "1.4.0" resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1" @@ -2199,6 +1870,11 @@ ora@^5.1.0: strip-ansi "^6.0.0" wcwidth "^1.0.1" +os-tmpdir@~1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/os-tmpdir/-/os-tmpdir-1.0.2.tgz#bbe67406c79aa85c5cfec766fe5734555dfa1274" + integrity sha512-D2FR03Vir7FIu45XBY20mTb+/ZSWB00sjU9jdQXt83gDrI4Ztz5Fs7/yy74g2N5SVQY4xY1qDr4rNddwYRVX0g== + p-cancelable@^2.0.0: version "2.1.1" resolved "https://registry.yarnpkg.com/p-cancelable/-/p-cancelable-2.1.1.tgz#aab7fbd416582fa32a3db49859c122487c5ed2cf" @@ -2211,13 +1887,6 @@ p-cancelable@^2.0.0: dependencies: yocto-queue "^0.1.0" -p-map@^4.0.0: - version "4.0.0" - resolved "https://registry.yarnpkg.com/p-map/-/p-map-4.0.0.tgz#bb2f95a5eda2ec168ec9274e06a747c3e2904d2b" - integrity sha512-/bjOqmgETBYB5BoEeGVea8dmvHb2m9GLy1E9W43yeyfP6QQCZGFNa+XRceJEuDB6zqr+gKpIAmlLebMpykw/MQ== - dependencies: - aggregate-error "^3.0.0" - p-map@^7.0.2: version "7.0.4" resolved "https://registry.yarnpkg.com/p-map/-/p-map-7.0.4.tgz#b81814255f542e252d5729dca4d66e5ec14935b8" @@ -2228,29 +1897,30 @@ package-json-from-dist@^1.0.0: resolved "https://registry.yarnpkg.com/package-json-from-dist/-/package-json-from-dist-1.0.1.tgz#4f1471a010827a86f94cfd9b0727e36d267de505" integrity sha512-UEZIS3/by4OC8vL3P2dTXRETpebLI2NiI5vIrjaD/5UtrkFX/tNbwjTSRAGC/+7CAo2pIcBaRgWmcBBHcsaCIw== -parseurl@~1.3.3: - version "1.3.3" - resolved "https://registry.yarnpkg.com/parseurl/-/parseurl-1.3.3.tgz#9da19e7bee8d12dff0513ed5b76957793bc2e8d4" - integrity sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ== +parseurl@1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/parseurl/-/parseurl-1.0.1.tgz#2e57dce6efdd37c3518701030944c22bf388b7b4" + integrity sha512-6W9+0+9Ihayqwjgp4OaLLqZ3KDtqPY2PtUPz8YNiy4PamjJv+7x6J9GO93O9rUZOLgaanTPxsKTasxqKkO1iSw== -patch-package@^8.0.0: - version "8.0.1" - resolved "https://registry.yarnpkg.com/patch-package/-/patch-package-8.0.1.tgz#79d02f953f711e06d1f8949c8a13e5d3d7ba1a60" - integrity sha512-VsKRIA8f5uqHQ7NGhwIna6Bx6D9s/1iXlA1hthBVBEbkq+t4kXD0HHt+rJhf/Z+Ci0F/HCB2hvn0qLdLG+Qxlw== +patch-package@8.0.0: + version "8.0.0" + resolved "https://registry.yarnpkg.com/patch-package/-/patch-package-8.0.0.tgz#d191e2f1b6e06a4624a0116bcb88edd6714ede61" + integrity sha512-da8BVIhzjtgScwDJ2TtKsfT5JFWz1hYoBl9rUQ1f38MC2HwnEIkK8VN3dKMKcP7P7bvvgzNDbfNHtx3MsQb5vA== dependencies: "@yarnpkg/lockfile" "^1.1.0" chalk "^4.1.2" ci-info "^3.7.0" cross-spawn "^7.0.3" find-yarn-workspace-root "^2.0.0" - fs-extra "^10.0.0" + fs-extra "^9.0.0" json-stable-stringify "^1.0.2" klaw-sync "^6.0.0" minimist "^1.2.6" open "^7.4.2" + rimraf "^2.6.3" semver "^7.5.3" slash "^2.0.0" - tmp "^0.2.4" + tmp "^0.0.33" yaml "^2.2.2" path-is-absolute@^1.0.0: @@ -2271,15 +1941,10 @@ path-scurry@^1.11.1: lru-cache "^10.2.0" minipass "^5.0.0 || ^6.0.2 || ^7.0.0" -path-to-regexp@~0.1.12: - version "0.1.12" - resolved "https://registry.yarnpkg.com/path-to-regexp/-/path-to-regexp-0.1.12.tgz#d5e1a12e478a976d432ef3c58d534b9923164bb7" - integrity sha512-RA1GjUVMnvYFxuqovrEqZoxxW5NUZqbwKtYz/Tt7nXerk0LbLblQmrsgdeOxV5SFHf0UDggjS/bSeOZwt1pmEQ== - -path-type@^6.0.0: - version "6.0.0" - resolved "https://registry.yarnpkg.com/path-type/-/path-type-6.0.0.tgz#2f1bb6791a91ce99194caede5d6c5920ed81eb51" - integrity sha512-Vj7sf++t5pBD637NSfkxpHSMfWaeig5+DKWLhcqIYx6mWQz5hdJTGDVMQiJcw1ZYkhs7AazKDGpRVji1LJCZUQ== +path-to-regexp@0.1.2: + version "0.1.2" + resolved "https://registry.yarnpkg.com/path-to-regexp/-/path-to-regexp-0.1.2.tgz#9b2b151f9cc3018c9eea50ca95729e05781712b4" + integrity sha512-BZU7Qr+qKkXJX9UBypMNikdZ85cQSjtfMhUykJFLJn4SNF0jhEbb9nMRpnNdA76ESryY8JpMA4k6XKdz3JS1pw== pe-library@^0.4.1: version "0.4.1" @@ -2301,6 +1966,11 @@ picomatch@^2.3.1: resolved "https://registry.yarnpkg.com/picomatch/-/picomatch-2.3.1.tgz#3ba3833733646d9d3e4995946c1365a67fb07a42" integrity sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA== +picomatch@^4.0.3: + version "4.0.3" + resolved "https://registry.yarnpkg.com/picomatch/-/picomatch-4.0.3.tgz#796c76136d1eead715db1e7bad785dedd695a042" + integrity sha512-5gTmgEY/sqK6gFXLIsQNH19lWb4ebPDLA4SdLP7dsWkIXHWlG66oPuVvXSGFPppYZz8ZDZq0dYYrbHfBCVUb1Q== + plist@3.1.0, plist@^3.0.4, plist@^3.0.5, plist@^3.1.0: version "3.1.0" resolved "https://registry.yarnpkg.com/plist/-/plist-3.1.0.tgz#797a516a93e62f5bde55e0b9cc9c967f860893c9" @@ -2310,26 +1980,16 @@ plist@3.1.0, plist@^3.0.4, plist@^3.0.5, plist@^3.1.0: base64-js "^1.5.1" xmlbuilder "^15.1.1" -presentable-error@^0.0.1: - version "0.0.1" - resolved "https://registry.yarnpkg.com/presentable-error/-/presentable-error-0.0.1.tgz#6d2579d397b1384a0cc733b36375c2c8755d53c6" - integrity sha512-E6rsNU1QNJgB3sjj7OANinGncFKuK+164sLXw1/CqBjj/EkXSoSdHCtWQGBNlREIGLnL7IEUEGa08YFVUbrhVg== - -proc-log@^2.0.1: - version "2.0.1" - resolved "https://registry.yarnpkg.com/proc-log/-/proc-log-2.0.1.tgz#8f3f69a1f608de27878f91f5c688b225391cb685" - integrity sha512-Kcmo2FhfDTXdcbfDH76N7uBYHINxc/8GW7UAVuVP9I+Va3uHSerrnKV6dLooga/gh7GlgzuCCr/eoldnL1muGw== +proc-log@^5.0.0: + version "5.0.0" + resolved "https://registry.yarnpkg.com/proc-log/-/proc-log-5.0.0.tgz#e6c93cf37aef33f835c53485f314f50ea906a9d8" + integrity sha512-Azwzvl90HaF0aCz1JrDdXQykFakSSNPaPoiZ9fm5qJIMHioDZEi7OAdRwSm6rSoPtY3Qutnm3L7ogmg3dc+wbQ== progress@^2.0.3: version "2.0.3" resolved "https://registry.yarnpkg.com/progress/-/progress-2.0.3.tgz#7e8cf8d8f5b8f239c1bc68beb4eb78567d572ef8" integrity sha512-7PiHtLll5LdnKIMw100I+8xJXR5gW2QwWYkT6iJva0bXitZKa/XMrSbdmg3r2Xnaidz9Qumd0VPaMrZlF9V9sA== -promise-inflight@^1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/promise-inflight/-/promise-inflight-1.0.1.tgz#98472870bf228132fcbdd868129bad12c3c029e3" - integrity sha512-6zWPyEOFaQBJYcGMHBKTKJ3u6TBsnMFOIZSa6ce1e/ZrrsOlnHRHbabMjLiBYKp+n44X9eUI6VUPaukCXHuG4g== - promise-retry@^2.0.1: version "2.0.1" resolved "https://registry.yarnpkg.com/promise-retry/-/promise-retry-2.0.1.tgz#ff747a13620ab57ba688f5fc67855410c370da22" @@ -2338,18 +1998,19 @@ promise-retry@^2.0.1: err-code "^2.0.2" retry "^0.12.0" -proxy-addr@~2.0.7: - version "2.0.7" - resolved "https://registry.yarnpkg.com/proxy-addr/-/proxy-addr-2.0.7.tgz#f19fe69ceab311eeb94b42e70e8c2070f9ba1025" - integrity sha512-llQsMLSUDUPT44jdrU/O37qlnifitDP+ZwrmmZcoSKyLKvtZxpyV0n2/bD/N4tBAAZ/gJEdZU7KMraoK1+XYAg== +proper-lockfile@^4.1.2: + version "4.1.2" + resolved "https://registry.yarnpkg.com/proper-lockfile/-/proper-lockfile-4.1.2.tgz#c8b9de2af6b2f1601067f98e01ac66baa223141f" + integrity sha512-TjNPblN4BwAWMXU8s9AEz4JmQxnD1NNL7bNOY/AKUzyamc379FWASUhc/K1pL2noVb+XmZKLL68cjzLsiOAMaA== dependencies: - forwarded "0.2.0" - ipaddr.js "1.9.1" + graceful-fs "^4.2.4" + retry "^0.12.0" + signal-exit "^3.0.2" pump@^3.0.0: - version "3.0.3" - resolved "https://registry.yarnpkg.com/pump/-/pump-3.0.3.tgz#151d979f1a29668dc0025ec589a455b53282268d" - integrity sha512-todwxLMY7/heScKmntwQG8CXVkWUOdYxIvY2s0VWAAMh/nd8SoYiRaKjlr7+iCs984f2P8zvrfWcDDYVb73NfA== + version "3.0.4" + resolved "https://registry.yarnpkg.com/pump/-/pump-3.0.4.tgz#1f313430527fa8b905622ebd22fe1444e757ab3c" + integrity sha512-VS7sjc6KR7e1ukRFhQSY5LM2uBWAUPiOPa/A3mkKmiMwSmRFUITt0xuj+/lesgnCv+dPIEYlkzrcyXgquIHMcA== dependencies: end-of-stream "^1.1.0" once "^1.3.1" @@ -2359,37 +2020,30 @@ punycode@^2.1.0: resolved "https://registry.yarnpkg.com/punycode/-/punycode-2.3.1.tgz#027422e2faec0b25e1549c3e1bd8309b9133b6e5" integrity sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg== -qs@~6.14.0: - version "6.14.0" - resolved "https://registry.yarnpkg.com/qs/-/qs-6.14.0.tgz#c63fa40680d2c5c941412a0e899c89af60c0a930" - integrity sha512-YWWTjgABSKcvs/nWBi9PycY/JiPJqOD4JA6o9Sej2AtvSGarXxKC3OQSk4pAarbdQlKAh5D4FCQkJNkW+GAn3w== - dependencies: - side-channel "^1.1.0" - -queue-microtask@^1.2.2: - version "1.2.3" - resolved "https://registry.yarnpkg.com/queue-microtask/-/queue-microtask-1.2.3.tgz#4929228bbc724dfac43e0efb058caf7b6cfb6243" - integrity sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A== +qs@0.6.6: + version "0.6.6" + resolved "https://registry.yarnpkg.com/qs/-/qs-0.6.6.tgz#6e015098ff51968b8a3c819001d5f2c89bc4b107" + integrity sha512-kN+yNdAf29Jgp+AYHUmC7X4QdJPR8czuMWLNLc0aRxkQ7tB3vJQEONKKT9ou/rW7EbqVec11srC9q9BiVbcnHA== quick-lru@^5.1.1: version "5.1.1" resolved "https://registry.yarnpkg.com/quick-lru/-/quick-lru-5.1.1.tgz#366493e6b3e42a3a6885e2e99d18f80fb7a8c932" integrity sha512-WuyALRjWPDGtt/wzJiadO5AXY+8hZ80hVpe6MyivgraREW751X3SbhRvG3eLKOYN+8VEvqLcf3wdnt44Z4S4SA== -range-parser@~1.2.1: - version "1.2.1" - resolved "https://registry.yarnpkg.com/range-parser/-/range-parser-1.2.1.tgz#3cf37023d199e1c24d1a55b84800c2f3e6468031" - integrity sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg== +range-parser@0.0.4: + version "0.0.4" + resolved "https://registry.yarnpkg.com/range-parser/-/range-parser-0.0.4.tgz#c0427ffef51c10acba0782a46c9602e744ff620b" + integrity sha512-okJVEq9DbZyg+5lD8pr6ooQmeA0uu8DYIyAU7VK1WUUK7hctI1yw2ZHhKiKjB6RXaDrYRmTR4SsIHkyiQpaLMA== -raw-body@~2.5.3: - version "2.5.3" - resolved "https://registry.yarnpkg.com/raw-body/-/raw-body-2.5.3.tgz#11c6650ee770a7de1b494f197927de0c923822e2" - integrity sha512-s4VSOf6yN0rvbRZGxs8Om5CWj6seneMwK3oDb4lWDH0UPhWcxwOWw5+qk24bxq87szX1ydrwylIOp2uG1ojUpA== - dependencies: - bytes "~3.1.2" - http-errors "~2.0.1" - iconv-lite "~0.4.24" - unpipe "~1.0.0" +range-parser@1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/range-parser/-/range-parser-1.0.0.tgz#a4b264cfe0be5ce36abe3765ac9c2a248746dbc0" + integrity sha512-wOH5LIH2ZHo0P7/bwkR+aNbJ+kv3CHVX4B8qs9GqbtY29fi1bGPV5xczrutN20G+Z4XhRqRMTW3q0S4iyJJPfw== + +range-parser@~1.0.0: + version "1.0.3" + resolved "https://registry.yarnpkg.com/range-parser/-/range-parser-1.0.3.tgz#6872823535c692e2c2a0103826afd82c2e0ff175" + integrity sha512-nDsRrtIxVUO5opg/A8T2S3ebULVIfuh8ECbh4w3N4mWxIiT3QILDJDUQayPqm2e8Q8NUa0RSUkGCfe33AfjR3Q== read-binary-file-arch@^1.0.6: version "1.0.6" @@ -2444,15 +2098,10 @@ retry@^0.12.0: resolved "https://registry.yarnpkg.com/retry/-/retry-0.12.0.tgz#1b42a6266a21f07421d1b0b54b7dc167b01c013b" integrity sha512-9LkiTwjUh6rT555DtE9rTX+BKByPfrMzEAtnlEtdEwr3Nkffwiihqe2bWADg+OQRjt9gl6ICdmB/ZFDCGAtSow== -reusify@^1.0.4: - version "1.1.0" - resolved "https://registry.yarnpkg.com/reusify/-/reusify-1.1.0.tgz#0fe13b9522e1473f51b558ee796e08f11f9b489f" - integrity sha512-g6QUff04oZpHs0eG5p83rFLhHeV00ug/Yf9nZM6fLeUrPguBTkTQOdpAWWspMh55TZfVQDPaN3NQJfbVRAxdIw== - -rimraf@^3.0.2: - version "3.0.2" - resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-3.0.2.tgz#f1a5402ba6220ad52cc1282bac1ae3aa49fd061a" - integrity sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA== +rimraf@^2.6.3: + version "2.7.1" + resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.7.1.tgz#35797f13a7fdadc566142c29d4f07ccad483e3ec" + integrity sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w== dependencies: glob "^7.1.3" @@ -2468,19 +2117,12 @@ roarr@^2.15.3: semver-compare "^1.0.0" sprintf-js "^1.1.2" -run-parallel@^1.1.9: - version "1.2.0" - resolved "https://registry.yarnpkg.com/run-parallel/-/run-parallel-1.2.0.tgz#66d1368da7bdf921eb9d95bd1a9229e7f21a43ee" - integrity sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA== - dependencies: - queue-microtask "^1.2.2" - -safe-buffer@5.2.1, safe-buffer@~5.2.0: +safe-buffer@~5.2.0: version "5.2.1" resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.2.1.tgz#1eaf9fa9bdb1fdd4ec75f58f9cdb4e6b7827eec6" integrity sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ== -"safer-buffer@>= 2.1.2 < 3", "safer-buffer@>= 2.1.2 < 3.0.0": +"safer-buffer@>= 2.1.2 < 3.0.0": version "2.1.2" resolved "https://registry.yarnpkg.com/safer-buffer/-/safer-buffer-2.1.2.tgz#44fa161b0187b9549dd84bb91802f9bd8385cd6a" integrity sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg== @@ -2493,9 +2135,9 @@ sanitize-filename@^1.6.3: truncate-utf8-bytes "^1.0.0" sax@^1.2.4: - version "1.4.3" - resolved "https://registry.yarnpkg.com/sax/-/sax-1.4.3.tgz#fcebae3b756cdc8428321805f4b70f16ec0ab5db" - integrity sha512-yqYn1JhPczigF94DMS+shiDMjDowYO6y9+wB/4WgO0Y19jWYk0lQ4tuG5KI7kj4FTp1wxPj5IFfcrz/s1c3jjQ== + version "1.5.0" + resolved "https://registry.yarnpkg.com/sax/-/sax-1.5.0.tgz#b5549b671069b7aa392df55ec7574cf411179eb8" + integrity sha512-21IYA3Q5cQf089Z6tgaUTr7lDAyzoTPx5HRtbhsME8Udispad8dC/+sziTNugOEx54ilvatQ9YCzl4KQLPcRHA== semver-compare@^1.0.0: version "1.0.0" @@ -2512,29 +2154,30 @@ semver@^6.2.0: resolved "https://registry.yarnpkg.com/semver/-/semver-6.3.1.tgz#556d2ef8689146e46dcea4bfdd095f3434dffcb4" integrity sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA== -semver@^7.3.2, semver@^7.3.5, semver@^7.3.8, semver@^7.5.3, semver@^7.6.3: - version "7.7.3" - resolved "https://registry.yarnpkg.com/semver/-/semver-7.7.3.tgz#4b5f4143d007633a8dc671cd0a6ef9147b8bb946" - integrity sha512-SdsKMrI9TdgjdweUSR9MweHA4EJ8YxHn8DFaDisvhVlUOe4BF1tLD7GAj0lIqWVl+dPb/rExr0Btby5loQm20Q== - -send@~0.19.0, send@~0.19.1: - version "0.19.2" - resolved "https://registry.yarnpkg.com/send/-/send-0.19.2.tgz#59bc0da1b4ea7ad42736fd642b1c4294e114ff29" - integrity sha512-VMbMxbDeehAxpOtWJXlcUS5E8iXh6QmN+BkRX1GARS3wRaXEEgzCcB10gTQazO42tpNIya8xIyNx8fll1OFPrg== - dependencies: - debug "2.6.9" - depd "2.0.0" - destroy "1.2.0" - encodeurl "~2.0.0" - escape-html "~1.0.3" - etag "~1.8.1" - fresh "~0.5.2" - http-errors "~2.0.1" - mime "1.6.0" - ms "2.1.3" - on-finished "~2.4.1" - range-parser "~1.2.1" - statuses "~2.0.2" +semver@^7.3.2, semver@^7.3.5, semver@^7.5.3, semver@^7.6.3, semver@~7.7.3: + version "7.7.4" + resolved "https://registry.yarnpkg.com/semver/-/semver-7.7.4.tgz#28464e36060e991fa7a11d0279d2d3f3b57a7e8a" + integrity sha512-vFKC2IEtQnVhpT78h1Yp8wzwrf8CM+MzKMHGJZfBtzhZNycRFnXsHk6E5TxIkkMsgNS7mdX3AGB7x2QM2di4lA== + +send@0.1.4: + version "0.1.4" + resolved "https://registry.yarnpkg.com/send/-/send-0.1.4.tgz#be70d8d1be01de61821af13780b50345a4f71abd" + integrity sha512-NJnIaB29/EcNqkNneUAm16oEVnzM2LeNBc/hmgKuExv2k9pCZQEw8SHJeCdjqesHJTyWAr7x5HjeOmRFS4BoFw== + dependencies: + debug "*" + fresh "0.2.0" + mime "~1.2.9" + range-parser "0.0.4" + +send@0.2.0: + version "0.2.0" + resolved "https://registry.yarnpkg.com/send/-/send-0.2.0.tgz#067abf45cff8bffb29cbdb7439725b32388a2c58" + integrity sha512-CR/kej5a8BChsMJwpmAtqOgdGI3nemoRaPcoXj/choHibvaOfkYcohcAbd9aEG8MhL9CfRH3KlUb+oHZsdNmTg== + dependencies: + debug "*" + fresh "~0.2.1" + mime "~1.2.9" + range-parser "~1.0.0" serialize-error@^7.0.1: version "7.0.1" @@ -2543,15 +2186,12 @@ serialize-error@^7.0.1: dependencies: type-fest "^0.13.1" -serve-static@~1.16.2: - version "1.16.3" - resolved "https://registry.yarnpkg.com/serve-static/-/serve-static-1.16.3.tgz#a97b74d955778583f3862a4f0b841eb4d5d78cf9" - integrity sha512-x0RTqQel6g5SY7Lg6ZreMmsOzncHFU7nhnRWkKgWuMTu5NN0DR5oruckMqRvacAN9d5w6ARnRBXl9xhDCgfMeA== +serve-static@1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/serve-static/-/serve-static-1.0.1.tgz#10dcbfd44b3e0291a131fc9ab4ab25a9f5a78a42" + integrity sha512-bo0TWkZYykHO97QfRgoaXQQBBmyheAb3MeYFzufTXDHUdaTwJXFa8NejuKbt7UdovoUzB8lJn4gHGQSEC+R4Nw== dependencies: - encodeurl "~2.0.0" - escape-html "~1.0.3" - parseurl "~1.3.3" - send "~0.19.1" + send "0.1.4" set-function-length@^1.2.2: version "1.2.2" @@ -2565,11 +2205,6 @@ set-function-length@^1.2.2: gopd "^1.0.1" has-property-descriptors "^1.0.2" -setprototypeof@1.2.0, setprototypeof@~1.2.0: - version "1.2.0" - resolved "https://registry.yarnpkg.com/setprototypeof/-/setprototypeof-1.2.0.tgz#66c9a24a73f9fc28cbe66b09fed3d33dcaf1b424" - integrity sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw== - shebang-command@^2.0.0: version "2.0.0" resolved "https://registry.yarnpkg.com/shebang-command/-/shebang-command-2.0.0.tgz#ccd0af4f8835fbdc265b82461aaf0c36663f34ea" @@ -2582,46 +2217,6 @@ shebang-regex@^3.0.0: resolved "https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-3.0.0.tgz#ae16f1644d873ecad843b0307b143362d4c42172" integrity sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A== -side-channel-list@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/side-channel-list/-/side-channel-list-1.0.0.tgz#10cb5984263115d3b7a0e336591e290a830af8ad" - integrity sha512-FCLHtRD/gnpCiCHEiJLOwdmFP+wzCmDEkc9y7NsYxeF4u7Btsn1ZuwgwJGxImImHicJArLP4R0yX4c2KCrMrTA== - dependencies: - es-errors "^1.3.0" - object-inspect "^1.13.3" - -side-channel-map@^1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/side-channel-map/-/side-channel-map-1.0.1.tgz#d6bb6b37902c6fef5174e5f533fab4c732a26f42" - integrity sha512-VCjCNfgMsby3tTdo02nbjtM/ewra6jPHmpThenkTYh8pG9ucZ/1P8So4u4FGBek/BjpOVsDCMoLA/iuBKIFXRA== - dependencies: - call-bound "^1.0.2" - es-errors "^1.3.0" - get-intrinsic "^1.2.5" - object-inspect "^1.13.3" - -side-channel-weakmap@^1.0.2: - version "1.0.2" - resolved "https://registry.yarnpkg.com/side-channel-weakmap/-/side-channel-weakmap-1.0.2.tgz#11dda19d5368e40ce9ec2bdc1fb0ecbc0790ecea" - integrity sha512-WPS/HvHQTYnHisLo9McqBHOJk2FkHO/tlpvldyrnem4aeQp4hai3gythswg6p01oSoTl58rcpiFAjF2br2Ak2A== - dependencies: - call-bound "^1.0.2" - es-errors "^1.3.0" - get-intrinsic "^1.2.5" - object-inspect "^1.13.3" - side-channel-map "^1.0.1" - -side-channel@^1.1.0: - version "1.1.0" - resolved "https://registry.yarnpkg.com/side-channel/-/side-channel-1.1.0.tgz#c3fcff9c4da932784873335ec9765fa94ff66bc9" - integrity sha512-ZX99e6tRweoUXqR+VBrslhda51Nh5MTQwou5tnUDgbtyM0dBgmhEDtWGP/xbKn6hqfPRHujUNwz5fy/wbbhnpw== - dependencies: - es-errors "^1.3.0" - object-inspect "^1.13.3" - side-channel-list "^1.0.0" - side-channel-map "^1.0.1" - side-channel-weakmap "^1.0.2" - signal-exit@^3.0.2: version "3.0.7" resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.7.tgz#a9a1767f8af84155114eaabd73f99273c8f59ad9" @@ -2644,11 +2239,6 @@ slash@^2.0.0: resolved "https://registry.yarnpkg.com/slash/-/slash-2.0.0.tgz#de552851a1759df3a8f206535442f5ec4ddeab44" integrity sha512-ZYKh3Wh2z1PpEXWr0MpSBZ0V6mZHAQfYevttO11c51CaWjGTaadiKZ+wVt1PbMlDV5qhMFslpZCemhwOK7C89A== -slash@^5.1.0: - version "5.1.0" - resolved "https://registry.yarnpkg.com/slash/-/slash-5.1.0.tgz#be3adddcdf09ac38eebe8dcdc7b1a57a75b095ce" - integrity sha512-ZA6oR3T/pEyuqwMgAKT0/hAv8oAXckzbkmR0UkUosQ+Mc4RxGoJkRmwHgHufaenlyAgE1Mxgpdcrf75y6XcnDg== - slice-ansi@^3.0.0: version "3.0.0" resolved "https://registry.yarnpkg.com/slice-ansi/-/slice-ansi-3.0.0.tgz#31ddc10930a1b7e0b67b08c96c2f49b77a789787" @@ -2663,16 +2253,16 @@ smart-buffer@^4.0.2, smart-buffer@^4.2.0: resolved "https://registry.yarnpkg.com/smart-buffer/-/smart-buffer-4.2.0.tgz#6e1d71fa4f18c05f7d0ff216dd16a481d0e8d9ae" integrity sha512-94hK0Hh8rPqQl2xXc3HsaBoOXKV20MToPkcXvwbISWLEs+64sBq5kFgn2kJDHb1Pry9yrP0dxrCI9RRci7RXKg== -socks-proxy-agent@^7.0.0: - version "7.0.0" - resolved "https://registry.yarnpkg.com/socks-proxy-agent/-/socks-proxy-agent-7.0.0.tgz#dc069ecf34436621acb41e3efa66ca1b5fed15b6" - integrity sha512-Fgl0YPZ902wEsAyiQ+idGd1A7rSFx/ayC1CQVMw5P+EQx2V0SgpGtf6OKFhVjPflPUl9YMmEOnmfjCdMUsygww== +socks-proxy-agent@^8.0.3: + version "8.0.5" + resolved "https://registry.yarnpkg.com/socks-proxy-agent/-/socks-proxy-agent-8.0.5.tgz#b9cdb4e7e998509d7659d689ce7697ac21645bee" + integrity sha512-HehCEsotFqbPW9sJ8WVYB6UbmIMv7kUUORIF2Nncq4VQvBfNBLibW9YZR5dlYCSUhwcD628pRllm7n+E+YTzJw== dependencies: - agent-base "^6.0.2" - debug "^4.3.3" - socks "^2.6.2" + agent-base "^7.1.2" + debug "^4.3.4" + socks "^2.8.3" -socks@^2.6.2: +socks@^2.8.3: version "2.8.7" resolved "https://registry.yarnpkg.com/socks/-/socks-2.8.7.tgz#e2fb1d9a603add75050a2067db8c381a0b5669ea" integrity sha512-HLpt+uLy/pxB+bum/9DzAgiKS8CX1EvbWxI4zlmgGCExImLdiad2iCwXT5Z4c9c3Eq8rP2318mPW2c+QbtjK8A== @@ -2698,23 +2288,18 @@ sprintf-js@^1.1.2: resolved "https://registry.yarnpkg.com/sprintf-js/-/sprintf-js-1.1.3.tgz#4914b903a2f8b685d17fdf78a70e917e872e444a" integrity sha512-Oo+0REFV59/rz3gfJNKQiBlwfHaSESl1pcGyABQsnnIfWOFt6JNj5gCog2U6MLZ//IGYD+nA8nI+mTShREReaA== -ssri@^9.0.0: - version "9.0.1" - resolved "https://registry.yarnpkg.com/ssri/-/ssri-9.0.1.tgz#544d4c357a8d7b71a19700074b6883fcb4eae057" - integrity sha512-o57Wcn66jMQvfHG1FlYbWeZWW/dHZhJXjpIcTfXldXEk5nz5lStPo3mK0OJQfGR3RbZUlbISexbljkJzuEj/8Q== +ssri@^12.0.0: + version "12.0.0" + resolved "https://registry.yarnpkg.com/ssri/-/ssri-12.0.0.tgz#bcb4258417c702472f8191981d3c8a771fee6832" + integrity sha512-S7iGNosepx9RadX82oimUkvr0Ct7IjJbEbs4mJcTxst8um95J3sDYU1RBEOvdu6oL1Wek2ODI5i4MAw+dZ6cAQ== dependencies: - minipass "^3.1.1" + minipass "^7.0.3" stat-mode@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/stat-mode/-/stat-mode-1.0.0.tgz#68b55cb61ea639ff57136f36b216a291800d1465" integrity sha512-jH9EhtKIjuXZ2cWxmXS8ZP80XyC3iasQxMDV8jzhNJpfDb7VbQLVW4Wvsxz9QZvzV+G4YoSfBUVKDOyxLzi/sg== -statuses@~2.0.1, statuses@~2.0.2: - version "2.0.2" - resolved "https://registry.yarnpkg.com/statuses/-/statuses-2.0.2.tgz#8f75eecef765b5e1cfcdc080da59409ed424e382" - integrity sha512-DvEy55V3DB7uknRo+4iOGT5fP1slR8wQohVdknigZPMpMstaKJQWhwiYBACJE3Ul2pTnATihhBYnRhZQHGBiRw== - "string-width-cjs@npm:string-width@^4.2.0", string-width@^4.1.0, string-width@^4.2.0, string-width@^4.2.3: version "4.2.3" resolved "https://registry.yarnpkg.com/string-width/-/string-width-4.2.3.tgz#269c7117d27b05ad2e536830a8ec895ef9c6d010" @@ -2748,11 +2333,11 @@ string_decoder@^1.1.1: ansi-regex "^5.0.1" strip-ansi@^7.0.1: - version "7.1.2" - resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-7.1.2.tgz#132875abde678c7ea8d691533f2e7e22bb744dba" - integrity sha512-gmBGslpoQJtgnMAvOVqGZpEz9dyoKTCzy2nfz/n8aIFhN/jCE/rCmcxabB6jOOHV+0WNnylOxaxBQPSvcWklhA== + version "7.2.0" + resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-7.2.0.tgz#d22a269522836a627af8d04b5c3fd2c7fa3e32e3" + integrity sha512-yDPMNjp4WyfYBkHnjIRLfca1i6KMyGCtsVgoKe/z1+6vukgaENdgGBZt+ZmKPc4gavvEZ5OgHfHdrazhgNyG7w== dependencies: - ansi-regex "^6.0.1" + ansi-regex "^6.2.2" sumchecker@^3.0.1: version "3.0.1" @@ -2768,17 +2353,16 @@ supports-color@^7.1.0: dependencies: has-flag "^4.0.0" -tar@^6.0.5, tar@^6.1.11, tar@^6.1.12, tar@^6.2.1: - version "6.2.1" - resolved "https://registry.yarnpkg.com/tar/-/tar-6.2.1.tgz#717549c541bc3c2af15751bea94b1dd068d4b03a" - integrity sha512-DZ4yORTwrbTj/7MZYq2w+/ZFdI6OZ/f9SFHR+71gIVUZhOQPHzVCLpvRnPgyaMpfWxxk/4ONva3GQSyNIKRv6A== +tar@^7.4.3, tar@^7.5.6, tar@^7.5.7: + version "7.5.9" + resolved "https://registry.yarnpkg.com/tar/-/tar-7.5.9.tgz#817ac12a54bc4362c51340875b8985d7dc9724b8" + integrity sha512-BTLcK0xsDh2+PUe9F6c2TlRp4zOOBMTkoQHQIWSIzI0R7KG46uEwq4OPk2W7bZcprBMsuaeFsqwYr7pjh6CuHg== dependencies: - chownr "^2.0.0" - fs-minipass "^2.0.0" - minipass "^5.0.0" - minizlib "^2.1.1" - mkdirp "^1.0.3" - yallist "^4.0.0" + "@isaacs/fs-minipass" "^4.0.0" + chownr "^3.0.0" + minipass "^7.1.2" + minizlib "^3.1.0" + yallist "^5.0.0" temp-file@^3.4.0: version "3.4.0" @@ -2800,6 +2384,14 @@ tiny-typed-emitter@^2.1.0: resolved "https://registry.yarnpkg.com/tiny-typed-emitter/-/tiny-typed-emitter-2.1.0.tgz#b3b027fdd389ff81a152c8e847ee2f5be9fad7b5" integrity sha512-qVtvMxeXbVej0cQWKqVSSAHmKZEHAvxdF8HEUBFWts8h+xEo5m/lEiPakuyZ3BnCBjOD8i24kzNOiOLLgsSxhA== +tinyglobby@^0.2.12: + version "0.2.15" + resolved "https://registry.yarnpkg.com/tinyglobby/-/tinyglobby-0.2.15.tgz#e228dd1e638cea993d2fdb4fcd2d4602a79951c2" + integrity sha512-j2Zq4NyQYG5XMST4cbs02Ak8iJUdxRM0XI5QyxXuZOzKOINmWurp3smXu3y5wDcJrptwpSjgXHzIQxR0omXljQ== + dependencies: + fdir "^6.5.0" + picomatch "^4.0.3" + tmp-promise@^3.0.2: version "3.0.3" resolved "https://registry.yarnpkg.com/tmp-promise/-/tmp-promise-3.0.3.tgz#60a1a1cc98c988674fcbfd23b6e3367bdeac4ce7" @@ -2807,7 +2399,14 @@ tmp-promise@^3.0.2: dependencies: tmp "^0.2.0" -tmp@^0.2.0, tmp@^0.2.4: +tmp@^0.0.33: + version "0.0.33" + resolved "https://registry.yarnpkg.com/tmp/-/tmp-0.0.33.tgz#6d34335889768d21b2bcda0aa277ced3b1bfadf9" + integrity sha512-jRCJlojKnZ3addtTOjdIqoRuPEKBvNXcGYqzO6zWZX8KfKEpnGY5jfggJQ3EjKuu8D4bJRr0y+cYJFmYbImXGw== + dependencies: + os-tmpdir "~1.0.2" + +tmp@^0.2.0: version "0.2.5" resolved "https://registry.yarnpkg.com/tmp/-/tmp-0.2.5.tgz#b06bcd23f0f3c8357b426891726d16015abfd8f8" integrity sha512-voyz6MApa1rQGUxT3E+BK7/ROe8itEx7vD8/HEvt4xwXucvQ5G5oeEiHkmHZJuBO21RpOf+YYm9MOivj709jow== @@ -2819,11 +2418,6 @@ to-regex-range@^5.0.1: dependencies: is-number "^7.0.0" -toidentifier@~1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/toidentifier/-/toidentifier-1.0.1.tgz#3be34321a88a820ed1bd80dfaa33e479fbb8dd35" - integrity sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA== - truncate-utf8-bytes@^1.0.0: version "1.0.2" resolved "https://registry.yarnpkg.com/truncate-utf8-bytes/-/truncate-utf8-bytes-1.0.2.tgz#405923909592d56f78a5818434b0b78489ca5f2b" @@ -2836,40 +2430,29 @@ type-fest@^0.13.1: resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.13.1.tgz#0172cb5bce80b0bd542ea348db50c7e21834d934" integrity sha512-34R7HTnG0XIJcBSn5XhDd7nNFPRcXYRZrBB2O2jdKqYODldSzBAqzsWoZYYvduky73toYS/ESqxPvkDf/F0XMg== -type-is@~1.6.18: - version "1.6.18" - resolved "https://registry.yarnpkg.com/type-is/-/type-is-1.6.18.tgz#4e552cd05df09467dcbc4ef739de89f2cf37c131" - integrity sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g== +type-is@1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/type-is/-/type-is-1.0.0.tgz#4ff424e97349a1ee1910b4bfc488595ecdc443fc" + integrity sha512-CLdmAJgLeMtSPcTFX3eDdC1+ysfYoVdcYjMtuDtg23/fhHXoP5quNsvobr05ZNlG7og+oHQ4bosEzJX++DlIzQ== dependencies: - media-typer "0.3.0" - mime-types "~2.1.24" - -typescript@^5.4.3: - version "5.9.3" - resolved "https://registry.yarnpkg.com/typescript/-/typescript-5.9.3.tgz#5b4f59e15310ab17a216f5d6cf53ee476ede670f" - integrity sha512-jl1vZzPDinLr9eUt3J/t7V6FgNEw9QjvBPdysz9KfQDD41fQrC2Y4vKQdiaUpFT4bXlb1RHhLpp8wtm6M5TgSw== + mime "~1.2.11" -undici-types@~7.16.0: - version "7.16.0" - resolved "https://registry.yarnpkg.com/undici-types/-/undici-types-7.16.0.tgz#ffccdff36aea4884cbfce9a750a0580224f58a46" - integrity sha512-Zz+aZWSj8LE6zoxD+xrjh4VfkIG8Ya6LvYkZqtUQGJPZjYl53ypCaUwWqo7eI0x66KBGeRo+mlBEkMSeSZ38Nw== - -unicorn-magic@^0.3.0: - version "0.3.0" - resolved "https://registry.yarnpkg.com/unicorn-magic/-/unicorn-magic-0.3.0.tgz#4efd45c85a69e0dd576d25532fbfa22aa5c8a104" - integrity sha512-+QBBXBCvifc56fsbuxZQ6Sic3wqqc3WWaqxs58gvJrcOuN83HGTCwz3oS5phzU9LthRNE9VrJCFCLUgHeeFnfA== +undici-types@~7.18.0: + version "7.18.2" + resolved "https://registry.yarnpkg.com/undici-types/-/undici-types-7.18.2.tgz#29357a89e7b7ca4aef3bf0fd3fd0cd73884229e9" + integrity sha512-AsuCzffGHJybSaRrmr5eHr81mwJU3kjw6M+uprWvCXiNeN9SOGwQ3Jn8jb8m3Z6izVgknn1R0FTCEAP2QrLY/w== -unique-filename@^2.0.0: - version "2.0.1" - resolved "https://registry.yarnpkg.com/unique-filename/-/unique-filename-2.0.1.tgz#e785f8675a9a7589e0ac77e0b5c34d2eaeac6da2" - integrity sha512-ODWHtkkdx3IAR+veKxFV+VBkUMcN+FaqzUUd7IZzt+0zhDZFPFxhlqwPF3YQvMHx1TD0tdgYl+kuPnJ8E6ql7A== +unique-filename@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/unique-filename/-/unique-filename-4.0.0.tgz#a06534d370e7c977a939cd1d11f7f0ab8f1fed13" + integrity sha512-XSnEewXmQ+veP7xX2dS5Q4yZAvO40cBN2MWkJ7D/6sW4Dg6wYBNwM1Vrnz1FhH5AdeLIlUXRI9e28z1YZi71NQ== dependencies: - unique-slug "^3.0.0" + unique-slug "^5.0.0" -unique-slug@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/unique-slug/-/unique-slug-3.0.0.tgz#6d347cf57c8a7a7a6044aabd0e2d74e4d76dc7c9" - integrity sha512-8EyMynh679x/0gqE9fT9oilG+qEt+ibFyqjuVTsZn1+CMxH+XLlpvr2UZx4nVcCwTpx81nICr2JQFkM+HPLq4w== +unique-slug@^5.0.0: + version "5.0.0" + resolved "https://registry.yarnpkg.com/unique-slug/-/unique-slug-5.0.0.tgz#ca72af03ad0dbab4dad8aa683f633878b1accda8" + integrity sha512-9OdaqO5kwqR+1kVgHAhsp5vPNU0hnxRa26rBFNfNgM7M6pNtgzeBn3s/xbyCQL3dcjzOatcef6UUHpB/6MaETg== dependencies: imurmurhash "^0.1.4" @@ -2883,11 +2466,6 @@ universalify@^2.0.0: resolved "https://registry.yarnpkg.com/universalify/-/universalify-2.0.1.tgz#168efc2180964e6386d061e094df61afe239b18d" integrity sha512-gptHNQghINnc/vTGIk0SOFGFNXw7JVrlRUtConJRlvaw6DuX0wO5Jeko9sWrMBhh+PsYAZ7oXAiOnf/UKogyiw== -unpipe@~1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/unpipe/-/unpipe-1.0.0.tgz#b2bf4ee8514aae6165b4817829d21b2ef49904ec" - integrity sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ== - uri-js@^4.2.2: version "4.4.1" resolved "https://registry.yarnpkg.com/uri-js/-/uri-js-4.4.1.tgz#9b1a52595225859e55f669d928f88c6c57f2a77e" @@ -2905,15 +2483,10 @@ util-deprecate@^1.0.1: resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf" integrity sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw== -utils-merge@1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/utils-merge/-/utils-merge-1.0.1.tgz#9f95710f50a267947b2ccc124741c1028427e713" - integrity sha512-pMZTvIkT1d+TFGvDOqodOclx0QWkkgi6Tdoa8gC8ffGAAqz9pzPTZWAybbsHHoED/ztMtkv/VoYTYyShUn81hA== - -vary@~1.1.2: - version "1.1.2" - resolved "https://registry.yarnpkg.com/vary/-/vary-1.1.2.tgz#2299f02c6ded30d4a5961b0b9f74524a18f634fc" - integrity sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg== +utils-merge@1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/utils-merge/-/utils-merge-1.0.0.tgz#0294fb922bb9375153541c4f7096231f287c8af8" + integrity sha512-HwU9SLQEtyo+0uoKXd1nkLqigUWLB+QuNQR4OcmB73eWqksM5ovuqcycks2x043W8XVb75rG1HQ0h93TMXkzQQ== verror@^1.10.0: version "1.10.1" @@ -2931,13 +2504,20 @@ wcwidth@^1.0.1: dependencies: defaults "^1.0.3" -which@^2.0.1, which@^2.0.2: +which@^2.0.1: version "2.0.2" resolved "https://registry.yarnpkg.com/which/-/which-2.0.2.tgz#7c6a8dd0a636a0327e10b59c9286eee93f3f51b1" integrity sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA== dependencies: isexe "^2.0.0" +which@^5.0.0: + version "5.0.0" + resolved "https://registry.yarnpkg.com/which/-/which-5.0.0.tgz#d93f2d93f79834d4363c7d0c23e00d07c466c8d6" + integrity sha512-JEdGzHwwkrbWoGOlIHqQ5gtprKGOenpDHpxE9zVR1bWbOtYRyPPHMe9FaP6x61CmNaTThSkb0DAJte5jD+DmzQ== + dependencies: + isexe "^3.1.1" + "wrap-ansi-cjs@npm:wrap-ansi@^7.0.0", wrap-ansi@^7.0.0: version "7.0.0" resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-7.0.0.tgz#67e145cff510a6a6984bdf1152911d69d2eb9e43" @@ -2976,6 +2556,11 @@ yallist@^4.0.0: resolved "https://registry.yarnpkg.com/yallist/-/yallist-4.0.0.tgz#9bb92790d9c0effec63be73519e11a35019a3a72" integrity sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A== +yallist@^5.0.0: + version "5.0.0" + resolved "https://registry.yarnpkg.com/yallist/-/yallist-5.0.0.tgz#00e2de443639ed0d78fd87de0d27469fbcffb533" + integrity sha512-YgvUTfwqyc7UXVMrB+SImsVYSmTS8X/tSrtdNZMImM+n7+QTriRXyXim0mBrTXNeqzVF0KWGgHPeiyViFFrNDw== + yaml@^2.2.2: version "2.8.2" resolved "https://registry.yarnpkg.com/yaml/-/yaml-2.8.2.tgz#5694f25eca0ce9c3e7a9d9e00ce0ddabbd9e35c5" diff --git a/test/snapshots/BuildTest.js.snap b/test/snapshots/BuildTest.js.snap index 4dd51bbcb4b..bd3618a162b 100644 --- a/test/snapshots/BuildTest.js.snap +++ b/test/snapshots/BuildTest.js.snap @@ -1362,6 +1362,9 @@ exports[`posix smart unpack 3`] = ` "SECURITY.md": { "size": "", }, + "empty.js": { + "size": "", + }, "index.js": { "size": "", }, diff --git a/test/snapshots/HoistedNodeModuleTest.js.snap b/test/snapshots/HoistedNodeModuleTest.js.snap index 586d020a262..bfc163d4df9 100644 --- a/test/snapshots/HoistedNodeModuleTest.js.snap +++ b/test/snapshots/HoistedNodeModuleTest.js.snap @@ -9430,11 +9430,11 @@ exports[`node_module collectors > pnpm max stack 2`] = ` { "files": { "index.html": { - "offset": 3738560, + "offset": 3739200, "size": 380, }, "index.js": { - "offset": 3738940, + "offset": 3739580, "size": 620, }, "node_modules": { @@ -21623,10 +21623,10 @@ exports[`node_module collectors > pnpm max stack 2`] = ` }, "minimatch.js": { "offset": 3180010, - "size": 26270, + "size": 26380, }, "package.json": { - "offset": 3206280, + "offset": 3206390, "size": 530, }, }, @@ -21634,17 +21634,17 @@ exports[`node_module collectors > pnpm max stack 2`] = ` "nice-try": { "files": { "LICENSE": { - "offset": 3206800, + "offset": 3206920, "size": 1080, }, "package.json": { - "offset": 3207880, + "offset": 3208000, "size": 550, }, "src": { "files": { "index.js": { - "offset": 3208430, + "offset": 3208540, "size": 310, }, }, @@ -21654,47 +21654,47 @@ exports[`node_module collectors > pnpm max stack 2`] = ` "normalize-package-data": { "files": { "AUTHORS": { - "offset": 3208730, + "offset": 3208840, "size": 160, }, "LICENSE": { - "offset": 3208880, + "offset": 3208990, "size": 1400, }, "lib": { "files": { "extract_description.js": { - "offset": 3210280, + "offset": 3210390, "size": 510, }, "fixer.js": { - "offset": 3210790, + "offset": 3210900, "size": 11810, }, "make_warning.js": { - "offset": 3222590, + "offset": 3222700, "size": 710, }, "normalize.js": { - "offset": 3223300, + "offset": 3223410, "size": 1350, }, "safe_format.js": { - "offset": 3224640, + "offset": 3224750, "size": 250, }, "typos.json": { - "offset": 3224880, + "offset": 3225000, "size": 750, }, "warning_messages.json": { - "offset": 3225630, + "offset": 3225740, "size": 1800, }, }, }, "package.json": { - "offset": 3227430, + "offset": 3227540, "size": 680, }, }, @@ -21702,7 +21702,7 @@ exports[`node_module collectors > pnpm max stack 2`] = ` "npm-run-all": { "files": { "LICENSE": { - "offset": 3228110, + "offset": 3228220, "size": 1090, }, "bin": { @@ -21710,15 +21710,15 @@ exports[`node_module collectors > pnpm max stack 2`] = ` "common": { "files": { "bootstrap.js": { - "offset": 3229190, + "offset": 3229300, "size": 1490, }, "parse-cli-args.js": { - "offset": 3230670, + "offset": 3230780, "size": 7280, }, "version.js": { - "offset": 3237950, + "offset": 3238060, "size": 690, }, }, @@ -21726,16 +21726,16 @@ exports[`node_module collectors > pnpm max stack 2`] = ` "npm-run-all": { "files": { "help.js": { - "offset": 3238630, + "offset": 3238750, "size": 3180, }, "index.js": { "executable": true, - "offset": 3241810, + "offset": 3241930, "size": 400, }, "main.js": { - "offset": 3242210, + "offset": 3242320, "size": 2660, }, }, @@ -21743,16 +21743,16 @@ exports[`node_module collectors > pnpm max stack 2`] = ` "run-p": { "files": { "help.js": { - "offset": 3244870, + "offset": 3244980, "size": 2610, }, "index.js": { "executable": true, - "offset": 3247470, + "offset": 3247590, "size": 400, }, "main.js": { - "offset": 3247870, + "offset": 3247980, "size": 2370, }, }, @@ -21760,16 +21760,16 @@ exports[`node_module collectors > pnpm max stack 2`] = ` "run-s": { "files": { "help.js": { - "offset": 3250230, + "offset": 3250350, "size": 2200, }, "index.js": { "executable": true, - "offset": 3252430, + "offset": 3252540, "size": 400, }, "main.js": { - "offset": 3252820, + "offset": 3252930, "size": 2240, }, }, @@ -21779,19 +21779,19 @@ exports[`node_module collectors > pnpm max stack 2`] = ` "docs": { "files": { "node-api.md": { - "offset": 3255050, + "offset": 3255160, "size": 5070, }, "npm-run-all.md": { - "offset": 3260110, + "offset": 3260230, "size": 7070, }, "run-p.md": { - "offset": 3267180, + "offset": 3267290, "size": 5510, }, "run-s.md": { - "offset": 3272680, + "offset": 3272790, "size": 4890, }, }, @@ -21799,53 +21799,53 @@ exports[`node_module collectors > pnpm max stack 2`] = ` "lib": { "files": { "create-header.js": { - "offset": 3277560, + "offset": 3277680, "size": 1760, }, "create-prefix-transform-stream.js": { - "offset": 3279320, + "offset": 3279430, "size": 3210, }, "index.js": { - "offset": 3282530, + "offset": 3282640, "size": 10020, }, "match-tasks.js": { - "offset": 3292540, + "offset": 3292650, "size": 4030, }, "npm-run-all-error.js": { - "offset": 3296570, + "offset": 3296680, "size": 1420, }, "read-package-json.js": { - "offset": 3297990, + "offset": 3298100, "size": 980, }, "run-task.js": { - "offset": 3298970, + "offset": 3299080, "size": 7330, }, "run-tasks.js": { - "offset": 3306300, + "offset": 3306410, "size": 5140, }, "spawn-posix.js": { - "offset": 3311430, + "offset": 3311540, "size": 1850, }, "spawn-win32.js": { - "offset": 3313280, + "offset": 3313390, "size": 1570, }, "spawn.js": { - "offset": 3314840, + "offset": 3314950, "size": 610, }, }, }, "package.json": { - "offset": 3315440, + "offset": 3315550, "size": 1280, }, }, @@ -21853,31 +21853,31 @@ exports[`node_module collectors > pnpm max stack 2`] = ` "object-inspect": { "files": { ".nycrc": { - "offset": 3316720, + "offset": 3316830, "size": 240, }, "LICENSE": { - "offset": 3316950, + "offset": 3317070, "size": 1080, }, "index.js": { - "offset": 3318020, + "offset": 3318140, "size": 19060, }, "package-support.json": { - "offset": 3337080, + "offset": 3337200, "size": 370, }, "package.json": { - "offset": 3337450, + "offset": 3337560, "size": 2000, }, "test-core-js.js": { - "offset": 3339440, + "offset": 3339550, "size": 540, }, "util.inspect.js": { - "offset": 3339970, + "offset": 3340090, "size": 50, }, }, @@ -21885,27 +21885,27 @@ exports[`node_module collectors > pnpm max stack 2`] = ` "object-keys": { "files": { ".editorconfig": { - "offset": 3340020, + "offset": 3340130, "size": 280, }, "LICENSE": { - "offset": 3340290, + "offset": 3340400, "size": 1080, }, "implementation.js": { - "offset": 3341370, + "offset": 3341480, "size": 3220, }, "index.js": { - "offset": 3344590, + "offset": 3344700, "size": 830, }, "isArguments.js": { - "offset": 3345410, + "offset": 3345520, "size": 430, }, "package.json": { - "offset": 3345830, + "offset": 3345950, "size": 1130, }, }, @@ -21913,51 +21913,51 @@ exports[`node_module collectors > pnpm max stack 2`] = ` "object.assign": { "files": { ".editorconfig": { - "offset": 3346960, + "offset": 3347070, "size": 290, }, ".nycrc": { - "offset": 3347240, + "offset": 3347350, "size": 140, }, "LICENSE": { - "offset": 3347380, + "offset": 3347490, "size": 1080, }, "auto.js": { - "offset": 3348460, + "offset": 3348570, "size": 40, }, "dist": { "files": { "browser.js": { - "offset": 3348500, + "offset": 3348610, "size": 41570, }, }, }, "hasSymbols.js": { - "offset": 3390060, + "offset": 3390180, "size": 1620, }, "implementation.js": { - "offset": 3391680, + "offset": 3391790, "size": 1430, }, "index.js": { - "offset": 3393110, + "offset": 3393220, "size": 540, }, "package.json": { - "offset": 3393640, + "offset": 3393750, "size": 1630, }, "polyfill.js": { - "offset": 3395260, + "offset": 3395370, "size": 1300, }, "shim.js": { - "offset": 3396560, + "offset": 3396670, "size": 310, }, }, @@ -21965,23 +21965,23 @@ exports[`node_module collectors > pnpm max stack 2`] = ` "own-keys": { "files": { ".nycrc": { - "offset": 3396870, + "offset": 3396980, "size": 140, }, "LICENSE": { - "offset": 3397010, + "offset": 3397120, "size": 1080, }, "index.js": { - "offset": 3398080, + "offset": 3398190, "size": 590, }, "package.json": { - "offset": 3398660, + "offset": 3398770, "size": 1640, }, "tsconfig.json": { - "offset": 3400300, + "offset": 3400410, "size": 130, }, }, @@ -21989,15 +21989,15 @@ exports[`node_module collectors > pnpm max stack 2`] = ` "parse-json": { "files": { "index.js": { - "offset": 3400420, + "offset": 3400530, "size": 620, }, "license": { - "offset": 3401040, + "offset": 3401150, "size": 1110, }, "package.json": { - "offset": 3402150, + "offset": 3402260, "size": 550, }, }, @@ -22005,15 +22005,15 @@ exports[`node_module collectors > pnpm max stack 2`] = ` "path-key": { "files": { "index.js": { - "offset": 3402690, + "offset": 3402800, "size": 290, }, "license": { - "offset": 3402970, + "offset": 3403080, "size": 1120, }, "package.json": { - "offset": 3404090, + "offset": 3404200, "size": 430, }, }, @@ -22021,15 +22021,15 @@ exports[`node_module collectors > pnpm max stack 2`] = ` "path-parse": { "files": { "LICENSE": { - "offset": 3404510, + "offset": 3404630, "size": 1080, }, "index.js": { - "offset": 3405590, + "offset": 3405710, "size": 1900, }, "package.json": { - "offset": 3407490, + "offset": 3407600, "size": 370, }, }, @@ -22037,15 +22037,15 @@ exports[`node_module collectors > pnpm max stack 2`] = ` "path-type": { "files": { "index.js": { - "offset": 3407850, + "offset": 3407960, "size": 990, }, "license": { - "offset": 3408840, + "offset": 3408950, "size": 1110, }, "package.json": { - "offset": 3409950, + "offset": 3410060, "size": 470, }, }, @@ -22056,45 +22056,45 @@ exports[`node_module collectors > pnpm max stack 2`] = ` "files": { "pidtree.js": { "executable": true, - "offset": 3410420, + "offset": 3410530, "size": 2860, }, }, }, "index.js": { - "offset": 3413280, + "offset": 3413390, "size": 1350, }, "lib": { "files": { "bin.js": { - "offset": 3414620, + "offset": 3414730, "size": 1030, }, "get.js": { - "offset": 3415650, + "offset": 3415760, "size": 730, }, "pidtree.js": { - "offset": 3416370, + "offset": 3416480, "size": 2690, }, "ps.js": { - "offset": 3419050, + "offset": 3419160, "size": 1070, }, "wmic.js": { - "offset": 3420120, + "offset": 3420230, "size": 1180, }, }, }, "license": { - "offset": 3421300, + "offset": 3421410, "size": 1080, }, "package.json": { - "offset": 3422370, + "offset": 3422480, "size": 810, }, }, @@ -22102,15 +22102,15 @@ exports[`node_module collectors > pnpm max stack 2`] = ` "pify": { "files": { "index.js": { - "offset": 3423180, + "offset": 3423290, "size": 1810, }, "license": { - "offset": 3424980, + "offset": 3425100, "size": 1110, }, "package.json": { - "offset": 3426090, + "offset": 3426210, "size": 470, }, }, @@ -22118,19 +22118,19 @@ exports[`node_module collectors > pnpm max stack 2`] = ` "possible-typed-array-names": { "files": { "LICENSE": { - "offset": 3426550, + "offset": 3426670, "size": 1080, }, "index.js": { - "offset": 3427630, + "offset": 3427740, "size": 270, }, "package.json": { - "offset": 3427890, + "offset": 3428000, "size": 1300, }, "tsconfig.json": { - "offset": 3429180, + "offset": 3429290, "size": 120, }, }, @@ -22138,15 +22138,15 @@ exports[`node_module collectors > pnpm max stack 2`] = ` "read-pkg": { "files": { "index.js": { - "offset": 3429300, + "offset": 3429410, "size": 820, }, "license": { - "offset": 3430110, + "offset": 3430220, "size": 1110, }, "package.json": { - "offset": 3431220, + "offset": 3431330, "size": 530, }, }, @@ -22154,35 +22154,35 @@ exports[`node_module collectors > pnpm max stack 2`] = ` "reflect.getprototypeof": { "files": { ".nycrc": { - "offset": 3431740, + "offset": 3431850, "size": 140, }, "LICENSE": { - "offset": 3431880, + "offset": 3431990, "size": 1080, }, "auto.js": { - "offset": 3432950, + "offset": 3433070, "size": 40, }, "implementation.js": { - "offset": 3432990, + "offset": 3433100, "size": 1100, }, "index.js": { - "offset": 3434080, + "offset": 3434190, "size": 430, }, "package.json": { - "offset": 3434500, + "offset": 3434610, "size": 1810, }, "polyfill.js": { - "offset": 3436310, + "offset": 3436420, "size": 350, }, "shim.js": { - "offset": 3436660, + "offset": 3436770, "size": 470, }, }, @@ -22190,39 +22190,39 @@ exports[`node_module collectors > pnpm max stack 2`] = ` "regexp.prototype.flags": { "files": { ".editorconfig": { - "offset": 3437120, + "offset": 3437230, "size": 280, }, ".nycrc": { - "offset": 3437390, + "offset": 3437510, "size": 140, }, "LICENSE": { - "offset": 3437530, + "offset": 3437650, "size": 1090, }, "auto.js": { - "offset": 3438620, + "offset": 3438730, "size": 40, }, "implementation.js": { - "offset": 3438650, + "offset": 3438760, "size": 710, }, "index.js": { - "offset": 3439360, + "offset": 3439470, "size": 390, }, "package.json": { - "offset": 3439750, + "offset": 3439860, "size": 1920, }, "polyfill.js": { - "offset": 3441670, + "offset": 3441780, "size": 870, }, "shim.js": { - "offset": 3442530, + "offset": 3442640, "size": 780, }, }, @@ -22230,80 +22230,80 @@ exports[`node_module collectors > pnpm max stack 2`] = ` "resolve": { "files": { ".editorconfig": { - "offset": 3443310, + "offset": 3443420, "size": 610, }, "LICENSE": { - "offset": 3443910, + "offset": 3444030, "size": 1080, }, "SECURITY.md": { - "offset": 3444990, + "offset": 3445100, "size": 360, }, "async.js": { - "offset": 3445340, + "offset": 3445450, "size": 60, }, "bin": { "files": { "resolve": { "executable": true, - "offset": 3445400, + "offset": 3445510, "size": 1540, }, }, }, "index.js": { - "offset": 3446930, + "offset": 3447050, "size": 180, }, "lib": { "files": { "async.js": { - "offset": 3447110, + "offset": 3447220, "size": 11520, }, "caller.js": { - "offset": 3458620, + "offset": 3458740, "size": 360, }, "core.js": { - "offset": 3458980, + "offset": 3459090, "size": 310, }, "core.json": { - "offset": 3459290, + "offset": 3459400, "size": 5960, }, "homedir.js": { - "offset": 3465240, + "offset": 3465350, "size": 810, }, "is-core.js": { - "offset": 3466050, + "offset": 3466160, "size": 120, }, "node-modules-paths.js": { - "offset": 3466160, + "offset": 3466270, "size": 1370, }, "normalize-options.js": { - "offset": 3467530, + "offset": 3467640, "size": 350, }, "sync.js": { - "offset": 3467870, + "offset": 3467990, "size": 7150, }, }, }, "package.json": { - "offset": 3475020, + "offset": 3475130, "size": 1320, }, "sync.js": { - "offset": 3476340, + "offset": 3476450, "size": 60, }, }, @@ -22311,23 +22311,23 @@ exports[`node_module collectors > pnpm max stack 2`] = ` "safe-array-concat": { "files": { ".nycrc": { - "offset": 3476390, + "offset": 3476510, "size": 220, }, "LICENSE": { - "offset": 3476610, + "offset": 3476720, "size": 1080, }, "index.js": { - "offset": 3477680, + "offset": 3477790, "size": 1880, }, "package.json": { - "offset": 3479560, + "offset": 3479670, "size": 1720, }, "tsconfig.json": { - "offset": 3481270, + "offset": 3481380, "size": 130, }, }, @@ -22335,23 +22335,23 @@ exports[`node_module collectors > pnpm max stack 2`] = ` "safe-push-apply": { "files": { ".nycrc": { - "offset": 3481400, + "offset": 3481510, "size": 220, }, "LICENSE": { - "offset": 3481610, + "offset": 3481720, "size": 1080, }, "index.js": { - "offset": 3482680, + "offset": 3482790, "size": 390, }, "package.json": { - "offset": 3483070, + "offset": 3483180, "size": 1460, }, "tsconfig.json": { - "offset": 3484520, + "offset": 3484630, "size": 130, }, }, @@ -22359,23 +22359,23 @@ exports[`node_module collectors > pnpm max stack 2`] = ` "safe-regex-test": { "files": { ".nycrc": { - "offset": 3484650, + "offset": 3484760, "size": 220, }, "LICENSE": { - "offset": 3484860, + "offset": 3484970, "size": 1080, }, "index.js": { - "offset": 3485930, + "offset": 3486050, "size": 410, }, "package.json": { - "offset": 3486340, + "offset": 3486450, "size": 1590, }, "tsconfig.json": { - "offset": 3487920, + "offset": 3488030, "size": 120, }, }, @@ -22383,28 +22383,28 @@ exports[`node_module collectors > pnpm max stack 2`] = ` "semver": { "files": { "LICENSE": { - "offset": 3488040, + "offset": 3488150, "size": 770, }, "bin": { "files": { "semver": { "executable": true, - "offset": 3488800, + "offset": 3488920, "size": 4420, }, }, }, "package.json": { - "offset": 3493220, + "offset": 3493330, "size": 670, }, "range.bnf": { - "offset": 3493890, + "offset": 3494000, "size": 620, }, "semver.js": { - "offset": 3494510, + "offset": 3494620, "size": 40820, }, }, @@ -22412,27 +22412,27 @@ exports[`node_module collectors > pnpm max stack 2`] = ` "set-function-length": { "files": { ".nycrc": { - "offset": 3535320, + "offset": 3535430, "size": 220, }, "LICENSE": { - "offset": 3535540, + "offset": 3535650, "size": 1090, }, "env.js": { - "offset": 3536620, + "offset": 3536730, "size": 870, }, "index.js": { - "offset": 3537490, + "offset": 3537600, "size": 1280, }, "package.json": { - "offset": 3538760, + "offset": 3538870, "size": 1960, }, "tsconfig.json": { - "offset": 3540710, + "offset": 3540820, "size": 120, }, }, @@ -22440,19 +22440,19 @@ exports[`node_module collectors > pnpm max stack 2`] = ` "set-function-name": { "files": { "LICENSE": { - "offset": 3540830, + "offset": 3540940, "size": 1090, }, "index.js": { - "offset": 3541910, + "offset": 3542020, "size": 750, }, "package.json": { - "offset": 3542650, + "offset": 3542770, "size": 2130, }, "tsconfig.json": { - "offset": 3544780, + "offset": 3544890, "size": 4890, }, }, @@ -22460,31 +22460,31 @@ exports[`node_module collectors > pnpm max stack 2`] = ` "set-proto": { "files": { ".nycrc": { - "offset": 3549670, + "offset": 3549780, "size": 140, }, "LICENSE": { - "offset": 3549810, + "offset": 3549920, "size": 1080, }, "Object.setPrototypeOf.js": { - "offset": 3550880, + "offset": 3550990, "size": 160, }, "Reflect.setPrototypeOf.js": { - "offset": 3551040, + "offset": 3551150, "size": 150, }, "index.js": { - "offset": 3551190, + "offset": 3551300, "size": 740, }, "package.json": { - "offset": 3551920, + "offset": 3552030, "size": 1460, }, "tsconfig.json": { - "offset": 3553370, + "offset": 3553480, "size": 120, }, }, @@ -22492,15 +22492,15 @@ exports[`node_module collectors > pnpm max stack 2`] = ` "shebang-command": { "files": { "index.js": { - "offset": 3553490, + "offset": 3553600, "size": 350, }, "license": { - "offset": 3553830, + "offset": 3553950, "size": 1130, }, "package.json": { - "offset": 3554960, + "offset": 3555070, "size": 480, }, }, @@ -22508,15 +22508,15 @@ exports[`node_module collectors > pnpm max stack 2`] = ` "shebang-regex": { "files": { "index.js": { - "offset": 3555440, + "offset": 3555550, "size": 40, }, "license": { - "offset": 3555480, + "offset": 3555590, "size": 1120, }, "package.json": { - "offset": 3556600, + "offset": 3556710, "size": 420, }, }, @@ -22524,36 +22524,36 @@ exports[`node_module collectors > pnpm max stack 2`] = ` "shell-quote": { "files": { ".nycrc": { - "offset": 3557010, + "offset": 3557130, "size": 230, }, "LICENSE": { - "offset": 3557240, + "offset": 3557360, "size": 1110, }, "index.js": { - "offset": 3558350, + "offset": 3558460, "size": 90, }, "package.json": { - "offset": 3558440, + "offset": 3558550, "size": 1200, }, "parse.js": { - "offset": 3559630, + "offset": 3559750, "size": 5190, }, "print.py": { "executable": true, - "offset": 3564820, + "offset": 3564930, "size": 60, }, "quote.js": { - "offset": 3564870, + "offset": 3564990, "size": 500, }, "security.md": { - "offset": 3565370, + "offset": 3565480, "size": 300, }, }, @@ -22561,27 +22561,27 @@ exports[`node_module collectors > pnpm max stack 2`] = ` "side-channel": { "files": { ".editorconfig": { - "offset": 3565670, + "offset": 3565780, "size": 150, }, ".nycrc": { - "offset": 3565810, + "offset": 3565920, "size": 220, }, "LICENSE": { - "offset": 3566030, + "offset": 3566140, "size": 1080, }, "index.js": { - "offset": 3567100, + "offset": 3567210, "size": 1190, }, "package.json": { - "offset": 3568290, + "offset": 3568400, "size": 1570, }, "tsconfig.json": { - "offset": 3569850, + "offset": 3569960, "size": 120, }, }, @@ -22589,27 +22589,27 @@ exports[`node_module collectors > pnpm max stack 2`] = ` "side-channel-list": { "files": { ".editorconfig": { - "offset": 3569970, + "offset": 3570080, "size": 150, }, ".nycrc": { - "offset": 3570110, + "offset": 3570220, "size": 220, }, "LICENSE": { - "offset": 3570330, + "offset": 3570440, "size": 1080, }, "index.js": { - "offset": 3571400, + "offset": 3571510, "size": 3400, }, "package.json": { - "offset": 3574790, + "offset": 3574900, "size": 1490, }, "tsconfig.json": { - "offset": 3576280, + "offset": 3576390, "size": 120, }, }, @@ -22617,27 +22617,27 @@ exports[`node_module collectors > pnpm max stack 2`] = ` "side-channel-map": { "files": { ".editorconfig": { - "offset": 3576400, + "offset": 3576510, "size": 150, }, ".nycrc": { - "offset": 3576540, + "offset": 3576650, "size": 220, }, "LICENSE": { - "offset": 3576760, + "offset": 3576870, "size": 1080, }, "index.js": { - "offset": 3577830, + "offset": 3577940, "size": 1990, }, "package.json": { - "offset": 3579810, + "offset": 3579920, "size": 1580, }, "tsconfig.json": { - "offset": 3581390, + "offset": 3581500, "size": 120, }, }, @@ -22645,27 +22645,27 @@ exports[`node_module collectors > pnpm max stack 2`] = ` "side-channel-weakmap": { "files": { ".editorconfig": { - "offset": 3581500, + "offset": 3581610, "size": 150, }, ".nycrc": { - "offset": 3581650, + "offset": 3581760, "size": 220, }, "LICENSE": { - "offset": 3581860, + "offset": 3581970, "size": 1080, }, "index.js": { - "offset": 3582930, + "offset": 3583050, "size": 2710, }, "package.json": { - "offset": 3585640, + "offset": 3585750, "size": 1650, }, "tsconfig.json": { - "offset": 3587290, + "offset": 3587400, "size": 120, }, }, @@ -22673,15 +22673,15 @@ exports[`node_module collectors > pnpm max stack 2`] = ` "spdx-correct": { "files": { "LICENSE": { - "offset": 3587400, + "offset": 3587520, "size": 11360, }, "index.js": { - "offset": 3598760, + "offset": 3598870, "size": 10760, }, "package.json": { - "offset": 3609510, + "offset": 3609630, "size": 490, }, }, @@ -22689,15 +22689,15 @@ exports[`node_module collectors > pnpm max stack 2`] = ` "spdx-exceptions": { "files": { "deprecated.json": { - "offset": 3610000, + "offset": 3610110, "size": 40, }, "index.json": { - "offset": 3610030, + "offset": 3610140, "size": 1740, }, "package.json": { - "offset": 3611760, + "offset": 3611870, "size": 290, }, }, @@ -22705,27 +22705,27 @@ exports[`node_module collectors > pnpm max stack 2`] = ` "spdx-expression-parse": { "files": { "AUTHORS": { - "offset": 3612040, + "offset": 3612160, "size": 210, }, "LICENSE": { - "offset": 3612250, + "offset": 3612360, "size": 1120, }, "index.js": { - "offset": 3613360, + "offset": 3613470, "size": 150, }, "package.json": { - "offset": 3613500, + "offset": 3613610, "size": 560, }, "parse.js": { - "offset": 3614060, + "offset": 3614170, "size": 2910, }, "scan.js": { - "offset": 3616960, + "offset": 3617070, "size": 2760, }, }, @@ -22733,15 +22733,15 @@ exports[`node_module collectors > pnpm max stack 2`] = ` "spdx-license-ids": { "files": { "deprecated.json": { - "offset": 3619710, + "offset": 3619820, "size": 520, }, "index.json": { - "offset": 3620220, - "size": 10760, + "offset": 3620330, + "size": 11290, }, "package.json": { - "offset": 3630980, + "offset": 3631620, "size": 310, }, }, @@ -22749,23 +22749,23 @@ exports[`node_module collectors > pnpm max stack 2`] = ` "stop-iteration-iterator": { "files": { ".nycrc": { - "offset": 3631280, + "offset": 3631920, "size": 220, }, "LICENSE": { - "offset": 3631490, + "offset": 3632130, "size": 1080, }, "index.js": { - "offset": 3632560, + "offset": 3633210, "size": 1310, }, "package.json": { - "offset": 3633870, + "offset": 3634510, "size": 1420, }, "tsconfig.json": { - "offset": 3635290, + "offset": 3635930, "size": 70, }, }, @@ -22773,39 +22773,39 @@ exports[`node_module collectors > pnpm max stack 2`] = ` "string.prototype.padend": { "files": { ".editorconfig": { - "offset": 3635350, + "offset": 3636000, "size": 290, }, ".nycrc": { - "offset": 3635640, + "offset": 3636280, "size": 140, }, "LICENSE": { - "offset": 3635780, + "offset": 3636420, "size": 1090, }, "auto.js": { - "offset": 3636860, + "offset": 3637500, "size": 40, }, "implementation.js": { - "offset": 3636900, + "offset": 3637540, "size": 1110, }, "index.js": { - "offset": 3638010, + "offset": 3638650, "size": 660, }, "package.json": { - "offset": 3638670, + "offset": 3639310, "size": 1700, }, "polyfill.js": { - "offset": 3640360, + "offset": 3641000, "size": 210, }, "shim.js": { - "offset": 3640570, + "offset": 3641210, "size": 340, }, }, @@ -22813,39 +22813,39 @@ exports[`node_module collectors > pnpm max stack 2`] = ` "string.prototype.trim": { "files": { ".editorconfig": { - "offset": 3640900, + "offset": 3641550, "size": 290, }, ".nycrc": { - "offset": 3641190, + "offset": 3641830, "size": 140, }, "LICENSE": { - "offset": 3641330, + "offset": 3641970, "size": 1090, }, "auto.js": { - "offset": 3642410, + "offset": 3643050, "size": 40, }, "implementation.js": { - "offset": 3642450, + "offset": 3643090, "size": 1180, }, "index.js": { - "offset": 3643620, + "offset": 3644260, "size": 580, }, "package.json": { - "offset": 3644190, + "offset": 3644830, "size": 1870, }, "polyfill.js": { - "offset": 3646050, + "offset": 3646700, "size": 550, }, "shim.js": { - "offset": 3646600, + "offset": 3647240, "size": 500, }, }, @@ -22853,39 +22853,39 @@ exports[`node_module collectors > pnpm max stack 2`] = ` "string.prototype.trimend": { "files": { ".editorconfig": { - "offset": 3647100, + "offset": 3647740, "size": 290, }, ".nycrc": { - "offset": 3647380, + "offset": 3648020, "size": 140, }, "LICENSE": { - "offset": 3647520, + "offset": 3648160, "size": 1080, }, "auto.js": { - "offset": 3648590, + "offset": 3649230, "size": 40, }, "implementation.js": { - "offset": 3648630, + "offset": 3649270, "size": 640, }, "index.js": { - "offset": 3649260, + "offset": 3649910, "size": 580, }, "package.json": { - "offset": 3649840, + "offset": 3650480, "size": 1250, }, "polyfill.js": { - "offset": 3651080, + "offset": 3651720, "size": 460, }, "shim.js": { - "offset": 3651540, + "offset": 3652180, "size": 330, }, }, @@ -22893,39 +22893,39 @@ exports[`node_module collectors > pnpm max stack 2`] = ` "string.prototype.trimstart": { "files": { ".editorconfig": { - "offset": 3651870, + "offset": 3652510, "size": 290, }, ".nycrc": { - "offset": 3652160, + "offset": 3652800, "size": 140, }, "LICENSE": { - "offset": 3652300, + "offset": 3652940, "size": 1080, }, "auto.js": { - "offset": 3653370, + "offset": 3654010, "size": 40, }, "implementation.js": { - "offset": 3653400, + "offset": 3654050, "size": 650, }, "index.js": { - "offset": 3654050, + "offset": 3654700, "size": 580, }, "package.json": { - "offset": 3654630, + "offset": 3655270, "size": 1220, }, "polyfill.js": { - "offset": 3655850, + "offset": 3656490, "size": 470, }, "shim.js": { - "offset": 3656310, + "offset": 3656950, "size": 340, }, }, @@ -22933,15 +22933,15 @@ exports[`node_module collectors > pnpm max stack 2`] = ` "strip-bom": { "files": { "index.js": { - "offset": 3656650, + "offset": 3657290, "size": 320, }, "license": { - "offset": 3656960, + "offset": 3657600, "size": 1120, }, "package.json": { - "offset": 3658080, + "offset": 3658720, "size": 430, }, }, @@ -22949,19 +22949,19 @@ exports[`node_module collectors > pnpm max stack 2`] = ` "supports-color": { "files": { "browser.js": { - "offset": 3658500, + "offset": 3659150, "size": 70, }, "index.js": { - "offset": 3658570, + "offset": 3659210, "size": 2780, }, "license": { - "offset": 3661340, + "offset": 3661980, "size": 1110, }, "package.json": { - "offset": 3662450, + "offset": 3663090, "size": 560, }, }, @@ -22969,23 +22969,23 @@ exports[`node_module collectors > pnpm max stack 2`] = ` "supports-preserve-symlinks-flag": { "files": { ".nycrc": { - "offset": 3663010, + "offset": 3663650, "size": 140, }, "LICENSE": { - "offset": 3663150, + "offset": 3663790, "size": 1070, }, "browser.js": { - "offset": 3664210, + "offset": 3664850, "size": 40, }, "index.js": { - "offset": 3664250, + "offset": 3664890, "size": 300, }, "package.json": { - "offset": 3664540, + "offset": 3665190, "size": 1270, }, }, @@ -22993,23 +22993,23 @@ exports[`node_module collectors > pnpm max stack 2`] = ` "typed-array-buffer": { "files": { ".nycrc": { - "offset": 3665810, + "offset": 3666450, "size": 220, }, "LICENSE": { - "offset": 3666030, + "offset": 3666670, "size": 1080, }, "index.js": { - "offset": 3667100, + "offset": 3667740, "size": 600, }, "package.json": { - "offset": 3667690, + "offset": 3668330, "size": 1600, }, "tsconfig.json": { - "offset": 3669280, + "offset": 3669920, "size": 120, }, }, @@ -23017,23 +23017,23 @@ exports[`node_module collectors > pnpm max stack 2`] = ` "typed-array-byte-length": { "files": { ".nycrc": { - "offset": 3669400, + "offset": 3670040, "size": 220, }, "LICENSE": { - "offset": 3669610, + "offset": 3670250, "size": 1070, }, "index.js": { - "offset": 3670680, + "offset": 3671320, "size": 2750, }, "package.json": { - "offset": 3673430, + "offset": 3674070, "size": 2020, }, "tsconfig.json": { - "offset": 3675440, + "offset": 3676080, "size": 120, }, }, @@ -23041,23 +23041,23 @@ exports[`node_module collectors > pnpm max stack 2`] = ` "typed-array-byte-offset": { "files": { ".nycrc": { - "offset": 3675560, + "offset": 3676200, "size": 220, }, "LICENSE": { - "offset": 3675770, + "offset": 3676410, "size": 1070, }, "index.js": { - "offset": 3676840, + "offset": 3677480, "size": 2490, }, "package.json": { - "offset": 3679330, + "offset": 3679970, "size": 2130, }, "tsconfig.json": { - "offset": 3681450, + "offset": 3682090, "size": 150, }, }, @@ -23065,23 +23065,23 @@ exports[`node_module collectors > pnpm max stack 2`] = ` "typed-array-length": { "files": { ".nycrc": { - "offset": 3681600, + "offset": 3682240, "size": 220, }, "LICENSE": { - "offset": 3681810, + "offset": 3682450, "size": 1070, }, "index.js": { - "offset": 3682880, + "offset": 3683520, "size": 2950, }, "package.json": { - "offset": 3685820, + "offset": 3686460, "size": 2000, }, "tsconfig.json": { - "offset": 3687820, + "offset": 3688460, "size": 150, }, }, @@ -23089,27 +23089,27 @@ exports[`node_module collectors > pnpm max stack 2`] = ` "unbox-primitive": { "files": { ".editorconfig": { - "offset": 3687970, + "offset": 3688610, "size": 290, }, ".nycrc": { - "offset": 3688250, + "offset": 3688890, "size": 220, }, "LICENSE": { - "offset": 3688470, + "offset": 3689110, "size": 1080, }, "index.js": { - "offset": 3689540, + "offset": 3690180, "size": 1540, }, "package.json": { - "offset": 3691070, + "offset": 3691710, "size": 1540, }, "tsconfig.json": { - "offset": 3692610, + "offset": 3693250, "size": 70, }, }, @@ -23117,15 +23117,15 @@ exports[`node_module collectors > pnpm max stack 2`] = ` "validate-npm-package-license": { "files": { "LICENSE": { - "offset": 3692680, + "offset": 3693320, "size": 11360, }, "index.js": { - "offset": 3704030, + "offset": 3704670, "size": 1930, }, "package.json": { - "offset": 3705960, + "offset": 3706600, "size": 520, }, }, @@ -23133,24 +23133,24 @@ exports[`node_module collectors > pnpm max stack 2`] = ` "which": { "files": { "LICENSE": { - "offset": 3706480, + "offset": 3707120, "size": 770, }, "bin": { "files": { "which": { "executable": true, - "offset": 3707240, + "offset": 3707880, "size": 990, }, }, }, "package.json": { - "offset": 3708230, + "offset": 3708870, "size": 570, }, "which.js": { - "offset": 3708790, + "offset": 3709430, "size": 3190, }, }, @@ -23158,27 +23158,27 @@ exports[`node_module collectors > pnpm max stack 2`] = ` "which-boxed-primitive": { "files": { ".editorconfig": { - "offset": 3711980, + "offset": 3712620, "size": 290, }, ".nycrc": { - "offset": 3712260, + "offset": 3712900, "size": 220, }, "LICENSE": { - "offset": 3712480, + "offset": 3713120, "size": 1080, }, "index.js": { - "offset": 3713550, + "offset": 3714190, "size": 720, }, "package.json": { - "offset": 3714270, + "offset": 3714910, "size": 1540, }, "tsconfig.json": { - "offset": 3715800, + "offset": 3716440, "size": 120, }, }, @@ -23186,23 +23186,23 @@ exports[`node_module collectors > pnpm max stack 2`] = ` "which-builtin-type": { "files": { ".nycrc": { - "offset": 3715920, + "offset": 3716560, "size": 140, }, "LICENSE": { - "offset": 3716060, + "offset": 3716700, "size": 1080, }, "index.js": { - "offset": 3717130, + "offset": 3717770, "size": 3960, }, "package.json": { - "offset": 3721080, + "offset": 3721720, "size": 2570, }, "tsconfig.json": { - "offset": 3723640, + "offset": 3724280, "size": 130, }, }, @@ -23210,23 +23210,23 @@ exports[`node_module collectors > pnpm max stack 2`] = ` "which-collection": { "files": { ".nycrc": { - "offset": 3723770, + "offset": 3724410, "size": 220, }, "LICENSE": { - "offset": 3723980, + "offset": 3724620, "size": 1070, }, "index.js": { - "offset": 3725050, + "offset": 3725690, "size": 510, }, "package.json": { - "offset": 3725560, + "offset": 3726200, "size": 1620, }, "tsconfig.json": { - "offset": 3727170, + "offset": 3727810, "size": 3620, }, }, @@ -23234,27 +23234,27 @@ exports[`node_module collectors > pnpm max stack 2`] = ` "which-typed-array": { "files": { ".editorconfig": { - "offset": 3730780, + "offset": 3731420, "size": 290, }, ".nycrc": { - "offset": 3731070, + "offset": 3731710, "size": 220, }, "LICENSE": { - "offset": 3731290, + "offset": 3731930, "size": 1090, }, "index.js": { - "offset": 3732370, + "offset": 3733010, "size": 3770, }, "package.json": { - "offset": 3736130, + "offset": 3736770, "size": 2310, }, "tsconfig.json": { - "offset": 3738440, + "offset": 3739080, "size": 130, }, }, @@ -23262,7 +23262,7 @@ exports[`node_module collectors > pnpm max stack 2`] = ` }, }, "package.json": { - "offset": 3739560, + "offset": 3740200, "size": 370, }, }, @@ -75808,11 +75808,11 @@ exports[`node_module collectors > yarn two package.json 2`] = ` { "files": { "index.html": { - "offset": 1769970, + "offset": 1770630, "size": 380, }, "index.js": { - "offset": 1770350, + "offset": 1771010, "size": 620, }, "node_modules": { @@ -77121,12 +77121,12 @@ exports[`node_module collectors > yarn two package.json 2`] = ` "files": { "sax.js": { "offset": 1604040, - "size": 45640, + "size": 46310, }, }, }, "package.json": { - "offset": 1649680, + "offset": 1650340, "size": 530, }, }, @@ -77134,14 +77134,14 @@ exports[`node_module collectors > yarn two package.json 2`] = ` "semver": { "files": { "LICENSE": { - "offset": 1650200, + "offset": 1650860, "size": 770, }, "bin": { "files": { "semver.js": { "executable": true, - "offset": 1650960, + "offset": 1651630, "size": 4750, }, }, @@ -77149,19 +77149,19 @@ exports[`node_module collectors > yarn two package.json 2`] = ` "classes": { "files": { "comparator.js": { - "offset": 1655710, + "offset": 1656370, "size": 3640, }, "index.js": { - "offset": 1659340, + "offset": 1660010, "size": 150, }, "range.js": { - "offset": 1659490, + "offset": 1660150, "size": 14980, }, "semver.js": { - "offset": 1674460, + "offset": 1675130, "size": 9480, }, }, @@ -77169,191 +77169,191 @@ exports[`node_module collectors > yarn two package.json 2`] = ` "functions": { "files": { "clean.js": { - "offset": 1683940, + "offset": 1684610, "size": 210, }, "cmp.js": { - "offset": 1684150, + "offset": 1684810, "size": 970, }, "coerce.js": { - "offset": 1685110, + "offset": 1685770, "size": 2010, }, "compare-build.js": { - "offset": 1687110, + "offset": 1687780, "size": 290, }, "compare-loose.js": { - "offset": 1687390, + "offset": 1688060, "size": 140, }, "compare.js": { - "offset": 1687530, + "offset": 1688190, "size": 170, }, "diff.js": { - "offset": 1687700, + "offset": 1688360, "size": 1430, }, "eq.js": { - "offset": 1689120, + "offset": 1689780, "size": 130, }, "gt.js": { - "offset": 1689250, + "offset": 1689910, "size": 130, }, "gte.js": { - "offset": 1689370, + "offset": 1690030, "size": 130, }, "inc.js": { - "offset": 1689500, + "offset": 1690160, "size": 480, }, "lt.js": { - "offset": 1689970, + "offset": 1690640, "size": 130, }, "lte.js": { - "offset": 1690100, + "offset": 1690760, "size": 130, }, "major.js": { - "offset": 1690230, + "offset": 1690890, "size": 140, }, "minor.js": { - "offset": 1690360, + "offset": 1691020, "size": 140, }, "neq.js": { - "offset": 1690500, + "offset": 1691160, "size": 130, }, "parse.js": { - "offset": 1690630, + "offset": 1691290, "size": 340, }, "patch.js": { - "offset": 1690960, + "offset": 1691620, "size": 140, }, "prerelease.js": { - "offset": 1691090, + "offset": 1691750, "size": 240, }, "rcompare.js": { - "offset": 1691330, + "offset": 1691990, "size": 140, }, "rsort.js": { - "offset": 1691460, + "offset": 1692120, "size": 170, }, "satisfies.js": { - "offset": 1691620, + "offset": 1692280, "size": 250, }, "sort.js": { - "offset": 1691870, + "offset": 1692530, "size": 170, }, "valid.js": { - "offset": 1692030, + "offset": 1692690, "size": 180, }, }, }, "index.js": { - "offset": 1692210, + "offset": 1692870, "size": 2630, }, "internal": { "files": { "constants.js": { - "offset": 1694840, + "offset": 1695500, "size": 880, }, "debug.js": { - "offset": 1695710, + "offset": 1696370, "size": 240, }, "identifiers.js": { - "offset": 1695950, + "offset": 1696610, "size": 530, }, "lrucache.js": { - "offset": 1696470, + "offset": 1697140, "size": 810, }, "parse-options.js": { - "offset": 1697280, + "offset": 1697940, "size": 340, }, "re.js": { - "offset": 1697610, + "offset": 1698280, "size": 8140, }, }, }, "package.json": { - "offset": 1705750, + "offset": 1706410, "size": 1350, }, "preload.js": { - "offset": 1707100, + "offset": 1707760, "size": 90, }, "range.bnf": { - "offset": 1707180, + "offset": 1707850, "size": 620, }, "ranges": { "files": { "gtr.js": { - "offset": 1707800, + "offset": 1708470, "size": 240, }, "intersects.js": { - "offset": 1708030, + "offset": 1708700, "size": 230, }, "ltr.js": { - "offset": 1708260, + "offset": 1708920, "size": 230, }, "max-satisfying.js": { - "offset": 1708490, + "offset": 1709150, "size": 600, }, "min-satisfying.js": { - "offset": 1709080, + "offset": 1709740, "size": 600, }, "min-version.js": { - "offset": 1709670, + "offset": 1710330, "size": 1520, }, "outside.js": { - "offset": 1711180, + "offset": 1711850, "size": 2210, }, "simplify.js": { - "offset": 1713390, + "offset": 1714050, "size": 1360, }, "subset.js": { - "offset": 1714740, + "offset": 1715400, "size": 7530, }, "to-comparators.js": { - "offset": 1722270, + "offset": 1722930, "size": 290, }, "valid.js": { - "offset": 1722550, + "offset": 1723210, "size": 330, }, }, @@ -77363,25 +77363,25 @@ exports[`node_module collectors > yarn two package.json 2`] = ` "send": { "files": { "History.md": { - "offset": 1722870, + "offset": 1723540, "size": 710, }, "Makefile": { - "offset": 1723580, + "offset": 1724250, "size": 100, }, "index.js": { - "offset": 1723680, + "offset": 1724350, "size": 40, }, "lib": { "files": { "send.js": { - "offset": 1723720, + "offset": 1724390, "size": 9740, }, "utils.js": { - "offset": 1733460, + "offset": 1734120, "size": 800, }, }, @@ -77391,19 +77391,19 @@ exports[`node_module collectors > yarn two package.json 2`] = ` "fresh": { "files": { "HISTORY.md": { - "offset": 1734790, + "offset": 1735450, "size": 390, }, "LICENSE": { - "offset": 1735170, + "offset": 1735840, "size": 1100, }, "index.js": { - "offset": 1736270, + "offset": 1736930, "size": 1230, }, "package.json": { - "offset": 1737500, + "offset": 1738160, "size": 420, }, }, @@ -77411,19 +77411,19 @@ exports[`node_module collectors > yarn two package.json 2`] = ` "range-parser": { "files": { "HISTORY.md": { - "offset": 1737910, + "offset": 1738580, "size": 580, }, "LICENSE": { - "offset": 1738490, + "offset": 1739150, "size": 1100, }, "index.js": { - "offset": 1739590, + "offset": 1740250, "size": 1080, }, "package.json": { - "offset": 1740670, + "offset": 1741330, "size": 430, }, }, @@ -77431,7 +77431,7 @@ exports[`node_module collectors > yarn two package.json 2`] = ` }, }, "package.json": { - "offset": 1734260, + "offset": 1734920, "size": 530, }, }, @@ -77439,11 +77439,11 @@ exports[`node_module collectors > yarn two package.json 2`] = ` "serve-static": { "files": { "LICENSE": { - "offset": 1741090, + "offset": 1741750, "size": 1190, }, "index.js": { - "offset": 1742270, + "offset": 1742930, "size": 2990, }, "node_modules": { @@ -77451,19 +77451,19 @@ exports[`node_module collectors > yarn two package.json 2`] = ` "fresh": { "files": { "History.md": { - "offset": 1745750, + "offset": 1746410, "size": 80, }, "Makefile": { - "offset": 1745830, + "offset": 1746490, "size": 90, }, "index.js": { - "offset": 1745920, + "offset": 1746580, "size": 1230, }, "package.json": { - "offset": 1747140, + "offset": 1747800, "size": 470, }, }, @@ -77471,19 +77471,19 @@ exports[`node_module collectors > yarn two package.json 2`] = ` "range-parser": { "files": { "History.md": { - "offset": 1747610, + "offset": 1748270, "size": 240, }, "Makefile": { - "offset": 1747840, + "offset": 1748510, "size": 90, }, "index.js": { - "offset": 1747930, + "offset": 1748590, "size": 920, }, "package.json": { - "offset": 1748850, + "offset": 1749510, "size": 290, }, }, @@ -77491,31 +77491,31 @@ exports[`node_module collectors > yarn two package.json 2`] = ` "send": { "files": { "History.md": { - "offset": 1749140, + "offset": 1749800, "size": 640, }, "Makefile": { - "offset": 1749780, + "offset": 1750440, "size": 100, }, "index.js": { - "offset": 1749880, + "offset": 1750540, "size": 40, }, "lib": { "files": { "send.js": { - "offset": 1749920, + "offset": 1750580, "size": 9740, }, "utils.js": { - "offset": 1759650, + "offset": 1760310, "size": 800, }, }, }, "package.json": { - "offset": 1760450, + "offset": 1761110, "size": 530, }, }, @@ -77523,7 +77523,7 @@ exports[`node_module collectors > yarn two package.json 2`] = ` }, }, "package.json": { - "offset": 1745260, + "offset": 1745920, "size": 500, }, }, @@ -77531,19 +77531,19 @@ exports[`node_module collectors > yarn two package.json 2`] = ` "tiny-typed-emitter": { "files": { "LICENSE": { - "offset": 1760980, + "offset": 1761640, "size": 1110, }, "lib": { "files": { "index.js": { - "offset": 1762080, + "offset": 1762740, "size": 140, }, }, }, "package.json": { - "offset": 1762210, + "offset": 1762880, "size": 400, }, }, @@ -77551,15 +77551,15 @@ exports[`node_module collectors > yarn two package.json 2`] = ` "type-is": { "files": { "Makefile": { - "offset": 1762610, + "offset": 1763270, "size": 110, }, "index.js": { - "offset": 1762710, + "offset": 1763370, "size": 2300, }, "package.json": { - "offset": 1765010, + "offset": 1765670, "size": 500, }, }, @@ -77567,15 +77567,15 @@ exports[`node_module collectors > yarn two package.json 2`] = ` "universalify": { "files": { "LICENSE": { - "offset": 1765500, + "offset": 1766170, "size": 1100, }, "index.js": { - "offset": 1766600, + "offset": 1767270, "size": 710, }, "package.json": { - "offset": 1767310, + "offset": 1767970, "size": 620, }, }, @@ -77583,15 +77583,15 @@ exports[`node_module collectors > yarn two package.json 2`] = ` "utils-merge": { "files": { "LICENSE": { - "offset": 1767930, + "offset": 1768590, "size": 1080, }, "index.js": { - "offset": 1769000, + "offset": 1769670, "size": 390, }, "package.json": { - "offset": 1769380, + "offset": 1770050, "size": 590, }, }, @@ -77599,7 +77599,7 @@ exports[`node_module collectors > yarn two package.json 2`] = ` }, }, "package.json": { - "offset": 1770970, + "offset": 1771630, "size": 340, }, }, @@ -78514,11 +78514,11 @@ exports[`node_module collectors > yarn two package.json without node_modules 2`] { "files": { "index.html": { - "offset": 3592540, + "offset": 3593200, "size": 380, }, "index.js": { - "offset": 3592920, + "offset": 3593580, "size": 620, }, "node_modules": { @@ -81445,12 +81445,12 @@ exports[`node_module collectors > yarn two package.json without node_modules 2`] "files": { "sax.js": { "offset": 2797250, - "size": 45640, + "size": 46310, }, }, }, "package.json": { - "offset": 2842890, + "offset": 2843550, "size": 530, }, }, @@ -81458,14 +81458,14 @@ exports[`node_module collectors > yarn two package.json without node_modules 2`] "semver": { "files": { "LICENSE": { - "offset": 2843410, + "offset": 2844070, "size": 770, }, "bin": { "files": { "semver.js": { "executable": true, - "offset": 2844170, + "offset": 2844830, "size": 4750, }, }, @@ -81473,19 +81473,19 @@ exports[`node_module collectors > yarn two package.json without node_modules 2`] "classes": { "files": { "comparator.js": { - "offset": 2848920, + "offset": 2849580, "size": 3640, }, "index.js": { - "offset": 2852550, + "offset": 2853210, "size": 150, }, "range.js": { - "offset": 2852690, + "offset": 2853360, "size": 14980, }, "semver.js": { - "offset": 2867670, + "offset": 2868330, "size": 9480, }, }, @@ -81493,191 +81493,191 @@ exports[`node_module collectors > yarn two package.json without node_modules 2`] "functions": { "files": { "clean.js": { - "offset": 2877150, + "offset": 2877810, "size": 210, }, "cmp.js": { - "offset": 2877360, + "offset": 2878020, "size": 970, }, "coerce.js": { - "offset": 2878320, + "offset": 2878980, "size": 2010, }, "compare-build.js": { - "offset": 2880320, + "offset": 2880980, "size": 290, }, "compare-loose.js": { - "offset": 2880600, + "offset": 2881260, "size": 140, }, "compare.js": { - "offset": 2880730, + "offset": 2881400, "size": 170, }, "diff.js": { - "offset": 2880900, + "offset": 2881570, "size": 1430, }, "eq.js": { - "offset": 2882330, + "offset": 2882990, "size": 130, }, "gt.js": { - "offset": 2882450, + "offset": 2883120, "size": 130, }, "gte.js": { - "offset": 2882580, + "offset": 2883240, "size": 130, }, "inc.js": { - "offset": 2882700, + "offset": 2883370, "size": 480, }, "lt.js": { - "offset": 2883180, + "offset": 2883840, "size": 130, }, "lte.js": { - "offset": 2883310, + "offset": 2883970, "size": 130, }, "major.js": { - "offset": 2883430, + "offset": 2884100, "size": 140, }, "minor.js": { - "offset": 2883570, + "offset": 2884230, "size": 140, }, "neq.js": { - "offset": 2883710, + "offset": 2884370, "size": 130, }, "parse.js": { - "offset": 2883830, + "offset": 2884500, "size": 340, }, "patch.js": { - "offset": 2884160, + "offset": 2884830, "size": 140, }, "prerelease.js": { - "offset": 2884300, + "offset": 2884960, "size": 240, }, "rcompare.js": { - "offset": 2884530, + "offset": 2885200, "size": 140, }, "rsort.js": { - "offset": 2884670, + "offset": 2885330, "size": 170, }, "satisfies.js": { - "offset": 2884830, + "offset": 2885490, "size": 250, }, "sort.js": { - "offset": 2885080, + "offset": 2885740, "size": 170, }, "valid.js": { - "offset": 2885240, + "offset": 2885900, "size": 180, }, }, }, "index.js": { - "offset": 2885410, + "offset": 2886080, "size": 2630, }, "internal": { "files": { "constants.js": { - "offset": 2888040, + "offset": 2888710, "size": 880, }, "debug.js": { - "offset": 2888920, + "offset": 2889580, "size": 240, }, "identifiers.js": { - "offset": 2889160, + "offset": 2889820, "size": 530, }, "lrucache.js": { - "offset": 2889680, + "offset": 2890340, "size": 810, }, "parse-options.js": { - "offset": 2890480, + "offset": 2891150, "size": 340, }, "re.js": { - "offset": 2890820, + "offset": 2891480, "size": 8140, }, }, }, "package.json": { - "offset": 2898960, + "offset": 2899620, "size": 1350, }, "preload.js": { - "offset": 2900310, + "offset": 2900970, "size": 90, }, "range.bnf": { - "offset": 2900390, + "offset": 2901050, "size": 620, }, "ranges": { "files": { "gtr.js": { - "offset": 2901010, + "offset": 2901670, "size": 240, }, "intersects.js": { - "offset": 2901240, + "offset": 2901900, "size": 230, }, "ltr.js": { - "offset": 2901470, + "offset": 2902130, "size": 230, }, "max-satisfying.js": { - "offset": 2901690, + "offset": 2902360, "size": 600, }, "min-satisfying.js": { - "offset": 2902290, + "offset": 2902950, "size": 600, }, "min-version.js": { - "offset": 2902880, + "offset": 2903540, "size": 1520, }, "outside.js": { - "offset": 2904390, + "offset": 2905050, "size": 2210, }, "simplify.js": { - "offset": 2906600, + "offset": 2907260, "size": 1360, }, "subset.js": { - "offset": 2907950, + "offset": 2908610, "size": 7530, }, "to-comparators.js": { - "offset": 2915470, + "offset": 2916140, "size": 290, }, "valid.js": { - "offset": 2915760, + "offset": 2916420, "size": 330, }, }, @@ -81687,25 +81687,25 @@ exports[`node_module collectors > yarn two package.json without node_modules 2`] "send": { "files": { "History.md": { - "offset": 2916080, + "offset": 2916740, "size": 710, }, "Makefile": { - "offset": 2916790, + "offset": 2917450, "size": 100, }, "index.js": { - "offset": 2916890, + "offset": 2917550, "size": 40, }, "lib": { "files": { "send.js": { - "offset": 2916930, + "offset": 2917590, "size": 9740, }, "utils.js": { - "offset": 2926670, + "offset": 2927330, "size": 800, }, }, @@ -81715,19 +81715,19 @@ exports[`node_module collectors > yarn two package.json without node_modules 2`] "fresh": { "files": { "HISTORY.md": { - "offset": 2927990, + "offset": 2928660, "size": 390, }, "LICENSE": { - "offset": 2928380, + "offset": 2929040, "size": 1100, }, "index.js": { - "offset": 2929480, + "offset": 2930140, "size": 1230, }, "package.json": { - "offset": 2930700, + "offset": 2931370, "size": 420, }, }, @@ -81735,19 +81735,19 @@ exports[`node_module collectors > yarn two package.json without node_modules 2`] "range-parser": { "files": { "HISTORY.md": { - "offset": 2931120, + "offset": 2931780, "size": 580, }, "LICENSE": { - "offset": 2931700, + "offset": 2932360, "size": 1100, }, "index.js": { - "offset": 2932800, + "offset": 2933460, "size": 1080, }, "package.json": { - "offset": 2933870, + "offset": 2934540, "size": 430, }, }, @@ -81755,7 +81755,7 @@ exports[`node_module collectors > yarn two package.json without node_modules 2`] }, }, "package.json": { - "offset": 2927460, + "offset": 2928130, "size": 530, }, }, @@ -81763,11 +81763,11 @@ exports[`node_module collectors > yarn two package.json without node_modules 2`] "serve-static": { "files": { "LICENSE": { - "offset": 2934300, + "offset": 2934960, "size": 1190, }, "index.js": { - "offset": 2935480, + "offset": 2936140, "size": 2990, }, "node_modules": { @@ -81775,19 +81775,19 @@ exports[`node_module collectors > yarn two package.json without node_modules 2`] "fresh": { "files": { "History.md": { - "offset": 2938960, + "offset": 2939620, "size": 80, }, "Makefile": { - "offset": 2939040, + "offset": 2939700, "size": 90, }, "index.js": { - "offset": 2939130, + "offset": 2939790, "size": 1230, }, "package.json": { - "offset": 2940350, + "offset": 2941010, "size": 470, }, }, @@ -81795,19 +81795,19 @@ exports[`node_module collectors > yarn two package.json without node_modules 2`] "range-parser": { "files": { "History.md": { - "offset": 2940810, + "offset": 2941480, "size": 240, }, "Makefile": { - "offset": 2941050, + "offset": 2941710, "size": 90, }, "index.js": { - "offset": 2941140, + "offset": 2941800, "size": 920, }, "package.json": { - "offset": 2942060, + "offset": 2942720, "size": 290, }, }, @@ -81815,31 +81815,31 @@ exports[`node_module collectors > yarn two package.json without node_modules 2`] "send": { "files": { "History.md": { - "offset": 2942350, + "offset": 2943010, "size": 640, }, "Makefile": { - "offset": 2942990, + "offset": 2943650, "size": 100, }, "index.js": { - "offset": 2943090, + "offset": 2943750, "size": 40, }, "lib": { "files": { "send.js": { - "offset": 2943130, + "offset": 2943790, "size": 9740, }, "utils.js": { - "offset": 2952860, + "offset": 2953520, "size": 800, }, }, }, "package.json": { - "offset": 2953660, + "offset": 2954320, "size": 530, }, }, @@ -81847,7 +81847,7 @@ exports[`node_module collectors > yarn two package.json without node_modules 2`] }, }, "package.json": { - "offset": 2938470, + "offset": 2939130, "size": 500, }, }, @@ -81855,27 +81855,27 @@ exports[`node_module collectors > yarn two package.json without node_modules 2`] "set-function-length": { "files": { ".nycrc": { - "offset": 2954190, + "offset": 2954850, "size": 220, }, "LICENSE": { - "offset": 2954400, + "offset": 2955060, "size": 1090, }, "env.js": { - "offset": 2955490, + "offset": 2956150, "size": 870, }, "index.js": { - "offset": 2956350, + "offset": 2957010, "size": 1280, }, "package.json": { - "offset": 2957630, + "offset": 2958290, "size": 1960, }, "tsconfig.json": { - "offset": 2959580, + "offset": 2960240, "size": 120, }, }, @@ -81883,15 +81883,15 @@ exports[`node_module collectors > yarn two package.json without node_modules 2`] "shebang-command": { "files": { "index.js": { - "offset": 2959690, + "offset": 2960360, "size": 390, }, "license": { - "offset": 2960080, + "offset": 2960740, "size": 1120, }, "package.json": { - "offset": 2961200, + "offset": 2961860, "size": 490, }, }, @@ -81899,15 +81899,15 @@ exports[`node_module collectors > yarn two package.json without node_modules 2`] "shebang-regex": { "files": { "index.js": { - "offset": 2961680, + "offset": 2962340, "size": 50, }, "license": { - "offset": 2961720, + "offset": 2962390, "size": 1110, }, "package.json": { - "offset": 2962830, + "offset": 2963490, "size": 480, }, }, @@ -81915,15 +81915,15 @@ exports[`node_module collectors > yarn two package.json without node_modules 2`] "slash": { "files": { "index.js": { - "offset": 2963310, + "offset": 2963970, "size": 300, }, "license": { - "offset": 2963610, + "offset": 2964270, "size": 1110, }, "package.json": { - "offset": 2964720, + "offset": 2965380, "size": 420, }, }, @@ -81931,19 +81931,19 @@ exports[`node_module collectors > yarn two package.json without node_modules 2`] "supports-color": { "files": { "browser.js": { - "offset": 2965130, + "offset": 2965790, "size": 70, }, "index.js": { - "offset": 2965200, + "offset": 2965860, "size": 2750, }, "license": { - "offset": 2967940, + "offset": 2968610, "size": 1110, }, "package.json": { - "offset": 2969050, + "offset": 2969720, "size": 560, }, }, @@ -81951,19 +81951,19 @@ exports[`node_module collectors > yarn two package.json without node_modules 2`] "tiny-typed-emitter": { "files": { "LICENSE": { - "offset": 2969610, + "offset": 2970270, "size": 1110, }, "lib": { "files": { "index.js": { - "offset": 2970710, + "offset": 2971370, "size": 140, }, }, }, "package.json": { - "offset": 2970840, + "offset": 2971510, "size": 400, }, }, @@ -81971,19 +81971,19 @@ exports[`node_module collectors > yarn two package.json without node_modules 2`] "tmp": { "files": { "LICENSE": { - "offset": 2971240, + "offset": 2971900, "size": 1090, }, "lib": { "files": { "tmp.js": { - "offset": 2972320, + "offset": 2972980, "size": 14900, }, }, }, "package.json": { - "offset": 2987220, + "offset": 2987880, "size": 480, }, }, @@ -81991,15 +81991,15 @@ exports[`node_module collectors > yarn two package.json without node_modules 2`] "to-regex-range": { "files": { "LICENSE": { - "offset": 2987690, + "offset": 2988350, "size": 1100, }, "index.js": { - "offset": 2988780, + "offset": 2989440, "size": 6490, }, "package.json": { - "offset": 2995260, + "offset": 2995920, "size": 1150, }, }, @@ -82007,15 +82007,15 @@ exports[`node_module collectors > yarn two package.json without node_modules 2`] "type-is": { "files": { "Makefile": { - "offset": 2996410, + "offset": 2997070, "size": 110, }, "index.js": { - "offset": 2996510, + "offset": 2997170, "size": 2300, }, "package.json": { - "offset": 2998810, + "offset": 2999470, "size": 500, }, }, @@ -82023,15 +82023,15 @@ exports[`node_module collectors > yarn two package.json without node_modules 2`] "universalify": { "files": { "LICENSE": { - "offset": 2999300, + "offset": 2999960, "size": 1100, }, "index.js": { - "offset": 3000400, + "offset": 3001060, "size": 710, }, "package.json": { - "offset": 3001110, + "offset": 3001770, "size": 620, }, }, @@ -82039,15 +82039,15 @@ exports[`node_module collectors > yarn two package.json without node_modules 2`] "utils-merge": { "files": { "LICENSE": { - "offset": 3001730, + "offset": 3002390, "size": 1080, }, "index.js": { - "offset": 3002800, + "offset": 3003460, "size": 390, }, "package.json": { - "offset": 3003180, + "offset": 3003840, "size": 590, }, }, @@ -82055,24 +82055,24 @@ exports[`node_module collectors > yarn two package.json without node_modules 2`] "which": { "files": { "LICENSE": { - "offset": 3003770, + "offset": 3004430, "size": 770, }, "bin": { "files": { "node-which": { "executable": true, - "offset": 3004530, + "offset": 3005190, "size": 990, }, }, }, "package.json": { - "offset": 3005520, + "offset": 3006180, "size": 690, }, "which.js": { - "offset": 3006200, + "offset": 3006860, "size": 3170, }, }, @@ -82080,15 +82080,15 @@ exports[`node_module collectors > yarn two package.json without node_modules 2`] "wrappy": { "files": { "LICENSE": { - "offset": 3009360, + "offset": 3010020, "size": 770, }, "package.json": { - "offset": 3010130, + "offset": 3010790, "size": 480, }, "wrappy.js": { - "offset": 3010600, + "offset": 3011270, "size": 910, }, }, @@ -82096,12 +82096,12 @@ exports[`node_module collectors > yarn two package.json without node_modules 2`] "yaml": { "files": { "LICENSE": { - "offset": 3011510, + "offset": 3012170, "size": 740, }, "bin.mjs": { "executable": true, - "offset": 3012250, + "offset": 3012910, "size": 310, }, "browser": { @@ -82111,67 +82111,67 @@ exports[`node_module collectors > yarn two package.json without node_modules 2`] "compose": { "files": { "compose-collection.js": { - "offset": 3012560, + "offset": 3013220, "size": 3500, }, "compose-doc.js": { - "offset": 3016060, + "offset": 3016720, "size": 1560, }, "compose-node.js": { - "offset": 3017610, + "offset": 3018270, "size": 3820, }, "compose-scalar.js": { - "offset": 3021430, + "offset": 3022090, "size": 3320, }, "composer.js": { - "offset": 3024750, + "offset": 3025410, "size": 8400, }, "resolve-block-map.js": { - "offset": 3033150, + "offset": 3033810, "size": 4920, }, "resolve-block-scalar.js": { - "offset": 3038060, + "offset": 3038720, "size": 7450, }, "resolve-block-seq.js": { - "offset": 3045510, + "offset": 3046170, "size": 1740, }, "resolve-end.js": { - "offset": 3047250, + "offset": 3047910, "size": 1240, }, "resolve-flow-collection.js": { - "offset": 3048490, + "offset": 3049150, "size": 8780, }, "resolve-flow-scalar.js": { - "offset": 3057260, + "offset": 3057930, "size": 7310, }, "resolve-props.js": { - "offset": 3064570, + "offset": 3065230, "size": 5560, }, "util-contains-newline.js": { - "offset": 3070120, + "offset": 3070780, "size": 1060, }, "util-empty-scalar-position.js": { - "offset": 3071170, + "offset": 3071830, "size": 820, }, "util-flow-indent-check.js": { - "offset": 3071990, + "offset": 3072650, "size": 500, }, "util-map-includes.js": { - "offset": 3072480, + "offset": 3073140, "size": 430, }, }, @@ -82179,79 +82179,79 @@ exports[`node_module collectors > yarn two package.json without node_modules 2`] "doc": { "files": { "Document.js": { - "offset": 3072910, + "offset": 3073570, "size": 12910, }, "anchors.js": { - "offset": 3085810, + "offset": 3086470, "size": 2280, }, "applyReviver.js": { - "offset": 3088090, + "offset": 3088750, "size": 1930, }, "createNode.js": { - "offset": 3090010, + "offset": 3090670, "size": 3070, }, "directives.js": { - "offset": 3093070, + "offset": 3093730, "size": 6190, }, }, }, "errors.js": { - "offset": 3099260, + "offset": 3099920, "size": 2030, }, "index.js": { - "offset": 3101280, + "offset": 3101940, "size": 880, }, "log.js": { - "offset": 3102160, + "offset": 3102820, "size": 260, }, "nodes": { "files": { "Alias.js": { - "offset": 3102420, + "offset": 3103080, "size": 3750, }, "Collection.js": { - "offset": 3106170, + "offset": 3106830, "size": 5080, }, "Node.js": { - "offset": 3111250, + "offset": 3111910, "size": 1340, }, "Pair.js": { - "offset": 3112580, + "offset": 3113250, "size": 1130, }, "Scalar.js": { - "offset": 3113710, + "offset": 3114370, "size": 700, }, "YAMLMap.js": { - "offset": 3114410, + "offset": 3115070, "size": 4960, }, "YAMLSeq.js": { - "offset": 3119370, + "offset": 3120030, "size": 3580, }, "addPairToJSMap.js": { - "offset": 3122940, + "offset": 3123600, "size": 2290, }, "identity.js": { - "offset": 3125230, + "offset": 3125890, "size": 1520, }, "toJS.js": { - "offset": 3126740, + "offset": 3127400, "size": 1270, }, }, @@ -82259,61 +82259,61 @@ exports[`node_module collectors > yarn two package.json without node_modules 2`] "parse": { "files": { "cst-scalar.js": { - "offset": 3128010, + "offset": 3128670, "size": 9240, }, "cst-stringify.js": { - "offset": 3137240, + "offset": 3137900, "size": 1780, }, "cst-visit.js": { - "offset": 3139020, + "offset": 3139680, "size": 3970, }, "cst.js": { - "offset": 3142980, + "offset": 3143640, "size": 2890, }, "lexer.js": { - "offset": 3145870, + "offset": 3146530, "size": 24070, }, "line-counter.js": { - "offset": 3169930, + "offset": 3170590, "size": 1420, }, "parser.js": { - "offset": 3171350, + "offset": 3172010, "size": 35170, }, }, }, "public-api.js": { - "offset": 3206520, + "offset": 3207180, "size": 4000, }, "schema": { "files": { "Schema.js": { - "offset": 3210510, + "offset": 3211170, "size": 1500, }, "common": { "files": { "map.js": { - "offset": 3212000, + "offset": 3212670, "size": 440, }, "null.js": { - "offset": 3212440, + "offset": 3213100, "size": 440, }, "seq.js": { - "offset": 3212880, + "offset": 3213540, "size": 440, }, "string.js": { - "offset": 3213320, + "offset": 3213980, "size": 430, }, }, @@ -82321,19 +82321,19 @@ exports[`node_module collectors > yarn two package.json without node_modules 2`] "core": { "files": { "bool.js": { - "offset": 3213740, + "offset": 3214400, "size": 610, }, "float.js": { - "offset": 3214340, + "offset": 3215010, "size": 1400, }, "int.js": { - "offset": 3215740, + "offset": 3216410, "size": 1330, }, "schema.js": { - "offset": 3217070, + "offset": 3217730, "size": 480, }, }, @@ -82341,55 +82341,55 @@ exports[`node_module collectors > yarn two package.json without node_modules 2`] "json": { "files": { "schema.js": { - "offset": 3217550, + "offset": 3218210, "size": 1870, }, }, }, "tags.js": { - "offset": 3219410, + "offset": 3220080, "size": 2970, }, "yaml-1.1": { "files": { "binary.js": { - "offset": 3222380, + "offset": 3223040, "size": 2320, }, "bool.js": { - "offset": 3224690, + "offset": 3225350, "size": 790, }, "float.js": { - "offset": 3225480, + "offset": 3226140, "size": 1520, }, "int.js": { - "offset": 3226990, + "offset": 3227660, "size": 2140, }, "merge.js": { - "offset": 3229130, + "offset": 3229790, "size": 2450, }, "omap.js": { - "offset": 3231570, + "offset": 3232230, "size": 2480, }, "pairs.js": { - "offset": 3234050, + "offset": 3234710, "size": 2760, }, "schema.js": { - "offset": 3236800, + "offset": 3237460, "size": 860, }, "set.js": { - "offset": 3237660, + "offset": 3238320, "size": 3030, }, "timestamp.js": { - "offset": 3240690, + "offset": 3241350, "size": 3700, }, }, @@ -82399,55 +82399,55 @@ exports[`node_module collectors > yarn two package.json without node_modules 2`] "stringify": { "files": { "foldFlowLines.js": { - "offset": 3244380, + "offset": 3245050, "size": 4800, }, "stringify.js": { - "offset": 3249180, + "offset": 3249840, "size": 4370, }, "stringifyCollection.js": { - "offset": 3253550, + "offset": 3254210, "size": 5200, }, "stringifyComment.js": { - "offset": 3258740, + "offset": 3259400, "size": 730, }, "stringifyDocument.js": { - "offset": 3259470, + "offset": 3260130, "size": 2990, }, "stringifyNumber.js": { - "offset": 3262450, + "offset": 3263110, "size": 750, }, "stringifyPair.js": { - "offset": 3263200, + "offset": 3263860, "size": 5290, }, "stringifyString.js": { - "offset": 3268480, + "offset": 3269140, "size": 13170, }, }, }, "util.js": { - "offset": 3281650, + "offset": 3282310, "size": 600, }, "visit.js": { - "offset": 3282240, + "offset": 3282900, "size": 9110, }, }, }, "index.js": { - "offset": 3291350, + "offset": 3292010, "size": 200, }, "package.json": { - "offset": 3291540, + "offset": 3292200, "size": 30, }, }, @@ -82455,73 +82455,73 @@ exports[`node_module collectors > yarn two package.json without node_modules 2`] "dist": { "files": { "cli.mjs": { - "offset": 3291560, + "offset": 3292220, "size": 7470, }, "compose": { "files": { "compose-collection.js": { - "offset": 3299020, + "offset": 3299680, "size": 3620, }, "compose-doc.js": { - "offset": 3302640, + "offset": 3303300, "size": 1620, }, "compose-node.js": { - "offset": 3304250, + "offset": 3304910, "size": 3970, }, "compose-scalar.js": { - "offset": 3308210, + "offset": 3308880, "size": 3450, }, "composer.js": { - "offset": 3311660, + "offset": 3312320, "size": 8610, }, "resolve-block-map.js": { - "offset": 3320270, + "offset": 3320930, "size": 5080, }, "resolve-block-scalar.js": { - "offset": 3325340, + "offset": 3326000, "size": 7500, }, "resolve-block-seq.js": { - "offset": 3332840, + "offset": 3333500, "size": 1820, }, "resolve-end.js": { - "offset": 3334650, + "offset": 3335310, "size": 1270, }, "resolve-flow-collection.js": { - "offset": 3335920, + "offset": 3336580, "size": 8930, }, "resolve-flow-scalar.js": { - "offset": 3344840, + "offset": 3345500, "size": 7370, }, "resolve-props.js": { - "offset": 3352210, + "offset": 3352870, "size": 5580, }, "util-contains-newline.js": { - "offset": 3357790, + "offset": 3358450, "size": 1090, }, "util-empty-scalar-position.js": { - "offset": 3358870, + "offset": 3359530, "size": 850, }, "util-flow-indent-check.js": { - "offset": 3359720, + "offset": 3360380, "size": 550, }, "util-map-includes.js": { - "offset": 3360260, + "offset": 3360930, "size": 480, }, }, @@ -82529,79 +82529,79 @@ exports[`node_module collectors > yarn two package.json without node_modules 2`] "doc": { "files": { "Document.js": { - "offset": 3360730, + "offset": 3361400, "size": 13120, }, "anchors.js": { - "offset": 3373850, + "offset": 3374510, "size": 2390, }, "applyReviver.js": { - "offset": 3376230, + "offset": 3376900, "size": 1950, }, "createNode.js": { - "offset": 3378180, + "offset": 3378850, "size": 3140, }, "directives.js": { - "offset": 3381320, + "offset": 3381980, "size": 6240, }, }, }, "errors.js": { - "offset": 3387560, + "offset": 3388220, "size": 2120, }, "index.js": { - "offset": 3389680, + "offset": 3390340, "size": 1770, }, "log.js": { - "offset": 3391450, + "offset": 3392110, "size": 460, }, "nodes": { "files": { "Alias.js": { - "offset": 3391910, + "offset": 3392570, "size": 3800, }, "Collection.js": { - "offset": 3395700, + "offset": 3396360, "size": 5230, }, "Node.js": { - "offset": 3400920, + "offset": 3401580, "size": 1390, }, "Pair.js": { - "offset": 3402300, + "offset": 3402960, "size": 1240, }, "Scalar.js": { - "offset": 3403530, + "offset": 3404200, "size": 760, }, "YAMLMap.js": { - "offset": 3404290, + "offset": 3404950, "size": 5110, }, "YAMLSeq.js": { - "offset": 3409400, + "offset": 3410060, "size": 3670, }, "addPairToJSMap.js": { - "offset": 3413060, + "offset": 3413730, "size": 2340, }, "identity.js": { - "offset": 3415400, + "offset": 3416060, "size": 1800, }, "toJS.js": { - "offset": 3417200, + "offset": 3417860, "size": 1300, }, }, @@ -82609,61 +82609,61 @@ exports[`node_module collectors > yarn two package.json without node_modules 2`] "parse": { "files": { "cst-scalar.js": { - "offset": 3418490, + "offset": 3419150, "size": 9390, }, "cst-stringify.js": { - "offset": 3427870, + "offset": 3428530, "size": 1800, }, "cst-visit.js": { - "offset": 3429670, + "offset": 3430330, "size": 3990, }, "cst.js": { - "offset": 3433660, + "offset": 3434320, "size": 3250, }, "lexer.js": { - "offset": 3436900, + "offset": 3437560, "size": 24080, }, "line-counter.js": { - "offset": 3460970, + "offset": 3461630, "size": 1450, }, "parser.js": { - "offset": 3462420, + "offset": 3463080, "size": 35330, }, }, }, "public-api.js": { - "offset": 3497740, + "offset": 3498400, "size": 4190, }, "schema": { "files": { "Schema.js": { - "offset": 3501930, + "offset": 3502590, "size": 1550, }, "common": { "files": { "map.js": { - "offset": 3503470, + "offset": 3504140, "size": 490, }, "null.js": { - "offset": 3503960, + "offset": 3504620, "size": 470, }, "seq.js": { - "offset": 3504430, + "offset": 3505090, "size": 490, }, "string.js": { - "offset": 3504910, + "offset": 3505570, "size": 460, }, }, @@ -82671,19 +82671,19 @@ exports[`node_module collectors > yarn two package.json without node_modules 2`] "core": { "files": { "bool.js": { - "offset": 3505370, + "offset": 3506030, "size": 640, }, "float.js": { - "offset": 3506000, + "offset": 3506660, "size": 1510, }, "int.js": { - "offset": 3507510, + "offset": 3508170, "size": 1410, }, "schema.js": { - "offset": 3508920, + "offset": 3509580, "size": 510, }, }, @@ -82691,55 +82691,55 @@ exports[`node_module collectors > yarn two package.json without node_modules 2`] "json": { "files": { "schema.js": { - "offset": 3509430, + "offset": 3510090, "size": 1900, }, }, }, "tags.js": { - "offset": 3511330, + "offset": 3511990, "size": 3240, }, "yaml-1.1": { "files": { "binary.js": { - "offset": 3514570, + "offset": 3515230, "size": 2800, }, "bool.js": { - "offset": 3517370, + "offset": 3518030, "size": 850, }, "float.js": { - "offset": 3518210, + "offset": 3518870, "size": 1630, }, "int.js": { - "offset": 3519830, + "offset": 3520500, "size": 2240, }, "merge.js": { - "offset": 3522070, + "offset": 3522730, "size": 2550, }, "omap.js": { - "offset": 3524610, + "offset": 3525280, "size": 2590, }, "pairs.js": { - "offset": 3527200, + "offset": 3527860, "size": 2860, }, "schema.js": { - "offset": 3530050, + "offset": 3530710, "size": 920, }, "set.js": { - "offset": 3530960, + "offset": 3531620, "size": 3120, }, "timestamp.js": { - "offset": 3534080, + "offset": 3534740, "size": 3780, }, }, @@ -82749,59 +82749,59 @@ exports[`node_module collectors > yarn two package.json without node_modules 2`] "stringify": { "files": { "foldFlowLines.js": { - "offset": 3537850, + "offset": 3538510, "size": 4890, }, "stringify.js": { - "offset": 3542740, + "offset": 3543400, "size": 4510, }, "stringifyCollection.js": { - "offset": 3547240, + "offset": 3547900, "size": 5360, }, "stringifyComment.js": { - "offset": 3552600, + "offset": 3553260, "size": 810, }, "stringifyDocument.js": { - "offset": 3553400, + "offset": 3554060, "size": 3110, }, "stringifyNumber.js": { - "offset": 3556500, + "offset": 3557170, "size": 780, }, "stringifyPair.js": { - "offset": 3557280, + "offset": 3557940, "size": 5470, }, "stringifyString.js": { - "offset": 3562750, + "offset": 3563410, "size": 13350, }, }, }, "test-events.js": { - "offset": 3576100, + "offset": 3576760, "size": 4280, }, "util.js": { - "offset": 3580370, + "offset": 3581030, "size": 1010, }, "visit.js": { - "offset": 3581380, + "offset": 3582040, "size": 9260, }, }, }, "package.json": { - "offset": 3590630, + "offset": 3591290, "size": 1830, }, "util.js": { - "offset": 3592460, + "offset": 3593120, "size": 80, }, }, @@ -82809,7 +82809,7 @@ exports[`node_module collectors > yarn two package.json without node_modules 2`] }, }, "package.json": { - "offset": 3593540, + "offset": 3594200, "size": 360, }, }, diff --git a/test/snapshots/rebuilderTest.js.snap b/test/snapshots/rebuilderTest.js.snap index a59848b2b64..ae31f1b9856 100644 --- a/test/snapshots/rebuilderTest.js.snap +++ b/test/snapshots/rebuilderTest.js.snap @@ -592,6 +592,9 @@ exports[`Rebuilder Test > yarn berry workspace 2`] = ` "SECURITY.md": { "size": "", }, + "empty.js": { + "size": "", + }, "index.js": { "size": "", }, @@ -1738,6 +1741,9 @@ exports[`Rebuilder Test > yarn workspace 2`] = ` "SECURITY.md": { "size": "", }, + "empty.js": { + "size": "", + }, "index.js": { "size": "", }, diff --git a/test/src/helpers/packTester.ts b/test/src/helpers/packTester.ts index 21c965afdea..5f0c5be2dda 100644 --- a/test/src/helpers/packTester.ts +++ b/test/src/helpers/packTester.ts @@ -50,6 +50,35 @@ export function getPackageManagerWithVersion(pm: PM, packageManagerAndVersionStr } } +function getLockedInstallArgs(pm: PM): Array | undefined { + switch (pm) { + case PM.YARN: + case PM.PNPM: + case PM.BUN: + return ["--frozen-lockfile"] + case PM.YARN_BERRY: + return ["--immutable"] + default: + return undefined + } +} + +function getLockfileFixtureNameCandidates(currentTestName: string): Array { + const names: Array = [] + const normalizedTestName = currentTestName.trim() + + const leafTestName = normalizedTestName.split(" > ").at(-1)?.trim() + if (leafTestName != null && leafTestName.length > 0) { + names.push(sanitizeFileName(leafTestName)) + } + + if (normalizedTestName.length > 0) { + names.push(sanitizeFileName(normalizedTestName)) + } + + return [...new Set(names.filter(Boolean))] +} + export const EXTENDED_TIMEOUT = 14 * 60 * 1000 export const linuxDirTarget = Platform.LINUX.createTarget(DIR_TARGET, Arch.x64) export const snapTarget = Platform.LINUX.createTarget("snap", Arch.x64) @@ -131,9 +160,20 @@ export async function assertPack(expect: ExpectStatic, fixtureName: string, pack } const state = expect.getState() - const lockfileFixtureName = `${path.basename(state.testPath!, ".ts")}` + const lockfileFixtureName = path.basename(state.testPath!, path.extname(state.testPath!)) const lockfilePathPrefix = path.join(__dirname, "..", "..", "fixtures", "lockfiles", lockfileFixtureName) - const testFixtureLockfile = path.join(lockfilePathPrefix, `${sanitizeFileName(state.currentTestName!)}.txt`) + const lockfileFixtureNameCandidates = getLockfileFixtureNameCandidates(state.currentTestName || "") + if (lockfileFixtureNameCandidates.length === 0) { + lockfileFixtureNameCandidates.push("unknown-test") + } + const lockfileFixturePathCandidates = lockfileFixtureNameCandidates.map(name => path.join(lockfilePathPrefix, `${name}.txt`)) + let testFixtureLockfile = lockfileFixturePathCandidates[0] + for (const lockfilePath of lockfileFixturePathCandidates) { + if (await exists(lockfilePath)) { + testFixtureLockfile = lockfilePath + break + } + } await copyDir(projectDir, dir, { filter: it => { @@ -197,11 +237,13 @@ export async function assertPack(expect: ExpectStatic, fixtureName: string, pack const collectorOptions = collector.installOptions const destLockfile = path.join(projectDir, collectorOptions.lockfile) + let lockfileFixtureApplied = false const shouldUpdateLockfiles = !!process.env.UPDATE_LOCKFILE_FIXTURES && !!checkOptions.storeDepsLockfileSnapshot // check for lockfile fixture so we can use `--frozen-lockfile` if ((await exists(testFixtureLockfile)) && !shouldUpdateLockfiles) { await copyFile(testFixtureLockfile, destLockfile) + lockfileFixtureApplied = true } if (!(await exists(destLockfile))) { @@ -210,6 +252,7 @@ export async function assertPack(expect: ExpectStatic, fixtureName: string, pack } const appDir = await computeDefaultAppDirectory(projectDir, configuration.directories?.app) + const additionalInstallArgs = lockfileFixtureApplied ? getLockedInstallArgs(pm) : undefined await installDependencies( configuration, @@ -221,6 +264,7 @@ export async function assertPack(expect: ExpectStatic, fixtureName: string, pack { frameworkInfo: { version: ELECTRON_VERSION, useCustomDist: false }, productionDeps: createLazyProductionDeps(appDir, null, false), + additionalArgs: additionalInstallArgs, }, runtimeEnv ) @@ -229,8 +273,8 @@ export async function assertPack(expect: ExpectStatic, fixtureName: string, pack await postNodeModulesInstallHook() } - // save lockfile fixture - if (!(await exists(testFixtureLockfile)) && shouldUpdateLockfiles) { + // save or update lockfile fixture + if (shouldUpdateLockfiles) { const fixtureDir = path.dirname(testFixtureLockfile) if (!(await exists(fixtureDir))) { await mkdir(fixtureDir) From c76df0d4d9f3cac40f9ab94bd6b46ad33c838665 Mon Sep 17 00:00:00 2001 From: "electron-builder-release-bot[bot]" <236325277+electron-builder-release-bot[bot]@users.noreply.github.com> Date: Wed, 4 Mar 2026 13:40:08 -0800 Subject: [PATCH 31/61] chore(deploy): Release v26.8.2 --- .changeset/busy-impalas-divide.md | 5 -- .changeset/heavy-loops-sing.md | 5 -- .changeset/legal-crews-happen.md | 5 -- .changeset/stale-animals-buy.md | 5 -- .changeset/ten-chefs-play.md | 5 -- .changeset/wild-zebras-cheat.md | 5 -- CHANGELOG.md | 86 +++++++++++++++++++ packages/app-builder-lib/CHANGELOG.md | 23 +++++ packages/app-builder-lib/package.json | 2 +- .../app-builder-lib/src/toolsets/linux.ts | 9 +- packages/app-builder-lib/src/version.ts | 2 +- packages/dmg-builder/CHANGELOG.md | 16 ++++ packages/dmg-builder/package.json | 2 +- .../CHANGELOG.md | 18 ++++ .../package.json | 2 +- packages/electron-builder/CHANGELOG.md | 17 ++++ packages/electron-builder/package.json | 2 +- .../CHANGELOG.md | 16 ++++ .../package.json | 2 +- .../CHANGELOG.md | 16 ++++ .../package.json | 2 +- .../electron-forge-maker-nsis/CHANGELOG.md | 16 ++++ .../electron-forge-maker-nsis/package.json | 2 +- .../electron-forge-maker-snap/CHANGELOG.md | 16 ++++ .../electron-forge-maker-snap/package.json | 2 +- 25 files changed, 234 insertions(+), 47 deletions(-) delete mode 100644 .changeset/busy-impalas-divide.md delete mode 100644 .changeset/heavy-loops-sing.md delete mode 100644 .changeset/legal-crews-happen.md delete mode 100644 .changeset/stale-animals-buy.md delete mode 100644 .changeset/ten-chefs-play.md delete mode 100644 .changeset/wild-zebras-cheat.md diff --git a/.changeset/busy-impalas-divide.md b/.changeset/busy-impalas-divide.md deleted file mode 100644 index fa4977c34e1..00000000000 --- a/.changeset/busy-impalas-divide.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"app-builder-lib": patch ---- - -fix: handle pnpm deduped dependencies correctly in node module collector diff --git a/.changeset/heavy-loops-sing.md b/.changeset/heavy-loops-sing.md deleted file mode 100644 index aad2395eed7..00000000000 --- a/.changeset/heavy-loops-sing.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"app-builder-lib": patch ---- - -fix: filter electronLanguages with startsWith filter for generous matching diff --git a/.changeset/legal-crews-happen.md b/.changeset/legal-crews-happen.md deleted file mode 100644 index 483ba746c1c..00000000000 --- a/.changeset/legal-crews-happen.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"app-builder-lib": patch ---- - -Fix mksquashfs ENOENT when appimage tool paths are relative diff --git a/.changeset/stale-animals-buy.md b/.changeset/stale-animals-buy.md deleted file mode 100644 index 71639359cea..00000000000 --- a/.changeset/stale-animals-buy.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"app-builder-lib": patch ---- - -fix: regenerate schema to unblock CI diff --git a/.changeset/ten-chefs-play.md b/.changeset/ten-chefs-play.md deleted file mode 100644 index 6afe2f04d59..00000000000 --- a/.changeset/ten-chefs-play.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"electron-builder-squirrel-windows": patch ---- - -fix(squirrel-windows): remove spurious default vendor warning diff --git a/.changeset/wild-zebras-cheat.md b/.changeset/wild-zebras-cheat.md deleted file mode 100644 index e2adbbc3d53..00000000000 --- a/.changeset/wild-zebras-cheat.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"app-builder-lib": patch ---- - -fix(win): regenerate app exe if header of the asar has changed so that asar integrity properly matches diff --git a/CHANGELOG.md b/CHANGELOG.md index 3bf60e7e651..1db4c84fbf3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,89 @@ +# [](https://github.com/electron-userland/electron-builder/compare/v26.0.20...v) (2026-03-04) + + +### Bug Fixes + +* incorrect cache name set when `ELECTRON_BUILDER_CACHE` env var is present ([#9293](https://github.com/electron-userland/electron-builder/issues/9293)) ([e5f5799](https://github.com/electron-userland/electron-builder/commit/e5f5799fbb193a7a8700fcaaf1ab9e79c9c694ce)) +* add corepack to e2e docker images for running e2e updater tests ([#9331](https://github.com/electron-userland/electron-builder/issues/9331)) ([8805806](https://github.com/electron-userland/electron-builder/commit/8805806cd249fc7674a5b84b2efd68e6fc0c0df3)) +* add signing queue for Windows packager to avoid concurrent signing issues with AzureTrustedSigning ([#9454](https://github.com/electron-userland/electron-builder/issues/9454)) ([b66832d](https://github.com/electron-userland/electron-builder/commit/b66832d6fc633b4b12ccdffc0501c6d31b48a85e)) +* after-install.tpl: Fix stdio redirects in update-alternative invocation ([#9536](https://github.com/electron-userland/electron-builder/issues/9536)) ([ec9e2db](https://github.com/electron-userland/electron-builder/commit/ec9e2dbbd864f0858cf0d3b719ad75a84c59f29c)) +* aliased packages not packaged with the correct name ([#9492](https://github.com/electron-userland/electron-builder/issues/9492)) ([25b5dd2](https://github.com/electron-userland/electron-builder/commit/25b5dd2b4a87554640c99ffef376af8703f69a3d)) +* allow `npm list` to work on yarn berry and bun project setups ([#9443](https://github.com/electron-userland/electron-builder/issues/9443)) ([e70da99](https://github.com/electron-userland/electron-builder/commit/e70da99e34c1cc913b237c5a58456bf752a378bc)) +* allow home dir when it's symlinked from `/var/home` ([#9389](https://github.com/electron-userland/electron-builder/issues/9389)) ([0cd0831](https://github.com/electron-userland/electron-builder/commit/0cd0831ec1c23b4fb4d701c10d586cb83d4ed2ed)) +* always use package key-value refs when reading from dependency list instead of required package `name` ([#9583](https://github.com/electron-userland/electron-builder/issues/9583)) ([dde4309](https://github.com/electron-userland/electron-builder/commit/dde4309b9114e06d0826e8badc2cb968ceb75642)) +* **appimage:** fix mime type directory in AppDir ([#9589](https://github.com/electron-userland/electron-builder/issues/9589)) ([8940ec6](https://github.com/electron-userland/electron-builder/commit/8940ec63bac6450ed9b7c5e761954f08e6fa4242)) +* **appimage:** resolve toolset with relative directory path ([#9610](https://github.com/electron-userland/electron-builder/issues/9610)) ([52dc667](https://github.com/electron-userland/electron-builder/commit/52dc6676f8fb8157e60a55df8021988bf6c48286)) +* **build:** Revert "remove ci-info" commit ([#9398](https://github.com/electron-userland/electron-builder/issues/9398)) ([f8580dc](https://github.com/electron-userland/electron-builder/commit/f8580dcadc4fc1383b8d9661dc4c5bebec67cb9f)) +* change default value of disable_wayland depending on electron version (in order to support `electron` >38) ([#9337](https://github.com/electron-userland/electron-builder/issues/9337)) ([f4d7924](https://github.com/electron-userland/electron-builder/commit/f4d7924a082fbb9113d52782430f82b1f0ffcb52)) +* change root path for `electron/rebuild` ([#9376](https://github.com/electron-userland/electron-builder/issues/9376)) ([45a1683](https://github.com/electron-userland/electron-builder/commit/45a1683400b6525998256d83059ce7b562098eb1)) +* check if custom nsis and/or nsis resources paths is not purely an whitespace string ([#9420](https://github.com/electron-userland/electron-builder/issues/9420)) ([05e0bc7](https://github.com/electron-userland/electron-builder/commit/05e0bc7becf4057e7f7794597a57f33d23894f4b)) +* cleanup `actool` output file handle after `spawn` ([#9373](https://github.com/electron-userland/electron-builder/issues/9373)) ([1607820](https://github.com/electron-userland/electron-builder/commit/160782067f904b61d53eb28368aea58022fe1717)) +* converting all node collector logic to *not* use `Promise.All`. Migrate to for-loop ([#9414](https://github.com/electron-userland/electron-builder/issues/9414)) ([e34be3b](https://github.com/electron-userland/electron-builder/commit/e34be3b3e8486c20cac316b4ae978ce275ea9cf7)) +* deleting default macOS appPlist keys using extendInfo ([#9481](https://github.com/electron-userland/electron-builder/issues/9481)) ([cb5b9c6](https://github.com/electron-userland/electron-builder/commit/cb5b9c6e47686b0329dbf808b36587a82db03d3b)) +* **dmg:** migrate python path search from `which` => `command -v` ([#9377](https://github.com/electron-userland/electron-builder/issues/9377)) ([82c07af](https://github.com/electron-userland/electron-builder/commit/82c07af19f7f3447f3a693a641bad7261e6b924f)) +* double check "hoisted" mode for each node module, verify through filesystem check instead of `require`/`import-meta-resolve` methods ([#9401](https://github.com/electron-userland/electron-builder/issues/9401)) ([241c53a](https://github.com/electron-userland/electron-builder/commit/241c53a598d9eb566de06059b4aa2f2d97d8712c)) +* ensure correct dependency graph extraction order and yarn berry _dependencies support ([#9439](https://github.com/electron-userland/electron-builder/issues/9439)) ([bdfc76b](https://github.com/electron-userland/electron-builder/commit/bdfc76bf18cb02a38aa7b3624c9fb865c910c393)) +* handle pnpm deduped dependencies correctly in node module collector ([#9618](https://github.com/electron-userland/electron-builder/issues/9618)) ([b348df0](https://github.com/electron-userland/electron-builder/commit/b348df0ba409fee488288ead097ac900141a6dad)) +* leverage app name instead of product name for linux executable name ([#9346](https://github.com/electron-userland/electron-builder/issues/9346)) ([d193871](https://github.com/electron-userland/electron-builder/commit/d19387174365c85968034149be43d80a39e7335f)) +* lint to unblock CI and move linter to enabled runner ([#9608](https://github.com/electron-userland/electron-builder/issues/9608)) ([4e83aeb](https://github.com/electron-userland/electron-builder/commit/4e83aeb610aad811413bfd626656dabc081957a3)) +* **mac:** handle `process.env.CSC_KEY_PASSWORD = undefined` cert password to parse as empty string fallback ([#9359](https://github.com/electron-userland/electron-builder/issues/9359)) ([d8ad468](https://github.com/electron-userland/electron-builder/commit/d8ad468cbf13ffb46889bbe0ba9f8c6d8ec1ac8f)) +* node 14 vs 15+ `promisify` warning on `child_process.exec` ([#9374](https://github.com/electron-userland/electron-builder/issues/9374)) ([ef364d3](https://github.com/electron-userland/electron-builder/commit/ef364d32c4fa78200249916af934b5235e04ba3e)) +* **nsis:** allow $INSTDIR to be removed ([#9520](https://github.com/electron-userland/electron-builder/issues/9520)) ([cf10da8](https://github.com/electron-userland/electron-builder/commit/cf10da8d4988399232e5db62fe533789bdc816b2)) +* only use hardlinks during unit tests (or explicitly override) to avoid breaking debian builds where /opt is on a different drive ([#9397](https://github.com/electron-userland/electron-builder/issues/9397)) ([da1d768](https://github.com/electron-userland/electron-builder/commit/da1d7687c6d2d2db8e319e371ba001c946bf130c)) +* Optional dep's path cannot find in newest npm ([#9274](https://github.com/electron-userland/electron-builder/issues/9274)) ([38c2085](https://github.com/electron-userland/electron-builder/commit/38c2085e9a344812d32611d197d1df66d6644b45)), closes [#9259](https://github.com/electron-userland/electron-builder/issues/9259) +* **pkg:** support arm64-only MAS submissions by setting correct `hostArchitectures` ([#9409](https://github.com/electron-userland/electron-builder/issues/9409)) ([b81c253](https://github.com/electron-userland/electron-builder/commit/b81c2539c4da4630b9e955f3afa6ec76cb30447b)) +* pnpm "Invalid string length" errors during node module collection (removes `--long` arg) ([#9470](https://github.com/electron-userland/electron-builder/issues/9470)) ([d38ae8e](https://github.com/electron-userland/electron-builder/commit/d38ae8e666ca3769dfa091643ef816632f6e206f)) +* pnpm collector returning zero modules ([#9535](https://github.com/electron-userland/electron-builder/issues/9535)) ([88070e9](https://github.com/electron-userland/electron-builder/commit/88070e95e602aa1e6985d770cb4c279fea58a4a6)) +* post-process parent directories of unpacked files ([#9419](https://github.com/electron-userland/electron-builder/issues/9419)) ([1c94529](https://github.com/electron-userland/electron-builder/commit/1c945290a38cc4b6070a4e756db58354aee5e683)) +* properly collect node_modules when they're ESM and we're node>=16 ([#9380](https://github.com/electron-userland/electron-builder/issues/9380)) ([ec0a851](https://github.com/electron-userland/electron-builder/commit/ec0a85179b4508c372667f55e395d8b27c58a046)) +* quote tempBatFile path in cmd.exe args to support paths with spaces ([#9566](https://github.com/electron-userland/electron-builder/issues/9566)) ([769b608](https://github.com/electron-userland/electron-builder/commit/769b6080a7258205e2ea7cac74526765b80f7e0f)) +* restore duplicate dependency and workspace tree resolution ([#9548](https://github.com/electron-userland/electron-builder/issues/9548)) ([aec9157](https://github.com/electron-userland/electron-builder/commit/aec9157b5124acf9409a46461eca86cb1212831b)) +* search app directory before package directory to respect two-package.json project setups ([#9450](https://github.com/electron-userland/electron-builder/issues/9450)) ([39ae6a7](https://github.com/electron-userland/electron-builder/commit/39ae6a7fb7109e8ab865fd1438592440110f4b71)) +* search for actual path in hoisted mode for pnpm since it can still return virtual paths via CLI ([#9392](https://github.com/electron-userland/electron-builder/issues/9392)) ([65eecac](https://github.com/electron-userland/electron-builder/commit/65eecac1bec8fb5667621bdba4f1d2b1c75230b5)) +* skip Netlify PR deploy workflow on forks ([#9474](https://github.com/electron-userland/electron-builder/issues/9474)) ([858b5c5](https://github.com/electron-userland/electron-builder/commit/858b5c5580013b8a2c7827026354d080c4dc6e21)) +* **squirrel-windows:** remove spurious default vendor warning ([#9595](https://github.com/electron-userland/electron-builder/issues/9595)) ([5d4651d](https://github.com/electron-userland/electron-builder/commit/5d4651dbb29d0730d0fb3be96de79d9348c0a99c)) +* update `fpm` to v1.17.0 ([#9381](https://github.com/electron-userland/electron-builder/issues/9381)) ([6171472](https://github.com/electron-userland/electron-builder/commit/617147281ceb53e9d40be852678131d2832abd79)) +* update and fix `ci-info` import for detecting CI ([#9356](https://github.com/electron-userland/electron-builder/issues/9356)) ([2e0837b](https://github.com/electron-userland/electron-builder/commit/2e0837b279156ad5b60a71d1e2733b495c192f5a)) +* update pr-labeler config to correct syntax ([#9471](https://github.com/electron-userland/electron-builder/issues/9471)) ([4df70dc](https://github.com/electron-userland/electron-builder/commit/4df70dceac5f754c0ad45ae2ae7545fc781c9af6)) +* update the `dmgbuild` hex regex to be case insensitive ([#9487](https://github.com/electron-userland/electron-builder/issues/9487)) ([c3af390](https://github.com/electron-userland/electron-builder/commit/c3af390ec67becfe548a8c83f0d3ba828c28b751)) +* **updater:** don't throw on releases with non-semver tags when collecting full changelog ([#9550](https://github.com/electron-userland/electron-builder/issues/9550)) ([8aee1e6](https://github.com/electron-userland/electron-builder/commit/8aee1e6944afae05a60d2a392743a78f818ee6de)) +* use `["workspaces", "list", "--json"]` instead of `workspaceRoot` for yarn v2+ package manager ([#9415](https://github.com/electron-userland/electron-builder/issues/9415)) ([4d24ebd](https://github.com/electron-userland/electron-builder/commit/4d24ebd79ea33d8d9afa4a4bf18af90e968d0ff3)) +* Use `yarn config --json` to parse yarn berry (output varies v2-4) ([#9371](https://github.com/electron-userland/electron-builder/issues/9371)) ([2f3e7e1](https://github.com/electron-userland/electron-builder/commit/2f3e7e1e67dd30c4987c33172ca6857ee0a2fc14)) +* use correct types for makeUniversalApp (e.g. `undefined` instead of potentially `null`) ([#9416](https://github.com/electron-userland/electron-builder/issues/9416)) ([ada111e](https://github.com/electron-userland/electron-builder/commit/ada111ebe82d9487c27441969ab15899bafad4c9)) +* utilize a js helper `dynamic-import.js` for trying `await import` and `require` ([#9299](https://github.com/electron-userland/electron-builder/issues/9299)) ([9f06a85](https://github.com/electron-userland/electron-builder/commit/9f06a859f9c82b305d0a43c5b6e8c47d1c7451f1)) +* validate package version w/ `semver` when traversing directories in search of a matching node module ([#9424](https://github.com/electron-userland/electron-builder/issues/9424)) ([e3f3592](https://github.com/electron-userland/electron-builder/commit/e3f3592cfa8043c646d1791fa7f41feb45556ea9)) +* Windows build fails with spawn EINVAL after Node.js security fix ([#9489](https://github.com/electron-userland/electron-builder/issues/9489)) ([3022f0f](https://github.com/electron-userland/electron-builder/commit/3022f0f840c893d14beb82d638bedb8ed27d7ae6)) +* **win:** rebuild app exe if header of the asar has changed ([#9607](https://github.com/electron-userland/electron-builder/issues/9607)) ([02a9105](https://github.com/electron-userland/electron-builder/commit/02a9105d1c4420e418d740dfa0bbbd22d5b44735)) + + +### Features + +* add `size` option to DmgOptions for explicit DMG filesystem size ([#9543](https://github.com/electron-userland/electron-builder/issues/9543)) ([bfee115](https://github.com/electron-userland/electron-builder/commit/bfee115b185fa4dcb14b0fae6ccee1adc4d4590e)) +* add support for dmgbuild's `badge-icon` configuration ([#9513](https://github.com/electron-userland/electron-builder/issues/9513)) ([b1d6e24](https://github.com/electron-userland/electron-builder/commit/b1d6e2417001977d12dc8365e6c5ceb5ac9d49c9)) +* adding additional toolsets support for win-codesign/windows-kits ([#9430](https://github.com/electron-userland/electron-builder/issues/9430)) ([1b39a8e](https://github.com/electron-userland/electron-builder/commit/1b39a8e23c019a0e61fbe1fe5e973113036d255b)) +* adding bun node_module collector support ([#9357](https://github.com/electron-userland/electron-builder/issues/9357)) ([811d13d](https://github.com/electron-userland/electron-builder/commit/811d13d730fe78ee2e721b7c537e8b3e5579a4f0)) +* allow target specific build options to override top-level publish configuration ([#9425](https://github.com/electron-userland/electron-builder/issues/9425)) ([5f962f9](https://github.com/electron-userland/electron-builder/commit/5f962f9cae875da1208caa96fe040b2fe9224ea7)) +* allowing negative patterns to be provided for `signExts` as signing overrides ([#9335](https://github.com/electron-userland/electron-builder/issues/9335)) ([16c8fa1](https://github.com/electron-userland/electron-builder/commit/16c8fa19b288770a6d24164e562a353877e59536)) +* **app-builder-lib:** Allow local nsis-resources via env var `ELECTRON_BUILDER_NSIS_RESOURCES_DIR` ([#9333](https://github.com/electron-userland/electron-builder/issues/9333)) ([6a49f85](https://github.com/electron-userland/electron-builder/commit/6a49f85c69a22844729033f023249975f47a28f1)) +* **appimage:** support static appimage runtime via `toolsets` property ([#9558](https://github.com/electron-userland/electron-builder/issues/9558)) ([c18f0eb](https://github.com/electron-userland/electron-builder/commit/c18f0eb26bd9ba366b45e0ff9e85cdee0daba4ef)) +* Check for `\S` Silent Flag when executing NSIS Uninstaller ([#9282](https://github.com/electron-userland/electron-builder/issues/9282)) ([836a15c](https://github.com/electron-userland/electron-builder/commit/836a15c6c70abf8582aaa63603e14f77d5fa3f89)) +* **electron-publish:** add gitlab publisher ([#9209](https://github.com/electron-userland/electron-builder/issues/9209)) ([6fd391d](https://github.com/electron-userland/electron-builder/commit/6fd391d9e8390c00c8b0674d8ac3a5b7b6f0f19f)) +* Expanding `${arch}` macro for `mac.binaries` in case of unpacked files within universal builds ([#9263](https://github.com/electron-userland/electron-builder/issues/9263)) ([08773af](https://github.com/electron-userland/electron-builder/commit/08773afadfe10911ed1dff084fefe1024c5a74d8)) +* **flatpak:** use configuration for `executableArgs` ([#9530](https://github.com/electron-userland/electron-builder/issues/9530)) ([d56550f](https://github.com/electron-userland/electron-builder/commit/d56550f75828ef3c097377264336794f2f65da86)) +* improve detecting pm and support bun ([#9262](https://github.com/electron-userland/electron-builder/issues/9262)) ([c51f962](https://github.com/electron-userland/electron-builder/commit/c51f96272517c08a09504445fb31e61326e0c381)) +* Provide progress updates for multiple range differential downloads ([#9448](https://github.com/electron-userland/electron-builder/issues/9448)) ([3533a3e](https://github.com/electron-userland/electron-builder/commit/3533a3eb5af01416db3ecac703d6da031b05e615)) +* support `corepack` `packageManager` and add related unit tests ([#9309](https://github.com/electron-userland/electron-builder/issues/9309)) ([b741b72](https://github.com/electron-userland/electron-builder/commit/b741b726daeb06080ab1cf46a93d318fd89ae4e7)) +* support Icon Composer icons for macOS ([#9279](https://github.com/electron-userland/electron-builder/issues/9279)) ([b6a34c0](https://github.com/electron-userland/electron-builder/commit/b6a34c00c35e42dc279a55d672558ea7badc7fcd)) +* update `dmgbuild` and migrate to portable `dmgbuild` python bundle ([#9516](https://github.com/electron-userland/electron-builder/issues/9516)) ([9b1dbb2](https://github.com/electron-userland/electron-builder/commit/9b1dbb2f56662b2072662ed7432228e1c4437640)) +* **windows:** add `capabilities` macro for `AppxOptions` ([#9437](https://github.com/electron-userland/electron-builder/issues/9437)) ([3fa2d89](https://github.com/electron-userland/electron-builder/commit/3fa2d894ac609d0d819d7adb80ff50bfca08039f)) + + +### Performance Improvements + +* optimize duplicate checking in asar packager using Set ([#9386](https://github.com/electron-userland/electron-builder/issues/9386)) ([7f7113d](https://github.com/electron-userland/electron-builder/commit/7f7113dc435a427ca4ff041fb138512ac0bdeaaa)) + + + # [](https://github.com/electron-userland/electron-builder/compare/v26.0.20...v) (2026-02-15) diff --git a/packages/app-builder-lib/CHANGELOG.md b/packages/app-builder-lib/CHANGELOG.md index b65131b8219..2b886ef0f7e 100644 --- a/packages/app-builder-lib/CHANGELOG.md +++ b/packages/app-builder-lib/CHANGELOG.md @@ -1,5 +1,28 @@ # app-builder-lib +## 26.8.2 + +### Patch Changes + +- Fix: handle pnpm deduped dependencies correctly in node module collector _[`#9618`](https://github.com/electron-userland/electron-builder/pull/9618) [`b348df0`](https://github.com/electron-userland/electron-builder/commit/b348df0ba409fee488288ead097ac900141a6dad) [@beyondkmp](https://github.com/beyondkmp)_ +- Fix: filter electronLanguages with startsWith filter for generous matching _[`#9605`](https://github.com/electron-userland/electron-builder/pull/9605) [`f2c0547`](https://github.com/electron-userland/electron-builder/commit/f2c0547d2fa63d42636713415d4100aceb443e00) [@mmaietta](https://github.com/mmaietta)_ +- Fix mksquashfs ENOENT when appimage tool paths are relative _[`#9610`](https://github.com/electron-userland/electron-builder/pull/9610) [`52dc667`](https://github.com/electron-userland/electron-builder/commit/52dc6676f8fb8157e60a55df8021988bf6c48286) [@f-io](https://github.com/f-io)_ +- Fix: regenerate schema to unblock CI _[`#9608`](https://github.com/electron-userland/electron-builder/pull/9608) [`4e83aeb`](https://github.com/electron-userland/electron-builder/commit/4e83aeb610aad811413bfd626656dabc081957a3) [@mmaietta](https://github.com/mmaietta)_ +- Fix(win): regenerate app exe if header of the asar has changed so that asar integrity properly matches _[`#9607`](https://github.com/electron-userland/electron-builder/pull/9607) [`02a9105`](https://github.com/electron-userland/electron-builder/commit/02a9105d1c4420e418d740dfa0bbbd22d5b44735) [@mmaietta](https://github.com/mmaietta)_ + +
Updated 2 dependencies + + + +[`5d4651d`](https://github.com/electron-userland/electron-builder/commit/5d4651dbb29d0730d0fb3be96de79d9348c0a99c) + + + +- `electron-builder-squirrel-windows@26.8.2` +- `dmg-builder@26.8.2` + +
+ ## 26.8.1 ### Patch Changes diff --git a/packages/app-builder-lib/package.json b/packages/app-builder-lib/package.json index 6bfdbd90e49..c99576e5fe6 100644 --- a/packages/app-builder-lib/package.json +++ b/packages/app-builder-lib/package.json @@ -1,7 +1,7 @@ { "name": "app-builder-lib", "description": "electron-builder lib", - "version": "26.8.1", + "version": "26.8.2", "main": "out/index.js", "files": [ "out", diff --git a/packages/app-builder-lib/src/toolsets/linux.ts b/packages/app-builder-lib/src/toolsets/linux.ts index 809a4cab10e..63fc7866fed 100644 --- a/packages/app-builder-lib/src/toolsets/linux.ts +++ b/packages/app-builder-lib/src/toolsets/linux.ts @@ -59,14 +59,7 @@ export async function getAppImageTools(targetArch: Arch) { artifactPath = path.resolve(artifactPath) - const runtimeArch = - targetArch === Arch.armv7l - ? "arm32" - : targetArch === Arch.arm64 - ? "arm64" - : targetArch === Arch.ia32 - ? "ia32" - : "x64" + const runtimeArch = targetArch === Arch.armv7l ? "arm32" : targetArch === Arch.arm64 ? "arm64" : targetArch === Arch.ia32 ? "ia32" : "x64" return { mksquashfs: path.join(artifactPath, "mksquashfs"), diff --git a/packages/app-builder-lib/src/version.ts b/packages/app-builder-lib/src/version.ts index 05aa85b16da..1b0c71e7fc9 100644 --- a/packages/app-builder-lib/src/version.ts +++ b/packages/app-builder-lib/src/version.ts @@ -1 +1 @@ -export const PACKAGE_VERSION = "26.8.1" +export const PACKAGE_VERSION = "26.8.2" diff --git a/packages/dmg-builder/CHANGELOG.md b/packages/dmg-builder/CHANGELOG.md index 32c406d5437..c2772e2e1e0 100644 --- a/packages/dmg-builder/CHANGELOG.md +++ b/packages/dmg-builder/CHANGELOG.md @@ -1,5 +1,21 @@ # dmg-builder +## 26.8.2 + +### Patch Changes + +
Updated 1 dependency + + + +[`b348df0`](https://github.com/electron-userland/electron-builder/commit/b348df0ba409fee488288ead097ac900141a6dad) [`f2c0547`](https://github.com/electron-userland/electron-builder/commit/f2c0547d2fa63d42636713415d4100aceb443e00) [`52dc667`](https://github.com/electron-userland/electron-builder/commit/52dc6676f8fb8157e60a55df8021988bf6c48286) [`4e83aeb`](https://github.com/electron-userland/electron-builder/commit/4e83aeb610aad811413bfd626656dabc081957a3) [`02a9105`](https://github.com/electron-userland/electron-builder/commit/02a9105d1c4420e418d740dfa0bbbd22d5b44735) + + + +- `app-builder-lib@26.8.2` + +
+ ## 26.8.1 ### Patch Changes diff --git a/packages/dmg-builder/package.json b/packages/dmg-builder/package.json index 71d4e31824d..fc4dcb87d76 100644 --- a/packages/dmg-builder/package.json +++ b/packages/dmg-builder/package.json @@ -1,6 +1,6 @@ { "name": "dmg-builder", - "version": "26.8.1", + "version": "26.8.2", "main": "out/dmgUtil.js", "author": "Vladimir Krivosheev", "license": "MIT", diff --git a/packages/electron-builder-squirrel-windows/CHANGELOG.md b/packages/electron-builder-squirrel-windows/CHANGELOG.md index 3cc937c0dd1..97be8785a75 100644 --- a/packages/electron-builder-squirrel-windows/CHANGELOG.md +++ b/packages/electron-builder-squirrel-windows/CHANGELOG.md @@ -1,5 +1,23 @@ # electron-builder-squirrel-windows +## 26.8.2 + +### Patch Changes + +- Fix(squirrel-windows): remove spurious default vendor warning _[`#9595`](https://github.com/electron-userland/electron-builder/pull/9595) [`5d4651d`](https://github.com/electron-userland/electron-builder/commit/5d4651dbb29d0730d0fb3be96de79d9348c0a99c) [@t3chguy](https://github.com/t3chguy)_ + +
Updated 1 dependency + + + +[`b348df0`](https://github.com/electron-userland/electron-builder/commit/b348df0ba409fee488288ead097ac900141a6dad) [`f2c0547`](https://github.com/electron-userland/electron-builder/commit/f2c0547d2fa63d42636713415d4100aceb443e00) [`52dc667`](https://github.com/electron-userland/electron-builder/commit/52dc6676f8fb8157e60a55df8021988bf6c48286) [`4e83aeb`](https://github.com/electron-userland/electron-builder/commit/4e83aeb610aad811413bfd626656dabc081957a3) [`02a9105`](https://github.com/electron-userland/electron-builder/commit/02a9105d1c4420e418d740dfa0bbbd22d5b44735) + + + +- `app-builder-lib@26.8.2` + +
+ ## 26.8.1 ### Patch Changes diff --git a/packages/electron-builder-squirrel-windows/package.json b/packages/electron-builder-squirrel-windows/package.json index 81ededf3a99..c919daf805f 100644 --- a/packages/electron-builder-squirrel-windows/package.json +++ b/packages/electron-builder-squirrel-windows/package.json @@ -1,6 +1,6 @@ { "name": "electron-builder-squirrel-windows", - "version": "26.8.1", + "version": "26.8.2", "main": "out/SquirrelWindowsTarget.js", "author": "Vladimir Krivosheev", "license": "MIT", diff --git a/packages/electron-builder/CHANGELOG.md b/packages/electron-builder/CHANGELOG.md index a430ea56437..5084ab10c5e 100644 --- a/packages/electron-builder/CHANGELOG.md +++ b/packages/electron-builder/CHANGELOG.md @@ -1,5 +1,22 @@ # electron-builder +## 26.8.2 + +### Patch Changes + +
Updated 2 dependencies + + + +[`b348df0`](https://github.com/electron-userland/electron-builder/commit/b348df0ba409fee488288ead097ac900141a6dad) [`f2c0547`](https://github.com/electron-userland/electron-builder/commit/f2c0547d2fa63d42636713415d4100aceb443e00) [`52dc667`](https://github.com/electron-userland/electron-builder/commit/52dc6676f8fb8157e60a55df8021988bf6c48286) [`4e83aeb`](https://github.com/electron-userland/electron-builder/commit/4e83aeb610aad811413bfd626656dabc081957a3) [`02a9105`](https://github.com/electron-userland/electron-builder/commit/02a9105d1c4420e418d740dfa0bbbd22d5b44735) + + + +- `app-builder-lib@26.8.2` +- `dmg-builder@26.8.2` + +
+ ## 26.8.1 ### Patch Changes diff --git a/packages/electron-builder/package.json b/packages/electron-builder/package.json index 02ffa21d87f..51084cb2e93 100644 --- a/packages/electron-builder/package.json +++ b/packages/electron-builder/package.json @@ -1,7 +1,7 @@ { "name": "electron-builder", "description": "A complete solution to package and build a ready for distribution Electron app for MacOS, Windows and Linux with “auto update” support out of the box", - "version": "26.8.1", + "version": "26.8.2", "main": "out/index.js", "files": [ "out" diff --git a/packages/electron-forge-maker-appimage/CHANGELOG.md b/packages/electron-forge-maker-appimage/CHANGELOG.md index 285b2a3ca10..2dfa07a40a3 100644 --- a/packages/electron-forge-maker-appimage/CHANGELOG.md +++ b/packages/electron-forge-maker-appimage/CHANGELOG.md @@ -1,5 +1,21 @@ # electron-forge-maker-appimage +## 26.8.2 + +### Patch Changes + +
Updated 1 dependency + + + +[`b348df0`](https://github.com/electron-userland/electron-builder/commit/b348df0ba409fee488288ead097ac900141a6dad) [`f2c0547`](https://github.com/electron-userland/electron-builder/commit/f2c0547d2fa63d42636713415d4100aceb443e00) [`52dc667`](https://github.com/electron-userland/electron-builder/commit/52dc6676f8fb8157e60a55df8021988bf6c48286) [`4e83aeb`](https://github.com/electron-userland/electron-builder/commit/4e83aeb610aad811413bfd626656dabc081957a3) [`02a9105`](https://github.com/electron-userland/electron-builder/commit/02a9105d1c4420e418d740dfa0bbbd22d5b44735) + + + +- `app-builder-lib@26.8.2` + +
+ ## 26.8.1 ### Patch Changes diff --git a/packages/electron-forge-maker-appimage/package.json b/packages/electron-forge-maker-appimage/package.json index 72ab0ac5860..41b36f87670 100644 --- a/packages/electron-forge-maker-appimage/package.json +++ b/packages/electron-forge-maker-appimage/package.json @@ -1,6 +1,6 @@ { "name": "electron-forge-maker-appimage", - "version": "26.8.1", + "version": "26.8.2", "main": "main.js", "author": "Vladimir Krivosheev", "license": "MIT", diff --git a/packages/electron-forge-maker-nsis-web/CHANGELOG.md b/packages/electron-forge-maker-nsis-web/CHANGELOG.md index 9268926146e..d7956263d36 100644 --- a/packages/electron-forge-maker-nsis-web/CHANGELOG.md +++ b/packages/electron-forge-maker-nsis-web/CHANGELOG.md @@ -1,5 +1,21 @@ # electron-forge-maker-nsis-web +## 26.8.2 + +### Patch Changes + +
Updated 1 dependency + + + +[`b348df0`](https://github.com/electron-userland/electron-builder/commit/b348df0ba409fee488288ead097ac900141a6dad) [`f2c0547`](https://github.com/electron-userland/electron-builder/commit/f2c0547d2fa63d42636713415d4100aceb443e00) [`52dc667`](https://github.com/electron-userland/electron-builder/commit/52dc6676f8fb8157e60a55df8021988bf6c48286) [`4e83aeb`](https://github.com/electron-userland/electron-builder/commit/4e83aeb610aad811413bfd626656dabc081957a3) [`02a9105`](https://github.com/electron-userland/electron-builder/commit/02a9105d1c4420e418d740dfa0bbbd22d5b44735) + + + +- `app-builder-lib@26.8.2` + +
+ ## 26.8.1 ### Patch Changes diff --git a/packages/electron-forge-maker-nsis-web/package.json b/packages/electron-forge-maker-nsis-web/package.json index 064dc51b5bf..27146a3e0fd 100644 --- a/packages/electron-forge-maker-nsis-web/package.json +++ b/packages/electron-forge-maker-nsis-web/package.json @@ -1,6 +1,6 @@ { "name": "electron-forge-maker-nsis-web", - "version": "26.8.1", + "version": "26.8.2", "main": "main.js", "author": "Vladimir Krivosheev", "license": "MIT", diff --git a/packages/electron-forge-maker-nsis/CHANGELOG.md b/packages/electron-forge-maker-nsis/CHANGELOG.md index 5e31e88d690..4bd0dfce126 100644 --- a/packages/electron-forge-maker-nsis/CHANGELOG.md +++ b/packages/electron-forge-maker-nsis/CHANGELOG.md @@ -1,5 +1,21 @@ # electron-forge-maker-nsis +## 26.8.2 + +### Patch Changes + +
Updated 1 dependency + + + +[`b348df0`](https://github.com/electron-userland/electron-builder/commit/b348df0ba409fee488288ead097ac900141a6dad) [`f2c0547`](https://github.com/electron-userland/electron-builder/commit/f2c0547d2fa63d42636713415d4100aceb443e00) [`52dc667`](https://github.com/electron-userland/electron-builder/commit/52dc6676f8fb8157e60a55df8021988bf6c48286) [`4e83aeb`](https://github.com/electron-userland/electron-builder/commit/4e83aeb610aad811413bfd626656dabc081957a3) [`02a9105`](https://github.com/electron-userland/electron-builder/commit/02a9105d1c4420e418d740dfa0bbbd22d5b44735) + + + +- `app-builder-lib@26.8.2` + +
+ ## 26.8.1 ### Patch Changes diff --git a/packages/electron-forge-maker-nsis/package.json b/packages/electron-forge-maker-nsis/package.json index 4fbe2c80ff6..b75269e94b2 100644 --- a/packages/electron-forge-maker-nsis/package.json +++ b/packages/electron-forge-maker-nsis/package.json @@ -1,6 +1,6 @@ { "name": "electron-forge-maker-nsis", - "version": "26.8.1", + "version": "26.8.2", "main": "main.js", "author": "Vladimir Krivosheev", "license": "MIT", diff --git a/packages/electron-forge-maker-snap/CHANGELOG.md b/packages/electron-forge-maker-snap/CHANGELOG.md index 30ece508ac8..4ed2e9b37cb 100644 --- a/packages/electron-forge-maker-snap/CHANGELOG.md +++ b/packages/electron-forge-maker-snap/CHANGELOG.md @@ -1,5 +1,21 @@ # electron-forge-maker-snap +## 26.8.2 + +### Patch Changes + +
Updated 1 dependency + + + +[`b348df0`](https://github.com/electron-userland/electron-builder/commit/b348df0ba409fee488288ead097ac900141a6dad) [`f2c0547`](https://github.com/electron-userland/electron-builder/commit/f2c0547d2fa63d42636713415d4100aceb443e00) [`52dc667`](https://github.com/electron-userland/electron-builder/commit/52dc6676f8fb8157e60a55df8021988bf6c48286) [`4e83aeb`](https://github.com/electron-userland/electron-builder/commit/4e83aeb610aad811413bfd626656dabc081957a3) [`02a9105`](https://github.com/electron-userland/electron-builder/commit/02a9105d1c4420e418d740dfa0bbbd22d5b44735) + + + +- `app-builder-lib@26.8.2` + +
+ ## 26.8.1 ### Patch Changes diff --git a/packages/electron-forge-maker-snap/package.json b/packages/electron-forge-maker-snap/package.json index d7167fe488d..5e34109f32a 100644 --- a/packages/electron-forge-maker-snap/package.json +++ b/packages/electron-forge-maker-snap/package.json @@ -1,6 +1,6 @@ { "name": "electron-forge-maker-snap", - "version": "26.8.1", + "version": "26.8.2", "main": "main.js", "author": "Vladimir Krivosheev", "license": "MIT", From b7df0bcef5790814fd6df187346dcec625dc681e Mon Sep 17 00:00:00 2001 From: Anton Samofal Date: Tue, 10 Mar 2026 04:06:27 +0100 Subject: [PATCH 32/61] feat: pass release notes to GitHub/GitLab release body (#9581) --- .changeset/release-notes-to-github-gitlab.md | 7 +++ .../src/publish/PublishManager.ts | 36 +++++++++++-- .../electron-publish/src/gitHubPublisher.ts | 15 ++++-- .../electron-publish/src/gitlabPublisher.ts | 15 ++++-- packages/electron-publish/src/util.ts | 9 ++++ test/src/ArtifactPublisherTest.ts | 51 +++++++++++++++++++ 6 files changed, 121 insertions(+), 12 deletions(-) create mode 100644 .changeset/release-notes-to-github-gitlab.md create mode 100644 packages/electron-publish/src/util.ts diff --git a/.changeset/release-notes-to-github-gitlab.md b/.changeset/release-notes-to-github-gitlab.md new file mode 100644 index 00000000000..56272ee8f4b --- /dev/null +++ b/.changeset/release-notes-to-github-gitlab.md @@ -0,0 +1,7 @@ +--- +"app-builder-lib": minor +"electron-publish": minor +"builder-util-runtime": minor +--- + +feat: pass release notes to GitHub/GitLab release body via `releaseBody` and `releaseName` options \ No newline at end of file diff --git a/packages/app-builder-lib/src/publish/PublishManager.ts b/packages/app-builder-lib/src/publish/PublishManager.ts index 37885faaf01..9128c189573 100644 --- a/packages/app-builder-lib/src/publish/PublishManager.ts +++ b/packages/app-builder-lib/src/publish/PublishManager.ts @@ -30,7 +30,7 @@ import { UploadTask, } from "electron-publish" import { MultiProgress } from "electron-publish/out/multiProgress" -import { writeFile } from "fs/promises" +import { readFile, writeFile } from "fs/promises" import { isCI } from "ci-info" import * as path from "path" import { WriteStream as TtyWriteStream } from "tty" @@ -308,6 +308,26 @@ export async function getPublishConfigsForUpdateInfo( return publishConfigs } +async function resolveReleaseBody(packager: Packager): Promise { + const releaseInfo = packager.config.releaseInfo + if (releaseInfo?.releaseNotes) { + return releaseInfo.releaseNotes + } + if (releaseInfo?.releaseNotesFile) { + try { + return await readFile(path.resolve(packager.projectDir, releaseInfo.releaseNotesFile), "utf-8") + } catch (e: any) { + log.warn({ file: releaseInfo.releaseNotesFile, error: e.message }, "cannot read release notes file") + return null + } + } + try { + return await readFile(path.resolve(packager.projectDir, "release-notes.md"), "utf-8") + } catch { + return null + } +} + export async function createPublisher( context: PublishContext, version: string, @@ -321,11 +341,17 @@ export async function createPublisher( const provider = publishConfig.provider switch (provider) { - case "github": - return new GitHubPublisher(context, publishConfig as GithubOptions, version, options) + case "github": { + const releaseBody = await resolveReleaseBody(packager) + const releaseName = packager.config.releaseInfo?.releaseName ?? null + return new GitHubPublisher(context, publishConfig as GithubOptions, version, options, releaseBody, releaseName) + } - case "gitlab": - return new GitlabPublisher(context, publishConfig as GitlabOptions, version) + case "gitlab": { + const releaseBody = await resolveReleaseBody(packager) + const releaseName = packager.config.releaseInfo?.releaseName ?? null + return new GitlabPublisher(context, publishConfig as GitlabOptions, version, releaseBody, releaseName) + } case "keygen": return new KeygenPublisher(context, publishConfig as KeygenOptions, version) diff --git a/packages/electron-publish/src/gitHubPublisher.ts b/packages/electron-publish/src/gitHubPublisher.ts index 922ad6b2ca2..ea525cb49f8 100644 --- a/packages/electron-publish/src/gitHubPublisher.ts +++ b/packages/electron-publish/src/gitHubPublisher.ts @@ -7,6 +7,7 @@ import { parse as parseUrl, UrlWithStringQuery } from "url" import { HttpPublisher } from "./httpPublisher" import { PublishContext, PublishOptions } from "./index" import { getCiTag } from "./publisher" +import { trimStringWithWarn } from "./util" export interface Release { id: number @@ -41,7 +42,9 @@ export class GitHubPublisher extends HttpPublisher { context: PublishContext, private readonly info: GithubOptions, private readonly version: string, - private readonly options: PublishOptions = {} + private readonly options: PublishOptions = {}, + private readonly releaseBody?: string | null, + private readonly releaseName?: string | null ) { super(context, true) @@ -230,12 +233,16 @@ export class GitHubPublisher extends HttpPublisher { } private createRelease() { - return this.githubRequest(`/repos/${this.info.owner}/${this.info.repo}/releases`, this.token, { + const data: Record = { tag_name: this.tag, - name: this.version, + name: this.releaseName || this.version, draft: this.releaseType === "draft", prerelease: this.releaseType === "prerelease", - }) + } + if (this.releaseBody) { + data.body = trimStringWithWarn(this.releaseBody, 100000, "release body exceeds GitHub API limit, truncating") + } + return this.githubRequest(`/repos/${this.info.owner}/${this.info.repo}/releases`, this.token, data) } // test only diff --git a/packages/electron-publish/src/gitlabPublisher.ts b/packages/electron-publish/src/gitlabPublisher.ts index 9250fb0fb63..ceedfa3d84e 100644 --- a/packages/electron-publish/src/gitlabPublisher.ts +++ b/packages/electron-publish/src/gitlabPublisher.ts @@ -10,6 +10,7 @@ import * as FormData from "form-data" import { URL } from "url" import { HttpPublisher } from "./httpPublisher" import { PublishContext } from "./index" +import { trimStringWithWarn } from "./util" type RequestProcessor = (request: ClientRequest, reject: (error: Error) => void) => void @@ -29,7 +30,9 @@ export class GitlabPublisher extends HttpPublisher { constructor( context: PublishContext, private readonly info: GitlabOptions, - private readonly version: string + private readonly version: string, + private readonly releaseBody?: string | null, + private readonly releaseName?: string | null ) { super(context, true) @@ -114,12 +117,18 @@ export class GitlabPublisher extends HttpPublisher { } private async createRelease(): Promise { - const releaseName = this.info.vPrefixedTagName === false ? this.version : `v${this.version}` + const defaultName = this.info.vPrefixedTagName === false ? this.version : `v${this.version}` + const releaseName = this.releaseName || defaultName const branchName = await this.getDefaultBranch() + + const description = this.releaseBody + ? trimStringWithWarn(this.releaseBody, 100000, "release body exceeds GitLab limit, truncating") + : `Release ${releaseName}` + const releaseData = { tag_name: this.tag, name: releaseName, - description: `Release ${releaseName}`, + description, ref: branchName, } diff --git a/packages/electron-publish/src/util.ts b/packages/electron-publish/src/util.ts new file mode 100644 index 00000000000..1d072bdca54 --- /dev/null +++ b/packages/electron-publish/src/util.ts @@ -0,0 +1,9 @@ +import { log } from "builder-util" + +export const trimStringWithWarn = (str: string, maxLength: number, warnMessage: string): string => { + if (str.length <= maxLength) { + return str + } + log.warn({ length: str.length, maxLength }, warnMessage) + return str.substring(0, maxLength) +} \ No newline at end of file diff --git a/test/src/ArtifactPublisherTest.ts b/test/src/ArtifactPublisherTest.ts index c6be615c7c6..a68a9993163 100644 --- a/test/src/ArtifactPublisherTest.ts +++ b/test/src/ArtifactPublisherTest.ts @@ -162,3 +162,54 @@ test.ifEnv(process.env.BITBUCKET_TOKEN)("Bitbucket upload", async ({ expect }) = } as BitbucketOptions) expect(await publisher.upload({ file: iconPath, arch: Arch.x64, timeout })).toThrowError("Request timed out") }) + +const mockRelease = { id: 1, tag_name: "v1.0.0", draft: true, prerelease: false, published_at: "", upload_url: "https://uploads.github.com/{?name}" } + +function mockGithubRequest(publisher: GitHubPublisher): { getData: () => any } { + let capturedData: any = null + ;(publisher as any).githubRequest = (_path: string, _token: string, data: any) => { + capturedData = data + return Promise.resolve(mockRelease) + } + return { getData: () => capturedData } +} + +test("GitHub createRelease sends body when releaseBody is set", async ({ expect }) => { + const publisher = new GitHubPublisher(publishContext, { provider: "github", owner: "test", repo: "test", token: "__test__" }, "1.0.0", {}, "## Changes\n\n- Feature A") + const mock = mockGithubRequest(publisher) + + await (publisher as any).createRelease() + + expect(mock.getData().body).toBe("## Changes\n\n- Feature A") + expect(mock.getData().tag_name).toBe("v1.0.0") + expect(mock.getData().draft).toBe(true) +}) + +test("GitHub createRelease omits body when releaseBody is not set", async ({ expect }) => { + const publisher = new GitHubPublisher(publishContext, { provider: "github", owner: "test", repo: "test", token: "__test__" }, "1.0.0") + const mock = mockGithubRequest(publisher) + + await (publisher as any).createRelease() + + expect(mock.getData().body).toBeUndefined() + expect(mock.getData().name).toBe("1.0.0") +}) + +test("GitHub createRelease uses releaseName when set", async ({ expect }) => { + const publisher = new GitHubPublisher(publishContext, { provider: "github", owner: "test", repo: "test", token: "__test__" }, "1.0.0", {}, null, "My App v1.0.0") + const mock = mockGithubRequest(publisher) + + await (publisher as any).createRelease() + + expect(mock.getData().name).toBe("My App v1.0.0") +}) + +test("GitHub createRelease truncates body exceeding limit", async ({ expect }) => { + const longBody = "x".repeat(130000) + const publisher = new GitHubPublisher(publishContext, { provider: "github", owner: "test", repo: "test", token: "__test__" }, "1.0.0", {}, longBody) + const mock = mockGithubRequest(publisher) + + await (publisher as any).createRelease() + + expect(mock.getData().body.length).toBe(100000) +}) From 89f923f54f07c90e1aca6e28e63035b6932ca7d3 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Mon, 9 Mar 2026 20:06:42 -0700 Subject: [PATCH 33/61] chore(deps): update dependency tar to v7.5.8 [security] (#9600) --- .changeset/chatty-buckets-float.md | 5 +++++ pnpm-lock.yaml | 17 +++++++++-------- 2 files changed, 14 insertions(+), 8 deletions(-) create mode 100644 .changeset/chatty-buckets-float.md diff --git a/.changeset/chatty-buckets-float.md b/.changeset/chatty-buckets-float.md new file mode 100644 index 00000000000..36646e1a88b --- /dev/null +++ b/.changeset/chatty-buckets-float.md @@ -0,0 +1,5 @@ +--- + +--- + +chore(deps): update dependency tar to v7.5.8 [security] diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index d26c97dd5d6..40304dcafd6 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -199,7 +199,7 @@ importers: version: 7.7.3 tar: specifier: ^7.5.7 - version: 7.5.7 + version: 7.5.8 temp-file: specifier: ^3.4.0 version: 3.4.0 @@ -3493,11 +3493,12 @@ packages: glob@10.5.0: resolution: {integrity: sha512-DfXN8DfhJ7NH3Oe7cFmu3NCu1wKbkReJ8TorzSAFbSKrlNaQSKfIzqYqVY8zlbs2NLBbWpRiU52GX2PbaBVNkg==} + deprecated: Old versions of glob are not supported, and contain widely publicized security vulnerabilities, which have been fixed in the current version. Please update. Support for old versions may be purchased (at exorbitant rates) by contacting i@izs.me hasBin: true glob@7.2.3: resolution: {integrity: sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==} - deprecated: Glob versions prior to v9 are no longer supported + deprecated: Old versions of glob are not supported, and contain widely publicized security vulnerabilities, which have been fixed in the current version. Please update. Support for old versions may be purchased (at exorbitant rates) by contacting i@izs.me global-agent@3.0.0: resolution: {integrity: sha512-PT6XReJ+D07JvGoxQMkT6qji/jVNfX/h364XHZOWeRzy64sSFr+xJ5OX7LI3b4MPQzdL4H8Y8M0xzPpsVMwA8Q==} @@ -4702,8 +4703,8 @@ packages: resolution: {integrity: sha512-MeQTA1r0litLUf0Rp/iisCaL8761lKAZHaimlbGK4j0HysC4PLfqygQj9srcs0m2RdtDYnF8UuYyKpbjHYp7Jw==} engines: {node: ^14.18.0 || >=16.0.0} - tar@7.5.7: - resolution: {integrity: sha512-fov56fJiRuThVFXD6o6/Q354S7pnWMJIVlDBYijsTNx6jKSE4pvrDTs6lUnmGvNyfJwFQQwWy3owKz1ucIhveQ==} + tar@7.5.8: + resolution: {integrity: sha512-SYkBtK99u0yXa+IWL0JRzzcl7RxNpvX/U08Z+8DKnysfno7M+uExnTZH8K+VGgShf2qFPKtbNr9QBl8n7WBP6Q==} engines: {node: '>=18'} temp-dir@3.0.0: @@ -6496,7 +6497,7 @@ snapshots: ora: 5.4.1 read-binary-file-arch: 1.0.6 semver: 7.7.3 - tar: 7.5.7 + tar: 7.5.8 yargs: 17.7.2 transitivePeerDependencies: - supports-color @@ -7657,7 +7658,7 @@ snapshots: minipass-pipeline: 1.2.4 p-map: 7.0.3 ssri: 12.0.0 - tar: 7.5.7 + tar: 7.5.8 unique-filename: 4.0.0 cacheable-lookup@5.0.4: {} @@ -9157,7 +9158,7 @@ snapshots: nopt: 8.1.0 proc-log: 5.0.0 semver: 7.7.3 - tar: 7.5.7 + tar: 7.5.8 tinyglobby: 0.2.14 which: 5.0.0 transitivePeerDependencies: @@ -9767,7 +9768,7 @@ snapshots: dependencies: '@pkgr/core': 0.2.9 - tar@7.5.7: + tar@7.5.8: dependencies: '@isaacs/fs-minipass': 4.0.1 chownr: 3.0.0 From 8b39076d7bac71155761cac181d4d23f94aa2912 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Tue, 10 Mar 2026 07:41:05 -0700 Subject: [PATCH 34/61] chore(deps): update dependency tar to v7.5.10 [security] (#9634) --- .changeset/many-badgers-happen.md | 5 ++++ pnpm-lock.yaml | 45 ++++++++++++++++--------------- 2 files changed, 29 insertions(+), 21 deletions(-) create mode 100644 .changeset/many-badgers-happen.md diff --git a/.changeset/many-badgers-happen.md b/.changeset/many-badgers-happen.md new file mode 100644 index 00000000000..0e3fe4ecda5 --- /dev/null +++ b/.changeset/many-badgers-happen.md @@ -0,0 +1,5 @@ +--- + +--- + +chore(deps): update dependency tar to v7.5.10 [security] diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 40304dcafd6..b5cebc08d9b 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -199,7 +199,7 @@ importers: version: 7.7.3 tar: specifier: ^7.5.7 - version: 7.5.8 + version: 7.5.10 temp-file: specifier: ^3.4.0 version: 3.4.0 @@ -2929,6 +2929,7 @@ packages: conventional-changelog-cli@5.0.0: resolution: {integrity: sha512-9Y8fucJe18/6ef6ZlyIlT2YQUbczvoQZZuYmDLaGvcSBP+M6h+LAvf7ON7waRxKJemcCII8Yqu5/8HEfskTxJQ==} engines: {node: '>=18'} + deprecated: This package is no longer maintained. Please use the conventional-changelog package instead. hasBin: true conventional-changelog-codemirror@5.0.0: @@ -3476,11 +3477,13 @@ packages: git-raw-commits@5.0.0: resolution: {integrity: sha512-I2ZXrXeOc0KrCvC7swqtIFXFN+rbjnC7b2T943tvemIOVNl+XP8YnA9UVwqFhzzLClnSA60KR/qEjLpXzs73Qg==} engines: {node: '>=18'} + deprecated: This package is no longer maintained. For the JavaScript API, please use @conventional-changelog/git-client instead. hasBin: true git-semver-tags@8.0.0: resolution: {integrity: sha512-N7YRIklvPH3wYWAR2vysaqGLPRcpwQ0GKdlqTiVN5w1UmCdaeY3K8s6DMKRCh54DDdzyt/OAB6C8jgVtb7Y2Fg==} engines: {node: '>=18'} + deprecated: This package is no longer maintained. For the JavaScript API, please use @conventional-changelog/git-client instead. hasBin: true glob-parent@5.1.2: @@ -4039,8 +4042,8 @@ packages: resolution: {integrity: sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==} engines: {node: '>=8'} - minipass@7.1.2: - resolution: {integrity: sha512-qOOzS1cBTWYF4BH8fVePDBOO9iptMnGUEZwNc/cMWnTV2nVLZ7VoNWEPHkYczZA0pdoA7dl6e7FL659nX9S2aw==} + minipass@7.1.3: + resolution: {integrity: sha512-tEBHqDnIoM/1rXME1zgka9g6Q2lcoCkxHLuc7ODJ5BxbP5d4c2Z5cGgtXAku59200Cx7diuHTOYfSBD8n6mm8A==} engines: {node: '>=16 || 14 >=14.17'} minizlib@3.1.0: @@ -4703,8 +4706,8 @@ packages: resolution: {integrity: sha512-MeQTA1r0litLUf0Rp/iisCaL8761lKAZHaimlbGK4j0HysC4PLfqygQj9srcs0m2RdtDYnF8UuYyKpbjHYp7Jw==} engines: {node: ^14.18.0 || >=16.0.0} - tar@7.5.8: - resolution: {integrity: sha512-SYkBtK99u0yXa+IWL0JRzzcl7RxNpvX/U08Z+8DKnysfno7M+uExnTZH8K+VGgShf2qFPKtbNr9QBl8n7WBP6Q==} + tar@7.5.10: + resolution: {integrity: sha512-8mOPs1//5q/rlkNSPcCegA6hiHJYDmSLEI8aMH/CdSQJNWztHC9WHNam5zdQlfpTwB9Xp7IBEsHfV5LKMJGVAw==} engines: {node: '>=18'} temp-dir@3.0.0: @@ -6497,7 +6500,7 @@ snapshots: ora: 5.4.1 read-binary-file-arch: 1.0.6 semver: 7.7.3 - tar: 7.5.8 + tar: 7.5.10 yargs: 17.7.2 transitivePeerDependencies: - supports-color @@ -6685,7 +6688,7 @@ snapshots: '@isaacs/fs-minipass@4.0.1': dependencies: - minipass: 7.1.2 + minipass: 7.1.3 '@istanbuljs/load-nyc-config@1.1.0': dependencies: @@ -7652,13 +7655,13 @@ snapshots: fs-minipass: 3.0.3 glob: 10.5.0 lru-cache: 10.4.3 - minipass: 7.1.2 + minipass: 7.1.3 minipass-collect: 2.0.1 minipass-flush: 1.0.5 minipass-pipeline: 1.2.4 p-map: 7.0.3 ssri: 12.0.0 - tar: 7.5.8 + tar: 7.5.10 unique-filename: 4.0.0 cacheable-lookup@5.0.4: {} @@ -8415,7 +8418,7 @@ snapshots: fs-minipass@3.0.3: dependencies: - minipass: 7.1.2 + minipass: 7.1.3 fs.realpath@1.0.0: {} @@ -8481,7 +8484,7 @@ snapshots: foreground-child: 3.3.1 jackspeak: 3.4.3 minimatch: 9.0.5 - minipass: 7.1.2 + minipass: 7.1.3 package-json-from-dist: 1.0.1 path-scurry: 1.11.1 @@ -8961,7 +8964,7 @@ snapshots: '@npmcli/agent': 3.0.0 cacache: 19.0.1 http-cache-semantics: 4.2.0 - minipass: 7.1.2 + minipass: 7.1.3 minipass-fetch: 4.0.1 minipass-flush: 1.0.5 minipass-pipeline: 1.2.4 @@ -9072,11 +9075,11 @@ snapshots: minipass-collect@2.0.1: dependencies: - minipass: 7.1.2 + minipass: 7.1.3 minipass-fetch@4.0.1: dependencies: - minipass: 7.1.2 + minipass: 7.1.3 minipass-sized: 1.0.3 minizlib: 3.1.0 optionalDependencies: @@ -9098,11 +9101,11 @@ snapshots: dependencies: yallist: 4.0.0 - minipass@7.1.2: {} + minipass@7.1.3: {} minizlib@3.1.0: dependencies: - minipass: 7.1.2 + minipass: 7.1.3 mkdirp@0.5.6: dependencies: @@ -9158,7 +9161,7 @@ snapshots: nopt: 8.1.0 proc-log: 5.0.0 semver: 7.7.3 - tar: 7.5.8 + tar: 7.5.10 tinyglobby: 0.2.14 which: 5.0.0 transitivePeerDependencies: @@ -9288,7 +9291,7 @@ snapshots: path-scurry@1.11.1: dependencies: lru-cache: 10.4.3 - minipass: 7.1.2 + minipass: 7.1.3 path-sort@0.1.0: {} @@ -9693,7 +9696,7 @@ snapshots: ssri@12.0.0: dependencies: - minipass: 7.1.2 + minipass: 7.1.3 stack-utils@2.0.6: dependencies: @@ -9768,11 +9771,11 @@ snapshots: dependencies: '@pkgr/core': 0.2.9 - tar@7.5.8: + tar@7.5.10: dependencies: '@isaacs/fs-minipass': 4.0.1 chownr: 3.0.0 - minipass: 7.1.2 + minipass: 7.1.3 minizlib: 3.1.0 yallist: 5.0.0 From 0c8fc415debf0dc7e19e8ffd9c06db100ef41f11 Mon Sep 17 00:00:00 2001 From: ysansan Date: Tue, 10 Mar 2026 22:41:35 +0800 Subject: [PATCH 35/61] fix: respect electron_builder_binaries_mirror in downloadArtifact (#9631) --- .changeset/respect-binaries-mirror.md | 13 +++++++++++ packages/app-builder-lib/src/binDownload.ts | 24 +++++++++++++++------ 2 files changed, 30 insertions(+), 7 deletions(-) create mode 100644 .changeset/respect-binaries-mirror.md diff --git a/.changeset/respect-binaries-mirror.md b/.changeset/respect-binaries-mirror.md new file mode 100644 index 00000000000..86775ed3758 --- /dev/null +++ b/.changeset/respect-binaries-mirror.md @@ -0,0 +1,13 @@ +--- +"app-builder-lib": patch +--- + +fix: respect electron_builder_binaries_mirror in downloadArtifact + +downloadArtifact() was ignoring electron_builder_binaries_mirror and falling back +to electron_mirror due to @electron/get behavior. This affected dmg-builder +(macOS) and appimage-tools (Linux) downloads. + +- Extract getBinariesMirrorUrl() to share mirror URL resolution +- Use the helper in both downloadArtifact() and getBinFromUrl() +- Ensure custom mirrors are respected for all binary downloads diff --git a/packages/app-builder-lib/src/binDownload.ts b/packages/app-builder-lib/src/binDownload.ts index ac904329e17..a676c2b7737 100644 --- a/packages/app-builder-lib/src/binDownload.ts +++ b/packages/app-builder-lib/src/binDownload.ts @@ -72,7 +72,8 @@ export function getCacheDirectory(isAvoidSystemOnWindows = false): string { export async function downloadArtifact(options: { releaseName: string; filenameWithExt: string; checksums: Record; githubOrgRepo?: string }): Promise { const { releaseName, filenameWithExt, checksums, githubOrgRepo = "electron-userland/electron-builder-binaries" } = options - const file = await _downloadArtifact(`https://github.com/${githubOrgRepo}/releases/download/`, releaseName, filenameWithExt, checksums) + const baseUrl = getBinariesMirrorUrl(githubOrgRepo) + const file = await _downloadArtifact(baseUrl, releaseName, filenameWithExt, checksums) return file } @@ -177,6 +178,20 @@ async function _downloadArtifact(baseUrl: string, releaseName: string, filenameW const versionToPromise = new Map>() +/** + * Get the binaries mirror URL from environment variables. + * Supports various npm config formats and falls back to GitHub. + */ +function getBinariesMirrorUrl(githubOrgRepo: string): string { + return ( + process.env.NPM_CONFIG_ELECTRON_BUILDER_BINARIES_MIRROR || + process.env.npm_config_electron_builder_binaries_mirror || + process.env.npm_package_config_electron_builder_binaries_mirror || + process.env.ELECTRON_BUILDER_BINARIES_MIRROR || + `https://github.com/${githubOrgRepo}/releases/download/` + ) +} + export function download(url: string, output: string, checksum?: string | null): Promise { const args = ["download", "--url", url, "--output", output] if (checksum != null) { @@ -195,12 +210,7 @@ export function getBinFromUrl(releaseName: string, filenameWithExt: string, chec if (process.env.ELECTRON_BUILDER_BINARIES_DOWNLOAD_OVERRIDE_URL) { url = process.env.ELECTRON_BUILDER_BINARIES_DOWNLOAD_OVERRIDE_URL + "/" + filenameWithExt } else { - const baseUrl = - process.env.NPM_CONFIG_ELECTRON_BUILDER_BINARIES_MIRROR || - process.env.npm_config_electron_builder_binaries_mirror || - process.env.npm_package_config_electron_builder_binaries_mirror || - process.env.ELECTRON_BUILDER_BINARIES_MIRROR || - `https://github.com/${githubOrgRepo}/releases/download/` + const baseUrl = getBinariesMirrorUrl(githubOrgRepo) const middleUrl = process.env.NPM_CONFIG_ELECTRON_BUILDER_BINARIES_CUSTOM_DIR || process.env.npm_config_electron_builder_binaries_custom_dir || From 13d85355b6d37bd82d5153d260ba11de71323875 Mon Sep 17 00:00:00 2001 From: JPCrounse Date: Fri, 13 Mar 2026 00:42:57 +0100 Subject: [PATCH 36/61] feat(nsis): detect Windows version and exclude Windows 7 compatibility logic when on Windows 8+ (#9564) --- .changeset/new-seas-attend.md | 5 ++++ .../templates/nsis/multiUser.nsh | 23 +++++++++++-------- 2 files changed, 19 insertions(+), 9 deletions(-) create mode 100644 .changeset/new-seas-attend.md diff --git a/.changeset/new-seas-attend.md b/.changeset/new-seas-attend.md new file mode 100644 index 00000000000..65c4b19f5e3 --- /dev/null +++ b/.changeset/new-seas-attend.md @@ -0,0 +1,5 @@ +--- +"app-builder-lib": minor +--- + +feat(nsis): detect windows version and exclude win 7 compatibility logic when not needed diff --git a/packages/app-builder-lib/templates/nsis/multiUser.nsh b/packages/app-builder-lib/templates/nsis/multiUser.nsh index c345dee7a88..d37594b71b6 100644 --- a/packages/app-builder-lib/templates/nsis/multiUser.nsh +++ b/packages/app-builder-lib/templates/nsis/multiUser.nsh @@ -1,5 +1,6 @@ !include FileFunc.nsh !include UAC.nsh +!include WinVer.nsh !define FOLDERID_UserProgramFiles {5CD7AEE2-2219-4A67-B85D-6C9CE15660CB} !define KF_FLAG_CREATE 0x00008000 @@ -28,15 +29,19 @@ Var installMode StrCpy $INSTDIR $perUserInstallationFolder ${else} StrCpy $0 "$LocalAppData\Programs" - System::Store S - # Win7 has a per-user programfiles known folder and this can be a non-default location - System::Call 'SHELL32::SHGetKnownFolderPath(g "${FOLDERID_UserProgramFiles}", i ${KF_FLAG_CREATE}, p 0, *p .r2)i.r1' - ${If} $1 == 0 - System::Call '*$2(&w${NSIS_MAX_STRLEN} .s)' - StrCpy $0 $1 - System::Call 'OLE32::CoTaskMemFree(p r2)' - ${endif} - System::Store L + + ${IfNot} ${AtLeastWin8} + System::Store S + # Win7 has a per-user programfiles known folder and this can be a non-default location + System::Call 'SHELL32::SHGetKnownFolderPath(g "${FOLDERID_UserProgramFiles}", i ${KF_FLAG_CREATE}, p 0, *p .r2)i.r1' + ${If} $1 == 0 + System::Call '*$2(&w${NSIS_MAX_STRLEN} .s)' + StrCpy $0 $1 + System::Call 'OLE32::CoTaskMemFree(p r2)' + ${endif} + System::Store L + ${EndIf} + StrCpy $INSTDIR "$0\${APP_FILENAME}" ${endif} From ed422f36540a93e9bd2a19bc7a5e729bf2b033ea Mon Sep 17 00:00:00 2001 From: sabonerune <102559104+sabonerune@users.noreply.github.com> Date: Sun, 15 Mar 2026 03:26:16 +0900 Subject: [PATCH 37/61] feat(appimage): Launch with `--no-sandbox` only when necessary (#9590) --- .changeset/dull-carpets-stick.md | 5 ++++ .../src/targets/appimage/AppImageTarget.ts | 7 +++-- .../src/targets/appimage/appImageUtil.ts | 26 +++++++++++++++++-- .../snapshots/linux/linuxPackagerTest.js.snap | 2 +- 4 files changed, 35 insertions(+), 5 deletions(-) create mode 100644 .changeset/dull-carpets-stick.md diff --git a/.changeset/dull-carpets-stick.md b/.changeset/dull-carpets-stick.md new file mode 100644 index 00000000000..ea337567547 --- /dev/null +++ b/.changeset/dull-carpets-stick.md @@ -0,0 +1,5 @@ +--- +"app-builder-lib": minor +--- + +feat: If necessary, start with --no-sandbox diff --git a/packages/app-builder-lib/src/targets/appimage/AppImageTarget.ts b/packages/app-builder-lib/src/targets/appimage/AppImageTarget.ts index b41bca36e38..fb7b08bdf74 100644 --- a/packages/app-builder-lib/src/targets/appimage/AppImageTarget.ts +++ b/packages/app-builder-lib/src/targets/appimage/AppImageTarget.ts @@ -32,8 +32,11 @@ export default class AppImageTarget extends Target { super("appImage") this.desktopEntry = new Lazy(() => { - const args = this.options.executableArgs?.join(" ") || "--no-sandbox" - return helper.computeDesktopEntry(this.options, `${APP_RUN_ENTRYPOINT} ${args} %U`, { + const appimageTool = packager.config.toolsets?.appimage + const defaultArgs = appimageTool == null || appimageTool === "0.0.0" ? ["--no-sandbox"] : [] + const args = this.options.executableArgs ?? defaultArgs + const exec = [APP_RUN_ENTRYPOINT, ...args, "%U"].join(" ") + return helper.computeDesktopEntry(this.options, exec, { "X-AppImage-Version": `${packager.appInfo.buildVersion}`, }) }) diff --git a/packages/app-builder-lib/src/targets/appimage/appImageUtil.ts b/packages/app-builder-lib/src/targets/appimage/appImageUtil.ts index 6eabc7efc87..249363245c1 100644 --- a/packages/app-builder-lib/src/targets/appimage/appImageUtil.ts +++ b/packages/app-builder-lib/src/targets/appimage/appImageUtil.ts @@ -234,13 +234,35 @@ fi isEulaAccepted=1 +HAVE_NO_SANDBOX=0 +for arg in "\${args[@]}" ; do + if [ "$arg" = --no-sandbox ] ; then + HAVE_NO_SANDBOX=1 + break + fi +done +NO_SANDBOX= +# Use 'unshare -Ur true' as a heuristic to detect whether user namespaces are available. +# Notes: +# - When running as root, this check will always succeed even if the sandbox configuration +# actually relies on unprivileged user namespaces. In practice, Chrome/Electron usually +# disables or adjusts the sandbox separately when running as root, so this probe is mostly +# a no-op in that scenario. +# - On minimal systems (e.g. Alpine or stripped-down containers) 'unshare' may not exist. +# In that case the shell will return exit code 127 ("command not found"), which will cause +# us to add '--no-sandbox'. This is an intentional fail-safe: we prefer the app to start +# without sandboxing rather than crash on startup. +if [ $HAVE_NO_SANDBOX -eq 0 ] && ! unshare -Ur true 2>/dev/null ; then + NO_SANDBOX=--no-sandbox +fi + atexit() { if [ $isEulaAccepted == 1 ] ; then if [ $NUMBER_OF_ARGS -eq 0 ] ; then - exec "$BIN" + exec "$BIN" $NO_SANDBOX else - exec "$BIN" "\${args[@]}" + exec "$BIN" $NO_SANDBOX "\${args[@]}" fi fi } diff --git a/test/snapshots/linux/linuxPackagerTest.js.snap b/test/snapshots/linux/linuxPackagerTest.js.snap index a4be546bd01..b7c13de0844 100644 --- a/test/snapshots/linux/linuxPackagerTest.js.snap +++ b/test/snapshots/linux/linuxPackagerTest.js.snap @@ -243,7 +243,7 @@ exports[`LinuxPackager > AppImage toolset 0.0.0 > text license and file associat exports[`LinuxPackager > AppImage toolset 1.0.2 > AppImage - default icon, custom executable and custom desktop 1`] = ` "[Desktop Entry] Name=Test App ßW -Exec=AppRun --no-sandbox %U +Exec=AppRun %U Terminal=true Type=Application Icon=Foo From 0ea48ac284ec8f64e1a0e7d10481257460fe1919 Mon Sep 17 00:00:00 2001 From: Kenneth Chew <79120643+kthchew@users.noreply.github.com> Date: Tue, 7 Apr 2026 20:07:59 -0400 Subject: [PATCH 38/61] docs(mac): mention hardened runtime in ad-hoc vs no signing section (#9647) --- pages/code-signing-mac.md | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/pages/code-signing-mac.md b/pages/code-signing-mac.md index a26625e622c..4985a337141 100644 --- a/pages/code-signing-mac.md +++ b/pages/code-signing-mac.md @@ -25,6 +25,13 @@ To disable Code Signing when building for macOS leave all the above vars unset e Another way — set `mac.identity` to `null`. You can pass additional configuration using CLI as well: `-c.mac.identity=null`. If you are building for ARM, you likely actually want to use ad-hoc signing, in which case you should set `mac.identity` to `-`. +!!! warning "Disabling code signing disables hardened runtime" + Unlike ad-hoc signing (`mac.identity=-`), a complete lack of signing (`mac.identity=null`) will disable hardened runtime in the final output even if its associated configuration setting is enabled. If your goal in setting `mac.identity=null` is to work around one of these issues, consider trying these suggested solutions instead: + + * An error saying "[App] cannot be opened because of a problem" and/or a crash report for your app in Console.app containing the text `[framework] not valid for use in process: mapping process and mapped file (non-platform) have different Team IDs)`: make sure the [`com.apple.security.cs.disable-library-validation` entitlement](https://developer.apple.com/documentation/BundleResources/Entitlements/com.apple.security.cs.disable-library-validation) is being applied, which is required when using hardened runtime in an app with ad-hoc signing that loads a framework. + * A crash in Electron Framework: make sure the [`com.apple.security.cs.allow-jit` entitlement](https://developer.apple.com/documentation/BundleResources/Entitlements/com.apple.security.cs.allow-jit) is being applied, which Electron requires. + * Issues when accessing sensors like the camera or microphone or sensitive data on disk such as the Photos library: make sure the [appropriate entitlement](https://developer.apple.com/documentation/Security/hardened-runtime#Resource-Access) is being applied. + ## Code Signing and Notarization Tutorial Thank you to a community member for putting this together. From a99f56147d17e8b290769006fb3488d80304380c Mon Sep 17 00:00:00 2001 From: Mike Maietta Date: Wed, 8 Apr 2026 06:17:37 -0700 Subject: [PATCH 39/61] tmp save, catching up to master --- packages/app-builder-lib/src/index.ts | 9 ++++++++ packages/app-builder-lib/src/linuxPackager.ts | 22 +++++++++---------- .../src/SquirrelWindowsTarget.ts | 7 +++--- .../src/cli/install-app-deps.ts | 8 +------ .../electron-publish/src/gitHubPublisher.ts | 8 +++---- .../electron-publish/src/gitlabPublisher.ts | 8 +++---- test/src/BuildTest.ts | 10 ++++----- test/src/mac/dmgTest.ts | 4 ++-- 8 files changed, 40 insertions(+), 36 deletions(-) diff --git a/packages/app-builder-lib/src/index.ts b/packages/app-builder-lib/src/index.ts index 9db5e0aee24..10fb716a8ad 100644 --- a/packages/app-builder-lib/src/index.ts +++ b/packages/app-builder-lib/src/index.ts @@ -69,6 +69,15 @@ export { PlatformPackager } from "./platformPackager.js" export { PublishManager } from "./publish/PublishManager.js" export { WinPackager } from "./winPackager.js" export { readAsar } from "./asar/asar.js" +export { installOrRebuild } from "./util/yarn.js" +export { PACKAGE_VERSION } from "./version.js" +export { createLazyProductionDeps } from "./util/packageDependencies.js" +export { determinePackageManagerEnv } from "./node-module-collector/index.js" +export { computeDefaultAppDirectory } from "./util/config/config.js" +export { getConfig } from "./util/config/config.js" +export { getElectronVersion } from "./electron/electronVersion.js" +export { execWine } from "./wine.js" +export { getBinFromUrl } from "./binDownload.js" const expectedOptions = new Set(["publish", "targets", "mac", "win", "linux", "projectDir", "platformPackagerFactory", "config", "effectiveOptionComputed", "prepackaged"]) diff --git a/packages/app-builder-lib/src/linuxPackager.ts b/packages/app-builder-lib/src/linuxPackager.ts index ba42b5ad534..407fa91f021 100644 --- a/packages/app-builder-lib/src/linuxPackager.ts +++ b/packages/app-builder-lib/src/linuxPackager.ts @@ -1,15 +1,15 @@ import { Arch } from "builder-util" -import { sanitizeFileName } from "builder-util/out/filename" -import { DIR_TARGET, Platform, Target } from "./core" -import { LinuxConfiguration } from "./options/linuxOptions" -import { Packager } from "./packager" -import { PlatformPackager } from "./platformPackager" -import AppImageTarget from "./targets/appimage/AppImageTarget" -import FlatpakTarget from "./targets/FlatpakTarget" -import FpmTarget from "./targets/FpmTarget" -import { LinuxTargetHelper } from "./targets/LinuxTargetHelper" -import SnapTarget from "./targets/snap" -import { createCommonTarget } from "./targets/targetFactory" +import { sanitizeFileName } from "builder-util" +import { DIR_TARGET, Platform, Target } from "./core.js" +import { LinuxConfiguration } from "./options/linuxOptions.js" +import { Packager } from "./packager.js" +import { PlatformPackager } from "./platformPackager.js" +import AppImageTarget from "./targets/appimage/AppImageTarget.js" +import FlatpakTarget from "./targets/FlatpakTarget.js" +import FpmTarget from "./targets/FpmTarget.js" +import { LinuxTargetHelper } from "./targets/LinuxTargetHelper.js" +import SnapTarget from "./targets/snap.js" +import { createCommonTarget } from "./targets/targetFactory.js" export class LinuxPackager extends PlatformPackager { readonly executableName: string diff --git a/packages/electron-builder-squirrel-windows/src/SquirrelWindowsTarget.ts b/packages/electron-builder-squirrel-windows/src/SquirrelWindowsTarget.ts index 777d48a5fd5..ba57da8b9e8 100644 --- a/packages/electron-builder-squirrel-windows/src/SquirrelWindowsTarget.ts +++ b/packages/electron-builder-squirrel-windows/src/SquirrelWindowsTarget.ts @@ -1,6 +1,6 @@ import { InvalidConfigurationError, log, isEmptyOrSpaces, exists } from "builder-util" -import { execWine } from "app-builder-lib/out/wine" -import { getBinFromUrl } from "app-builder-lib/out/binDownload" +import { execWine } from "app-builder-lib" +import { getBinFromUrl } from "app-builder-lib" import { sanitizeFileName } from "builder-util/out/filename" import { Arch, getArchSuffix, SquirrelWindowsOptions, Target, WinPackager } from "app-builder-lib" import * as path from "path" @@ -10,7 +10,7 @@ import { Options as SquirrelOptions, createWindowsInstaller, convertVersion } fr export default class SquirrelWindowsTarget extends Target { //tslint:disable-next-line:no-object-literal-type-assertion - readonly options: SquirrelWindowsOptions = { ...this.packager.platformSpecificBuildOptions, ...this.packager.config.squirrelWindows } as SquirrelWindowsOptions + readonly options: SquirrelWindowsOptions isAsyncSupported = false @@ -19,6 +19,7 @@ export default class SquirrelWindowsTarget extends Target { readonly outDir: string ) { super("squirrel") + this.options = { ...this.packager.platformSpecificBuildOptions, ...this.packager.config.squirrelWindows } } private async prepareSignedVendorDirectory(): Promise { diff --git a/packages/electron-builder/src/cli/install-app-deps.ts b/packages/electron-builder/src/cli/install-app-deps.ts index ce6d914b5ce..f1e096db250 100644 --- a/packages/electron-builder/src/cli/install-app-deps.ts +++ b/packages/electron-builder/src/cli/install-app-deps.ts @@ -1,11 +1,5 @@ #! /usr/bin/env node -import { getElectronVersion } from "app-builder-lib" -import { determinePackageManagerEnv } from "app-builder-lib/src/node-module-collector/index.js" -import { computeDefaultAppDirectory } from "app-builder-lib/src/util/config/config.js" -import { getConfig } from "app-builder-lib/src/util/config/config.js" -import { createLazyProductionDeps } from "app-builder-lib/src/util/packageDependencies.js" -import { installOrRebuild } from "app-builder-lib/src/util/yarn.js" -import { PACKAGE_VERSION } from "app-builder-lib/src/version.js" +import { computeDefaultAppDirectory, createLazyProductionDeps, determinePackageManagerEnv, getConfig, getElectronVersion, installOrRebuild, PACKAGE_VERSION } from "app-builder-lib" import { getArchCliNames, log, orNullIfFileNotExist, printErrorAndExit } from "builder-util" import { readJson } from "fs-extra" import { Lazy } from "lazy-val" diff --git a/packages/electron-publish/src/gitHubPublisher.ts b/packages/electron-publish/src/gitHubPublisher.ts index ea525cb49f8..13ad01f28d5 100644 --- a/packages/electron-publish/src/gitHubPublisher.ts +++ b/packages/electron-publish/src/gitHubPublisher.ts @@ -4,10 +4,10 @@ import { ClientRequest } from "http" import { Lazy } from "lazy-val" import * as mime from "mime" import { parse as parseUrl, UrlWithStringQuery } from "url" -import { HttpPublisher } from "./httpPublisher" -import { PublishContext, PublishOptions } from "./index" -import { getCiTag } from "./publisher" -import { trimStringWithWarn } from "./util" +import { HttpPublisher } from "./httpPublisher.js" +import { PublishContext, PublishOptions } from "./index.js" +import { getCiTag } from "./publisher.js" +import { trimStringWithWarn } from "./util.js" export interface Release { id: number diff --git a/packages/electron-publish/src/gitlabPublisher.ts b/packages/electron-publish/src/gitlabPublisher.ts index ceedfa3d84e..f7f3d704682 100644 --- a/packages/electron-publish/src/gitlabPublisher.ts +++ b/packages/electron-publish/src/gitlabPublisher.ts @@ -6,11 +6,11 @@ import { configureRequestOptions, GitlabOptions, GitlabReleaseInfo, parseJson, H import { ClientRequest } from "http" import { Lazy } from "lazy-val" import * as mime from "mime" -import * as FormData from "form-data" +import FormData from "form-data" import { URL } from "url" -import { HttpPublisher } from "./httpPublisher" -import { PublishContext } from "./index" -import { trimStringWithWarn } from "./util" +import { HttpPublisher } from "./httpPublisher.js" +import { PublishContext } from "./index.js" +import { trimStringWithWarn } from "./util.js" type RequestProcessor = (request: ClientRequest, reject: (error: Error) => void) => void diff --git a/test/src/BuildTest.ts b/test/src/BuildTest.ts index 58f3bdc5298..93d9a0ab141 100644 --- a/test/src/BuildTest.ts +++ b/test/src/BuildTest.ts @@ -1,14 +1,14 @@ import { checkBuildRequestOptions } from "app-builder-lib" -import { doMergeConfigs } from "app-builder-lib/out/util/config/config" +import { doMergeConfigs } from "app-builder-lib/out/util/config/config.js" import { Arch, createTargets, DIR_TARGET, Platform } from "electron-builder" import { createYargs } from "electron-builder" import { promises as fs } from "fs" import { outputFile, outputJson } from "fs-extra" import * as path from "path" -import { app, appTwo, appTwoThrows, assertPack, getFixtureDir, linuxDirTarget, modifyPackageJson, packageJson, toSystemIndependentPath } from "./helpers/packTester" -import { ELECTRON_VERSION } from "./helpers/testConfig" -import { verifySmartUnpack } from "./helpers/verifySmartUnpack" -import { PM } from "app-builder-lib/out/node-module-collector/packageManager" +import { app, appTwo, appTwoThrows, assertPack, getFixtureDir, linuxDirTarget, modifyPackageJson, packageJson, toSystemIndependentPath } from "./helpers/packTester.js" +import { ELECTRON_VERSION } from "./helpers/testConfig.js" +import { verifySmartUnpack } from "./helpers/verifySmartUnpack.js" +import { PM } from "app-builder-lib" test.ifLinux("cli", ({ expect }) => { // because these methods are internal diff --git a/test/src/mac/dmgTest.ts b/test/src/mac/dmgTest.ts index eb8eb0c8c49..f260890bbf3 100644 --- a/test/src/mac/dmgTest.ts +++ b/test/src/mac/dmgTest.ts @@ -7,7 +7,7 @@ import * as path from "path" import { assertThat } from "../helpers/fileAssert" import { app, assertPack, copyTestAsset } from "../helpers/packTester" import { beforeAll } from "vitest" -import type { attachAndExecute as aAndE, getDmgTemplatePath as dmgTemplate } from "dmg-builder/out/dmgUtil" +import type { attachAndExecute as aAndE, getDmgTemplatePath as dmgTemplate } from "dmg-builder/out/dmgUtil.js" const dmgTarget = Platform.MAC.createTarget("dmg", Arch.x64) const defaultTarget = Platform.MAC.createTarget(undefined, Arch.x64) @@ -18,7 +18,7 @@ describe.heavy.ifMac("dmg", { sequential: true }, () => { beforeAll(async () => { // import at runtime to avoid issues on non-macOS platforms - const { attachAndExecute: a, getDmgTemplatePath: d } = await import("dmg-builder/out/dmgUtil") + const { attachAndExecute: a, getDmgTemplatePath: d } = await import("dmg-builder/out/dmgUtil.js") attachAndExecute = a getDmgTemplatePath = d }) From 173694efd6604b9e0c3710082ccd55da4cfab2bf Mon Sep 17 00:00:00 2001 From: Mike Maietta Date: Wed, 8 Apr 2026 06:23:32 -0700 Subject: [PATCH 40/61] chore(tests): update node module snapshots due to transitive dependency change (#9674) --- test/snapshots/HoistedNodeModuleTest.js.snap | 1922 +++++++++--------- 1 file changed, 961 insertions(+), 961 deletions(-) diff --git a/test/snapshots/HoistedNodeModuleTest.js.snap b/test/snapshots/HoistedNodeModuleTest.js.snap index bfc163d4df9..7224a19233c 100644 --- a/test/snapshots/HoistedNodeModuleTest.js.snap +++ b/test/snapshots/HoistedNodeModuleTest.js.snap @@ -75808,11 +75808,11 @@ exports[`node_module collectors > yarn two package.json 2`] = ` { "files": { "index.html": { - "offset": 1770630, + "offset": 1774520, "size": 380, }, "index.js": { - "offset": 1771010, + "offset": 1774900, "size": 620, }, "node_modules": { @@ -77121,27 +77121,27 @@ exports[`node_module collectors > yarn two package.json 2`] = ` "files": { "sax.js": { "offset": 1604040, - "size": 46310, + "size": 50150, }, }, }, "package.json": { - "offset": 1650340, - "size": 530, + "offset": 1654180, + "size": 570, }, }, }, "semver": { "files": { "LICENSE": { - "offset": 1650860, + "offset": 1654750, "size": 770, }, "bin": { "files": { "semver.js": { "executable": true, - "offset": 1651630, + "offset": 1655510, "size": 4750, }, }, @@ -77149,19 +77149,19 @@ exports[`node_module collectors > yarn two package.json 2`] = ` "classes": { "files": { "comparator.js": { - "offset": 1656370, + "offset": 1660260, "size": 3640, }, "index.js": { - "offset": 1660010, + "offset": 1663890, "size": 150, }, "range.js": { - "offset": 1660150, + "offset": 1664040, "size": 14980, }, "semver.js": { - "offset": 1675130, + "offset": 1679010, "size": 9480, }, }, @@ -77169,191 +77169,191 @@ exports[`node_module collectors > yarn two package.json 2`] = ` "functions": { "files": { "clean.js": { - "offset": 1684610, + "offset": 1688490, "size": 210, }, "cmp.js": { - "offset": 1684810, + "offset": 1688700, "size": 970, }, "coerce.js": { - "offset": 1685770, + "offset": 1689660, "size": 2010, }, "compare-build.js": { - "offset": 1687780, + "offset": 1691660, "size": 290, }, "compare-loose.js": { - "offset": 1688060, + "offset": 1691940, "size": 140, }, "compare.js": { - "offset": 1688190, + "offset": 1692080, "size": 170, }, "diff.js": { - "offset": 1688360, + "offset": 1692250, "size": 1430, }, "eq.js": { - "offset": 1689780, + "offset": 1693670, "size": 130, }, "gt.js": { - "offset": 1689910, + "offset": 1693800, "size": 130, }, "gte.js": { - "offset": 1690030, + "offset": 1693920, "size": 130, }, "inc.js": { - "offset": 1690160, + "offset": 1694050, "size": 480, }, "lt.js": { - "offset": 1690640, + "offset": 1694520, "size": 130, }, "lte.js": { - "offset": 1690760, + "offset": 1694650, "size": 130, }, "major.js": { - "offset": 1690890, + "offset": 1694780, "size": 140, }, "minor.js": { - "offset": 1691020, + "offset": 1694910, "size": 140, }, "neq.js": { - "offset": 1691160, + "offset": 1695050, "size": 130, }, "parse.js": { - "offset": 1691290, + "offset": 1695180, "size": 340, }, "patch.js": { - "offset": 1691620, + "offset": 1695510, "size": 140, }, "prerelease.js": { - "offset": 1691750, + "offset": 1695640, "size": 240, }, "rcompare.js": { - "offset": 1691990, + "offset": 1695880, "size": 140, }, "rsort.js": { - "offset": 1692120, + "offset": 1696010, "size": 170, }, "satisfies.js": { - "offset": 1692280, + "offset": 1696170, "size": 250, }, "sort.js": { - "offset": 1692530, + "offset": 1696420, "size": 170, }, "valid.js": { - "offset": 1692690, + "offset": 1696580, "size": 180, }, }, }, "index.js": { - "offset": 1692870, + "offset": 1696760, "size": 2630, }, "internal": { "files": { "constants.js": { - "offset": 1695500, + "offset": 1699390, "size": 880, }, "debug.js": { - "offset": 1696370, + "offset": 1700260, "size": 240, }, "identifiers.js": { - "offset": 1696610, + "offset": 1700500, "size": 530, }, "lrucache.js": { - "offset": 1697140, + "offset": 1701020, "size": 810, }, "parse-options.js": { - "offset": 1697940, + "offset": 1701830, "size": 340, }, "re.js": { - "offset": 1698280, + "offset": 1702160, "size": 8140, }, }, }, "package.json": { - "offset": 1706410, + "offset": 1710300, "size": 1350, }, "preload.js": { - "offset": 1707760, + "offset": 1711650, "size": 90, }, "range.bnf": { - "offset": 1707850, + "offset": 1711730, "size": 620, }, "ranges": { "files": { "gtr.js": { - "offset": 1708470, + "offset": 1712350, "size": 240, }, "intersects.js": { - "offset": 1708700, + "offset": 1712580, "size": 230, }, "ltr.js": { - "offset": 1708920, + "offset": 1712810, "size": 230, }, "max-satisfying.js": { - "offset": 1709150, + "offset": 1713040, "size": 600, }, "min-satisfying.js": { - "offset": 1709740, + "offset": 1713630, "size": 600, }, "min-version.js": { - "offset": 1710330, + "offset": 1714220, "size": 1520, }, "outside.js": { - "offset": 1711850, + "offset": 1715730, "size": 2210, }, "simplify.js": { - "offset": 1714050, + "offset": 1717940, "size": 1360, }, "subset.js": { - "offset": 1715400, + "offset": 1719290, "size": 7530, }, "to-comparators.js": { - "offset": 1722930, + "offset": 1726820, "size": 290, }, "valid.js": { - "offset": 1723210, + "offset": 1727100, "size": 330, }, }, @@ -77363,25 +77363,25 @@ exports[`node_module collectors > yarn two package.json 2`] = ` "send": { "files": { "History.md": { - "offset": 1723540, + "offset": 1727420, "size": 710, }, "Makefile": { - "offset": 1724250, + "offset": 1728130, "size": 100, }, "index.js": { - "offset": 1724350, + "offset": 1728230, "size": 40, }, "lib": { "files": { "send.js": { - "offset": 1724390, + "offset": 1728270, "size": 9740, }, "utils.js": { - "offset": 1734120, + "offset": 1738010, "size": 800, }, }, @@ -77391,19 +77391,19 @@ exports[`node_module collectors > yarn two package.json 2`] = ` "fresh": { "files": { "HISTORY.md": { - "offset": 1735450, + "offset": 1739340, "size": 390, }, "LICENSE": { - "offset": 1735840, + "offset": 1739720, "size": 1100, }, "index.js": { - "offset": 1736930, + "offset": 1740820, "size": 1230, }, "package.json": { - "offset": 1738160, + "offset": 1742050, "size": 420, }, }, @@ -77411,19 +77411,19 @@ exports[`node_module collectors > yarn two package.json 2`] = ` "range-parser": { "files": { "HISTORY.md": { - "offset": 1738580, + "offset": 1742460, "size": 580, }, "LICENSE": { - "offset": 1739150, + "offset": 1743040, "size": 1100, }, "index.js": { - "offset": 1740250, + "offset": 1744140, "size": 1080, }, "package.json": { - "offset": 1741330, + "offset": 1745220, "size": 430, }, }, @@ -77431,7 +77431,7 @@ exports[`node_module collectors > yarn two package.json 2`] = ` }, }, "package.json": { - "offset": 1734920, + "offset": 1738810, "size": 530, }, }, @@ -77439,11 +77439,11 @@ exports[`node_module collectors > yarn two package.json 2`] = ` "serve-static": { "files": { "LICENSE": { - "offset": 1741750, + "offset": 1745640, "size": 1190, }, "index.js": { - "offset": 1742930, + "offset": 1746820, "size": 2990, }, "node_modules": { @@ -77451,19 +77451,19 @@ exports[`node_module collectors > yarn two package.json 2`] = ` "fresh": { "files": { "History.md": { - "offset": 1746410, + "offset": 1750300, "size": 80, }, "Makefile": { - "offset": 1746490, + "offset": 1750380, "size": 90, }, "index.js": { - "offset": 1746580, + "offset": 1750470, "size": 1230, }, "package.json": { - "offset": 1747800, + "offset": 1751690, "size": 470, }, }, @@ -77471,19 +77471,19 @@ exports[`node_module collectors > yarn two package.json 2`] = ` "range-parser": { "files": { "History.md": { - "offset": 1748270, + "offset": 1752160, "size": 240, }, "Makefile": { - "offset": 1748510, + "offset": 1752390, "size": 90, }, "index.js": { - "offset": 1748590, + "offset": 1752480, "size": 920, }, "package.json": { - "offset": 1749510, + "offset": 1753400, "size": 290, }, }, @@ -77491,31 +77491,31 @@ exports[`node_module collectors > yarn two package.json 2`] = ` "send": { "files": { "History.md": { - "offset": 1749800, + "offset": 1753690, "size": 640, }, "Makefile": { - "offset": 1750440, + "offset": 1754330, "size": 100, }, "index.js": { - "offset": 1750540, + "offset": 1754430, "size": 40, }, "lib": { "files": { "send.js": { - "offset": 1750580, + "offset": 1754470, "size": 9740, }, "utils.js": { - "offset": 1760310, + "offset": 1764200, "size": 800, }, }, }, "package.json": { - "offset": 1761110, + "offset": 1765000, "size": 530, }, }, @@ -77523,7 +77523,7 @@ exports[`node_module collectors > yarn two package.json 2`] = ` }, }, "package.json": { - "offset": 1745920, + "offset": 1749810, "size": 500, }, }, @@ -77531,19 +77531,19 @@ exports[`node_module collectors > yarn two package.json 2`] = ` "tiny-typed-emitter": { "files": { "LICENSE": { - "offset": 1761640, + "offset": 1765530, "size": 1110, }, "lib": { "files": { "index.js": { - "offset": 1762740, + "offset": 1766630, "size": 140, }, }, }, "package.json": { - "offset": 1762880, + "offset": 1766760, "size": 400, }, }, @@ -77551,15 +77551,15 @@ exports[`node_module collectors > yarn two package.json 2`] = ` "type-is": { "files": { "Makefile": { - "offset": 1763270, + "offset": 1767160, "size": 110, }, "index.js": { - "offset": 1763370, + "offset": 1767260, "size": 2300, }, "package.json": { - "offset": 1765670, + "offset": 1769560, "size": 500, }, }, @@ -77567,15 +77567,15 @@ exports[`node_module collectors > yarn two package.json 2`] = ` "universalify": { "files": { "LICENSE": { - "offset": 1766170, + "offset": 1770050, "size": 1100, }, "index.js": { - "offset": 1767270, + "offset": 1771150, "size": 710, }, "package.json": { - "offset": 1767970, + "offset": 1771860, "size": 620, }, }, @@ -77583,15 +77583,15 @@ exports[`node_module collectors > yarn two package.json 2`] = ` "utils-merge": { "files": { "LICENSE": { - "offset": 1768590, + "offset": 1772480, "size": 1080, }, "index.js": { - "offset": 1769670, + "offset": 1773550, "size": 390, }, "package.json": { - "offset": 1770050, + "offset": 1773930, "size": 590, }, }, @@ -77599,7 +77599,7 @@ exports[`node_module collectors > yarn two package.json 2`] = ` }, }, "package.json": { - "offset": 1771630, + "offset": 1775520, "size": 340, }, }, @@ -78514,11 +78514,11 @@ exports[`node_module collectors > yarn two package.json without node_modules 2`] { "files": { "index.html": { - "offset": 3593200, + "offset": 3604790, "size": 380, }, "index.js": { - "offset": 3593580, + "offset": 3605170, "size": 620, }, "node_modules": { @@ -78639,10 +78639,10 @@ exports[`node_module collectors > yarn two package.json without node_modules 2`] }, "index.js": { "offset": 458160, - "size": 4800, + "size": 4810, }, "package.json": { - "offset": 462960, + "offset": 462970, "size": 1010, }, }, @@ -78650,43 +78650,43 @@ exports[`node_module collectors > yarn two package.json without node_modules 2`] "braces": { "files": { "LICENSE": { - "offset": 463970, + "offset": 463980, "size": 1100, }, "index.js": { - "offset": 465060, + "offset": 465070, "size": 4380, }, "lib": { "files": { "compile.js": { - "offset": 469440, + "offset": 469450, "size": 1510, }, "constants.js": { - "offset": 470940, + "offset": 470950, "size": 1590, }, "expand.js": { - "offset": 472530, + "offset": 472540, "size": 2800, }, "parse.js": { - "offset": 475320, + "offset": 475340, "size": 6900, }, "stringify.js": { - "offset": 482220, + "offset": 482240, "size": 710, }, "utils.js": { - "offset": 482930, + "offset": 482940, "size": 2520, }, }, }, "package.json": { - "offset": 485450, + "offset": 485460, "size": 910, }, }, @@ -78694,11 +78694,11 @@ exports[`node_module collectors > yarn two package.json without node_modules 2`] "buffer-crc32": { "files": { "index.js": { - "offset": 486350, + "offset": 486360, "size": 3920, }, "package.json": { - "offset": 490260, + "offset": 490280, "size": 550, }, }, @@ -78706,119 +78706,119 @@ exports[`node_module collectors > yarn two package.json without node_modules 2`] "builder-util-runtime": { "files": { "LICENSE": { - "offset": 490810, + "offset": 490820, "size": 1090, }, "out": { "files": { "CancellationToken.js": { - "offset": 491890, + "offset": 491900, "size": 3200, }, "CancellationToken.js.map": { - "offset": 495090, + "offset": 495100, "size": 5650, }, "MemoLazy.js": { - "offset": 500740, + "offset": 500750, "size": 1510, }, "MemoLazy.js.map": { - "offset": 502240, + "offset": 502250, "size": 2760, }, "ProgressCallbackTransform.js": { - "offset": 505000, + "offset": 505010, "size": 1950, }, "ProgressCallbackTransform.js.map": { - "offset": 506950, + "offset": 506960, "size": 3700, }, "blockMapApi.js": { - "offset": 510640, + "offset": 510650, "size": 120, }, "blockMapApi.js.map": { - "offset": 510750, + "offset": 510770, "size": 410, }, "error.js": { - "offset": 511160, + "offset": 511170, "size": 260, }, "error.js.map": { - "offset": 511410, + "offset": 511420, "size": 460, }, "httpExecutor.js": { - "offset": 511870, + "offset": 511880, "size": 20570, }, "httpExecutor.js.map": { - "offset": 532430, + "offset": 532440, "size": 38700, }, "index.js": { - "offset": 571130, + "offset": 571140, "size": 4560, }, "index.js.map": { - "offset": 575680, + "offset": 575700, "size": 2770, }, "publishOptions.js": { - "offset": 578450, + "offset": 578460, "size": 2510, }, "publishOptions.js.map": { - "offset": 580950, + "offset": 580960, "size": 17780, }, "retry.js": { - "offset": 598730, + "offset": 598740, "size": 950, }, "retry.js.map": { - "offset": 599670, + "offset": 599680, "size": 1750, }, "rfc2253Parser.js": { - "offset": 601420, + "offset": 601430, "size": 2270, }, "rfc2253Parser.js.map": { - "offset": 603680, + "offset": 603700, "size": 4170, }, "updateInfo.js": { - "offset": 607850, + "offset": 607860, "size": 120, }, "updateInfo.js.map": { - "offset": 607970, + "offset": 607980, "size": 2320, }, "uuid.js": { - "offset": 610280, + "offset": 610300, "size": 6400, }, "uuid.js.map": { - "offset": 616680, + "offset": 616690, "size": 12240, }, "xml.js": { - "offset": 628910, + "offset": 628920, "size": 3550, }, "xml.js.map": { - "offset": 632460, + "offset": 632470, "size": 6990, }, }, }, "package.json": { - "offset": 639450, + "offset": 639460, "size": 630, }, }, @@ -78826,27 +78826,27 @@ exports[`node_module collectors > yarn two package.json without node_modules 2`] "call-bind": { "files": { ".eslintignore": { - "offset": 640080, + "offset": 640090, "size": 10, }, ".nycrc": { - "offset": 640090, + "offset": 640100, "size": 140, }, "LICENSE": { - "offset": 640230, + "offset": 640240, "size": 1080, }, "callBound.js": { - "offset": 641300, + "offset": 641310, "size": 420, }, "index.js": { - "offset": 641710, + "offset": 641720, "size": 650, }, "package.json": { - "offset": 642350, + "offset": 642370, "size": 1510, }, }, @@ -78854,43 +78854,43 @@ exports[`node_module collectors > yarn two package.json without node_modules 2`] "call-bind-apply-helpers": { "files": { ".nycrc": { - "offset": 643860, + "offset": 643870, "size": 140, }, "LICENSE": { - "offset": 644000, + "offset": 644010, "size": 1080, }, "actualApply.js": { - "offset": 645070, + "offset": 645080, "size": 280, }, "applyBind.js": { - "offset": 645350, + "offset": 645360, "size": 270, }, "functionApply.js": { - "offset": 645610, + "offset": 645620, "size": 100, }, "functionCall.js": { - "offset": 645710, + "offset": 645720, "size": 100, }, "index.js": { - "offset": 645810, + "offset": 645820, "size": 520, }, "package.json": { - "offset": 646320, + "offset": 646330, "size": 1850, }, "reflectApply.js": { - "offset": 648160, + "offset": 648170, "size": 140, }, "tsconfig.json": { - "offset": 648290, + "offset": 648310, "size": 120, }, }, @@ -78898,23 +78898,23 @@ exports[`node_module collectors > yarn two package.json without node_modules 2`] "call-bound": { "files": { ".nycrc": { - "offset": 648410, + "offset": 648420, "size": 140, }, "LICENSE": { - "offset": 648550, + "offset": 648560, "size": 1080, }, "index.js": { - "offset": 649620, + "offset": 649630, "size": 690, }, "package.json": { - "offset": 650310, + "offset": 650320, "size": 1690, }, "tsconfig.json": { - "offset": 651990, + "offset": 652010, "size": 140, }, }, @@ -78922,25 +78922,25 @@ exports[`node_module collectors > yarn two package.json without node_modules 2`] "chalk": { "files": { "license": { - "offset": 652130, + "offset": 652140, "size": 1110, }, "package.json": { - "offset": 653240, + "offset": 653250, "size": 650, }, "source": { "files": { "index.js": { - "offset": 653890, + "offset": 653900, "size": 6080, }, "templates.js": { - "offset": 659960, + "offset": 659970, "size": 3370, }, "util.js": { - "offset": 663330, + "offset": 663340, "size": 1040, }, }, @@ -78950,19 +78950,19 @@ exports[`node_module collectors > yarn two package.json without node_modules 2`] "ci-info": { "files": { "LICENSE": { - "offset": 664360, + "offset": 664370, "size": 1090, }, "index.js": { - "offset": 665450, + "offset": 665460, "size": 2370, }, "package.json": { - "offset": 667820, + "offset": 667830, "size": 750, }, "vendors.json": { - "offset": 668570, + "offset": 668580, "size": 5720, }, }, @@ -78970,23 +78970,23 @@ exports[`node_module collectors > yarn two package.json without node_modules 2`] "color-convert": { "files": { "LICENSE": { - "offset": 674290, + "offset": 674300, "size": 1090, }, "conversions.js": { - "offset": 675370, + "offset": 675390, "size": 17040, }, "index.js": { - "offset": 692410, + "offset": 692430, "size": 1710, }, "package.json": { - "offset": 694120, + "offset": 694130, "size": 460, }, "route.js": { - "offset": 694570, + "offset": 694580, "size": 2260, }, }, @@ -78994,15 +78994,15 @@ exports[`node_module collectors > yarn two package.json without node_modules 2`] "color-name": { "files": { "LICENSE": { - "offset": 696830, + "offset": 696840, "size": 1090, }, "index.js": { - "offset": 697910, + "offset": 697930, "size": 4620, }, "package.json": { - "offset": 702530, + "offset": 702540, "size": 370, }, }, @@ -79010,19 +79010,19 @@ exports[`node_module collectors > yarn two package.json without node_modules 2`] "concat-map": { "files": { "LICENSE": { - "offset": 702900, + "offset": 702910, "size": 1080, }, "README.markdown": { - "offset": 703970, + "offset": 703990, "size": 1170, }, "index.js": { - "offset": 705140, + "offset": 705150, "size": 350, }, "package.json": { - "offset": 705480, + "offset": 705500, "size": 800, }, }, @@ -79030,15 +79030,15 @@ exports[`node_module collectors > yarn two package.json without node_modules 2`] "cookie": { "files": { "LICENSE": { - "offset": 706270, + "offset": 706290, "size": 1090, }, "index.js": { - "offset": 707360, + "offset": 707380, "size": 1900, }, "package.json": { - "offset": 709260, + "offset": 709280, "size": 410, }, }, @@ -79046,19 +79046,19 @@ exports[`node_module collectors > yarn two package.json without node_modules 2`] "cookie-signature": { "files": { "History.md": { - "offset": 709670, + "offset": 709680, "size": 370, }, "Makefile": { - "offset": 710040, + "offset": 710050, "size": 90, }, "index.js": { - "offset": 710130, + "offset": 710140, "size": 1080, }, "package.json": { - "offset": 711200, + "offset": 711210, "size": 370, }, }, @@ -79066,35 +79066,35 @@ exports[`node_module collectors > yarn two package.json without node_modules 2`] "cross-spawn": { "files": { "LICENSE": { - "offset": 711570, + "offset": 711580, "size": 1110, }, "index.js": { - "offset": 712670, + "offset": 712680, "size": 1200, }, "lib": { "files": { "enoent.js": { - "offset": 713860, + "offset": 713880, "size": 1480, }, "parse.js": { - "offset": 715330, + "offset": 715350, "size": 3070, }, "util": { "files": { "escape.js": { - "offset": 718400, + "offset": 718410, "size": 1390, }, "readShebang.js": { - "offset": 719780, + "offset": 719790, "size": 550, }, "resolveCommand.js": { - "offset": 720330, + "offset": 720340, "size": 1560, }, }, @@ -79102,7 +79102,7 @@ exports[`node_module collectors > yarn two package.json without node_modules 2`] }, }, "package.json": { - "offset": 721890, + "offset": 721900, "size": 1280, }, }, @@ -79110,29 +79110,29 @@ exports[`node_module collectors > yarn two package.json without node_modules 2`] "debug": { "files": { "LICENSE": { - "offset": 723160, + "offset": 723180, "size": 1140, }, "package.json": { - "offset": 724300, + "offset": 724310, "size": 910, }, "src": { "files": { "browser.js": { - "offset": 725210, + "offset": 725220, "size": 6110, }, "common.js": { - "offset": 731320, + "offset": 731330, "size": 6920, }, "index.js": { - "offset": 738230, + "offset": 738240, "size": 320, }, "node.js": { - "offset": 738540, + "offset": 738560, "size": 4730, }, }, @@ -79142,23 +79142,23 @@ exports[`node_module collectors > yarn two package.json without node_modules 2`] "define-data-property": { "files": { ".nycrc": { - "offset": 743270, + "offset": 743280, "size": 220, }, "LICENSE": { - "offset": 743490, + "offset": 743500, "size": 1080, }, "index.js": { - "offset": 744560, + "offset": 744570, "size": 2340, }, "package.json": { - "offset": 746900, + "offset": 746910, "size": 2080, }, "tsconfig.json": { - "offset": 748970, + "offset": 748980, "size": 4890, }, }, @@ -79166,27 +79166,27 @@ exports[`node_module collectors > yarn two package.json without node_modules 2`] "dunder-proto": { "files": { ".nycrc": { - "offset": 753850, + "offset": 753860, "size": 220, }, "LICENSE": { - "offset": 754070, + "offset": 754080, "size": 1080, }, "get.js": { - "offset": 755140, + "offset": 755150, "size": 980, }, "package.json": { - "offset": 756120, + "offset": 756130, "size": 1450, }, "set.js": { - "offset": 757570, + "offset": 757580, "size": 1280, }, "tsconfig.json": { - "offset": 758850, + "offset": 758860, "size": 120, }, }, @@ -79194,279 +79194,279 @@ exports[`node_module collectors > yarn two package.json without node_modules 2`] "electron-updater": { "files": { "LICENSE": { - "offset": 758960, + "offset": 758970, "size": 1090, }, "out": { "files": { "AppAdapter.js": { - "offset": 760050, + "offset": 760060, "size": 740, }, "AppAdapter.js.map": { - "offset": 760790, + "offset": 760800, "size": 1820, }, "AppImageUpdater.js": { - "offset": 762600, + "offset": 762610, "size": 5440, }, "AppImageUpdater.js.map": { - "offset": 768030, + "offset": 768050, "size": 8890, }, "AppUpdater.js": { - "offset": 776920, + "offset": 776940, "size": 33040, }, "AppUpdater.js.map": { - "offset": 809960, + "offset": 809970, "size": 56840, }, "BaseUpdater.js": { - "offset": 866790, + "offset": 866800, "size": 5490, }, "BaseUpdater.js.map": { - "offset": 872270, + "offset": 872290, "size": 9670, }, "DebUpdater.js": { - "offset": 881940, + "offset": 881950, "size": 3600, }, "DebUpdater.js.map": { - "offset": 885530, + "offset": 885550, "size": 6070, }, "DownloadedUpdateHelper.js": { - "offset": 891600, + "offset": 891610, "size": 6910, }, "DownloadedUpdateHelper.js.map": { - "offset": 898500, + "offset": 898510, "size": 12260, }, "ElectronAppAdapter.js": { - "offset": 910750, + "offset": 910770, "size": 1180, }, "ElectronAppAdapter.js.map": { - "offset": 911930, + "offset": 911950, "size": 2290, }, "LinuxUpdater.js": { - "offset": 914220, + "offset": 914230, "size": 4030, }, "LinuxUpdater.js.map": { - "offset": 918250, + "offset": 918260, "size": 6560, }, "MacUpdater.js": { - "offset": 924800, + "offset": 924810, "size": 12570, }, "MacUpdater.js.map": { - "offset": 937370, + "offset": 937380, "size": 20690, }, "NsisUpdater.js": { - "offset": 958050, + "offset": 958060, "size": 9420, }, "NsisUpdater.js.map": { - "offset": 967460, + "offset": 967470, "size": 15030, }, "PacmanUpdater.js": { - "offset": 982490, + "offset": 982500, "size": 2800, }, "PacmanUpdater.js.map": { - "offset": 985280, + "offset": 985290, "size": 4840, }, "RpmUpdater.js": { - "offset": 990120, + "offset": 990130, "size": 2900, }, "RpmUpdater.js.map": { - "offset": 993010, + "offset": 993020, "size": 5380, }, "differentialDownloader": { "files": { "DataSplitter.js": { - "offset": 998390, + "offset": 998400, "size": 9400, }, "DataSplitter.js.map": { - "offset": 1007780, + "offset": 1007800, "size": 16650, }, "DifferentialDownloader.js": { - "offset": 1024430, + "offset": 1024440, "size": 12520, }, "DifferentialDownloader.js.map": { - "offset": 1036950, + "offset": 1036960, "size": 21370, }, "FileWithEmbeddedBlockMapDifferentialDownloader.js": { - "offset": 1058320, + "offset": 1058330, "size": 1870, }, "FileWithEmbeddedBlockMapDifferentialDownloader.js.map": { - "offset": 1060180, + "offset": 1060190, "size": 3220, }, "GenericDifferentialDownloader.js": { - "offset": 1063390, + "offset": 1063400, "size": 530, }, "GenericDifferentialDownloader.js.map": { - "offset": 1063920, + "offset": 1063930, "size": 710, }, "ProgressDifferentialDownloadCallbackTransform.js": { - "offset": 1064620, + "offset": 1064640, "size": 3830, }, "ProgressDifferentialDownloadCallbackTransform.js.map": { - "offset": 1068450, + "offset": 1068460, "size": 6590, }, "downloadPlanBuilder.js": { - "offset": 1075040, + "offset": 1075050, "size": 5520, }, "downloadPlanBuilder.js.map": { - "offset": 1080560, + "offset": 1080570, "size": 10250, }, "multipleRangeDownloader.js": { - "offset": 1090800, + "offset": 1090820, "size": 5070, }, "multipleRangeDownloader.js.map": { - "offset": 1095870, + "offset": 1095880, "size": 9250, }, }, }, "electronHttpExecutor.js": { - "offset": 1105120, + "offset": 1105130, "size": 3260, }, "electronHttpExecutor.js.map": { - "offset": 1108370, + "offset": 1108390, "size": 5550, }, "main.js": { - "offset": 1113920, + "offset": 1113930, "size": 4500, }, "main.js.map": { - "offset": 1118420, + "offset": 1118430, "size": 4430, }, "providerFactory.js": { - "offset": 1122840, + "offset": 1122850, "size": 3370, }, "providerFactory.js.map": { - "offset": 1126210, + "offset": 1126220, "size": 5450, }, "providers": { "files": { "BitbucketProvider.js": { - "offset": 1131660, + "offset": 1131670, "size": 1970, }, "BitbucketProvider.js.map": { - "offset": 1133620, + "offset": 1133640, "size": 3460, }, "GenericProvider.js": { - "offset": 1137080, + "offset": 1137090, "size": 2260, }, "GenericProvider.js.map": { - "offset": 1139330, + "offset": 1139340, "size": 3780, }, "GitHubProvider.js": { - "offset": 1143110, + "offset": 1143120, "size": 9960, }, "GitHubProvider.js.map": { - "offset": 1153060, + "offset": 1153070, "size": 17120, }, "GitLabProvider.js": { - "offset": 1170180, + "offset": 1170190, "size": 13420, }, "GitLabProvider.js.map": { - "offset": 1183590, + "offset": 1183600, "size": 21900, }, "KeygenProvider.js": { - "offset": 1205490, + "offset": 1205500, "size": 2210, }, "KeygenProvider.js.map": { - "offset": 1207690, + "offset": 1207700, "size": 3900, }, "PrivateGitHubProvider.js": { - "offset": 1211580, + "offset": 1211600, "size": 4160, }, "PrivateGitHubProvider.js.map": { - "offset": 1215740, + "offset": 1215750, "size": 7790, }, "Provider.js": { - "offset": 1223530, + "offset": 1223540, "size": 6010, }, "Provider.js.map": { - "offset": 1229530, + "offset": 1229540, "size": 11700, }, }, }, "types.js": { - "offset": 1241220, + "offset": 1241230, "size": 1560, }, "types.js.map": { - "offset": 1242770, + "offset": 1242780, "size": 3620, }, "util.js": { - "offset": 1246390, + "offset": 1246400, "size": 1280, }, "util.js.map": { - "offset": 1247670, + "offset": 1247680, "size": 2040, }, "windowsExecutableCodeSignatureVerifier.js": { - "offset": 1249710, + "offset": 1249720, "size": 7540, }, "windowsExecutableCodeSignatureVerifier.js.map": { - "offset": 1257250, + "offset": 1257260, "size": 11370, }, }, }, "package.json": { - "offset": 1268610, + "offset": 1268620, "size": 1040, }, }, @@ -79474,23 +79474,23 @@ exports[`node_module collectors > yarn two package.json without node_modules 2`] "es-define-property": { "files": { ".nycrc": { - "offset": 1269650, + "offset": 1269660, "size": 140, }, "LICENSE": { - "offset": 1269790, + "offset": 1269800, "size": 1080, }, "index.js": { - "offset": 1270860, + "offset": 1270870, "size": 290, }, "package.json": { - "offset": 1271150, + "offset": 1271160, "size": 1340, }, "tsconfig.json": { - "offset": 1272480, + "offset": 1272500, "size": 140, }, }, @@ -79498,43 +79498,43 @@ exports[`node_module collectors > yarn two package.json without node_modules 2`] "es-errors": { "files": { "LICENSE": { - "offset": 1272620, + "offset": 1272630, "size": 1080, }, "eval.js": { - "offset": 1273690, + "offset": 1273700, "size": 80, }, "index.js": { - "offset": 1273770, + "offset": 1273780, "size": 70, }, "package.json": { - "offset": 1273830, + "offset": 1273850, "size": 1340, }, "range.js": { - "offset": 1275170, + "offset": 1275180, "size": 80, }, "ref.js": { - "offset": 1275240, + "offset": 1275260, "size": 80, }, "syntax.js": { - "offset": 1275320, + "offset": 1275340, "size": 80, }, "tsconfig.json": { - "offset": 1275400, + "offset": 1275410, "size": 3170, }, "type.js": { - "offset": 1278570, + "offset": 1278580, "size": 80, }, "uri.js": { - "offset": 1278650, + "offset": 1278660, "size": 80, }, }, @@ -79542,31 +79542,31 @@ exports[`node_module collectors > yarn two package.json without node_modules 2`] "es-object-atoms": { "files": { "LICENSE": { - "offset": 1278720, + "offset": 1278730, "size": 1080, }, "RequireObjectCoercible.js": { - "offset": 1279790, + "offset": 1279800, "size": 320, }, "ToObject.js": { - "offset": 1280100, + "offset": 1280120, "size": 250, }, "index.js": { - "offset": 1280350, + "offset": 1280370, "size": 70, }, "isObject.js": { - "offset": 1280420, + "offset": 1280430, "size": 170, }, "package.json": { - "offset": 1280580, + "offset": 1280590, "size": 1430, }, "tsconfig.json": { - "offset": 1282010, + "offset": 1282020, "size": 90, }, }, @@ -79574,19 +79574,19 @@ exports[`node_module collectors > yarn two package.json without node_modules 2`] "escape-html": { "files": { "Makefile": { - "offset": 1282090, + "offset": 1282100, "size": 140, }, "component.json": { - "offset": 1282230, + "offset": 1282240, "size": 200, }, "index.js": { - "offset": 1282420, + "offset": 1282430, "size": 330, }, "package.json": { - "offset": 1282750, + "offset": 1282760, "size": 320, }, }, @@ -79594,90 +79594,90 @@ exports[`node_module collectors > yarn two package.json without node_modules 2`] "express": { "files": { "History.md": { - "offset": 1283070, + "offset": 1283080, "size": 43960, }, "LICENSE": { - "offset": 1327020, + "offset": 1327030, "size": 1110, }, "Makefile": { - "offset": 1328120, + "offset": 1328140, "size": 600, }, "benchmarks": { "files": { "Makefile": { - "offset": 1328720, + "offset": 1328730, "size": 210, }, "middleware.js": { - "offset": 1328920, + "offset": 1328930, "size": 380, }, "run": { "executable": true, - "offset": 1329290, + "offset": 1329310, "size": 200, }, }, }, "index.js": { - "offset": 1329490, + "offset": 1329500, "size": 110, }, "lib": { "files": { "application.js": { - "offset": 1329590, + "offset": 1329610, "size": 12050, }, "express.js": { - "offset": 1341640, + "offset": 1341650, "size": 1730, }, "middleware": { "files": { "init.js": { - "offset": 1343370, + "offset": 1343380, "size": 570, }, "query.js": { - "offset": 1343940, + "offset": 1343950, "size": 790, }, }, }, "request.js": { - "offset": 1344720, + "offset": 1344730, "size": 9320, }, "response.js": { - "offset": 1354030, + "offset": 1354040, "size": 18090, }, "router": { "files": { "index.js": { - "offset": 1372110, + "offset": 1372130, "size": 9100, }, "layer.js": { - "offset": 1381210, + "offset": 1381220, "size": 1210, }, "route.js": { - "offset": 1382420, + "offset": 1382430, "size": 3790, }, }, }, "utils.js": { - "offset": 1386200, + "offset": 1386210, "size": 2140, }, "view.js": { - "offset": 1388340, + "offset": 1388350, "size": 1830, }, }, @@ -79687,19 +79687,19 @@ exports[`node_module collectors > yarn two package.json without node_modules 2`] "debug": { "files": { "debug.js": { - "offset": 1391330, + "offset": 1391340, "size": 2470, }, "lib": { "files": { "debug.js": { - "offset": 1393790, + "offset": 1393800, "size": 2580, }, }, }, "package.json": { - "offset": 1396370, + "offset": 1396380, "size": 530, }, }, @@ -79707,7 +79707,7 @@ exports[`node_module collectors > yarn two package.json without node_modules 2`] }, }, "package.json": { - "offset": 1390160, + "offset": 1390180, "size": 1170, }, }, @@ -79715,15 +79715,15 @@ exports[`node_module collectors > yarn two package.json without node_modules 2`] "fill-range": { "files": { "LICENSE": { - "offset": 1396890, + "offset": 1396900, "size": 1100, }, "index.js": { - "offset": 1397980, + "offset": 1397990, "size": 6410, }, "package.json": { - "offset": 1404380, + "offset": 1404400, "size": 850, }, }, @@ -79731,15 +79731,15 @@ exports[`node_module collectors > yarn two package.json without node_modules 2`] "find-yarn-workspace-root": { "files": { "LICENSE": { - "offset": 1405230, + "offset": 1405240, "size": 11350, }, "index.js": { - "offset": 1416570, + "offset": 1416580, "size": 1320, }, "package.json": { - "offset": 1417890, + "offset": 1417900, "size": 680, }, }, @@ -79747,19 +79747,19 @@ exports[`node_module collectors > yarn two package.json without node_modules 2`] "fresh": { "files": { "History.md": { - "offset": 1418570, + "offset": 1418580, "size": 170, }, "Makefile": { - "offset": 1418730, + "offset": 1418750, "size": 90, }, "index.js": { - "offset": 1418820, + "offset": 1418840, "size": 1230, }, "package.json": { - "offset": 1420050, + "offset": 1420060, "size": 610, }, }, @@ -79767,7 +79767,7 @@ exports[`node_module collectors > yarn two package.json without node_modules 2`] "fs-extra": { "files": { "LICENSE": { - "offset": 1420650, + "offset": 1420660, "size": 1090, }, "lib": { @@ -79775,15 +79775,15 @@ exports[`node_module collectors > yarn two package.json without node_modules 2`] "copy": { "files": { "copy-sync.js": { - "offset": 1421740, + "offset": 1421750, "size": 5780, }, "copy.js": { - "offset": 1427510, + "offset": 1427520, "size": 7760, }, "index.js": { - "offset": 1435270, + "offset": 1435280, "size": 150, }, }, @@ -79791,7 +79791,7 @@ exports[`node_module collectors > yarn two package.json without node_modules 2`] "empty": { "files": { "index.js": { - "offset": 1435420, + "offset": 1435430, "size": 750, }, }, @@ -79799,27 +79799,27 @@ exports[`node_module collectors > yarn two package.json without node_modules 2`] "ensure": { "files": { "file.js": { - "offset": 1436160, + "offset": 1436170, "size": 1710, }, "index.js": { - "offset": 1437870, + "offset": 1437880, "size": 550, }, "link.js": { - "offset": 1438410, + "offset": 1438430, "size": 1660, }, "symlink-paths.js": { - "offset": 1440070, + "offset": 1440080, "size": 3380, }, "symlink-type.js": { - "offset": 1443440, + "offset": 1443450, "size": 700, }, "symlink.js": { - "offset": 1444130, + "offset": 1444150, "size": 2530, }, }, @@ -79827,31 +79827,31 @@ exports[`node_module collectors > yarn two package.json without node_modules 2`] "fs": { "files": { "index.js": { - "offset": 1446660, + "offset": 1446670, "size": 3380, }, }, }, "index.js": { - "offset": 1450030, + "offset": 1450040, "size": 360, }, "json": { "files": { "index.js": { - "offset": 1450390, + "offset": 1450400, "size": 510, }, "jsonfile.js": { - "offset": 1450890, + "offset": 1450910, "size": 240, }, "output-json-sync.js": { - "offset": 1451130, + "offset": 1451140, "size": 280, }, "output-json.js": { - "offset": 1451410, + "offset": 1451420, "size": 280, }, }, @@ -79859,15 +79859,15 @@ exports[`node_module collectors > yarn two package.json without node_modules 2`] "mkdirs": { "files": { "index.js": { - "offset": 1451690, + "offset": 1451700, "size": 330, }, "make-dir.js": { - "offset": 1452010, + "offset": 1452030, "size": 550, }, "utils.js": { - "offset": 1452560, + "offset": 1452570, "size": 1660, }, }, @@ -79875,15 +79875,15 @@ exports[`node_module collectors > yarn two package.json without node_modules 2`] "move": { "files": { "index.js": { - "offset": 1454210, + "offset": 1454230, "size": 150, }, "move-sync.js": { - "offset": 1454360, + "offset": 1454370, "size": 1490, }, "move.js": { - "offset": 1455850, + "offset": 1455860, "size": 2010, }, }, @@ -79891,7 +79891,7 @@ exports[`node_module collectors > yarn two package.json without node_modules 2`] "output-file": { "files": { "index.js": { - "offset": 1457860, + "offset": 1457870, "size": 950, }, }, @@ -79899,7 +79899,7 @@ exports[`node_module collectors > yarn two package.json without node_modules 2`] "path-exists": { "files": { "index.js": { - "offset": 1458800, + "offset": 1458810, "size": 270, }, }, @@ -79907,11 +79907,11 @@ exports[`node_module collectors > yarn two package.json without node_modules 2`] "remove": { "files": { "index.js": { - "offset": 1459070, + "offset": 1459080, "size": 490, }, "rimraf.js": { - "offset": 1459550, + "offset": 1459570, "size": 7450, }, }, @@ -79919,11 +79919,11 @@ exports[`node_module collectors > yarn two package.json without node_modules 2`] "util": { "files": { "stat.js": { - "offset": 1467000, + "offset": 1467010, "size": 5230, }, "utimes.js": { - "offset": 1472220, + "offset": 1472240, "size": 620, }, }, @@ -79931,7 +79931,7 @@ exports[`node_module collectors > yarn two package.json without node_modules 2`] }, }, "package.json": { - "offset": 1472840, + "offset": 1472850, "size": 950, }, }, @@ -79939,19 +79939,19 @@ exports[`node_module collectors > yarn two package.json without node_modules 2`] "fs.realpath": { "files": { "LICENSE": { - "offset": 1473790, + "offset": 1473800, "size": 2130, }, "index.js": { - "offset": 1475910, + "offset": 1475930, "size": 1310, }, "old.js": { - "offset": 1477220, + "offset": 1477230, "size": 8550, }, "package.json": { - "offset": 1485760, + "offset": 1485780, "size": 460, }, }, @@ -79959,23 +79959,23 @@ exports[`node_module collectors > yarn two package.json without node_modules 2`] "function-bind": { "files": { ".nycrc": { - "offset": 1486220, + "offset": 1486240, "size": 220, }, "LICENSE": { - "offset": 1486440, + "offset": 1486450, "size": 1060, }, "implementation.js": { - "offset": 1487490, + "offset": 1487500, "size": 2050, }, "index.js": { - "offset": 1489530, + "offset": 1489550, "size": 130, }, "package.json": { - "offset": 1489660, + "offset": 1489670, "size": 1330, }, }, @@ -79983,19 +79983,19 @@ exports[`node_module collectors > yarn two package.json without node_modules 2`] "get-intrinsic": { "files": { ".nycrc": { - "offset": 1490990, + "offset": 1491000, "size": 140, }, "LICENSE": { - "offset": 1491130, + "offset": 1491140, "size": 1080, }, "index.js": { - "offset": 1492200, + "offset": 1492210, "size": 14440, }, "package.json": { - "offset": 1506640, + "offset": 1506650, "size": 1870, }, }, @@ -80003,31 +80003,31 @@ exports[`node_module collectors > yarn two package.json without node_modules 2`] "get-proto": { "files": { ".nycrc": { - "offset": 1508500, + "offset": 1508510, "size": 140, }, "LICENSE": { - "offset": 1508640, + "offset": 1508650, "size": 1080, }, "Object.getPrototypeOf.js": { - "offset": 1509710, + "offset": 1509720, "size": 160, }, "Reflect.getPrototypeOf.js": { - "offset": 1509870, + "offset": 1509880, "size": 150, }, "index.js": { - "offset": 1510020, + "offset": 1510030, "size": 830, }, "package.json": { - "offset": 1510840, + "offset": 1510850, "size": 1430, }, "tsconfig.json": { - "offset": 1512260, + "offset": 1512280, "size": 120, }, }, @@ -80035,23 +80035,23 @@ exports[`node_module collectors > yarn two package.json without node_modules 2`] "glob": { "files": { "LICENSE": { - "offset": 1512380, + "offset": 1512390, "size": 980, }, "common.js": { - "offset": 1513360, + "offset": 1513370, "size": 6150, }, "glob.js": { - "offset": 1519510, + "offset": 1519520, "size": 19450, }, "package.json": { - "offset": 1538950, + "offset": 1538960, "size": 920, }, "sync.js": { - "offset": 1539870, + "offset": 1539880, "size": 12020, }, }, @@ -80059,23 +80059,23 @@ exports[`node_module collectors > yarn two package.json without node_modules 2`] "gopd": { "files": { "LICENSE": { - "offset": 1551890, + "offset": 1551900, "size": 1080, }, "gOPD.js": { - "offset": 1552960, + "offset": 1552970, "size": 100, }, "index.js": { - "offset": 1553060, + "offset": 1553070, "size": 210, }, "package.json": { - "offset": 1553260, + "offset": 1553270, "size": 1310, }, "tsconfig.json": { - "offset": 1554570, + "offset": 1554580, "size": 120, }, }, @@ -80083,27 +80083,27 @@ exports[`node_module collectors > yarn two package.json without node_modules 2`] "graceful-fs": { "files": { "LICENSE": { - "offset": 1554690, + "offset": 1554700, "size": 800, }, "clone.js": { - "offset": 1555480, + "offset": 1555490, "size": 500, }, "graceful-fs.js": { - "offset": 1555970, + "offset": 1555990, "size": 12680, }, "legacy-streams.js": { - "offset": 1568650, + "offset": 1568670, "size": 2660, }, "package.json": { - "offset": 1571310, + "offset": 1571320, "size": 600, }, "polyfills.js": { - "offset": 1571910, + "offset": 1571920, "size": 10150, }, }, @@ -80111,15 +80111,15 @@ exports[`node_module collectors > yarn two package.json without node_modules 2`] "has-flag": { "files": { "index.js": { - "offset": 1582050, + "offset": 1582060, "size": 330, }, "license": { - "offset": 1582380, + "offset": 1582390, "size": 1110, }, "package.json": { - "offset": 1583490, + "offset": 1583500, "size": 460, }, }, @@ -80127,19 +80127,19 @@ exports[`node_module collectors > yarn two package.json without node_modules 2`] "has-property-descriptors": { "files": { ".nycrc": { - "offset": 1583950, + "offset": 1583960, "size": 140, }, "LICENSE": { - "offset": 1584080, + "offset": 1584100, "size": 1070, }, "index.js": { - "offset": 1585150, + "offset": 1585160, "size": 590, }, "package.json": { - "offset": 1585740, + "offset": 1585750, "size": 1330, }, }, @@ -80147,27 +80147,27 @@ exports[`node_module collectors > yarn two package.json without node_modules 2`] "has-symbols": { "files": { ".nycrc": { - "offset": 1587070, + "offset": 1587080, "size": 140, }, "LICENSE": { - "offset": 1587210, + "offset": 1587220, "size": 1080, }, "index.js": { - "offset": 1588280, + "offset": 1588290, "size": 450, }, "package.json": { - "offset": 1588730, + "offset": 1588740, "size": 1800, }, "shams.js": { - "offset": 1590520, + "offset": 1590530, "size": 1930, }, "tsconfig.json": { - "offset": 1592440, + "offset": 1592450, "size": 150, }, }, @@ -80175,23 +80175,23 @@ exports[`node_module collectors > yarn two package.json without node_modules 2`] "hasown": { "files": { ".nycrc": { - "offset": 1592580, + "offset": 1592590, "size": 220, }, "LICENSE": { - "offset": 1592800, + "offset": 1592810, "size": 1090, }, "index.js": { - "offset": 1593880, + "offset": 1593890, "size": 210, }, "package.json": { - "offset": 1594090, + "offset": 1594100, "size": 1480, }, "tsconfig.json": { - "offset": 1595560, + "offset": 1595570, "size": 80, }, }, @@ -80199,15 +80199,15 @@ exports[`node_module collectors > yarn two package.json without node_modules 2`] "inflight": { "files": { "LICENSE": { - "offset": 1595630, + "offset": 1595650, "size": 750, }, "inflight.js": { - "offset": 1596380, + "offset": 1596390, "size": 1370, }, "package.json": { - "offset": 1597750, + "offset": 1597760, "size": 540, }, }, @@ -80215,19 +80215,19 @@ exports[`node_module collectors > yarn two package.json without node_modules 2`] "inherits": { "files": { "LICENSE": { - "offset": 1598280, + "offset": 1598290, "size": 750, }, "inherits.js": { - "offset": 1599030, + "offset": 1599040, "size": 250, }, "inherits_browser.js": { - "offset": 1599280, + "offset": 1599290, "size": 760, }, "package.json": { - "offset": 1600030, + "offset": 1600040, "size": 400, }, }, @@ -80236,19 +80236,19 @@ exports[`node_module collectors > yarn two package.json without node_modules 2`] "files": { "cli.js": { "executable": true, - "offset": 1600430, + "offset": 1600440, "size": 110, }, "index.js": { - "offset": 1600530, + "offset": 1600540, "size": 450, }, "license": { - "offset": 1600980, + "offset": 1600990, "size": 1120, }, "package.json": { - "offset": 1602100, + "offset": 1602110, "size": 610, }, }, @@ -80256,15 +80256,15 @@ exports[`node_module collectors > yarn two package.json without node_modules 2`] "is-number": { "files": { "LICENSE": { - "offset": 1602700, + "offset": 1602710, "size": 1100, }, "index.js": { - "offset": 1603790, + "offset": 1603800, "size": 420, }, "package.json": { - "offset": 1604200, + "offset": 1604220, "size": 930, }, }, @@ -80272,15 +80272,15 @@ exports[`node_module collectors > yarn two package.json without node_modules 2`] "is-wsl": { "files": { "index.js": { - "offset": 1605120, + "offset": 1605140, "size": 560, }, "license": { - "offset": 1605680, + "offset": 1605690, "size": 1110, }, "package.json": { - "offset": 1606790, + "offset": 1606800, "size": 620, }, }, @@ -80288,15 +80288,15 @@ exports[`node_module collectors > yarn two package.json without node_modules 2`] "isarray": { "files": { "LICENSE": { - "offset": 1607400, + "offset": 1607420, "size": 1100, }, "index.js": { - "offset": 1608500, + "offset": 1608510, "size": 140, }, "package.json": { - "offset": 1608630, + "offset": 1608640, "size": 880, }, }, @@ -80304,23 +80304,23 @@ exports[`node_module collectors > yarn two package.json without node_modules 2`] "isexe": { "files": { "LICENSE": { - "offset": 1609510, + "offset": 1609520, "size": 770, }, "index.js": { - "offset": 1610280, + "offset": 1610290, "size": 1200, }, "mode.js": { - "offset": 1611470, + "offset": 1611480, "size": 910, }, "package.json": { - "offset": 1612380, + "offset": 1612390, "size": 520, }, "windows.js": { - "offset": 1612890, + "offset": 1612900, "size": 890, }, }, @@ -80328,14 +80328,14 @@ exports[`node_module collectors > yarn two package.json without node_modules 2`] "js-yaml": { "files": { "LICENSE": { - "offset": 1613780, + "offset": 1613790, "size": 1090, }, "bin": { "files": { "js-yaml.js": { "executable": true, - "offset": 1614860, + "offset": 1614880, "size": 2740, }, }, @@ -80343,133 +80343,133 @@ exports[`node_module collectors > yarn two package.json without node_modules 2`] "dist": { "files": { "js-yaml.js": { - "offset": 1617600, + "offset": 1617610, "size": 114590, }, "js-yaml.min.js": { - "offset": 1732190, + "offset": 1732200, "size": 39520, }, "js-yaml.mjs": { - "offset": 1771700, + "offset": 1771710, "size": 107750, }, }, }, "index.js": { - "offset": 1879440, + "offset": 1879450, "size": 1800, }, "lib": { "files": { "common.js": { - "offset": 1881240, + "offset": 1881250, "size": 1180, }, "dumper.js": { - "offset": 1882410, + "offset": 1882420, "size": 31900, }, "exception.js": { - "offset": 1914310, + "offset": 1914320, "size": 1300, }, "loader.js": { - "offset": 1915600, + "offset": 1915620, "size": 47360, }, "schema": { "files": { "core.js": { - "offset": 1966340, + "offset": 1966360, "size": 290, }, "default.js": { - "offset": 1966630, + "offset": 1966640, "size": 540, }, "failsafe.js": { - "offset": 1967170, + "offset": 1967180, "size": 280, }, "json.js": { - "offset": 1967450, + "offset": 1967460, "size": 530, }, }, }, "schema.js": { - "offset": 1962960, + "offset": 1962970, "size": 3390, }, "snippet.js": { - "offset": 1967970, + "offset": 1967980, "size": 3090, }, "type": { "files": { "binary.js": { - "offset": 1972910, + "offset": 1972920, "size": 2920, }, "bool.js": { - "offset": 1975820, + "offset": 1975830, "size": 980, }, "float.js": { - "offset": 1976790, + "offset": 1976800, "size": 2470, }, "int.js": { - "offset": 1979260, + "offset": 1979270, "size": 3700, }, "map.js": { - "offset": 1982950, + "offset": 1982960, "size": 190, }, "merge.js": { - "offset": 1983140, + "offset": 1983150, "size": 230, }, "null.js": { - "offset": 1983370, + "offset": 1983380, "size": 810, }, "omap.js": { - "offset": 1984180, + "offset": 1984190, "size": 1030, }, "pairs.js": { - "offset": 1985200, + "offset": 1985210, "size": 1090, }, "seq.js": { - "offset": 1986280, + "offset": 1986300, "size": 200, }, "set.js": { - "offset": 1986480, + "offset": 1986490, "size": 550, }, "str.js": { - "offset": 1987020, + "offset": 1987030, "size": 190, }, "timestamp.js": { - "offset": 1987210, + "offset": 1987220, "size": 2580, }, }, }, "type.js": { - "offset": 1971060, + "offset": 1971070, "size": 1850, }, }, }, "package.json": { - "offset": 1989780, + "offset": 1989790, "size": 1080, }, }, @@ -80477,19 +80477,19 @@ exports[`node_module collectors > yarn two package.json without node_modules 2`] "json-stable-stringify": { "files": { "LICENSE": { - "offset": 1990860, + "offset": 1990870, "size": 1070, }, "index.js": { - "offset": 1991930, + "offset": 1991940, "size": 4750, }, "package.json": { - "offset": 1996680, + "offset": 1996690, "size": 1610, }, "tsconfig.json": { - "offset": 1998280, + "offset": 1998290, "size": 150, }, }, @@ -80497,19 +80497,19 @@ exports[`node_module collectors > yarn two package.json without node_modules 2`] "jsonfile": { "files": { "LICENSE": { - "offset": 1998420, + "offset": 1998430, "size": 1110, }, "index.js": { - "offset": 1999530, + "offset": 1999540, "size": 2020, }, "package.json": { - "offset": 2001550, + "offset": 2001560, "size": 560, }, "utils.js": { - "offset": 2002100, + "offset": 2002120, "size": 500, }, }, @@ -80517,23 +80517,23 @@ exports[`node_module collectors > yarn two package.json without node_modules 2`] "jsonify": { "files": { "index.js": { - "offset": 2002600, + "offset": 2002610, "size": 110, }, "lib": { "files": { "parse.js": { - "offset": 2002710, + "offset": 2002720, "size": 4650, }, "stringify.js": { - "offset": 2007350, + "offset": 2007360, "size": 4310, }, }, }, "package.json": { - "offset": 2011660, + "offset": 2011670, "size": 1010, }, }, @@ -80541,15 +80541,15 @@ exports[`node_module collectors > yarn two package.json without node_modules 2`] "klaw-sync": { "files": { "LICENSE": { - "offset": 2012670, + "offset": 2012680, "size": 1080, }, "klaw-sync.js": { - "offset": 2013740, + "offset": 2013760, "size": 1030, }, "package.json": { - "offset": 2014760, + "offset": 2014780, "size": 690, }, }, @@ -80559,17 +80559,17 @@ exports[`node_module collectors > yarn two package.json without node_modules 2`] "out": { "files": { "main.js": { - "offset": 2015450, + "offset": 2015460, "size": 610, }, "main.js.map": { - "offset": 2016050, + "offset": 2016060, "size": 1160, }, }, }, "package.json": { - "offset": 2017210, + "offset": 2017220, "size": 330, }, }, @@ -80577,15 +80577,15 @@ exports[`node_module collectors > yarn two package.json without node_modules 2`] "lodash.escaperegexp": { "files": { "LICENSE": { - "offset": 2017540, + "offset": 2017550, "size": 1960, }, "index.js": { - "offset": 2019490, + "offset": 2019500, "size": 4400, }, "package.json": { - "offset": 2023890, + "offset": 2023900, "size": 360, }, }, @@ -80593,15 +80593,15 @@ exports[`node_module collectors > yarn two package.json without node_modules 2`] "lodash.isequal": { "files": { "LICENSE": { - "offset": 2024240, + "offset": 2024260, "size": 1950, }, "index.js": { - "offset": 2026190, + "offset": 2026210, "size": 49600, }, "package.json": { - "offset": 2075790, + "offset": 2075800, "size": 350, }, }, @@ -80609,79 +80609,79 @@ exports[`node_module collectors > yarn two package.json without node_modules 2`] "math-intrinsics": { "files": { "LICENSE": { - "offset": 2076140, + "offset": 2076150, "size": 1080, }, "abs.js": { - "offset": 2077210, + "offset": 2077220, "size": 80, }, "constants": { "files": { "maxArrayLength.js": { - "offset": 2077280, + "offset": 2077300, "size": 110, }, "maxSafeInteger.js": { - "offset": 2077390, + "offset": 2077410, "size": 240, }, "maxValue.js": { - "offset": 2077620, + "offset": 2077640, "size": 200, }, }, }, "floor.js": { - "offset": 2077820, + "offset": 2077830, "size": 80, }, "isFinite.js": { - "offset": 2077900, + "offset": 2077910, "size": 270, }, "isInteger.js": { - "offset": 2078160, + "offset": 2078170, "size": 410, }, "isNaN.js": { - "offset": 2078570, + "offset": 2078580, "size": 130, }, "isNegativeZero.js": { - "offset": 2078690, + "offset": 2078700, "size": 150, }, "max.js": { - "offset": 2078830, + "offset": 2078850, "size": 80, }, "min.js": { - "offset": 2078910, + "offset": 2078920, "size": 80, }, "mod.js": { - "offset": 2078980, + "offset": 2078990, "size": 220, }, "package.json": { - "offset": 2079200, + "offset": 2079210, "size": 1940, }, "pow.js": { - "offset": 2081130, + "offset": 2081140, "size": 80, }, "round.js": { - "offset": 2081200, + "offset": 2081220, "size": 80, }, "sign.js": { - "offset": 2081280, + "offset": 2081290, "size": 220, }, "tsconfig.json": { - "offset": 2081500, + "offset": 2081510, "size": 40, }, }, @@ -80689,15 +80689,15 @@ exports[`node_module collectors > yarn two package.json without node_modules 2`] "merge-descriptors": { "files": { "component.json": { - "offset": 2081530, + "offset": 2081540, "size": 210, }, "index.js": { - "offset": 2081730, + "offset": 2081750, "size": 240, }, "package.json": { - "offset": 2081970, + "offset": 2081980, "size": 410, }, }, @@ -80705,15 +80705,15 @@ exports[`node_module collectors > yarn two package.json without node_modules 2`] "methods": { "files": { "History.md": { - "offset": 2082370, + "offset": 2082380, "size": 70, }, "index.js": { - "offset": 2082440, + "offset": 2082450, "size": 470, }, "package.json": { - "offset": 2082910, + "offset": 2082920, "size": 290, }, }, @@ -80722,15 +80722,15 @@ exports[`node_module collectors > yarn two package.json without node_modules 2`] "files": { "LICENSE": { "executable": true, - "offset": 2083200, + "offset": 2083210, "size": 1100, }, "index.js": { - "offset": 2084290, + "offset": 2084300, "size": 13900, }, "package.json": { - "offset": 2098180, + "offset": 2098200, "size": 1190, }, }, @@ -80738,29 +80738,29 @@ exports[`node_module collectors > yarn two package.json without node_modules 2`] "mime": { "files": { "LICENSE": { - "offset": 2099370, + "offset": 2099390, "size": 1080, }, "mime.js": { - "offset": 2100450, + "offset": 2100460, "size": 2870, }, "package.json": { - "offset": 2103310, + "offset": 2103320, "size": 390, }, "test.js": { - "offset": 2103700, + "offset": 2103710, "size": 2750, }, "types": { "files": { "mime.types": { - "offset": 2106450, + "offset": 2106460, "size": 53010, }, "node.types": { - "offset": 2159460, + "offset": 2159470, "size": 2580, }, }, @@ -80770,15 +80770,15 @@ exports[`node_module collectors > yarn two package.json without node_modules 2`] "minimatch": { "files": { "LICENSE": { - "offset": 2162030, + "offset": 2162040, "size": 770, }, "minimatch.js": { - "offset": 2162790, + "offset": 2162810, "size": 27460, }, "package.json": { - "offset": 2190250, + "offset": 2190270, "size": 530, }, }, @@ -80786,19 +80786,19 @@ exports[`node_module collectors > yarn two package.json without node_modules 2`] "minimist": { "files": { ".nycrc": { - "offset": 2190780, + "offset": 2190790, "size": 230, }, "LICENSE": { - "offset": 2191010, + "offset": 2191020, "size": 1080, }, "index.js": { - "offset": 2192080, + "offset": 2192100, "size": 6200, }, "package.json": { - "offset": 2198280, + "offset": 2198290, "size": 1250, }, }, @@ -80806,15 +80806,15 @@ exports[`node_module collectors > yarn two package.json without node_modules 2`] "ms": { "files": { "index.js": { - "offset": 2199530, + "offset": 2199540, "size": 3030, }, "license.md": { - "offset": 2202550, + "offset": 2202560, "size": 1080, }, "package.json": { - "offset": 2203630, + "offset": 2203640, "size": 500, }, }, @@ -80822,35 +80822,35 @@ exports[`node_module collectors > yarn two package.json without node_modules 2`] "negotiator": { "files": { "LICENSE": { - "offset": 2204130, + "offset": 2204140, "size": 1170, }, "lib": { "files": { "charset.js": { - "offset": 2205290, + "offset": 2205300, "size": 1650, }, "encoding.js": { - "offset": 2206940, + "offset": 2206950, "size": 2000, }, "language.js": { - "offset": 2208930, + "offset": 2208950, "size": 2140, }, "mediaType.js": { - "offset": 2211070, + "offset": 2211080, "size": 2180, }, "negotiator.js": { - "offset": 2213240, + "offset": 2213260, "size": 910, }, }, }, "package.json": { - "offset": 2214150, + "offset": 2214160, "size": 460, }, }, @@ -80858,27 +80858,27 @@ exports[`node_module collectors > yarn two package.json without node_modules 2`] "object-keys": { "files": { ".editorconfig": { - "offset": 2214600, + "offset": 2214610, "size": 280, }, "LICENSE": { - "offset": 2214870, + "offset": 2214890, "size": 1080, }, "implementation.js": { - "offset": 2215950, + "offset": 2215970, "size": 3220, }, "index.js": { - "offset": 2219170, + "offset": 2219180, "size": 830, }, "isArguments.js": { - "offset": 2219990, + "offset": 2220010, "size": 430, }, "package.json": { - "offset": 2220420, + "offset": 2220430, "size": 1130, }, }, @@ -80886,15 +80886,15 @@ exports[`node_module collectors > yarn two package.json without node_modules 2`] "once": { "files": { "LICENSE": { - "offset": 2221540, + "offset": 2221550, "size": 770, }, "once.js": { - "offset": 2222300, + "offset": 2222320, "size": 940, }, "package.json": { - "offset": 2223240, + "offset": 2223250, "size": 460, }, }, @@ -80902,20 +80902,20 @@ exports[`node_module collectors > yarn two package.json without node_modules 2`] "open": { "files": { "index.js": { - "offset": 2223690, + "offset": 2223700, "size": 4850, }, "license": { - "offset": 2228530, + "offset": 2228550, "size": 1120, }, "package.json": { - "offset": 2229650, + "offset": 2229660, "size": 660, }, "xdg-open": { "executable": true, - "offset": 2230310, + "offset": 2230320, "size": 25770, }, }, @@ -80923,15 +80923,15 @@ exports[`node_module collectors > yarn two package.json without node_modules 2`] "os-tmpdir": { "files": { "index.js": { - "offset": 2256070, + "offset": 2256090, "size": 580, }, "license": { - "offset": 2256650, + "offset": 2256660, "size": 1120, }, "package.json": { - "offset": 2257770, + "offset": 2257780, "size": 420, }, }, @@ -80939,11 +80939,11 @@ exports[`node_module collectors > yarn two package.json without node_modules 2`] "parseurl": { "files": { "index.js": { - "offset": 2258180, + "offset": 2258190, "size": 590, }, "package.json": { - "offset": 2258760, + "offset": 2258770, "size": 380, }, }, @@ -80951,141 +80951,141 @@ exports[`node_module collectors > yarn two package.json without node_modules 2`] "patch-package": { "files": { "LICENSE": { - "offset": 2259140, + "offset": 2259150, "size": 1070, }, "dist": { "files": { "PackageDetails.js": { - "offset": 2260210, + "offset": 2260220, "size": 14600, }, "PackageDetails.test.js": { - "offset": 2274810, + "offset": 2274820, "size": 26260, }, "applyPatches.js": { - "offset": 2301060, + "offset": 2301070, "size": 54160, }, "assertNever.js": { - "offset": 2355210, + "offset": 2355220, "size": 720, }, "coerceSemVer.js": { - "offset": 2355930, + "offset": 2355940, "size": 1130, }, "createIssue.js": { - "offset": 2357060, + "offset": 2357070, "size": 11370, }, "createIssue.test.js": { - "offset": 2368420, + "offset": 2368430, "size": 3020, }, "detectPackageManager.js": { - "offset": 2371440, + "offset": 2371450, "size": 7600, }, "filterFiles.js": { - "offset": 2379040, + "offset": 2379050, "size": 2370, }, "getAppRootPath.js": { - "offset": 2381400, + "offset": 2381410, "size": 2100, }, "getPackageResolution.js": { - "offset": 2383500, + "offset": 2383510, "size": 16780, }, "getPackageVersion.js": { - "offset": 2400270, + "offset": 2400280, "size": 980, }, "getPackageVersion.test.js": { - "offset": 2401250, + "offset": 2401260, "size": 8070, }, "hash.js": { - "offset": 2409310, + "offset": 2409320, "size": 3250, }, "index.js": { "executable": true, - "offset": 2412550, + "offset": 2412570, "size": 21200, }, "makePatch.js": { - "offset": 2433750, + "offset": 2433760, "size": 64410, }, "makeRegExp.js": { - "offset": 2498160, + "offset": 2498170, "size": 2550, }, "packageIsDevDependency.js": { - "offset": 2500710, + "offset": 2500720, "size": 2060, }, "packageIsDevDependency.test.js": { - "offset": 2502770, + "offset": 2502780, "size": 4650, }, "patch": { "files": { "apply.js": { - "offset": 2507420, + "offset": 2507430, "size": 30170, }, "parse.js": { - "offset": 2537580, + "offset": 2537590, "size": 41350, }, "read.js": { - "offset": 2578930, + "offset": 2578940, "size": 6400, }, "reverse.js": { - "offset": 2585320, + "offset": 2585340, "size": 9840, }, }, }, "patchFs.js": { - "offset": 2595160, + "offset": 2595170, "size": 6350, }, "path.js": { - "offset": 2601510, + "offset": 2601520, "size": 2140, }, "rebase.js": { - "offset": 2603650, + "offset": 2603660, "size": 20840, }, "resolveRelativeFileDependencies.js": { - "offset": 2624480, + "offset": 2624500, "size": 2620, }, "resolveRelativeFileDependencies.test.js": { - "offset": 2627100, + "offset": 2627110, "size": 2940, }, "spawnSafe.js": { - "offset": 2630030, + "offset": 2630040, "size": 3250, }, "stateFile.js": { - "offset": 2633280, + "offset": 2633290, "size": 9100, }, }, }, "index.js": { "executable": true, - "offset": 2642380, + "offset": 2642390, "size": 50, }, "node_modules": { @@ -81093,7 +81093,7 @@ exports[`node_module collectors > yarn two package.json without node_modules 2`] "fs-extra": { "files": { "LICENSE": { - "offset": 2644510, + "offset": 2644530, "size": 1090, }, "lib": { @@ -81101,11 +81101,11 @@ exports[`node_module collectors > yarn two package.json without node_modules 2`] "copy": { "files": { "copy.js": { - "offset": 2651310, + "offset": 2651320, "size": 7610, }, "index.js": { - "offset": 2658910, + "offset": 2658930, "size": 120, }, }, @@ -81113,11 +81113,11 @@ exports[`node_module collectors > yarn two package.json without node_modules 2`] "copy-sync": { "files": { "copy-sync.js": { - "offset": 2645600, + "offset": 2645610, "size": 5640, }, "index.js": { - "offset": 2651240, + "offset": 2651250, "size": 70, }, }, @@ -81125,7 +81125,7 @@ exports[`node_module collectors > yarn two package.json without node_modules 2`] "empty": { "files": { "index.js": { - "offset": 2659020, + "offset": 2659040, "size": 990, }, }, @@ -81133,27 +81133,27 @@ exports[`node_module collectors > yarn two package.json without node_modules 2`] "ensure": { "files": { "file.js": { - "offset": 2660010, + "offset": 2660020, "size": 1710, }, "index.js": { - "offset": 2661720, + "offset": 2661730, "size": 630, }, "link.js": { - "offset": 2662340, + "offset": 2662350, "size": 1570, }, "symlink-paths.js": { - "offset": 2663910, + "offset": 2663920, "size": 3380, }, "symlink-type.js": { - "offset": 2667280, + "offset": 2667290, "size": 700, }, "symlink.js": { - "offset": 2667970, + "offset": 2667990, "size": 2050, }, }, @@ -81161,31 +81161,31 @@ exports[`node_module collectors > yarn two package.json without node_modules 2`] "fs": { "files": { "index.js": { - "offset": 2670020, + "offset": 2670040, "size": 3440, }, }, }, "index.js": { - "offset": 2673460, + "offset": 2673470, "size": 720, }, "json": { "files": { "index.js": { - "offset": 2674180, + "offset": 2674190, "size": 510, }, "jsonfile.js": { - "offset": 2674680, + "offset": 2674700, "size": 240, }, "output-json-sync.js": { - "offset": 2674920, + "offset": 2674930, "size": 280, }, "output-json.js": { - "offset": 2675190, + "offset": 2675200, "size": 280, }, }, @@ -81193,11 +81193,11 @@ exports[`node_module collectors > yarn two package.json without node_modules 2`] "mkdirs": { "files": { "index.js": { - "offset": 2675460, + "offset": 2675480, "size": 330, }, "make-dir.js": { - "offset": 2675790, + "offset": 2675800, "size": 4410, }, }, @@ -81205,11 +81205,11 @@ exports[`node_module collectors > yarn two package.json without node_modules 2`] "move": { "files": { "index.js": { - "offset": 2681460, + "offset": 2681480, "size": 120, }, "move.js": { - "offset": 2681570, + "offset": 2681590, "size": 1640, }, }, @@ -81217,11 +81217,11 @@ exports[`node_module collectors > yarn two package.json without node_modules 2`] "move-sync": { "files": { "index.js": { - "offset": 2680190, + "offset": 2680210, "size": 70, }, "move-sync.js": { - "offset": 2680260, + "offset": 2680280, "size": 1200, }, }, @@ -81229,7 +81229,7 @@ exports[`node_module collectors > yarn two package.json without node_modules 2`] "output": { "files": { "index.js": { - "offset": 2683210, + "offset": 2683220, "size": 950, }, }, @@ -81237,7 +81237,7 @@ exports[`node_module collectors > yarn two package.json without node_modules 2`] "path-exists": { "files": { "index.js": { - "offset": 2684150, + "offset": 2684160, "size": 270, }, }, @@ -81245,11 +81245,11 @@ exports[`node_module collectors > yarn two package.json without node_modules 2`] "remove": { "files": { "index.js": { - "offset": 2684420, + "offset": 2684430, "size": 170, }, "rimraf.js": { - "offset": 2684580, + "offset": 2684590, "size": 7450, }, }, @@ -81257,11 +81257,11 @@ exports[`node_module collectors > yarn two package.json without node_modules 2`] "util": { "files": { "stat.js": { - "offset": 2692020, + "offset": 2692040, "size": 4630, }, "utimes.js": { - "offset": 2696650, + "offset": 2696660, "size": 620, }, }, @@ -81269,7 +81269,7 @@ exports[`node_module collectors > yarn two package.json without node_modules 2`] }, }, "package.json": { - "offset": 2697270, + "offset": 2697280, "size": 960, }, }, @@ -81277,7 +81277,7 @@ exports[`node_module collectors > yarn two package.json without node_modules 2`] }, }, "package.json": { - "offset": 2642430, + "offset": 2642440, "size": 2090, }, }, @@ -81285,15 +81285,15 @@ exports[`node_module collectors > yarn two package.json without node_modules 2`] "path-is-absolute": { "files": { "index.js": { - "offset": 2698220, + "offset": 2698230, "size": 620, }, "license": { - "offset": 2698830, + "offset": 2698840, "size": 1120, }, "package.json": { - "offset": 2699950, + "offset": 2699960, "size": 430, }, }, @@ -81301,15 +81301,15 @@ exports[`node_module collectors > yarn two package.json without node_modules 2`] "path-key": { "files": { "index.js": { - "offset": 2700370, + "offset": 2700390, "size": 420, }, "license": { - "offset": 2700790, + "offset": 2700800, "size": 1110, }, "package.json": { - "offset": 2701900, + "offset": 2701910, "size": 510, }, }, @@ -81317,23 +81317,23 @@ exports[`node_module collectors > yarn two package.json without node_modules 2`] "path-to-regexp": { "files": { "History.md": { - "offset": 2702400, + "offset": 2702420, "size": 180, }, "component.json": { - "offset": 2702580, + "offset": 2702600, "size": 250, }, "index.js": { - "offset": 2702830, + "offset": 2702840, "size": 1490, }, "package.json": { - "offset": 2704310, + "offset": 2704320, "size": 370, }, "test.js": { - "offset": 2704680, + "offset": 2704690, "size": 13770, }, }, @@ -81341,39 +81341,39 @@ exports[`node_module collectors > yarn two package.json without node_modules 2`] "picomatch": { "files": { "LICENSE": { - "offset": 2718450, + "offset": 2718460, "size": 1100, }, "index.js": { - "offset": 2719540, + "offset": 2719550, "size": 60, }, "lib": { "files": { "constants.js": { - "offset": 2719600, - "size": 4450, + "offset": 2719610, + "size": 4570, }, "parse.js": { - "offset": 2724050, - "size": 27770, + "offset": 2724180, + "size": 33950, }, "picomatch.js": { - "offset": 2751810, + "offset": 2758130, "size": 9960, }, "scan.js": { - "offset": 2761770, + "offset": 2768080, "size": 9190, }, "utils.js": { - "offset": 2770960, + "offset": 2777270, "size": 1890, }, }, }, "package.json": { - "offset": 2772840, + "offset": 2779160, "size": 1370, }, }, @@ -81381,15 +81381,15 @@ exports[`node_module collectors > yarn two package.json without node_modules 2`] "qs": { "files": { ".gitmodules": { - "offset": 2774210, + "offset": 2780520, "size": 210, }, "index.js": { - "offset": 2774410, + "offset": 2780730, "size": 7370, }, "package.json": { - "offset": 2781770, + "offset": 2788090, "size": 390, }, }, @@ -81397,19 +81397,19 @@ exports[`node_module collectors > yarn two package.json without node_modules 2`] "range-parser": { "files": { "History.md": { - "offset": 2782160, + "offset": 2788470, "size": 340, }, "Makefile": { - "offset": 2782490, + "offset": 2788800, "size": 90, }, "index.js": { - "offset": 2782580, + "offset": 2788890, "size": 920, }, "package.json": { - "offset": 2783500, + "offset": 2789810, "size": 520, }, }, @@ -81417,20 +81417,20 @@ exports[`node_module collectors > yarn two package.json without node_modules 2`] "rimraf": { "files": { "LICENSE": { - "offset": 2784010, + "offset": 2790330, "size": 770, }, "bin.js": { "executable": true, - "offset": 2784780, + "offset": 2791090, "size": 1200, }, "package.json": { - "offset": 2785970, + "offset": 2792290, "size": 500, }, "rimraf.js": { - "offset": 2786470, + "offset": 2792780, "size": 9230, }, }, @@ -81438,34 +81438,34 @@ exports[`node_module collectors > yarn two package.json without node_modules 2`] "sax": { "files": { "LICENSE.md": { - "offset": 2795690, + "offset": 2802010, "size": 1560, }, "lib": { "files": { "sax.js": { - "offset": 2797250, - "size": 46310, + "offset": 2803560, + "size": 50150, }, }, }, "package.json": { - "offset": 2843550, - "size": 530, + "offset": 2853710, + "size": 570, }, }, }, "semver": { "files": { "LICENSE": { - "offset": 2844070, + "offset": 2854270, "size": 770, }, "bin": { "files": { "semver.js": { "executable": true, - "offset": 2844830, + "offset": 2855040, "size": 4750, }, }, @@ -81473,19 +81473,19 @@ exports[`node_module collectors > yarn two package.json without node_modules 2`] "classes": { "files": { "comparator.js": { - "offset": 2849580, + "offset": 2859780, "size": 3640, }, "index.js": { - "offset": 2853210, + "offset": 2863420, "size": 150, }, "range.js": { - "offset": 2853360, + "offset": 2863560, "size": 14980, }, "semver.js": { - "offset": 2868330, + "offset": 2878540, "size": 9480, }, }, @@ -81493,191 +81493,191 @@ exports[`node_module collectors > yarn two package.json without node_modules 2`] "functions": { "files": { "clean.js": { - "offset": 2877810, + "offset": 2888020, "size": 210, }, "cmp.js": { - "offset": 2878020, + "offset": 2888220, "size": 970, }, "coerce.js": { - "offset": 2878980, + "offset": 2889180, "size": 2010, }, "compare-build.js": { - "offset": 2880980, + "offset": 2891190, "size": 290, }, "compare-loose.js": { - "offset": 2881260, + "offset": 2891470, "size": 140, }, "compare.js": { - "offset": 2881400, + "offset": 2891600, "size": 170, }, "diff.js": { - "offset": 2881570, + "offset": 2891770, "size": 1430, }, "eq.js": { - "offset": 2882990, + "offset": 2893190, "size": 130, }, "gt.js": { - "offset": 2883120, + "offset": 2893320, "size": 130, }, "gte.js": { - "offset": 2883240, + "offset": 2893440, "size": 130, }, "inc.js": { - "offset": 2883370, + "offset": 2893570, "size": 480, }, "lt.js": { - "offset": 2883840, + "offset": 2894050, "size": 130, }, "lte.js": { - "offset": 2883970, + "offset": 2894170, "size": 130, }, "major.js": { - "offset": 2884100, + "offset": 2894300, "size": 140, }, "minor.js": { - "offset": 2884230, + "offset": 2894430, "size": 140, }, "neq.js": { - "offset": 2884370, + "offset": 2894570, "size": 130, }, "parse.js": { - "offset": 2884500, + "offset": 2894700, "size": 340, }, "patch.js": { - "offset": 2884830, + "offset": 2895030, "size": 140, }, "prerelease.js": { - "offset": 2884960, + "offset": 2895160, "size": 240, }, "rcompare.js": { - "offset": 2885200, + "offset": 2895400, "size": 140, }, "rsort.js": { - "offset": 2885330, + "offset": 2895530, "size": 170, }, "satisfies.js": { - "offset": 2885490, + "offset": 2895690, "size": 250, }, "sort.js": { - "offset": 2885740, + "offset": 2895940, "size": 170, }, "valid.js": { - "offset": 2885900, + "offset": 2896100, "size": 180, }, }, }, "index.js": { - "offset": 2886080, + "offset": 2896280, "size": 2630, }, "internal": { "files": { "constants.js": { - "offset": 2888710, + "offset": 2898910, "size": 880, }, "debug.js": { - "offset": 2889580, + "offset": 2899780, "size": 240, }, "identifiers.js": { - "offset": 2889820, + "offset": 2900020, "size": 530, }, "lrucache.js": { - "offset": 2890340, + "offset": 2900550, "size": 810, }, "parse-options.js": { - "offset": 2891150, + "offset": 2901350, "size": 340, }, "re.js": { - "offset": 2891480, + "offset": 2901690, "size": 8140, }, }, }, "package.json": { - "offset": 2899620, + "offset": 2909820, "size": 1350, }, "preload.js": { - "offset": 2900970, + "offset": 2911170, "size": 90, }, "range.bnf": { - "offset": 2901050, + "offset": 2911260, "size": 620, }, "ranges": { "files": { "gtr.js": { - "offset": 2901670, + "offset": 2911880, "size": 240, }, "intersects.js": { - "offset": 2901900, + "offset": 2912110, "size": 230, }, "ltr.js": { - "offset": 2902130, + "offset": 2912330, "size": 230, }, "max-satisfying.js": { - "offset": 2902360, + "offset": 2912560, "size": 600, }, "min-satisfying.js": { - "offset": 2902950, + "offset": 2913150, "size": 600, }, "min-version.js": { - "offset": 2903540, + "offset": 2913740, "size": 1520, }, "outside.js": { - "offset": 2905050, + "offset": 2915260, "size": 2210, }, "simplify.js": { - "offset": 2907260, + "offset": 2917460, "size": 1360, }, "subset.js": { - "offset": 2908610, + "offset": 2918810, "size": 7530, }, "to-comparators.js": { - "offset": 2916140, + "offset": 2926340, "size": 290, }, "valid.js": { - "offset": 2916420, + "offset": 2926620, "size": 330, }, }, @@ -81687,25 +81687,25 @@ exports[`node_module collectors > yarn two package.json without node_modules 2`] "send": { "files": { "History.md": { - "offset": 2916740, + "offset": 2926950, "size": 710, }, "Makefile": { - "offset": 2917450, + "offset": 2927660, "size": 100, }, "index.js": { - "offset": 2917550, + "offset": 2927760, "size": 40, }, "lib": { "files": { "send.js": { - "offset": 2917590, + "offset": 2927800, "size": 9740, }, "utils.js": { - "offset": 2927330, + "offset": 2937530, "size": 800, }, }, @@ -81715,19 +81715,19 @@ exports[`node_module collectors > yarn two package.json without node_modules 2`] "fresh": { "files": { "HISTORY.md": { - "offset": 2928660, + "offset": 2938860, "size": 390, }, "LICENSE": { - "offset": 2929040, + "offset": 2939250, "size": 1100, }, "index.js": { - "offset": 2930140, + "offset": 2940340, "size": 1230, }, "package.json": { - "offset": 2931370, + "offset": 2941570, "size": 420, }, }, @@ -81735,19 +81735,19 @@ exports[`node_module collectors > yarn two package.json without node_modules 2`] "range-parser": { "files": { "HISTORY.md": { - "offset": 2931780, + "offset": 2941990, "size": 580, }, "LICENSE": { - "offset": 2932360, + "offset": 2942560, "size": 1100, }, "index.js": { - "offset": 2933460, + "offset": 2943660, "size": 1080, }, "package.json": { - "offset": 2934540, + "offset": 2944740, "size": 430, }, }, @@ -81755,7 +81755,7 @@ exports[`node_module collectors > yarn two package.json without node_modules 2`] }, }, "package.json": { - "offset": 2928130, + "offset": 2938330, "size": 530, }, }, @@ -81763,11 +81763,11 @@ exports[`node_module collectors > yarn two package.json without node_modules 2`] "serve-static": { "files": { "LICENSE": { - "offset": 2934960, + "offset": 2945160, "size": 1190, }, "index.js": { - "offset": 2936140, + "offset": 2946340, "size": 2990, }, "node_modules": { @@ -81775,19 +81775,19 @@ exports[`node_module collectors > yarn two package.json without node_modules 2`] "fresh": { "files": { "History.md": { - "offset": 2939620, + "offset": 2949820, "size": 80, }, "Makefile": { - "offset": 2939700, + "offset": 2949900, "size": 90, }, "index.js": { - "offset": 2939790, + "offset": 2949990, "size": 1230, }, "package.json": { - "offset": 2941010, + "offset": 2951210, "size": 470, }, }, @@ -81795,19 +81795,19 @@ exports[`node_module collectors > yarn two package.json without node_modules 2`] "range-parser": { "files": { "History.md": { - "offset": 2941480, + "offset": 2951680, "size": 240, }, "Makefile": { - "offset": 2941710, + "offset": 2951920, "size": 90, }, "index.js": { - "offset": 2941800, + "offset": 2952000, "size": 920, }, "package.json": { - "offset": 2942720, + "offset": 2952920, "size": 290, }, }, @@ -81815,31 +81815,31 @@ exports[`node_module collectors > yarn two package.json without node_modules 2`] "send": { "files": { "History.md": { - "offset": 2943010, + "offset": 2953210, "size": 640, }, "Makefile": { - "offset": 2943650, + "offset": 2953850, "size": 100, }, "index.js": { - "offset": 2943750, + "offset": 2953950, "size": 40, }, "lib": { "files": { "send.js": { - "offset": 2943790, + "offset": 2953990, "size": 9740, }, "utils.js": { - "offset": 2953520, + "offset": 2963720, "size": 800, }, }, }, "package.json": { - "offset": 2954320, + "offset": 2964520, "size": 530, }, }, @@ -81847,7 +81847,7 @@ exports[`node_module collectors > yarn two package.json without node_modules 2`] }, }, "package.json": { - "offset": 2939130, + "offset": 2949330, "size": 500, }, }, @@ -81855,27 +81855,27 @@ exports[`node_module collectors > yarn two package.json without node_modules 2`] "set-function-length": { "files": { ".nycrc": { - "offset": 2954850, + "offset": 2965050, "size": 220, }, "LICENSE": { - "offset": 2955060, + "offset": 2965270, "size": 1090, }, "env.js": { - "offset": 2956150, + "offset": 2966350, "size": 870, }, "index.js": { - "offset": 2957010, + "offset": 2967220, "size": 1280, }, "package.json": { - "offset": 2958290, + "offset": 2968490, "size": 1960, }, "tsconfig.json": { - "offset": 2960240, + "offset": 2970440, "size": 120, }, }, @@ -81883,15 +81883,15 @@ exports[`node_module collectors > yarn two package.json without node_modules 2`] "shebang-command": { "files": { "index.js": { - "offset": 2960360, + "offset": 2970560, "size": 390, }, "license": { - "offset": 2960740, + "offset": 2970950, "size": 1120, }, "package.json": { - "offset": 2961860, + "offset": 2972060, "size": 490, }, }, @@ -81899,15 +81899,15 @@ exports[`node_module collectors > yarn two package.json without node_modules 2`] "shebang-regex": { "files": { "index.js": { - "offset": 2962340, + "offset": 2972550, "size": 50, }, "license": { - "offset": 2962390, + "offset": 2972590, "size": 1110, }, "package.json": { - "offset": 2963490, + "offset": 2973700, "size": 480, }, }, @@ -81915,15 +81915,15 @@ exports[`node_module collectors > yarn two package.json without node_modules 2`] "slash": { "files": { "index.js": { - "offset": 2963970, + "offset": 2974180, "size": 300, }, "license": { - "offset": 2964270, + "offset": 2974470, "size": 1110, }, "package.json": { - "offset": 2965380, + "offset": 2975580, "size": 420, }, }, @@ -81931,19 +81931,19 @@ exports[`node_module collectors > yarn two package.json without node_modules 2`] "supports-color": { "files": { "browser.js": { - "offset": 2965790, + "offset": 2975990, "size": 70, }, "index.js": { - "offset": 2965860, + "offset": 2976060, "size": 2750, }, "license": { - "offset": 2968610, + "offset": 2978810, "size": 1110, }, "package.json": { - "offset": 2969720, + "offset": 2979920, "size": 560, }, }, @@ -81951,19 +81951,19 @@ exports[`node_module collectors > yarn two package.json without node_modules 2`] "tiny-typed-emitter": { "files": { "LICENSE": { - "offset": 2970270, + "offset": 2980470, "size": 1110, }, "lib": { "files": { "index.js": { - "offset": 2971370, + "offset": 2981580, "size": 140, }, }, }, "package.json": { - "offset": 2971510, + "offset": 2981710, "size": 400, }, }, @@ -81971,19 +81971,19 @@ exports[`node_module collectors > yarn two package.json without node_modules 2`] "tmp": { "files": { "LICENSE": { - "offset": 2971900, + "offset": 2982100, "size": 1090, }, "lib": { "files": { "tmp.js": { - "offset": 2972980, + "offset": 2983190, "size": 14900, }, }, }, "package.json": { - "offset": 2987880, + "offset": 2998080, "size": 480, }, }, @@ -81991,15 +81991,15 @@ exports[`node_module collectors > yarn two package.json without node_modules 2`] "to-regex-range": { "files": { "LICENSE": { - "offset": 2988350, + "offset": 2998550, "size": 1100, }, "index.js": { - "offset": 2989440, + "offset": 2999640, "size": 6490, }, "package.json": { - "offset": 2995920, + "offset": 3006120, "size": 1150, }, }, @@ -82007,15 +82007,15 @@ exports[`node_module collectors > yarn two package.json without node_modules 2`] "type-is": { "files": { "Makefile": { - "offset": 2997070, + "offset": 3007270, "size": 110, }, "index.js": { - "offset": 2997170, + "offset": 3007370, "size": 2300, }, "package.json": { - "offset": 2999470, + "offset": 3009670, "size": 500, }, }, @@ -82023,15 +82023,15 @@ exports[`node_module collectors > yarn two package.json without node_modules 2`] "universalify": { "files": { "LICENSE": { - "offset": 2999960, + "offset": 3010170, "size": 1100, }, "index.js": { - "offset": 3001060, + "offset": 3011270, "size": 710, }, "package.json": { - "offset": 3001770, + "offset": 3011970, "size": 620, }, }, @@ -82039,15 +82039,15 @@ exports[`node_module collectors > yarn two package.json without node_modules 2`] "utils-merge": { "files": { "LICENSE": { - "offset": 3002390, + "offset": 3012590, "size": 1080, }, "index.js": { - "offset": 3003460, + "offset": 3013670, "size": 390, }, "package.json": { - "offset": 3003840, + "offset": 3014050, "size": 590, }, }, @@ -82055,24 +82055,24 @@ exports[`node_module collectors > yarn two package.json without node_modules 2`] "which": { "files": { "LICENSE": { - "offset": 3004430, + "offset": 3014630, "size": 770, }, "bin": { "files": { "node-which": { "executable": true, - "offset": 3005190, + "offset": 3015400, "size": 990, }, }, }, "package.json": { - "offset": 3006180, + "offset": 3016380, "size": 690, }, "which.js": { - "offset": 3006860, + "offset": 3017060, "size": 3170, }, }, @@ -82080,15 +82080,15 @@ exports[`node_module collectors > yarn two package.json without node_modules 2`] "wrappy": { "files": { "LICENSE": { - "offset": 3010020, + "offset": 3020220, "size": 770, }, "package.json": { - "offset": 3010790, + "offset": 3020990, "size": 480, }, "wrappy.js": { - "offset": 3011270, + "offset": 3021470, "size": 910, }, }, @@ -82096,12 +82096,12 @@ exports[`node_module collectors > yarn two package.json without node_modules 2`] "yaml": { "files": { "LICENSE": { - "offset": 3012170, + "offset": 3022370, "size": 740, }, "bin.mjs": { "executable": true, - "offset": 3012910, + "offset": 3023110, "size": 310, }, "browser": { @@ -82111,67 +82111,67 @@ exports[`node_module collectors > yarn two package.json without node_modules 2`] "compose": { "files": { "compose-collection.js": { - "offset": 3013220, + "offset": 3023420, "size": 3500, }, "compose-doc.js": { - "offset": 3016720, + "offset": 3026920, "size": 1560, }, "compose-node.js": { - "offset": 3018270, - "size": 3820, + "offset": 3028480, + "size": 4130, }, "compose-scalar.js": { - "offset": 3022090, + "offset": 3032600, "size": 3320, }, "composer.js": { - "offset": 3025410, + "offset": 3035910, "size": 8400, }, "resolve-block-map.js": { - "offset": 3033810, + "offset": 3044310, "size": 4920, }, "resolve-block-scalar.js": { - "offset": 3038720, + "offset": 3049230, "size": 7450, }, "resolve-block-seq.js": { - "offset": 3046170, + "offset": 3056680, "size": 1740, }, "resolve-end.js": { - "offset": 3047910, + "offset": 3058420, "size": 1240, }, "resolve-flow-collection.js": { - "offset": 3049150, + "offset": 3059660, "size": 8780, }, "resolve-flow-scalar.js": { - "offset": 3057930, + "offset": 3068430, "size": 7310, }, "resolve-props.js": { - "offset": 3065230, + "offset": 3075740, "size": 5560, }, "util-contains-newline.js": { - "offset": 3070780, + "offset": 3081290, "size": 1060, }, "util-empty-scalar-position.js": { - "offset": 3071830, + "offset": 3082340, "size": 820, }, "util-flow-indent-check.js": { - "offset": 3072650, + "offset": 3083150, "size": 500, }, "util-map-includes.js": { - "offset": 3073140, + "offset": 3083650, "size": 430, }, }, @@ -82179,79 +82179,79 @@ exports[`node_module collectors > yarn two package.json without node_modules 2`] "doc": { "files": { "Document.js": { - "offset": 3073570, + "offset": 3084080, "size": 12910, }, "anchors.js": { - "offset": 3086470, + "offset": 3096980, "size": 2280, }, "applyReviver.js": { - "offset": 3088750, + "offset": 3099260, "size": 1930, }, "createNode.js": { - "offset": 3090670, + "offset": 3101180, "size": 3070, }, "directives.js": { - "offset": 3093730, + "offset": 3104240, "size": 6190, }, }, }, "errors.js": { - "offset": 3099920, + "offset": 3110430, "size": 2030, }, "index.js": { - "offset": 3101940, + "offset": 3112450, "size": 880, }, "log.js": { - "offset": 3102820, + "offset": 3113330, "size": 260, }, "nodes": { "files": { "Alias.js": { - "offset": 3103080, + "offset": 3113590, "size": 3750, }, "Collection.js": { - "offset": 3106830, + "offset": 3117340, "size": 5080, }, "Node.js": { - "offset": 3111910, + "offset": 3122410, "size": 1340, }, "Pair.js": { - "offset": 3113250, + "offset": 3123750, "size": 1130, }, "Scalar.js": { - "offset": 3114370, + "offset": 3124880, "size": 700, }, "YAMLMap.js": { - "offset": 3115070, + "offset": 3125580, "size": 4960, }, "YAMLSeq.js": { - "offset": 3120030, + "offset": 3130530, "size": 3580, }, "addPairToJSMap.js": { - "offset": 3123600, + "offset": 3134110, "size": 2290, }, "identity.js": { - "offset": 3125890, + "offset": 3136400, "size": 1520, }, "toJS.js": { - "offset": 3127400, + "offset": 3137910, "size": 1270, }, }, @@ -82259,61 +82259,61 @@ exports[`node_module collectors > yarn two package.json without node_modules 2`] "parse": { "files": { "cst-scalar.js": { - "offset": 3128670, + "offset": 3139180, "size": 9240, }, "cst-stringify.js": { - "offset": 3137900, + "offset": 3148410, "size": 1780, }, "cst-visit.js": { - "offset": 3139680, + "offset": 3150190, "size": 3970, }, "cst.js": { - "offset": 3143640, + "offset": 3154150, "size": 2890, }, "lexer.js": { - "offset": 3146530, + "offset": 3157040, "size": 24070, }, "line-counter.js": { - "offset": 3170590, + "offset": 3181100, "size": 1420, }, "parser.js": { - "offset": 3172010, + "offset": 3182520, "size": 35170, }, }, }, "public-api.js": { - "offset": 3207180, + "offset": 3217690, "size": 4000, }, "schema": { "files": { "Schema.js": { - "offset": 3211170, + "offset": 3221680, "size": 1500, }, "common": { "files": { "map.js": { - "offset": 3212670, + "offset": 3223170, "size": 440, }, "null.js": { - "offset": 3213100, + "offset": 3223610, "size": 440, }, "seq.js": { - "offset": 3213540, + "offset": 3224050, "size": 440, }, "string.js": { - "offset": 3213980, + "offset": 3224490, "size": 430, }, }, @@ -82321,19 +82321,19 @@ exports[`node_module collectors > yarn two package.json without node_modules 2`] "core": { "files": { "bool.js": { - "offset": 3214400, + "offset": 3224910, "size": 610, }, "float.js": { - "offset": 3215010, + "offset": 3225510, "size": 1400, }, "int.js": { - "offset": 3216410, + "offset": 3226910, "size": 1330, }, "schema.js": { - "offset": 3217730, + "offset": 3228240, "size": 480, }, }, @@ -82341,55 +82341,55 @@ exports[`node_module collectors > yarn two package.json without node_modules 2`] "json": { "files": { "schema.js": { - "offset": 3218210, + "offset": 3228720, "size": 1870, }, }, }, "tags.js": { - "offset": 3220080, + "offset": 3230580, "size": 2970, }, "yaml-1.1": { "files": { "binary.js": { - "offset": 3223040, + "offset": 3233550, "size": 2320, }, "bool.js": { - "offset": 3225350, + "offset": 3235860, "size": 790, }, "float.js": { - "offset": 3226140, + "offset": 3236650, "size": 1520, }, "int.js": { - "offset": 3227660, + "offset": 3238160, "size": 2140, }, "merge.js": { - "offset": 3229790, + "offset": 3240290, "size": 2450, }, "omap.js": { - "offset": 3232230, + "offset": 3242740, "size": 2480, }, "pairs.js": { - "offset": 3234710, + "offset": 3245210, "size": 2760, }, "schema.js": { - "offset": 3237460, + "offset": 3247970, "size": 860, }, "set.js": { - "offset": 3238320, + "offset": 3248830, "size": 3030, }, "timestamp.js": { - "offset": 3241350, + "offset": 3251860, "size": 3700, }, }, @@ -82399,55 +82399,55 @@ exports[`node_module collectors > yarn two package.json without node_modules 2`] "stringify": { "files": { "foldFlowLines.js": { - "offset": 3245050, + "offset": 3255550, "size": 4800, }, "stringify.js": { - "offset": 3249840, - "size": 4370, + "offset": 3260350, + "size": 4400, }, "stringifyCollection.js": { - "offset": 3254210, - "size": 5200, + "offset": 3264750, + "size": 5560, }, "stringifyComment.js": { - "offset": 3259400, + "offset": 3270300, "size": 730, }, "stringifyDocument.js": { - "offset": 3260130, + "offset": 3271020, "size": 2990, }, "stringifyNumber.js": { - "offset": 3263110, + "offset": 3274010, "size": 750, }, "stringifyPair.js": { - "offset": 3263860, + "offset": 3274750, "size": 5290, }, "stringifyString.js": { - "offset": 3269140, + "offset": 3280040, "size": 13170, }, }, }, "util.js": { - "offset": 3282310, + "offset": 3293200, "size": 600, }, "visit.js": { - "offset": 3282900, + "offset": 3293800, "size": 9110, }, }, }, "index.js": { - "offset": 3292010, + "offset": 3302900, "size": 200, }, "package.json": { - "offset": 3292200, + "offset": 3303100, "size": 30, }, }, @@ -82455,73 +82455,73 @@ exports[`node_module collectors > yarn two package.json without node_modules 2`] "dist": { "files": { "cli.mjs": { - "offset": 3292220, + "offset": 3303120, "size": 7470, }, "compose": { "files": { "compose-collection.js": { - "offset": 3299680, + "offset": 3310580, "size": 3620, }, "compose-doc.js": { - "offset": 3303300, + "offset": 3314190, "size": 1620, }, "compose-node.js": { - "offset": 3304910, - "size": 3970, + "offset": 3315810, + "size": 4270, }, "compose-scalar.js": { - "offset": 3308880, + "offset": 3320080, "size": 3450, }, "composer.js": { - "offset": 3312320, + "offset": 3323520, "size": 8610, }, "resolve-block-map.js": { - "offset": 3320930, + "offset": 3332130, "size": 5080, }, "resolve-block-scalar.js": { - "offset": 3326000, + "offset": 3337200, "size": 7500, }, "resolve-block-seq.js": { - "offset": 3333500, + "offset": 3344700, "size": 1820, }, "resolve-end.js": { - "offset": 3335310, + "offset": 3346510, "size": 1270, }, "resolve-flow-collection.js": { - "offset": 3336580, + "offset": 3347780, "size": 8930, }, "resolve-flow-scalar.js": { - "offset": 3345500, + "offset": 3356710, "size": 7370, }, "resolve-props.js": { - "offset": 3352870, + "offset": 3364070, "size": 5580, }, "util-contains-newline.js": { - "offset": 3358450, + "offset": 3369650, "size": 1090, }, "util-empty-scalar-position.js": { - "offset": 3359530, + "offset": 3370730, "size": 850, }, "util-flow-indent-check.js": { - "offset": 3360380, + "offset": 3371580, "size": 550, }, "util-map-includes.js": { - "offset": 3360930, + "offset": 3372130, "size": 480, }, }, @@ -82529,79 +82529,79 @@ exports[`node_module collectors > yarn two package.json without node_modules 2`] "doc": { "files": { "Document.js": { - "offset": 3361400, + "offset": 3372600, "size": 13120, }, "anchors.js": { - "offset": 3374510, + "offset": 3385710, "size": 2390, }, "applyReviver.js": { - "offset": 3376900, + "offset": 3388100, "size": 1950, }, "createNode.js": { - "offset": 3378850, + "offset": 3390050, "size": 3140, }, "directives.js": { - "offset": 3381980, + "offset": 3393190, "size": 6240, }, }, }, "errors.js": { - "offset": 3388220, + "offset": 3399420, "size": 2120, }, "index.js": { - "offset": 3390340, + "offset": 3401540, "size": 1770, }, "log.js": { - "offset": 3392110, + "offset": 3403310, "size": 460, }, "nodes": { "files": { "Alias.js": { - "offset": 3392570, + "offset": 3403770, "size": 3800, }, "Collection.js": { - "offset": 3396360, + "offset": 3407560, "size": 5230, }, "Node.js": { - "offset": 3401580, + "offset": 3412780, "size": 1390, }, "Pair.js": { - "offset": 3402960, + "offset": 3414160, "size": 1240, }, "Scalar.js": { - "offset": 3404200, + "offset": 3415400, "size": 760, }, "YAMLMap.js": { - "offset": 3404950, + "offset": 3416160, "size": 5110, }, "YAMLSeq.js": { - "offset": 3410060, + "offset": 3421260, "size": 3670, }, "addPairToJSMap.js": { - "offset": 3413730, + "offset": 3424930, "size": 2340, }, "identity.js": { - "offset": 3416060, + "offset": 3427270, "size": 1800, }, "toJS.js": { - "offset": 3417860, + "offset": 3429060, "size": 1300, }, }, @@ -82609,61 +82609,61 @@ exports[`node_module collectors > yarn two package.json without node_modules 2`] "parse": { "files": { "cst-scalar.js": { - "offset": 3419150, + "offset": 3430350, "size": 9390, }, "cst-stringify.js": { - "offset": 3428530, + "offset": 3439730, "size": 1800, }, "cst-visit.js": { - "offset": 3430330, + "offset": 3441530, "size": 3990, }, "cst.js": { - "offset": 3434320, + "offset": 3445520, "size": 3250, }, "lexer.js": { - "offset": 3437560, + "offset": 3448760, "size": 24080, }, "line-counter.js": { - "offset": 3461630, + "offset": 3472830, "size": 1450, }, "parser.js": { - "offset": 3463080, + "offset": 3474280, "size": 35330, }, }, }, "public-api.js": { - "offset": 3498400, + "offset": 3509600, "size": 4190, }, "schema": { "files": { "Schema.js": { - "offset": 3502590, + "offset": 3513790, "size": 1550, }, "common": { "files": { "map.js": { - "offset": 3504140, + "offset": 3515340, "size": 490, }, "null.js": { - "offset": 3504620, + "offset": 3515820, "size": 470, }, "seq.js": { - "offset": 3505090, + "offset": 3516290, "size": 490, }, "string.js": { - "offset": 3505570, + "offset": 3516770, "size": 460, }, }, @@ -82671,19 +82671,19 @@ exports[`node_module collectors > yarn two package.json without node_modules 2`] "core": { "files": { "bool.js": { - "offset": 3506030, + "offset": 3517230, "size": 640, }, "float.js": { - "offset": 3506660, + "offset": 3517870, "size": 1510, }, "int.js": { - "offset": 3508170, + "offset": 3519380, "size": 1410, }, "schema.js": { - "offset": 3509580, + "offset": 3520780, "size": 510, }, }, @@ -82691,55 +82691,55 @@ exports[`node_module collectors > yarn two package.json without node_modules 2`] "json": { "files": { "schema.js": { - "offset": 3510090, + "offset": 3521290, "size": 1900, }, }, }, "tags.js": { - "offset": 3511990, + "offset": 3523190, "size": 3240, }, "yaml-1.1": { "files": { "binary.js": { - "offset": 3515230, + "offset": 3526430, "size": 2800, }, "bool.js": { - "offset": 3518030, + "offset": 3529230, "size": 850, }, "float.js": { - "offset": 3518870, + "offset": 3530070, "size": 1630, }, "int.js": { - "offset": 3520500, + "offset": 3531700, "size": 2240, }, "merge.js": { - "offset": 3522730, + "offset": 3533930, "size": 2550, }, "omap.js": { - "offset": 3525280, + "offset": 3536480, "size": 2590, }, "pairs.js": { - "offset": 3527860, + "offset": 3539060, "size": 2860, }, "schema.js": { - "offset": 3530710, + "offset": 3541910, "size": 920, }, "set.js": { - "offset": 3531620, + "offset": 3542820, "size": 3120, }, "timestamp.js": { - "offset": 3534740, + "offset": 3545940, "size": 3780, }, }, @@ -82749,59 +82749,59 @@ exports[`node_module collectors > yarn two package.json without node_modules 2`] "stringify": { "files": { "foldFlowLines.js": { - "offset": 3538510, + "offset": 3549710, "size": 4890, }, "stringify.js": { - "offset": 3543400, - "size": 4510, + "offset": 3554600, + "size": 4540, }, "stringifyCollection.js": { - "offset": 3547900, - "size": 5360, + "offset": 3559130, + "size": 5720, }, "stringifyComment.js": { - "offset": 3553260, + "offset": 3564850, "size": 810, }, "stringifyDocument.js": { - "offset": 3554060, + "offset": 3565650, "size": 3110, }, "stringifyNumber.js": { - "offset": 3557170, + "offset": 3568760, "size": 780, }, "stringifyPair.js": { - "offset": 3557940, + "offset": 3569530, "size": 5470, }, "stringifyString.js": { - "offset": 3563410, + "offset": 3575000, "size": 13350, }, }, }, "test-events.js": { - "offset": 3576760, + "offset": 3588350, "size": 4280, }, "util.js": { - "offset": 3581030, + "offset": 3592620, "size": 1010, }, "visit.js": { - "offset": 3582040, + "offset": 3593630, "size": 9260, }, }, }, "package.json": { - "offset": 3591290, + "offset": 3602880, "size": 1830, }, "util.js": { - "offset": 3593120, + "offset": 3604710, "size": 80, }, }, @@ -82809,7 +82809,7 @@ exports[`node_module collectors > yarn two package.json without node_modules 2`] }, }, "package.json": { - "offset": 3594200, + "offset": 3605790, "size": 360, }, }, From df7f6e978e90355853956ef13946cb8d1ea4f2db Mon Sep 17 00:00:00 2001 From: Mike Maietta Date: Wed, 8 Apr 2026 06:52:23 -0700 Subject: [PATCH 41/61] tmp save --- packages/app-builder-lib/src/index.ts | 3 ++ .../src/node-module-collector/index.ts | 14 +++++----- .../nodeModulesCollector.ts | 8 +++--- .../pnpmNodeModulesCollector.ts | 8 +++--- .../traversalNodeModulesCollector.ts | 4 +-- .../yarnNodeModulesCollector.ts | 6 ++-- .../src/publish/PublishManager.ts | 18 ++++++------ .../app-builder-lib/src/targets/AppxTarget.ts | 3 +- .../app-builder-lib/src/targets/FpmTarget.ts | 28 +++++++++---------- .../src/targets/appimage/AppImageTarget.ts | 20 ++++++------- .../src/SquirrelWindowsTarget.ts | 11 +++----- .../src/cli/create-self-signed-cert.ts | 2 +- test/src/BuildTest.ts | 2 +- test/src/helpers/launchAppCrossPlatform.ts | 2 +- test/src/updater/blackboxUpdateTest.ts | 2 +- test/src/updater/differentialUpdateTest.ts | 2 +- 16 files changed, 67 insertions(+), 66 deletions(-) diff --git a/packages/app-builder-lib/src/index.ts b/packages/app-builder-lib/src/index.ts index 10fb716a8ad..0c862f2164e 100644 --- a/packages/app-builder-lib/src/index.ts +++ b/packages/app-builder-lib/src/index.ts @@ -78,6 +78,9 @@ export { getConfig } from "./util/config/config.js" export { getElectronVersion } from "./electron/electronVersion.js" export { execWine } from "./wine.js" export { getBinFromUrl } from "./binDownload.js" +export { PM } from "./node-module-collector/packageManager.js" +export { doMergeConfigs } from "./util/config/config.js" +export { getWindowsKitsBundle } from "./toolsets/windows.js" const expectedOptions = new Set(["publish", "targets", "mac", "win", "linux", "projectDir", "platformPackagerFactory", "config", "effectiveOptionComputed", "prepackaged"]) diff --git a/packages/app-builder-lib/src/node-module-collector/index.ts b/packages/app-builder-lib/src/node-module-collector/index.ts index 43cfea4c6e2..ede4e6dbe1a 100644 --- a/packages/app-builder-lib/src/node-module-collector/index.ts +++ b/packages/app-builder-lib/src/node-module-collector/index.ts @@ -1,16 +1,16 @@ import { Nullish } from "builder-util-runtime" import { TmpDir } from "temp-file" -import { NpmNodeModulesCollector } from "./npmNodeModulesCollector" -import { detectPackageManager, getPackageManagerCommand, PM } from "./packageManager" -import { PnpmNodeModulesCollector } from "./pnpmNodeModulesCollector" -import { YarnBerryNodeModulesCollector } from "./yarnBerryNodeModulesCollector" -import { YarnNodeModulesCollector } from "./yarnNodeModulesCollector" -import { BunNodeModulesCollector } from "./bunNodeModulesCollector" +import { NpmNodeModulesCollector } from "./npmNodeModulesCollector.js" +import { detectPackageManager, getPackageManagerCommand, PM } from "./packageManager.js" +import { PnpmNodeModulesCollector } from "./pnpmNodeModulesCollector.js" +import { YarnBerryNodeModulesCollector } from "./yarnBerryNodeModulesCollector.js" +import { YarnNodeModulesCollector } from "./yarnNodeModulesCollector.js" +import { BunNodeModulesCollector } from "./bunNodeModulesCollector.js" import { Lazy } from "lazy-val" import { spawn, log, exists, isEmptyOrSpaces } from "builder-util" import * as fs from "fs-extra" import * as path from "path" -import { TraversalNodeModulesCollector } from "./traversalNodeModulesCollector" +import { TraversalNodeModulesCollector } from "./traversalNodeModulesCollector.js" export { getPackageManagerCommand, PM } diff --git a/packages/app-builder-lib/src/node-module-collector/nodeModulesCollector.ts b/packages/app-builder-lib/src/node-module-collector/nodeModulesCollector.ts index 043c8a673a9..a58b1e57255 100644 --- a/packages/app-builder-lib/src/node-module-collector/nodeModulesCollector.ts +++ b/packages/app-builder-lib/src/node-module-collector/nodeModulesCollector.ts @@ -4,10 +4,10 @@ import * as fs from "fs-extra" import { createWriteStream } from "fs-extra" import { Lazy } from "lazy-val" import * as path from "path" -import { hoist, type HoisterResult, type HoisterTree } from "./hoist" -import { LogMessageByKey, ModuleManager } from "./moduleManager" -import { getPackageManagerCommand, PM } from "./packageManager" -import type { Dependency, DependencyGraph, NodeModuleInfo, PackageJson } from "./types" +import { hoist, type HoisterResult, type HoisterTree } from "./hoist.js" +import { LogMessageByKey, ModuleManager } from "./moduleManager.js" +import { getPackageManagerCommand, PM } from "./packageManager.js" +import type { Dependency, DependencyGraph, NodeModuleInfo, PackageJson } from "./types.js" export abstract class NodeModulesCollector, OptionalDepType> { private readonly nodeModules: NodeModuleInfo[] = [] diff --git a/packages/app-builder-lib/src/node-module-collector/pnpmNodeModulesCollector.ts b/packages/app-builder-lib/src/node-module-collector/pnpmNodeModulesCollector.ts index d0f2e0fcb9f..aa386acaa4c 100644 --- a/packages/app-builder-lib/src/node-module-collector/pnpmNodeModulesCollector.ts +++ b/packages/app-builder-lib/src/node-module-collector/pnpmNodeModulesCollector.ts @@ -1,7 +1,7 @@ -import { LogMessageByKey } from "./moduleManager" -import { NodeModulesCollector } from "./nodeModulesCollector" -import { PM } from "./packageManager" -import { PnpmDependency } from "./types" +import { LogMessageByKey } from "./moduleManager.js" +import { NodeModulesCollector } from "./nodeModulesCollector.js" +import { PM } from "./packageManager.js" +import { PnpmDependency } from "./types.js" export class PnpmNodeModulesCollector extends NodeModulesCollector { public readonly installOptions = { diff --git a/packages/app-builder-lib/src/node-module-collector/traversalNodeModulesCollector.ts b/packages/app-builder-lib/src/node-module-collector/traversalNodeModulesCollector.ts index eef5dd98700..b375829d3d0 100644 --- a/packages/app-builder-lib/src/node-module-collector/traversalNodeModulesCollector.ts +++ b/packages/app-builder-lib/src/node-module-collector/traversalNodeModulesCollector.ts @@ -1,7 +1,7 @@ import { log } from "builder-util" import * as path from "path" -import { LogMessageByKey } from "./moduleManager" -import { NodeModulesCollector } from "./nodeModulesCollector" +import { LogMessageByKey } from "./moduleManager.js" +import { NodeModulesCollector } from "./nodeModulesCollector.js" import { PM } from "./packageManager.js" import { TraversedDependency } from "./types.js" diff --git a/packages/app-builder-lib/src/node-module-collector/yarnNodeModulesCollector.ts b/packages/app-builder-lib/src/node-module-collector/yarnNodeModulesCollector.ts index ed2cbdb4453..6054208553a 100644 --- a/packages/app-builder-lib/src/node-module-collector/yarnNodeModulesCollector.ts +++ b/packages/app-builder-lib/src/node-module-collector/yarnNodeModulesCollector.ts @@ -1,6 +1,6 @@ -import { NpmNodeModulesCollector } from "./npmNodeModulesCollector" -import { PM } from "./packageManager" -import { NpmDependency } from "./types" +import { NpmNodeModulesCollector } from "./npmNodeModulesCollector.js" +import { PM } from "./packageManager.js" +import { NpmDependency } from "./types.js" // Yarn Classic (v1) produces a hoisted node_modules structure similar to npm. // Instead of parsing Yarn's custom NDJSON output, we leverage npm's list command diff --git a/packages/app-builder-lib/src/publish/PublishManager.ts b/packages/app-builder-lib/src/publish/PublishManager.ts index 9128c189573..d5063f3c49c 100644 --- a/packages/app-builder-lib/src/publish/PublishManager.ts +++ b/packages/app-builder-lib/src/publish/PublishManager.ts @@ -29,20 +29,20 @@ import { SpacesPublisher, UploadTask, } from "electron-publish" -import { MultiProgress } from "electron-publish/out/multiProgress" +import { MultiProgress } from "electron-publish" import { readFile, writeFile } from "fs/promises" import { isCI } from "ci-info" import * as path from "path" import { WriteStream as TtyWriteStream } from "tty" import * as url from "url" -import { AppInfo, ArtifactCreated, Configuration, Platform, PlatformSpecificBuildOptions, Target, TargetSpecificOptions } from "../index" -import { Packager } from "../packager" -import { PlatformPackager } from "../platformPackager" -import { expandMacro } from "../util/macroExpander" -import { WinPackager } from "../winPackager" -import { createUpdateInfoTasks, UpdateInfoFileTask, writeUpdateInfoFiles } from "./updateInfoBuilder" -import { resolveModule } from "../util/resolve" -import { parseUrl } from "../util/pathManager" +import { AppInfo, ArtifactCreated, Configuration, Platform, PlatformSpecificBuildOptions, Target, TargetSpecificOptions } from "../index.js" +import { Packager } from "../packager.js" +import { PlatformPackager } from "../platformPackager.js" +import { expandMacro } from "../util/macroExpander.js" +import { WinPackager } from "../winPackager.js" +import { createUpdateInfoTasks, UpdateInfoFileTask, writeUpdateInfoFiles } from "./updateInfoBuilder.js" +import { resolveModule } from "../util/resolve.js" +import { parseUrl } from "../util/pathManager.js" const publishForPrWarning = "There are serious security concerns with PUBLISH_FOR_PULL_REQUEST=true (see the CircleCI documentation (https://circleci.com/docs/1.0/fork-pr-builds/) for details)" + diff --git a/packages/app-builder-lib/src/targets/AppxTarget.ts b/packages/app-builder-lib/src/targets/AppxTarget.ts index 82776fed377..615bb64d638 100644 --- a/packages/app-builder-lib/src/targets/AppxTarget.ts +++ b/packages/app-builder-lib/src/targets/AppxTarget.ts @@ -49,7 +49,7 @@ const restrictedApplicationIdValues = [ const DEFAULT_RESOURCE_LANG = "en-US" export default class AppXTarget extends Target { - readonly options: AppXOptions = deepAssign({}, this.packager.platformSpecificBuildOptions, this.packager.config.appx) + readonly options: AppXOptions isAsyncSupported = false @@ -58,6 +58,7 @@ export default class AppXTarget extends Target { readonly outDir: string ) { super("appx") + this.options = deepAssign({}, this.packager.platformSpecificBuildOptions, this.packager.config.appx) if (process.platform !== "darwin" && (process.platform !== "win32" || isOldWin6())) { throw new Error("AppX is supported only on Windows 10 or Windows Server 2012 R2 (version number 6.3+)") diff --git a/packages/app-builder-lib/src/targets/FpmTarget.ts b/packages/app-builder-lib/src/targets/FpmTarget.ts index a77508614ab..71ca0b90b5a 100644 --- a/packages/app-builder-lib/src/targets/FpmTarget.ts +++ b/packages/app-builder-lib/src/targets/FpmTarget.ts @@ -3,20 +3,20 @@ import { Nullish } from "builder-util-runtime" import { copyFile, outputFile, stat } from "fs-extra" import { mkdir, readFile } from "fs/promises" import * as path from "path" -import { smarten } from "../appInfo" -import { Target } from "../core" -import * as errorMessages from "../errorMessages" -import { LinuxPackager } from "../linuxPackager" -import { DebOptions, LinuxTargetSpecificOptions } from "../options/linuxOptions" -import { ArtifactCreated } from "../packagerApi" -import { getAppUpdatePublishConfiguration } from "../publish/PublishManager" -import { objectToArgs } from "../util/appBuilder" -import { computeEnv } from "../util/bundledTool" -import { hashFile } from "../util/hash" -import { isMacOsSierra } from "../util/macosVersion" -import { getTemplatePath } from "../util/pathManager" -import { installPrefix, LinuxTargetHelper } from "./LinuxTargetHelper" -import { getFpmPath, getLinuxToolsPath } from "../toolsets/linux" +import { smarten } from "../appInfo.js" +import { Target } from "../core.js" +import * as errorMessages from "../errorMessages.js" +import { LinuxPackager } from "../linuxPackager.js" +import { DebOptions, LinuxTargetSpecificOptions } from "../options/linuxOptions.js" +import { ArtifactCreated } from "../packagerApi.js" +import { getAppUpdatePublishConfiguration } from "../publish/PublishManager.js" +import { objectToArgs } from "../util/appBuilder.js" +import { computeEnv } from "../util/bundledTool.js" +import { hashFile } from "../util/hash.js" +import { isMacOsSierra } from "../util/macosVersion.js" +import { getTemplatePath } from "../util/pathManager.js" +import { installPrefix, LinuxTargetHelper } from "./LinuxTargetHelper.js" +import { getFpmPath, getLinuxToolsPath } from "../toolsets/linux.js" interface FpmOptions { name: string diff --git a/packages/app-builder-lib/src/targets/appimage/AppImageTarget.ts b/packages/app-builder-lib/src/targets/appimage/AppImageTarget.ts index fb7b08bdf74..6e4f5b95329 100644 --- a/packages/app-builder-lib/src/targets/appimage/AppImageTarget.ts +++ b/packages/app-builder-lib/src/targets/appimage/AppImageTarget.ts @@ -1,17 +1,17 @@ -import { IconInfo } from "../../platformPackager" +import { IconInfo } from "../../platformPackager.js" import { Arch, log, serializeToYaml } from "builder-util" import { outputFile } from "fs-extra" import { Lazy } from "lazy-val" import * as path from "path" -import { Target } from "../../core" -import { LinuxPackager } from "../../linuxPackager" -import { AppImageOptions } from "../../options/linuxOptions" -import { getAppUpdatePublishConfiguration } from "../../publish/PublishManager" -import { executeAppBuilderAsJson, objectToArgs } from "../../util/appBuilder" -import { getNotLocalizedLicenseFile } from "../../util/license" -import { LinuxTargetHelper } from "../LinuxTargetHelper" -import { createStageDir, StageDir } from "../targetUtil" -import { buildAppImage } from "./appImageUtil" +import { Target } from "../../core.js" +import { LinuxPackager } from "../../linuxPackager.js" +import { AppImageOptions } from "../../options/linuxOptions.js" +import { getAppUpdatePublishConfiguration } from "../../publish/PublishManager.js" +import { executeAppBuilderAsJson, objectToArgs } from "../../util/appBuilder.js" +import { getNotLocalizedLicenseFile } from "../../util/license.js" +import { LinuxTargetHelper } from "../LinuxTargetHelper.js" +import { createStageDir, StageDir } from "../targetUtil.js" +import { buildAppImage } from "./appImageUtil.js" import { BlockMapDataHolder } from "builder-util-runtime" // https://unix.stackexchange.com/questions/375191/append-to-sub-directory-inside-squashfs-file diff --git a/packages/electron-builder-squirrel-windows/src/SquirrelWindowsTarget.ts b/packages/electron-builder-squirrel-windows/src/SquirrelWindowsTarget.ts index ba57da8b9e8..0539efb0fa1 100644 --- a/packages/electron-builder-squirrel-windows/src/SquirrelWindowsTarget.ts +++ b/packages/electron-builder-squirrel-windows/src/SquirrelWindowsTarget.ts @@ -1,12 +1,9 @@ -import { InvalidConfigurationError, log, isEmptyOrSpaces, exists } from "builder-util" -import { execWine } from "app-builder-lib" -import { getBinFromUrl } from "app-builder-lib" -import { sanitizeFileName } from "builder-util/out/filename" -import { Arch, getArchSuffix, SquirrelWindowsOptions, Target, WinPackager } from "app-builder-lib" -import * as path from "path" +import { Arch, execWine, getArchSuffix, getBinFromUrl, SquirrelWindowsOptions, Target, WinPackager } from "app-builder-lib" +import { exists, InvalidConfigurationError, isEmptyOrSpaces, log, sanitizeFileName } from "builder-util" +import { convertVersion, createWindowsInstaller, Options as SquirrelOptions } from "electron-winstaller" import * as fs from "fs" import * as os from "os" -import { Options as SquirrelOptions, createWindowsInstaller, convertVersion } from "electron-winstaller" +import * as path from "path" export default class SquirrelWindowsTarget extends Target { //tslint:disable-next-line:no-object-literal-type-assertion diff --git a/packages/electron-builder/src/cli/create-self-signed-cert.ts b/packages/electron-builder/src/cli/create-self-signed-cert.ts index 97e0c0b8ca3..77ab8e10ee6 100644 --- a/packages/electron-builder/src/cli/create-self-signed-cert.ts +++ b/packages/electron-builder/src/cli/create-self-signed-cert.ts @@ -1,4 +1,4 @@ -import { getWindowsKitsBundle } from "app-builder-lib/out/toolsets/windows" +import { getWindowsKitsBundle } from "app-builder-lib" import { archFromString, exec, log, spawn, TmpDir, unlinkIfExists } from "builder-util" import { sanitizeFileName } from "builder-util/out/filename" import * as chalk from "chalk" diff --git a/test/src/BuildTest.ts b/test/src/BuildTest.ts index 93d9a0ab141..4574d6e7994 100644 --- a/test/src/BuildTest.ts +++ b/test/src/BuildTest.ts @@ -1,5 +1,5 @@ import { checkBuildRequestOptions } from "app-builder-lib" -import { doMergeConfigs } from "app-builder-lib/out/util/config/config.js" +import { doMergeConfigs } from "app-builder-lib" import { Arch, createTargets, DIR_TARGET, Platform } from "electron-builder" import { createYargs } from "electron-builder" import { promises as fs } from "fs" diff --git a/test/src/helpers/launchAppCrossPlatform.ts b/test/src/helpers/launchAppCrossPlatform.ts index 594df6b97cd..f4e0c5c316a 100644 --- a/test/src/helpers/launchAppCrossPlatform.ts +++ b/test/src/helpers/launchAppCrossPlatform.ts @@ -1,4 +1,4 @@ -import { getBinFromUrl } from "app-builder-lib/src/binDownload" +import { getBinFromUrl } from "app-builder-lib" import { isEmptyOrSpaces } from "builder-util" import { ChildProcess, spawn } from "child_process" import { chmodSync } from "fs" diff --git a/test/src/updater/blackboxUpdateTest.ts b/test/src/updater/blackboxUpdateTest.ts index b26882603a8..79520591147 100644 --- a/test/src/updater/blackboxUpdateTest.ts +++ b/test/src/updater/blackboxUpdateTest.ts @@ -1,5 +1,5 @@ import { ToolsetConfig } from "app-builder-lib" -import { PM } from "app-builder-lib/src/node-module-collector" +import { PM } from "app-builder-lib/out/node-module-collector" import { GenericServerOptions, Nullish } from "builder-util-runtime" import { archFromString, doSpawn, getArchSuffix, isEmptyOrSpaces, log, spawn, TmpDir } from "builder-util/out/util" import { execFileSync, execSync } from "child_process" diff --git a/test/src/updater/differentialUpdateTest.ts b/test/src/updater/differentialUpdateTest.ts index cf58de47ea8..db3859e13df 100644 --- a/test/src/updater/differentialUpdateTest.ts +++ b/test/src/updater/differentialUpdateTest.ts @@ -12,7 +12,7 @@ import { NEW_VERSION_NUMBER, OLD_VERSION_NUMBER, testAppCacheDirName, tuneTestUp import { mockForNodeRequire } from "vitest-mock-commonjs" import { ExpectStatic } from "vitest" import { getRanLocalServerPath } from "../helpers/launchAppCrossPlatform.js" -import { ToolsetConfig } from "app-builder-lib/src/configuration.js" +import { ToolsetConfig } from "app-builder-lib/out/configuration.js" async function doBuild( expect: ExpectStatic, From 9269332a9bb167eabc54de507e3fd973daac7e6e Mon Sep 17 00:00:00 2001 From: Mike Maietta Date: Wed, 8 Apr 2026 07:05:06 -0700 Subject: [PATCH 42/61] tmp save --- packages/app-builder-lib/src/index.ts | 19 +++++++- .../app-builder-lib/src/targets/FpmTarget.ts | 4 +- .../src/targets/appimage/AppImageTarget.ts | 3 +- .../src/targets/appimage/appLauncher.ts | 2 +- .../app-builder-lib/src/targets/archive.ts | 6 +-- .../app-builder-lib/src/toolsets/windows.ts | 8 ++-- packages/app-builder-lib/src/winPackager.ts | 46 +++++++++---------- 7 files changed, 52 insertions(+), 36 deletions(-) diff --git a/packages/app-builder-lib/src/index.ts b/packages/app-builder-lib/src/index.ts index 0c862f2164e..c8d44540c05 100644 --- a/packages/app-builder-lib/src/index.ts +++ b/packages/app-builder-lib/src/index.ts @@ -68,19 +68,34 @@ export { CustomMacSign, CustomMacSignOptions, MacPackager } from "./macPackager. export { PlatformPackager } from "./platformPackager.js" export { PublishManager } from "./publish/PublishManager.js" export { WinPackager } from "./winPackager.js" -export { readAsar } from "./asar/asar.js" +export { readAsar, readAsarJson, AsarFilesystem } from "./asar/asar.js" export { installOrRebuild } from "./util/yarn.js" export { PACKAGE_VERSION } from "./version.js" export { createLazyProductionDeps } from "./util/packageDependencies.js" export { determinePackageManagerEnv } from "./node-module-collector/index.js" -export { computeDefaultAppDirectory } from "./util/config/config.js" +export { computeDefaultAppDirectory, validateConfiguration } from "./util/config/config.js" export { getConfig } from "./util/config/config.js" export { getElectronVersion } from "./electron/electronVersion.js" export { execWine } from "./wine.js" export { getBinFromUrl } from "./binDownload.js" +export { hoist, HoisterTree, HoisterResult, HoisterDependencyKind } from "./node-module-collector/hoist.js" export { PM } from "./node-module-collector/packageManager.js" export { doMergeConfigs } from "./util/config/config.js" export { getWindowsKitsBundle } from "./toolsets/windows.js" +export { findIdentity, isSignAllowed } from "./codeSign/macCodeSign.js" +export { createBlockmap } from "./targets/differentialUpdateInfoBuilder.js" +export { getLicenseFiles, getLicenseAssets } from "./util/license.js" +export { downloadArtifact } from "./binDownload.js" +export { loadEnv } from "./util/config/load.js" +export { nodeGypRebuild } from "./util/yarn.js" +export { Publish } from "./core.js" +export { computeSafeArtifactNameIfNeeded } from "./platformPackager.js" +export { createPublisher } from "./publish/PublishManager.js" +export { Identity } from "./codeSign/macCodeSign.js" +export { DoPackOptions} from "./platformPackager.js" +export { parsePlistFile, PlistObject } from "./util/plist.js" +export { expandMacro } from "./util/macroExpander.js" +export { getRepositoryInfo } from "./util/repositoryInfo.js" const expectedOptions = new Set(["publish", "targets", "mac", "win", "linux", "projectDir", "platformPackagerFactory", "config", "effectiveOptionComputed", "prepackaged"]) diff --git a/packages/app-builder-lib/src/targets/FpmTarget.ts b/packages/app-builder-lib/src/targets/FpmTarget.ts index 71ca0b90b5a..2621047e659 100644 --- a/packages/app-builder-lib/src/targets/FpmTarget.ts +++ b/packages/app-builder-lib/src/targets/FpmTarget.ts @@ -32,7 +32,7 @@ interface ScriptFiles { } export default class FpmTarget extends Target { - readonly options: LinuxTargetSpecificOptions = { ...this.packager.platformSpecificBuildOptions, ...(this.packager.config as any)[this.name] } + readonly options: LinuxTargetSpecificOptions private readonly scriptFiles: Promise @@ -43,7 +43,7 @@ export default class FpmTarget extends Target { readonly outDir: string ) { super(name, false) - + this.options = { ...this.packager.platformSpecificBuildOptions, ...(this.packager.config as any)[this.name] } this.scriptFiles = this.createScripts() } diff --git a/packages/app-builder-lib/src/targets/appimage/AppImageTarget.ts b/packages/app-builder-lib/src/targets/appimage/AppImageTarget.ts index 6e4f5b95329..c1d89b26c01 100644 --- a/packages/app-builder-lib/src/targets/appimage/AppImageTarget.ts +++ b/packages/app-builder-lib/src/targets/appimage/AppImageTarget.ts @@ -19,7 +19,7 @@ import { BlockMapDataHolder } from "builder-util-runtime" export const APP_RUN_ENTRYPOINT = "AppRun" export default class AppImageTarget extends Target { - readonly options: AppImageOptions = { ...this.packager.platformSpecificBuildOptions, ...(this.packager.config as any)[this.name] } + readonly options: AppImageOptions private readonly desktopEntry: Lazy @@ -30,6 +30,7 @@ export default class AppImageTarget extends Target { readonly outDir: string ) { super("appImage") + this.options = { ...this.packager.platformSpecificBuildOptions, ...(this.packager.config as any)[this.name] } this.desktopEntry = new Lazy(() => { const appimageTool = packager.config.toolsets?.appimage diff --git a/packages/app-builder-lib/src/targets/appimage/appLauncher.ts b/packages/app-builder-lib/src/targets/appimage/appLauncher.ts index 9b900c2b826..e506de3c953 100644 --- a/packages/app-builder-lib/src/targets/appimage/appLauncher.ts +++ b/packages/app-builder-lib/src/targets/appimage/appLauncher.ts @@ -1,7 +1,7 @@ import * as path from "path" import * as fs from "fs-extra" import { copyOrLinkFile, log } from "builder-util" -import { AppImageBuilderOptions } from "./appImageUtil" +import { AppImageBuilderOptions } from "./appImageUtil.js" const ICON_DIR_RELATIVE_PATH = "usr/share/icons/hicolor" const MIME_TYPE_DIR_RELATIVE_PATH = "usr/share/mime/packages" diff --git a/packages/app-builder-lib/src/targets/archive.ts b/packages/app-builder-lib/src/targets/archive.ts index 88782e9cebb..8d55d737128 100644 --- a/packages/app-builder-lib/src/targets/archive.ts +++ b/packages/app-builder-lib/src/targets/archive.ts @@ -3,9 +3,9 @@ import { move } from "fs-extra" import * as path from "path" import { create } from "tar" import { TmpDir } from "temp-file" -import { CompressionLevel } from "../core" -import { getLinuxToolsPath } from "../toolsets/linux" -import { TarOptionsWithAliasesAsync } from "tar/dist/commonjs/options" +import { CompressionLevel } from "../core.js" +import { getLinuxToolsPath } from "../toolsets/linux.js" +import { TarOptionsWithAliasesAsync } from "tar" /** @internal */ export async function tar(compression: CompressionLevel | any, format: string, outFile: string, dirToArchive: string, isMacApp: boolean, tempDirManager: TmpDir): Promise { diff --git a/packages/app-builder-lib/src/toolsets/windows.ts b/packages/app-builder-lib/src/toolsets/windows.ts index f9aa2f0d04b..327ad5f12c9 100644 --- a/packages/app-builder-lib/src/toolsets/windows.ts +++ b/packages/app-builder-lib/src/toolsets/windows.ts @@ -2,10 +2,10 @@ import { Arch, isEmptyOrSpaces, log } from "builder-util" import { Nullish } from "builder-util-runtime" import * as os from "os" import * as path from "path" -import { getBin, getBinFromUrl } from "../binDownload" -import { ToolsetConfig } from "../configuration" -import { ToolInfo, computeToolEnv } from "../util/bundledTool" -import { isUseSystemSigncode } from "../util/flags" +import { getBin, getBinFromUrl } from "../binDownload.js" +import { ToolsetConfig } from "../configuration.js" +import { ToolInfo, computeToolEnv } from "../util/bundledTool.js" +import { isUseSystemSigncode } from "../util/flags.js" export const wincodesignChecksums = { "0.0.0": { diff --git a/packages/app-builder-lib/src/winPackager.ts b/packages/app-builder-lib/src/winPackager.ts index 61fe2a410b3..97345c9d1ac 100644 --- a/packages/app-builder-lib/src/winPackager.ts +++ b/packages/app-builder-lib/src/winPackager.ts @@ -5,29 +5,29 @@ import { createHash } from "crypto" import { readdir } from "fs/promises" import { Lazy } from "lazy-val" import * as path from "path" -import { readAsarHeader } from "./asar/asar" -import { SignManager } from "./codeSign/signManager" -import { signWindows, WindowsSignOptions } from "./codeSign/windowsCodeSign" -import { WindowsSignAzureManager } from "./codeSign/windowsSignAzureManager" -import { FileCodeSigningInfo, WindowsSignToolManager } from "./codeSign/windowsSignToolManager" -import { AfterPackContext } from "./configuration" -import { DIR_TARGET, Platform, Target } from "./core" -import { RequestedExecutionLevel, WindowsConfiguration } from "./options/winOptions" -import { Packager } from "./packager" -import { chooseNotNull, PlatformPackager } from "./platformPackager" -import AppXTarget from "./targets/AppxTarget" -import MsiTarget from "./targets/MsiTarget" -import MsiWrappedTarget from "./targets/MsiWrappedTarget" -import { NsisTarget } from "./targets/nsis/NsisTarget" -import { AppPackageHelper, CopyElevateHelper } from "./targets/nsis/nsisUtil" -import { WebInstallerTarget } from "./targets/nsis/WebInstallerTarget" -import { createCommonTarget } from "./targets/targetFactory" -import { getRceditBundle } from "./toolsets/windows" -import { BuildCacheManager, digest } from "./util/cacheManager" -import { isBuildCacheEnabled } from "./util/flags" -import { time } from "./util/timer" -import { getWindowsVm, VmManager } from "./vm/vm" -import { execWine } from "./wine" +import { readAsarHeader } from "./asar/asar.js" +import { SignManager } from "./codeSign/signManager.js" +import { signWindows, WindowsSignOptions } from "./codeSign/windowsCodeSign.js" +import { WindowsSignAzureManager } from "./codeSign/windowsSignAzureManager.js" +import { FileCodeSigningInfo, WindowsSignToolManager } from "./codeSign/windowsSignToolManager.js" +import { AfterPackContext } from "./configuration.js" +import { DIR_TARGET, Platform, Target } from "./core.js" +import { RequestedExecutionLevel, WindowsConfiguration } from "./options/winOptions.js" +import { Packager } from "./packager.js" +import { chooseNotNull, PlatformPackager } from "./platformPackager.js" +import AppXTarget from "./targets/AppxTarget.js" +import MsiTarget from "./targets/MsiTarget.js" +import MsiWrappedTarget from "./targets/MsiWrappedTarget.js" +import { NsisTarget } from "./targets/nsis/NsisTarget.js" +import { AppPackageHelper, CopyElevateHelper } from "./targets/nsis/nsisUtil.js" +import { WebInstallerTarget } from "./targets/nsis/WebInstallerTarget.js" +import { createCommonTarget } from "./targets/targetFactory.js" +import { getRceditBundle } from "./toolsets/windows.js" +import { BuildCacheManager, digest } from "./util/cacheManager.js" +import { isBuildCacheEnabled } from "./util/flags.js" +import { time } from "./util/timer.js" +import { getWindowsVm, VmManager } from "./vm/vm.js" +import { execWine } from "./wine.js" export class WinPackager extends PlatformPackager { _iconPath = new Lazy(() => this.getOrConvertIcon("ico")) From a9f2773d338c004953f50103ac6180467662c119 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Wed, 8 Apr 2026 07:08:10 -0700 Subject: [PATCH 43/61] chore(deps): update dependency tar to v7.5.11 [security] (#9637) --- pnpm-lock.yaml | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index b5cebc08d9b..827510b3829 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -199,7 +199,7 @@ importers: version: 7.7.3 tar: specifier: ^7.5.7 - version: 7.5.10 + version: 7.5.11 temp-file: specifier: ^3.4.0 version: 3.4.0 @@ -2571,6 +2571,7 @@ packages: '@xmldom/xmldom@0.8.10': resolution: {integrity: sha512-2WALfTl4xo2SkGCYRt6rDTFfk9R1czmBvUQy12gK2KuRKIpWEhcbbzy8EZXtz/jkRqHX8bFEc6FC1HjX4TUWYw==} engines: {node: '>=10.0.0'} + deprecated: this version has critical issues, please update to the latest version abbrev@3.0.1: resolution: {integrity: sha512-AO2ac6pjRB3SJmGJo+v5/aK6Omggp6fsLrs6wN9bd35ulu4cCwaAU9+7ZhXjeqHVkaHThLuzH0nZr0YpCDhygg==} @@ -4706,8 +4707,8 @@ packages: resolution: {integrity: sha512-MeQTA1r0litLUf0Rp/iisCaL8761lKAZHaimlbGK4j0HysC4PLfqygQj9srcs0m2RdtDYnF8UuYyKpbjHYp7Jw==} engines: {node: ^14.18.0 || >=16.0.0} - tar@7.5.10: - resolution: {integrity: sha512-8mOPs1//5q/rlkNSPcCegA6hiHJYDmSLEI8aMH/CdSQJNWztHC9WHNam5zdQlfpTwB9Xp7IBEsHfV5LKMJGVAw==} + tar@7.5.11: + resolution: {integrity: sha512-ChjMH33/KetonMTAtpYdgUFr0tbz69Fp2v7zWxQfYZX4g5ZN2nOBXm1R2xyA+lMIKrLKIoKAwFj93jE/avX9cQ==} engines: {node: '>=18'} temp-dir@3.0.0: @@ -6500,7 +6501,7 @@ snapshots: ora: 5.4.1 read-binary-file-arch: 1.0.6 semver: 7.7.3 - tar: 7.5.10 + tar: 7.5.11 yargs: 17.7.2 transitivePeerDependencies: - supports-color @@ -7661,7 +7662,7 @@ snapshots: minipass-pipeline: 1.2.4 p-map: 7.0.3 ssri: 12.0.0 - tar: 7.5.10 + tar: 7.5.11 unique-filename: 4.0.0 cacheable-lookup@5.0.4: {} @@ -9161,7 +9162,7 @@ snapshots: nopt: 8.1.0 proc-log: 5.0.0 semver: 7.7.3 - tar: 7.5.10 + tar: 7.5.11 tinyglobby: 0.2.14 which: 5.0.0 transitivePeerDependencies: @@ -9771,7 +9772,7 @@ snapshots: dependencies: '@pkgr/core': 0.2.9 - tar@7.5.10: + tar@7.5.11: dependencies: '@isaacs/fs-minipass': 4.0.1 chownr: 3.0.0 From d4cb88961e904a55a81c971c2cc9aee45abcc156 Mon Sep 17 00:00:00 2001 From: Mike Maietta Date: Wed, 8 Apr 2026 07:12:09 -0700 Subject: [PATCH 44/61] it compiles --- test/src/helpers/CheckingPackager.ts | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/test/src/helpers/CheckingPackager.ts b/test/src/helpers/CheckingPackager.ts index 303ac224f37..9478a9318e1 100644 --- a/test/src/helpers/CheckingPackager.ts +++ b/test/src/helpers/CheckingPackager.ts @@ -14,10 +14,10 @@ export class CheckingWinPackager extends WinPackager { super(info) } - //noinspection JSUnusedLocalSymbols async pack(outDir: string, arch: Arch, targets: Array, taskManager: AsyncTaskManager): Promise { + const pkgName = "electron-builder-squirrel-windows" // skip pack - const helperClass = (await import("electron-builder-squirrel-windows")).default + const helperClass = (await import(pkgName)).default const newClass = new (helperClass as any)(this, outDir) const setupFile = this.expandArtifactNamePattern(newClass.options, "exe", arch, "${productName} Setup ${version}.${ext}") const installerOutDir = path.join(outDir, `squirrel-windows${getArchSuffix(arch)}`) @@ -25,7 +25,6 @@ export class CheckingWinPackager extends WinPackager { await this.signIf(this.computeAppOutDir(outDir, arch)) } - //noinspection JSUnusedLocalSymbols packageInDistributableFormat(appOutDir: string, arch: Arch, targets: Array, taskManager: AsyncTaskManager): void { // skip } From 3e3969b9c9e1d1d1df46ac05ccf3e502150d92d5 Mon Sep 17 00:00:00 2001 From: Mike Maietta Date: Wed, 8 Apr 2026 07:27:44 -0700 Subject: [PATCH 45/61] fix runner --- packages/app-builder-lib/src/index.ts | 1 + vite.config.ts | 70 --------------------------- 2 files changed, 1 insertion(+), 70 deletions(-) delete mode 100644 vite.config.ts diff --git a/packages/app-builder-lib/src/index.ts b/packages/app-builder-lib/src/index.ts index c8d44540c05..746b3605957 100644 --- a/packages/app-builder-lib/src/index.ts +++ b/packages/app-builder-lib/src/index.ts @@ -96,6 +96,7 @@ export { DoPackOptions} from "./platformPackager.js" export { parsePlistFile, PlistObject } from "./util/plist.js" export { expandMacro } from "./util/macroExpander.js" export { getRepositoryInfo } from "./util/repositoryInfo.js" +export { createKeychain, removeKeychain } from "./codeSign/macCodeSign.js" const expectedOptions = new Set(["publish", "targets", "mac", "win", "linux", "projectDir", "platformPackagerFactory", "config", "effectiveOptionComputed", "prepackaged"]) diff --git a/vite.config.ts b/vite.config.ts deleted file mode 100644 index 6d057e8f2cc..00000000000 --- a/vite.config.ts +++ /dev/null @@ -1,70 +0,0 @@ -import { defineConfig } from "vitest/config" -import fs from "fs" -import isCI from "is-ci" - -export default () => { - const testRegex = process.env.TEST_FILES?.split(",") ?? ["*Test", "*test"] - const includeRegex = `(${testRegex.join("|")})` - console.log("TEST_FILES pattern", includeRegex) - - return defineConfig({ - server: { - https: { - cert: fs.readFileSync("./.vitest-cert/cert.pem"), - key: fs.readFileSync("./.vitest-cert/key.pem"), - }, - }, - test: { - // if using `toMatchSnapshot`, it MUST be passed in through the test context - // e.g. test("name", ({ expect }) => { ... }) - globals: true, - allowOnly: !isCI, - expandSnapshotDiff: process.env.SNAPSHOT_DIFF === "true", - - setupFiles: "./test/vitest-setup.ts", - include: [`test/src/**/${includeRegex}.ts`], - update: process.env.UPDATE_SNAPSHOT === "true", - - name: "node", - environment: "node", - printConsoleTrace: true, - - server: { - deps: { - inline: ["electron"], - }, - }, - - deps: { - optimizer: { - web: { - enabled: true, - }, - }, - }, - - slowTestThreshold: 60 * 1000, - // disk operations can be slow. We're generous with the timeout here to account for less-performant (local?) machines. - // GH runners are fast, but we're still running tests concurrently, so collectively, they take less time, but individually, they can take longer due to parallelism. - testTimeout: 15 * 60 * 1000, - sequence: { - concurrent: process.env.TEST_SEQUENTIAL !== "true", - }, - - coverage: { - reporter: ["lcov", "text"], - }, - reporters: ["default", "html"], - outputFile: "coverage/sonar-report.xml", - snapshotFormat: { - printBasicPrototype: false, - }, - resolveSnapshotPath: (testPath, snapshotExtension) => { - return testPath - .replace(/\.[tj]s$/, `.js${snapshotExtension}`) - .replace("/src/", "/snapshots/") - .replace("\\src\\", "\\snapshots\\") - }, - }, - }) -} From f71b101be964bdcc2b84fcf281441372105def00 Mon Sep 17 00:00:00 2001 From: Lucas Eduardo Wendt Date: Wed, 8 Apr 2026 11:56:12 -0300 Subject: [PATCH 46/61] fix(appimage): use /usr/bin/env in hashbang so it works in non FHS distros (#9664) --- .changeset/real-turkeys-sin.md | 5 +++++ .../app-builder-lib/src/targets/appimage/appImageUtil.ts | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) create mode 100644 .changeset/real-turkeys-sin.md diff --git a/.changeset/real-turkeys-sin.md b/.changeset/real-turkeys-sin.md new file mode 100644 index 00000000000..50ebf0f95c3 --- /dev/null +++ b/.changeset/real-turkeys-sin.md @@ -0,0 +1,5 @@ +--- +"app-builder-lib": patch +--- + +fix(appimage): use /usr/bin/env in hashbang so it works in non FHS distros diff --git a/packages/app-builder-lib/src/targets/appimage/appImageUtil.ts b/packages/app-builder-lib/src/targets/appimage/appImageUtil.ts index 249363245c1..dfb1e2fe68b 100644 --- a/packages/app-builder-lib/src/targets/appimage/appImageUtil.ts +++ b/packages/app-builder-lib/src/targets/appimage/appImageUtil.ts @@ -201,7 +201,7 @@ function hasEula(config: AppRunScript): config is AppRunScriptWithEula { function generateAppRunScript(config: AppRunScript): string { const eulaEnabled = hasEula(config) - return `#!/bin/bash + return `#!/usr/bin/env bash set -e THIS="$0" From a69928f28cd33a487a3158bd5c3ad040906d3c30 Mon Sep 17 00:00:00 2001 From: Davide Baraldo Date: Wed, 8 Apr 2026 16:57:05 +0200 Subject: [PATCH 47/61] fix: `parseNameVersion` correctly splits scoped packages with `link:` paths (#9653) --- .changeset/cyan-beans-press.md | 5 ++ .../nodeModulesCollector.ts | 19 ++++-- test/src/parseNameVersionTest.ts | 60 +++++++++++++++++++ 3 files changed, 78 insertions(+), 6 deletions(-) create mode 100644 .changeset/cyan-beans-press.md create mode 100644 test/src/parseNameVersionTest.ts diff --git a/.changeset/cyan-beans-press.md b/.changeset/cyan-beans-press.md new file mode 100644 index 00000000000..1af90280bb4 --- /dev/null +++ b/.changeset/cyan-beans-press.md @@ -0,0 +1,5 @@ +--- +"app-builder-lib": patch +--- + +fix: parseNameVersion correctly splits scoped packages with link: paths diff --git a/packages/app-builder-lib/src/node-module-collector/nodeModulesCollector.ts b/packages/app-builder-lib/src/node-module-collector/nodeModulesCollector.ts index 043c8a673a9..9dc7920e625 100644 --- a/packages/app-builder-lib/src/node-module-collector/nodeModulesCollector.ts +++ b/packages/app-builder-lib/src/node-module-collector/nodeModulesCollector.ts @@ -219,14 +219,21 @@ export abstract class NodeModulesCollector { + test("regular package", () => { + expect(parseNameVersion("lodash@4.17.21")).toEqual({ name: "lodash", version: "4.17.21" }) + }) + + test("scoped package", () => { + expect(parseNameVersion("@scope/pkg@1.2.3")).toEqual({ name: "@scope/pkg", version: "1.2.3" }) + }) + + test("scoped package with pnpm link: path containing @", () => { + expect(parseNameVersion("@myorg/addon-a@link:../packages/@myorg/addon-a")).toEqual({ + name: "@myorg/addon-a", + version: "link:../packages/@myorg/addon-a", + }) + }) + + test("scoped package with link: path without @", () => { + expect(parseNameVersion("@myorg/addon-a@link:../packages/addon-a")).toEqual({ + name: "@myorg/addon-a", + version: "link:../packages/addon-a", + }) + }) + + test("regular package with link: path containing @", () => { + expect(parseNameVersion("addon@link:../packages/@myorg/addon")).toEqual({ + name: "addon", + version: "link:../packages/@myorg/addon", + }) + }) + + test("package without version", () => { + expect(parseNameVersion("lodash")).toEqual({ name: "lodash", version: "unknown" }) + }) + + test("scoped package without version", () => { + expect(parseNameVersion("@scope/pkg")).toEqual({ name: "@scope/pkg", version: "unknown" }) + }) + + test("malformed scoped package without slash", () => { + expect(parseNameVersion("@malformed")).toEqual({ name: "@malformed", version: "unknown" }) + }) + + test("empty string", () => { + expect(parseNameVersion("")).toEqual({ name: "", version: "unknown" }) + }) + + test("scoped package with workspace: protocol", () => { + expect(parseNameVersion("@myorg/core@workspace:*")).toEqual({ name: "@myorg/core", version: "workspace:*" }) + }) +}) From b072e92bd31b84df506deaf6156cc6109c7ef0f5 Mon Sep 17 00:00:00 2001 From: Tejas Chauhan <88367725+Sandblaze05@users.noreply.github.com> Date: Wed, 8 Apr 2026 20:57:24 +0530 Subject: [PATCH 48/61] fix(normalizePackageData): check `bd` variable instead of string "bd" (#9669) --- .changeset/four-birds-tan.md | 5 +++++ packages/app-builder-lib/src/util/normalizePackageData.ts | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) create mode 100644 .changeset/four-birds-tan.md diff --git a/.changeset/four-birds-tan.md b/.changeset/four-birds-tan.md new file mode 100644 index 00000000000..b5e76cfc194 --- /dev/null +++ b/.changeset/four-birds-tan.md @@ -0,0 +1,5 @@ +--- +"app-builder-lib": patch +--- + +fix(normalizePackageData): check bd variable instead of string "bd" diff --git a/packages/app-builder-lib/src/util/normalizePackageData.ts b/packages/app-builder-lib/src/util/normalizePackageData.ts index ecb9db8cc67..43e56ab711f 100644 --- a/packages/app-builder-lib/src/util/normalizePackageData.ts +++ b/packages/app-builder-lib/src/util/normalizePackageData.ts @@ -201,7 +201,7 @@ function fixBundleDependenciesField(data: any) { if (!data.dependencies) { data.dependencies = {} } - if (!("bd" in data.dependencies)) { + if (!Object.prototype.hasOwnProperty.call(data.dependencies, bd)) { data.dependencies[bd] = "*" } return true From 8a2e4e97fa41b613b0465f7f4008af74a69b2b9e Mon Sep 17 00:00:00 2001 From: Mike Maietta Date: Wed, 8 Apr 2026 12:15:48 -0700 Subject: [PATCH 49/61] tmp save. migrating fs-extra to namespace import --- package.json | 2 +- .../app-builder-lib/helpers/dynamic-import.js | 12 ++--- packages/app-builder-lib/package.json | 2 +- packages/app-builder-lib/src/asar/asar.ts | 26 +++++----- packages/app-builder-lib/src/asar/asarUtil.ts | 10 ++-- .../app-builder-lib/src/codeSign/codesign.ts | 4 +- .../src/codeSign/macCodeSign.ts | 10 ++-- .../src/codeSign/windowsSignToolManager.ts | 4 +- .../src/electron/ElectronFramework.ts | 16 +++--- .../src/electron/electronVersion.ts | 8 +-- .../src/frameworks/LibUiFramework.ts | 4 +- packages/app-builder-lib/src/index.ts | 2 +- .../nodeModulesCollector.ts | 4 +- packages/app-builder-lib/src/packager.ts | 8 +-- .../src/publish/updateInfoBuilder.ts | 8 +-- .../src/targets/AppImageTarget.ts | 4 +- .../app-builder-lib/src/targets/AppxTarget.ts | 16 +++--- .../src/targets/FlatpakTarget.ts | 6 +-- .../app-builder-lib/src/targets/FpmTarget.ts | 12 ++--- .../src/targets/LinuxTargetHelper.ts | 6 +-- .../src/targets/appimage/AppImageTarget.ts | 4 +- .../app-builder-lib/src/targets/archive.ts | 4 +- .../src/targets/nsis/NsisTarget.ts | 10 ++-- .../src/targets/nsis/nsisLang.ts | 6 +-- packages/app-builder-lib/src/targets/snap.ts | 6 +-- .../app-builder-lib/src/util/AppFileWalker.ts | 14 ++--- .../src/util/NodeModuleCopyHelper.ts | 8 +-- .../app-builder-lib/src/util/appFileCopier.ts | 4 +- .../app-builder-lib/src/util/cacheManager.ts | 6 +-- .../app-builder-lib/src/util/config/config.ts | 8 +-- .../app-builder-lib/src/util/config/load.ts | 2 +- .../app-builder-lib/src/util/macosVersion.ts | 4 +- .../src/util/packageMetadata.ts | 8 +-- .../app-builder-lib/src/util/pathManager.ts | 2 +- packages/app-builder-lib/src/util/plist.ts | 6 +-- .../src/util/repositoryInfo.ts | 4 +- packages/app-builder-lib/src/util/yarn.ts | 4 +- packages/builder-util/package.json | 2 +- packages/builder-util/src/7za.ts | 6 +-- packages/builder-util/src/DebugLogger.ts | 4 +- packages/builder-util/src/fs.ts | 10 ++-- packages/dmg-builder/package.json | 2 +- packages/dmg-builder/src/dmgLicense.ts | 4 +- packages/dmg-builder/src/dmgUtil.ts | 4 +- packages/dmg-builder/src/licenseButtons.ts | 4 +- packages/electron-builder/package.json | 2 +- packages/electron-builder/src/cli/cli.ts | 4 +- .../src/cli/install-app-deps.ts | 4 +- packages/electron-publish/package.json | 2 +- .../src/bitbucketPublisher.ts | 4 +- .../electron-publish/src/httpPublisher.ts | 4 +- packages/electron-publish/src/publisher.ts | 6 +-- packages/electron-updater/package.json | 2 +- .../electron-updater/src/AppImageUpdater.ts | 4 +- packages/electron-updater/src/AppUpdater.ts | 24 ++++----- .../src/DownloadedUpdateHelper.ts | 16 +++--- packages/electron-updater/src/MacUpdater.ts | 8 +-- packages/electron-updater/src/NsisUpdater.ts | 4 +- .../DifferentialDownloader.ts | 8 +-- ...hEmbeddedBlockMapDifferentialDownloader.ts | 14 ++--- packages/electron-updater/src/main.ts | 6 +-- pnpm-lock.yaml | 44 ++++++++-------- scripts/renderer/src/typedoc2html.ts | 10 ++-- test/package.json | 2 +- test/src/BuildTest.ts | 10 ++-- test/src/HoistedNodeModuleTest.ts | 34 ++++++------ test/src/PublishManagerTest.ts | 4 +- test/src/extraMetadataTest.ts | 4 +- test/src/filesTest.ts | 52 +++++++++---------- test/src/globTest.ts | 16 +++--- test/src/helpers/packTester.ts | 12 ++--- test/src/helpers/updaterTestUtil.ts | 6 +-- test/src/helpers/winHelper.ts | 4 +- test/src/helpers/wine.ts | 4 +- test/src/ignoreTest.ts | 34 ++++++------ test/src/linux/linuxPackagerTest.ts | 4 +- test/src/mac/macArchiveTest.ts | 4 +- test/src/packageManagerTest.ts | 32 ++++++------ test/src/updater/blackboxUpdateTest.ts | 16 +++--- test/src/updater/differentialUpdateTest.ts | 14 ++--- test/src/updater/nsisUpdaterTest.ts | 6 +-- test/src/windows/appxTest.ts | 8 +-- test/src/windows/oneClickInstallerTest.ts | 14 ++--- test/src/windows/winCodeSignTest.ts | 4 +- 84 files changed, 375 insertions(+), 375 deletions(-) diff --git a/package.json b/package.json index 3d76dc8a58b..756cde02c01 100644 --- a/package.json +++ b/package.json @@ -52,7 +52,7 @@ "eslint": "9.39.2", "eslint-config-prettier": "^9.1.0", "eslint-plugin-prettier": "^5.2.1", - "fs-extra": "10.1.0", + "fs-extra": "^11.3.4", "is-ci": "^4.1.0", "prettier": "3.7.4", "ts-node": "^10.9.2", diff --git a/packages/app-builder-lib/helpers/dynamic-import.js b/packages/app-builder-lib/helpers/dynamic-import.js index 1089411ced3..a3a42b61495 100644 --- a/packages/app-builder-lib/helpers/dynamic-import.js +++ b/packages/app-builder-lib/helpers/dynamic-import.js @@ -1,20 +1,20 @@ -const url = require("url") -const fs = require("fs") +import { pathToFileURL } from "url" +import { existsSync } from "fs" -exports.dynamicImport = async function dynamicImport(path) { +export async function dynamicImport(path) { try { - return await import(fs.existsSync(path) ? url.pathToFileURL(path).href : path) + return await import(existsSync(path) ? pathToFileURL(path).href : path) } catch (error) { return Promise.reject(error) } } -exports.dynamicImportMaybe = async function dynamicImportMaybe(path) { +export async function dynamicImportMaybe(path) { try { return require(path) } catch (e1) { try { - return await exports.dynamicImport(path) + return await dynamicImport(path) } catch (e2) { e1.message = "\n1. " + e1.message + "\n2. " + e2.message throw e1 diff --git a/packages/app-builder-lib/package.json b/packages/app-builder-lib/package.json index 1936f7e0c39..bab938947a1 100644 --- a/packages/app-builder-lib/package.json +++ b/packages/app-builder-lib/package.json @@ -70,7 +70,7 @@ "dotenv-expand": "^11.0.6", "ejs": "^3.1.8", "electron-publish": "workspace:*", - "fs-extra": "^10.1.0", + "fs-extra": "^11.3.4", "hosted-git-info": "^4.1.0", "isbinaryfile": "^5.0.0", "jiti": "^2.4.2", diff --git a/packages/app-builder-lib/src/asar/asar.ts b/packages/app-builder-lib/src/asar/asar.ts index b86d3cdd41a..357ee5b5d6e 100644 --- a/packages/app-builder-lib/src/asar/asar.ts +++ b/packages/app-builder-lib/src/asar/asar.ts @@ -1,5 +1,5 @@ -import { createFromBuffer } from "chromium-pickle-js" -import { close, open, read, readFile, Stats } from "fs-extra" +import * as chromiumPickleJs from "chromium-pickle-js" +import * as fsExtra from "fs-extra" import * as path from "path" export interface ReadAsarHeader { @@ -88,7 +88,7 @@ export class AsarFilesystem { return result } - addFileNode(file: string, dirNode: Node, size: number, unpacked: boolean, stat: Stats, integrity?: NodeIntegrity): Node { + addFileNode(file: string, dirNode: Node, size: number, unpacked: boolean, stat: fsExtra.Stats, integrity?: NodeIntegrity): Node { if (size > 4294967295) { throw new Error(`${file}: file size cannot be larger than 4.2GB`) } @@ -147,26 +147,26 @@ export class AsarFilesystem { } export async function readAsarHeader(archive: string): Promise { - const fd = await open(archive, "r") + const fd = await fsExtra.open(archive, "r") let size: number let headerBuf try { const sizeBuf = Buffer.allocUnsafe(8) - if ((await read(fd, sizeBuf, 0, 8, null as any)).bytesRead !== 8) { + if ((await fsExtra.read(fd, sizeBuf, 0, 8, null as any)).bytesRead !== 8) { throw new Error("Unable to read header size") } - const sizePickle = createFromBuffer(sizeBuf) + const sizePickle = chromiumPickleJs.createFromBuffer(sizeBuf) size = sizePickle.createIterator().readUInt32() headerBuf = Buffer.allocUnsafe(size) - if ((await read(fd, headerBuf, 0, size, null as any)).bytesRead !== size) { + if ((await fsExtra.read(fd, headerBuf, 0, size, null as any)).bytesRead !== size) { throw new Error("Unable to read header") } } finally { - await close(fd) + await fsExtra.close(fd) } - const headerPickle = createFromBuffer(headerBuf) + const headerPickle = chromiumPickleJs.createFromBuffer(headerBuf) return { header: headerPickle.createIterator().readString(), size } } @@ -188,15 +188,15 @@ async function readFileFromAsar(filesystem: AsarFilesystem, filename: string, in } if (info.unpacked) { - return await readFile(path.join(`${filesystem.src}.unpacked`, filename)) + return await fsExtra.readFile(path.join(`${filesystem.src}.unpacked`, filename)) } - const fd = await open(filesystem.src, "r") + const fd = await fsExtra.open(filesystem.src, "r") try { const offset = 8 + filesystem.headerSize + parseInt(info.offset!, 10) - await read(fd, buffer, 0, size, offset) + await fsExtra.read(fd, buffer, 0, size, offset) } finally { - await close(fd) + await fsExtra.close(fd) } return buffer } diff --git a/packages/app-builder-lib/src/asar/asarUtil.ts b/packages/app-builder-lib/src/asar/asarUtil.ts index c1c4feffe6d..ac3615d48db 100644 --- a/packages/app-builder-lib/src/asar/asarUtil.ts +++ b/packages/app-builder-lib/src/asar/asarUtil.ts @@ -1,7 +1,7 @@ import { AsarDirectory, AsarStreamType, createPackageFromStreams } from "@electron/asar" import { exists, Filter, FilterStats, isEmptyOrSpaces, log } from "builder-util" -import * as fs from "fs-extra" -import { readlink } from "fs-extra" +import * as fs from "fs/promises" +import * as fsExtra from "fs-extra" import * as os from "os" import * as path from "path" import { Readable } from "stream" @@ -196,7 +196,7 @@ export class AsarPackager { private async processFileOrSymlink(options: { file: string destination: string - stat: fs.Stats + stat: fsExtra.Stats fileSet: ResolvedFileSet transformedData: string | Buffer | undefined isUnpacked: (dir: string, file?: string, stat?: FilterStats) => boolean @@ -232,7 +232,7 @@ export class AsarPackager { const baseConfig = { path: destination, - streamGenerator: () => fs.createReadStream(file), + streamGenerator: () => fsExtra.createReadStream(file), unpacked, stat, } @@ -243,7 +243,7 @@ export class AsarPackager { } // Handle symlinks - make relative to source location - let link = await readlink(file) + let link = await fsExtra.readlink(file) if (path.isAbsolute(link)) { link = path.relative(path.dirname(file), link) } diff --git a/packages/app-builder-lib/src/codeSign/codesign.ts b/packages/app-builder-lib/src/codeSign/codesign.ts index cce2b4d5edf..dd0844d838b 100644 --- a/packages/app-builder-lib/src/codeSign/codesign.ts +++ b/packages/app-builder-lib/src/codeSign/codesign.ts @@ -1,5 +1,5 @@ import { InvalidConfigurationError, statOrNull } from "builder-util" -import { outputFile } from "fs-extra" +import * as fsExtra from "fs-extra" import { homedir } from "os" import * as path from "path" import { TmpDir } from "temp-file" @@ -24,7 +24,7 @@ export async function importCertificate(cscLink: string, tmpDir: TmpDir, current const mimeType = /data:.*;base64,/.exec(cscLink)?.[0] if (mimeType || cscLink.length > 2048 || cscLink.endsWith("=")) { const tempFile = await tmpDir.getTempFile({ suffix: ".p12" }) - await outputFile(tempFile, Buffer.from(cscLink.substring(mimeType?.length ?? 0), "base64")) + await fsExtra.outputFile(tempFile, Buffer.from(cscLink.substring(mimeType?.length ?? 0), "base64")) return tempFile } file = cscLink diff --git a/packages/app-builder-lib/src/codeSign/macCodeSign.ts b/packages/app-builder-lib/src/codeSign/macCodeSign.ts index 6dc833e2295..81c68a723c4 100644 --- a/packages/app-builder-lib/src/codeSign/macCodeSign.ts +++ b/packages/app-builder-lib/src/codeSign/macCodeSign.ts @@ -305,11 +305,11 @@ async function _findIdentity(type: CertType, qualifier?: string | null, keychain return null } -export declare class Identity { - readonly name: string - readonly hash?: string - - constructor(name: string, hash?: string) +export class Identity { + constructor( + readonly name: string, + readonly hash?: string + ) {} } function parseIdentity(line: string): Identity { diff --git a/packages/app-builder-lib/src/codeSign/windowsSignToolManager.ts b/packages/app-builder-lib/src/codeSign/windowsSignToolManager.ts index b772ba1c351..b03bb32420a 100644 --- a/packages/app-builder-lib/src/codeSign/windowsSignToolManager.ts +++ b/packages/app-builder-lib/src/codeSign/windowsSignToolManager.ts @@ -1,6 +1,6 @@ import { asArray, InvalidConfigurationError, log, retry } from "builder-util" import { MemoLazy, parseDn } from "builder-util-runtime" -import { rename } from "fs-extra" +import * as fsExtra from "fs-extra" import { Lazy } from "lazy-val" import * as path from "path" import { Target } from "../core.js" @@ -232,7 +232,7 @@ export class WindowsSignToolManager implements SignManager { ) isNest = true if (taskConfiguration.resultOutputPath != null) { - await rename(taskConfiguration.resultOutputPath, options.path) + await fsExtra.rename(taskConfiguration.resultOutputPath, options.path) } } diff --git a/packages/app-builder-lib/src/electron/ElectronFramework.ts b/packages/app-builder-lib/src/electron/ElectronFramework.ts index e7d5919431a..5dbc81cf709 100644 --- a/packages/app-builder-lib/src/electron/ElectronFramework.ts +++ b/packages/app-builder-lib/src/electron/ElectronFramework.ts @@ -1,5 +1,5 @@ import { asArray, copyDir, DO_NOT_USE_HARD_LINKS, executeAppBuilder, isEmptyOrSpaces, log, MAX_FILE_REQUESTS, statOrNull, unlinkIfExists } from "builder-util" -import { emptyDir, readdir, rename, rm } from "fs-extra" +import * as fsExtra from "fs-extra" import * as path from "path" import asyncPool from "tiny-async-pool" import { Configuration } from "../configuration.js" @@ -74,10 +74,10 @@ async function beforeCopyExtraFiles(options: BeforeCopyExtraFilesOptions) { if (packager.platform === Platform.LINUX) { const linuxPackager = packager as LinuxPackager const executable = path.join(appOutDir, linuxPackager.executableName) - await rename(path.join(appOutDir, electronBranding.projectName), executable) + await fsExtra.rename(path.join(appOutDir, electronBranding.projectName), executable) } else if (packager.platform === Platform.WINDOWS) { const executable = path.join(appOutDir, `${packager.appInfo.productFilename}.exe`) - await rename(path.join(appOutDir, `${electronBranding.projectName}.exe`), executable) + await fsExtra.rename(path.join(appOutDir, `${electronBranding.projectName}.exe`), executable) if (options.asarIntegrity) { await addWinAsarIntegrity(executable, options.asarIntegrity) } @@ -108,7 +108,7 @@ async function removeUnusedLanguagesIfNeeded(options: BeforeCopyExtraFilesOption const { dirs, langFileExt } = getLocalesConfig() // noinspection SpellCheckingInspection const deleteNonMatchedLanguages: (dir: string) => Promise[] | undefined> = async (dir: string) => { - const files = await readdir(dir) + const files = await fsExtra.readdir(dir) return files.map(async file => { if (path.extname(file) !== langFileExt) { return @@ -127,7 +127,7 @@ async function removeUnusedLanguagesIfNeeded(options: BeforeCopyExtraFilesOption if (isWantedLocale) { return undefined } - return rm(path.join(dir, file), { recursive: true, force: true }) + return fsExtra.rm(path.join(dir, file), { recursive: true, force: true }) }) } const allDeletedFiles = (await Promise.all(dirs.map(deleteNonMatchedLanguages))).flat().filter((it): it is Promise => it != null) @@ -209,7 +209,7 @@ async function unpack(prepareOptions: PrepareApplicationStageDirectoryOptions, d const source = packager.getElectronSrcDir(folderPath) const destination = packager.getElectronDestinationDir(appOutDir) log.info({ source, destination }, "copying unpacked Electron") - await emptyDir(appOutDir) + await fsExtra.emptyDir(appOutDir) await copyDir(source, destination, { isUseHardLink: DO_NOT_USE_HARD_LINKS, }) @@ -238,7 +238,7 @@ async function unpack(prepareOptions: PrepareApplicationStageDirectoryOptions, d if (electronDistStats.isDirectory()) { // backward compatibility: if electronDist is a directory, check for the default zip file inside it - const files = await readdir(resolvedDist) + const files = await fsExtra.readdir(resolvedDist) if (files.includes(defaultZipName)) { log.info({ electronDist: log.filePath(resolvedDist) }, "using custom electronDist directory") await downloadUsingAdjustedConfig({ @@ -291,7 +291,7 @@ function cleanupAfterUnpack(prepareOptions: PrepareApplicationStageDirectoryOpti isFullCleanup ? unlinkIfExists(path.join(out, "version")) : Promise.resolve(), isMac ? Promise.resolve() - : rename(path.join(out, "LICENSE"), path.join(out, "LICENSE.electron.txt")).catch(() => { + : fsExtra.rename(path.join(out, "LICENSE"), path.join(out, "LICENSE.electron.txt")).catch(() => { /* ignore */ }), ]) diff --git a/packages/app-builder-lib/src/electron/electronVersion.ts b/packages/app-builder-lib/src/electron/electronVersion.ts index 01358aaff82..da5742025f8 100644 --- a/packages/app-builder-lib/src/electron/electronVersion.ts +++ b/packages/app-builder-lib/src/electron/electronVersion.ts @@ -1,6 +1,6 @@ import { httpExecutor, InvalidConfigurationError, log } from "builder-util" import { parseXml } from "builder-util-runtime" -import { readJson } from "fs-extra" +import * as fsExtra from "fs-extra" import { Lazy } from "lazy-val" import * as path from "path" import * as semver from "semver" @@ -26,7 +26,7 @@ export async function getElectronVersion(projectDir: string, config?: Configurat export async function getElectronVersionFromInstalled(projectDir: string): Promise { for (const name of electronPackages) { try { - return (await readJson(path.join(projectDir, "node_modules", name, "package.json"))).version + return (await fsExtra.readJson(path.join(projectDir, "node_modules", name, "package.json"))).version } catch (e: any) { if (e.code !== "ENOENT") { log.warn({ name, error: e }, `cannot read electron version package.json`) @@ -39,7 +39,7 @@ export async function getElectronVersionFromInstalled(projectDir: string): Promi export async function getElectronPackage(projectDir: string) { for (const name of electronPackages) { try { - return await readJson(path.join(projectDir, "node_modules", name, "package.json")) + return await fsExtra.readJson(path.join(projectDir, "node_modules", name, "package.json")) } catch (e: any) { if (e.code !== "ENOENT") { log.warn({ name, error: e }, `cannot find electron in package.json`) @@ -59,7 +59,7 @@ export async function computeElectronVersion(projectDir: string): Promise((resolve, reject) => { - const outStream = createWriteStream(tempOutputFile) + const outStream = fsExtra.createWriteStream(tempOutputFile) const child = childProcess.spawn(command, args, { cwd, diff --git a/packages/app-builder-lib/src/packager.ts b/packages/app-builder-lib/src/packager.ts index 297ff43aeb6..efeca99470a 100644 --- a/packages/app-builder-lib/src/packager.ts +++ b/packages/app-builder-lib/src/packager.ts @@ -16,7 +16,7 @@ import { TmpDir, } from "builder-util" import { CancellationToken, retry } from "builder-util-runtime" -import { chmod, mkdirs, outputFile } from "fs-extra" +import * as fsExtra from "fs-extra" import { isCI } from "ci-info" import { Lazy } from "lazy-val" import { release as getOsRelease } from "os" @@ -424,7 +424,7 @@ export class Packager { if (!isCI && (process.stdout as any).isTTY) { const effectiveConfigFile = path.join(commonOutDirWithoutPossibleOsMacro, "builder-effective-config.yaml") log.info({ file: log.filePath(effectiveConfigFile) }, "writing effective config") - await outputFile(effectiveConfigFile, getSafeEffectiveConfig(this.config)) + await fsExtra.outputFile(effectiveConfigFile, getSafeEffectiveConfig(this.config)) } // because artifact event maybe dispatched several times for different publish providers @@ -669,8 +669,8 @@ function createOutDirIfNeed(targetList: Array, createdOutDirs: Set { - return mkdirs(dir) - .then(() => chmod(dir, 0o755) /* set explicitly */) + return fsExtra.mkdirs(dir) + .then(() => fsExtra.chmod(dir, 0o755) /* set explicitly */) .then(() => createdOutDirs.add(dir)) }) ) diff --git a/packages/app-builder-lib/src/publish/updateInfoBuilder.ts b/packages/app-builder-lib/src/publish/updateInfoBuilder.ts index 2590df52b37..b6728248804 100644 --- a/packages/app-builder-lib/src/publish/updateInfoBuilder.ts +++ b/packages/app-builder-lib/src/publish/updateInfoBuilder.ts @@ -1,7 +1,7 @@ import asyncPool from "tiny-async-pool" import { Arch, log, safeStringifyJson, serializeToYaml } from "builder-util" import { GenericServerOptions, PublishConfiguration, UpdateInfo, WindowsUpdateInfo } from "builder-util-runtime" -import { outputFile, outputJson, readFile } from "fs-extra" +import * as fsExtra from "fs-extra" import { Lazy } from "lazy-val" import * as path from "path" import * as semver from "semver" @@ -23,7 +23,7 @@ async function getReleaseInfo(packager: PlatformPackager) { `release-notes-${packager.platform.nodeName}.md`, "release-notes.md" ) - const releaseNotes = releaseNotesFile == null ? null : await readFile(releaseNotesFile, "utf-8") + const releaseNotes = releaseNotesFile == null ? null : await fsExtra.readFile(releaseNotesFile, "utf-8") // to avoid undefined in the file, check for null if (releaseNotes != null) { releaseInfo.releaseNotes = releaseNotes @@ -227,7 +227,7 @@ export async function writeUpdateInfoFiles(updateInfoFileTasks: Array copyOrLinkFile(it, path.join(assetRoot, path.basename(it))))) await vm.exec(makePriPath, [ @@ -133,7 +133,7 @@ export default class AppXTarget extends Target { ]) // in addition to resources.pri, resources.scale-140.pri and other such files will be generated - for (const resourceFile of (await readdir(stageDir.dir)).filter(it => it.startsWith("resources.")).sort()) { + for (const resourceFile of (await fsExtra.readdir(stageDir.dir)).filter(it => it.startsWith("resources.")).sort()) { mappingList.push([`"${vm.toVmFile(stageDir.getTempFile(resourceFile))}" "${resourceFile}"`]) } makeAppXArgs.push("/l") @@ -143,7 +143,7 @@ export default class AppXTarget extends Target { for (const list of mappingList) { mapping += "\r\n" + list.join("\r\n") } - await writeFile(mappingFile, mapping) + await fsExtra.writeFile(mappingFile, mapping) packager.debugLogger.add("appx.mapping", mapping) if (this.options.makeappxArgs != null) { @@ -173,7 +173,7 @@ export default class AppXTarget extends Target { if (userAssetDir == null) { userAssets = [] } else { - userAssets = (await readdir(userAssetDir)).filter(it => !it.startsWith(".") && !it.endsWith(".db") && it.includes(".")) + userAssets = (await fsExtra.readdir(userAssetDir)).filter(it => !it.startsWith(".") && !it.endsWith(".db") && it.includes(".")) for (const name of userAssets) { mappings.push(`"${vm.toVmFile(userAssetDir)}${vm.pathSep}${name}" "assets\\${name}"`) allAssets.push(path.join(userAssetDir, name)) @@ -211,7 +211,7 @@ export default class AppXTarget extends Target { if (customManifestPath) { log.info({ manifestPath: log.filePath(customManifestPath) }, "custom appx manifest found") } - const manifestFileContent = await readFile(customManifestPath || path.join(getTemplatePath("appx"), "appxmanifest.xml"), "utf8") + const manifestFileContent = await fsExtra.readFile(customManifestPath || path.join(getTemplatePath("appx"), "appxmanifest.xml"), "utf8") const manifest = manifestFileContent.replace(/\${([a-zA-Z0-9]+)}/g, (match, p1): string => { switch (p1) { case "publisher": @@ -335,7 +335,7 @@ export default class AppXTarget extends Target { throw new Error(`Macro ${p1} is not defined`) } }) - await writeFile(outFile, manifest) + await fsExtra.writeFile(outFile, manifest) } private getCapabilities(): string { @@ -407,7 +407,7 @@ export default class AppXTarget extends Target { if (this.options.customExtensionsPath !== undefined) { const extensionsPath = path.resolve(this.packager.info.appDir, this.options.customExtensionsPath) - extensions += await readFile(extensionsPath, "utf8") + extensions += await fsExtra.readFile(extensionsPath, "utf8") } extensions += "" diff --git a/packages/app-builder-lib/src/targets/FlatpakTarget.ts b/packages/app-builder-lib/src/targets/FlatpakTarget.ts index f776d3e3bd8..3bd2d829c42 100644 --- a/packages/app-builder-lib/src/targets/FlatpakTarget.ts +++ b/packages/app-builder-lib/src/targets/FlatpakTarget.ts @@ -1,6 +1,6 @@ import { bundle as bundleFlatpak, FlatpakBundlerBuildOptions, FlatpakManifest } from "@malept/flatpak-bundler" import { Arch, copyFile, toLinuxArchString } from "builder-util" -import { chmod, outputFile } from "fs-extra" +import * as fsExtra from "fs-extra" import * as path from "path" import { Target } from "../core.js" import { LinuxPackager } from "../linuxPackager.js" @@ -68,8 +68,8 @@ export default class FlatpakTarget extends Target { private async createSandboxBinWrapper(stageDir: StageDir) { const useWaylandFlags = !!this.options.useWaylandFlags const electronWrapperPath = stageDir.getTempFile(path.join("bin", "electron-wrapper")) - await outputFile(electronWrapperPath, getElectronWrapperScript(this.packager.executableName, this.options.executableArgs, useWaylandFlags)) - await chmod(electronWrapperPath, 0o755) + await fsExtra.outputFile(electronWrapperPath, getElectronWrapperScript(this.packager.executableName, this.options.executableArgs, useWaylandFlags)) + await fsExtra.chmod(electronWrapperPath, 0o755) } private async createDesktopFile(stageDir: StageDir) { diff --git a/packages/app-builder-lib/src/targets/FpmTarget.ts b/packages/app-builder-lib/src/targets/FpmTarget.ts index 2621047e659..8143fdf71ad 100644 --- a/packages/app-builder-lib/src/targets/FpmTarget.ts +++ b/packages/app-builder-lib/src/targets/FpmTarget.ts @@ -1,6 +1,6 @@ import { Arch, asArray, exec, getArchSuffix, log, serializeToYaml, TmpDir, toLinuxArchString, unlinkIfExists, use } from "builder-util" import { Nullish } from "builder-util-runtime" -import { copyFile, outputFile, stat } from "fs-extra" +import * as fsExtra from "fs-extra" import { mkdir, readFile } from "fs/promises" import * as path from "path" import { smarten } from "../appInfo.js" @@ -144,16 +144,16 @@ export default class FpmTarget extends Target { : null if (publishConfig != null) { log.info({ resourceDir: log.filePath(resourceDir) }, `adding autoupdate files for: ${target}`) - await outputFile(path.join(resourceDir, "app-update.yml"), serializeToYaml(publishConfig)) + await fsExtra.outputFile(path.join(resourceDir, "app-update.yml"), serializeToYaml(publishConfig)) // Extra file needed for auto-updater to detect installation method - await outputFile(path.join(resourceDir, "package-type"), target) + await fsExtra.outputFile(path.join(resourceDir, "package-type"), target) } const scripts = await this.scriptFiles // Install AppArmor support for ubuntu 24+ // https://github.com/electron-userland/electron-builder/issues/8635 - await copyFile(scripts.appArmor, path.join(resourceDir, "apparmor-profile")) + await fsExtra.copyFile(scripts.appArmor, path.join(resourceDir, "apparmor-profile")) const appInfo = packager.appInfo const options = this.options @@ -280,7 +280,7 @@ export default class FpmTarget extends Target { isWriteUpdateInfo: true, updateInfo: { sha512: await hashFile(artifactPath), - size: (await stat(artifactPath)).size, + size: (await fsExtra.stat(artifactPath)).size, }, } } @@ -411,6 +411,6 @@ async function writeConfigFile(tmpDir: TmpDir, templatePath: string, options: an }) const outputPath = await tmpDir.getTempFile({ suffix: path.basename(templatePath, ".tpl") }) - await outputFile(outputPath, config) + await fsExtra.outputFile(outputPath, config) return outputPath } diff --git a/packages/app-builder-lib/src/targets/LinuxTargetHelper.ts b/packages/app-builder-lib/src/targets/LinuxTargetHelper.ts index 71ae9033a4a..e53f8e37867 100644 --- a/packages/app-builder-lib/src/targets/LinuxTargetHelper.ts +++ b/packages/app-builder-lib/src/targets/LinuxTargetHelper.ts @@ -1,5 +1,5 @@ import { asArray, exists, isEmptyOrSpaces, log } from "builder-util" -import { outputFile } from "fs-extra" +import * as fsExtra from "fs-extra" import { Lazy } from "lazy-val" import { join } from "path" import { LinuxPackager } from "../linuxPackager.js" @@ -45,7 +45,7 @@ export class LinuxTargetHelper { } const file = await this.packager.getTempFile(".xml") - await outputFile( + await fsExtra.outputFile( file, '\n\n' + items.join("\n") + "\n" ) @@ -96,7 +96,7 @@ export class LinuxTargetHelper { async writeDesktopEntry(targetSpecificOptions: LinuxTargetSpecificOptions, exec?: string, destination?: string | null, extra?: Record): Promise { const data = await this.computeDesktopEntry(targetSpecificOptions, exec, extra) const file = destination || (await this.packager.getTempFile(`${this.packager.appInfo.productFilename}.desktop`)) - await outputFile(file, data) + await fsExtra.outputFile(file, data) return file } diff --git a/packages/app-builder-lib/src/targets/appimage/AppImageTarget.ts b/packages/app-builder-lib/src/targets/appimage/AppImageTarget.ts index c1d89b26c01..9ef1f74828f 100644 --- a/packages/app-builder-lib/src/targets/appimage/AppImageTarget.ts +++ b/packages/app-builder-lib/src/targets/appimage/AppImageTarget.ts @@ -1,6 +1,6 @@ import { IconInfo } from "../../platformPackager.js" import { Arch, log, serializeToYaml } from "builder-util" -import { outputFile } from "fs-extra" +import * as fsExtra from "fs-extra" import { Lazy } from "lazy-val" import * as path from "path" import { Target } from "../../core.js" @@ -68,7 +68,7 @@ export default class AppImageTarget extends Target { ]) if (publishConfig != null) { - await outputFile(path.join(packager.getResourcesDir(appOutDir), "app-update.yml"), serializeToYaml(publishConfig)) + await fsExtra.outputFile(path.join(packager.getResourcesDir(appOutDir), "app-update.yml"), serializeToYaml(publishConfig)) } if (this.packager.packagerOptions.effectiveOptionComputed != null && (await this.packager.packagerOptions.effectiveOptionComputed({ desktop: desktopEntry }))) { diff --git a/packages/app-builder-lib/src/targets/archive.ts b/packages/app-builder-lib/src/targets/archive.ts index 8d55d737128..997a6169cb8 100644 --- a/packages/app-builder-lib/src/targets/archive.ts +++ b/packages/app-builder-lib/src/targets/archive.ts @@ -1,5 +1,5 @@ import { debug7z, exec, exists, getPath7za, log, statOrNull, unlinkIfExists } from "builder-util" -import { move } from "fs-extra" +import * as fsExtra from "fs-extra" import * as path from "path" import { create } from "tar" import { TmpDir } from "temp-file" @@ -37,7 +37,7 @@ export async function tar(compression: CompressionLevel | any, format: string, o } await exec(lzipPath, [compression === "store" ? "-1" : "-9", "--keep" /* keep (don't delete) input files */, tarFile]) // bloody lzip creates file in the same dir where input file with postfix `.lz`, option --output doesn't work - await move(`${tarFile}.lz`, outFile) + await fsExtra.move(`${tarFile}.lz`, outFile) return } diff --git a/packages/app-builder-lib/src/targets/nsis/NsisTarget.ts b/packages/app-builder-lib/src/targets/nsis/NsisTarget.ts index 31e353c42f4..c19e23ae091 100644 --- a/packages/app-builder-lib/src/targets/nsis/NsisTarget.ts +++ b/packages/app-builder-lib/src/targets/nsis/NsisTarget.ts @@ -18,7 +18,7 @@ import { import { CURRENT_APP_INSTALLER_FILE_NAME, CURRENT_APP_PACKAGE_FILE_NAME, PackageFileInfo, UUID } from "builder-util-runtime" import _debug from "debug" import * as fs from "fs" -import { readFile, stat, unlink } from "fs-extra" +import * as fsExtra from "fs-extra" import * as path from "path" import { Target } from "../../core.js" import { DesktopShortcutCreationPolicy, getEffectiveOptions } from "../../options/CommonWindowsInstallerConfiguration.js" @@ -352,14 +352,14 @@ export class NsisTarget extends Target { this.buildQueueManager.add(async () => { const sharedHeader = await this.computeCommonInstallerScriptHeader() const script = isPortable - ? await readFile(path.join(nsisTemplatesDir, "portable.nsi"), "utf8") + ? await fsExtra.readFile(path.join(nsisTemplatesDir, "portable.nsi"), "utf8") : await this.computeScriptAndSignUninstaller(definesUninstaller, commandsUninstaller, installerPath, sharedHeader, archs) // copy outfile name into main options, as the computeScriptAndSignUninstaller function was kind enough to add important data to temporary defines. defines.UNINSTALLER_OUT_FILE = definesUninstaller.UNINSTALLER_OUT_FILE await this.executeMakensis(defines, commands, sharedHeader + (await this.computeFinalScript(script, true, archs))) - await Promise.all([packager.signIf(installerPath), defines.UNINSTALLER_OUT_FILE == null ? Promise.resolve() : unlink(defines.UNINSTALLER_OUT_FILE)]) + await Promise.all([packager.signIf(installerPath), defines.UNINSTALLER_OUT_FILE == null ? Promise.resolve() : fsExtra.unlink(defines.UNINSTALLER_OUT_FILE)]) const safeArtifactName = computeSafeArtifactNameIfNeeded(installerFilename, () => this.generateGitHubInstallerName(primaryArch, defaultArch)) let updateInfo: any @@ -403,7 +403,7 @@ export class NsisTarget extends Target { private async computeScriptAndSignUninstaller(defines: Defines, commands: Commands, installerPath: string, sharedHeader: string, archs: Map): Promise { const packager = this.packager const customScriptPath = await packager.getResource(this.options.script, "installer.nsi") - const script = await readFile(customScriptPath || path.join(nsisTemplatesDir, "installer.nsi"), "utf8") + const script = await fsExtra.readFile(customScriptPath || path.join(nsisTemplatesDir, "installer.nsi"), "utf8") if (customScriptPath != null) { log.info({ reason: "custom NSIS script is used" }, "uninstaller is not signed by electron-builder") @@ -821,7 +821,7 @@ async function ensureNotBusy(outFile: string): Promise { async function createPackageFileInfo(file: string): Promise { return { path: file, - size: (await stat(file)).size, + size: (await fsExtra.stat(file)).size, sha512: await hashFile(file), } } diff --git a/packages/app-builder-lib/src/targets/nsis/nsisLang.ts b/packages/app-builder-lib/src/targets/nsis/nsisLang.ts index 36a1e5455e5..f97b14265af 100644 --- a/packages/app-builder-lib/src/targets/nsis/nsisLang.ts +++ b/packages/app-builder-lib/src/targets/nsis/nsisLang.ts @@ -1,6 +1,6 @@ import { asArray } from "builder-util" import _debug from "debug" -import { outputFile, readFile } from "fs-extra" +import * as fsExtra from "fs-extra" import { load } from "js-yaml" import * as path from "path" import { PlatformPackager } from "../../platformPackager.js" @@ -63,12 +63,12 @@ export function createAddLangsMacro(scriptGenerator: NsisScriptGenerator, langCo async function writeCustomLangFile(data: string, packager: PlatformPackager) { const file = await packager.getTempFile("messages.nsh") - await outputFile(file, data) + await fsExtra.outputFile(file, data) return file } export async function addCustomMessageFileInclude(input: string, packager: PlatformPackager, scriptGenerator: NsisScriptGenerator, langConfigurator: LangConfigurator) { - const data = load(await readFile(path.join(nsisTemplatesDir, input), "utf-8")) + const data = load(await fsExtra.readFile(path.join(nsisTemplatesDir, input), "utf-8")) const instructions = computeCustomMessageTranslations(data, langConfigurator).join("\n") debug(instructions) scriptGenerator.include(await writeCustomLangFile(instructions, packager)) diff --git a/packages/app-builder-lib/src/targets/snap.ts b/packages/app-builder-lib/src/targets/snap.ts index 434aace4609..aefb79d4a2c 100644 --- a/packages/app-builder-lib/src/targets/snap.ts +++ b/packages/app-builder-lib/src/targets/snap.ts @@ -1,6 +1,6 @@ import { replaceDefault as _replaceDefault, Arch, deepAssign, executeAppBuilder, InvalidConfigurationError, log, serializeToYaml, toLinuxArchString } from "builder-util" import { asArray, Nullish, SnapStoreOptions } from "builder-util-runtime" -import { outputFile, readFile } from "fs-extra" +import * as fsExtra from "fs-extra" import { load } from "js-yaml" import * as path from "path" import * as semver from "semver" @@ -72,7 +72,7 @@ export default class SnapTarget extends Target { adapter: "none", } - const snap: any = load(await readFile(path.join(getTemplatePath("snap"), "snapcraft.yaml"), "utf-8")) + const snap: any = load(await fsExtra.readFile(path.join(getTemplatePath("snap"), "snapcraft.yaml"), "utf-8")) if (this.isUseTemplateApp) { delete appDescriptor.adapter } @@ -252,7 +252,7 @@ export default class SnapTarget extends Target { return } - await outputFile(path.join(snapMetaDir, this.isUseTemplateApp ? "snap.yaml" : "snapcraft.yaml"), serializeToYaml(snap)) + await fsExtra.outputFile(path.join(snapMetaDir, this.isUseTemplateApp ? "snap.yaml" : "snapcraft.yaml"), serializeToYaml(snap)) const hooksDir = await packager.getResource(options.hooks, "snap-hooks") if (hooksDir != null) { diff --git a/packages/app-builder-lib/src/util/AppFileWalker.ts b/packages/app-builder-lib/src/util/AppFileWalker.ts index 107c4480e70..523a5c700e8 100644 --- a/packages/app-builder-lib/src/util/AppFileWalker.ts +++ b/packages/app-builder-lib/src/util/AppFileWalker.ts @@ -1,5 +1,5 @@ import { FileConsumer, Filter, FilterStats } from "builder-util" -import { readlink, stat, Stats } from "fs-extra" +import * as fsExtra from "fs-extra" import * as path from "path" import { FileMatcher } from "../fileMatcher.js" import { Packager } from "../packager.js" @@ -12,7 +12,7 @@ function addAllPatternIfNeed(matcher: FileMatcher) { } export abstract class FileCopyHelper { - readonly metadata = new Map() + readonly metadata = new Map() protected constructor( protected readonly matcher: FileMatcher, @@ -20,23 +20,23 @@ export abstract class FileCopyHelper { protected readonly packager: Packager ) {} - protected handleFile(file: string, parent: string, fileStat: Stats): Promise | null { + protected handleFile(file: string, parent: string, fileStat: fsExtra.Stats): Promise | null { if (!fileStat.isSymbolicLink()) { return null } - return readlink(file).then((linkTarget): any => { + return fsExtra.readlink(file).then((linkTarget): any => { // http://unix.stackexchange.com/questions/105637/is-symlinks-target-relative-to-the-destinations-parent-directory-and-if-so-wh return this.handleSymlink(fileStat, file, parent, linkTarget) }) } - private handleSymlink(fileStat: Stats, file: string, parent: string, linkTarget: string): Promise | null { + private handleSymlink(fileStat: fsExtra.Stats, file: string, parent: string, linkTarget: string): Promise | null { const resolvedLinkTarget = path.resolve(parent, linkTarget) const link = path.relative(this.matcher.from, resolvedLinkTarget) if (link.startsWith("..")) { // outside of project, linked module (https://github.com/electron-userland/electron-builder/issues/675) - return stat(resolvedLinkTarget).then(targetFileStat => { + return fsExtra.stat(resolvedLinkTarget).then(targetFileStat => { this.metadata.set(file, targetFileStat) return targetFileStat }) @@ -66,7 +66,7 @@ export class AppFileWalker extends FileCopyHelper implements FileConsumer { // noinspection JSUnusedGlobalSymbols // eslint-disable-next-line @typescript-eslint/no-unused-vars - consume(file: string, fileStat: Stats, parent: string, siblingNames: Array): any { + consume(file: string, fileStat: fsExtra.Stats, parent: string, siblingNames: Array): any { if (fileStat.isDirectory()) { const matchesFilter = this.matcherFilter(file, fileStat) return !matchesFilter diff --git a/packages/app-builder-lib/src/util/NodeModuleCopyHelper.ts b/packages/app-builder-lib/src/util/NodeModuleCopyHelper.ts index 87264106008..7183e7eb877 100644 --- a/packages/app-builder-lib/src/util/NodeModuleCopyHelper.ts +++ b/packages/app-builder-lib/src/util/NodeModuleCopyHelper.ts @@ -1,6 +1,6 @@ import { FilterStats, MAX_FILE_REQUESTS } from "builder-util" import { realpathSync } from "fs" -import { lstat, lstatSync, readdir } from "fs-extra" +import * as fsExtra from "fs-extra" import * as path from "path" import asyncPool from "tiny-async-pool" import { excludedNames, FileMatcher } from "../fileMatcher.js" @@ -69,7 +69,7 @@ export class NodeModuleCopyHelper extends FileCopyHelper { while (queue.length > 0) { const dirPath = queue.pop()! - const childNames = await readdir(dirPath) + const childNames = await fsExtra.readdir(dirPath) childNames.sort() const isTopLevel = dirPath === depPath @@ -85,7 +85,7 @@ export class NodeModuleCopyHelper extends FileCopyHelper { } // check if filematcher matches the files array as more important than the default excluded files. - const fileMatched = filter != null && filter(dirPath, lstatSync(dirPath)) + const fileMatched = filter != null && filter(dirPath, fsExtra.lstatSync(dirPath)) if (!fileMatched || !forceIncluded || !!this.packager.config.disableDefaultIgnoredFiles) { for (const ext of nodeModuleExcludedExts) { if (name.endsWith(ext)) { @@ -111,7 +111,7 @@ export class NodeModuleCopyHelper extends FileCopyHelper { } } - return lstat(filePath).then((stat: FilterStats) => { + return fsExtra.lstat(filePath).then((stat: FilterStats) => { stat.moduleName = moduleName stat.moduleRootPath = destination stat.moduleFullFilePath = path.join(destination, path.relative(depPath, filePath)) diff --git a/packages/app-builder-lib/src/util/appFileCopier.ts b/packages/app-builder-lib/src/util/appFileCopier.ts index dffac4b77a7..eebfe5d9d0a 100644 --- a/packages/app-builder-lib/src/util/appFileCopier.ts +++ b/packages/app-builder-lib/src/util/appFileCopier.ts @@ -1,6 +1,6 @@ import { AsyncTaskManager, FileCopier, FileTransformer, isEmptyOrSpaces, Link, log, MAX_FILE_REQUESTS, statOrNull, walk } from "builder-util" import { Stats } from "fs" -import { ensureSymlink } from "fs-extra" +import * as fsExtra from "fs-extra" import { mkdir, readlink } from "fs/promises" import * as path from "path" import asyncPool from "tiny-async-pool" @@ -74,7 +74,7 @@ export async function copyAppFiles(fileSet: ResolvedFileSet, packager: Packager, await taskManager.awaitTasks() } - await asyncPool(MAX_FILE_REQUESTS, links, it => ensureSymlink(it.link, it.file)) + await asyncPool(MAX_FILE_REQUESTS, links, it => fsExtra.ensureSymlink(it.link, it.file)) } // os path separator is used diff --git a/packages/app-builder-lib/src/util/cacheManager.ts b/packages/app-builder-lib/src/util/cacheManager.ts index 7d7b0c894b8..5d832fb1f3a 100644 --- a/packages/app-builder-lib/src/util/cacheManager.ts +++ b/packages/app-builder-lib/src/util/cacheManager.ts @@ -1,6 +1,6 @@ import { Arch, copyFile, log, orNullIfFileNotExist } from "builder-util" import { Hash } from "crypto" -import { readJson, writeJson } from "fs-extra" +import * as fsExtra from "fs-extra" import { mkdir, readFile } from "fs/promises" import * as path from "path" @@ -32,7 +32,7 @@ export class BuildCacheManager { async copyIfValid(digest: string): Promise { this.newDigest = digest - this.cacheInfo = await orNullIfFileNotExist(readJson(this.cacheInfoFile)) + this.cacheInfo = await orNullIfFileNotExist(fsExtra.readJson(this.cacheInfoFile)) const oldDigest = this.cacheInfo == null ? null : this.cacheInfo.executableDigest if (oldDigest !== digest) { log.debug({ oldDigest, newDigest: digest }, "no valid cached executable found") @@ -66,7 +66,7 @@ export class BuildCacheManager { try { await mkdir(this.cacheDir, { recursive: true }) - await Promise.all([writeJson(this.cacheInfoFile, this.cacheInfo), copyFile(this.executableFile, this.cacheFile, false)]) + await Promise.all([fsExtra.writeJson(this.cacheInfoFile, this.cacheInfo), copyFile(this.executableFile, this.cacheFile, false)]) } catch (e: any) { log.warn({ error: e.stack || e }, `cannot save build cache`) } diff --git a/packages/app-builder-lib/src/util/config/config.ts b/packages/app-builder-lib/src/util/config/config.ts index 31d7db3fe06..10f9fe27536 100644 --- a/packages/app-builder-lib/src/util/config/config.ts +++ b/packages/app-builder-lib/src/util/config/config.ts @@ -1,6 +1,6 @@ import { DebugLogger, deepAssign, InvalidConfigurationError, log, safeStringifyJson, statOrNull } from "builder-util" import { Nullish } from "builder-util-runtime" -import { readJson } from "fs-extra" +import * as fsExtra from "fs-extra" import { Lazy } from "lazy-val" import * as path from "path" import { Configuration } from "../../configuration.js" @@ -8,7 +8,7 @@ import { FileSet } from "../../options/PlatformSpecificBuildOptions.js" import { reactCra } from "../../presets/rectCra.js" import { PACKAGE_VERSION } from "../../version.js" import { getConfig as _getConfig, loadParentConfig, orNullIfFileNotExist, ReadConfigRequest } from "./load.js" -const validateSchema = require("@develar/schema-utils") +import validateSchema from "@develar/schema-utils" // https://github.com/electron-userland/electron-builder/issues/1847 function mergePublish(config: Configuration, configFromOptions: Configuration) { @@ -37,7 +37,7 @@ export async function getConfig( projectDir: string, configPath: string | null, configFromOptions: Configuration | Nullish, - packageMetadata: Lazy | null> = new Lazy(() => orNullIfFileNotExist(readJson(path.join(projectDir, "package.json")))) + packageMetadata: Lazy | null> = new Lazy(() => orNullIfFileNotExist(fsExtra.readJson(path.join(projectDir, "package.json")))) ): Promise { const configRequest: ReadConfigRequest = { packageKey: "build", configFilename: "electron-builder", projectDir, packageMetadata } const configAndEffectiveFile = await _getConfig(configRequest, configPath) @@ -214,7 +214,7 @@ function getDefaultConfig(): Configuration { } } -const schemeDataPromise = new Lazy(() => readJson(path.join(__dirname, "..", "..", "..", "scheme.json"))) +const schemeDataPromise = new Lazy(() => fsExtra.readJson(path.join(__dirname, "..", "..", "..", "scheme.json"))) export async function validateConfiguration(config: Configuration, debugLogger: DebugLogger) { const extraMetadata = config.extraMetadata diff --git a/packages/app-builder-lib/src/util/config/load.ts b/packages/app-builder-lib/src/util/config/load.ts index a0b883207db..62f64fb6f00 100644 --- a/packages/app-builder-lib/src/util/config/load.ts +++ b/packages/app-builder-lib/src/util/config/load.ts @@ -8,7 +8,7 @@ import { Lazy } from "lazy-val" import * as path from "path" import { resolveModule } from "../resolve.js" -const jiti = createJiti(__filename) +const jiti = createJiti(import.meta.filename) export interface ReadConfigResult { readonly result: T diff --git a/packages/app-builder-lib/src/util/macosVersion.ts b/packages/app-builder-lib/src/util/macosVersion.ts index 62156f9e70d..ea8983dea5e 100644 --- a/packages/app-builder-lib/src/util/macosVersion.ts +++ b/packages/app-builder-lib/src/util/macosVersion.ts @@ -1,11 +1,11 @@ import { log } from "builder-util" -import { readFile } from "fs-extra" +import * as fsExtra from "fs-extra" import { Lazy } from "lazy-val" import { release as osRelease } from "os" import * as semver from "semver" const macOsVersion = new Lazy(async () => { - const file = await readFile("/System/Library/CoreServices/SystemVersion.plist", "utf8") + const file = await fsExtra.readFile("/System/Library/CoreServices/SystemVersion.plist", "utf8") const matches = /ProductVersion<\/key>[\s\S]*([\d.]+)<\/string>/.exec(file) if (!matches) { throw new Error("Couldn't find the macOS version") diff --git a/packages/app-builder-lib/src/util/packageMetadata.ts b/packages/app-builder-lib/src/util/packageMetadata.ts index 498ef23d3cc..e1332e5555f 100644 --- a/packages/app-builder-lib/src/util/packageMetadata.ts +++ b/packages/app-builder-lib/src/util/packageMetadata.ts @@ -1,6 +1,6 @@ import { InvalidConfigurationError, isEmptyOrSpaces, log } from "builder-util" import { Nullish } from "builder-util-runtime" -import { readFile, readJson, readJsonSync } from "fs-extra" +import * as fsExtra from "fs-extra" import * as path from "path" import * as semver from "semver" import { Metadata } from "../options/metadata.js" @@ -8,7 +8,7 @@ import { normalizePackageData } from "./normalizePackageData.js" /** @internal */ export async function readPackageJson(file: string): Promise { - const data = await readJson(file) + const data = await fsExtra.readJson(file) await authors(file, data) // remove not required fields because can be used for remote build delete data.scripts @@ -24,7 +24,7 @@ async function authors(file: string, data: any) { let authorData try { - authorData = await readFile(path.resolve(path.dirname(file), "AUTHORS"), "utf8") + authorData = await fsExtra.readFile(path.resolve(path.dirname(file), "AUTHORS"), "utf8") } catch (_ignored) { return } @@ -115,7 +115,7 @@ function checkDependencies(dependencies: Record | Nullish, error if (updaterVersion.startsWith(prefix)) { const normalized = path.normalize(updaterVersion.substring(prefix.length)) const packageJsonPath = path.isAbsolute(normalized) ? normalized : path.resolve(__dirname, normalized) - const json = readJsonSync(path.join(packageJsonPath, "package.json")) + const json = fsExtra.readJsonSync(path.join(packageJsonPath, "package.json")) updaterVersion = json.version break } diff --git a/packages/app-builder-lib/src/util/pathManager.ts b/packages/app-builder-lib/src/util/pathManager.ts index a80c0cdeee8..8f7ca31f0d0 100644 --- a/packages/app-builder-lib/src/util/pathManager.ts +++ b/packages/app-builder-lib/src/util/pathManager.ts @@ -1,6 +1,6 @@ import * as path from "path" -const root = path.join(__dirname, "..", "..") +const root = path.join(import.meta.dirname, "..", "..") export function getTemplatePath(file: string) { return path.join(root, "templates", file) diff --git a/packages/app-builder-lib/src/util/plist.ts b/packages/app-builder-lib/src/util/plist.ts index 2f2e31aecbf..ae4dd82ba1c 100644 --- a/packages/app-builder-lib/src/util/plist.ts +++ b/packages/app-builder-lib/src/util/plist.ts @@ -1,4 +1,4 @@ -import { build, parse } from "plist" +import * as plist_1 from "plist" import * as fs from "fs/promises" type PlistValue = string | number | boolean | Date | PlistObject | PlistValue[] @@ -27,13 +27,13 @@ function sortObjectKeys(obj: PlistValue): PlistValue { export async function savePlistFile(path: string, data: PlistValue): Promise { const sortedData = sortObjectKeys(data) - const plist = build(sortedData) + const plist = plist_1.build(sortedData) await fs.writeFile(path, plist) } export async function parsePlistFile(file: string): Promise { const data = await fs.readFile(file, "utf8") - return parse(data) as T + return plist_1.parse(data) as T } export type { PlistValue, PlistObject } diff --git a/packages/app-builder-lib/src/util/repositoryInfo.ts b/packages/app-builder-lib/src/util/repositoryInfo.ts index c5a6ee98e02..24e8cf8a4c3 100644 --- a/packages/app-builder-lib/src/util/repositoryInfo.ts +++ b/packages/app-builder-lib/src/util/repositoryInfo.ts @@ -1,5 +1,5 @@ import { orNullIfFileNotExist } from "builder-util" -import { readFile } from "fs-extra" +import * as fsExtra from "fs-extra" import GitHost, { fromUrl } from "hosted-git-info" import * as path from "path" import { SourceRepositoryInfo } from "../core.js" @@ -10,7 +10,7 @@ export function getRepositoryInfo(projectDir: string, metadata?: Metadata, devMe } async function getGitUrlFromGitConfig(projectDir: string): Promise { - const data = await orNullIfFileNotExist(readFile(path.join(projectDir, ".git", "config"), "utf8")) + const data = await orNullIfFileNotExist(fsExtra.readFile(path.join(projectDir, ".git", "config"), "utf8")) if (data == null) { return null } diff --git a/packages/app-builder-lib/src/util/yarn.ts b/packages/app-builder-lib/src/util/yarn.ts index 073cffaa576..3dfe8efe83b 100644 --- a/packages/app-builder-lib/src/util/yarn.ts +++ b/packages/app-builder-lib/src/util/yarn.ts @@ -1,5 +1,5 @@ import { asArray, log, spawn } from "builder-util" -import { pathExists } from "fs-extra" +import * as fsExtra from "fs-extra" import { Lazy } from "lazy-val" import { homedir } from "os" import * as path from "path" @@ -28,7 +28,7 @@ export async function installOrRebuild( let isDependenciesInstalled = false for (const fileOrDir of ["node_modules", ".pnp.js"]) { - if ((await pathExists(path.join(projectDir, fileOrDir))) || (await pathExists(path.join(appDir, fileOrDir)))) { + if ((await fsExtra.pathExists(path.join(projectDir, fileOrDir))) || (await fsExtra.pathExists(path.join(appDir, fileOrDir)))) { isDependenciesInstalled = true break diff --git a/packages/builder-util/package.json b/packages/builder-util/package.json index 85c614bd44d..1e5b8876bb7 100644 --- a/packages/builder-util/package.json +++ b/packages/builder-util/package.json @@ -25,7 +25,7 @@ "chalk": "^4.1.2", "cross-spawn": "^7.0.6", "debug": "^4.3.4", - "fs-extra": "^10.1.0", + "fs-extra": "^11.3.4", "http-proxy-agent": "^7.0.0", "https-proxy-agent": "^7.0.0", "js-yaml": "^4.1.0", diff --git a/packages/builder-util/src/7za.ts b/packages/builder-util/src/7za.ts index c3323a49ac0..742255b05b9 100644 --- a/packages/builder-util/src/7za.ts +++ b/packages/builder-util/src/7za.ts @@ -1,15 +1,15 @@ import { path7x, path7za } from "7zip-bin" import * as fs from "fs" -import { chmod } from "fs-extra" +import * as fsExtra from "fs-extra" export async function getPath7za(): Promise { if (fs.existsSync(path7za)) { - await chmod(path7za, 0o755) + await fsExtra.chmod(path7za, 0o755) } return path7za } export async function getPath7x(): Promise { - await chmod(path7x, 0o755) + await fsExtra.chmod(path7x, 0o755) return path7x } diff --git a/packages/builder-util/src/DebugLogger.ts b/packages/builder-util/src/DebugLogger.ts index 637239445e8..1a6ee37aa8e 100644 --- a/packages/builder-util/src/DebugLogger.ts +++ b/packages/builder-util/src/DebugLogger.ts @@ -1,4 +1,4 @@ -import { outputFile } from "fs-extra" +import * as fsExtra from "fs-extra" import { serializeToYaml } from "./util.js" import { mapToObject } from "./mapper.js" @@ -40,7 +40,7 @@ export class DebugLogger { const data = mapToObject(this.data) // toml and json doesn't correctly output multiline string as multiline if (this.isEnabled && Object.keys(data).length > 0) { - return outputFile(file, serializeToYaml(data)) + return fsExtra.outputFile(file, serializeToYaml(data)) } else { return Promise.resolve() } diff --git a/packages/builder-util/src/fs.ts b/packages/builder-util/src/fs.ts index 5e33a8d7cd7..de9658b627f 100644 --- a/packages/builder-util/src/fs.ts +++ b/packages/builder-util/src/fs.ts @@ -1,10 +1,10 @@ import { Nullish } from "builder-util-runtime" import { Stats } from "fs" -import { copyFile as _nodeCopyFile } from "fs-extra" +import * as fsExtra from "fs-extra" import { access, chmod, link, lstat, mkdir, readdir, readlink, stat, symlink, unlink, writeFile } from "fs/promises" import { platform } from "os" import * as path from "path" -import { Mode } from "stat-mode" +import statMode from "stat-mode" import asyncPool from "tiny-async-pool" import { log } from "./log.js" import { orIfFileNotExist, orNullIfFileNotExist } from "./promise.js" @@ -170,7 +170,7 @@ export function copyOrLinkFile(src: string, dest: string, stats?: Stats | null, if (stats != null) { const originalModeNumber = stats.mode - const mode = new Mode(stats) + const mode = new statMode.Mode(stats) if (mode.owner.execute) { mode.group.execute = true mode.others.execute = true @@ -184,7 +184,7 @@ export function copyOrLinkFile(src: string, dest: string, stats?: Stats | null, if (originalModeNumber !== stats.mode) { if (log.isDebugEnabled) { - const oldMode = new Mode({ mode: originalModeNumber }) + const oldMode = new statMode.Mode({ mode: originalModeNumber }) log.debug({ file: dest, oldMode, mode }, "permissions fixed from") } @@ -215,7 +215,7 @@ export function copyOrLinkFile(src: string, dest: string, stats?: Stats | null, } function doCopyFile(src: string, dest: string, stats: Stats | Nullish): Promise { - const promise = _nodeCopyFile(src, dest) + const promise = fsExtra.copyFile(src, dest) if (stats == null) { return promise } diff --git a/packages/dmg-builder/package.json b/packages/dmg-builder/package.json index 3691c02a7ff..d1dda570dcd 100644 --- a/packages/dmg-builder/package.json +++ b/packages/dmg-builder/package.json @@ -22,7 +22,7 @@ "dependencies": { "app-builder-lib": "workspace:*", "builder-util": "workspace:*", - "fs-extra": "^10.1.0", + "fs-extra": "^11.3.4", "iconv-lite": "^0.6.2", "js-yaml": "^4.1.0" }, diff --git a/packages/dmg-builder/src/dmgLicense.ts b/packages/dmg-builder/src/dmgLicense.ts index 104a00289f9..a63c2ad25c7 100644 --- a/packages/dmg-builder/src/dmgLicense.ts +++ b/packages/dmg-builder/src/dmgLicense.ts @@ -1,7 +1,7 @@ import { PlatformPackager } from "app-builder-lib" import { log } from "builder-util" import { dmgLicenseFromJSON } from "dmg-license" -import { readFile, readJson } from "fs-extra" +import * as fsExtra from "fs-extra" import { load } from "js-yaml" import { getLicenseButtonsFile } from "./licenseButtons.js" import { getLicenseFiles } from "app-builder-lib" @@ -40,7 +40,7 @@ export async function addLicenseToDmg(packager: PlatformPackager, dmgPath: for (const button of licenseButtonFiles) { const filepath = button.file - const label = filepath.endsWith(".yml") ? load(await readFile(filepath, "utf-8")) : await readJson(filepath) + const label = filepath.endsWith(".yml") ? load(await fsExtra.readFile(filepath, "utf-8")) : await fsExtra.readJson(filepath) if (label.description) { // to support original button file format label.message = label.description diff --git a/packages/dmg-builder/src/dmgUtil.ts b/packages/dmg-builder/src/dmgUtil.ts index 2e43f995a16..e69d2aa9572 100644 --- a/packages/dmg-builder/src/dmgUtil.ts +++ b/packages/dmg-builder/src/dmgUtil.ts @@ -1,7 +1,7 @@ import { DmgOptions, MacPackager, PlatformPackager } from "app-builder-lib" import { downloadArtifact } from "app-builder-lib" import { exec, executeFinally, exists, isEmptyOrSpaces, TmpDir } from "builder-util" -import { writeFile } from "fs-extra" +import * as fsExtra from "fs-extra" import * as path from "path" import { DmgBuildConfig } from "./dmg.js" import { hdiUtil, hdiutilTransientExitCodes } from "./hdiuil.js" @@ -183,7 +183,7 @@ export async function customizeDmg({ appPath, artifactPath, volumeName, specific } const settingsFile = await packager.getTempFile(".json") - await writeFile(settingsFile, JSON.stringify(settings, null, 2)) + await fsExtra.writeFile(settingsFile, JSON.stringify(settings, null, 2)) const dmgbuild = await getDmgVendorPath() await exec(dmgbuild, ["-s", settingsFile, path.basename(volumePath), artifactPath], { diff --git a/packages/dmg-builder/src/licenseButtons.ts b/packages/dmg-builder/src/licenseButtons.ts index 029bbb85369..deb3cd47053 100644 --- a/packages/dmg-builder/src/licenseButtons.ts +++ b/packages/dmg-builder/src/licenseButtons.ts @@ -1,7 +1,7 @@ import { PlatformPackager } from "app-builder-lib" import { getLicenseAssets } from "app-builder-lib" import { log } from "builder-util" -import { readFile } from "fs-extra" +import * as fsExtra from "fs-extra" import * as iconv from "iconv-lite" import { load } from "js-yaml" import { serializeString } from "./dmgUtil.js" @@ -34,7 +34,7 @@ export async function getLicenseButtons(licenseButtonFiles: Array orNullIfFileNotExist(readJson(path.join(projectDir, "package.json")))) + const packageMetadata = new Lazy(() => orNullIfFileNotExist(fsExtra.readJson(path.join(projectDir, "package.json")))) const config = await getConfig(projectDir, null, null, packageMetadata) const [appDir, version] = await Promise.all([computeDefaultAppDirectory(projectDir, config.directories?.app), getElectronVersion(projectDir, config)]) diff --git a/packages/electron-publish/package.json b/packages/electron-publish/package.json index 2db7c917e3e..8536e4b32c9 100644 --- a/packages/electron-publish/package.json +++ b/packages/electron-publish/package.json @@ -23,7 +23,7 @@ "builder-util-runtime": "workspace:*", "chalk": "^4.1.2", "form-data": "^4.0.5", - "fs-extra": "^10.1.0", + "fs-extra": "^11.3.4", "lazy-val": "^1.0.5", "mime": "^2.5.2" }, diff --git a/packages/electron-publish/src/bitbucketPublisher.ts b/packages/electron-publish/src/bitbucketPublisher.ts index f055a5b9616..bdc29ca6e30 100644 --- a/packages/electron-publish/src/bitbucketPublisher.ts +++ b/packages/electron-publish/src/bitbucketPublisher.ts @@ -2,7 +2,7 @@ import { Arch, httpExecutor, InvalidConfigurationError, isEmptyOrSpaces, log } f import { configureRequestOptions, HttpExecutor } from "builder-util-runtime" import { BitbucketOptions } from "builder-util-runtime" import FormData from "form-data" -import { readFile } from "fs-extra" +import * as fsExtra from "fs-extra" import { ClientRequest, RequestOptions } from "http" import { PublishContext } from "./index.js" import { HttpPublisher } from "./httpPublisher.js" @@ -42,7 +42,7 @@ export class BitbucketPublisher extends HttpPublisher { file: string ): Promise { return HttpExecutor.retryOnServerError(async () => { - const fileContent = await readFile(file) + const fileContent = await fsExtra.readFile(file) const form = new FormData() form.append("files", fileContent, fileName) const upload: RequestOptions = { diff --git a/packages/electron-publish/src/httpPublisher.ts b/packages/electron-publish/src/httpPublisher.ts index 903775386be..dfcdb1d595d 100644 --- a/packages/electron-publish/src/httpPublisher.ts +++ b/packages/electron-publish/src/httpPublisher.ts @@ -1,5 +1,5 @@ import { Arch } from "builder-util" -import { stat } from "fs-extra" +import * as fsExtra from "fs-extra" import { ClientRequest } from "http" import { basename } from "path" import { PublishContext, UploadTask } from "./index.js" @@ -35,7 +35,7 @@ export abstract class HttpPublisher extends Publisher { return } - const fileStat = await stat(task.file) + const fileStat = await fsExtra.stat(task.file) const progressBar = this.createProgressBar(fileName, fileStat.size) return this.doUpload( diff --git a/packages/electron-publish/src/publisher.ts b/packages/electron-publish/src/publisher.ts index ae7946c2f51..001422832c1 100644 --- a/packages/electron-publish/src/publisher.ts +++ b/packages/electron-publish/src/publisher.ts @@ -1,7 +1,7 @@ import { log, PADDING } from "builder-util" import { ProgressCallbackTransform, PublishProvider } from "builder-util-runtime" import * as chalk from "chalk" -import { createReadStream, Stats } from "fs-extra" +import * as fsExtra from "fs-extra" import { PublishContext, UploadTask } from "./index.js" import { ProgressBar } from "./progress.js" @@ -28,8 +28,8 @@ export abstract class Publisher { }) } - protected createReadStreamAndProgressBar(file: string, fileStat: Stats, progressBar: ProgressBar | null, reject: (error: Error) => void): NodeJS.ReadableStream { - const fileInputStream = createReadStream(file) + protected createReadStreamAndProgressBar(file: string, fileStat: fsExtra.Stats, progressBar: ProgressBar | null, reject: (error: Error) => void): NodeJS.ReadableStream { + const fileInputStream = fsExtra.createReadStream(file) fileInputStream.on("error", reject) if (progressBar == null) { diff --git a/packages/electron-updater/package.json b/packages/electron-updater/package.json index d417224ccca..1f5c93eb371 100644 --- a/packages/electron-updater/package.json +++ b/packages/electron-updater/package.json @@ -20,7 +20,7 @@ ], "dependencies": { "builder-util-runtime": "workspace:*", - "fs-extra": "^10.1.0", + "fs-extra": "^11.3.4", "js-yaml": "^4.1.0", "lazy-val": "^1.0.5", "lodash.escaperegexp": "^4.1.2", diff --git a/packages/electron-updater/src/AppImageUpdater.ts b/packages/electron-updater/src/AppImageUpdater.ts index 108b591fa6d..4d05cb7d55a 100644 --- a/packages/electron-updater/src/AppImageUpdater.ts +++ b/packages/electron-updater/src/AppImageUpdater.ts @@ -1,6 +1,6 @@ import { AllPublishOptions, newError } from "builder-util-runtime" import { execFileSync } from "child_process" -import { chmod } from "fs-extra" +import * as fsExtra from "fs-extra" import { unlinkSync } from "fs" import * as path from "path" import { DownloadUpdateOptions } from "./AppUpdater.js" @@ -45,7 +45,7 @@ export class AppImageUpdater extends BaseUpdater { await this.httpExecutor.download(fileInfo.url, updateFile, downloadOptions) } - await chmod(updateFile, 0o755) + await fsExtra.chmod(updateFile, 0o755) }, }) } diff --git a/packages/electron-updater/src/AppUpdater.ts b/packages/electron-updater/src/AppUpdater.ts index 637822ebed0..963cfb9d3c2 100644 --- a/packages/electron-updater/src/AppUpdater.ts +++ b/packages/electron-updater/src/AppUpdater.ts @@ -15,7 +15,7 @@ import { import { randomBytes } from "crypto" import { release } from "os" import { EventEmitter } from "events" -import { mkdir, outputFile, readFile, rename, unlink, copyFile, pathExists } from "fs-extra" +import * as fsExtra from "fs-extra" import { OutgoingHttpHeaders } from "http" import { load } from "js-yaml" import { Lazy } from "lazy-val" @@ -622,7 +622,7 @@ export abstract class AppUpdater extends (EventEmitter as new () => TypedEmitter if (this._appUpdateConfigPath == null) { this._appUpdateConfigPath = this.app.appUpdateConfigPath } - return load(await readFile(this._appUpdateConfigPath, "utf-8")) + return load(await fsExtra.readFile(this._appUpdateConfigPath, "utf-8")) } private computeRequestHeaders(provider: Provider): OutgoingHttpHeaders { @@ -642,7 +642,7 @@ export abstract class AppUpdater extends (EventEmitter as new () => TypedEmitter private async getOrCreateStagingUserId(): Promise { const file = path.join(this.app.userDataPath, ".updaterId") try { - const id = await readFile(file, "utf-8") + const id = await fsExtra.readFile(file, "utf-8") if (UUID.check(id)) { return id } else { @@ -657,7 +657,7 @@ export abstract class AppUpdater extends (EventEmitter as new () => TypedEmitter const id = UUID.v5(randomBytes(4096), UUID.OID) this._logger.info(`Generated new staging user ID: ${id}`) try { - await outputFile(file, id) + await fsExtra.outputFile(file, id) } catch (e: any) { this._logger.warn(`Couldn't write out staging user ID: ${e}`) } @@ -736,7 +736,7 @@ export abstract class AppUpdater extends (EventEmitter as new () => TypedEmitter const downloadedUpdateHelper = await this.getOrCreateDownloadHelper() const cacheDir = downloadedUpdateHelper.cacheDirForPendingUpdate - await mkdir(cacheDir, { recursive: true }) + await fsExtra.mkdir(cacheDir, { recursive: true }) const updateFileName = getCacheUpdateFileName() let updateFile = path.join(cacheDir, updateFileName) const packageFile = packageInfo == null ? null : path.join(cacheDir, `package-${version}${path.extname(packageInfo.path) || ".7z"}`) @@ -748,8 +748,8 @@ export abstract class AppUpdater extends (EventEmitter as new () => TypedEmitter downloadedFile: updateFile, }) const currentBlockMapFile = path.join(cacheDir, "current.blockmap") - if (await pathExists(currentBlockMapFile)) { - await copyFile(currentBlockMapFile, path.join(downloadedUpdateHelper.cacheDir, "current.blockmap")) + if (await fsExtra.pathExists(currentBlockMapFile)) { + await fsExtra.copyFile(currentBlockMapFile, path.join(downloadedUpdateHelper.cacheDir, "current.blockmap")) } return packageFile == null ? [updateFile] : [updateFile, packageFile] } @@ -765,7 +765,7 @@ export abstract class AppUpdater extends (EventEmitter as new () => TypedEmitter await downloadedUpdateHelper.clear().catch(() => { // ignore }) - return await unlink(updateFile).catch(() => { + return await fsExtra.unlink(updateFile).catch(() => { // ignore }) } @@ -773,7 +773,7 @@ export abstract class AppUpdater extends (EventEmitter as new () => TypedEmitter const tempUpdateFile = await createTempUpdateFile(`temp-${updateFileName}`, cacheDir, log) try { await taskOptions.task(tempUpdateFile, downloadOptions, packageFile, removeFileIfAny) - await retry(() => rename(tempUpdateFile, updateFile), { + await retry(() => fsExtra.rename(tempUpdateFile, updateFile), { retries: 60, interval: 500, shouldRetry: (error: Error) => { @@ -850,14 +850,14 @@ export abstract class AppUpdater extends (EventEmitter as new () => TypedEmitter const saveBlockMapToCacheDir = async (blockMapData: BlockMap, cacheDir: string) => { const blockMapFile = path.join(cacheDir, "current.blockmap") - await outputFile(blockMapFile, gzipSync(JSON.stringify(blockMapData))) + await fsExtra.outputFile(blockMapFile, gzipSync(JSON.stringify(blockMapData))) } const getBlockMapFromCacheDir = async (cacheDir: string) => { const blockMapFile = path.join(cacheDir, "current.blockmap") try { - if (await pathExists(blockMapFile)) { - return JSON.parse(gunzipSync(await readFile(blockMapFile)).toString()) + if (await fsExtra.pathExists(blockMapFile)) { + return JSON.parse(gunzipSync(await fsExtra.readFile(blockMapFile)).toString()) } } catch (e: any) { this._logger.warn(`Cannot parse blockmap "${blockMapFile}", error: ${e}`) diff --git a/packages/electron-updater/src/DownloadedUpdateHelper.ts b/packages/electron-updater/src/DownloadedUpdateHelper.ts index 0844727b0ae..eb4aa90d2cd 100644 --- a/packages/electron-updater/src/DownloadedUpdateHelper.ts +++ b/packages/electron-updater/src/DownloadedUpdateHelper.ts @@ -5,7 +5,7 @@ import { createReadStream } from "fs" import * as isEqual from "lodash.isequal" import { ResolvedUpdateFileInfo } from "./types.js" import { Logger } from "./types.js" -import { pathExists, readJson, emptyDir, outputJson, unlink } from "fs-extra" +import * as fsExtra from "fs-extra" import * as path from "path" /** @private **/ @@ -39,7 +39,7 @@ export class DownloadedUpdateHelper { if (this.versionInfo != null && this.file === updateFile && this.fileInfo != null) { // update has already been downloaded from this running instance // check here only existence, not checksum - if (isEqual(this.versionInfo, updateInfo) && isEqual(this.fileInfo.info, fileInfo.info) && (await pathExists(updateFile))) { + if (isEqual(this.versionInfo, updateInfo) && isEqual(this.fileInfo.info, fileInfo.info) && (await fsExtra.pathExists(updateFile))) { return updateFile } else { return null @@ -75,7 +75,7 @@ export class DownloadedUpdateHelper { } if (isSaveCache) { - await outputJson(this.getUpdateInfoFile(), this._downloadedFileInfo) + await fsExtra.outputJson(this.getUpdateInfoFile(), this._downloadedFileInfo) } } @@ -90,7 +90,7 @@ export class DownloadedUpdateHelper { private async cleanCacheDirForPendingUpdate(): Promise { try { // remove stale data - await emptyDir(this.cacheDirForPendingUpdate) + await fsExtra.emptyDir(this.cacheDirForPendingUpdate) } catch (_ignore) { // ignore } @@ -104,14 +104,14 @@ export class DownloadedUpdateHelper { private async getValidCachedUpdateFile(fileInfo: ResolvedUpdateFileInfo, logger: Logger): Promise { const updateInfoFilePath: string = this.getUpdateInfoFile() - const doesUpdateInfoFileExist = await pathExists(updateInfoFilePath) + const doesUpdateInfoFileExist = await fsExtra.pathExists(updateInfoFilePath) if (!doesUpdateInfoFileExist) { return null } let cachedInfo: CachedUpdateInfo try { - cachedInfo = await readJson(updateInfoFilePath) + cachedInfo = await fsExtra.readJson(updateInfoFilePath) } catch (error: any) { let message = `No cached update info available` if (error.code !== "ENOENT") { @@ -138,7 +138,7 @@ export class DownloadedUpdateHelper { } const updateFile = path.join(this.cacheDirForPendingUpdate, cachedInfo.fileName) - if (!(await pathExists(updateFile))) { + if (!(await fsExtra.pathExists(updateFile))) { logger.info("Cached update file doesn't exist") return null } @@ -185,7 +185,7 @@ export async function createTempUpdateFile(name: string, cacheDir: string, log: let result = path.join(cacheDir, name) for (let i = 0; i < 3; i++) { try { - await unlink(result) + await fsExtra.unlink(result) return result } catch (e: any) { if (e.code === "ENOENT") { diff --git a/packages/electron-updater/src/MacUpdater.ts b/packages/electron-updater/src/MacUpdater.ts index 6d324a61b62..92f24a06542 100644 --- a/packages/electron-updater/src/MacUpdater.ts +++ b/packages/electron-updater/src/MacUpdater.ts @@ -1,5 +1,5 @@ import { AllPublishOptions, newError, safeStringifyJson } from "builder-util-runtime" -import { pathExistsSync, stat, copyFile } from "fs-extra" +import * as fsExtra from "fs-extra" import { createReadStream } from "fs" import * as path from "path" import { createServer, IncomingMessage, Server, ServerResponse } from "http" @@ -103,7 +103,7 @@ export class MacUpdater extends AppUpdater { task: async (destinationFile, downloadOptions) => { const cachedUpdateFilePath = path.join(this.downloadedUpdateHelper!.cacheDir, CURRENT_MAC_APP_ZIP_FILE_NAME) const canDifferentialDownload = () => { - if (!pathExistsSync(cachedUpdateFilePath)) { + if (!fsExtra.pathExistsSync(cachedUpdateFilePath)) { log.info("Unable to locate previous update.zip for differential download (is this first install?), falling back to full download") return false } @@ -122,7 +122,7 @@ export class MacUpdater extends AppUpdater { if (!downloadUpdateOptions.disableDifferentialDownload) { try { const cachedUpdateFilePath = path.join(this.downloadedUpdateHelper!.cacheDir, CURRENT_MAC_APP_ZIP_FILE_NAME) - await copyFile(event.downloadedFile, cachedUpdateFilePath) + await fsExtra.copyFile(event.downloadedFile, cachedUpdateFilePath) } catch (error: any) { this._logger.warn(`Unable to copy file for caching for future differential downloads: ${error.message}`) } @@ -134,7 +134,7 @@ export class MacUpdater extends AppUpdater { private async updateDownloaded(zipFileInfo: ResolvedUpdateFileInfo, event: UpdateDownloadedEvent): Promise> { const downloadedFile = event.downloadedFile - const updateFileSize = zipFileInfo.info.size ?? (await stat(downloadedFile)).size + const updateFileSize = zipFileInfo.info.size ?? (await fsExtra.stat(downloadedFile)).size const log = this._logger const logContext = `fileToProxy=${zipFileInfo.url.href}` diff --git a/packages/electron-updater/src/NsisUpdater.ts b/packages/electron-updater/src/NsisUpdater.ts index 70966a1fb37..977979a68ab 100644 --- a/packages/electron-updater/src/NsisUpdater.ts +++ b/packages/electron-updater/src/NsisUpdater.ts @@ -8,7 +8,7 @@ import { FileWithEmbeddedBlockMapDifferentialDownloader } from "./differentialDo import { DOWNLOAD_PROGRESS } from "./types.js" import { VerifyUpdateCodeSignature } from "./main.js" import { findFile, Provider } from "./providers/Provider.js" -import { unlink } from "fs-extra" +import * as fsExtra from "fs-extra" import { verifySignature } from "./windowsExecutableCodeSignatureVerifier.js" import { URL } from "url" @@ -90,7 +90,7 @@ export class NsisUpdater extends BaseUpdater { }) } catch (e: any) { try { - await unlink(packageFile) + await fsExtra.unlink(packageFile) } catch (_ignored) { // ignore } diff --git a/packages/electron-updater/src/differentialDownloader/DifferentialDownloader.ts b/packages/electron-updater/src/differentialDownloader/DifferentialDownloader.ts index f92f8e84caa..4fe69058223 100644 --- a/packages/electron-updater/src/differentialDownloader/DifferentialDownloader.ts +++ b/packages/electron-updater/src/differentialDownloader/DifferentialDownloader.ts @@ -1,6 +1,6 @@ import { BlockMapDataHolder, createHttpError, DigestTransform, HttpExecutor, configureRequestUrl, configureRequestOptions } from "builder-util-runtime" import { BlockMap } from "builder-util-runtime" -import { close, open } from "fs-extra" +import * as fsExtra from "fs-extra" import { createWriteStream } from "fs" import { OutgoingHttpHeaders, RequestOptions } from "http" import { ProgressInfo, CancellationToken } from "builder-util-runtime" @@ -90,7 +90,7 @@ export abstract class DifferentialDownloader { const closeFiles = (): Promise> => { return Promise.all( fdList.map(openedFile => { - return close(openedFile.descriptor).catch((e: any) => { + return fsExtra.close(openedFile.descriptor).catch((e: any) => { this.logger.error(`cannot close file "${openedFile.path}": ${e}`) }) }) @@ -121,9 +121,9 @@ export abstract class DifferentialDownloader { } private async doDownloadFile(tasks: Array, fdList: Array): Promise { - const oldFileFd = await open(this.options.oldFile, "r") + const oldFileFd = await fsExtra.open(this.options.oldFile, "r") fdList.push({ descriptor: oldFileFd, path: this.options.oldFile }) - const newFileFd = await open(this.options.newFile, "w") + const newFileFd = await fsExtra.open(this.options.newFile, "w") fdList.push({ descriptor: newFileFd, path: this.options.newFile }) const fileOut = createWriteStream(this.options.newFile, { fd: newFileFd }) await new Promise((resolve, reject) => { diff --git a/packages/electron-updater/src/differentialDownloader/FileWithEmbeddedBlockMapDifferentialDownloader.ts b/packages/electron-updater/src/differentialDownloader/FileWithEmbeddedBlockMapDifferentialDownloader.ts index bbe2707f8b1..16619dce902 100644 --- a/packages/electron-updater/src/differentialDownloader/FileWithEmbeddedBlockMapDifferentialDownloader.ts +++ b/packages/electron-updater/src/differentialDownloader/FileWithEmbeddedBlockMapDifferentialDownloader.ts @@ -1,5 +1,5 @@ import { BlockMap } from "builder-util-runtime" -import { close, fstat, open, read } from "fs-extra" +import * as fsExtra from "fs-extra" import { DifferentialDownloader } from "./DifferentialDownloader.js" import { inflateRawSync } from "zlib" @@ -19,19 +19,19 @@ function readBlockMap(data: Buffer): BlockMap { } async function readEmbeddedBlockMapData(file: string): Promise { - const fd = await open(file, "r") + const fd = await fsExtra.open(file, "r") try { - const fileSize = (await fstat(fd)).size + const fileSize = (await fsExtra.fstat(fd)).size const sizeBuffer = Buffer.allocUnsafe(4) - await read(fd, sizeBuffer, 0, sizeBuffer.length, fileSize - sizeBuffer.length) + await fsExtra.read(fd, sizeBuffer, 0, sizeBuffer.length, fileSize - sizeBuffer.length) const dataBuffer = Buffer.allocUnsafe(sizeBuffer.readUInt32BE(0)) - await read(fd, dataBuffer, 0, dataBuffer.length, fileSize - sizeBuffer.length - dataBuffer.length) - await close(fd) + await fsExtra.read(fd, dataBuffer, 0, dataBuffer.length, fileSize - sizeBuffer.length - dataBuffer.length) + await fsExtra.close(fd) return readBlockMap(dataBuffer) } catch (e: any) { - await close(fd) + await fsExtra.close(fd) throw e } } diff --git a/packages/electron-updater/src/main.ts b/packages/electron-updater/src/main.ts index e484d59ba61..b59dc9012bb 100644 --- a/packages/electron-updater/src/main.ts +++ b/packages/electron-updater/src/main.ts @@ -1,4 +1,4 @@ -import { existsSync, readFileSync } from "fs-extra" +import * as fsExtra from "fs-extra" import * as path from "path" import { AppUpdater } from "./AppUpdater.js" @@ -39,10 +39,10 @@ function doLoadAutoUpdater(): AppUpdater { _autoUpdater = new (require("./AppImageUpdater").AppImageUpdater)() try { const identity = path.join(process.resourcesPath, "package-type") - if (!existsSync(identity)) { + if (!fsExtra.existsSync(identity)) { return _autoUpdater } - const fileType = readFileSync(identity).toString().trim() + const fileType = fsExtra.readFileSync(identity).toString().trim() switch (fileType) { case "deb": _autoUpdater = new (require("./DebUpdater").DebUpdater)() diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 68866b695ff..caaa3731435 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -75,8 +75,8 @@ importers: specifier: ^5.2.1 version: 5.5.4(eslint-config-prettier@9.1.2(eslint@9.39.2(jiti@2.4.2)))(eslint@9.39.2(jiti@2.4.2))(prettier@3.7.4) fs-extra: - specifier: 10.1.0 - version: 10.1.0 + specifier: ^11.3.4 + version: 11.3.4 is-ci: specifier: ^4.1.0 version: 4.1.0 @@ -165,8 +165,8 @@ importers: specifier: workspace:* version: link:../electron-publish fs-extra: - specifier: ^10.1.0 - version: 10.1.0 + specifier: ^11.3.4 + version: 11.3.4 hosted-git-info: specifier: ^4.1.0 version: 4.1.0 @@ -331,8 +331,8 @@ importers: specifier: ^4.3.4 version: 4.4.3 fs-extra: - specifier: ^10.1.0 - version: 10.1.0 + specifier: ^11.3.4 + version: 11.3.4 http-proxy-agent: specifier: ^7.0.0 version: 7.0.2 @@ -399,8 +399,8 @@ importers: specifier: workspace:* version: link:../builder-util fs-extra: - specifier: ^10.1.0 - version: 10.1.0 + specifier: ^11.3.4 + version: 11.3.4 iconv-lite: specifier: ^0.6.2 version: 0.6.3 @@ -443,8 +443,8 @@ importers: specifier: workspace:* version: link:../dmg-builder fs-extra: - specifier: ^10.1.0 - version: 10.1.0 + specifier: ^11.3.4 + version: 11.3.4 lazy-val: specifier: ^1.0.5 version: 1.0.5 @@ -523,8 +523,8 @@ importers: specifier: ^4.0.5 version: 4.0.5 fs-extra: - specifier: ^10.1.0 - version: 10.1.0 + specifier: ^11.3.4 + version: 11.3.4 lazy-val: specifier: ^1.0.5 version: 1.0.5 @@ -542,8 +542,8 @@ importers: specifier: workspace:* version: link:../builder-util-runtime fs-extra: - specifier: ^10.1.0 - version: 10.1.0 + specifier: ^11.3.4 + version: 11.3.4 js-yaml: specifier: ^4.1.0 version: 4.1.1 @@ -627,8 +627,8 @@ importers: specifier: 5.4.0 version: 5.4.0 fs-extra: - specifier: ^10.1.0 - version: 10.1.0 + specifier: ^11.3.4 + version: 11.3.4 js-yaml: specifier: ^4.1.0 version: 4.1.1 @@ -3425,8 +3425,8 @@ packages: resolution: {integrity: sha512-oRXApq54ETRj4eMiFzGnHWGy+zo5raudjuxN0b8H7s/RU2oW0Wvsx9O0ACRN/kRq9E8Vu/ReskGB5o3ji+FzHQ==} engines: {node: '>=12'} - fs-extra@11.3.0: - resolution: {integrity: sha512-Z4XaCL6dUDHfP/jT25jJKMmtxvuwbkrD1vNSMFlo9lNLY2c5FHYSQgHPRZUjAB26TpDEoW9HCOgplrdbaPV/ew==} + fs-extra@11.3.4: + resolution: {integrity: sha512-CTXd6rk/M3/ULNQj8FBqBWHYBVYybQ3VPBw0xGKFe3tuH7ytT6ACnvzpIQ3UZtB8yvUKC2cXn1a+x+5EVQLovA==} engines: {node: '>=14.14'} fs-extra@7.0.1: @@ -6517,7 +6517,7 @@ snapshots: '@malept/cross-spawn-promise': 2.0.0 debug: 4.4.3 dir-compare: 4.2.0 - fs-extra: 11.3.0 + fs-extra: 11.3.4 minimatch: 9.0.5 plist: 3.1.0 transitivePeerDependencies: @@ -6527,7 +6527,7 @@ snapshots: dependencies: cross-dirname: 0.1.0 debug: 4.4.3 - fs-extra: 11.3.0 + fs-extra: 11.3.4 minimist: 1.2.8 postject: 1.0.0-alpha.6 transitivePeerDependencies: @@ -8399,7 +8399,7 @@ snapshots: jsonfile: 6.1.0 universalify: 2.0.1 - fs-extra@11.3.0: + fs-extra@11.3.4: dependencies: graceful-fs: 4.2.11 jsonfile: 6.1.0 @@ -10001,7 +10001,7 @@ snapshots: dependencies: bluebird: 3.7.2 duplexer2: 0.1.4 - fs-extra: 11.3.0 + fs-extra: 11.3.4 graceful-fs: 4.2.11 node-int64: 0.4.0 diff --git a/scripts/renderer/src/typedoc2html.ts b/scripts/renderer/src/typedoc2html.ts index 408724f19c5..9605cccb467 100644 --- a/scripts/renderer/src/typedoc2html.ts +++ b/scripts/renderer/src/typedoc2html.ts @@ -1,4 +1,4 @@ -import { copy, exists } from "fs-extra" +import * as fsExtra from "fs-extra" import { rm } from "fs/promises" import * as path from "path" import * as process from "process" @@ -12,14 +12,14 @@ async function main() { console.log("copying from", origin, dest) const siteDir = path.resolve(process.cwd(), "site") - if (await exists(siteDir)) { + if (await fsExtra.exists(siteDir)) { await rm(siteDir, { recursive: true }) } - if (await exists(dest)) { + if (await fsExtra.exists(dest)) { await rm(dest, { recursive: true }) } - await copy(origin, dest) - await copy(path.resolve(process.cwd(), "./README.md"), path.resolve(dest, "README.md")) + await fsExtra.copy(origin, dest) + await fsExtra.copy(path.resolve(process.cwd(), "./README.md"), path.resolve(dest, "README.md")) const typedocConfig: Partial = { options: "typedoc.config.js", diff --git a/test/package.json b/test/package.json index d9b521a2c35..db027513e34 100644 --- a/test/package.json +++ b/test/package.json @@ -17,7 +17,7 @@ "electron-publish": "workspace:*", "electron-updater": "workspace:*", "electron-winstaller": "5.4.0", - "fs-extra": "^10.1.0", + "fs-extra": "^11.3.4", "js-yaml": "^4.1.0", "lazy-val": "^1.0.5", "path-sort": "^0.1.0", diff --git a/test/src/BuildTest.ts b/test/src/BuildTest.ts index 4574d6e7994..457d04fa2dd 100644 --- a/test/src/BuildTest.ts +++ b/test/src/BuildTest.ts @@ -3,7 +3,7 @@ import { doMergeConfigs } from "app-builder-lib" import { Arch, createTargets, DIR_TARGET, Platform } from "electron-builder" import { createYargs } from "electron-builder" import { promises as fs } from "fs" -import { outputFile, outputJson } from "fs-extra" +import * as fsExtra from "fs-extra" import * as path from "path" import { app, appTwo, appTwoThrows, assertPack, getFixtureDir, linuxDirTarget, modifyPackageJson, packageJson, toSystemIndependentPath } from "./helpers/packTester.js" import { ELECTRON_VERSION } from "./helpers/testConfig.js" @@ -161,7 +161,7 @@ it.ifNotWindows("electron version from electron-prebuilt dependency", ({ expect data.devDependencies = {} }) return () => - outputJson(path.join(projectDir, "node_modules", "electron-prebuilt", "package.json"), { + fsExtra.outputJson(path.join(projectDir, "node_modules", "electron-prebuilt", "package.json"), { version: ELECTRON_VERSION, }) }, @@ -182,7 +182,7 @@ test.ifNotWindows("electron version from electron dependency", ({ expect }) => data.devDependencies = {} }) return () => - outputJson(path.join(projectDir, "node_modules", "electron", "package.json"), { + fsExtra.outputJson(path.join(projectDir, "node_modules", "electron", "package.json"), { version: ELECTRON_VERSION, }) }, @@ -399,8 +399,8 @@ test("smart unpack local module with dll file", ({ expect }) => { projectDirCreated: async (projectDir, tmpDir) => { const tmpPath = await tmpDir.getTempDir() const localPath = path.join(tmpPath, "foo") - await outputFile(path.join(localPath, "package.json"), `{"name":"foo","version":"9.0.0","main":"index.js","license":"MIT"}`) - await outputFile(path.join(localPath, "test.dll"), `test`) + await fsExtra.outputFile(path.join(localPath, "package.json"), `{"name":"foo","version":"9.0.0","main":"index.js","license":"MIT"}`) + await fsExtra.outputFile(path.join(localPath, "test.dll"), `test`) await modifyPackageJson(projectDir, data => { data.dependencies = { debug: "3.1.0", diff --git a/test/src/HoistedNodeModuleTest.ts b/test/src/HoistedNodeModuleTest.ts index dd1f9c81de2..4b7befaffe4 100644 --- a/test/src/HoistedNodeModuleTest.ts +++ b/test/src/HoistedNodeModuleTest.ts @@ -4,7 +4,7 @@ import { Arch, DIR_TARGET, Platform } from "electron-builder" import * as path from "path" import { appTwoThrows, assertPack, linuxDirTarget, modifyPackageJson, verifyAsarFileTree } from "./helpers/packTester" import { ELECTRON_VERSION } from "./helpers/testConfig" -import { copy, mkdir, outputFile, readJson, rm, symlink, writeJson } from "fs-extra" +import * as fsExtra from "fs-extra" describe.ifNotWindows("node_module collectors", () => { test("yarn workspace", ({ expect }) => @@ -112,16 +112,16 @@ describe.ifNotWindows("node_module collectors", () => { } }) - await mkdir(path.join(projectDir, "app")) - await copy(path.join(projectDir, "index.html"), path.join(projectDir, "app", "index.html")) - await copy(path.join(projectDir, "index.js"), path.join(projectDir, "app", "index.js")) + await fsExtra.mkdir(path.join(projectDir, "app")) + await fsExtra.copy(path.join(projectDir, "index.html"), path.join(projectDir, "app", "index.html")) + await fsExtra.copy(path.join(projectDir, "index.js"), path.join(projectDir, "app", "index.js")) // delete package.json devDependencies - const packageJson = await readJson(path.join(projectDir, "package.json")) + const packageJson = await fsExtra.readJson(path.join(projectDir, "package.json")) delete packageJson.devDependencies delete packageJson.build delete packageJson.scripts - await writeJson(path.join(projectDir, "app", "package.json"), packageJson) + await fsExtra.writeJson(path.join(projectDir, "app", "package.json"), packageJson) await spawn("yarn", ["install"], { cwd: projectDir, @@ -170,17 +170,17 @@ describe.ifNotWindows("node_module collectors", () => { stdio: "ignore", }) - await mkdir(path.join(projectDir, "app")) - await rm(path.join(projectDir, "app", "node_modules"), { recursive: true, force: true }) - await copy(path.join(projectDir, "index.html"), path.join(projectDir, "app", "index.html")) - await copy(path.join(projectDir, "index.js"), path.join(projectDir, "app", "index.js")) + await fsExtra.mkdir(path.join(projectDir, "app")) + await fsExtra.rm(path.join(projectDir, "app", "node_modules"), { recursive: true, force: true }) + await fsExtra.copy(path.join(projectDir, "index.html"), path.join(projectDir, "app", "index.html")) + await fsExtra.copy(path.join(projectDir, "index.js"), path.join(projectDir, "app", "index.js")) // delete package.json devDependencies - const packageJson = await readJson(path.join(projectDir, "package.json")) + const packageJson = await fsExtra.readJson(path.join(projectDir, "package.json")) delete packageJson.devDependencies delete packageJson.build delete packageJson.scripts - await writeJson(path.join(projectDir, "app", "package.json"), packageJson) + await fsExtra.writeJson(path.join(projectDir, "app", "package.json"), packageJson) }, packed: context => verifyAsarFileTree(expect, context.getResources(Platform.LINUX)), } @@ -225,7 +225,7 @@ describe.ifNotWindows("node_module collectors", () => { { packageManager: PM.YARN, projectDirCreated: async projectDir => { - await symlink(invalidPath, path.join(projectDir, "app", "badlink")) + await fsExtra.symlink(invalidPath, path.join(projectDir, "app", "badlink")) }, }, error => { @@ -400,7 +400,7 @@ describe.ifNotWindows("node_module collectors", () => { storeDepsLockfileSnapshot: true, packageManager: PM.YARN, projectDirCreated: async projectDir => { - await outputFile(path.join(projectDir, "node_modules", "foo", "package.json"), `{"name":"foo","version":"9.0.0","main":"index.js","license":"MIT"}`) + await fsExtra.outputFile(path.join(projectDir, "node_modules", "foo", "package.json"), `{"name":"foo","version":"9.0.0","main":"index.js","license":"MIT"}`) await modifyPackageJson(projectDir, data => { data.dependencies = { debug: "3.1.0", @@ -555,7 +555,7 @@ describe.ifNotWindows("node_module collectors", () => { dayjs: "1.11.13", } }), - outputFile(path.join(projectDir, ".npmrc"), "node-linker=hoisted"), + fsExtra.outputFile(path.join(projectDir, ".npmrc"), "node-linker=hoisted"), ]) }, packed: context => verifyAsarFileTree(expect, context.getResources(Platform.LINUX)), @@ -578,7 +578,7 @@ describe.ifNotWindows("node_module collectors", () => { dayjs: "1.11.13", } }), - outputFile(path.join(projectDir, ".npmrc"), "shamefully-hoist=true"), + fsExtra.outputFile(path.join(projectDir, ".npmrc"), "shamefully-hoist=true"), ]) }, packed: context => verifyAsarFileTree(expect, context.getResources(Platform.LINUX)), @@ -601,7 +601,7 @@ describe.ifNotWindows("node_module collectors", () => { dayjs: "1.11.13", } }), - outputFile(path.join(projectDir, ".npmrc"), "public-hoist-pattern=*"), + fsExtra.outputFile(path.join(projectDir, ".npmrc"), "public-hoist-pattern=*"), ]) }, packed: context => verifyAsarFileTree(expect, context.getResources(Platform.LINUX)), diff --git a/test/src/PublishManagerTest.ts b/test/src/PublishManagerTest.ts index 4375a8b6b25..fd3f5ee711c 100644 --- a/test/src/PublishManagerTest.ts +++ b/test/src/PublishManagerTest.ts @@ -1,6 +1,6 @@ import { GenericServerOptions, GithubOptions, KeygenOptions, SpacesOptions } from "builder-util-runtime" import { Arch, createTargets, Platform } from "electron-builder" -import { outputFile } from "fs-extra" +import * as fsExtra from "fs-extra" import * as path from "path" import { assertThat } from "./helpers/fileAssert.js" import { app, checkDirContents } from "./helpers/packTester.js" @@ -149,7 +149,7 @@ test.ifNotWindows("custom provider", ({ expect }) => { publish: "never", projectDirCreated: projectDir => - outputFile( + fsExtra.outputFile( path.join(projectDir, "build/electron-publisher-custom.js"), `class Publisher { async upload(task) { diff --git a/test/src/extraMetadataTest.ts b/test/src/extraMetadataTest.ts index aadd4718ec1..5fba1ce28d6 100644 --- a/test/src/extraMetadataTest.ts +++ b/test/src/extraMetadataTest.ts @@ -1,7 +1,7 @@ import { readAsarJson } from "app-builder-lib" import { Platform } from "electron-builder" import { coerceTypes } from "electron-builder" -import { readJson } from "fs-extra" +import * as fsExtra from "fs-extra" import * as path from "path" import { assertThat } from "./helpers/fileAssert.js" import { app, linuxDirTarget, modifyPackageJson } from "./helpers/packTester.js" @@ -44,7 +44,7 @@ function createExtraMetadataTest(expect: ExpectStatic, asar: boolean) { if (asar) { expect(await readAsarJson(path.join(context.getResources(Platform.LINUX), "app.asar"), "package.json")).toMatchSnapshot() } else { - expect(await readJson(path.join(context.getResources(Platform.LINUX), "app", "package.json"))).toMatchSnapshot() + expect(await fsExtra.readJson(path.join(context.getResources(Platform.LINUX), "app", "package.json"))).toMatchSnapshot() } }, } diff --git a/test/src/filesTest.ts b/test/src/filesTest.ts index 88f6b376546..176f7d40364 100644 --- a/test/src/filesTest.ts +++ b/test/src/filesTest.ts @@ -1,9 +1,9 @@ import { TmpDir, archFromString, copyDir } from "builder-util" import { DIR_TARGET, Platform } from "electron-builder" -import { outputFile } from "fs-extra" +import * as fsExtra from "fs-extra" import * as fs from "fs/promises" import * as path from "path" -import { Mode, RWX } from "stat-mode" +import statMode from "stat-mode" import { assertThat } from "./helpers/fileAssert.js" import { app, appThrows, assertPack, checkDirContents, linuxDirTarget, modifyPackageJson } from "./helpers/packTester.js" import { ExpectStatic } from "vitest" @@ -35,10 +35,10 @@ test.ifNotWindows("files", ({ expect }) => { projectDirCreated: projectDir => Promise.all([ - outputFile(path.join(projectDir, "ignoreMe", "foo"), "data"), - outputFile(path.join(projectDir, "ignoreEmptyDir", "bar"), "data"), - outputFile(path.join(projectDir, "test.h"), "test that"), - outputFile(path.join(projectDir, "dist/electron/foo.js"), "data"), + fsExtra.outputFile(path.join(projectDir, "ignoreMe", "foo"), "data"), + fsExtra.outputFile(path.join(projectDir, "ignoreEmptyDir", "bar"), "data"), + fsExtra.outputFile(path.join(projectDir, "test.h"), "test that"), + fsExtra.outputFile(path.join(projectDir, "dist/electron/foo.js"), "data"), ]), packed: context => { const resources = path.join(context.getResources(Platform.LINUX), "app") @@ -100,7 +100,7 @@ test.ifNotWindows("map resources", ({ expect }) => }, }, { - projectDirCreated: projectDir => Promise.all([outputFile(path.join(projectDir, "foo", "old"), "data"), outputFile(path.join(projectDir, "license.txt"), "data")]), + projectDirCreated: projectDir => Promise.all([fsExtra.outputFile(path.join(projectDir, "foo", "old"), "data"), fsExtra.outputFile(path.join(projectDir, "license.txt"), "data")]), packed: context => { const resources = context.getResources(Platform.LINUX) return Promise.all([ @@ -132,13 +132,13 @@ async function doExtraResourcesTest(expect: ExpectStatic, platform: Platform) { { projectDirCreated: async projectDir => { return Promise.all([ - outputFile(path.resolve(projectDir, "foo/nameWithoutDot"), "nameWithoutDot"), - outputFile(path.resolve(projectDir, "bar/hello.txt"), "data"), - outputFile(path.resolve(projectDir, "dir-relative/f.txt"), "data"), - outputFile(path.resolve(projectDir, `bar/${process.arch}.txt`), "data"), - outputFile(path.resolve(projectDir, `${osName}/${process.arch}.txt`), "data"), - outputFile(path.resolve(projectDir, "platformSpecificR"), "platformSpecificR"), - outputFile(path.resolve(projectDir, "ignoreMe.txt"), "ignoreMe"), + fsExtra.outputFile(path.resolve(projectDir, "foo/nameWithoutDot"), "nameWithoutDot"), + fsExtra.outputFile(path.resolve(projectDir, "bar/hello.txt"), "data"), + fsExtra.outputFile(path.resolve(projectDir, "dir-relative/f.txt"), "data"), + fsExtra.outputFile(path.resolve(projectDir, `bar/${process.arch}.txt`), "data"), + fsExtra.outputFile(path.resolve(projectDir, `${osName}/${process.arch}.txt`), "data"), + fsExtra.outputFile(path.resolve(projectDir, "platformSpecificR"), "platformSpecificR"), + fsExtra.outputFile(path.resolve(projectDir, "ignoreMe.txt"), "ignoreMe"), ]) }, packed: async context => { @@ -188,14 +188,14 @@ test.ifNotWindows("extraResources - two-package", ({ expect }) => { { projectDirCreated: projectDir => { return Promise.all([ - outputFile(path.join(projectDir, "foo/nameWithoutDot"), "nameWithoutDot"), - outputFile(path.join(projectDir, "bar/hello.txt"), "data", { mode: 0o400 }), - outputFile(path.join(projectDir, `bar/${process.arch}.txt`), "data"), - outputFile(path.join(projectDir, `${osName}/${process.arch}.txt`), "data"), - outputFile(path.join(projectDir, "platformSpecificR"), "platformSpecificR"), - outputFile(path.join(projectDir, "ignoreMe.txt"), "ignoreMe"), - outputFile(path.join(projectDir, "executable"), "executable", { mode: 0o755 }), - outputFile(path.join(projectDir, "executableOnlyOwner"), "executable", { mode: 0o740 }), + fsExtra.outputFile(path.join(projectDir, "foo/nameWithoutDot"), "nameWithoutDot"), + fsExtra.outputFile(path.join(projectDir, "bar/hello.txt"), "data", { mode: 0o400 }), + fsExtra.outputFile(path.join(projectDir, `bar/${process.arch}.txt`), "data"), + fsExtra.outputFile(path.join(projectDir, `${osName}/${process.arch}.txt`), "data"), + fsExtra.outputFile(path.join(projectDir, "platformSpecificR"), "platformSpecificR"), + fsExtra.outputFile(path.join(projectDir, "ignoreMe.txt"), "ignoreMe"), + fsExtra.outputFile(path.join(projectDir, "executable"), "executable", { mode: 0o755 }), + fsExtra.outputFile(path.join(projectDir, "executableOnlyOwner"), "executable", { mode: 0o740 }), ]) }, packed: async context => { @@ -236,7 +236,7 @@ test.ifNotWindows("postpone symlink", async () => { const source = await tmpDir.getTempDir() const aSourceFile = path.join(source, "z", "Z") const bSourceFileLink = path.join(source, "B") - await outputFile(aSourceFile, "test") + await fsExtra.outputFile(aSourceFile, "test") await fs.symlink(aSourceFile, bSourceFileLink) const dest = await tmpDir.getTempDir() @@ -246,15 +246,15 @@ test.ifNotWindows("postpone symlink", async () => { }) async function allCan(file: string, execute: boolean) { - const mode = new Mode(await fs.stat(file)) + const mode = new statMode.Mode(await fs.stat(file)) - function checkExecute(value: RWX) { + function checkExecute(value: statMode.RWX) { if (value.execute !== execute) { throw new Error(`${file} is ${execute ? "not " : ""}executable`) } } - function checkRead(value: RWX) { + function checkRead(value: statMode.RWX) { if (!value.read) { throw new Error(`${file} is not readable`) } diff --git a/test/src/globTest.ts b/test/src/globTest.ts index 69cb7fa1f51..341053fd6fa 100644 --- a/test/src/globTest.ts +++ b/test/src/globTest.ts @@ -1,7 +1,7 @@ import { Platform } from "app-builder-lib" import { readAsar } from "app-builder-lib" import { PM } from "app-builder-lib" -import { outputFile } from "fs-extra" +import * as fsExtra from "fs-extra" import * as fs from "fs/promises" import * as path from "path" import { ExpectStatic } from "vitest" @@ -11,11 +11,11 @@ import { verifySmartUnpack } from "./helpers/verifySmartUnpack.js" async function createFiles(appDir: string) { await Promise.all([ - outputFile(path.join(appDir, "assets", "file1"), "data"), - outputFile(path.join(appDir, "assets", "file2"), "data"), - outputFile(path.join(appDir, "assets", "subdir", "file3"), "data"), - outputFile(path.join(appDir, "b2", "file"), "data"), - outputFile(path.join(appDir, "do-not-unpack-dir", "file.json"), "{}").then(() => fs.writeFile(path.join(appDir, "do-not-unpack-dir", "must-be-not-unpacked"), "{}")), + fsExtra.outputFile(path.join(appDir, "assets", "file1"), "data"), + fsExtra.outputFile(path.join(appDir, "assets", "file2"), "data"), + fsExtra.outputFile(path.join(appDir, "assets", "subdir", "file3"), "data"), + fsExtra.outputFile(path.join(appDir, "b2", "file"), "data"), + fsExtra.outputFile(path.join(appDir, "do-not-unpack-dir", "file.json"), "{}").then(() => fs.writeFile(path.join(appDir, "do-not-unpack-dir", "must-be-not-unpacked"), "{}")), ]) const dir = path.join(appDir, "do-not-unpack-dir", "dir-2", "dir-3", "dir-3") @@ -84,7 +84,7 @@ test.ifNotWindows("asarUnpack and files ignore", ({ expect }) => { }, }, { - projectDirCreated: projectDir => outputFile(path.join(projectDir, "test/ffprobe-static/bin/darwin/x64/ffprobe"), "data"), + projectDirCreated: projectDir => fsExtra.outputFile(path.join(projectDir, "test/ffprobe-static/bin/darwin/x64/ffprobe"), "data"), packed: async context => { const resourceDir = context.getResources(Platform.LINUX) await Promise.all([assertThat(expect, path.join(resourceDir, "app.asar.unpacked", "test/ffprobe-static/bin/darwin/x64/ffprobe")).doesNotExist()]) @@ -123,7 +123,7 @@ test.skip("outside link", ({ expect }) => { projectDirCreated: async (projectDir, tmpDir) => { const tempDir = await tmpDir.getTempDir() - await outputFile(path.join(tempDir, "foo"), "data") + await fsExtra.outputFile(path.join(tempDir, "foo"), "data") await fs.symlink(tempDir, path.join(projectDir, "o-dir")) }, }, diff --git a/test/src/helpers/packTester.ts b/test/src/helpers/packTester.ts index 5f0c5be2dda..3361b1486cb 100644 --- a/test/src/helpers/packTester.ts +++ b/test/src/helpers/packTester.ts @@ -9,7 +9,7 @@ import { CancellationToken, UpdateFileInfo } from "builder-util-runtime" import { Arch, ArtifactCreated, Configuration, DIR_TARGET, getArchSuffix, MacOsTargetName, Packager, PackagerOptions, Platform, Target } from "electron-builder" import { convertVersion } from "electron-winstaller" import { PublishPolicy } from "electron-publish" -import { copyFile, emptyDir, mkdir, writeJson } from "fs-extra" +import * as fsExtra from "fs-extra" import * as fs from "fs/promises" import { load } from "js-yaml" import * as path from "path" @@ -155,7 +155,7 @@ export async function assertPack(expect: ExpectStatic, fixtureName: string, pack // non-macOS test uses the same dir as macOS test, but we cannot share node_modules (because tests executed in parallel) const dir = customTmpDir == null ? await tmpDir.createTempDir({ prefix: "test_project" }) : path.resolve(customTmpDir) if (customTmpDir != null) { - await emptyDir(dir) + await fsExtra.emptyDir(dir) log.info({ customTmpDir }, "custom temp dir used") } @@ -242,7 +242,7 @@ export async function assertPack(expect: ExpectStatic, fixtureName: string, pack const shouldUpdateLockfiles = !!process.env.UPDATE_LOCKFILE_FIXTURES && !!checkOptions.storeDepsLockfileSnapshot // check for lockfile fixture so we can use `--frozen-lockfile` if ((await exists(testFixtureLockfile)) && !shouldUpdateLockfiles) { - await copyFile(testFixtureLockfile, destLockfile) + await fsExtra.copyFile(testFixtureLockfile, destLockfile) lockfileFixtureApplied = true } @@ -277,9 +277,9 @@ export async function assertPack(expect: ExpectStatic, fixtureName: string, pack if (shouldUpdateLockfiles) { const fixtureDir = path.dirname(testFixtureLockfile) if (!(await exists(fixtureDir))) { - await mkdir(fixtureDir) + await fsExtra.mkdir(fixtureDir) } - await copyFile(destLockfile, testFixtureLockfile) + await fsExtra.copyFile(destLockfile, testFixtureLockfile) } if (packagerOptions.projectDir != null) { @@ -758,7 +758,7 @@ export async function modifyPackageJson(projectDir: string, task: (data: any) => await fs.unlink(file) await fs.writeFile(path.join(projectDir, ".yarnrc.yml"), "nodeLinker: node-modules") - return await writeJson(file, data, { spaces: 2 }) + return await fsExtra.writeJson(file, data, { spaces: 2 }) } export function platform(platform: Platform): PackagerOptions { diff --git a/test/src/helpers/updaterTestUtil.ts b/test/src/helpers/updaterTestUtil.ts index 2c4220f3fa2..ab195aaaeec 100644 --- a/test/src/helpers/updaterTestUtil.ts +++ b/test/src/helpers/updaterTestUtil.ts @@ -2,7 +2,7 @@ import { NodeHttpExecutor, serializeToYaml, TmpDir } from "builder-util" import { AllPublishOptions, DownloadOptions } from "builder-util-runtime" import { AppUpdater, MacUpdater, NsisUpdater } from "electron-updater" import { NoOpLogger, TestOnlyUpdaterOptions } from "electron-updater" -import { outputFile, writeFile } from "fs-extra" +import * as fsExtra from "fs-extra" import * as path from "path" import { assertThat } from "./fileAssert.js" import { TestAppAdapter } from "./TestAppAdapter.js" @@ -24,7 +24,7 @@ export async function createNsisUpdater(version = "0.0.1") { // to reduce difference in test mode, setFeedURL is not used to set (NsisUpdater also read configOnDisk to load original publisherName) export async function writeUpdateConfig(data: T): Promise { const updateConfigPath = path.join(await tmpDir.getTempDir({ prefix: "test-update-config" }), "app-update.yml") - await outputFile(updateConfigPath, serializeToYaml(data)) + await fsExtra.outputFile(updateConfigPath, serializeToYaml(data)) return updateConfigPath } @@ -62,7 +62,7 @@ export class TestNodeHttpExecutor extends NodeHttpExecutor { async download(url: string, destination: string, options: DownloadOptions): Promise { const obj = new URL(url) const buffer = await this.downloadToBuffer(obj, options) - await writeFile(destination, buffer) + await fsExtra.writeFile(destination, buffer) return buffer.toString() } } diff --git a/test/src/helpers/winHelper.ts b/test/src/helpers/winHelper.ts index ddb5bf1193b..c2fe2a86b0a 100644 --- a/test/src/helpers/winHelper.ts +++ b/test/src/helpers/winHelper.ts @@ -1,7 +1,7 @@ import { readAsarJson } from "app-builder-lib" import { walk } from "builder-util" import { Arch, Platform } from "electron-builder" -import { outputFile } from "fs-extra" +import * as fsExtra from "fs-extra" import * as fs from "fs/promises" import { load } from "js-yaml" import * as path from "path" @@ -91,7 +91,7 @@ export async function doTest( // run installer again to test uninstall const appDataFile = path.join(wine.userDir!, "Application Data", name, "doNotDeleteMe") - await outputFile(appDataFile, "app data must be not removed") + await fsExtra.outputFile(appDataFile, "app data must be not removed") fsBefore = await listFiles() await wine.exec(path.join(outDir, `${productFilename} Setup 1.1.0.exe`), "/S") fsAfter = await listFiles() diff --git a/test/src/helpers/wine.ts b/test/src/helpers/wine.ts index 82c2d118a6e..f398fd2fa20 100644 --- a/test/src/helpers/wine.ts +++ b/test/src/helpers/wine.ts @@ -1,5 +1,5 @@ import { exec, safeStringifyJson, unlinkIfExists } from "builder-util" -import { emptyDir } from "fs-extra" +import * as fsExtra from "fs-extra" import * as fs from "fs/promises" import { homedir } from "os" import * as path from "path" @@ -37,7 +37,7 @@ export class WineManager { } async prepareWine(wineDir: string) { - await emptyDir(wineDir) + await fsExtra.emptyDir(wineDir) //noinspection SpellCheckingInspection const env = { ...process.env, diff --git a/test/src/ignoreTest.ts b/test/src/ignoreTest.ts index db6aef775a7..6cc1ec1227d 100644 --- a/test/src/ignoreTest.ts +++ b/test/src/ignoreTest.ts @@ -1,5 +1,5 @@ import { DIR_TARGET, Platform, archFromString } from "electron-builder" -import { outputFile } from "fs-extra" +import * as fsExtra from "fs-extra" import * as path from "path" import { assertThat } from "./helpers/fileAssert.js" import { app, checkDirContents, linuxDirTarget, modifyPackageJson } from "./helpers/packTester.js" @@ -18,7 +18,7 @@ test.ifNotWindows("ignore build resources", ({ expect }) => }, { projectDirCreated: projectDir => { - return outputFile(path.join(projectDir, "one/build/foo.txt"), "data") + return fsExtra.outputFile(path.join(projectDir, "one/build/foo.txt"), "data") }, packed: context => { return assertThat(expect, path.join(context.getResources(Platform.LINUX), "app", "one", "build", "foo.txt")).isFile() @@ -47,7 +47,7 @@ test.ifNotWindows("2 ignore", ({ expect }) => }, { projectDirCreated: projectDir => { - return outputFile(path.join(projectDir, "electron/foo.txt"), "data") + return fsExtra.outputFile(path.join(projectDir, "electron/foo.txt"), "data") }, packed: context => { return assertThat(expect, path.join(context.getResources(Platform.LINUX), "app", "electron", "foo.txt")).doesNotExist() @@ -68,10 +68,10 @@ test.ifNotWindows("ignore known ignored files", ({ expect }) => { projectDirCreated: projectDir => Promise.all([ - outputFile(path.join(projectDir, ".svn", "foo"), "data"), - outputFile(path.join(projectDir, ".git", "foo"), "data"), - outputFile(path.join(projectDir, "node_modules", ".bin", "f.txt"), "data"), - outputFile(path.join(projectDir, "node_modules", ".bin2", "f.txt"), "data"), + fsExtra.outputFile(path.join(projectDir, ".svn", "foo"), "data"), + fsExtra.outputFile(path.join(projectDir, ".git", "foo"), "data"), + fsExtra.outputFile(path.join(projectDir, "node_modules", ".bin", "f.txt"), "data"), + fsExtra.outputFile(path.join(projectDir, "node_modules", ".bin2", "f.txt"), "data"), ]), packed: context => checkDirContents(expect, path.join(context.getResources(Platform.LINUX), "app")), } @@ -128,8 +128,8 @@ test.ifNotWindows("copied sub node_modules of the rootDir/node_modules", ({ expe ...data.dependencies, } }), - outputFile(path.join(projectDir, "submodule-1-test", "node_modules", "package.json"), "{}"), - outputFile(path.join(projectDir, "others", "node_modules", "package.json"), "{}"), + fsExtra.outputFile(path.join(projectDir, "submodule-1-test", "node_modules", "package.json"), "{}"), + fsExtra.outputFile(path.join(projectDir, "others", "node_modules", "package.json"), "{}"), ]) }, packed: context => { @@ -164,10 +164,10 @@ test.ifNotWindows("Don't copy sub node_modules of the other dir instead of rootD ...data.dependencies, } }), - outputFile(path.join(projectDir, "others", "node_modules", "package.json"), "{}"), - outputFile(path.join(projectDir, "others", "test1", "package.json"), "{}"), - outputFile(path.join(projectDir, "others", "submodule-2-test", "node_modules", "package.json"), "{}"), - outputFile(path.join(projectDir, "others", "submodule-2-test", "test2", "package.json"), "{}"), + fsExtra.outputFile(path.join(projectDir, "others", "node_modules", "package.json"), "{}"), + fsExtra.outputFile(path.join(projectDir, "others", "test1", "package.json"), "{}"), + fsExtra.outputFile(path.join(projectDir, "others", "submodule-2-test", "node_modules", "package.json"), "{}"), + fsExtra.outputFile(path.join(projectDir, "others", "submodule-2-test", "test2", "package.json"), "{}"), ]) }, packed: context => { @@ -205,8 +205,8 @@ test.ifNotWindows("copied select submodule node_modules", ({ expect }) => ...data.dependencies, } }), - outputFile(path.join(projectDir, "submodule-1-test", "node_modules", "package.json"), "{}"), - outputFile(path.join(projectDir, "submodule-2-test", "node_modules", "package.json"), "{}"), + fsExtra.outputFile(path.join(projectDir, "submodule-1-test", "node_modules", "package.json"), "{}"), + fsExtra.outputFile(path.join(projectDir, "submodule-2-test", "node_modules", "package.json"), "{}"), ]) }, packed: context => { @@ -238,7 +238,7 @@ test.ifNotWindows("cannot copied select submodule node_modules by */", ({ expect ...data.dependencies, } }), - outputFile(path.join(projectDir, "submodule-1-test", "node_modules", "package.json"), "{}"), + fsExtra.outputFile(path.join(projectDir, "submodule-1-test", "node_modules", "package.json"), "{}"), ]) }, packed: context => { @@ -268,7 +268,7 @@ test.ifNotWindows("cannot copied select submodule node_modules by **/submodule-1 ...data.dependencies, } }), - outputFile(path.join(projectDir, "submodule-1-test", "node_modules", "package.json"), "{}"), + fsExtra.outputFile(path.join(projectDir, "submodule-1-test", "node_modules", "package.json"), "{}"), ]) }, packed: context => { diff --git a/test/src/linux/linuxPackagerTest.ts b/test/src/linux/linuxPackagerTest.ts index bac5db1a749..eadf8e5fa2e 100644 --- a/test/src/linux/linuxPackagerTest.ts +++ b/test/src/linux/linuxPackagerTest.ts @@ -1,6 +1,6 @@ import { GenericServerOptions } from "builder-util-runtime" import { Arch, build, Platform } from "electron-builder" -import { outputFile } from "fs-extra" +import * as fsExtra from "fs-extra" import * as fs from "fs/promises" import * as path from "path" import { assertThat } from "../helpers/fileAssert" @@ -107,7 +107,7 @@ describe.ifNotWindows("LinuxPackager", () => { }, { projectDirCreated: projectDir => { - return outputFile( + return fsExtra.outputFile( path.join(projectDir, "build", "license.html"), ` diff --git a/test/src/mac/macArchiveTest.ts b/test/src/mac/macArchiveTest.ts index 2843d231dfe..87bda10824e 100644 --- a/test/src/mac/macArchiveTest.ts +++ b/test/src/mac/macArchiveTest.ts @@ -1,7 +1,7 @@ import { Arch, exec } from "builder-util" import { parseXml } from "builder-util-runtime" import { Platform } from "electron-builder" -import { outputFile } from "fs-extra" +import * as fsExtra from "fs-extra" import * as fs from "fs/promises" import * as path from "path" import pathSorter from "path-sort" @@ -54,7 +54,7 @@ test.ifMac("extraDistFiles", ({ expect }) => { signed: false, projectDirCreated: projectDir => { - return Promise.all([outputFile(path.join(projectDir, "extra.txt"), "test")]) + return Promise.all([fsExtra.outputFile(path.join(projectDir, "extra.txt"), "test")]) }, } ) diff --git a/test/src/packageManagerTest.ts b/test/src/packageManagerTest.ts index 56abc0d8d14..0cef00a474f 100644 --- a/test/src/packageManagerTest.ts +++ b/test/src/packageManagerTest.ts @@ -1,6 +1,6 @@ import { Platform } from "app-builder-lib" import { PM } from "app-builder-lib/src/node-module-collector" -import { copyFile, outputFile, rm, writeFile } from "fs-extra" +import * as fsExtra from "fs-extra" import * as path from "path" import { assertThat } from "./helpers/fileAssert" import { app, assertPack, getFixtureDir, getPackageManagerWithVersion, linuxDirTarget, modifyPackageJson, verifyAsarFileTree } from "./helpers/packTester" @@ -48,10 +48,10 @@ describe.ifNotWindows("Package Managers", () => { false ) await modifyPackageJson(projectDir, data => packageConfig(data, yarnVersion), true) - await writeFile(path.join(projectDir, "yarn.lock"), "") - await writeFile(path.join(projectDir, "app", "yarn.lock"), "") - await copyFile(path.join(getFixtureDir(), ".pnp.cjs"), path.join(projectDir, ".pnp.cjs")) - await rm(path.join(projectDir, ".yarnrc.yml")) + await fsExtra.writeFile(path.join(projectDir, "yarn.lock"), "") + await fsExtra.writeFile(path.join(projectDir, "app", "yarn.lock"), "") + await fsExtra.copyFile(path.join(getFixtureDir(), ".pnp.cjs"), path.join(projectDir, ".pnp.cjs")) + await fsExtra.rm(path.join(projectDir, ".yarnrc.yml")) await spawn("yarn", ["install"], { cwd: projectDir, env: testEnv, @@ -85,9 +85,9 @@ describe.ifNotWindows("Package Managers", () => { false ) await modifyPackageJson(projectDir, data => packageConfig(data, yarnBerryVersion), true) - await writeFile(path.join(projectDir, "yarn.lock"), "") - await writeFile(path.join(projectDir, "app", "yarn.lock"), "") - await copyFile(path.join(getFixtureDir(), ".pnp.cjs"), path.join(projectDir, ".pnp.cjs")) + await fsExtra.writeFile(path.join(projectDir, "yarn.lock"), "") + await fsExtra.writeFile(path.join(projectDir, "app", "yarn.lock"), "") + await fsExtra.copyFile(path.join(getFixtureDir(), ".pnp.cjs"), path.join(projectDir, ".pnp.cjs")) await spawn("yarn", ["install"], { cwd: projectDir, env: testEnv, @@ -255,7 +255,7 @@ describe.ifNotWindows("Package Managers", () => { "left-pad": "1.3.0", } }), - outputFile(path.join(projectDir, "bunfig.toml"), '[install]\nlinker = "isolated"\n'), + fsExtra.outputFile(path.join(projectDir, "bunfig.toml"), '[install]\nlinker = "isolated"\n'), ]) }, packed: context => verifyAsarFileTree(expect, context.getResources(Platform.LINUX)), @@ -298,7 +298,7 @@ describe.ifNotWindows("Package Managers", () => { "is-bigint": "1.0.4", } }), - outputFile(path.join(projectDir, "bunfig.toml"), '[install]\nlinker = "isolated"\n'), + fsExtra.outputFile(path.join(projectDir, "bunfig.toml"), '[install]\nlinker = "isolated"\n'), ]) }, packed: context => verifyAsarFileTree(expect, context.getResources(Platform.LINUX)), @@ -339,7 +339,7 @@ describe.ifNotWindows("Package Managers", () => { "left-pad": "1.3.0", } }), - outputFile(path.join(projectDir, "bunfig.toml"), '[install]\nlinker = "hoisted"\n'), + fsExtra.outputFile(path.join(projectDir, "bunfig.toml"), '[install]\nlinker = "hoisted"\n'), ]) }, packed: context => verifyAsarFileTree(expect, context.getResources(Platform.LINUX)), @@ -382,7 +382,7 @@ describe.ifNotWindows("Package Managers", () => { "is-bigint": "1.0.4", } }), - outputFile(path.join(projectDir, "bunfig.toml"), '[install]\nlinker = "hoisted"\n'), + fsExtra.outputFile(path.join(projectDir, "bunfig.toml"), '[install]\nlinker = "hoisted"\n'), ]) }, packed: context => verifyAsarFileTree(expect, context.getResources(Platform.LINUX)), @@ -409,8 +409,8 @@ describe.ifNotWindows("Package Managers", () => { false ) await modifyPackageJson(projectDir, data => packageConfig(data, yarnBerryVersion), true) - await writeFile(path.join(projectDir, "yarn.lock"), "") - await writeFile(path.join(projectDir, "app", "yarn.lock"), "") + await fsExtra.writeFile(path.join(projectDir, "yarn.lock"), "") + await fsExtra.writeFile(path.join(projectDir, "app", "yarn.lock"), "") }, } )) @@ -477,8 +477,8 @@ describe.ifNotWindows("Package Managers", () => { projectDirCreated: async (projectDir, tmpDir, testEnv) => { const tempDir = await tmpDir.getTempDir() const localPath = path.join(tempDir, "foo") - await outputFile(path.join(localPath, "package.json"), `{"name":"foo","version":"9.0.0","main":"index.js","license":"MIT","dependencies":{"ms":"2.0.0"}}`) - await outputFile(path.join(localPath, "index.js"), `module.exports = require("ms")`) + await fsExtra.outputFile(path.join(localPath, "package.json"), `{"name":"foo","version":"9.0.0","main":"index.js","license":"MIT","dependencies":{"ms":"2.0.0"}}`) + await fsExtra.outputFile(path.join(localPath, "index.js"), `module.exports = require("ms")`) const pmCommand = getPackageManagerWithVersion(pm).cli await spawn(pmCommand, ["install"], { diff --git a/test/src/updater/blackboxUpdateTest.ts b/test/src/updater/blackboxUpdateTest.ts index 79520591147..7c7bd520e3d 100644 --- a/test/src/updater/blackboxUpdateTest.ts +++ b/test/src/updater/blackboxUpdateTest.ts @@ -5,7 +5,7 @@ import { archFromString, doSpawn, getArchSuffix, isEmptyOrSpaces, log, spawn, Tm import { execFileSync, execSync } from "child_process" import { Arch, Configuration, Platform } from "electron-builder" import { DebUpdater, PacmanUpdater, RpmUpdater } from "electron-updater" -import { copy, existsSync, move, outputFile, readJsonSync } from "fs-extra" +import * as fsExtra from "fs-extra" import { homedir } from "os" import path from "path" import { ExpectStatic, TestContext } from "vitest" @@ -114,7 +114,7 @@ async function runTest(context: TestContext, target: string, packageManager: str // Setup tests by installing the previous version const appPath = await handleInitialInstallPerOS({ target, dirPath, arch }) - if (!existsSync(appPath)) { + if (!fsExtra.existsSync(appPath)) { throw new Error(`App not found: ${appPath}`) } @@ -122,7 +122,7 @@ async function runTest(context: TestContext, target: string, packageManager: str try { await runTestWithinServer(async (rootDirectory: string, updateConfigPath: string) => { // Move app update to the root directory of the server - await copy(newAppDir.dir, rootDirectory, { recursive: true, overwrite: true }) + await fsExtra.copy(newAppDir.dir, rootDirectory, { recursive: true, overwrite: true }) const verifyAppVersion = async (expectedVersion: string) => await launchAndWaitForQuit({ appPath, timeoutMs: 2 * 60 * 1000, updateConfigPath, expectedVersion, packageManagerToTest: packageManager }) @@ -227,7 +227,7 @@ async function doBuild( packageManager: PM.PNPM, projectDirCreated: async (projectDir, _tmpDir, runtimeEnv) => { // await outputFile(path.join(projectDir, "package-lock.json"), "{}") - await outputFile(path.join(projectDir, ".npmrc"), "node-linker=hoisted") + await fsExtra.outputFile(path.join(projectDir, ".npmrc"), "node-linker=hoisted") await modifyPackageJson( projectDir, @@ -242,9 +242,9 @@ async function doBuild( sqlite3: "5.1.7", // for testing native dependency handling in auto-update "@electron/remote": "2.1.3", // for debugging live application with GUI so that app.getVersion is accessible in renderer process "electron-updater": `link:${electronUpdaterPath("electron-updater")}`, - ...readJsonSync(path.join(electronUpdaterPath("electron-updater"), "package.json")).dependencies, + ...fsExtra.readJsonSync(path.join(electronUpdaterPath("electron-updater"), "package.json")).dependencies, "builder-util-runtime": `link:${electronUpdaterPath("builder-util-runtime")}`, // needs to be last to overwrite electron-updater's builder-util-runtime dependency for testing with workspace version of builder-util-runtime (workspace:* doesn't resolve and needs to be linked explicitly) - ...readJsonSync(path.join(electronUpdaterPath("builder-util-runtime"), "package.json")).dependencies, + ...fsExtra.readJsonSync(path.join(electronUpdaterPath("builder-util-runtime"), "package.json")).dependencies, } }, true @@ -276,7 +276,7 @@ async function doBuild( packed: async context => { // move dist temporarily out of project dir so each downloader can reference it const dir = await tmpDir.getTempDir({ prefix: version }) - await move(context.outDir, dir) + await fsExtra.move(context.outDir, dir) const appPath = path.join(dir, path.relative(context.outDir, context.getAppPath(Platform.current(), archFromString(process.arch)))) outDirs.push({ dir, appPath }) }, @@ -331,7 +331,7 @@ async function handleInitialInstallPerOS({ target, dirPath, arch }: { target: st // this is to clear dev environment when not running on an ephemeral GH runner. // Reinstallation will otherwise fail due to "uninstall" message prompt, so we must uninstall first (hence the setTimeout delay) const uninstaller = path.join(localProgramsPath, "Uninstall TestApp.exe") - if (existsSync(uninstaller)) { + if (fsExtra.existsSync(uninstaller)) { console.log("Uninstalling", uninstaller) execFileSync(uninstaller, ["/S", "/C", "exit"], { stdio: "inherit" }) await new Promise(resolve => setTimeout(resolve, 5000)) diff --git a/test/src/updater/differentialUpdateTest.ts b/test/src/updater/differentialUpdateTest.ts index db3859e13df..651c5a689d2 100644 --- a/test/src/updater/differentialUpdateTest.ts +++ b/test/src/updater/differentialUpdateTest.ts @@ -3,7 +3,7 @@ import { archFromString, doSpawn, getArchSuffix } from "builder-util" import { GenericServerOptions, Nullish, S3Options } from "builder-util-runtime" import { AppImageUpdater, BaseUpdater, MacUpdater, NsisUpdater } from "electron-updater" import { EventEmitter } from "events" -import { move } from "fs-extra" +import * as fsExtra from "fs-extra" import * as path from "path" import { TmpDir } from "temp-file" import { TestAppAdapter } from "../helpers/TestAppAdapter.js" @@ -58,7 +58,7 @@ async function doBuild( buildApp(version, targets, extraConfig, async context => { // move dist temporarily out of project dir so each downloader can reference it const newDir = await tmpDir.getTempDir({ prefix: version }) - await move(context.outDir, newDir) + await fsExtra.move(context.outDir, newDir) outDirs.push(newDir) }) try { @@ -81,7 +81,7 @@ for (const winCodeSign of winCodeSignVersions) { await doBuild(expect, outDirs, Platform.WINDOWS.createTarget(["nsis-web"], Arch.x64, Arch.arm64), tmpDir, { winCodeSign }) const oldDir = outDirs[0] - await move( + await fsExtra.move( path.join(oldDir, "nsis-web", `TestApp-${OLD_VERSION_NUMBER}${getArchSuffix(archFromString(process.arch), "universal")}.nsis.7z`), path.join(getTestUpdaterCacheDir(oldDir), testAppCacheDirName, "package.7z") ) @@ -96,8 +96,8 @@ for (const winCodeSign of winCodeSignVersions) { const oldDir = outDirs[0] // move to new dir so that localhost server can read both blockmaps - await move(path.join(oldDir, `Test App ßW Setup ${OLD_VERSION_NUMBER}.exe`), path.join(getTestUpdaterCacheDir(oldDir), testAppCacheDirName, "installer.exe")) - await move(path.join(oldDir, `Test App ßW Setup ${OLD_VERSION_NUMBER}.exe.blockmap`), path.join(outDirs[1], "Test App ßW Setup 1.0.0.exe.blockmap")) + await fsExtra.move(path.join(oldDir, `Test App ßW Setup ${OLD_VERSION_NUMBER}.exe`), path.join(getTestUpdaterCacheDir(oldDir), testAppCacheDirName, "installer.exe")) + await fsExtra.move(path.join(oldDir, `Test App ßW Setup ${OLD_VERSION_NUMBER}.exe.blockmap`), path.join(outDirs[1], "Test App ßW Setup 1.0.0.exe.blockmap")) await testBlockMap(expect, outDirs[0], outDirs[1], NsisUpdater, Platform.WINDOWS, Arch.x64) }) @@ -148,8 +148,8 @@ async function testMac(expect: ExpectStatic, arch: Arch) { // move to new dir so that localhost server can read both blockmaps const oldDir = outDirs[0] const blockmap = `Test App ßW-${OLD_VERSION_NUMBER}${getArchSuffix(arch)}-mac.zip.blockmap` - await move(path.join(oldDir, blockmap), path.join(outDirs[1], blockmap)) - await move(path.join(oldDir, `Test App ßW-${OLD_VERSION_NUMBER}${getArchSuffix(arch)}-mac.zip`), path.join(getTestUpdaterCacheDir(oldDir), testAppCacheDirName, "update.zip")) + await fsExtra.move(path.join(oldDir, blockmap), path.join(outDirs[1], blockmap)) + await fsExtra.move(path.join(oldDir, `Test App ßW-${OLD_VERSION_NUMBER}${getArchSuffix(arch)}-mac.zip`), path.join(getTestUpdaterCacheDir(oldDir), testAppCacheDirName, "update.zip")) await testBlockMap(expect, outDirs[0], outDirs[1], MacUpdater, Platform.MAC, arch, "Test App ßW") } finally { diff --git a/test/src/updater/nsisUpdaterTest.ts b/test/src/updater/nsisUpdaterTest.ts index 757e75b1ab4..f96968fecd7 100644 --- a/test/src/updater/nsisUpdaterTest.ts +++ b/test/src/updater/nsisUpdaterTest.ts @@ -1,7 +1,7 @@ import { BitbucketOptions, GenericServerOptions, GithubOptions, GitlabOptions, KeygenOptions, S3Options, SpacesOptions } from "builder-util-runtime" import { BitbucketPublisher } from "electron-publish" import { UpdateCheckResult } from "electron-updater" -import { outputFile } from "fs-extra" +import * as fsExtra from "fs-extra" import { tmpdir } from "os" import * as path from "path" import { assertThat } from "../helpers/fileAssert" @@ -471,7 +471,7 @@ test.ifWindows("test custom signature verifier - signing error message", config, // disable for now test("90 staging percentage", config, async ({ expect }) => { const userIdFile = path.join(tmpdir(), "electron-updater-test", "userData", ".updaterId") - await outputFile(userIdFile, "1wa70172-80f8-5cc4-8131-28f5e0edd2a1") + await fsExtra.outputFile(userIdFile, "1wa70172-80f8-5cc4-8131-28f5e0edd2a1") const updater = await createNsisUpdater("0.0.1") updater.updateConfigPath = await writeUpdateConfig({ @@ -485,7 +485,7 @@ test("90 staging percentage", config, async ({ expect }) => { test("1 staging percentage", config, async ({ expect }) => { const userIdFile = path.join(tmpdir(), "electron-updater-test", "userData", ".updaterId") - await outputFile(userIdFile, "12a70172-80f8-5cc4-8131-28f5e0edd2a1") + await fsExtra.outputFile(userIdFile, "12a70172-80f8-5cc4-8131-28f5e0edd2a1") const updater = await createNsisUpdater("0.0.1") updater.updateConfigPath = await writeUpdateConfig({ diff --git a/test/src/windows/appxTest.ts b/test/src/windows/appxTest.ts index a61b5cd9dce..a8daa471f89 100644 --- a/test/src/windows/appxTest.ts +++ b/test/src/windows/appxTest.ts @@ -1,5 +1,5 @@ import { Arch, Platform } from "electron-builder" -import { readFile } from "fs-extra" +import * as fsExtra from "fs-extra" import { mkdir } from "fs/promises" import * as path from "path" import { app, appThrows, copyTestAsset } from "../helpers/packTester" @@ -125,7 +125,7 @@ describe.ifWindows("AppX", () => { customManifestPath: "custom-template-manifest.xml", }, appxManifestCreated: async filepath => { - const fileContent = await readFile(filepath, "utf-8") + const fileContent = await fsExtra.readFile(filepath, "utf-8") expect(fileContent).toMatchSnapshot() }, }, @@ -140,7 +140,7 @@ describe.ifWindows("AppX", () => { customManifestPath: "custom-manifest.xml", }, appxManifestCreated: async filepath => { - const fileContent = await readFile(filepath, "utf-8") + const fileContent = await fsExtra.readFile(filepath, "utf-8") expect(fileContent).toMatchSnapshot() }, }, @@ -157,7 +157,7 @@ describe.ifWindows("AppX", () => { capabilities: ["internetClient", "picturesLibrary", "webcam", "screenDuplication", "graphicsCapture", "globalMediaControl"], }, appxManifestCreated: async filepath => { - const fileContent = await readFile(filepath, "utf-8") + const fileContent = await fsExtra.readFile(filepath, "utf-8") console.log("APPX-MANIFEST: " + fileContent) expect(fileContent).toContain('') expect(fileContent).toContain('') diff --git a/test/src/windows/oneClickInstallerTest.ts b/test/src/windows/oneClickInstallerTest.ts index 0b2648c3be6..2ed1667757f 100644 --- a/test/src/windows/oneClickInstallerTest.ts +++ b/test/src/windows/oneClickInstallerTest.ts @@ -1,5 +1,5 @@ import { Arch, Platform } from "electron-builder" -import { copyFile, writeFile } from "fs-extra" +import * as fsExtra from "fs-extra" import * as path from "path" import { assertThat } from "../helpers/fileAssert" import { app, assertPack, copyTestAsset, EXTENDED_TIMEOUT, modifyPackageJson } from "../helpers/packTester" @@ -98,10 +98,10 @@ test("multi language license", { timeout: EXTENDED_TIMEOUT }, ({ expect }) => { projectDirCreated: projectDir => { return Promise.all([ - writeFile(path.join(projectDir, "build", "license_en.txt"), "Hi"), - writeFile(path.join(projectDir, "build", "license_ru.txt"), "Привет"), - writeFile(path.join(projectDir, "build", "license_ko.txt"), "Привет"), - writeFile(path.join(projectDir, "build", "license_fi.txt"), "Привет"), + fsExtra.writeFile(path.join(projectDir, "build", "license_en.txt"), "Hi"), + fsExtra.writeFile(path.join(projectDir, "build", "license_ru.txt"), "Привет"), + fsExtra.writeFile(path.join(projectDir, "build", "license_ko.txt"), "Привет"), + fsExtra.writeFile(path.join(projectDir, "build", "license_fi.txt"), "Привет"), ]) }, } @@ -124,7 +124,7 @@ test("html license", { timeout: EXTENDED_TIMEOUT }, ({ expect }) => { projectDirCreated: projectDir => { return Promise.all([ - writeFile(path.join(projectDir, "build", "license.html"), '

Hi google

'), + fsExtra.writeFile(path.join(projectDir, "build", "license.html"), '

Hi google

'), ]) }, } @@ -239,7 +239,7 @@ test.skip("big file pack", { timeout: EXTENDED_TIMEOUT }, ({ expect }) => }, { projectDirCreated: async projectDir => { - await copyFile("/Volumes/Pegasus/15.02.18.m4v", path.join(projectDir, "foo/bar/video.mov")) + await fsExtra.copyFile("/Volumes/Pegasus/15.02.18.m4v", path.join(projectDir, "foo/bar/video.mov")) }, } ) diff --git a/test/src/windows/winCodeSignTest.ts b/test/src/windows/winCodeSignTest.ts index ff882362413..c31dd7e7ba7 100644 --- a/test/src/windows/winCodeSignTest.ts +++ b/test/src/windows/winCodeSignTest.ts @@ -1,6 +1,6 @@ import { parseDn } from "builder-util-runtime" import { DIR_TARGET, Platform } from "electron-builder" -import { outputFile } from "fs-extra" +import * as fsExtra from "fs-extra" import { load } from "js-yaml" import * as path from "path" import { CheckingWinPackager } from "../helpers/CheckingPackager" @@ -36,7 +36,7 @@ for (const winCodeSign of winCodeSignVersions) { { signedWin: true, projectDirCreated: async projectDir => { - await outputFile(path.join(projectDir, "assets", "nested", "nested", "file.exe"), "invalid PE file") + await fsExtra.outputFile(path.join(projectDir, "assets", "nested", "nested", "file.exe"), "invalid PE file") }, }, error => { From b73e1a42e2d486c3e453ed900ab5d8d4c9ba67d3 Mon Sep 17 00:00:00 2001 From: Mike Maietta Date: Wed, 8 Apr 2026 12:22:59 -0700 Subject: [PATCH 50/61] LFG --- packages/app-builder-lib/src/index.ts | 57 +++++++++---------- .../src/util/packageMetadata.ts | 2 +- .../src/cli/create-self-signed-cert.ts | 2 +- test/src/helpers/packTester.ts | 21 ++++--- test/src/updater/blackboxUpdateTest.ts | 12 ++-- 5 files changed, 46 insertions(+), 48 deletions(-) diff --git a/packages/app-builder-lib/src/index.ts b/packages/app-builder-lib/src/index.ts index 1908d23a11b..bfc4c2a06d9 100644 --- a/packages/app-builder-lib/src/index.ts +++ b/packages/app-builder-lib/src/index.ts @@ -19,7 +19,7 @@ export { Hooks, MetadataDirectories, PackContext, - ToolsetConfig, + ToolsetConfig } from "./configuration.js" export { BeforeBuildContext, @@ -31,7 +31,7 @@ export { Target, TargetConfigType, TargetConfiguration, - TargetSpecificOptions, + TargetSpecificOptions } from "./core.js" export { ElectronBrandingOptions, ElectronDownloadOptions, ElectronPlatformName } from "./electron/ElectronFramework.js" export { AppXOptions } from "./options/AppXOptions.js" @@ -53,50 +53,49 @@ export { CommonNsisOptions, CustomNsisBinary, NsisOptions, NsisWebOptions, Porta export { CancellationToken, ProgressInfo } from "builder-util-runtime" export { PublishOptions, UploadTask } from "electron-publish" +export { AsarFilesystem, readAsar, readAsarJson } from "./asar/asar.js" +export { downloadArtifact, getBinFromUrl } from "./binDownload.js" +export { Identity, createKeychain, findIdentity, isSignAllowed, removeKeychain } from "./codeSign/macCodeSign.js" export { WindowsSignOptions } from "./codeSign/windowsCodeSign.js" export { CertificateFromStoreInfo, CustomWindowsSign, CustomWindowsSignTaskConfiguration, FileCodeSigningInfo, - WindowsSignTaskConfiguration, + WindowsSignTaskConfiguration } from "./codeSign/windowsSignToolManager.js" +export { Publish } from "./core.js" +export { getElectronVersion } from "./electron/electronVersion.js" export { ForgeOptions, buildForge } from "./forge-maker.js" export { Framework, PrepareApplicationStageDirectoryOptions } from "./Framework.js" export { LinuxPackager } from "./linuxPackager.js" export { CustomMacSign, CustomMacSignOptions, MacPackager } from "./macPackager.js" -export { PlatformPackager } from "./platformPackager.js" -export { PublishManager } from "./publish/PublishManager.js" -export { WinPackager } from "./winPackager.js" -export { readAsar, readAsarJson, AsarFilesystem } from "./asar/asar.js" -export { installOrRebuild } from "./util/yarn.js" -export { PACKAGE_VERSION } from "./version.js" -export { createLazyProductionDeps } from "./util/packageDependencies.js" +export { HoisterDependencyKind, HoisterResult, HoisterTree, hoist } from "./node-module-collector/hoist.js" export { determinePackageManagerEnv } from "./node-module-collector/index.js" -export { computeDefaultAppDirectory, validateConfiguration } from "./util/config/config.js" -export { getConfig } from "./util/config/config.js" -export { getElectronVersion } from "./electron/electronVersion.js" -export { execWine } from "./wine.js" -export { getBinFromUrl } from "./binDownload.js" -export { hoist, HoisterTree, HoisterResult, HoisterDependencyKind } from "./node-module-collector/hoist.js" export { PM } from "./node-module-collector/packageManager.js" -export { doMergeConfigs } from "./util/config/config.js" -export { getWindowsKitsBundle } from "./toolsets/windows.js" -export { findIdentity, isSignAllowed } from "./codeSign/macCodeSign.js" +export { DoPackOptions, PlatformPackager, computeSafeArtifactNameIfNeeded } from "./platformPackager.js" +export { PublishManager, createPublisher } from "./publish/PublishManager.js" export { createBlockmap } from "./targets/differentialUpdateInfoBuilder.js" -export { getLicenseFiles, getLicenseAssets } from "./util/license.js" -export { downloadArtifact } from "./binDownload.js" +export { getWindowsKitsBundle } from "./toolsets/windows.js" +export { computeDefaultAppDirectory, doMergeConfigs, getConfig, validateConfiguration } from "./util/config/config.js" export { loadEnv } from "./util/config/load.js" -export { nodeGypRebuild } from "./util/yarn.js" -export { Publish } from "./core.js" -export { computeSafeArtifactNameIfNeeded } from "./platformPackager.js" -export { createPublisher } from "./publish/PublishManager.js" -export { Identity } from "./codeSign/macCodeSign.js" -export { DoPackOptions } from "./platformPackager.js" -export { parsePlistFile, PlistObject } from "./util/plist.js" +export { getLicenseAssets, getLicenseFiles } from "./util/license.js" export { expandMacro } from "./util/macroExpander.js" +export { createLazyProductionDeps } from "./util/packageDependencies.js" +export { PlistObject, parsePlistFile } from "./util/plist.js" export { getRepositoryInfo } from "./util/repositoryInfo.js" -export { createKeychain, removeKeychain } from "./codeSign/macCodeSign.js" +export { installOrRebuild, nodeGypRebuild } from "./util/yarn.js" +export { PACKAGE_VERSION } from "./version.js" +export { execWine } from "./wine.js" +export { WinPackager } from "./winPackager.js" + +export { AsarIntegrity } from "./asar/integrity.js" +export { getCollectorByPackageManager } from "./node-module-collector/index.js" +export { computeArchToTargetNamesMap } from "./targets/targetFactory.js" +export { getLinuxToolsPath } from "./toolsets/linux.js" + +export { detectPackageManager } from "./node-module-collector/packageManager.js" +export { installDependencies } from "./util/yarn.js" const expectedOptions = new Set(["publish", "targets", "mac", "win", "linux", "projectDir", "platformPackagerFactory", "config", "effectiveOptionComputed", "prepackaged"]) diff --git a/packages/app-builder-lib/src/util/packageMetadata.ts b/packages/app-builder-lib/src/util/packageMetadata.ts index e1332e5555f..82c307dde33 100644 --- a/packages/app-builder-lib/src/util/packageMetadata.ts +++ b/packages/app-builder-lib/src/util/packageMetadata.ts @@ -1,6 +1,6 @@ import { InvalidConfigurationError, isEmptyOrSpaces, log } from "builder-util" import { Nullish } from "builder-util-runtime" -import * as fsExtra from "fs-extra" +import fsExtra from "fs-extra" import * as path from "path" import * as semver from "semver" import { Metadata } from "../options/metadata.js" diff --git a/packages/electron-builder/src/cli/create-self-signed-cert.ts b/packages/electron-builder/src/cli/create-self-signed-cert.ts index 77ab8e10ee6..d34ac434cd5 100644 --- a/packages/electron-builder/src/cli/create-self-signed-cert.ts +++ b/packages/electron-builder/src/cli/create-self-signed-cert.ts @@ -1,6 +1,6 @@ import { getWindowsKitsBundle } from "app-builder-lib" import { archFromString, exec, log, spawn, TmpDir, unlinkIfExists } from "builder-util" -import { sanitizeFileName } from "builder-util/out/filename" +import { sanitizeFileName } from "builder-util" import * as chalk from "chalk" import { mkdir } from "fs/promises" import * as path from "path" diff --git a/test/src/helpers/packTester.ts b/test/src/helpers/packTester.ts index 3361b1486cb..b819e835b7b 100644 --- a/test/src/helpers/packTester.ts +++ b/test/src/helpers/packTester.ts @@ -1,9 +1,9 @@ import { PublishManager } from "app-builder-lib" -import { verifyAsarFileTree as _verifyAsarFileTree } from "./asarVerifier" -import { computeArchToTargetNamesMap } from "app-builder-lib/out/targets/targetFactory" -import { getLinuxToolsPath } from "app-builder-lib/out/toolsets/linux" -import { parsePlistFile, PlistObject } from "app-builder-lib/out/util/plist" -import { AsarIntegrity } from "app-builder-lib/out/asar/integrity" +import { verifyAsarFileTree as _verifyAsarFileTree } from "./asarVerifier.js" +import { computeArchToTargetNamesMap } from "app-builder-lib" +import { getLinuxToolsPath } from "app-builder-lib" +import { parsePlistFile, PlistObject } from "app-builder-lib" +import { AsarIntegrity } from "app-builder-lib" import { addValue, copyDir, deepAssign, exec, executeFinally, exists, FileCopier, log, USE_HARD_LINKS, walk } from "builder-util" import { CancellationToken, UpdateFileInfo } from "builder-util-runtime" import { Arch, ArtifactCreated, Configuration, DIR_TARGET, getArchSuffix, MacOsTargetName, Packager, PackagerOptions, Platform, Target } from "electron-builder" @@ -16,20 +16,19 @@ import * as path from "path" import pathSorter from "path-sort" import { NtExecutable, NtExecutableResource } from "resedit" import { TmpDir } from "temp-file" -import { getCollectorByPackageManager, PM } from "app-builder-lib/out/node-module-collector" +import { getCollectorByPackageManager, PM } from "app-builder-lib" import { promisify } from "util" import { MAC_CSC_LINK, WIN_CSC_LINK } from "./codeSignData" import { assertThat } from "./fileAssert" import AdmZip from "adm-zip" -// @ts-ignore import sanitizeFileName from "sanitize-filename" import type { ExpectStatic } from "vitest" -import { computeDefaultAppDirectory } from "app-builder-lib/out/util/config/config" -import { installDependencies } from "app-builder-lib/out/util/yarn" +import { computeDefaultAppDirectory } from "app-builder-lib" +import { installDependencies } from "app-builder-lib" import { ELECTRON_VERSION } from "./testConfig" -import { createLazyProductionDeps } from "app-builder-lib/out/util/packageDependencies" +import { createLazyProductionDeps } from "app-builder-lib" import { execSync } from "child_process" -import { detectPackageManager } from "app-builder-lib/out/node-module-collector/packageManager" +import { detectPackageManager } from "app-builder-lib" const PACKAGE_MANAGER_VERSION_MAP = { [PM.NPM]: { cli: "npm", version: "9.8.1" }, diff --git a/test/src/updater/blackboxUpdateTest.ts b/test/src/updater/blackboxUpdateTest.ts index 7c7bd520e3d..da6bc573ac7 100644 --- a/test/src/updater/blackboxUpdateTest.ts +++ b/test/src/updater/blackboxUpdateTest.ts @@ -1,7 +1,7 @@ import { ToolsetConfig } from "app-builder-lib" -import { PM } from "app-builder-lib/out/node-module-collector" +import { PM } from "app-builder-lib" import { GenericServerOptions, Nullish } from "builder-util-runtime" -import { archFromString, doSpawn, getArchSuffix, isEmptyOrSpaces, log, spawn, TmpDir } from "builder-util/out/util" +import { archFromString, doSpawn, getArchSuffix, isEmptyOrSpaces, log, spawn, TmpDir } from "builder-util" import { execFileSync, execSync } from "child_process" import { Arch, Configuration, Platform } from "electron-builder" import { DebUpdater, PacmanUpdater, RpmUpdater } from "electron-updater" @@ -9,10 +9,10 @@ import * as fsExtra from "fs-extra" import { homedir } from "os" import path from "path" import { ExpectStatic, TestContext } from "vitest" -import { getRanLocalServerPath, launchAndWaitForQuit } from "../helpers/launchAppCrossPlatform" -import { assertPack, modifyPackageJson, PackedContext } from "../helpers/packTester" -import { ELECTRON_VERSION } from "../helpers/testConfig" -import { NEW_VERSION_NUMBER, OLD_VERSION_NUMBER, writeUpdateConfig } from "../helpers/updaterTestUtil" +import { getRanLocalServerPath, launchAndWaitForQuit } from "../helpers/launchAppCrossPlatform.js" +import { assertPack, modifyPackageJson, PackedContext } from "../helpers/packTester.js" +import { ELECTRON_VERSION } from "../helpers/testConfig.js" +import { NEW_VERSION_NUMBER, OLD_VERSION_NUMBER, writeUpdateConfig } from "../helpers/updaterTestUtil.js" // Linux Tests MUST be run in docker containers for proper ephemeral testing environment (e.g. fresh install + update + relaunch) // Currently this test logic does not handle uninstalling packages (yet) From 7b9cdd6c40755d70a8b7e1a1d596d9e5fcd0b5ed Mon Sep 17 00:00:00 2001 From: Mike Maietta Date: Wed, 8 Apr 2026 12:26:09 -0700 Subject: [PATCH 51/61] tmp save --- packages/app-builder-lib/src/asar/asar.ts | 2 +- packages/app-builder-lib/src/asar/asarUtil.ts | 2 +- packages/app-builder-lib/src/codeSign/codesign.ts | 2 +- packages/app-builder-lib/src/codeSign/macCodeSign.ts | 2 +- .../src/codeSign/windowsSignToolManager.ts | 2 +- .../app-builder-lib/src/electron/ElectronFramework.ts | 2 +- packages/app-builder-lib/src/electron/electronVersion.ts | 2 +- packages/app-builder-lib/src/electron/search-module.ts | 2 +- packages/app-builder-lib/src/frameworks/LibUiFramework.ts | 2 +- .../app-builder-lib/src/node-module-collector/index.ts | 2 +- .../src/node-module-collector/moduleManager.ts | 2 +- .../src/node-module-collector/nodeModulesCollector.ts | 4 ++-- .../src/node-module-collector/packageManager.ts | 2 +- packages/app-builder-lib/src/packager.ts | 2 +- packages/app-builder-lib/src/publish/updateInfoBuilder.ts | 2 +- packages/app-builder-lib/src/targets/AppImageTarget.ts | 2 +- packages/app-builder-lib/src/targets/AppxTarget.ts | 2 +- packages/app-builder-lib/src/targets/FlatpakTarget.ts | 2 +- packages/app-builder-lib/src/targets/FpmTarget.ts | 2 +- packages/app-builder-lib/src/targets/LinuxTargetHelper.ts | 2 +- .../src/targets/appimage/AppImageTarget.ts | 2 +- .../app-builder-lib/src/targets/appimage/appImageUtil.ts | 2 +- .../app-builder-lib/src/targets/appimage/appLauncher.ts | 2 +- packages/app-builder-lib/src/targets/archive.ts | 2 +- packages/app-builder-lib/src/targets/nsis/NsisTarget.ts | 2 +- packages/app-builder-lib/src/targets/nsis/nsisLang.ts | 2 +- packages/app-builder-lib/src/targets/snap.ts | 2 +- packages/app-builder-lib/src/util/AppFileWalker.ts | 2 +- packages/app-builder-lib/src/util/NodeModuleCopyHelper.ts | 2 +- packages/app-builder-lib/src/util/appFileCopier.ts | 4 ++-- packages/app-builder-lib/src/util/cacheManager.ts | 2 +- packages/app-builder-lib/src/util/config/config.ts | 4 ++-- packages/app-builder-lib/src/util/macosVersion.ts | 2 +- packages/app-builder-lib/src/util/packageMetadata.ts | 2 +- packages/app-builder-lib/src/util/rebuild.ts | 2 +- packages/app-builder-lib/src/util/repositoryInfo.ts | 2 +- packages/app-builder-lib/src/util/yarn.ts | 2 +- packages/builder-util/src/7za.ts | 2 +- packages/builder-util/src/DebugLogger.ts | 2 +- packages/builder-util/src/fs.ts | 2 +- packages/dmg-builder/src/dmgLicense.ts | 2 +- packages/dmg-builder/src/dmgUtil.ts | 4 ++-- packages/dmg-builder/src/licenseButtons.ts | 2 +- .../src/SquirrelWindowsTarget.ts | 2 +- packages/electron-builder/package.json | 7 ++++++- packages/electron-builder/src/cli/cli.ts | 4 ++-- packages/electron-builder/src/cli/install-app-deps.ts | 2 +- packages/electron-publish/src/bitbucketPublisher.ts | 2 +- packages/electron-publish/src/httpPublisher.ts | 2 +- packages/electron-publish/src/publisher.ts | 2 +- packages/electron-updater/src/AppImageUpdater.ts | 2 +- packages/electron-updater/src/AppUpdater.ts | 2 +- packages/electron-updater/src/DownloadedUpdateHelper.ts | 2 +- packages/electron-updater/src/MacUpdater.ts | 2 +- packages/electron-updater/src/NsisUpdater.ts | 2 +- .../src/differentialDownloader/DifferentialDownloader.ts | 2 +- .../FileWithEmbeddedBlockMapDifferentialDownloader.ts | 2 +- packages/electron-updater/src/main.ts | 2 +- scripts/generate-schema.ts | 4 ++-- scripts/renderer/src/typedoc2html.ts | 2 +- test/src/ArtifactPublisherTest.ts | 4 ++-- test/src/BuildTest.ts | 2 +- test/src/HoistedNodeModuleTest.ts | 2 +- test/src/PublishManagerTest.ts | 2 +- test/src/extraMetadataTest.ts | 2 +- test/src/filesTest.ts | 2 +- test/src/globTest.ts | 2 +- test/src/helpers/downloadElectron.ts | 4 ++-- test/src/helpers/fileAssert.ts | 2 +- test/src/helpers/packTester.ts | 8 ++++---- test/src/helpers/updaterTestUtil.ts | 2 +- test/src/helpers/winHelper.ts | 2 +- test/src/helpers/wine.ts | 2 +- test/src/ignoreTest.ts | 2 +- test/src/linux/linuxPackagerTest.ts | 2 +- test/src/mac/macArchiveTest.ts | 2 +- test/src/mac/macIconTest.ts | 2 +- test/src/packageManagerTest.ts | 2 +- test/src/publisher/gitlab/GitlabTestFixtures.ts | 4 ++-- test/src/updater/blackboxUpdateTest.ts | 4 ++-- test/src/updater/differentialUpdateTest.ts | 2 +- test/src/updater/nsisUpdaterTest.ts | 2 +- test/src/windows/appxTest.ts | 2 +- test/src/windows/oneClickInstallerTest.ts | 2 +- test/src/windows/winCodeSignTest.ts | 4 ++-- test/vitest-scripts/run-vitest.ts | 4 ++-- test/vitest-scripts/smart-config.ts | 2 +- 87 files changed, 107 insertions(+), 102 deletions(-) diff --git a/packages/app-builder-lib/src/asar/asar.ts b/packages/app-builder-lib/src/asar/asar.ts index 357ee5b5d6e..ac08625e5c9 100644 --- a/packages/app-builder-lib/src/asar/asar.ts +++ b/packages/app-builder-lib/src/asar/asar.ts @@ -1,5 +1,5 @@ import * as chromiumPickleJs from "chromium-pickle-js" -import * as fsExtra from "fs-extra" +import fsExtra from "fs-extra" import * as path from "path" export interface ReadAsarHeader { diff --git a/packages/app-builder-lib/src/asar/asarUtil.ts b/packages/app-builder-lib/src/asar/asarUtil.ts index ac3615d48db..77e7f7c0947 100644 --- a/packages/app-builder-lib/src/asar/asarUtil.ts +++ b/packages/app-builder-lib/src/asar/asarUtil.ts @@ -1,7 +1,7 @@ import { AsarDirectory, AsarStreamType, createPackageFromStreams } from "@electron/asar" import { exists, Filter, FilterStats, isEmptyOrSpaces, log } from "builder-util" import * as fs from "fs/promises" -import * as fsExtra from "fs-extra" +import fsExtra from "fs-extra" import * as os from "os" import * as path from "path" import { Readable } from "stream" diff --git a/packages/app-builder-lib/src/codeSign/codesign.ts b/packages/app-builder-lib/src/codeSign/codesign.ts index dd0844d838b..408d7ac7d63 100644 --- a/packages/app-builder-lib/src/codeSign/codesign.ts +++ b/packages/app-builder-lib/src/codeSign/codesign.ts @@ -1,5 +1,5 @@ import { InvalidConfigurationError, statOrNull } from "builder-util" -import * as fsExtra from "fs-extra" +import fsExtra from "fs-extra" import { homedir } from "os" import * as path from "path" import { TmpDir } from "temp-file" diff --git a/packages/app-builder-lib/src/codeSign/macCodeSign.ts b/packages/app-builder-lib/src/codeSign/macCodeSign.ts index 81c68a723c4..d3dca1ad0c4 100644 --- a/packages/app-builder-lib/src/codeSign/macCodeSign.ts +++ b/packages/app-builder-lib/src/codeSign/macCodeSign.ts @@ -105,7 +105,7 @@ const bundledCertKeychainAdded = new Lazy(async () => { const keychainPath = path.join(cacheDir, "electron-builder-root-certs.keychain") const results = await Promise.all([ listUserKeychains(), - copyFile(path.join(__dirname, "..", "..", "certs", "root_certs.keychain"), tmpKeychainPath).then(() => rename(tmpKeychainPath, keychainPath)), + copyFile(path.join(import.meta.dirname, "..", "..", "certs", "root_certs.keychain"), tmpKeychainPath).then(() => rename(tmpKeychainPath, keychainPath)), ]) const list = results[0] if (!list.includes(keychainPath)) { diff --git a/packages/app-builder-lib/src/codeSign/windowsSignToolManager.ts b/packages/app-builder-lib/src/codeSign/windowsSignToolManager.ts index b03bb32420a..84de38d2f9d 100644 --- a/packages/app-builder-lib/src/codeSign/windowsSignToolManager.ts +++ b/packages/app-builder-lib/src/codeSign/windowsSignToolManager.ts @@ -1,6 +1,6 @@ import { asArray, InvalidConfigurationError, log, retry } from "builder-util" import { MemoLazy, parseDn } from "builder-util-runtime" -import * as fsExtra from "fs-extra" +import fsExtra from "fs-extra" import { Lazy } from "lazy-val" import * as path from "path" import { Target } from "../core.js" diff --git a/packages/app-builder-lib/src/electron/ElectronFramework.ts b/packages/app-builder-lib/src/electron/ElectronFramework.ts index 5dbc81cf709..b8baccd0e1b 100644 --- a/packages/app-builder-lib/src/electron/ElectronFramework.ts +++ b/packages/app-builder-lib/src/electron/ElectronFramework.ts @@ -1,5 +1,5 @@ import { asArray, copyDir, DO_NOT_USE_HARD_LINKS, executeAppBuilder, isEmptyOrSpaces, log, MAX_FILE_REQUESTS, statOrNull, unlinkIfExists } from "builder-util" -import * as fsExtra from "fs-extra" +import fsExtra from "fs-extra" import * as path from "path" import asyncPool from "tiny-async-pool" import { Configuration } from "../configuration.js" diff --git a/packages/app-builder-lib/src/electron/electronVersion.ts b/packages/app-builder-lib/src/electron/electronVersion.ts index da5742025f8..dba8fbaf173 100644 --- a/packages/app-builder-lib/src/electron/electronVersion.ts +++ b/packages/app-builder-lib/src/electron/electronVersion.ts @@ -1,6 +1,6 @@ import { httpExecutor, InvalidConfigurationError, log } from "builder-util" import { parseXml } from "builder-util-runtime" -import * as fsExtra from "fs-extra" +import fsExtra from "fs-extra" import { Lazy } from "lazy-val" import * as path from "path" import * as semver from "semver" diff --git a/packages/app-builder-lib/src/electron/search-module.ts b/packages/app-builder-lib/src/electron/search-module.ts index 8e263cae4bc..cf056d3ca72 100644 --- a/packages/app-builder-lib/src/electron/search-module.ts +++ b/packages/app-builder-lib/src/electron/search-module.ts @@ -1,4 +1,4 @@ -import * as fs from "fs-extra" +import fs from "fs-extra" import * as path from "node:path" async function shouldContinueSearch(traversedPath: string, rootPath?: string, stopAtPackageJSON?: boolean): Promise { diff --git a/packages/app-builder-lib/src/frameworks/LibUiFramework.ts b/packages/app-builder-lib/src/frameworks/LibUiFramework.ts index a4aeabd6e88..ef21e41a68d 100644 --- a/packages/app-builder-lib/src/frameworks/LibUiFramework.ts +++ b/packages/app-builder-lib/src/frameworks/LibUiFramework.ts @@ -1,5 +1,5 @@ import { executeAppBuilder } from "builder-util" -import * as fsExtra from "fs-extra" +import fsExtra from "fs-extra" import { chmod, mkdir, rename, writeFile } from "fs/promises" import * as path from "path" import { AfterPackContext } from "../configuration.js" diff --git a/packages/app-builder-lib/src/node-module-collector/index.ts b/packages/app-builder-lib/src/node-module-collector/index.ts index ede4e6dbe1a..e95f15f5656 100644 --- a/packages/app-builder-lib/src/node-module-collector/index.ts +++ b/packages/app-builder-lib/src/node-module-collector/index.ts @@ -8,7 +8,7 @@ import { YarnNodeModulesCollector } from "./yarnNodeModulesCollector.js" import { BunNodeModulesCollector } from "./bunNodeModulesCollector.js" import { Lazy } from "lazy-val" import { spawn, log, exists, isEmptyOrSpaces } from "builder-util" -import * as fs from "fs-extra" +import fs from "fs-extra" import * as path from "path" import { TraversalNodeModulesCollector } from "./traversalNodeModulesCollector.js" diff --git a/packages/app-builder-lib/src/node-module-collector/moduleManager.ts b/packages/app-builder-lib/src/node-module-collector/moduleManager.ts index b1b947c368d..481c22a2f9c 100644 --- a/packages/app-builder-lib/src/node-module-collector/moduleManager.ts +++ b/packages/app-builder-lib/src/node-module-collector/moduleManager.ts @@ -1,6 +1,6 @@ import { exists, isEmptyOrSpaces, log, LogLevel } from "builder-util" import { PackageJson } from "./types.js" -import * as fs from "fs-extra" +import fs from "fs-extra" import * as path from "path" import * as semver from "semver" diff --git a/packages/app-builder-lib/src/node-module-collector/nodeModulesCollector.ts b/packages/app-builder-lib/src/node-module-collector/nodeModulesCollector.ts index d38ed9743ed..4da22eac230 100644 --- a/packages/app-builder-lib/src/node-module-collector/nodeModulesCollector.ts +++ b/packages/app-builder-lib/src/node-module-collector/nodeModulesCollector.ts @@ -1,7 +1,7 @@ import { exists, log, retry, TmpDir } from "builder-util" import * as childProcess from "child_process" -import * as fs from "fs-extra" -import * as fsExtra from "fs-extra" +import fs from "fs-extra" +import fsExtra from "fs-extra" import { Lazy } from "lazy-val" import * as path from "path" import { hoist, type HoisterResult, type HoisterTree } from "./hoist.js" diff --git a/packages/app-builder-lib/src/node-module-collector/packageManager.ts b/packages/app-builder-lib/src/node-module-collector/packageManager.ts index 5e8ba6f7082..d3d965b7b5d 100644 --- a/packages/app-builder-lib/src/node-module-collector/packageManager.ts +++ b/packages/app-builder-lib/src/node-module-collector/packageManager.ts @@ -1,5 +1,5 @@ import { exists, log } from "builder-util" -import * as fs from "fs-extra" +import fs from "fs-extra" import * as path from "path" import * as which from "which" diff --git a/packages/app-builder-lib/src/packager.ts b/packages/app-builder-lib/src/packager.ts index efeca99470a..54ae8f5730b 100644 --- a/packages/app-builder-lib/src/packager.ts +++ b/packages/app-builder-lib/src/packager.ts @@ -16,7 +16,7 @@ import { TmpDir, } from "builder-util" import { CancellationToken, retry } from "builder-util-runtime" -import * as fsExtra from "fs-extra" +import fsExtra from "fs-extra" import { isCI } from "ci-info" import { Lazy } from "lazy-val" import { release as getOsRelease } from "os" diff --git a/packages/app-builder-lib/src/publish/updateInfoBuilder.ts b/packages/app-builder-lib/src/publish/updateInfoBuilder.ts index b6728248804..2257dcda417 100644 --- a/packages/app-builder-lib/src/publish/updateInfoBuilder.ts +++ b/packages/app-builder-lib/src/publish/updateInfoBuilder.ts @@ -1,7 +1,7 @@ import asyncPool from "tiny-async-pool" import { Arch, log, safeStringifyJson, serializeToYaml } from "builder-util" import { GenericServerOptions, PublishConfiguration, UpdateInfo, WindowsUpdateInfo } from "builder-util-runtime" -import * as fsExtra from "fs-extra" +import fsExtra from "fs-extra" import { Lazy } from "lazy-val" import * as path from "path" import * as semver from "semver" diff --git a/packages/app-builder-lib/src/targets/AppImageTarget.ts b/packages/app-builder-lib/src/targets/AppImageTarget.ts index 805e99fa570..60df62df191 100644 --- a/packages/app-builder-lib/src/targets/AppImageTarget.ts +++ b/packages/app-builder-lib/src/targets/AppImageTarget.ts @@ -1,5 +1,5 @@ import { Arch, serializeToYaml } from "builder-util" -import * as fsExtra from "fs-extra" +import fsExtra from "fs-extra" import { Lazy } from "lazy-val" import * as path from "path" import { Target } from "../core.js" diff --git a/packages/app-builder-lib/src/targets/AppxTarget.ts b/packages/app-builder-lib/src/targets/AppxTarget.ts index 00448de2f16..8cc40e5af11 100644 --- a/packages/app-builder-lib/src/targets/AppxTarget.ts +++ b/packages/app-builder-lib/src/targets/AppxTarget.ts @@ -1,6 +1,6 @@ import { Arch, asArray, copyOrLinkFile, deepAssign, InvalidConfigurationError, log, walk } from "builder-util" import { Nullish } from "builder-util-runtime" -import * as fsExtra from "fs-extra" +import fsExtra from "fs-extra" import * as path from "path" import { AppXOptions } from "../index.js" import { getWindowsKitsBundle } from "../toolsets/windows.js" diff --git a/packages/app-builder-lib/src/targets/FlatpakTarget.ts b/packages/app-builder-lib/src/targets/FlatpakTarget.ts index 3bd2d829c42..e87b4b5ef08 100644 --- a/packages/app-builder-lib/src/targets/FlatpakTarget.ts +++ b/packages/app-builder-lib/src/targets/FlatpakTarget.ts @@ -1,6 +1,6 @@ import { bundle as bundleFlatpak, FlatpakBundlerBuildOptions, FlatpakManifest } from "@malept/flatpak-bundler" import { Arch, copyFile, toLinuxArchString } from "builder-util" -import * as fsExtra from "fs-extra" +import fsExtra from "fs-extra" import * as path from "path" import { Target } from "../core.js" import { LinuxPackager } from "../linuxPackager.js" diff --git a/packages/app-builder-lib/src/targets/FpmTarget.ts b/packages/app-builder-lib/src/targets/FpmTarget.ts index 8143fdf71ad..9957f88ea79 100644 --- a/packages/app-builder-lib/src/targets/FpmTarget.ts +++ b/packages/app-builder-lib/src/targets/FpmTarget.ts @@ -1,6 +1,6 @@ import { Arch, asArray, exec, getArchSuffix, log, serializeToYaml, TmpDir, toLinuxArchString, unlinkIfExists, use } from "builder-util" import { Nullish } from "builder-util-runtime" -import * as fsExtra from "fs-extra" +import fsExtra from "fs-extra" import { mkdir, readFile } from "fs/promises" import * as path from "path" import { smarten } from "../appInfo.js" diff --git a/packages/app-builder-lib/src/targets/LinuxTargetHelper.ts b/packages/app-builder-lib/src/targets/LinuxTargetHelper.ts index e53f8e37867..0f00a64438d 100644 --- a/packages/app-builder-lib/src/targets/LinuxTargetHelper.ts +++ b/packages/app-builder-lib/src/targets/LinuxTargetHelper.ts @@ -1,5 +1,5 @@ import { asArray, exists, isEmptyOrSpaces, log } from "builder-util" -import * as fsExtra from "fs-extra" +import fsExtra from "fs-extra" import { Lazy } from "lazy-val" import { join } from "path" import { LinuxPackager } from "../linuxPackager.js" diff --git a/packages/app-builder-lib/src/targets/appimage/AppImageTarget.ts b/packages/app-builder-lib/src/targets/appimage/AppImageTarget.ts index 9ef1f74828f..7d70aa26a80 100644 --- a/packages/app-builder-lib/src/targets/appimage/AppImageTarget.ts +++ b/packages/app-builder-lib/src/targets/appimage/AppImageTarget.ts @@ -1,6 +1,6 @@ import { IconInfo } from "../../platformPackager.js" import { Arch, log, serializeToYaml } from "builder-util" -import * as fsExtra from "fs-extra" +import fsExtra from "fs-extra" import { Lazy } from "lazy-val" import * as path from "path" import { Target } from "../../core.js" diff --git a/packages/app-builder-lib/src/targets/appimage/appImageUtil.ts b/packages/app-builder-lib/src/targets/appimage/appImageUtil.ts index 46145117585..70a6396ce67 100644 --- a/packages/app-builder-lib/src/targets/appimage/appImageUtil.ts +++ b/packages/app-builder-lib/src/targets/appimage/appImageUtil.ts @@ -1,5 +1,5 @@ import { Arch, copyDir, copyFile, exec, exists, InvalidConfigurationError, log } from "builder-util" -import * as fs from "fs-extra" +import fs from "fs-extra" import * as path from "path" import { FileAssociation } from "../../options/FileAssociation.js" import { IconInfo } from "../../platformPackager.js" diff --git a/packages/app-builder-lib/src/targets/appimage/appLauncher.ts b/packages/app-builder-lib/src/targets/appimage/appLauncher.ts index e506de3c953..fdea0bfd11a 100644 --- a/packages/app-builder-lib/src/targets/appimage/appLauncher.ts +++ b/packages/app-builder-lib/src/targets/appimage/appLauncher.ts @@ -1,5 +1,5 @@ import * as path from "path" -import * as fs from "fs-extra" +import fs from "fs-extra" import { copyOrLinkFile, log } from "builder-util" import { AppImageBuilderOptions } from "./appImageUtil.js" diff --git a/packages/app-builder-lib/src/targets/archive.ts b/packages/app-builder-lib/src/targets/archive.ts index 997a6169cb8..f3936f65c52 100644 --- a/packages/app-builder-lib/src/targets/archive.ts +++ b/packages/app-builder-lib/src/targets/archive.ts @@ -1,5 +1,5 @@ import { debug7z, exec, exists, getPath7za, log, statOrNull, unlinkIfExists } from "builder-util" -import * as fsExtra from "fs-extra" +import fsExtra from "fs-extra" import * as path from "path" import { create } from "tar" import { TmpDir } from "temp-file" diff --git a/packages/app-builder-lib/src/targets/nsis/NsisTarget.ts b/packages/app-builder-lib/src/targets/nsis/NsisTarget.ts index c19e23ae091..b0ea75570c0 100644 --- a/packages/app-builder-lib/src/targets/nsis/NsisTarget.ts +++ b/packages/app-builder-lib/src/targets/nsis/NsisTarget.ts @@ -18,7 +18,7 @@ import { import { CURRENT_APP_INSTALLER_FILE_NAME, CURRENT_APP_PACKAGE_FILE_NAME, PackageFileInfo, UUID } from "builder-util-runtime" import _debug from "debug" import * as fs from "fs" -import * as fsExtra from "fs-extra" +import fsExtra from "fs-extra" import * as path from "path" import { Target } from "../../core.js" import { DesktopShortcutCreationPolicy, getEffectiveOptions } from "../../options/CommonWindowsInstallerConfiguration.js" diff --git a/packages/app-builder-lib/src/targets/nsis/nsisLang.ts b/packages/app-builder-lib/src/targets/nsis/nsisLang.ts index f97b14265af..0e2dc7a27dd 100644 --- a/packages/app-builder-lib/src/targets/nsis/nsisLang.ts +++ b/packages/app-builder-lib/src/targets/nsis/nsisLang.ts @@ -1,6 +1,6 @@ import { asArray } from "builder-util" import _debug from "debug" -import * as fsExtra from "fs-extra" +import fsExtra from "fs-extra" import { load } from "js-yaml" import * as path from "path" import { PlatformPackager } from "../../platformPackager.js" diff --git a/packages/app-builder-lib/src/targets/snap.ts b/packages/app-builder-lib/src/targets/snap.ts index aefb79d4a2c..265f979bc71 100644 --- a/packages/app-builder-lib/src/targets/snap.ts +++ b/packages/app-builder-lib/src/targets/snap.ts @@ -1,6 +1,6 @@ import { replaceDefault as _replaceDefault, Arch, deepAssign, executeAppBuilder, InvalidConfigurationError, log, serializeToYaml, toLinuxArchString } from "builder-util" import { asArray, Nullish, SnapStoreOptions } from "builder-util-runtime" -import * as fsExtra from "fs-extra" +import fsExtra from "fs-extra" import { load } from "js-yaml" import * as path from "path" import * as semver from "semver" diff --git a/packages/app-builder-lib/src/util/AppFileWalker.ts b/packages/app-builder-lib/src/util/AppFileWalker.ts index 523a5c700e8..fb2ec796228 100644 --- a/packages/app-builder-lib/src/util/AppFileWalker.ts +++ b/packages/app-builder-lib/src/util/AppFileWalker.ts @@ -1,5 +1,5 @@ import { FileConsumer, Filter, FilterStats } from "builder-util" -import * as fsExtra from "fs-extra" +import fsExtra from "fs-extra" import * as path from "path" import { FileMatcher } from "../fileMatcher.js" import { Packager } from "../packager.js" diff --git a/packages/app-builder-lib/src/util/NodeModuleCopyHelper.ts b/packages/app-builder-lib/src/util/NodeModuleCopyHelper.ts index 7183e7eb877..7be83e57865 100644 --- a/packages/app-builder-lib/src/util/NodeModuleCopyHelper.ts +++ b/packages/app-builder-lib/src/util/NodeModuleCopyHelper.ts @@ -1,6 +1,6 @@ import { FilterStats, MAX_FILE_REQUESTS } from "builder-util" import { realpathSync } from "fs" -import * as fsExtra from "fs-extra" +import fsExtra from "fs-extra" import * as path from "path" import asyncPool from "tiny-async-pool" import { excludedNames, FileMatcher } from "../fileMatcher.js" diff --git a/packages/app-builder-lib/src/util/appFileCopier.ts b/packages/app-builder-lib/src/util/appFileCopier.ts index eebfe5d9d0a..686d7a30789 100644 --- a/packages/app-builder-lib/src/util/appFileCopier.ts +++ b/packages/app-builder-lib/src/util/appFileCopier.ts @@ -1,6 +1,6 @@ import { AsyncTaskManager, FileCopier, FileTransformer, isEmptyOrSpaces, Link, log, MAX_FILE_REQUESTS, statOrNull, walk } from "builder-util" import { Stats } from "fs" -import * as fsExtra from "fs-extra" +import fsExtra from "fs-extra" import { mkdir, readlink } from "fs/promises" import * as path from "path" import asyncPool from "tiny-async-pool" @@ -295,7 +295,7 @@ async function compileUsingElectronCompile(mainFileSet: ResolvedFileSet, package mainFileSet.files.length - 1, ` 'use strict'; -require('electron-compile').init(__dirname, require('path').resolve(__dirname, '${packager.metadata.main || "index"}'), true); +require('electron-compile').init(import.meta.dirname, require('path').resolve(import.meta.dirname, '${packager.metadata.main || "index"}'), true); ` ) return { src: electronCompileCache, files: cacheFiles, metadata, destination: mainFileSet.destination } diff --git a/packages/app-builder-lib/src/util/cacheManager.ts b/packages/app-builder-lib/src/util/cacheManager.ts index 5d832fb1f3a..5ea787aac90 100644 --- a/packages/app-builder-lib/src/util/cacheManager.ts +++ b/packages/app-builder-lib/src/util/cacheManager.ts @@ -1,6 +1,6 @@ import { Arch, copyFile, log, orNullIfFileNotExist } from "builder-util" import { Hash } from "crypto" -import * as fsExtra from "fs-extra" +import fsExtra from "fs-extra" import { mkdir, readFile } from "fs/promises" import * as path from "path" diff --git a/packages/app-builder-lib/src/util/config/config.ts b/packages/app-builder-lib/src/util/config/config.ts index 10f9fe27536..aab3a0a7a3a 100644 --- a/packages/app-builder-lib/src/util/config/config.ts +++ b/packages/app-builder-lib/src/util/config/config.ts @@ -1,6 +1,6 @@ import { DebugLogger, deepAssign, InvalidConfigurationError, log, safeStringifyJson, statOrNull } from "builder-util" import { Nullish } from "builder-util-runtime" -import * as fsExtra from "fs-extra" +import fsExtra from "fs-extra" import { Lazy } from "lazy-val" import * as path from "path" import { Configuration } from "../../configuration.js" @@ -214,7 +214,7 @@ function getDefaultConfig(): Configuration { } } -const schemeDataPromise = new Lazy(() => fsExtra.readJson(path.join(__dirname, "..", "..", "..", "scheme.json"))) +const schemeDataPromise = new Lazy(() => fsExtra.readJson(path.join(import.meta.dirname, "..", "..", "..", "scheme.json"))) export async function validateConfiguration(config: Configuration, debugLogger: DebugLogger) { const extraMetadata = config.extraMetadata diff --git a/packages/app-builder-lib/src/util/macosVersion.ts b/packages/app-builder-lib/src/util/macosVersion.ts index ea8983dea5e..c10ba42f597 100644 --- a/packages/app-builder-lib/src/util/macosVersion.ts +++ b/packages/app-builder-lib/src/util/macosVersion.ts @@ -1,5 +1,5 @@ import { log } from "builder-util" -import * as fsExtra from "fs-extra" +import fsExtra from "fs-extra" import { Lazy } from "lazy-val" import { release as osRelease } from "os" import * as semver from "semver" diff --git a/packages/app-builder-lib/src/util/packageMetadata.ts b/packages/app-builder-lib/src/util/packageMetadata.ts index 82c307dde33..c57213817e7 100644 --- a/packages/app-builder-lib/src/util/packageMetadata.ts +++ b/packages/app-builder-lib/src/util/packageMetadata.ts @@ -114,7 +114,7 @@ function checkDependencies(dependencies: Record | Nullish, error for (const prefix of prefixes) { if (updaterVersion.startsWith(prefix)) { const normalized = path.normalize(updaterVersion.substring(prefix.length)) - const packageJsonPath = path.isAbsolute(normalized) ? normalized : path.resolve(__dirname, normalized) + const packageJsonPath = path.isAbsolute(normalized) ? normalized : path.resolve(import.meta.dirname, normalized) const json = fsExtra.readJsonSync(path.join(packageJsonPath, "package.json")) updaterVersion = json.version break diff --git a/packages/app-builder-lib/src/util/rebuild.ts b/packages/app-builder-lib/src/util/rebuild.ts index 481de04fde8..28a47563a70 100644 --- a/packages/app-builder-lib/src/util/rebuild.ts +++ b/packages/app-builder-lib/src/util/rebuild.ts @@ -7,7 +7,7 @@ export const rebuild = async (options: RebuildOptions): Promise => { const { arch } = options log.info({ arch }, `installing native dependencies`) - const child = cp.fork(path.resolve(__dirname, "../../helpers/remote-rebuild.js"), [JSON.stringify(options)], { + const child = cp.fork(path.resolve(import.meta.dirname, "../../helpers/remote-rebuild.js"), [JSON.stringify(options)], { stdio: ["pipe", "pipe", "pipe", "ipc"], }) diff --git a/packages/app-builder-lib/src/util/repositoryInfo.ts b/packages/app-builder-lib/src/util/repositoryInfo.ts index 24e8cf8a4c3..61f1365d77f 100644 --- a/packages/app-builder-lib/src/util/repositoryInfo.ts +++ b/packages/app-builder-lib/src/util/repositoryInfo.ts @@ -1,5 +1,5 @@ import { orNullIfFileNotExist } from "builder-util" -import * as fsExtra from "fs-extra" +import fsExtra from "fs-extra" import GitHost, { fromUrl } from "hosted-git-info" import * as path from "path" import { SourceRepositoryInfo } from "../core.js" diff --git a/packages/app-builder-lib/src/util/yarn.ts b/packages/app-builder-lib/src/util/yarn.ts index 3dfe8efe83b..bb76d6f26d9 100644 --- a/packages/app-builder-lib/src/util/yarn.ts +++ b/packages/app-builder-lib/src/util/yarn.ts @@ -1,5 +1,5 @@ import { asArray, log, spawn } from "builder-util" -import * as fsExtra from "fs-extra" +import fsExtra from "fs-extra" import { Lazy } from "lazy-val" import { homedir } from "os" import * as path from "path" diff --git a/packages/builder-util/src/7za.ts b/packages/builder-util/src/7za.ts index 742255b05b9..ef0582909bd 100644 --- a/packages/builder-util/src/7za.ts +++ b/packages/builder-util/src/7za.ts @@ -1,6 +1,6 @@ import { path7x, path7za } from "7zip-bin" import * as fs from "fs" -import * as fsExtra from "fs-extra" +import fsExtra from "fs-extra" export async function getPath7za(): Promise { if (fs.existsSync(path7za)) { diff --git a/packages/builder-util/src/DebugLogger.ts b/packages/builder-util/src/DebugLogger.ts index 1a6ee37aa8e..a37dfe5e1b9 100644 --- a/packages/builder-util/src/DebugLogger.ts +++ b/packages/builder-util/src/DebugLogger.ts @@ -1,4 +1,4 @@ -import * as fsExtra from "fs-extra" +import fsExtra from "fs-extra" import { serializeToYaml } from "./util.js" import { mapToObject } from "./mapper.js" diff --git a/packages/builder-util/src/fs.ts b/packages/builder-util/src/fs.ts index de9658b627f..aac7f52a0b6 100644 --- a/packages/builder-util/src/fs.ts +++ b/packages/builder-util/src/fs.ts @@ -1,6 +1,6 @@ import { Nullish } from "builder-util-runtime" import { Stats } from "fs" -import * as fsExtra from "fs-extra" +import fsExtra from "fs-extra" import { access, chmod, link, lstat, mkdir, readdir, readlink, stat, symlink, unlink, writeFile } from "fs/promises" import { platform } from "os" import * as path from "path" diff --git a/packages/dmg-builder/src/dmgLicense.ts b/packages/dmg-builder/src/dmgLicense.ts index a63c2ad25c7..0b542f6ba0e 100644 --- a/packages/dmg-builder/src/dmgLicense.ts +++ b/packages/dmg-builder/src/dmgLicense.ts @@ -1,7 +1,7 @@ import { PlatformPackager } from "app-builder-lib" import { log } from "builder-util" import { dmgLicenseFromJSON } from "dmg-license" -import * as fsExtra from "fs-extra" +import fsExtra from "fs-extra" import { load } from "js-yaml" import { getLicenseButtonsFile } from "./licenseButtons.js" import { getLicenseFiles } from "app-builder-lib" diff --git a/packages/dmg-builder/src/dmgUtil.ts b/packages/dmg-builder/src/dmgUtil.ts index e69d2aa9572..38e324eef86 100644 --- a/packages/dmg-builder/src/dmgUtil.ts +++ b/packages/dmg-builder/src/dmgUtil.ts @@ -1,14 +1,14 @@ import { DmgOptions, MacPackager, PlatformPackager } from "app-builder-lib" import { downloadArtifact } from "app-builder-lib" import { exec, executeFinally, exists, isEmptyOrSpaces, TmpDir } from "builder-util" -import * as fsExtra from "fs-extra" +import fsExtra from "fs-extra" import * as path from "path" import { DmgBuildConfig } from "./dmg.js" import { hdiUtil, hdiutilTransientExitCodes } from "./hdiuil.js" export { DmgTarget } from "./dmg.js" -const root = path.join(__dirname, "..") +const root = path.join(import.meta.dirname, "..") export function getDmgTemplatePath() { return path.join(root, "templates") diff --git a/packages/dmg-builder/src/licenseButtons.ts b/packages/dmg-builder/src/licenseButtons.ts index deb3cd47053..8c53a704a4c 100644 --- a/packages/dmg-builder/src/licenseButtons.ts +++ b/packages/dmg-builder/src/licenseButtons.ts @@ -1,7 +1,7 @@ import { PlatformPackager } from "app-builder-lib" import { getLicenseAssets } from "app-builder-lib" import { log } from "builder-util" -import * as fsExtra from "fs-extra" +import fsExtra from "fs-extra" import * as iconv from "iconv-lite" import { load } from "js-yaml" import { serializeString } from "./dmgUtil.js" diff --git a/packages/electron-builder-squirrel-windows/src/SquirrelWindowsTarget.ts b/packages/electron-builder-squirrel-windows/src/SquirrelWindowsTarget.ts index 0539efb0fa1..a6922d298f3 100644 --- a/packages/electron-builder-squirrel-windows/src/SquirrelWindowsTarget.ts +++ b/packages/electron-builder-squirrel-windows/src/SquirrelWindowsTarget.ts @@ -157,7 +157,7 @@ export default class SquirrelWindowsTarget extends Target { } private async createNuspecTemplateWithProjectUrl() { - const templatePath = path.resolve(__dirname, "..", "template.nuspectemplate") + const templatePath = path.resolve(import.meta.dirname, "..", "template.nuspectemplate") const projectUrl = await this.packager.appInfo.computePackageUrl() if (projectUrl != null) { const nuspecTemplate = await this.packager.info.tempDirManager.getTempFile({ prefix: "template", suffix: ".nuspectemplate" }) diff --git a/packages/electron-builder/package.json b/packages/electron-builder/package.json index 0513d9c3da3..d1051126c8b 100644 --- a/packages/electron-builder/package.json +++ b/packages/electron-builder/package.json @@ -2,7 +2,12 @@ "name": "electron-builder", "description": "A complete solution to package and build a ready for distribution Electron app for MacOS, Windows and Linux with “auto update” support out of the box", "version": "26.8.2", - "main": "out/index.js", + "type": "module", + "exports": { + ".": "./out/index.js", + "./cli": "./cli.js", + "./install-app-deps": "./install-app-deps.js" + }, "files": [ "out" ], diff --git a/packages/electron-builder/src/cli/cli.ts b/packages/electron-builder/src/cli/cli.ts index f29f6fcd0a7..6869c836378 100644 --- a/packages/electron-builder/src/cli/cli.ts +++ b/packages/electron-builder/src/cli/cli.ts @@ -5,7 +5,7 @@ import { loadEnv } from "app-builder-lib" import { nodeGypRebuild } from "app-builder-lib" import { ExecError, InvalidConfigurationError, log } from "builder-util" import * as chalk from "chalk" -import * as fsExtra from "fs-extra" +import fsExtra from "fs-extra" import { isCI } from "ci-info" import * as path from "path" import { build, configureBuildCommand, createYargs } from "../builder.js" @@ -68,7 +68,7 @@ async function checkIsOutdated() { return } - const pkg = await fsExtra.readJson(path.join(__dirname, "..", "..", "package.json")) + const pkg = await fsExtra.readJson(path.join(import.meta.dirname, "..", "..", "package.json")) if (pkg.version === "0.0.0-semantic-release") { return } diff --git a/packages/electron-builder/src/cli/install-app-deps.ts b/packages/electron-builder/src/cli/install-app-deps.ts index f52b505a387..a3cae0d2813 100644 --- a/packages/electron-builder/src/cli/install-app-deps.ts +++ b/packages/electron-builder/src/cli/install-app-deps.ts @@ -1,7 +1,7 @@ #! /usr/bin/env node import { computeDefaultAppDirectory, createLazyProductionDeps, determinePackageManagerEnv, getConfig, getElectronVersion, installOrRebuild, PACKAGE_VERSION } from "app-builder-lib" import { getArchCliNames, log, orNullIfFileNotExist, printErrorAndExit } from "builder-util" -import * as fsExtra from "fs-extra" +import fsExtra from "fs-extra" import { Lazy } from "lazy-val" import * as path from "path" import { Argv } from "yargs" diff --git a/packages/electron-publish/src/bitbucketPublisher.ts b/packages/electron-publish/src/bitbucketPublisher.ts index bdc29ca6e30..cb45b36d901 100644 --- a/packages/electron-publish/src/bitbucketPublisher.ts +++ b/packages/electron-publish/src/bitbucketPublisher.ts @@ -2,7 +2,7 @@ import { Arch, httpExecutor, InvalidConfigurationError, isEmptyOrSpaces, log } f import { configureRequestOptions, HttpExecutor } from "builder-util-runtime" import { BitbucketOptions } from "builder-util-runtime" import FormData from "form-data" -import * as fsExtra from "fs-extra" +import fsExtra from "fs-extra" import { ClientRequest, RequestOptions } from "http" import { PublishContext } from "./index.js" import { HttpPublisher } from "./httpPublisher.js" diff --git a/packages/electron-publish/src/httpPublisher.ts b/packages/electron-publish/src/httpPublisher.ts index dfcdb1d595d..549132ee2f1 100644 --- a/packages/electron-publish/src/httpPublisher.ts +++ b/packages/electron-publish/src/httpPublisher.ts @@ -1,5 +1,5 @@ import { Arch } from "builder-util" -import * as fsExtra from "fs-extra" +import fsExtra from "fs-extra" import { ClientRequest } from "http" import { basename } from "path" import { PublishContext, UploadTask } from "./index.js" diff --git a/packages/electron-publish/src/publisher.ts b/packages/electron-publish/src/publisher.ts index 001422832c1..747d2d09b89 100644 --- a/packages/electron-publish/src/publisher.ts +++ b/packages/electron-publish/src/publisher.ts @@ -1,7 +1,7 @@ import { log, PADDING } from "builder-util" import { ProgressCallbackTransform, PublishProvider } from "builder-util-runtime" import * as chalk from "chalk" -import * as fsExtra from "fs-extra" +import fsExtra from "fs-extra" import { PublishContext, UploadTask } from "./index.js" import { ProgressBar } from "./progress.js" diff --git a/packages/electron-updater/src/AppImageUpdater.ts b/packages/electron-updater/src/AppImageUpdater.ts index 4d05cb7d55a..895a78bc145 100644 --- a/packages/electron-updater/src/AppImageUpdater.ts +++ b/packages/electron-updater/src/AppImageUpdater.ts @@ -1,6 +1,6 @@ import { AllPublishOptions, newError } from "builder-util-runtime" import { execFileSync } from "child_process" -import * as fsExtra from "fs-extra" +import fsExtra from "fs-extra" import { unlinkSync } from "fs" import * as path from "path" import { DownloadUpdateOptions } from "./AppUpdater.js" diff --git a/packages/electron-updater/src/AppUpdater.ts b/packages/electron-updater/src/AppUpdater.ts index 963cfb9d3c2..4af324c93f4 100644 --- a/packages/electron-updater/src/AppUpdater.ts +++ b/packages/electron-updater/src/AppUpdater.ts @@ -15,7 +15,7 @@ import { import { randomBytes } from "crypto" import { release } from "os" import { EventEmitter } from "events" -import * as fsExtra from "fs-extra" +import fsExtra from "fs-extra" import { OutgoingHttpHeaders } from "http" import { load } from "js-yaml" import { Lazy } from "lazy-val" diff --git a/packages/electron-updater/src/DownloadedUpdateHelper.ts b/packages/electron-updater/src/DownloadedUpdateHelper.ts index eb4aa90d2cd..6d07d0017b8 100644 --- a/packages/electron-updater/src/DownloadedUpdateHelper.ts +++ b/packages/electron-updater/src/DownloadedUpdateHelper.ts @@ -5,7 +5,7 @@ import { createReadStream } from "fs" import * as isEqual from "lodash.isequal" import { ResolvedUpdateFileInfo } from "./types.js" import { Logger } from "./types.js" -import * as fsExtra from "fs-extra" +import fsExtra from "fs-extra" import * as path from "path" /** @private **/ diff --git a/packages/electron-updater/src/MacUpdater.ts b/packages/electron-updater/src/MacUpdater.ts index 92f24a06542..3405682d218 100644 --- a/packages/electron-updater/src/MacUpdater.ts +++ b/packages/electron-updater/src/MacUpdater.ts @@ -1,5 +1,5 @@ import { AllPublishOptions, newError, safeStringifyJson } from "builder-util-runtime" -import * as fsExtra from "fs-extra" +import fsExtra from "fs-extra" import { createReadStream } from "fs" import * as path from "path" import { createServer, IncomingMessage, Server, ServerResponse } from "http" diff --git a/packages/electron-updater/src/NsisUpdater.ts b/packages/electron-updater/src/NsisUpdater.ts index 977979a68ab..f2a4f95781c 100644 --- a/packages/electron-updater/src/NsisUpdater.ts +++ b/packages/electron-updater/src/NsisUpdater.ts @@ -8,7 +8,7 @@ import { FileWithEmbeddedBlockMapDifferentialDownloader } from "./differentialDo import { DOWNLOAD_PROGRESS } from "./types.js" import { VerifyUpdateCodeSignature } from "./main.js" import { findFile, Provider } from "./providers/Provider.js" -import * as fsExtra from "fs-extra" +import fsExtra from "fs-extra" import { verifySignature } from "./windowsExecutableCodeSignatureVerifier.js" import { URL } from "url" diff --git a/packages/electron-updater/src/differentialDownloader/DifferentialDownloader.ts b/packages/electron-updater/src/differentialDownloader/DifferentialDownloader.ts index 4fe69058223..15b9d20e168 100644 --- a/packages/electron-updater/src/differentialDownloader/DifferentialDownloader.ts +++ b/packages/electron-updater/src/differentialDownloader/DifferentialDownloader.ts @@ -1,6 +1,6 @@ import { BlockMapDataHolder, createHttpError, DigestTransform, HttpExecutor, configureRequestUrl, configureRequestOptions } from "builder-util-runtime" import { BlockMap } from "builder-util-runtime" -import * as fsExtra from "fs-extra" +import fsExtra from "fs-extra" import { createWriteStream } from "fs" import { OutgoingHttpHeaders, RequestOptions } from "http" import { ProgressInfo, CancellationToken } from "builder-util-runtime" diff --git a/packages/electron-updater/src/differentialDownloader/FileWithEmbeddedBlockMapDifferentialDownloader.ts b/packages/electron-updater/src/differentialDownloader/FileWithEmbeddedBlockMapDifferentialDownloader.ts index 16619dce902..e842403c7c1 100644 --- a/packages/electron-updater/src/differentialDownloader/FileWithEmbeddedBlockMapDifferentialDownloader.ts +++ b/packages/electron-updater/src/differentialDownloader/FileWithEmbeddedBlockMapDifferentialDownloader.ts @@ -1,5 +1,5 @@ import { BlockMap } from "builder-util-runtime" -import * as fsExtra from "fs-extra" +import fsExtra from "fs-extra" import { DifferentialDownloader } from "./DifferentialDownloader.js" import { inflateRawSync } from "zlib" diff --git a/packages/electron-updater/src/main.ts b/packages/electron-updater/src/main.ts index b59dc9012bb..e3b91b4715f 100644 --- a/packages/electron-updater/src/main.ts +++ b/packages/electron-updater/src/main.ts @@ -1,4 +1,4 @@ -import * as fsExtra from "fs-extra" +import fsExtra from "fs-extra" import * as path from "path" import { AppUpdater } from "./AppUpdater.js" diff --git a/scripts/generate-schema.ts b/scripts/generate-schema.ts index 9fa97720530..fc4c9fd95e5 100644 --- a/scripts/generate-schema.ts +++ b/scripts/generate-schema.ts @@ -3,7 +3,7 @@ import * as path from "path" import { TypeScript } from "typedoc" import * as TJS from "typescript-json-schema" -const rootDir = path.resolve(__dirname, "../packages") +const rootDir = path.resolve(import.meta.dirname, "../packages") const compilerOptions: TJS.CompilerOptions = { target: TypeScript.ScriptTarget.ES2022 as any, @@ -88,5 +88,5 @@ schema!.properties!["$schema"] = { type: ["null", "string"], } -const schemaFile = path.join(__dirname, "../packages/app-builder-lib/scheme.json") +const schemaFile = path.join(import.meta.dirname, "../packages/app-builder-lib/scheme.json") fs.writeFileSync(schemaFile, JSON.stringify(schema, null, 2)) diff --git a/scripts/renderer/src/typedoc2html.ts b/scripts/renderer/src/typedoc2html.ts index 9605cccb467..31e405f6e67 100644 --- a/scripts/renderer/src/typedoc2html.ts +++ b/scripts/renderer/src/typedoc2html.ts @@ -1,4 +1,4 @@ -import * as fsExtra from "fs-extra" +import fsExtra from "fs-extra" import { rm } from "fs/promises" import * as path from "path" import * as process from "process" diff --git a/test/src/ArtifactPublisherTest.ts b/test/src/ArtifactPublisherTest.ts index 49d3ee897f2..f32bb1032e4 100644 --- a/test/src/ArtifactPublisherTest.ts +++ b/test/src/ArtifactPublisherTest.ts @@ -17,8 +17,8 @@ function versionNumber() { //noinspection SpellCheckingInspection const token = Buffer.from("Y2Y5NDdhZDJhYzJlMzg1OGNiNzQzYzcwOWZhNGI0OTk2NWQ4ZDg3Yg==", "base64").toString() -const iconPath = path.join(__dirname, "..", "fixtures", "test-app", "build", "icon.icns") -const icoPath = path.join(__dirname, "..", "fixtures", "test-app", "build", "icon.ico") +const iconPath = path.join(import.meta.dirname, "..", "fixtures", "test-app", "build", "icon.icns") +const icoPath = path.join(import.meta.dirname, "..", "fixtures", "test-app", "build", "icon.ico") const publishContext: PublishContext = { cancellationToken: new CancellationToken(), diff --git a/test/src/BuildTest.ts b/test/src/BuildTest.ts index 457d04fa2dd..780a81eb7f3 100644 --- a/test/src/BuildTest.ts +++ b/test/src/BuildTest.ts @@ -3,7 +3,7 @@ import { doMergeConfigs } from "app-builder-lib" import { Arch, createTargets, DIR_TARGET, Platform } from "electron-builder" import { createYargs } from "electron-builder" import { promises as fs } from "fs" -import * as fsExtra from "fs-extra" +import fsExtra from "fs-extra" import * as path from "path" import { app, appTwo, appTwoThrows, assertPack, getFixtureDir, linuxDirTarget, modifyPackageJson, packageJson, toSystemIndependentPath } from "./helpers/packTester.js" import { ELECTRON_VERSION } from "./helpers/testConfig.js" diff --git a/test/src/HoistedNodeModuleTest.ts b/test/src/HoistedNodeModuleTest.ts index 4b7befaffe4..1a87672e491 100644 --- a/test/src/HoistedNodeModuleTest.ts +++ b/test/src/HoistedNodeModuleTest.ts @@ -4,7 +4,7 @@ import { Arch, DIR_TARGET, Platform } from "electron-builder" import * as path from "path" import { appTwoThrows, assertPack, linuxDirTarget, modifyPackageJson, verifyAsarFileTree } from "./helpers/packTester" import { ELECTRON_VERSION } from "./helpers/testConfig" -import * as fsExtra from "fs-extra" +import fsExtra from "fs-extra" describe.ifNotWindows("node_module collectors", () => { test("yarn workspace", ({ expect }) => diff --git a/test/src/PublishManagerTest.ts b/test/src/PublishManagerTest.ts index fd3f5ee711c..45197fd040f 100644 --- a/test/src/PublishManagerTest.ts +++ b/test/src/PublishManagerTest.ts @@ -1,6 +1,6 @@ import { GenericServerOptions, GithubOptions, KeygenOptions, SpacesOptions } from "builder-util-runtime" import { Arch, createTargets, Platform } from "electron-builder" -import * as fsExtra from "fs-extra" +import fsExtra from "fs-extra" import * as path from "path" import { assertThat } from "./helpers/fileAssert.js" import { app, checkDirContents } from "./helpers/packTester.js" diff --git a/test/src/extraMetadataTest.ts b/test/src/extraMetadataTest.ts index 5fba1ce28d6..b908da4f61f 100644 --- a/test/src/extraMetadataTest.ts +++ b/test/src/extraMetadataTest.ts @@ -1,7 +1,7 @@ import { readAsarJson } from "app-builder-lib" import { Platform } from "electron-builder" import { coerceTypes } from "electron-builder" -import * as fsExtra from "fs-extra" +import fsExtra from "fs-extra" import * as path from "path" import { assertThat } from "./helpers/fileAssert.js" import { app, linuxDirTarget, modifyPackageJson } from "./helpers/packTester.js" diff --git a/test/src/filesTest.ts b/test/src/filesTest.ts index 176f7d40364..57ee4e8d74a 100644 --- a/test/src/filesTest.ts +++ b/test/src/filesTest.ts @@ -1,6 +1,6 @@ import { TmpDir, archFromString, copyDir } from "builder-util" import { DIR_TARGET, Platform } from "electron-builder" -import * as fsExtra from "fs-extra" +import fsExtra from "fs-extra" import * as fs from "fs/promises" import * as path from "path" import statMode from "stat-mode" diff --git a/test/src/globTest.ts b/test/src/globTest.ts index 341053fd6fa..f126243f051 100644 --- a/test/src/globTest.ts +++ b/test/src/globTest.ts @@ -1,7 +1,7 @@ import { Platform } from "app-builder-lib" import { readAsar } from "app-builder-lib" import { PM } from "app-builder-lib" -import * as fsExtra from "fs-extra" +import fsExtra from "fs-extra" import * as fs from "fs/promises" import * as path from "path" import { ExpectStatic } from "vitest" diff --git a/test/src/helpers/downloadElectron.ts b/test/src/helpers/downloadElectron.ts index 93b813c8fa1..772e69a5873 100644 --- a/test/src/helpers/downloadElectron.ts +++ b/test/src/helpers/downloadElectron.ts @@ -4,7 +4,7 @@ import * as path from "path" import { gte } from "semver" import { ELECTRON_VERSION, getElectronCacheDir } from "./testConfig.js" -const executeAppBuilder: (options: any) => Promise = require(path.join(__dirname, "../../..", "packages/builder-util")).executeAppBuilder +const executeAppBuilder: (options: any) => Promise = require(path.join(import.meta.dirname, "../../..", "packages/builder-util")).executeAppBuilder export async function deleteOldElectronVersion(): Promise { // on CircleCi no need to clean manually @@ -47,7 +47,7 @@ export function downloadAllRequiredElectronVersions(): Promise { ? ["x64"] : platform === "win32" ? ["ia32", "x64"] - : require(`${path.join(__dirname, "../../..")}/packages/builder-util/out/util.js`).getArchCliNames() + : require(`${path.join(import.meta.dirname, "../../..")}/packages/builder-util/out/util.js`).getArchCliNames() for (const arch of archs) { if (gte(ELECTRON_VERSION, "19.0.0") && platform === "linux" && arch === "ia32") { // Chromium dropped support for ia32 linux binaries in 102.0.4999.0 diff --git a/test/src/helpers/fileAssert.ts b/test/src/helpers/fileAssert.ts index 4186aa7e33d..64e20793144 100644 --- a/test/src/helpers/fileAssert.ts +++ b/test/src/helpers/fileAssert.ts @@ -8,7 +8,7 @@ export function assertThat(expect: ExpectStatic, actual: any): Assertions { return new Assertions(expect, actual) } -const appVersion = require(path.join(__dirname, "../../../packages/app-builder-lib/package.json")).version +const appVersion = require(path.join(import.meta.dirname, "../../../packages/app-builder-lib/package.json")).version class Assertions { constructor( diff --git a/test/src/helpers/packTester.ts b/test/src/helpers/packTester.ts index b819e835b7b..9696885df54 100644 --- a/test/src/helpers/packTester.ts +++ b/test/src/helpers/packTester.ts @@ -9,7 +9,7 @@ import { CancellationToken, UpdateFileInfo } from "builder-util-runtime" import { Arch, ArtifactCreated, Configuration, DIR_TARGET, getArchSuffix, MacOsTargetName, Packager, PackagerOptions, Platform, Target } from "electron-builder" import { convertVersion } from "electron-winstaller" import { PublishPolicy } from "electron-publish" -import * as fsExtra from "fs-extra" +import fsExtra from "fs-extra" import * as fs from "fs/promises" import { load } from "js-yaml" import * as path from "path" @@ -147,7 +147,7 @@ export async function assertPack(expect: ExpectStatic, fixtureName: string, pack packagerOptions = deepAssign({}, packagerOptions, { config: { mac: { identity: null } } }) } - let projectDir = path.join(__dirname, "..", "..", "fixtures", fixtureName) + let projectDir = path.join(import.meta.dirname, "..", "..", "fixtures", fixtureName) // const isDoNotUseTempDir = platform === "darwin" const customTmpDir = process.env.TEST_APP_TMP_DIR const tmpDir = checkOptions.tmpDir || new TmpDir(`pack-tester: ${fixtureName}`) @@ -160,7 +160,7 @@ export async function assertPack(expect: ExpectStatic, fixtureName: string, pack const state = expect.getState() const lockfileFixtureName = path.basename(state.testPath!, path.extname(state.testPath!)) - const lockfilePathPrefix = path.join(__dirname, "..", "..", "fixtures", "lockfiles", lockfileFixtureName) + const lockfilePathPrefix = path.join(import.meta.dirname, "..", "..", "fixtures", "lockfiles", lockfileFixtureName) const lockfileFixtureNameCandidates = getLockfileFixtureNameCandidates(state.currentTestName || "") if (lockfileFixtureNameCandidates.length === 0) { lockfileFixtureNameCandidates.push("unknown-test") @@ -327,7 +327,7 @@ export function copyTestAsset(name: string, destination: string): Promise } export function getFixtureDir() { - return path.join(__dirname, "..", "..", "fixtures") + return path.join(import.meta.dirname, "..", "..", "fixtures") } /** diff --git a/test/src/helpers/updaterTestUtil.ts b/test/src/helpers/updaterTestUtil.ts index ab195aaaeec..8baf238c637 100644 --- a/test/src/helpers/updaterTestUtil.ts +++ b/test/src/helpers/updaterTestUtil.ts @@ -2,7 +2,7 @@ import { NodeHttpExecutor, serializeToYaml, TmpDir } from "builder-util" import { AllPublishOptions, DownloadOptions } from "builder-util-runtime" import { AppUpdater, MacUpdater, NsisUpdater } from "electron-updater" import { NoOpLogger, TestOnlyUpdaterOptions } from "electron-updater" -import * as fsExtra from "fs-extra" +import fsExtra from "fs-extra" import * as path from "path" import { assertThat } from "./fileAssert.js" import { TestAppAdapter } from "./TestAppAdapter.js" diff --git a/test/src/helpers/winHelper.ts b/test/src/helpers/winHelper.ts index c2fe2a86b0a..eb62d54d1ee 100644 --- a/test/src/helpers/winHelper.ts +++ b/test/src/helpers/winHelper.ts @@ -1,7 +1,7 @@ import { readAsarJson } from "app-builder-lib" import { walk } from "builder-util" import { Arch, Platform } from "electron-builder" -import * as fsExtra from "fs-extra" +import fsExtra from "fs-extra" import * as fs from "fs/promises" import { load } from "js-yaml" import * as path from "path" diff --git a/test/src/helpers/wine.ts b/test/src/helpers/wine.ts index f398fd2fa20..5296f4ee879 100644 --- a/test/src/helpers/wine.ts +++ b/test/src/helpers/wine.ts @@ -1,5 +1,5 @@ import { exec, safeStringifyJson, unlinkIfExists } from "builder-util" -import * as fsExtra from "fs-extra" +import fsExtra from "fs-extra" import * as fs from "fs/promises" import { homedir } from "os" import * as path from "path" diff --git a/test/src/ignoreTest.ts b/test/src/ignoreTest.ts index 6cc1ec1227d..6240671eca2 100644 --- a/test/src/ignoreTest.ts +++ b/test/src/ignoreTest.ts @@ -1,5 +1,5 @@ import { DIR_TARGET, Platform, archFromString } from "electron-builder" -import * as fsExtra from "fs-extra" +import fsExtra from "fs-extra" import * as path from "path" import { assertThat } from "./helpers/fileAssert.js" import { app, checkDirContents, linuxDirTarget, modifyPackageJson } from "./helpers/packTester.js" diff --git a/test/src/linux/linuxPackagerTest.ts b/test/src/linux/linuxPackagerTest.ts index eadf8e5fa2e..ae9822eca59 100644 --- a/test/src/linux/linuxPackagerTest.ts +++ b/test/src/linux/linuxPackagerTest.ts @@ -1,6 +1,6 @@ import { GenericServerOptions } from "builder-util-runtime" import { Arch, build, Platform } from "electron-builder" -import * as fsExtra from "fs-extra" +import fsExtra from "fs-extra" import * as fs from "fs/promises" import * as path from "path" import { assertThat } from "../helpers/fileAssert" diff --git a/test/src/mac/macArchiveTest.ts b/test/src/mac/macArchiveTest.ts index 87bda10824e..766d821ac33 100644 --- a/test/src/mac/macArchiveTest.ts +++ b/test/src/mac/macArchiveTest.ts @@ -1,7 +1,7 @@ import { Arch, exec } from "builder-util" import { parseXml } from "builder-util-runtime" import { Platform } from "electron-builder" -import * as fsExtra from "fs-extra" +import fsExtra from "fs-extra" import * as fs from "fs/promises" import * as path from "path" import pathSorter from "path-sort" diff --git a/test/src/mac/macIconTest.ts b/test/src/mac/macIconTest.ts index cf810df08c1..dac6cfa0661 100644 --- a/test/src/mac/macIconTest.ts +++ b/test/src/mac/macIconTest.ts @@ -19,7 +19,7 @@ async function assertIcon(expect: ExpectStatic, platformPackager: CheckingMacPac const targets = Platform.MAC.createTarget(DIR_TARGET, Arch.x64) -const iconComposerFixture = path.join(__dirname, "..", "..", "fixtures", "macos-icon-composer-assets", "electron.icon") +const iconComposerFixture = path.join(import.meta.dirname, "..", "..", "fixtures", "macos-icon-composer-assets", "electron.icon") test.ifMac("icon composer generate asset catalog", ({ expect }) => { return app( diff --git a/test/src/packageManagerTest.ts b/test/src/packageManagerTest.ts index 0cef00a474f..3ac68209bb8 100644 --- a/test/src/packageManagerTest.ts +++ b/test/src/packageManagerTest.ts @@ -1,6 +1,6 @@ import { Platform } from "app-builder-lib" import { PM } from "app-builder-lib/src/node-module-collector" -import * as fsExtra from "fs-extra" +import fsExtra from "fs-extra" import * as path from "path" import { assertThat } from "./helpers/fileAssert" import { app, assertPack, getFixtureDir, getPackageManagerWithVersion, linuxDirTarget, modifyPackageJson, verifyAsarFileTree } from "./helpers/packTester" diff --git a/test/src/publisher/gitlab/GitlabTestFixtures.ts b/test/src/publisher/gitlab/GitlabTestFixtures.ts index e34bcebff6d..17e202881a6 100644 --- a/test/src/publisher/gitlab/GitlabTestFixtures.ts +++ b/test/src/publisher/gitlab/GitlabTestFixtures.ts @@ -3,8 +3,8 @@ import { GitlabOptions } from "builder-util-runtime" export class GitlabTestFixtures { // Test file paths - static readonly ICON_PATH = path.join(__dirname, "..", "..", "..", "fixtures", "test-app", "build", "icon.icns") - static readonly ICO_PATH = path.join(__dirname, "..", "..", "..", "fixtures", "test-app", "build", "icon.ico") + static readonly ICON_PATH = path.join(import.meta.dirname, "..", "..", "..", "fixtures", "test-app", "build", "icon.icns") + static readonly ICO_PATH = path.join(import.meta.dirname, "..", "..", "..", "fixtures", "test-app", "build", "icon.ico") // Test versions static readonly VERSIONS = { diff --git a/test/src/updater/blackboxUpdateTest.ts b/test/src/updater/blackboxUpdateTest.ts index da6bc573ac7..89810050401 100644 --- a/test/src/updater/blackboxUpdateTest.ts +++ b/test/src/updater/blackboxUpdateTest.ts @@ -5,7 +5,7 @@ import { archFromString, doSpawn, getArchSuffix, isEmptyOrSpaces, log, spawn, Tm import { execFileSync, execSync } from "child_process" import { Arch, Configuration, Platform } from "electron-builder" import { DebUpdater, PacmanUpdater, RpmUpdater } from "electron-updater" -import * as fsExtra from "fs-extra" +import fsExtra from "fs-extra" import { homedir } from "os" import path from "path" import { ExpectStatic, TestContext } from "vitest" @@ -236,7 +236,7 @@ async function doBuild( electron: ELECTRON_VERSION, "node-addon-api": "^8", } - const electronUpdaterPath = (pkg: string) => path.resolve(__dirname, "../../../packages", pkg) + const electronUpdaterPath = (pkg: string) => path.resolve(import.meta.dirname, "../../../packages", pkg) data.dependencies = { ...data.dependencies, sqlite3: "5.1.7", // for testing native dependency handling in auto-update diff --git a/test/src/updater/differentialUpdateTest.ts b/test/src/updater/differentialUpdateTest.ts index 651c5a689d2..97ca107da64 100644 --- a/test/src/updater/differentialUpdateTest.ts +++ b/test/src/updater/differentialUpdateTest.ts @@ -3,7 +3,7 @@ import { archFromString, doSpawn, getArchSuffix } from "builder-util" import { GenericServerOptions, Nullish, S3Options } from "builder-util-runtime" import { AppImageUpdater, BaseUpdater, MacUpdater, NsisUpdater } from "electron-updater" import { EventEmitter } from "events" -import * as fsExtra from "fs-extra" +import fsExtra from "fs-extra" import * as path from "path" import { TmpDir } from "temp-file" import { TestAppAdapter } from "../helpers/TestAppAdapter.js" diff --git a/test/src/updater/nsisUpdaterTest.ts b/test/src/updater/nsisUpdaterTest.ts index f96968fecd7..82c2196f394 100644 --- a/test/src/updater/nsisUpdaterTest.ts +++ b/test/src/updater/nsisUpdaterTest.ts @@ -1,7 +1,7 @@ import { BitbucketOptions, GenericServerOptions, GithubOptions, GitlabOptions, KeygenOptions, S3Options, SpacesOptions } from "builder-util-runtime" import { BitbucketPublisher } from "electron-publish" import { UpdateCheckResult } from "electron-updater" -import * as fsExtra from "fs-extra" +import fsExtra from "fs-extra" import { tmpdir } from "os" import * as path from "path" import { assertThat } from "../helpers/fileAssert" diff --git a/test/src/windows/appxTest.ts b/test/src/windows/appxTest.ts index a8daa471f89..364ba696539 100644 --- a/test/src/windows/appxTest.ts +++ b/test/src/windows/appxTest.ts @@ -1,5 +1,5 @@ import { Arch, Platform } from "electron-builder" -import * as fsExtra from "fs-extra" +import fsExtra from "fs-extra" import { mkdir } from "fs/promises" import * as path from "path" import { app, appThrows, copyTestAsset } from "../helpers/packTester" diff --git a/test/src/windows/oneClickInstallerTest.ts b/test/src/windows/oneClickInstallerTest.ts index 2ed1667757f..2c594d14218 100644 --- a/test/src/windows/oneClickInstallerTest.ts +++ b/test/src/windows/oneClickInstallerTest.ts @@ -1,5 +1,5 @@ import { Arch, Platform } from "electron-builder" -import * as fsExtra from "fs-extra" +import fsExtra from "fs-extra" import * as path from "path" import { assertThat } from "../helpers/fileAssert" import { app, assertPack, copyTestAsset, EXTENDED_TIMEOUT, modifyPackageJson } from "../helpers/packTester" diff --git a/test/src/windows/winCodeSignTest.ts b/test/src/windows/winCodeSignTest.ts index c31dd7e7ba7..1803f167e43 100644 --- a/test/src/windows/winCodeSignTest.ts +++ b/test/src/windows/winCodeSignTest.ts @@ -1,6 +1,6 @@ import { parseDn } from "builder-util-runtime" import { DIR_TARGET, Platform } from "electron-builder" -import * as fsExtra from "fs-extra" +import fsExtra from "fs-extra" import { load } from "js-yaml" import * as path from "path" import { CheckingWinPackager } from "../helpers/CheckingPackager" @@ -86,7 +86,7 @@ for (const winCodeSign of winCodeSignVersions) { })) test("certificateFile/password - sign as Promise", ({ expect }) => testCustomSign(expect, () => Promise.resolve())) test("certificateFile/password - sign as function", async ({ expect }) => testCustomSign(expect, (await import("../helpers/customWindowsSign.js")).default)) - test("certificateFile/password - sign as path", ({ expect }) => testCustomSign(expect, path.join(__dirname, "../helpers/customWindowsSign.mjs"))) + test("certificateFile/password - sign as path", ({ expect }) => testCustomSign(expect, path.join(import.meta.dirname, "../helpers/customWindowsSign.mjs"))) test("custom sign if no code sign info", ({ expect }) => { let called = false diff --git a/test/vitest-scripts/run-vitest.ts b/test/vitest-scripts/run-vitest.ts index 467cb738811..606fa3bd963 100644 --- a/test/vitest-scripts/run-vitest.ts +++ b/test/vitest-scripts/run-vitest.ts @@ -50,11 +50,11 @@ async function main() { // Allow test metadata includeTaskLocation: true, - setupFiles: [__dirname + "/vitest-setup.ts", __dirname + "/vitest-heavy-mutex.ts"], + setupFiles: [import.meta.dirname + "/vitest-setup.ts", import.meta.dirname + "/vitest-heavy-mutex.ts"], include: [`test/src/**/${includeRegex}.ts`], printConsoleTrace: true, - reporters: ["default", __dirname + "/vitest-smart-reporter.ts"], + reporters: ["default", import.meta.dirname + "/vitest-smart-reporter.ts"], maxWorkers: "50%", minWorkers: 1, diff --git a/test/vitest-scripts/smart-config.ts b/test/vitest-scripts/smart-config.ts index c5ba6cbabf0..a19ec4ce914 100644 --- a/test/vitest-scripts/smart-config.ts +++ b/test/vitest-scripts/smart-config.ts @@ -6,7 +6,7 @@ export type SupportedPlatforms = Exclude export const TEST_ROOT = "test/src" export const TEST_FILES_PATTERN = process.env.TEST_FILES?.trim() || "*Test,*test" -export const CACHE_FILE = process.env.VITEST_SMART_CACHE_FILE || path.resolve(__dirname, "_vitest-smart-cache.json") +export const CACHE_FILE = process.env.VITEST_SMART_CACHE_FILE || path.resolve(import.meta.dirname, "_vitest-smart-cache.json") export const DEFAULT_FILE_MS = 2 * 60 * 1000 export const DEFAULT_TARGET_MS = 30 * 60 * 1000 From d23239e9c6e5f7341eac40a0f09fe929b6644b91 Mon Sep 17 00:00:00 2001 From: Mike Maietta Date: Wed, 8 Apr 2026 12:35:07 -0700 Subject: [PATCH 52/61] tmp save? --- .../helpers/dynamic-import.cjs | 23 +++++++++++++++++++ .../app-builder-lib/helpers/dynamic-import.js | 23 ------------------- .../{remote-rebuild.js => remote-rebuild.cjs} | 0 scripts/generate-schema.ts | 4 ++-- test/vitest-scripts/run-vitest.ts | 4 ++-- test/vitest-scripts/smart-config.ts | 2 +- tsconfig-base.json | 2 -- 7 files changed, 28 insertions(+), 30 deletions(-) create mode 100644 packages/app-builder-lib/helpers/dynamic-import.cjs delete mode 100644 packages/app-builder-lib/helpers/dynamic-import.js rename packages/app-builder-lib/helpers/{remote-rebuild.js => remote-rebuild.cjs} (100%) diff --git a/packages/app-builder-lib/helpers/dynamic-import.cjs b/packages/app-builder-lib/helpers/dynamic-import.cjs new file mode 100644 index 00000000000..1089411ced3 --- /dev/null +++ b/packages/app-builder-lib/helpers/dynamic-import.cjs @@ -0,0 +1,23 @@ +const url = require("url") +const fs = require("fs") + +exports.dynamicImport = async function dynamicImport(path) { + try { + return await import(fs.existsSync(path) ? url.pathToFileURL(path).href : path) + } catch (error) { + return Promise.reject(error) + } +} + +exports.dynamicImportMaybe = async function dynamicImportMaybe(path) { + try { + return require(path) + } catch (e1) { + try { + return await exports.dynamicImport(path) + } catch (e2) { + e1.message = "\n1. " + e1.message + "\n2. " + e2.message + throw e1 + } + } +} diff --git a/packages/app-builder-lib/helpers/dynamic-import.js b/packages/app-builder-lib/helpers/dynamic-import.js deleted file mode 100644 index a3a42b61495..00000000000 --- a/packages/app-builder-lib/helpers/dynamic-import.js +++ /dev/null @@ -1,23 +0,0 @@ -import { pathToFileURL } from "url" -import { existsSync } from "fs" - -export async function dynamicImport(path) { - try { - return await import(existsSync(path) ? pathToFileURL(path).href : path) - } catch (error) { - return Promise.reject(error) - } -} - -export async function dynamicImportMaybe(path) { - try { - return require(path) - } catch (e1) { - try { - return await dynamicImport(path) - } catch (e2) { - e1.message = "\n1. " + e1.message + "\n2. " + e2.message - throw e1 - } - } -} diff --git a/packages/app-builder-lib/helpers/remote-rebuild.js b/packages/app-builder-lib/helpers/remote-rebuild.cjs similarity index 100% rename from packages/app-builder-lib/helpers/remote-rebuild.js rename to packages/app-builder-lib/helpers/remote-rebuild.cjs diff --git a/scripts/generate-schema.ts b/scripts/generate-schema.ts index fc4c9fd95e5..9fa97720530 100644 --- a/scripts/generate-schema.ts +++ b/scripts/generate-schema.ts @@ -3,7 +3,7 @@ import * as path from "path" import { TypeScript } from "typedoc" import * as TJS from "typescript-json-schema" -const rootDir = path.resolve(import.meta.dirname, "../packages") +const rootDir = path.resolve(__dirname, "../packages") const compilerOptions: TJS.CompilerOptions = { target: TypeScript.ScriptTarget.ES2022 as any, @@ -88,5 +88,5 @@ schema!.properties!["$schema"] = { type: ["null", "string"], } -const schemaFile = path.join(import.meta.dirname, "../packages/app-builder-lib/scheme.json") +const schemaFile = path.join(__dirname, "../packages/app-builder-lib/scheme.json") fs.writeFileSync(schemaFile, JSON.stringify(schema, null, 2)) diff --git a/test/vitest-scripts/run-vitest.ts b/test/vitest-scripts/run-vitest.ts index 606fa3bd963..467cb738811 100644 --- a/test/vitest-scripts/run-vitest.ts +++ b/test/vitest-scripts/run-vitest.ts @@ -50,11 +50,11 @@ async function main() { // Allow test metadata includeTaskLocation: true, - setupFiles: [import.meta.dirname + "/vitest-setup.ts", import.meta.dirname + "/vitest-heavy-mutex.ts"], + setupFiles: [__dirname + "/vitest-setup.ts", __dirname + "/vitest-heavy-mutex.ts"], include: [`test/src/**/${includeRegex}.ts`], printConsoleTrace: true, - reporters: ["default", import.meta.dirname + "/vitest-smart-reporter.ts"], + reporters: ["default", __dirname + "/vitest-smart-reporter.ts"], maxWorkers: "50%", minWorkers: 1, diff --git a/test/vitest-scripts/smart-config.ts b/test/vitest-scripts/smart-config.ts index a19ec4ce914..c5ba6cbabf0 100644 --- a/test/vitest-scripts/smart-config.ts +++ b/test/vitest-scripts/smart-config.ts @@ -6,7 +6,7 @@ export type SupportedPlatforms = Exclude export const TEST_ROOT = "test/src" export const TEST_FILES_PATTERN = process.env.TEST_FILES?.trim() || "*Test,*test" -export const CACHE_FILE = process.env.VITEST_SMART_CACHE_FILE || path.resolve(import.meta.dirname, "_vitest-smart-cache.json") +export const CACHE_FILE = process.env.VITEST_SMART_CACHE_FILE || path.resolve(__dirname, "_vitest-smart-cache.json") export const DEFAULT_FILE_MS = 2 * 60 * 1000 export const DEFAULT_TARGET_MS = 30 * 60 * 1000 diff --git a/tsconfig-base.json b/tsconfig-base.json index 16243ca9c3b..762b5e9ffd9 100644 --- a/tsconfig-base.json +++ b/tsconfig-base.json @@ -1,8 +1,6 @@ { "extends": "@tsconfig/node22/tsconfig.json", "compilerOptions": { - "lib": ["es2024", "WebWorker", "esnext"], - "forceConsistentCasingInFileNames": true, "noUnusedLocals": true, From 190222e89cdc7d84b86cb20d87896208a8e8560f Mon Sep 17 00:00:00 2001 From: Mike Maietta Date: Fri, 10 Apr 2026 12:09:48 -0700 Subject: [PATCH 53/61] tmp save, more extension changes --- packages/electron-builder/package.json | 4 +-- test/package.json | 31 +------------------ test/src/HoistedNodeModuleTest.ts | 8 ++--- test/src/helpers/CheckingPackager.ts | 2 +- test/src/helpers/packTester.ts | 6 ++-- test/src/linux/debTest.ts | 2 +- test/src/linux/flatpakTest.ts | 2 +- test/src/linux/fpmTest.ts | 2 +- test/src/linux/linuxArchiveTest.ts | 2 +- test/src/linux/linuxPackagerTest.ts | 6 ++-- test/src/linux/snapHeavyTest.ts | 2 +- test/src/linux/snapTest.ts | 2 +- test/src/mac/dmgTest.ts | 4 +-- test/src/mac/macArchiveTest.ts | 4 +-- test/src/mac/macCodeSignTest.ts | 4 +-- test/src/mac/macIconTest.ts | 4 +-- test/src/mac/macPackagerTest.ts | 6 ++-- test/src/mac/masTest.ts | 4 +-- test/src/packageManagerTest.ts | 8 ++--- test/src/updater/linuxUpdaterTest.ts | 4 +-- test/src/updater/macUpdaterTest.ts | 4 +-- test/src/updater/nsisUpdaterTest.ts | 6 ++-- test/src/windows/appxTest.ts | 2 +- test/src/windows/assistedInstallerTest.ts | 4 +-- test/src/windows/msiTest.ts | 2 +- test/src/windows/msiWrappedTest.ts | 2 +- test/src/windows/oneClickInstallerTest.ts | 6 ++-- test/src/windows/portableTest.ts | 2 +- test/src/windows/squirrelWindowsTest.ts | 4 +-- test/src/windows/webInstallerTest.ts | 2 +- test/src/windows/winCodeSignTest.ts | 4 +-- test/vitest-scripts/cache.ts | 2 +- test/vitest-scripts/file-discovery.ts | 2 +- test/vitest-scripts/run-vitest.ts | 8 ++--- test/vitest-scripts/shard-builder.ts | 4 +-- test/vitest-scripts/smart-shard-count.ts | 6 ++-- test/vitest-scripts/vitest-setup.ts | 2 +- test/vitest-scripts/vitest-smart-reporter.ts | 4 +-- test/vitest-scripts/vitest-smart-sequencer.ts | 4 +-- 39 files changed, 73 insertions(+), 104 deletions(-) diff --git a/packages/electron-builder/package.json b/packages/electron-builder/package.json index d1051126c8b..b040296c0e3 100644 --- a/packages/electron-builder/package.json +++ b/packages/electron-builder/package.json @@ -4,9 +4,7 @@ "version": "26.8.2", "type": "module", "exports": { - ".": "./out/index.js", - "./cli": "./cli.js", - "./install-app-deps": "./install-app-deps.js" + ".": "./out/index.js" }, "files": [ "out" diff --git a/test/package.json b/test/package.json index db027513e34..7b25e7b26cf 100644 --- a/test/package.json +++ b/test/package.json @@ -1,6 +1,7 @@ { "name": "@electron-builder/test", "version": "0.0.0", + "type": "module", "private": true, "dependencies": { "@electron/osx-sign": "^1.0.4", @@ -45,35 +46,5 @@ "vitest": "^3.0.4", "vitest-mock-commonjs": "^1.0.2", "which": "^5.0.0" - }, - "jest": { - "snapshotResolver": "/snapshotResolver.js", - "testEnvironment": "node", - "roots": [ - "src" - ], - "transformIgnorePatterns": [ - "./node_modules", - "../node_modules", - "../packages" - ], - "transform": { - "^.+\\.ts$": [ - "esbuild-jest", - { - "sourcemap": "inline", - "loaders": { - ".ts": "ts" - } - } - ] - }, - "testPathIgnorePatterns": [ - "[\\/]{1}helpers[\\/]{1}" - ], - "testRegex": "\\.[jt]s$", - "setupFilesAfterEnv": [ - "/jestSetup.js" - ] } } diff --git a/test/src/HoistedNodeModuleTest.ts b/test/src/HoistedNodeModuleTest.ts index 1a87672e491..bccb9de9fcc 100644 --- a/test/src/HoistedNodeModuleTest.ts +++ b/test/src/HoistedNodeModuleTest.ts @@ -1,9 +1,9 @@ -import { PM } from "app-builder-lib/out/node-module-collector" -import { spawn } from "builder-util/out/util" +import { PM } from "app-builder-lib" +import { spawn } from "builder-util" import { Arch, DIR_TARGET, Platform } from "electron-builder" import * as path from "path" -import { appTwoThrows, assertPack, linuxDirTarget, modifyPackageJson, verifyAsarFileTree } from "./helpers/packTester" -import { ELECTRON_VERSION } from "./helpers/testConfig" +import { appTwoThrows, assertPack, linuxDirTarget, modifyPackageJson, verifyAsarFileTree } from "./helpers/packTester.js" +import { ELECTRON_VERSION } from "./helpers/testConfig.js" import fsExtra from "fs-extra" describe.ifNotWindows("node_module collectors", () => { diff --git a/test/src/helpers/CheckingPackager.ts b/test/src/helpers/CheckingPackager.ts index 9478a9318e1..10df1c61034 100644 --- a/test/src/helpers/CheckingPackager.ts +++ b/test/src/helpers/CheckingPackager.ts @@ -1,4 +1,4 @@ -import { SignOptions as MacSignOptions } from "@electron/osx-sign/dist/cjs/types" +import { SignOptions as MacSignOptions } from "@electron/osx-sign/dist/esm/types.js" import { Identity } from "app-builder-lib" import { DoPackOptions } from "app-builder-lib" import { WinPackager, getArchSuffix, MacPackager } from "app-builder-lib" diff --git a/test/src/helpers/packTester.ts b/test/src/helpers/packTester.ts index 9696885df54..d5c8111b43a 100644 --- a/test/src/helpers/packTester.ts +++ b/test/src/helpers/packTester.ts @@ -18,14 +18,14 @@ import { NtExecutable, NtExecutableResource } from "resedit" import { TmpDir } from "temp-file" import { getCollectorByPackageManager, PM } from "app-builder-lib" import { promisify } from "util" -import { MAC_CSC_LINK, WIN_CSC_LINK } from "./codeSignData" -import { assertThat } from "./fileAssert" +import { MAC_CSC_LINK, WIN_CSC_LINK } from "./codeSignData.js" +import { assertThat } from "./fileAssert.js" import AdmZip from "adm-zip" import sanitizeFileName from "sanitize-filename" import type { ExpectStatic } from "vitest" import { computeDefaultAppDirectory } from "app-builder-lib" import { installDependencies } from "app-builder-lib" -import { ELECTRON_VERSION } from "./testConfig" +import { ELECTRON_VERSION } from "./testConfig.js" import { createLazyProductionDeps } from "app-builder-lib" import { execSync } from "child_process" import { detectPackageManager } from "app-builder-lib" diff --git a/test/src/linux/debTest.ts b/test/src/linux/debTest.ts index bd3ade0aadf..955e68e0199 100644 --- a/test/src/linux/debTest.ts +++ b/test/src/linux/debTest.ts @@ -1,6 +1,6 @@ import { Arch, Platform } from "electron-builder" import * as fs from "fs/promises" -import { app, execShell, getTarExecutable } from "../helpers/packTester" +import { app, execShell, getTarExecutable } from "../helpers/packTester.js" const defaultDebTarget = Platform.LINUX.createTarget("deb", Arch.x64) diff --git a/test/src/linux/flatpakTest.ts b/test/src/linux/flatpakTest.ts index 7eb8719bf72..8af24b97bb2 100644 --- a/test/src/linux/flatpakTest.ts +++ b/test/src/linux/flatpakTest.ts @@ -1,5 +1,5 @@ import { Platform } from "electron-builder" -import { app } from "../helpers/packTester" +import { app } from "../helpers/packTester.js" import * as which from "which" describe.heavy.ifEnv(which.sync("flatpak", { nothrow: true }) != null)("Linux Flatpak Test", () => { diff --git a/test/src/linux/fpmTest.ts b/test/src/linux/fpmTest.ts index 5ed8b74353b..182c1d9590b 100644 --- a/test/src/linux/fpmTest.ts +++ b/test/src/linux/fpmTest.ts @@ -1,5 +1,5 @@ import { Arch, Platform } from "electron-builder" -import { app, EXTENDED_TIMEOUT } from "../helpers/packTester" +import { app, EXTENDED_TIMEOUT } from "../helpers/packTester.js" // "apk" is very slow, don't test for now describe.heavy.ifNotWindows("fpm", () => { diff --git a/test/src/linux/linuxArchiveTest.ts b/test/src/linux/linuxArchiveTest.ts index d46f84dd55c..ac4bb5808f2 100644 --- a/test/src/linux/linuxArchiveTest.ts +++ b/test/src/linux/linuxArchiveTest.ts @@ -1,5 +1,5 @@ import { Arch, Platform } from "electron-builder" -import { app, EXTENDED_TIMEOUT } from "../helpers/packTester" +import { app, EXTENDED_TIMEOUT } from "../helpers/packTester.js" test.ifNotWindows("tar", { timeout: EXTENDED_TIMEOUT }, ({ expect }) => app(expect, { diff --git a/test/src/linux/linuxPackagerTest.ts b/test/src/linux/linuxPackagerTest.ts index ae9822eca59..fe4fae5b74f 100644 --- a/test/src/linux/linuxPackagerTest.ts +++ b/test/src/linux/linuxPackagerTest.ts @@ -3,9 +3,9 @@ import { Arch, build, Platform } from "electron-builder" import fsExtra from "fs-extra" import * as fs from "fs/promises" import * as path from "path" -import { assertThat } from "../helpers/fileAssert" -import { app, appThrows, copyTestAsset, modifyPackageJson } from "../helpers/packTester" -import { ELECTRON_VERSION } from "../helpers/testConfig" +import { assertThat } from "../helpers/fileAssert.js" +import { app, appThrows, copyTestAsset, modifyPackageJson } from "../helpers/packTester.js" +import { ELECTRON_VERSION } from "../helpers/testConfig.js" import { ToolsetConfig } from "app-builder-lib/src" const appImageTarget = Platform.LINUX.createTarget("appimage", Arch.x64) diff --git a/test/src/linux/snapHeavyTest.ts b/test/src/linux/snapHeavyTest.ts index 81030e2e7ca..52b9869df21 100644 --- a/test/src/linux/snapHeavyTest.ts +++ b/test/src/linux/snapHeavyTest.ts @@ -1,5 +1,5 @@ import { Arch, Platform } from "app-builder-lib" -import { app, EXTENDED_TIMEOUT, snapTarget } from "../helpers/packTester" +import { app, EXTENDED_TIMEOUT, snapTarget } from "../helpers/packTester.js" import * as which from "which" // very slow diff --git a/test/src/linux/snapTest.ts b/test/src/linux/snapTest.ts index 4d1014b7be6..eb7fc54eee3 100644 --- a/test/src/linux/snapTest.ts +++ b/test/src/linux/snapTest.ts @@ -1,5 +1,5 @@ import { Arch, Platform } from "electron-builder" -import { app, assertPack, snapTarget } from "../helpers/packTester" +import { app, assertPack, snapTarget } from "../helpers/packTester.js" test.ifNotWindows("snap", ({ expect }) => app(expect, { diff --git a/test/src/mac/dmgTest.ts b/test/src/mac/dmgTest.ts index f260890bbf3..c157c59d2b5 100644 --- a/test/src/mac/dmgTest.ts +++ b/test/src/mac/dmgTest.ts @@ -4,8 +4,8 @@ import { Arch, copyFile, exec } from "builder-util" import { Platform } from "electron-builder" import * as fs from "fs/promises" import * as path from "path" -import { assertThat } from "../helpers/fileAssert" -import { app, assertPack, copyTestAsset } from "../helpers/packTester" +import { assertThat } from "../helpers/fileAssert.js" +import { app, assertPack, copyTestAsset } from "../helpers/packTester.js" import { beforeAll } from "vitest" import type { attachAndExecute as aAndE, getDmgTemplatePath as dmgTemplate } from "dmg-builder/out/dmgUtil.js" diff --git a/test/src/mac/macArchiveTest.ts b/test/src/mac/macArchiveTest.ts index 766d821ac33..814f608482b 100644 --- a/test/src/mac/macArchiveTest.ts +++ b/test/src/mac/macArchiveTest.ts @@ -5,8 +5,8 @@ import fsExtra from "fs-extra" import * as fs from "fs/promises" import * as path from "path" import pathSorter from "path-sort" -import { assertThat } from "../helpers/fileAssert" -import { app, copyTestAsset, createMacTargetTest, getFixtureDir, parseFileList } from "../helpers/packTester" +import { assertThat } from "../helpers/fileAssert.js" +import { app, copyTestAsset, createMacTargetTest, getFixtureDir, parseFileList } from "../helpers/packTester.js" test.ifMac("invalid target", ({ expect }) => expect(createMacTargetTest(expect, ["ttt" as any])).rejects.toThrow()) diff --git a/test/src/mac/macCodeSignTest.ts b/test/src/mac/macCodeSignTest.ts index 324b88d6c78..da0d1474bcc 100644 --- a/test/src/mac/macCodeSignTest.ts +++ b/test/src/mac/macCodeSignTest.ts @@ -1,6 +1,6 @@ -import { createKeychain, removeKeychain } from "app-builder-lib/out/codeSign/macCodeSign" +import { createKeychain, removeKeychain } from "app-builder-lib" import { removePassword, TmpDir } from "builder-util" -import { MAC_CSC_LINK } from "../helpers/codeSignData" +import { MAC_CSC_LINK } from "../helpers/codeSignData.js" import { afterEach } from "vitest" describe.ifMac.runIf(MAC_CSC_LINK && process.env.CSC_KEY_PASSWORD)("macos keychain", { sequential: true }, () => { diff --git a/test/src/mac/macIconTest.ts b/test/src/mac/macIconTest.ts index dac6cfa0661..89fbe178147 100644 --- a/test/src/mac/macIconTest.ts +++ b/test/src/mac/macIconTest.ts @@ -2,8 +2,8 @@ import { parsePlistFile, PlistObject } from "app-builder-lib" import { Arch, DIR_TARGET, Platform } from "electron-builder" import * as fs from "fs/promises" import * as path from "path" -import { CheckingMacPackager } from "../helpers/CheckingPackager" -import { app } from "../helpers/packTester" +import { CheckingMacPackager } from "../helpers/CheckingPackager.js" +import { app } from "../helpers/packTester.js" import { ExpectStatic } from "vitest" async function assertIcon(expect: ExpectStatic, platformPackager: CheckingMacPackager) { diff --git a/test/src/mac/macPackagerTest.ts b/test/src/mac/macPackagerTest.ts index 2bf42b870ff..745cd636d7b 100644 --- a/test/src/mac/macPackagerTest.ts +++ b/test/src/mac/macPackagerTest.ts @@ -2,9 +2,9 @@ import { copyOrLinkFile } from "builder-util" import { Arch, createTargets, DIR_TARGET, Platform } from "electron-builder" import * as fs from "fs/promises" import * as path from "path" -import { assertThat } from "../helpers/fileAssert" -import { app, appThrows, assertPack, checkDirContents, platform } from "../helpers/packTester" -import { verifySmartUnpack } from "../helpers/verifySmartUnpack" +import { assertThat } from "../helpers/fileAssert.js" +import { app, appThrows, assertPack, checkDirContents, platform } from "../helpers/packTester.js" +import { verifySmartUnpack } from "../helpers/verifySmartUnpack.js" describe("macPackager", { sequential: true }, () => { test.ifMac("two-package", ({ expect }) => diff --git a/test/src/mac/masTest.ts b/test/src/mac/masTest.ts index 7534cef4b07..b0d57625b5b 100644 --- a/test/src/mac/masTest.ts +++ b/test/src/mac/masTest.ts @@ -1,7 +1,7 @@ import { Arch, Platform } from "electron-builder" import * as path from "path" -import { CheckingMacPackager } from "../helpers/CheckingPackager" -import { assertPack, createMacTargetTest, signed } from "../helpers/packTester" +import { CheckingMacPackager } from "../helpers/CheckingPackager.js" +import { assertPack, createMacTargetTest, signed } from "../helpers/packTester.js" describe.ifEnv(process.platform === "darwin" && process.env.CSC_KEY_PASSWORD != null)("mas", () => { test("mas", ({ expect }) => createMacTargetTest(expect, ["mas"])) diff --git a/test/src/packageManagerTest.ts b/test/src/packageManagerTest.ts index 3ac68209bb8..dd2afa7b274 100644 --- a/test/src/packageManagerTest.ts +++ b/test/src/packageManagerTest.ts @@ -1,10 +1,10 @@ import { Platform } from "app-builder-lib" -import { PM } from "app-builder-lib/src/node-module-collector" +import { PM } from "app-builder-lib" import fsExtra from "fs-extra" import * as path from "path" -import { assertThat } from "./helpers/fileAssert" -import { app, assertPack, getFixtureDir, getPackageManagerWithVersion, linuxDirTarget, modifyPackageJson, verifyAsarFileTree } from "./helpers/packTester" -import { ELECTRON_VERSION } from "./helpers/testConfig" +import { assertThat } from "./helpers/fileAssert.js" +import { app, assertPack, getFixtureDir, getPackageManagerWithVersion, linuxDirTarget, modifyPackageJson, verifyAsarFileTree } from "./helpers/packTester.js" +import { ELECTRON_VERSION } from "./helpers/testConfig.js" import { isEmptyOrSpaces, spawn } from "builder-util" import * as which from "which" diff --git a/test/src/updater/linuxUpdaterTest.ts b/test/src/updater/linuxUpdaterTest.ts index bc3f619dbba..bcc2a833d4c 100644 --- a/test/src/updater/linuxUpdaterTest.ts +++ b/test/src/updater/linuxUpdaterTest.ts @@ -1,7 +1,7 @@ import { GithubOptions } from "builder-util-runtime" import { AppUpdater, DebUpdater, PacmanUpdater, RpmUpdater } from "electron-updater" -import { assertThat } from "../helpers/fileAssert" -import { createTestAppAdapter, tuneTestUpdater, validateDownload, writeUpdateConfig } from "../helpers/updaterTestUtil" +import { assertThat } from "../helpers/fileAssert.js" +import { createTestAppAdapter, tuneTestUpdater, validateDownload, writeUpdateConfig } from "../helpers/updaterTestUtil.js" import { ExpectStatic } from "vitest" import { execSync } from "child_process" diff --git a/test/src/updater/macUpdaterTest.ts b/test/src/updater/macUpdaterTest.ts index a685b8ed4a0..f51c0fb1ae0 100644 --- a/test/src/updater/macUpdaterTest.ts +++ b/test/src/updater/macUpdaterTest.ts @@ -1,8 +1,8 @@ import { configureRequestOptionsFromUrl, GithubOptions } from "builder-util-runtime" import { MacUpdater } from "electron-updater" import { EventEmitter } from "events" -import { assertThat } from "../helpers/fileAssert" -import { createTestAppAdapter, httpExecutor, trackEvents, tuneTestUpdater, writeUpdateConfig } from "../helpers/updaterTestUtil" +import { assertThat } from "../helpers/fileAssert.js" +import { createTestAppAdapter, httpExecutor, trackEvents, tuneTestUpdater, writeUpdateConfig } from "../helpers/updaterTestUtil.js" import { mockForNodeRequire } from "vitest-mock-commonjs" class TestNativeUpdater extends EventEmitter { diff --git a/test/src/updater/nsisUpdaterTest.ts b/test/src/updater/nsisUpdaterTest.ts index 82c2196f394..307826d147d 100644 --- a/test/src/updater/nsisUpdaterTest.ts +++ b/test/src/updater/nsisUpdaterTest.ts @@ -4,9 +4,9 @@ import { UpdateCheckResult } from "electron-updater" import fsExtra from "fs-extra" import { tmpdir } from "os" import * as path from "path" -import { assertThat } from "../helpers/fileAssert" -import { removeUnstableProperties } from "../helpers/packTester" -import { createNsisUpdater, trackEvents, validateDownload, writeUpdateConfig } from "../helpers/updaterTestUtil" +import { assertThat } from "../helpers/fileAssert.js" +import { removeUnstableProperties } from "../helpers/packTester.js" +import { createNsisUpdater, trackEvents, validateDownload, writeUpdateConfig } from "../helpers/updaterTestUtil.js" import { ExpectStatic } from "vitest" import { GitLabProvider } from "electron-updater" import { GitHubProvider } from "electron-updater" diff --git a/test/src/windows/appxTest.ts b/test/src/windows/appxTest.ts index 364ba696539..b4acba43b6b 100644 --- a/test/src/windows/appxTest.ts +++ b/test/src/windows/appxTest.ts @@ -2,7 +2,7 @@ import { Arch, Platform } from "electron-builder" import fsExtra from "fs-extra" import { mkdir } from "fs/promises" import * as path from "path" -import { app, appThrows, copyTestAsset } from "../helpers/packTester" +import { app, appThrows, copyTestAsset } from "../helpers/packTester.js" import { ToolsetConfig } from "app-builder-lib" const winCodeSignVersions: ToolsetConfig["winCodeSign"][] = [ diff --git a/test/src/windows/assistedInstallerTest.ts b/test/src/windows/assistedInstallerTest.ts index c4c6496a5e0..24862ce1cad 100644 --- a/test/src/windows/assistedInstallerTest.ts +++ b/test/src/windows/assistedInstallerTest.ts @@ -1,8 +1,8 @@ import { Arch, Platform } from "electron-builder" import * as fs from "fs/promises" import * as path from "path" -import { app, assertPack, copyTestAsset } from "../helpers/packTester" -import { checkHelpers, doTest, expectUpdateMetadata } from "../helpers/winHelper" +import { app, assertPack, copyTestAsset } from "../helpers/packTester.js" +import { checkHelpers, doTest, expectUpdateMetadata } from "../helpers/winHelper.js" import { ToolsetConfig } from "app-builder-lib" const winCodeSignVersions: ToolsetConfig["winCodeSign"][] = ["0.0.0", "1.0.0", "1.1.0"] diff --git a/test/src/windows/msiTest.ts b/test/src/windows/msiTest.ts index 61eb3227077..bf21c72c1fb 100644 --- a/test/src/windows/msiTest.ts +++ b/test/src/windows/msiTest.ts @@ -1,6 +1,6 @@ import { Arch, Platform } from "electron-builder" import * as fs from "fs" -import { app } from "../helpers/packTester" +import { app } from "../helpers/packTester.js" import { ToolsetConfig } from "app-builder-lib" const winCodeSignVersions: ToolsetConfig["winCodeSign"][] = ["0.0.0", "1.0.0", "1.1.0"] diff --git a/test/src/windows/msiWrappedTest.ts b/test/src/windows/msiWrappedTest.ts index 121075368b2..5a87a12ae6f 100644 --- a/test/src/windows/msiWrappedTest.ts +++ b/test/src/windows/msiWrappedTest.ts @@ -1,7 +1,7 @@ import { Arch, Platform } from "electron-builder" import { XMLParser } from "fast-xml-parser" import * as fs from "fs" -import { app, appThrows } from "../helpers/packTester" +import { app, appThrows } from "../helpers/packTester.js" import { ToolsetConfig } from "app-builder-lib" const parser = new XMLParser({ diff --git a/test/src/windows/oneClickInstallerTest.ts b/test/src/windows/oneClickInstallerTest.ts index 2c594d14218..1b56555c214 100644 --- a/test/src/windows/oneClickInstallerTest.ts +++ b/test/src/windows/oneClickInstallerTest.ts @@ -1,9 +1,9 @@ import { Arch, Platform } from "electron-builder" import fsExtra from "fs-extra" import * as path from "path" -import { assertThat } from "../helpers/fileAssert" -import { app, assertPack, copyTestAsset, EXTENDED_TIMEOUT, modifyPackageJson } from "../helpers/packTester" -import { checkHelpers, doTest, expectUpdateMetadata } from "../helpers/winHelper" +import { assertThat } from "../helpers/fileAssert.js" +import { app, assertPack, copyTestAsset, EXTENDED_TIMEOUT, modifyPackageJson } from "../helpers/packTester.js" +import { checkHelpers, doTest, expectUpdateMetadata } from "../helpers/winHelper.js" const nsisTarget = Platform.WINDOWS.createTarget(["nsis"], Arch.x64) diff --git a/test/src/windows/portableTest.ts b/test/src/windows/portableTest.ts index 1886faca4d8..de75249bc53 100644 --- a/test/src/windows/portableTest.ts +++ b/test/src/windows/portableTest.ts @@ -1,6 +1,6 @@ import { Arch, Platform } from "electron-builder" import * as path from "path" -import { app, copyTestAsset, getFixtureDir } from "../helpers/packTester" +import { app, copyTestAsset, getFixtureDir } from "../helpers/packTester.js" import { ToolsetConfig } from "app-builder-lib" const winCodeSignVersions: ToolsetConfig["winCodeSign"][] = ["0.0.0", "1.0.0", "1.1.0"] diff --git a/test/src/windows/squirrelWindowsTest.ts b/test/src/windows/squirrelWindowsTest.ts index 5605dd94550..99f2b8a9e17 100644 --- a/test/src/windows/squirrelWindowsTest.ts +++ b/test/src/windows/squirrelWindowsTest.ts @@ -1,7 +1,7 @@ import { Arch, Platform } from "electron-builder" import * as path from "path" -import { CheckingWinPackager } from "../helpers/CheckingPackager" -import { app, assertPack, copyTestAsset } from "../helpers/packTester" +import { CheckingWinPackager } from "../helpers/CheckingPackager.js" +import { app, assertPack, copyTestAsset } from "../helpers/packTester.js" import { ToolsetConfig } from "app-builder-lib" const winCodeSignVersions: ToolsetConfig["winCodeSign"][] = ["0.0.0", "1.0.0", "1.1.0"] diff --git a/test/src/windows/webInstallerTest.ts b/test/src/windows/webInstallerTest.ts index d3e56fa5bed..d031ed7b1e2 100644 --- a/test/src/windows/webInstallerTest.ts +++ b/test/src/windows/webInstallerTest.ts @@ -1,5 +1,5 @@ import { Arch, Platform } from "electron-builder" -import { app } from "../helpers/packTester" +import { app } from "../helpers/packTester.js" // tests are heavy, to distribute tests across CircleCI machines evenly, these tests were moved from oneClickInstallerTest diff --git a/test/src/windows/winCodeSignTest.ts b/test/src/windows/winCodeSignTest.ts index 1803f167e43..b573c4f7b04 100644 --- a/test/src/windows/winCodeSignTest.ts +++ b/test/src/windows/winCodeSignTest.ts @@ -3,8 +3,8 @@ import { DIR_TARGET, Platform } from "electron-builder" import fsExtra from "fs-extra" import { load } from "js-yaml" import * as path from "path" -import { CheckingWinPackager } from "../helpers/CheckingPackager" -import { app, appThrows } from "../helpers/packTester" +import { CheckingWinPackager } from "../helpers/CheckingPackager.js" +import { app, appThrows } from "../helpers/packTester.js" import { ExpectStatic } from "vitest" import { ToolsetConfig } from "app-builder-lib" diff --git a/test/vitest-scripts/cache.ts b/test/vitest-scripts/cache.ts index 9e81e5d1a6a..1571085cd5a 100644 --- a/test/vitest-scripts/cache.ts +++ b/test/vitest-scripts/cache.ts @@ -1,6 +1,6 @@ import * as fs from "fs" import * as path from "path" -import { CACHE_FILE, SupportedPlatforms } from "./smart-config" +import { CACHE_FILE, SupportedPlatforms } from "./smart-config.js" export interface TestStats { platformRuns?: Record< diff --git a/test/vitest-scripts/file-discovery.ts b/test/vitest-scripts/file-discovery.ts index dc68e15ca5a..104e1adce7f 100644 --- a/test/vitest-scripts/file-discovery.ts +++ b/test/vitest-scripts/file-discovery.ts @@ -1,6 +1,6 @@ import * as fs from "fs" import * as path from "path" -import { IS_LINUX, IS_MAC, IS_WIN, PLATFORM, SupportedPlatforms, TargetPlatform, TEST_ROOT, skipPerOSTests, skippedTests } from "./smart-config" +import { IS_LINUX, IS_MAC, IS_WIN, PLATFORM, SupportedPlatforms, TargetPlatform, TEST_ROOT, skipPerOSTests, skippedTests } from "./smart-config.js" export function platformAllowed(file: string, platform: TargetPlatform = "current"): boolean { if (platform === "current") { diff --git a/test/vitest-scripts/run-vitest.ts b/test/vitest-scripts/run-vitest.ts index 467cb738811..a3c23780b3f 100644 --- a/test/vitest-scripts/run-vitest.ts +++ b/test/vitest-scripts/run-vitest.ts @@ -2,10 +2,10 @@ import isCI from "is-ci" import { startVitest } from "vitest/node" -import { getAllTestFiles } from "./file-discovery" -import { buildWeightedFiles, computeShardCount, splitIntoShards } from "./shard-builder" -import { SHARD_INDEX, SupportedPlatforms, TEST_FILES_PATTERN } from "./smart-config" -import SmartSequencer from "./vitest-smart-sequencer" +import { getAllTestFiles } from "./file-discovery.js" +import { buildWeightedFiles, computeShardCount, splitIntoShards } from "./shard-builder.js" +import { SHARD_INDEX, SupportedPlatforms, TEST_FILES_PATTERN } from "./smart-config.js" +import SmartSequencer from "./vitest-smart-sequencer.js" const testRegex = TEST_FILES_PATTERN?.split(",") const includeRegex = `(${testRegex.join("|")})` diff --git a/test/vitest-scripts/shard-builder.ts b/test/vitest-scripts/shard-builder.ts index 97a005812a8..64e3777f411 100644 --- a/test/vitest-scripts/shard-builder.ts +++ b/test/vitest-scripts/shard-builder.ts @@ -1,6 +1,6 @@ import * as path from "path" -import { loadCache } from "./cache" -import { DEFAULT_FILE_MS, SAFEGUARD_MAX_SHARDS, SupportedPlatforms, TARGET_MS, TargetPlatform } from "./smart-config" +import { loadCache } from "./cache.js" +import { DEFAULT_FILE_MS, SAFEGUARD_MAX_SHARDS, SupportedPlatforms, TARGET_MS, TargetPlatform } from "./smart-config.js" export interface WeightedFile { filename: string diff --git a/test/vitest-scripts/smart-shard-count.ts b/test/vitest-scripts/smart-shard-count.ts index 8ac5cc5dfe1..8d55b3a4cc3 100644 --- a/test/vitest-scripts/smart-shard-count.ts +++ b/test/vitest-scripts/smart-shard-count.ts @@ -1,8 +1,8 @@ #!/usr/bin/env ts-node -import { getAllTestFiles } from "./file-discovery" -import { buildWeightedFiles, computeShardCount } from "./shard-builder" -import { TargetPlatform } from "./smart-config" +import { getAllTestFiles } from "./file-discovery.js" +import { buildWeightedFiles, computeShardCount } from "./shard-builder.js" +import { TargetPlatform } from "./smart-config.js" /** * Compute shard indices for a given platform diff --git a/test/vitest-scripts/vitest-setup.ts b/test/vitest-scripts/vitest-setup.ts index 129f801b332..513948934a6 100644 --- a/test/vitest-scripts/vitest-setup.ts +++ b/test/vitest-scripts/vitest-setup.ts @@ -1,5 +1,5 @@ import { test as baseTest, describe as baseDescribe, expect } from "vitest" -import { ConditionalSuiteAPI, ConditionalTestAPI } from "../typings/vitest" +import { ConditionalSuiteAPI, ConditionalTestAPI } from "../typings/vitest.js" const isWindows = process.platform === "win32" const isMac = process.platform === "darwin" diff --git a/test/vitest-scripts/vitest-smart-reporter.ts b/test/vitest-scripts/vitest-smart-reporter.ts index cb2e77ba0aa..ed8d1a2e5ac 100644 --- a/test/vitest-scripts/vitest-smart-reporter.ts +++ b/test/vitest-scripts/vitest-smart-reporter.ts @@ -1,7 +1,7 @@ import * as path from "path" import type { Reporter, TestCase, TestModule } from "vitest/node" -import { FileStats, loadCache, saveCache, TestStats } from "./cache" -import { UNSTABLE_FAIL_RATIO, SupportedPlatforms } from "./smart-config" +import { FileStats, loadCache, saveCache, TestStats } from "./cache.js" +import { UNSTABLE_FAIL_RATIO, SupportedPlatforms } from "./smart-config.js" const defaultStat: TestStats = { platformRuns: { diff --git a/test/vitest-scripts/vitest-smart-sequencer.ts b/test/vitest-scripts/vitest-smart-sequencer.ts index 07cb8995260..75193e658d7 100644 --- a/test/vitest-scripts/vitest-smart-sequencer.ts +++ b/test/vitest-scripts/vitest-smart-sequencer.ts @@ -1,7 +1,7 @@ import * as path from "path" import { BaseSequencer, TestSpecification } from "vitest/node" -import { loadCache } from "./cache" -import { DEFAULT_FILE_MS, SupportedPlatforms } from "./smart-config" +import { loadCache } from "./cache.js" +import { DEFAULT_FILE_MS, SupportedPlatforms } from "./smart-config.js" export default class SmartSequencer extends BaseSequencer { readonly cache = loadCache() From 9e2ac879077e7bd8da24b03356e09ace6d731645 Mon Sep 17 00:00:00 2001 From: Mike Maietta Date: Sun, 12 Apr 2026 07:38:52 -0700 Subject: [PATCH 54/61] chore(test): updating test snapshot's lockfile fixtures (#9675) --- .../npm electron-clear-data.txt | 12 +- .../HoistedNodeModuleTest/pnpm max stack.txt | 16 +- .../pnpm optional dependencies.txt | 36 +- .../pnpm workspace with native module.txt | 36 +- ...ion conflict with hoisted dependencies.txt | 71 +- .../HoistedNodeModuleTest/yarn max stack.txt | 41 +- .../HoistedNodeModuleTest/yarn ms.txt | 47 +- .../HoistedNodeModuleTest/yarn parse-asn1.txt | 14 +- ... two package.json without node_modules.txt | 2099 +- .../yarn two package.json.txt | 1564 +- .../lockfiles/packageManagerTest/npm.txt | 24 +- .../lockfiles/packageManagerTest/pnpm.txt | 40 +- .../yarn berry multi-package workspace.txt | 40 +- .../yarn berry workspace.txt | 40 +- .../packageManagerTest/yarn berry.txt | 11 + .../yarn multi-package workspace.txt | 40 +- .../packageManagerTest/yarn workspace.txt | 40 +- test/snapshots/HoistedNodeModuleTest.js.snap | 31735 +++++++--------- test/src/HoistedNodeModuleTest.ts | 8 +- 19 files changed, 14634 insertions(+), 21280 deletions(-) diff --git a/test/fixtures/lockfiles/HoistedNodeModuleTest/npm electron-clear-data.txt b/test/fixtures/lockfiles/HoistedNodeModuleTest/npm electron-clear-data.txt index 3ccff087ee5..41f19ab20b0 100644 --- a/test/fixtures/lockfiles/HoistedNodeModuleTest/npm electron-clear-data.txt +++ b/test/fixtures/lockfiles/HoistedNodeModuleTest/npm electron-clear-data.txt @@ -111,9 +111,9 @@ } }, "node_modules/@types/node": { - "version": "24.11.0", - "resolved": "https://registry.npmjs.org/@types/node/-/node-24.11.0.tgz", - "integrity": "sha512-fPxQqz4VTgPI/IQ+lj9r0h+fDR66bzoeMGHp8ASee+32OSGIkeASsoZuJixsQoVef1QJbeubcPBxKk22QVoWdw==", + "version": "24.12.2", + "resolved": "https://registry.npmjs.org/@types/node/-/node-24.12.2.tgz", + "integrity": "sha512-A1sre26ke7HDIuY/M23nd9gfB+nrmhtYyMINbjI1zHJxYteKR6qSMX56FsmjMcDb3SMcjJg5BiRRgOCC/yBD0g==", "peer": true, "dependencies": { "undici-types": "~7.16.0" @@ -283,9 +283,9 @@ "peer": true }, "node_modules/electron": { - "version": "40.6.1", - "resolved": "https://registry.npmjs.org/electron/-/electron-40.6.1.tgz", - "integrity": "sha512-u9YfoixttdauciHV9Ut9Zf3YipJoU093kR1GSYTTXTAXqhiXI0G1A0NnL/f0O2m2UULCXaXMf2W71PloR6V9pQ==", + "version": "41.2.0", + "resolved": "https://registry.npmjs.org/electron/-/electron-41.2.0.tgz", + "integrity": "sha512-0OKLiymqfV0WK68RBXqAm3Myad2TpI5wwxLCBEUcH5Nugo3YfSk7p1Js/AL9266qTz5xZioUnxt9hG8FFwax0g==", "hasInstallScript": true, "peer": true, "dependencies": { diff --git a/test/fixtures/lockfiles/HoistedNodeModuleTest/pnpm max stack.txt b/test/fixtures/lockfiles/HoistedNodeModuleTest/pnpm max stack.txt index 9364da4b1aa..13a58cae1c8 100644 --- a/test/fixtures/lockfiles/HoistedNodeModuleTest/pnpm max stack.txt +++ b/test/fixtures/lockfiles/HoistedNodeModuleTest/pnpm max stack.txt @@ -37,8 +37,8 @@ packages: balanced-match@1.0.2: resolution: {integrity: sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==} - brace-expansion@1.1.12: - resolution: {integrity: sha512-9T9UjW3r0UW5c1Q7GTwllptXwhvYmEzFhzMfZ9H7FQWt+uZePjZPjBP/W1ZEyZ1twGWom5/56TF4lPcqjnDHcg==} + brace-expansion@1.1.13: + resolution: {integrity: sha512-9ZLprWS6EENmhEOpjCYW2c8VkmOvckIJZfkr7rBW6dObmfgJ/L1GpSYW5Hpo9lDz4D1+n0Ckz8rU7FwHDQiG/w==} call-bind-apply-helpers@1.0.2: resolution: {integrity: sha512-Sp1ablJ0ivDkSzjcaJdxEunN5/XvksFJ2sMBFfq6x0ryhQV/2b/KwFe21cMpmHtPOSij8K99/wSfoEuTObmuMQ==} @@ -311,8 +311,8 @@ packages: resolution: {integrity: sha512-S3UwM3yj5mtUSEfP41UZmt/0SCoVYUcU1rkXv+BQ5Ig8ndL4sPoJNBUJERafdPb5jjHJGuMgytgKvKIf58XNBw==} engines: {node: '>= 0.10.0'} - minimatch@3.1.3: - resolution: {integrity: sha512-M2GCs7Vk83NxkUyQV1bkABc4yxgz9kILhHImZiBPAZ9ybuvCb0/H7lEl5XvIg3g+9d4eNotkZA5IWwYl0tibaA==} + minimatch@3.1.5: + resolution: {integrity: sha512-VgjWUsnnT6n+NUk6eZq77zeFdpW2LWDzP6zFGrCbHXiYNul5Dzqk2HHQ5uFH2DNW5Xbp8+jVzaeNt94ssEEl4w==} nice-try@1.0.5: resolution: {integrity: sha512-1nh45deeb5olNY7eX82BkPO7SSxR5SSYJiPTrTdFUVYwAl8CKMA5N9PjTYkHiRjisVcxcQ1HXdLhx2qxxJzLNQ==} @@ -558,7 +558,7 @@ snapshots: balanced-match@1.0.2: {} - brace-expansion@1.1.12: + brace-expansion@1.1.13: dependencies: balanced-match: 1.0.2 concat-map: 0.0.1 @@ -923,9 +923,9 @@ snapshots: memorystream@0.3.1: {} - minimatch@3.1.3: + minimatch@3.1.5: dependencies: - brace-expansion: 1.1.12 + brace-expansion: 1.1.13 nice-try@1.0.5: {} @@ -942,7 +942,7 @@ snapshots: chalk: 2.4.2 cross-spawn: 6.0.6 memorystream: 0.3.1 - minimatch: 3.1.3 + minimatch: 3.1.5 pidtree: 0.3.1 read-pkg: 3.0.0 shell-quote: 1.8.3 diff --git a/test/fixtures/lockfiles/HoistedNodeModuleTest/pnpm optional dependencies.txt b/test/fixtures/lockfiles/HoistedNodeModuleTest/pnpm optional dependencies.txt index a3383d935d8..54b7ea66176 100644 --- a/test/fixtures/lockfiles/HoistedNodeModuleTest/pnpm optional dependencies.txt +++ b/test/fixtures/lockfiles/HoistedNodeModuleTest/pnpm optional dependencies.txt @@ -10,7 +10,7 @@ importers: dependencies: electron-clear-data: specifier: 1.0.5 - version: 1.0.5(electron@40.6.0) + version: 1.0.5(electron@41.1.1) optionalDependencies: debug: specifier: 3.1.0 @@ -39,8 +39,8 @@ packages: '@types/keyv@3.1.4': resolution: {integrity: sha512-BQ5aZNSCpj7D6K2ksrRCTmKRLEpnPvWDiLPfoGyhZ++8YtiK9d/3DBKPJgry359X/P1PfruyYwvnvwFjuEiEIg==} - '@types/node@24.10.13': - resolution: {integrity: sha512-oH72nZRfDv9lADUBSo104Aq7gPHpQZc4BTx38r9xf9pg5LfP6EzSyH2n7qFmmxRQXh7YlUXODcYsg6PuTDSxGg==} + '@types/node@24.12.2': + resolution: {integrity: sha512-A1sre26ke7HDIuY/M23nd9gfB+nrmhtYyMINbjI1zHJxYteKR6qSMX56FsmjMcDb3SMcjJg5BiRRgOCC/yBD0g==} '@types/responselike@1.0.3': resolution: {integrity: sha512-H/+L+UkTV33uf49PH5pCAUBVPNj2nDBXTN+qS1dOwyyg24l3CcicicCA7ca+HMvJBZcFgl5r8e+RR6elsb4Lyw==} @@ -108,8 +108,8 @@ packages: peerDependencies: electron: '>= 1.2.2' - electron@40.6.0: - resolution: {integrity: sha512-ett8W+yOFGDuM0vhJMamYSkrbV3LoaffzJd9GfjI96zRAxyrNqUSKqBpf/WGbQCweDxX2pkUCUfrv4wwKpsFZA==} + electron@41.1.1: + resolution: {integrity: sha512-8bgvDhBjli+3Z2YCKgzzoBPh6391pr7Xv2h/tTJG4ETgvPvUxZomObbZLs31mUzYb6VrlcDDd9cyWyNKtPm3tA==} engines: {node: '>= 12.20.55'} hasBin: true @@ -236,8 +236,8 @@ packages: resolution: {integrity: sha512-7PiHtLll5LdnKIMw100I+8xJXR5gW2QwWYkT6iJva0bXitZKa/XMrSbdmg3r2Xnaidz9Qumd0VPaMrZlF9V9sA==} engines: {node: '>=0.4.0'} - pump@3.0.3: - resolution: {integrity: sha512-todwxLMY7/heScKmntwQG8CXVkWUOdYxIvY2s0VWAAMh/nd8SoYiRaKjlr7+iCs984f2P8zvrfWcDDYVb73NfA==} + pump@3.0.4: + resolution: {integrity: sha512-VS7sjc6KR7e1ukRFhQSY5LM2uBWAUPiOPa/A3mkKmiMwSmRFUITt0xuj+/lesgnCv+dPIEYlkzrcyXgquIHMcA==} quick-lru@5.1.1: resolution: {integrity: sha512-WuyALRjWPDGtt/wzJiadO5AXY+8hZ80hVpe6MyivgraREW751X3SbhRvG3eLKOYN+8VEvqLcf3wdnt44Z4S4SA==} @@ -319,26 +319,26 @@ snapshots: dependencies: '@types/http-cache-semantics': 4.2.0 '@types/keyv': 3.1.4 - '@types/node': 24.10.13 + '@types/node': 24.12.2 '@types/responselike': 1.0.3 '@types/http-cache-semantics@4.2.0': {} '@types/keyv@3.1.4': dependencies: - '@types/node': 24.10.13 + '@types/node': 24.12.2 - '@types/node@24.10.13': + '@types/node@24.12.2': dependencies: undici-types: 7.16.0 '@types/responselike@1.0.3': dependencies: - '@types/node': 24.10.13 + '@types/node': 24.12.2 '@types/yauzl@2.10.3': dependencies: - '@types/node': 24.10.13 + '@types/node': 24.12.2 optional: true boolean@3.2.0: @@ -394,14 +394,14 @@ snapshots: detect-node@2.1.0: optional: true - electron-clear-data@1.0.5(electron@40.6.0): + electron-clear-data@1.0.5(electron@41.1.1): dependencies: - electron: 40.6.0 + electron: 41.1.1 - electron@40.6.0: + electron@41.1.1: dependencies: '@electron/get': 2.0.3 - '@types/node': 24.10.13 + '@types/node': 24.12.2 extract-zip: 2.0.1 transitivePeerDependencies: - supports-color @@ -446,7 +446,7 @@ snapshots: get-stream@5.2.0: dependencies: - pump: 3.0.3 + pump: 3.0.4 global-agent@3.0.0: dependencies: @@ -539,7 +539,7 @@ snapshots: progress@2.0.3: {} - pump@3.0.3: + pump@3.0.4: dependencies: end-of-stream: 1.4.5 once: 1.4.0 diff --git a/test/fixtures/lockfiles/HoistedNodeModuleTest/pnpm workspace with native module.txt b/test/fixtures/lockfiles/HoistedNodeModuleTest/pnpm workspace with native module.txt index f1f7ffc0c6c..7dbef66cf3c 100644 --- a/test/fixtures/lockfiles/HoistedNodeModuleTest/pnpm workspace with native module.txt +++ b/test/fixtures/lockfiles/HoistedNodeModuleTest/pnpm workspace with native module.txt @@ -50,8 +50,8 @@ packages: '@types/keyv@3.1.4': resolution: {integrity: sha512-BQ5aZNSCpj7D6K2ksrRCTmKRLEpnPvWDiLPfoGyhZ++8YtiK9d/3DBKPJgry359X/P1PfruyYwvnvwFjuEiEIg==} - '@types/node@22.19.11': - resolution: {integrity: sha512-BH7YwL6rA93ReqeQS1c4bsPpcfOmJasG+Fkr6Y59q83f9M1WcBRHR2vM+P9eOisYRcN3ujQoiZY8uk5W+1WL8w==} + '@types/node@22.19.17': + resolution: {integrity: sha512-wGdMcf+vPYM6jikpS/qhg6WiqSV/OhG+jeeHT/KlVqxYfD40iYJf9/AE1uQxVWFvU7MipKRkRv8NSHiCGgPr8Q==} '@types/responselike@1.0.3': resolution: {integrity: sha512-H/+L+UkTV33uf49PH5pCAUBVPNj2nDBXTN+qS1dOwyyg24l3CcicicCA7ca+HMvJBZcFgl5r8e+RR6elsb4Lyw==} @@ -268,8 +268,8 @@ packages: napi-build-utils@2.0.0: resolution: {integrity: sha512-GEbrYkbfF7MoNaoh2iGG84Mnf/WZfB0GdGEsM8wz7Expx/LlWf5U8t9nvJKXSp3qr5IsEbK04cBGhol/KwOsWA==} - node-abi@3.87.0: - resolution: {integrity: sha512-+CGM1L1CgmtheLcBuleyYOn7NWPVu0s0EJH2C4puxgEZb9h8QpR9G2dBfZJOAUhi7VQxuBPMd0hiISWcTyiYyQ==} + node-abi@3.89.0: + resolution: {integrity: sha512-6u9UwL0HlAl21+agMN3YAMXcKByMqwGx+pq+P76vii5f7hTPtKDp08/H9py6DY+cfDw7kQNTGEj/rly3IgbNQA==} engines: {node: '>=10'} normalize-url@6.1.0: @@ -300,8 +300,8 @@ packages: resolution: {integrity: sha512-7PiHtLll5LdnKIMw100I+8xJXR5gW2QwWYkT6iJva0bXitZKa/XMrSbdmg3r2Xnaidz9Qumd0VPaMrZlF9V9sA==} engines: {node: '>=0.4.0'} - pump@3.0.3: - resolution: {integrity: sha512-todwxLMY7/heScKmntwQG8CXVkWUOdYxIvY2s0VWAAMh/nd8SoYiRaKjlr7+iCs984f2P8zvrfWcDDYVb73NfA==} + pump@3.0.4: + resolution: {integrity: sha512-VS7sjc6KR7e1ukRFhQSY5LM2uBWAUPiOPa/A3mkKmiMwSmRFUITt0xuj+/lesgnCv+dPIEYlkzrcyXgquIHMcA==} quick-lru@5.1.1: resolution: {integrity: sha512-WuyALRjWPDGtt/wzJiadO5AXY+8hZ80hVpe6MyivgraREW751X3SbhRvG3eLKOYN+8VEvqLcf3wdnt44Z4S4SA==} @@ -420,26 +420,26 @@ snapshots: dependencies: '@types/http-cache-semantics': 4.2.0 '@types/keyv': 3.1.4 - '@types/node': 22.19.11 + '@types/node': 22.19.17 '@types/responselike': 1.0.3 '@types/http-cache-semantics@4.2.0': {} '@types/keyv@3.1.4': dependencies: - '@types/node': 22.19.11 + '@types/node': 22.19.17 - '@types/node@22.19.11': + '@types/node@22.19.17': dependencies: undici-types: 6.21.0 '@types/responselike@1.0.3': dependencies: - '@types/node': 22.19.11 + '@types/node': 22.19.17 '@types/yauzl@2.10.3': dependencies: - '@types/node': 22.19.11 + '@types/node': 22.19.17 optional: true base64-js@1.5.1: {} @@ -521,7 +521,7 @@ snapshots: electron@35.7.5: dependencies: '@electron/get': 2.0.3 - '@types/node': 22.19.11 + '@types/node': 22.19.17 extract-zip: 2.0.1 transitivePeerDependencies: - supports-color @@ -572,7 +572,7 @@ snapshots: get-stream@5.2.0: dependencies: - pump: 3.0.3 + pump: 3.0.4 github-from-package@0.0.0: {} @@ -663,7 +663,7 @@ snapshots: napi-build-utils@2.0.0: {} - node-abi@3.87.0: + node-abi@3.89.0: dependencies: semver: 7.7.4 @@ -688,8 +688,8 @@ snapshots: minimist: 1.2.8 mkdirp-classic: 0.5.3 napi-build-utils: 2.0.0 - node-abi: 3.87.0 - pump: 3.0.3 + node-abi: 3.89.0 + pump: 3.0.4 rc: 1.2.8 simple-get: 4.0.1 tar-fs: 2.1.4 @@ -697,7 +697,7 @@ snapshots: progress@2.0.3: {} - pump@3.0.3: + pump@3.0.4: dependencies: end-of-stream: 1.4.5 once: 1.4.0 @@ -774,7 +774,7 @@ snapshots: dependencies: chownr: 1.1.4 mkdirp-classic: 0.5.3 - pump: 3.0.3 + pump: 3.0.4 tar-stream: 2.2.0 tar-stream@2.2.0: diff --git a/test/fixtures/lockfiles/HoistedNodeModuleTest/yarn berry version conflict with hoisted dependencies.txt b/test/fixtures/lockfiles/HoistedNodeModuleTest/yarn berry version conflict with hoisted dependencies.txt index f0993ed9218..287456d803a 100644 --- a/test/fixtures/lockfiles/HoistedNodeModuleTest/yarn berry version conflict with hoisted dependencies.txt +++ b/test/fixtures/lockfiles/HoistedNodeModuleTest/yarn berry version conflict with hoisted dependencies.txt @@ -85,9 +85,14 @@ __metadata: linkType: hard "@csstools/css-syntax-patches-for-csstree@npm:^1.0.21": - version: 1.0.28 - resolution: "@csstools/css-syntax-patches-for-csstree@npm:1.0.28" - checksum: 14bd421d87f00b7f9fcbd7d78d758c1851a08b141de6fa90ee16587a55780756fe78a39cccaf4edf31a435b2f622f15cd023cf4958d03b354ec5200f891b79ac + version: 1.1.2 + resolution: "@csstools/css-syntax-patches-for-csstree@npm:1.1.2" + peerDependencies: + css-tree: ^3.2.1 + peerDependenciesMeta: + css-tree: + optional: true + checksum: 057eec09c0697a57d4d395a37df5b818b3ea39c5298316919ec55f29ef5d82c0003c77e2968c68bc89a179bbf2be6830beb97efd857be46a34172ccfa6018779 languageName: node linkType: hard @@ -99,14 +104,14 @@ __metadata: linkType: hard "@exodus/bytes@npm:^1.6.0": - version: 1.14.1 - resolution: "@exodus/bytes@npm:1.14.1" + version: 1.15.0 + resolution: "@exodus/bytes@npm:1.15.0" peerDependencies: "@noble/hashes": ^1.8.0 || ^2.0.0 peerDependenciesMeta: "@noble/hashes": optional: true - checksum: 1b767061100e0b9ffc80efe2f3b3f0f8d895b30d5ff0c28e0dd0b0f96263163ba4aaa1968733ace058b9d502bd5e595fa537fcec0afedb79d981405b04f3bfb6 + checksum: 9d36ea2fff78adde5fe937d2201edc86799b0fd581eb81d84984e65b19d76dc0fe0f11a62f098115163bbe040a3be5f3f0ab0c179475acabf575ca9e2e67daa1 languageName: node linkType: hard @@ -134,12 +139,12 @@ __metadata: linkType: hard "css-tree@npm:^3.1.0": - version: 3.1.0 - resolution: "css-tree@npm:3.1.0" + version: 3.2.1 + resolution: "css-tree@npm:3.2.1" dependencies: - mdn-data: 2.12.2 - source-map-js: ^1.0.1 - checksum: 6b8c713c22b7223c0e71179575c3bbf421a13a61641204645d6c3b560bdc4ffed8d676220bbcb83777e07b46a934ec3b1c629aa61d57422c196c8e2e7417ee1a + mdn-data: 2.27.1 + source-map-js: ^1.2.1 + checksum: f4482b1c0a1b5422e06f96cb76c8bb69156d13c4e68dfca5b67de0d831943d702de8200475f11b29f3819c5dc7bfc10dea8ffe5e4e0985d690fa6e39a0b4f7ae languageName: node linkType: hard @@ -285,9 +290,9 @@ __metadata: linkType: hard "lru-cache@npm:^11.2.4, lru-cache@npm:^11.2.5, lru-cache@npm:^11.2.6": - version: 11.2.6 - resolution: "lru-cache@npm:11.2.6" - checksum: 26fe602c92a0cb7a8da9a85db162ddd810d84507d9c4ef8d95a785a805648f9579e1148aaeac260f6b6315197bcf27c1b7e60a0a066621d6e95b3587699a0c70 + version: 11.3.3 + resolution: "lru-cache@npm:11.3.3" + checksum: 35d2d2565e7ac35c90b7b57dacddb2728c8f071640ca9bc3d83f5641a7dd1ca1ac2a0aa23eb72c6fd23653f49a5da04262cc28a19f14946869ff69dcc2e75746 languageName: node linkType: hard @@ -307,10 +312,10 @@ __metadata: languageName: node linkType: hard -"mdn-data@npm:2.12.2": - version: 2.12.2 - resolution: "mdn-data@npm:2.12.2" - checksum: 77f38c180292cfbbd41c06641a27940cc293c08f47faa98f80bf64f98bb1b2a804df371e864e31a1ea97bdf181c0b0f85a2d96d1a6261f43c427b32222f33f1f +"mdn-data@npm:2.27.1": + version: 2.27.1 + resolution: "mdn-data@npm:2.27.1" + checksum: a19a8d524b774089731f2ebaaf17aa110d8031fd4f313c23692b3636e117042d760098a9e8091035933b26c9252c4355008f56f5383f986b6df9c54f3fed8ebc languageName: node linkType: hard @@ -380,7 +385,7 @@ __metadata: languageName: node linkType: hard -"source-map-js@npm:^1.0.1": +"source-map-js@npm:^1.2.1": version: 1.2.1 resolution: "source-map-js@npm:1.2.1" checksum: 4eb0cd997cdf228bc253bcaff9340afeb706176e64868ecd20efbe6efea931465f43955612346d6b7318789e5265bdc419bc7669c1cebe3db0eb255f57efa76b @@ -403,30 +408,30 @@ __metadata: languageName: unknown linkType: soft -"tldts-core@npm:^7.0.23": - version: 7.0.23 - resolution: "tldts-core@npm:7.0.23" - checksum: 9ad8639b6559480f9517af2d233f68b90f9fa51ad65203b96db26b3c235f82075c5358aefa686515baa37ebeedcd0cfa2fe60833aca53709373975e607bb3d8f +"tldts-core@npm:^7.0.28": + version: 7.0.28 + resolution: "tldts-core@npm:7.0.28" + checksum: b1401ac376c4829e2e285056e544919dded2a4a1bbdc4953cea980ceab309e13157e539139d513027e67994805d3d9b31ed76b4f5e2c3075ed7a0ac9be558d3f languageName: node linkType: hard "tldts@npm:^7.0.5": - version: 7.0.23 - resolution: "tldts@npm:7.0.23" + version: 7.0.28 + resolution: "tldts@npm:7.0.28" dependencies: - tldts-core: ^7.0.23 + tldts-core: ^7.0.28 bin: tldts: bin/cli.js - checksum: d18a0ce0103ae5e550a41e1d2b657026814c6bae1d8b668093dc68252391d9c27a662620488ace60da1368823112bfcfb0892e90d67274740901ae268f0aadb3 + checksum: e958a8692ec3f750ae2c6e355648359670acfade11251c0162e63f40b5473cd72338f690458f37421e64cd57242cd50f3c9df2d8672441577e6fed4f8bcb57eb languageName: node linkType: hard "tough-cookie@npm:^6.0.0": - version: 6.0.0 - resolution: "tough-cookie@npm:6.0.0" + version: 6.0.1 + resolution: "tough-cookie@npm:6.0.1" dependencies: tldts: ^7.0.5 - checksum: 66d32ee40e1c6c61be5388e1c124674871dae0a684c30853f1628a4da2c5ad4199a825d1b0a7ba424dadfba7b5a9b37e8c761eafbf48f1b9f75a4629e73b14bc + checksum: 2d688952d3467907adaa9a65bf68698d638bf431ee4f25074783a5ca41014103578b2be953f854d0defd60a039737ebff4be19a940930dd10a757e787c44c8d6 languageName: node linkType: hard @@ -487,8 +492,8 @@ __metadata: linkType: hard "ws@npm:^8.18.3": - version: 8.19.0 - resolution: "ws@npm:8.19.0" + version: 8.20.0 + resolution: "ws@npm:8.20.0" peerDependencies: bufferutil: ^4.0.1 utf-8-validate: ">=5.0.2" @@ -497,7 +502,7 @@ __metadata: optional: true utf-8-validate: optional: true - checksum: 7a426122c373e053a65a2affbcdcdbf8f643ba0265577afd4e08595397ca244c05de81570300711e2363a9dab5aea3ae644b445bc7468b1ebbb51bfe2efb20e1 + checksum: 2b31d24a53690770564a033c21ea48390f84d23fbc5abc14b2bbec4e112846f2f3ca66caee769a73fb8bc89ba16b452a6911a553e9742bbc75bccb79e203953e languageName: node linkType: hard diff --git a/test/fixtures/lockfiles/HoistedNodeModuleTest/yarn max stack.txt b/test/fixtures/lockfiles/HoistedNodeModuleTest/yarn max stack.txt index 11a3a4ec2e6..601a4bece6e 100644 --- a/test/fixtures/lockfiles/HoistedNodeModuleTest/yarn max stack.txt +++ b/test/fixtures/lockfiles/HoistedNodeModuleTest/yarn max stack.txt @@ -48,14 +48,14 @@ balanced-match@^1.0.0: integrity sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw== brace-expansion@^1.1.7: - version "1.1.12" - resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.12.tgz#ab9b454466e5a8cc3a187beaad580412a9c5b843" - integrity sha512-9T9UjW3r0UW5c1Q7GTwllptXwhvYmEzFhzMfZ9H7FQWt+uZePjZPjBP/W1ZEyZ1twGWom5/56TF4lPcqjnDHcg== + version "1.1.14" + resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.14.tgz#d9de602370d91347cd9ddad1224d4fd701eb348b" + integrity sha512-MWPGfDxnyzKU7rNOW9SP/c50vi3xrmrua/+6hfPbCS2ABNWfx24vPidzvC7krjU/RTo235sV776ymlsMtGKj8g== dependencies: balanced-match "^1.0.0" concat-map "0.0.1" -call-bind-apply-helpers@^1.0.0, call-bind-apply-helpers@^1.0.1, call-bind-apply-helpers@^1.0.2: +call-bind-apply-helpers@^1.0.1, call-bind-apply-helpers@^1.0.2: version "1.0.2" resolved "https://registry.yarnpkg.com/call-bind-apply-helpers/-/call-bind-apply-helpers-1.0.2.tgz#4b5428c222be985d79c3d82657479dbe0b59b2d6" integrity sha512-Sp1ablJ0ivDkSzjcaJdxEunN5/XvksFJ2sMBFfq6x0ryhQV/2b/KwFe21cMpmHtPOSij8K99/wSfoEuTObmuMQ== @@ -64,13 +64,13 @@ call-bind-apply-helpers@^1.0.0, call-bind-apply-helpers@^1.0.1, call-bind-apply- function-bind "^1.1.2" call-bind@^1.0.7, call-bind@^1.0.8: - version "1.0.8" - resolved "https://registry.yarnpkg.com/call-bind/-/call-bind-1.0.8.tgz#0736a9660f537e3388826f440d5ec45f744eaa4c" - integrity sha512-oKlSFMcMwpUg2ednkhQ454wfWiU/ul3CkJe/PEHcTKuiX6RpbehUiFMXu13HalGZxfUwCQzZG747YXBn1im9ww== + version "1.0.9" + resolved "https://registry.yarnpkg.com/call-bind/-/call-bind-1.0.9.tgz#39a644700c80bc7d0ca9102fc6d1d43b2fd7eee7" + integrity sha512-a/hy+pNsFUTR+Iz8TCJvXudKVLAnz/DyeSUo10I5yvFDQJBFU2s9uqQpoSrJlroHUKoKqzg+epxyP9lqFdzfBQ== dependencies: - call-bind-apply-helpers "^1.0.0" - es-define-property "^1.0.0" - get-intrinsic "^1.2.4" + call-bind-apply-helpers "^1.0.2" + es-define-property "^1.0.1" + get-intrinsic "^1.3.0" set-function-length "^1.2.2" call-bound@^1.0.2, call-bound@^1.0.3, call-bound@^1.0.4: @@ -180,9 +180,9 @@ error-ex@^1.3.1: is-arrayish "^0.2.1" es-abstract@^1.23.2, es-abstract@^1.23.5, es-abstract@^1.23.9: - version "1.24.1" - resolved "https://registry.yarnpkg.com/es-abstract/-/es-abstract-1.24.1.tgz#f0c131ed5ea1bb2411134a8dd94def09c46c7899" - integrity sha512-zHXBLhP+QehSSbsS9Pt23Gg964240DPd6QCf8WpkqEXxQ7fhdZzYsocOr5u7apWonsS5EjZDmTF+/slGMyasvw== + version "1.24.2" + resolved "https://registry.yarnpkg.com/es-abstract/-/es-abstract-1.24.2.tgz#2dbd38c180735ee983f77585140a2706a963ed9a" + integrity sha512-2FpH9Q5i2RRwyEP1AylXe6nYLR5OhaJTZwmlcP0dL/+JCbgg7yyEo/sEK6HeGZRf3dFpWwThaRHVApXSkW3xeg== dependencies: array-buffer-byte-length "^1.0.2" arraybuffer.prototype.slice "^1.0.4" @@ -772,10 +772,11 @@ regexp.prototype.flags@^1.5.4: set-function-name "^2.0.2" resolve@^1.10.0: - version "1.22.11" - resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.22.11.tgz#aad857ce1ffb8bfa9b0b1ac29f1156383f68c262" - integrity sha512-RfqAvLnMl313r7c9oclB1HhUEAezcpLjz95wFH4LVuhk9JF/r22qmVP9AMmOU4vMX7Q8pN8jwNg/CSpdFnMjTQ== + version "1.22.12" + resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.22.12.tgz#f5b2a680897c69c238a13cd16b15671f8b73549f" + integrity sha512-TyeJ1zif53BPfHootBGwPRYT1RUt6oGWsaQr8UyZW/eAm9bKoijtvruSDEmZHm92CwS9nj7/fWttqPCgzep8CA== dependencies: + es-errors "^1.3.0" is-core-module "^2.16.1" path-parse "^1.0.7" supports-preserve-symlinks-flag "^1.0.0" @@ -862,12 +863,12 @@ shell-quote@^1.6.1: integrity sha512-ObmnIF4hXNg1BqhnHmgbDETF8dLPCggZWBjkQfhZpbszZnYur5DUljTcCHii5LC3J5E0yeO/1LIMyH+UvHQgyw== side-channel-list@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/side-channel-list/-/side-channel-list-1.0.0.tgz#10cb5984263115d3b7a0e336591e290a830af8ad" - integrity sha512-FCLHtRD/gnpCiCHEiJLOwdmFP+wzCmDEkc9y7NsYxeF4u7Btsn1ZuwgwJGxImImHicJArLP4R0yX4c2KCrMrTA== + version "1.0.1" + resolved "https://registry.yarnpkg.com/side-channel-list/-/side-channel-list-1.0.1.tgz#c2e0b5a14a540aebee3bbc6c3f8666cc9b509127" + integrity sha512-mjn/0bi/oUURjc5Xl7IaWi/OJJJumuoJFQJfDDyO46+hBWsfaVM65TBHq2eoZBhzl9EchxOijpkbRC8SVBQU0w== dependencies: es-errors "^1.3.0" - object-inspect "^1.13.3" + object-inspect "^1.13.4" side-channel-map@^1.0.1: version "1.0.1" diff --git a/test/fixtures/lockfiles/HoistedNodeModuleTest/yarn ms.txt b/test/fixtures/lockfiles/HoistedNodeModuleTest/yarn ms.txt index d6578bf082e..e01b5959c3c 100644 --- a/test/fixtures/lockfiles/HoistedNodeModuleTest/yarn ms.txt +++ b/test/fixtures/lockfiles/HoistedNodeModuleTest/yarn ms.txt @@ -32,9 +32,9 @@ "@opentelemetry/api" "^1.3.0" "@opentelemetry/api@^1.0.0", "@opentelemetry/api@^1.3.0", "@opentelemetry/api@^1.8", "@opentelemetry/api@^1.9.0": - version "1.9.0" - resolved "https://registry.yarnpkg.com/@opentelemetry/api/-/api-1.9.0.tgz#d03eba68273dc0f7509e2a3d5cba21eae10379fe" - integrity sha512-3giAOQvZiH5F9bMlMiv8+GSPMeqg0dbaeo58/0SlA9sxSqZhnUtxzX9/2FzyhS9sWQf5S0GJE0AKBrFqjpeYcg== + version "1.9.1" + resolved "https://registry.yarnpkg.com/@opentelemetry/api/-/api-1.9.1.tgz#c1b0346de336ba55af2d5a7970882037baedec05" + integrity sha512-gLyJlPHPZYdAk1JENA9LeHejZe1Ti77/pTeFm/nMXmQH/HFZlcS/O2XJB+L8fkbrNSqhdtlvjBVjxwUYanNH5Q== "@opentelemetry/context-async-hooks@^1.29.0": version "1.30.1" @@ -493,16 +493,16 @@ "@types/node" "*" "@types/node@*": - version "25.3.3" - resolved "https://registry.yarnpkg.com/@types/node/-/node-25.3.3.tgz#605862544ee7ffd7a936bcbf0135a14012f1e549" - integrity sha512-DpzbrH7wIcBaJibpKo9nnSQL0MTRdnWttGyE5haGwK86xgMOkFLp7vEyfQPGLOJh5wNYiJ3V9PmUMDhV9u8kkQ== + version "25.6.0" + resolved "https://registry.yarnpkg.com/@types/node/-/node-25.6.0.tgz#4e09bad9b469871f2d0f68140198cbd714f4edca" + integrity sha512-+qIYRKdNYJwY3vRCZMdJbPLJAtGjQBudzZzdzwQYkEPQd+PJGixUL5QfvCLDaULoLv+RhT3LDkwEfKaAkgSmNQ== dependencies: - undici-types "~7.18.0" + undici-types "~7.19.0" "@types/node@^20.9.0": - version "20.19.35" - resolved "https://registry.yarnpkg.com/@types/node/-/node-20.19.35.tgz#117b373fd1dff528b2f9f8c2d1a85de6af8101ca" - integrity sha512-Uarfe6J91b9HAUXxjvSOdiO2UPOKLm07Q1oh0JHxoZ1y8HoqxDAu3gVrsrOHeiio0kSsoVBt4wFrKOm0dKxVPQ== + version "20.19.39" + resolved "https://registry.yarnpkg.com/@types/node/-/node-20.19.39.tgz#e98a3b575574070cd34b784bd173767269f95e99" + integrity sha512-orrrD74MBUyK8jOAD/r0+lfa1I2MO6I+vAkmAWzMYbCcgrN4lCrmK52gRFQq/JRxfYPfonkr4b0jcY7Olqdqbw== dependencies: undici-types "~6.21.0" @@ -514,9 +514,9 @@ "@types/pg" "*" "@types/pg@*": - version "8.18.0" - resolved "https://registry.yarnpkg.com/@types/pg/-/pg-8.18.0.tgz#0535e33bda45c34803d809719f7afc62c145ed50" - integrity sha512-gT+oueVQkqnj6ajGJXblFR4iavIXWsGAFCk3dP4Kki5+a9R4NMt0JARdk6s8cUKcfUoqP5dAtDSLU8xYUTFV+Q== + version "8.20.0" + resolved "https://registry.yarnpkg.com/@types/pg/-/pg-8.20.0.tgz#8bd03d3ac6b19143a8de7d66a9d13da32cd91526" + integrity sha512-bEPFOaMAHTEP1EzpvHTbmwR8UsFyHSKsRisLIHVMXnpNefSbGA1bD6CVy+qKjGSqmZqNqBDV2azOBo8TgkcVow== dependencies: "@types/node" "*" pg-protocol "*" @@ -929,9 +929,9 @@ pg-int8@1.0.1: integrity sha512-WCtabS6t3c8SkpDBUlb1kjOs7l66xsGdKpIPZsg4wR+B3+u9UAum2odSsF9tnvxg80h4ZxLWMy4pRjOsFIqQpw== pg-protocol@*: - version "1.12.0" - resolved "https://registry.yarnpkg.com/pg-protocol/-/pg-protocol-1.12.0.tgz#e9827f3e1dae6cdcb78d009cba5bb699d88ae998" - integrity sha512-uOANXNRACNdElMXJ0tPz6RBM0XQ61nONGAwlt8da5zs/iUOOCLBQOHSXnrC6fMsvtjxbOJrZZl5IScGv+7mpbg== + version "1.13.0" + resolved "https://registry.yarnpkg.com/pg-protocol/-/pg-protocol-1.13.0.tgz#fdaf6d020bca590d58bb991b4b16fc448efe0511" + integrity sha512-zzdvXfS6v89r6v7OcFCHfHlyG/wvry1ALxZo4LqgUoy7W9xhBDMaqOuMiF3qEV45VqsN6rdlcehHrfDtlCPc8w== pg-types@^2.2.0: version "2.2.0" @@ -999,10 +999,11 @@ resolve-alpn@^1.0.0: integrity sha512-0a1F4l73/ZFZOakJnQ3FvkJ2+gSTQWz/r2KE5OdDY0TxPm5h4GkqkWWfM47T7HsbnOtcJVEF4epCVy6u7Q3K+g== resolve@^1.22.8: - version "1.22.11" - resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.22.11.tgz#aad857ce1ffb8bfa9b0b1ac29f1156383f68c262" - integrity sha512-RfqAvLnMl313r7c9oclB1HhUEAezcpLjz95wFH4LVuhk9JF/r22qmVP9AMmOU4vMX7Q8pN8jwNg/CSpdFnMjTQ== + version "1.22.12" + resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.22.12.tgz#f5b2a680897c69c238a13cd16b15671f8b73549f" + integrity sha512-TyeJ1zif53BPfHootBGwPRYT1RUt6oGWsaQr8UyZW/eAm9bKoijtvruSDEmZHm92CwS9nj7/fWttqPCgzep8CA== dependencies: + es-errors "^1.3.0" is-core-module "^2.16.1" path-parse "^1.0.7" supports-preserve-symlinks-flag "^1.0.0" @@ -1080,10 +1081,10 @@ undici-types@~6.21.0: resolved "https://registry.yarnpkg.com/undici-types/-/undici-types-6.21.0.tgz#691d00af3909be93a7faa13be61b3a5b50ef12cb" integrity sha512-iwDZqg0QAGrg9Rav5H4n0M64c3mkR59cJ6wQp+7C4nI0gsmExaedaYLNO44eT4AtBBwjbTiGPMlt2Md0T9H9JQ== -undici-types@~7.18.0: - version "7.18.2" - resolved "https://registry.yarnpkg.com/undici-types/-/undici-types-7.18.2.tgz#29357a89e7b7ca4aef3bf0fd3fd0cd73884229e9" - integrity sha512-AsuCzffGHJybSaRrmr5eHr81mwJU3kjw6M+uprWvCXiNeN9SOGwQ3Jn8jb8m3Z6izVgknn1R0FTCEAP2QrLY/w== +undici-types@~7.19.0: + version "7.19.2" + resolved "https://registry.yarnpkg.com/undici-types/-/undici-types-7.19.2.tgz#1b67fc26d0f157a0cba3a58a5b5c1e2276b8ba2a" + integrity sha512-qYVnV5OEm2AW8cJMCpdV20CDyaN3g0AjDlOGf1OW4iaDEx8MwdtChUp4zu4H0VP3nDRF/8RKWH+IPp9uW0YGZg== universalify@^0.1.0: version "0.1.2" diff --git a/test/fixtures/lockfiles/HoistedNodeModuleTest/yarn parse-asn1.txt b/test/fixtures/lockfiles/HoistedNodeModuleTest/yarn parse-asn1.txt index 3a6d17ab754..966048a41ce 100644 --- a/test/fixtures/lockfiles/HoistedNodeModuleTest/yarn parse-asn1.txt +++ b/test/fixtures/lockfiles/HoistedNodeModuleTest/yarn parse-asn1.txt @@ -40,7 +40,7 @@ buffer-xor@^1.0.3: resolved "https://registry.yarnpkg.com/buffer-xor/-/buffer-xor-1.0.3.tgz#26e61ed1422fb70dd42e6e36729ed51d855fe8d9" integrity sha512-571s0T7nZWK6vB67HI5dyUF7wXiNcfaPPPTl6zYCNApANjIvYJTg7hlud/+cJpdAhS7dVzqMLmfhfHR3rAcOjQ== -call-bind-apply-helpers@^1.0.0, call-bind-apply-helpers@^1.0.1, call-bind-apply-helpers@^1.0.2: +call-bind-apply-helpers@^1.0.1, call-bind-apply-helpers@^1.0.2: version "1.0.2" resolved "https://registry.yarnpkg.com/call-bind-apply-helpers/-/call-bind-apply-helpers-1.0.2.tgz#4b5428c222be985d79c3d82657479dbe0b59b2d6" integrity sha512-Sp1ablJ0ivDkSzjcaJdxEunN5/XvksFJ2sMBFfq6x0ryhQV/2b/KwFe21cMpmHtPOSij8K99/wSfoEuTObmuMQ== @@ -49,13 +49,13 @@ call-bind-apply-helpers@^1.0.0, call-bind-apply-helpers@^1.0.1, call-bind-apply- function-bind "^1.1.2" call-bind@^1.0.8: - version "1.0.8" - resolved "https://registry.yarnpkg.com/call-bind/-/call-bind-1.0.8.tgz#0736a9660f537e3388826f440d5ec45f744eaa4c" - integrity sha512-oKlSFMcMwpUg2ednkhQ454wfWiU/ul3CkJe/PEHcTKuiX6RpbehUiFMXu13HalGZxfUwCQzZG747YXBn1im9ww== + version "1.0.9" + resolved "https://registry.yarnpkg.com/call-bind/-/call-bind-1.0.9.tgz#39a644700c80bc7d0ca9102fc6d1d43b2fd7eee7" + integrity sha512-a/hy+pNsFUTR+Iz8TCJvXudKVLAnz/DyeSUo10I5yvFDQJBFU2s9uqQpoSrJlroHUKoKqzg+epxyP9lqFdzfBQ== dependencies: - call-bind-apply-helpers "^1.0.0" - es-define-property "^1.0.0" - get-intrinsic "^1.2.4" + call-bind-apply-helpers "^1.0.2" + es-define-property "^1.0.1" + get-intrinsic "^1.3.0" set-function-length "^1.2.2" call-bound@^1.0.3, call-bound@^1.0.4: diff --git a/test/fixtures/lockfiles/HoistedNodeModuleTest/yarn two package.json without node_modules.txt b/test/fixtures/lockfiles/HoistedNodeModuleTest/yarn two package.json without node_modules.txt index d9c079f8101..a40c38d6ecd 100644 --- a/test/fixtures/lockfiles/HoistedNodeModuleTest/yarn two package.json without node_modules.txt +++ b/test/fixtures/lockfiles/HoistedNodeModuleTest/yarn two package.json without node_modules.txt @@ -2,37 +2,6 @@ # yarn lockfile v1 -"7zip-bin@~5.2.0": - version "5.2.0" - resolved "https://registry.yarnpkg.com/7zip-bin/-/7zip-bin-5.2.0.tgz#7a03314684dd6572b7dfa89e68ce31d60286854d" - integrity sha512-ukTPVhqG4jNzMro2qA9HSCSSVJN3aN7tlb+hfqYCt3ER0yWroeA2VR38MNrOHLQ/cVj+DaIMad0kFCtWWowh/A== - -"@develar/schema-utils@~2.6.5": - version "2.6.5" - resolved "https://registry.yarnpkg.com/@develar/schema-utils/-/schema-utils-2.6.5.tgz#3ece22c5838402419a6e0425f85742b961d9b6c6" - integrity sha512-0cp4PsWQ/9avqTVMCtZ+GirikIA36ikvjtHweU4/j8yLtgObI0+JUPhYFScgwlteveGB1rt3Cm8UhN04XayDig== - dependencies: - ajv "^6.12.0" - ajv-keywords "^3.4.1" - -"@electron/asar@3.4.1", "@electron/asar@^3.3.1": - version "3.4.1" - resolved "https://registry.yarnpkg.com/@electron/asar/-/asar-3.4.1.tgz#4e9196a4b54fba18c56cd8d5cac67c5bdc588065" - integrity sha512-i4/rNPRS84t0vSRa2HorerGRXWyF4vThfHesw0dmcWHp+cspK743UanA0suA5Q5y8kzY2y6YKrvbIUn69BCAiA== - dependencies: - commander "^5.0.0" - glob "^7.1.6" - minimatch "^3.0.4" - -"@electron/fuses@^1.8.0": - version "1.8.0" - resolved "https://registry.yarnpkg.com/@electron/fuses/-/fuses-1.8.0.tgz#ad34d3cc4703b1258b83f6989917052cfc1490a0" - integrity sha512-zx0EIq78WlY/lBb1uXlziZmDZI4ubcCXIMJ4uGjXzZW0nS19TjSPeXPAjzzTmKQlJUZm0SbmZhPKP7tuQ1SsEw== - dependencies: - chalk "^4.1.1" - fs-extra "^9.0.1" - minimist "^1.2.5" - "@electron/get@^2.0.0": version "2.0.3" resolved "https://registry.yarnpkg.com/@electron/get/-/get-2.0.3.tgz#fba552683d387aebd9f3fcadbcafc8e12ee4f960" @@ -48,133 +17,6 @@ optionalDependencies: global-agent "^3.0.0" -"@electron/get@^3.0.0": - version "3.1.0" - resolved "https://registry.yarnpkg.com/@electron/get/-/get-3.1.0.tgz#22c5a0bd917ab201badeb77bc4ad18cba54cb4ec" - integrity sha512-F+nKc0xW+kVbBRhFzaMgPy3KwmuNTYX1fx6+FxxoSnNgwYX6LD7AKBTWkU0MQ6IBoe7dz069CNkR673sPAgkCQ== - dependencies: - debug "^4.1.1" - env-paths "^2.2.0" - fs-extra "^8.1.0" - got "^11.8.5" - progress "^2.0.3" - semver "^6.2.0" - sumchecker "^3.0.1" - optionalDependencies: - global-agent "^3.0.0" - -"@electron/notarize@2.5.0": - version "2.5.0" - resolved "https://registry.yarnpkg.com/@electron/notarize/-/notarize-2.5.0.tgz#d4d25356adfa29df4a76bd64a8bd347237cd251e" - integrity sha512-jNT8nwH1f9X5GEITXaQ8IF/KdskvIkOFfB2CvwumsveVidzpSc+mvhhTMdAGSYF3O+Nq49lJ7y+ssODRXu06+A== - dependencies: - debug "^4.1.1" - fs-extra "^9.0.1" - promise-retry "^2.0.1" - -"@electron/osx-sign@1.3.3": - version "1.3.3" - resolved "https://registry.yarnpkg.com/@electron/osx-sign/-/osx-sign-1.3.3.tgz#af751510488318d9f7663694af85819690d75583" - integrity sha512-KZ8mhXvWv2rIEgMbWZ4y33bDHyUKMXnx4M0sTyPNK/vcB81ImdeY9Ggdqy0SWbMDgmbqyQ+phgejh6V3R2QuSg== - dependencies: - compare-version "^0.1.2" - debug "^4.3.4" - fs-extra "^10.0.0" - isbinaryfile "^4.0.8" - minimist "^1.2.6" - plist "^3.0.5" - -"@electron/rebuild@^4.0.3": - version "4.0.3" - resolved "https://registry.yarnpkg.com/@electron/rebuild/-/rebuild-4.0.3.tgz#f022f7e66874920fd16a4d802b8605885cb549d3" - integrity sha512-u9vpTHRMkOYCs/1FLiSVAFZ7FbjsXK+bQuzviJZa+lG7BHZl1nz52/IcGvwa3sk80/fc3llutBkbCq10Vh8WQA== - dependencies: - "@malept/cross-spawn-promise" "^2.0.0" - debug "^4.1.1" - detect-libc "^2.0.1" - got "^11.7.0" - graceful-fs "^4.2.11" - node-abi "^4.2.0" - node-api-version "^0.2.1" - node-gyp "^11.2.0" - ora "^5.1.0" - read-binary-file-arch "^1.0.6" - semver "^7.3.5" - tar "^7.5.6" - yargs "^17.0.1" - -"@electron/universal@2.0.3": - version "2.0.3" - resolved "https://registry.yarnpkg.com/@electron/universal/-/universal-2.0.3.tgz#1680df6ced8f128ca0ff24e29c2165d41d78b3ce" - integrity sha512-Wn9sPYIVFRFl5HmwMJkARCCf7rqK/EurkfQ/rJZ14mHP3iYTjZSIOSVonEAnhWeAXwtw7zOekGRlc6yTtZ0t+g== - dependencies: - "@electron/asar" "^3.3.1" - "@malept/cross-spawn-promise" "^2.0.0" - debug "^4.3.1" - dir-compare "^4.2.0" - fs-extra "^11.1.1" - minimatch "^9.0.3" - plist "^3.1.0" - -"@isaacs/cliui@^8.0.2": - version "8.0.2" - resolved "https://registry.yarnpkg.com/@isaacs/cliui/-/cliui-8.0.2.tgz#b37667b7bc181c168782259bab42474fbf52b550" - integrity sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA== - dependencies: - string-width "^5.1.2" - string-width-cjs "npm:string-width@^4.2.0" - strip-ansi "^7.0.1" - strip-ansi-cjs "npm:strip-ansi@^6.0.1" - wrap-ansi "^8.1.0" - wrap-ansi-cjs "npm:wrap-ansi@^7.0.0" - -"@isaacs/fs-minipass@^4.0.0": - version "4.0.1" - resolved "https://registry.yarnpkg.com/@isaacs/fs-minipass/-/fs-minipass-4.0.1.tgz#2d59ae3ab4b38fb4270bfa23d30f8e2e86c7fe32" - integrity sha512-wgm9Ehl2jpeqP3zw/7mo3kRHFp5MEDhqAdwy1fTGkHAwnkGOVsgpvQhL8B5n1qlb01jV3n/bI0ZfZp5lWA1k4w== - dependencies: - minipass "^7.0.4" - -"@malept/cross-spawn-promise@^2.0.0": - version "2.0.0" - resolved "https://registry.yarnpkg.com/@malept/cross-spawn-promise/-/cross-spawn-promise-2.0.0.tgz#d0772de1aa680a0bfb9ba2f32b4c828c7857cb9d" - integrity sha512-1DpKU0Z5ThltBwjNySMC14g0CkbyhCaz9FkhxqNsZI6uAPJXFS8cMXlBKo26FJ8ZuW6S9GCMcR9IO5k2X5/9Fg== - dependencies: - cross-spawn "^7.0.1" - -"@malept/flatpak-bundler@^0.4.0": - version "0.4.0" - resolved "https://registry.yarnpkg.com/@malept/flatpak-bundler/-/flatpak-bundler-0.4.0.tgz#e8a32c30a95d20c2b1bb635cc580981a06389858" - integrity sha512-9QOtNffcOF/c1seMCDnjckb3R9WHcG34tky+FHpNKKCW0wc/scYLwMtO+ptyGUfMW0/b/n4qRiALlaFHc9Oj7Q== - dependencies: - debug "^4.1.1" - fs-extra "^9.0.0" - lodash "^4.17.15" - tmp-promise "^3.0.2" - -"@npmcli/agent@^3.0.0": - version "3.0.0" - resolved "https://registry.yarnpkg.com/@npmcli/agent/-/agent-3.0.0.tgz#1685b1fbd4a1b7bb4f930cbb68ce801edfe7aa44" - integrity sha512-S79NdEgDQd/NGCay6TCoVzXSj74skRZIKJcpJjC5lOq34SZzyI6MqtiiWoiVWoVrTcGjNeC4ipbh1VIHlpfF5Q== - dependencies: - agent-base "^7.1.0" - http-proxy-agent "^7.0.0" - https-proxy-agent "^7.0.1" - lru-cache "^10.0.1" - socks-proxy-agent "^8.0.3" - -"@npmcli/fs@^4.0.0": - version "4.0.0" - resolved "https://registry.yarnpkg.com/@npmcli/fs/-/fs-4.0.0.tgz#a1eb1aeddefd2a4a347eca0fab30bc62c0e1c0f2" - integrity sha512-/xGlezI6xfGO9NwuJlnwz/K14qD1kCSAGtacBHnGzeAIuJGazcp45KP5NuyARXoKb7cwulAGWVsbeSxdG/cb0Q== - dependencies: - semver "^7.3.5" - -"@pkgjs/parseargs@^0.11.0": - version "0.11.0" - resolved "https://registry.yarnpkg.com/@pkgjs/parseargs/-/parseargs-0.11.0.tgz#a77ea742fab25775145434eb1d2328cf5013ac33" - integrity sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg== - "@sindresorhus/is@^4.0.0": version "4.6.0" resolved "https://registry.yarnpkg.com/@sindresorhus/is/-/is-4.6.0.tgz#3c7c9c46e678feefe7a2e5bb609d3dbd665ffb3f" @@ -197,20 +39,6 @@ "@types/node" "*" "@types/responselike" "^1.0.0" -"@types/debug@^4.1.6": - version "4.1.12" - resolved "https://registry.yarnpkg.com/@types/debug/-/debug-4.1.12.tgz#a155f21690871953410df4b6b6f53187f0500917" - integrity sha512-vIChWdVG3LG1SMxEvI/AK+FWJthlrqlTu7fbrlywTkkaONwk/UAGaULXRlf8vkzFBLVm0zkMdCquhL5aOjhXPQ== - dependencies: - "@types/ms" "*" - -"@types/fs-extra@9.0.13", "@types/fs-extra@^9.0.11": - version "9.0.13" - resolved "https://registry.yarnpkg.com/@types/fs-extra/-/fs-extra-9.0.13.tgz#7594fbae04fe7f1918ce8b3d213f74ff44ac1f45" - integrity sha512-nEnwB++1u5lVDM2UI4c1+5R+FYaKfaAzS4OococimjVm3nQw3TuzH5UNsocrcTBbhnerblyHj4A49qXbIiZdpA== - dependencies: - "@types/node" "*" - "@types/http-cache-semantics@*": version "4.2.0" resolved "https://registry.yarnpkg.com/@types/http-cache-semantics/-/http-cache-semantics-4.2.0.tgz#f6a7788f438cbfde15f29acad46512b4c01913b3" @@ -223,30 +51,19 @@ dependencies: "@types/node" "*" -"@types/ms@*": - version "2.1.0" - resolved "https://registry.yarnpkg.com/@types/ms/-/ms-2.1.0.tgz#052aa67a48eccc4309d7f0191b7e41434b90bb78" - integrity sha512-GsCCIZDE/p3i96vtEqx+7dBUGXrc7zeSK3wwPHIaRThS+9OhWIXRqzs4d6k1SVU8g91DrNRWxWUGhp5KXQb2VA== - "@types/node@*": - version "25.3.3" - resolved "https://registry.yarnpkg.com/@types/node/-/node-25.3.3.tgz#605862544ee7ffd7a936bcbf0135a14012f1e549" - integrity sha512-DpzbrH7wIcBaJibpKo9nnSQL0MTRdnWttGyE5haGwK86xgMOkFLp7vEyfQPGLOJh5wNYiJ3V9PmUMDhV9u8kkQ== + version "25.6.0" + resolved "https://registry.yarnpkg.com/@types/node/-/node-25.6.0.tgz#4e09bad9b469871f2d0f68140198cbd714f4edca" + integrity sha512-+qIYRKdNYJwY3vRCZMdJbPLJAtGjQBudzZzdzwQYkEPQd+PJGixUL5QfvCLDaULoLv+RhT3LDkwEfKaAkgSmNQ== dependencies: - undici-types "~7.18.0" - -"@types/node@^16.11.26": - version "16.18.126" - resolved "https://registry.yarnpkg.com/@types/node/-/node-16.18.126.tgz#27875faa2926c0f475b39a8bb1e546c0176f8d4b" - integrity sha512-OTcgaiwfGFBKacvfwuHzzn1KLxH/er8mluiy8/uM3sGXHaRe73RrSIj01jow9t4kJEW633Ov+cOexXeiApTyAw== + undici-types "~7.19.0" -"@types/plist@^3.0.1": - version "3.0.5" - resolved "https://registry.yarnpkg.com/@types/plist/-/plist-3.0.5.tgz#9a0c49c0f9886c8c8696a7904dd703f6284036e0" - integrity sha512-E6OCaRmAe4WDmWNsL/9RMqdkkzDCY1etutkflWk4c+AcjDU07Pcz1fQwTX0TQz+Pxqn9i4L1TU3UFpjnrcDgxA== +"@types/node@^22.7.7": + version "22.19.17" + resolved "https://registry.yarnpkg.com/@types/node/-/node-22.19.17.tgz#09c71fb34ba2510f8ac865361b1fcb9552b8a581" + integrity sha512-wGdMcf+vPYM6jikpS/qhg6WiqSV/OhG+jeeHT/KlVqxYfD40iYJf9/AE1uQxVWFvU7MipKRkRv8NSHiCGgPr8Q== dependencies: - "@types/node" "*" - xmlbuilder ">=11.0.1" + undici-types "~6.21.0" "@types/responselike@^1.0.0": version "1.0.3" @@ -255,11 +72,6 @@ dependencies: "@types/node" "*" -"@types/verror@^1.10.3": - version "1.10.11" - resolved "https://registry.yarnpkg.com/@types/verror/-/verror-1.10.11.tgz#d3d6b418978c8aa202d41e5bb3483227b6ecc1bb" - integrity sha512-RlDm9K7+o5stv0Co8i8ZRGxDbrTxhJtgjqjFyVh/tXQyl/rYtTKlnTvZ88oSTeYREWurwx20Js4kTuKCsFkUtg== - "@types/yauzl@^2.9.1": version "2.10.3" resolved "https://registry.yarnpkg.com/@types/yauzl/-/yauzl-2.10.3.tgz#e9b2808b4f109504a03cda958259876f61017999" @@ -267,234 +79,21 @@ dependencies: "@types/node" "*" -"@xmldom/xmldom@^0.8.8": - version "0.8.11" - resolved "https://registry.yarnpkg.com/@xmldom/xmldom/-/xmldom-0.8.11.tgz#b79de2d67389734c57c52595f7a7305e30c2d608" - integrity sha512-cQzWCtO6C8TQiYl1ruKNn2U6Ao4o4WBBcbL61yJl84x+j5sOWWFU9X7DpND8XZG3daDppSsigMdfAIl2upQBRw== - -"@yarnpkg/lockfile@^1.1.0": - version "1.1.0" - resolved "https://registry.yarnpkg.com/@yarnpkg/lockfile/-/lockfile-1.1.0.tgz#e77a97fbd345b76d83245edcd17d393b1b41fb31" - integrity sha512-GpSwvyXOcOOlV70vbnzjj4fW5xW/FdUF6nQEt1ENy7m4ZCczi1+/buVUPAqmGfqznsORNFzUMjctTIp8a9tuCQ== - -abbrev@^3.0.0: - version "3.0.1" - resolved "https://registry.yarnpkg.com/abbrev/-/abbrev-3.0.1.tgz#8ac8b3b5024d31464fe2a5feeea9f4536bf44025" - integrity sha512-AO2ac6pjRB3SJmGJo+v5/aK6Omggp6fsLrs6wN9bd35ulu4cCwaAU9+7ZhXjeqHVkaHThLuzH0nZr0YpCDhygg== - -accepts@1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/accepts/-/accepts-1.0.0.tgz#3604c765586c3b9cf7877b6937cdbd4587f947dc" - integrity sha512-2GdyQ5yRXA5MZi1gmU/XUFQTo7FtXsR2Jt90pl1pQftbsRdXQn69Mycn7xNGxVVmu1xdzZKe/GyMHnDlcV7ojg== - dependencies: - mime "~1.2.11" - negotiator "~0.3.0" - -agent-base@^7.1.0, agent-base@^7.1.2: - version "7.1.4" - resolved "https://registry.yarnpkg.com/agent-base/-/agent-base-7.1.4.tgz#e3cd76d4c548ee895d3c3fd8dc1f6c5b9032e7a8" - integrity sha512-MnA+YT8fwfJPgBx3m60MNqakm30XOkyIoH1y6huTQvC0PwZG7ki8NacLBcrPbNoo8vEZy7Jpuk7+jMO+CUovTQ== - -ajv-keywords@^3.4.1: - version "3.5.2" - resolved "https://registry.yarnpkg.com/ajv-keywords/-/ajv-keywords-3.5.2.tgz#31f29da5ab6e00d1c2d329acf7b5929614d5014d" - integrity sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ== - -ajv@^6.10.0, ajv@^6.12.0: - version "6.14.0" - resolved "https://registry.yarnpkg.com/ajv/-/ajv-6.14.0.tgz#fd067713e228210636ebb08c60bd3765d6dbe73a" - integrity sha512-IWrosm/yrn43eiKqkfkHis7QioDleaXQHdDVPKg0FSwwd/DuvyX79TZnFOnYpB7dcsFAMmtFztZuXPDvSePkFw== - dependencies: - fast-deep-equal "^3.1.1" - fast-json-stable-stringify "^2.0.0" - json-schema-traverse "^0.4.1" - uri-js "^4.2.2" - -ansi-regex@^5.0.1: - version "5.0.1" - resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-5.0.1.tgz#082cb2c89c9fe8659a311a53bd6a4dc5301db304" - integrity sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ== - -ansi-regex@^6.2.2: - version "6.2.2" - resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-6.2.2.tgz#60216eea464d864597ce2832000738a0589650c1" - integrity sha512-Bq3SmSpyFHaWjPk8If9yc6svM8c56dB5BAtW4Qbw5jHTwwXXcTLoRMkpDJp6VL0XzlWaCHTXrkFURMYmD0sLqg== - -ansi-styles@^4.0.0, ansi-styles@^4.1.0: - version "4.3.0" - resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-4.3.0.tgz#edd803628ae71c04c85ae7a0906edad34b648937" - integrity sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg== - dependencies: - color-convert "^2.0.1" - -ansi-styles@^6.1.0: - version "6.2.3" - resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-6.2.3.tgz#c044d5dcc521a076413472597a1acb1f103c4041" - integrity sha512-4Dj6M28JB+oAH8kFkTLUo+a2jwOFkuqb3yucU0CANcRRUbxS0cP0nZYCGjcc3BNXwRIsUVmDGgzawme7zvJHvg== - -app-builder-bin@5.0.0-alpha.12: - version "5.0.0-alpha.12" - resolved "https://registry.yarnpkg.com/app-builder-bin/-/app-builder-bin-5.0.0-alpha.12.tgz#2daf82f8badc698e0adcc95ba36af4ff0650dc80" - integrity sha512-j87o0j6LqPL3QRr8yid6c+Tt5gC7xNfYo6uQIQkorAC6MpeayVMZrEDzKmJJ/Hlv7EnOQpaRm53k6ktDYZyB6w== - -app-builder-lib@26.8.1: - version "26.8.1" - resolved "https://registry.yarnpkg.com/app-builder-lib/-/app-builder-lib-26.8.1.tgz#315c893bf1f5882cc6cd174cfcd00535dbb76786" - integrity sha512-p0Im/Dx5C4tmz8QEE1Yn4MkuPC8PrnlRneMhWJj7BBXQfNTJUshM/bp3lusdEsDbvvfJZpXWnYesgSLvwtM2Zw== - dependencies: - "@develar/schema-utils" "~2.6.5" - "@electron/asar" "3.4.1" - "@electron/fuses" "^1.8.0" - "@electron/get" "^3.0.0" - "@electron/notarize" "2.5.0" - "@electron/osx-sign" "1.3.3" - "@electron/rebuild" "^4.0.3" - "@electron/universal" "2.0.3" - "@malept/flatpak-bundler" "^0.4.0" - "@types/fs-extra" "9.0.13" - async-exit-hook "^2.0.1" - builder-util "26.8.1" - builder-util-runtime "9.5.1" - chromium-pickle-js "^0.2.0" - ci-info "4.3.1" - debug "^4.3.4" - dotenv "^16.4.5" - dotenv-expand "^11.0.6" - ejs "^3.1.8" - electron-publish "26.8.1" - fs-extra "^10.1.0" - hosted-git-info "^4.1.0" - isbinaryfile "^5.0.0" - jiti "^2.4.2" - js-yaml "^4.1.0" - json5 "^2.2.3" - lazy-val "^1.0.5" - minimatch "^10.0.3" - plist "3.1.0" - proper-lockfile "^4.1.2" - resedit "^1.7.0" - semver "~7.7.3" - tar "^7.5.7" - temp-file "^3.4.0" - tiny-async-pool "1.3.0" - which "^5.0.0" - argparse@^2.0.1: version "2.0.1" resolved "https://registry.yarnpkg.com/argparse/-/argparse-2.0.1.tgz#246f50f3ca78a3240f6c997e8a9bd1eac49e4b38" integrity sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q== -assert-plus@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-1.0.0.tgz#f12e0f3c5d77b0b1cdd9146942e4e96c1e4dd525" - integrity sha512-NfJ4UzBCcQGLDlQq7nHxH+tv3kyZ0hHQqF5BO6J7tNJeP5do1llPr8dZ8zHonfhAu0PHAdMkSo+8o0wxg9lZWw== - -astral-regex@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/astral-regex/-/astral-regex-2.0.0.tgz#483143c567aeed4785759c0865786dc77d7d2e31" - integrity sha512-Z7tMw1ytTXt5jqMcOP+OQteU1VuNK9Y02uuJtKQ1Sv69jXQKKg5cibLwGJow8yzZP+eAc18EmLGPal0bp36rvQ== - -async-exit-hook@^2.0.1: - version "2.0.1" - resolved "https://registry.yarnpkg.com/async-exit-hook/-/async-exit-hook-2.0.1.tgz#8bd8b024b0ec9b1c01cccb9af9db29bd717dfaf3" - integrity sha512-NW2cX8m1Q7KPA7a5M2ULQeZ2wR5qI5PAbw5L0UOMxdioVk9PMZ0h1TmyZEkPYrCvYjDlFICusOu1dlEKAAeXBw== - -async@^3.2.6: - version "3.2.6" - resolved "https://registry.yarnpkg.com/async/-/async-3.2.6.tgz#1b0728e14929d51b85b449b7f06e27c1145e38ce" - integrity sha512-htCUDlxyyCLMgaM3xXg0C0LW2xqfuQ6p05pCEIsXuyQ+a1koYKTuBMzRNwmybfLgvJDMd0r1LTn4+E0Ti6C2AA== - -asynckit@^0.4.0: - version "0.4.0" - resolved "https://registry.yarnpkg.com/asynckit/-/asynckit-0.4.0.tgz#c79ed97f7f34cb8f2ba1bc9790bcc366474b4b79" - integrity sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q== - -at-least-node@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/at-least-node/-/at-least-node-1.0.0.tgz#602cd4b46e844ad4effc92a8011a3c46e0238dc2" - integrity sha512-+q/t7Ekv1EDY2l6Gda6LLiX14rU9TV20Wa3ofeQmwPFZbOMo9DXrLbOjFaaclkXKWidIaopwAObQDqwWtGUjqg== - -balanced-match@^1.0.0: - version "1.0.2" - resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.2.tgz#e83e3a7e3f300b34cb9d87f615fa0cbf357690ee" - integrity sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw== - -balanced-match@^4.0.2: - version "4.0.4" - resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-4.0.4.tgz#bfb10662feed8196a2c62e7c68e17720c274179a" - integrity sha512-BLrgEcRTwX2o6gGxGOCNyMvGSp35YofuYzw9h1IMTRmKqttAZZVU67bdb9Pr2vUHA8+j3i2tJfjO6C6+4myGTA== - -base64-js@^1.3.1, base64-js@^1.5.1: - version "1.5.1" - resolved "https://registry.yarnpkg.com/base64-js/-/base64-js-1.5.1.tgz#1b1b440160a5bf7ad40b650f095963481903930a" - integrity sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA== - -bl@^4.1.0: - version "4.1.0" - resolved "https://registry.yarnpkg.com/bl/-/bl-4.1.0.tgz#451535264182bec2fbbc83a62ab98cf11d9f7b3a" - integrity sha512-1W07cM9gS6DcLperZfFSj+bWLtaPGSOHWhPiGzXmvVJbRLdG82sH/Kn8EtW1VqWVA54AKf2h5k5BbnIbwF3h6w== - dependencies: - buffer "^5.5.0" - inherits "^2.0.4" - readable-stream "^3.4.0" - boolean@^3.0.1: version "3.2.0" resolved "https://registry.yarnpkg.com/boolean/-/boolean-3.2.0.tgz#9e5294af4e98314494cbb17979fa54ca159f116b" integrity sha512-d0II/GO9uf9lfUHH2BQsjxzRJZBdsjgsBiW4BvhWk/3qoKwQFjIDVN19PfX8F2D/r9PCMTtLWjYVCFrpeYUzsw== -brace-expansion@^1.1.7: - version "1.1.12" - resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.12.tgz#ab9b454466e5a8cc3a187beaad580412a9c5b843" - integrity sha512-9T9UjW3r0UW5c1Q7GTwllptXwhvYmEzFhzMfZ9H7FQWt+uZePjZPjBP/W1ZEyZ1twGWom5/56TF4lPcqjnDHcg== - dependencies: - balanced-match "^1.0.0" - concat-map "0.0.1" - -brace-expansion@^2.0.1, brace-expansion@^2.0.2: - version "2.0.2" - resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-2.0.2.tgz#54fc53237a613d854c7bd37463aad17df87214e7" - integrity sha512-Jt0vHyM+jmUBqojB7E1NIYadt0vI0Qxjxd2TErW94wDz+E2LAm5vKMXXwg6ZZBTHPuUlDgQHKXvjGBdfcF1ZDQ== - dependencies: - balanced-match "^1.0.0" - -brace-expansion@^5.0.2: - version "5.0.4" - resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-5.0.4.tgz#614daaecd0a688f660bbbc909a8748c3d80d4336" - integrity sha512-h+DEnpVvxmfVefa4jFbCf5HdH5YMDXRsmKflpf1pILZWRFlTbJpxeU55nJl4Smt5HQaGzg1o6RHFPJaOqnmBDg== - dependencies: - balanced-match "^4.0.2" - -braces@^3.0.3: - version "3.0.3" - resolved "https://registry.yarnpkg.com/braces/-/braces-3.0.3.tgz#490332f40919452272d55a8480adc0c441358789" - integrity sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA== - dependencies: - fill-range "^7.1.1" - -buffer-crc32@0.2.1: - version "0.2.1" - resolved "https://registry.yarnpkg.com/buffer-crc32/-/buffer-crc32-0.2.1.tgz#be3e5382fc02b6d6324956ac1af98aa98b08534c" - integrity sha512-vMfBIRp/wjlpueSz7Sb0OmO7C5SH58SSmbsT8G4D48YfO/Zgbr29xNXMpZVSC14ujVJfrZZH1Bl+kXYRQPuvfQ== - buffer-crc32@~0.2.3: version "0.2.13" resolved "https://registry.yarnpkg.com/buffer-crc32/-/buffer-crc32-0.2.13.tgz#0d333e3f00eac50aa1454abd30ef8c2a5d9a7242" integrity sha512-VO9Ht/+p3SN7SKWqcrgEzjGbRSJYTx+Q1pTQC0wrWqHx0vpJraQ6GtHx8tvcg1rlK1byhU5gccxgOgj7B0TDkQ== -buffer-from@^1.0.0: - version "1.1.2" - resolved "https://registry.yarnpkg.com/buffer-from/-/buffer-from-1.1.2.tgz#2b146a6fd72e80b4f55d255f35ed59a3a9a41bd5" - integrity sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ== - -buffer@^5.1.0, buffer@^5.5.0: - version "5.7.1" - resolved "https://registry.yarnpkg.com/buffer/-/buffer-5.7.1.tgz#ba62e7c13133053582197160851a8f648e99eed0" - integrity sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ== - dependencies: - base64-js "^1.3.1" - ieee754 "^1.1.13" - builder-util-runtime@9.5.1: version "9.5.1" resolved "https://registry.yarnpkg.com/builder-util-runtime/-/builder-util-runtime-9.5.1.tgz#74125fb374d1ecbf472ae1787485485ff7619702" @@ -503,46 +102,6 @@ builder-util-runtime@9.5.1: debug "^4.3.4" sax "^1.2.4" -builder-util@26.8.1: - version "26.8.1" - resolved "https://registry.yarnpkg.com/builder-util/-/builder-util-26.8.1.tgz#50fdfc2d4ffeb6f739af363b5bd60c49c95d4170" - integrity sha512-pm1lTYbGyc90DHgCDO7eo8Rl4EqKLciayNbZqGziqnH9jrlKe8ZANGdityLZU+pJh16dfzjAx2xQq9McuIPEtw== - dependencies: - "7zip-bin" "~5.2.0" - "@types/debug" "^4.1.6" - app-builder-bin "5.0.0-alpha.12" - builder-util-runtime "9.5.1" - chalk "^4.1.2" - cross-spawn "^7.0.6" - debug "^4.3.4" - fs-extra "^10.1.0" - http-proxy-agent "^7.0.0" - https-proxy-agent "^7.0.0" - js-yaml "^4.1.0" - sanitize-filename "^1.6.3" - source-map-support "^0.5.19" - stat-mode "^1.0.0" - temp-file "^3.4.0" - tiny-async-pool "1.3.0" - -cacache@^19.0.1: - version "19.0.1" - resolved "https://registry.yarnpkg.com/cacache/-/cacache-19.0.1.tgz#3370cc28a758434c85c2585008bd5bdcff17d6cd" - integrity sha512-hdsUxulXCi5STId78vRVYEtDAjq99ICAUktLTeTYsLoTE6Z8dS0c8pWNCxwdrk9YfJeobDZc2Y186hD/5ZQgFQ== - dependencies: - "@npmcli/fs" "^4.0.0" - fs-minipass "^3.0.0" - glob "^10.2.2" - lru-cache "^10.0.1" - minipass "^7.0.3" - minipass-collect "^2.0.1" - minipass-flush "^1.0.5" - minipass-pipeline "^1.2.4" - p-map "^7.0.2" - ssri "^12.0.0" - tar "^7.4.3" - unique-filename "^4.0.0" - cacheable-lookup@^5.0.3: version "5.0.4" resolved "https://registry.yarnpkg.com/cacheable-lookup/-/cacheable-lookup-5.0.4.tgz#5a6b865b2c44357be3d5ebc2a467b032719a7005" @@ -561,94 +120,6 @@ cacheable-request@^7.0.2: normalize-url "^6.0.1" responselike "^2.0.0" -call-bind-apply-helpers@^1.0.0, call-bind-apply-helpers@^1.0.1, call-bind-apply-helpers@^1.0.2: - version "1.0.2" - resolved "https://registry.yarnpkg.com/call-bind-apply-helpers/-/call-bind-apply-helpers-1.0.2.tgz#4b5428c222be985d79c3d82657479dbe0b59b2d6" - integrity sha512-Sp1ablJ0ivDkSzjcaJdxEunN5/XvksFJ2sMBFfq6x0ryhQV/2b/KwFe21cMpmHtPOSij8K99/wSfoEuTObmuMQ== - dependencies: - es-errors "^1.3.0" - function-bind "^1.1.2" - -call-bind@^1.0.8: - version "1.0.8" - resolved "https://registry.yarnpkg.com/call-bind/-/call-bind-1.0.8.tgz#0736a9660f537e3388826f440d5ec45f744eaa4c" - integrity sha512-oKlSFMcMwpUg2ednkhQ454wfWiU/ul3CkJe/PEHcTKuiX6RpbehUiFMXu13HalGZxfUwCQzZG747YXBn1im9ww== - dependencies: - call-bind-apply-helpers "^1.0.0" - es-define-property "^1.0.0" - get-intrinsic "^1.2.4" - set-function-length "^1.2.2" - -call-bound@^1.0.4: - version "1.0.4" - resolved "https://registry.yarnpkg.com/call-bound/-/call-bound-1.0.4.tgz#238de935d2a2a692928c538c7ccfa91067fd062a" - integrity sha512-+ys997U96po4Kx/ABpBCqhA9EuxJaQWDQg7295H4hBphv3IZg0boBKuwYpt4YXp6MZ5AmZQnU/tyMTlRpaSejg== - dependencies: - call-bind-apply-helpers "^1.0.2" - get-intrinsic "^1.3.0" - -chalk@^4.1.0, chalk@^4.1.1, chalk@^4.1.2: - version "4.1.2" - resolved "https://registry.yarnpkg.com/chalk/-/chalk-4.1.2.tgz#aac4e2b7734a740867aeb16bf02aad556a1e7a01" - integrity sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA== - dependencies: - ansi-styles "^4.1.0" - supports-color "^7.1.0" - -chownr@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/chownr/-/chownr-3.0.0.tgz#9855e64ecd240a9cc4267ce8a4aa5d24a1da15e4" - integrity sha512-+IxzY9BZOQd/XuYPRmrvEVjF/nqj5kgT4kEq7VofrDoM1MxoRjEWkrCC3EtLi59TVawxTAn+orJwFQcrqEN1+g== - -chromium-pickle-js@^0.2.0: - version "0.2.0" - resolved "https://registry.yarnpkg.com/chromium-pickle-js/-/chromium-pickle-js-0.2.0.tgz#04a106672c18b085ab774d983dfa3ea138f22205" - integrity sha512-1R5Fho+jBq0DDydt+/vHWj5KJNJCKdARKOCwZUen84I5BreWoLqRLANH1U87eJy1tiASPtMnGqJJq0ZsLoRPOw== - -ci-info@4.3.1: - version "4.3.1" - resolved "https://registry.yarnpkg.com/ci-info/-/ci-info-4.3.1.tgz#355ad571920810b5623e11d40232f443f16f1daa" - integrity sha512-Wdy2Igu8OcBpI2pZePZ5oWjPC38tmDVx5WKUXKwlLYkA0ozo85sLsLvkBbBn/sZaSCMFOGZJ14fvW9t5/d7kdA== - -ci-info@^3.7.0: - version "3.9.0" - resolved "https://registry.yarnpkg.com/ci-info/-/ci-info-3.9.0.tgz#4279a62028a7b1f262f3473fc9605f5e218c59b4" - integrity sha512-NIxF55hv4nSqQswkAeiOi1r83xy8JldOFDTWiug55KBu9Jnblncd2U6ViHmYgHf01TPZS77NJBhBMKdWj9HQMQ== - -ci-info@^4.2.0: - version "4.4.0" - resolved "https://registry.yarnpkg.com/ci-info/-/ci-info-4.4.0.tgz#7d54eff9f54b45b62401c26032696eb59c8bd18c" - integrity sha512-77PSwercCZU2Fc4sX94eF8k8Pxte6JAwL4/ICZLFjJLqegs7kCuAsqqj/70NQF6TvDpgFjkubQB2FW2ZZddvQg== - -cli-cursor@^3.1.0: - version "3.1.0" - resolved "https://registry.yarnpkg.com/cli-cursor/-/cli-cursor-3.1.0.tgz#264305a7ae490d1d03bf0c9ba7c925d1753af307" - integrity sha512-I/zHAwsKf9FqGoXM4WWRACob9+SNukZTd94DWF57E4toouRulbCxcUh6RKUEOQlYTHJnzkPMySvPNaaSLNfLZw== - dependencies: - restore-cursor "^3.1.0" - -cli-spinners@^2.5.0: - version "2.9.2" - resolved "https://registry.yarnpkg.com/cli-spinners/-/cli-spinners-2.9.2.tgz#1773a8f4b9c4d6ac31563df53b3fc1d79462fe41" - integrity sha512-ywqV+5MmyL4E7ybXgKys4DugZbX0FC6LnwrhjuykIjnK9k8OQacQ7axGKnjDXWNhns0xot3bZI5h55H8yo9cJg== - -cli-truncate@^2.1.0: - version "2.1.0" - resolved "https://registry.yarnpkg.com/cli-truncate/-/cli-truncate-2.1.0.tgz#c39e28bf05edcde5be3b98992a22deed5a2b93c7" - integrity sha512-n8fOixwDD6b/ObinzTrp1ZKFzbgvKZvuz/TvejnLn1aQfC6r52XEx85FmuC+3HI+JM7coBRXUvNqEU2PHVrHpg== - dependencies: - slice-ansi "^3.0.0" - string-width "^4.2.0" - -cliui@^8.0.1: - version "8.0.1" - resolved "https://registry.yarnpkg.com/cliui/-/cliui-8.0.1.tgz#0c04b075db02cbfe60dc8e6cf2f5486b1a3608aa" - integrity sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ== - dependencies: - string-width "^4.2.0" - strip-ansi "^6.0.1" - wrap-ansi "^7.0.0" - clone-response@^1.0.2: version "1.0.3" resolved "https://registry.yarnpkg.com/clone-response/-/clone-response-1.0.3.tgz#af2032aa47816399cf5f0a1d0db902f517abb8c3" @@ -656,88 +127,13 @@ clone-response@^1.0.2: dependencies: mimic-response "^1.0.0" -clone@^1.0.2: - version "1.0.4" - resolved "https://registry.yarnpkg.com/clone/-/clone-1.0.4.tgz#da309cc263df15994c688ca902179ca3c7cd7c7e" - integrity sha512-JQHZ2QMW6l3aH/j6xCqQThY/9OH4D/9ls34cgkUBiEeocRTU04tHfKPBsUK1PqZCUQM7GiA0IIXJSuXHI64Kbg== - -color-convert@^2.0.1: - version "2.0.1" - resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-2.0.1.tgz#72d3a68d598c9bdb3af2ad1e84f21d896abd4de3" - integrity sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ== - dependencies: - color-name "~1.1.4" - -color-name@~1.1.4: - version "1.1.4" - resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.4.tgz#c2a09a87acbde69543de6f63fa3995c826c536a2" - integrity sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA== - -combined-stream@^1.0.8: - version "1.0.8" - resolved "https://registry.yarnpkg.com/combined-stream/-/combined-stream-1.0.8.tgz#c3d45a8b34fd730631a110a8a2520682b31d5a7f" - integrity sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg== - dependencies: - delayed-stream "~1.0.0" - -commander@^5.0.0: - version "5.1.0" - resolved "https://registry.yarnpkg.com/commander/-/commander-5.1.0.tgz#46abbd1652f8e059bddaef99bbdcb2ad9cf179ae" - integrity sha512-P0CysNDQ7rtVw4QIQtm+MRxV66vKFSvlsQvGYXZWR3qFU0jlMKHZZZgw8e+8DSah4UDKMqnknRDQz+xuQXQ/Zg== - -compare-version@^0.1.2: - version "0.1.2" - resolved "https://registry.yarnpkg.com/compare-version/-/compare-version-0.1.2.tgz#0162ec2d9351f5ddd59a9202cba935366a725080" - integrity sha512-pJDh5/4wrEnXX/VWRZvruAGHkzKdr46z11OlTPN+VrATlWWhSKewNCJ1futCO5C7eJB3nPMFZA1LeYtcFboZ2A== - -concat-map@0.0.1: - version "0.0.1" - resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" - integrity sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg== - -cookie-signature@1.0.3: - version "1.0.3" - resolved "https://registry.yarnpkg.com/cookie-signature/-/cookie-signature-1.0.3.tgz#91cd997cc51fb641595738c69cda020328f50ff9" - integrity sha512-/KzKzsm0OlguYov01OlOpTkX5MhBKUmfL/KMum7R80rPKheb9AwUzr78TwtBt1OdbnWrt4X+wxbTfcQ3noZqHw== - -cookie@0.1.0: - version "0.1.0" - resolved "https://registry.yarnpkg.com/cookie/-/cookie-0.1.0.tgz#90eb469ddce905c866de687efc43131d8801f9d0" - integrity sha512-YSNOBX085/nzHvrTLEHYHoNdkvpLU1MPjU3r1IGawudZJjfuqnRNIFrcOJJ7bfwC+HWbHL1Y4yMkC0O+HWjV7w== - -core-util-is@1.0.2: - version "1.0.2" - resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.2.tgz#b5fd54220aa2bc5ab57aab7140c940754503c1a7" - integrity sha512-3lqz5YjWTYnW6dlDa5TLaTCcShfar1e40rmcJVwCBJC6mWlFuj0eCHIElmG1g5kyuJ/GD+8Wn4FFCcz4gJPfaQ== - -crc@^3.8.0: - version "3.8.0" - resolved "https://registry.yarnpkg.com/crc/-/crc-3.8.0.tgz#ad60269c2c856f8c299e2c4cc0de4556914056c6" - integrity sha512-iX3mfgcTMIq3ZKLIsVFAbv7+Mc10kxabAGQb8HvjA1o3T1PIYprbakQ65d3I+2HGHt6nSKkM9PYjgoJO2KcFBQ== - dependencies: - buffer "^5.1.0" - -cross-spawn@^7.0.1, cross-spawn@^7.0.3, cross-spawn@^7.0.6: - version "7.0.6" - resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-7.0.6.tgz#8a58fe78f00dcd70c370451759dfbfaf03e8ee9f" - integrity sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA== - dependencies: - path-key "^3.1.0" - shebang-command "^2.0.0" - which "^2.0.1" - -debug@*, debug@4, debug@^4.1.0, debug@^4.1.1, debug@^4.3.1, debug@^4.3.4: +debug@^4.1.0, debug@^4.1.1, debug@^4.3.4: version "4.4.3" resolved "https://registry.yarnpkg.com/debug/-/debug-4.4.3.tgz#c6ae432d9bd9662582fce08709b038c58e9e3d6a" integrity sha512-RGwwWnwQvkVfavKVt22FGLw+xYSdzARwm0ru6DhTVA3umU5hZc28V3kO4stgYryrTlLpuvgI9GiijltAjNbcqA== dependencies: ms "^2.1.3" -"debug@>= 0.7.3 < 1": - version "0.8.1" - resolved "https://registry.yarnpkg.com/debug/-/debug-0.8.1.tgz#20ff4d26f5e422cb68a1bacbbb61039ad8c1c130" - integrity sha512-HlXEJm99YsRjLJ8xmuz0Lq8YUwrv7hAJkTEr6/Em3sUlSUNl0UdFA+1SrY4fnykeq1FVkUEUtwRGHs9VvlYbGA== - decompress-response@^6.0.0: version "6.0.0" resolved "https://registry.yarnpkg.com/decompress-response/-/decompress-response-6.0.0.tgz#ca387612ddb7e104bd16d85aab00d5ecf09c66fc" @@ -745,19 +141,12 @@ decompress-response@^6.0.0: dependencies: mimic-response "^3.1.0" -defaults@^1.0.3: - version "1.0.4" - resolved "https://registry.yarnpkg.com/defaults/-/defaults-1.0.4.tgz#b0b02062c1e2aa62ff5d9528f0f98baa90978d7a" - integrity sha512-eFuaLoy/Rxalv2kr+lqMlUnrDWV+3j4pljOIJgLIhI058IQfWJ7vXhyEIHu+HtC738klGALYxOKDO0bQP3tg8A== - dependencies: - clone "^1.0.2" - defer-to-connect@^2.0.0: version "2.0.1" resolved "https://registry.yarnpkg.com/defer-to-connect/-/defer-to-connect-2.0.1.tgz#8016bdb4143e4632b77a3449c6236277de520587" integrity sha512-4tvttepXG1VaYGrRibk5EwJd1t4udunSOVMdLSAL6mId1ix438oPwPZMALY41FCijukO1L0twNcGsdzS7dHgDg== -define-data-property@^1.0.1, define-data-property@^1.1.4: +define-data-property@^1.0.1: version "1.1.4" resolved "https://registry.yarnpkg.com/define-data-property/-/define-data-property-1.1.4.tgz#894dc141bb7d3060ae4366f6a0107e68fbe48c5e" integrity sha512-rBMvIzlpA8v6E+SJZoo++HAYqsLrkg7MSfIinMPFhmkorw7X+dOXVJQs+QT69zGkzMyfDnIMN2Wid1+NbL3T+A== @@ -775,119 +164,11 @@ define-properties@^1.2.1: has-property-descriptors "^1.0.0" object-keys "^1.1.1" -delayed-stream@~1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/delayed-stream/-/delayed-stream-1.0.0.tgz#df3ae199acadfb7d440aaae0b29e2272b24ec619" - integrity sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ== - -detect-libc@^2.0.1: - version "2.1.2" - resolved "https://registry.yarnpkg.com/detect-libc/-/detect-libc-2.1.2.tgz#689c5dcdc1900ef5583a4cb9f6d7b473742074ad" - integrity sha512-Btj2BOOO83o3WyH59e8MgXsxEQVcarkUOpEYrubB0urwnN10yQ364rsiByU11nZlqWYZm05i/of7io4mzihBtQ== - detect-node@^2.0.4: version "2.1.0" resolved "https://registry.yarnpkg.com/detect-node/-/detect-node-2.1.0.tgz#c9c70775a49c3d03bc2c06d9a73be550f978f8b1" integrity sha512-T0NIuQpnTvFDATNuHN5roPwSBG83rFsuO+MXXH9/3N1eFbn4wcPjttvjMLEPWJ0RGUYgQE7cGgS3tNxbqCGM7g== -dir-compare@^4.2.0: - version "4.2.0" - resolved "https://registry.yarnpkg.com/dir-compare/-/dir-compare-4.2.0.tgz#d1d4999c14fbf55281071fdae4293b3b9ce86f19" - integrity sha512-2xMCmOoMrdQIPHdsTawECdNPwlVFB9zGcz3kuhmBO6U3oU+UQjsue0i8ayLKpgBcm+hcXPMVSGUN9d+pvJ6+VQ== - dependencies: - minimatch "^3.0.5" - p-limit "^3.1.0 " - -dmg-builder@26.8.1: - version "26.8.1" - resolved "https://registry.yarnpkg.com/dmg-builder/-/dmg-builder-26.8.1.tgz#df99aa790676ac2a2ac0333bbadbef3b6076cb03" - integrity sha512-glMJgnTreo8CFINujtAhCgN96QAqApDMZ8Vl1r8f0QT8QprvC1UCltV4CcWj20YoIyLZx6IUskaJZ0NV8fokcg== - dependencies: - app-builder-lib "26.8.1" - builder-util "26.8.1" - fs-extra "^10.1.0" - iconv-lite "^0.6.2" - js-yaml "^4.1.0" - optionalDependencies: - dmg-license "^1.0.11" - -dmg-license@^1.0.11: - version "1.0.11" - resolved "https://registry.yarnpkg.com/dmg-license/-/dmg-license-1.0.11.tgz#7b3bc3745d1b52be7506b4ee80cb61df6e4cd79a" - integrity sha512-ZdzmqwKmECOWJpqefloC5OJy1+WZBBse5+MR88z9g9Zn4VY+WYUkAyojmhzJckH5YbbZGcYIuGAkY5/Ys5OM2Q== - dependencies: - "@types/plist" "^3.0.1" - "@types/verror" "^1.10.3" - ajv "^6.10.0" - crc "^3.8.0" - iconv-corefoundation "^1.1.7" - plist "^3.0.4" - smart-buffer "^4.0.2" - verror "^1.10.0" - -dotenv-expand@^11.0.6: - version "11.0.7" - resolved "https://registry.yarnpkg.com/dotenv-expand/-/dotenv-expand-11.0.7.tgz#af695aea007d6fdc84c86cd8d0ad7beb40a0bd08" - integrity sha512-zIHwmZPRshsCdpMDyVsqGmgyP0yT8GAgXUnkdAoJisxvf33k7yO6OuoKmcTGuXPWSsm8Oh88nZicRLA9Y0rUeA== - dependencies: - dotenv "^16.4.5" - -dotenv@^16.4.5: - version "16.6.1" - resolved "https://registry.yarnpkg.com/dotenv/-/dotenv-16.6.1.tgz#773f0e69527a8315c7285d5ee73c4459d20a8020" - integrity sha512-uBq4egWHTcTt33a72vpSG0z3HnPuIl6NqYcTrKEg2azoEyl2hpW0zqlxysq2pK9HlDIHyHyakeYaYnSAwd8bow== - -dunder-proto@^1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/dunder-proto/-/dunder-proto-1.0.1.tgz#d7ae667e1dc83482f8b70fd0f6eefc50da30f58a" - integrity sha512-KIN/nDJBQRcXw0MLVhZE9iQHmG68qAVIBg9CqmUYjmQIhgij9U5MFvrqkUL5FbtyyzZuOeOt0zdeRe4UY7ct+A== - dependencies: - call-bind-apply-helpers "^1.0.1" - es-errors "^1.3.0" - gopd "^1.2.0" - -eastasianwidth@^0.2.0: - version "0.2.0" - resolved "https://registry.yarnpkg.com/eastasianwidth/-/eastasianwidth-0.2.0.tgz#696ce2ec0aa0e6ea93a397ffcf24aa7840c827cb" - integrity sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA== - -ejs@^3.1.8: - version "3.1.10" - resolved "https://registry.yarnpkg.com/ejs/-/ejs-3.1.10.tgz#69ab8358b14e896f80cc39e62087b88500c3ac3b" - integrity sha512-UeJmFfOrAQS8OJWPZ4qtgHyWExa088/MtK5UEyoJGFH67cDEXkZSviOiKRCZ4Xij0zxI3JECgYs3oKx+AizQBA== - dependencies: - jake "^10.8.5" - -electron-builder@26.8.1: - version "26.8.1" - resolved "https://registry.yarnpkg.com/electron-builder/-/electron-builder-26.8.1.tgz#d49056b2fe5d37f0f94aa2eb0e1db38f261fc8c0" - integrity sha512-uWhx1r74NGpCagG0ULs/P9Nqv2nsoo+7eo4fLUOB8L8MdWltq9odW/uuLXMFCDGnPafknYLZgjNX0ZIFRzOQAw== - dependencies: - app-builder-lib "26.8.1" - builder-util "26.8.1" - builder-util-runtime "9.5.1" - chalk "^4.1.2" - ci-info "^4.2.0" - dmg-builder "26.8.1" - fs-extra "^10.1.0" - lazy-val "^1.0.5" - simple-update-notifier "2.0.0" - yargs "^17.6.2" - -electron-publish@26.8.1: - version "26.8.1" - resolved "https://registry.yarnpkg.com/electron-publish/-/electron-publish-26.8.1.tgz#6a32fa8eed0d41971dda53072bea06b9932be583" - integrity sha512-q+jrSTIh/Cv4eGZa7oVR+grEJo/FoLMYBAnSL5GCtqwUpr1T+VgKB/dn1pnzxIxqD8S/jP1yilT9VrwCqINR4w== - dependencies: - "@types/fs-extra" "^9.0.11" - builder-util "26.8.1" - builder-util-runtime "9.5.1" - chalk "^4.1.2" - form-data "^4.0.5" - fs-extra "^10.1.0" - lazy-val "^1.0.5" - mime "^2.5.2" - electron-updater@6.8.3: version "6.8.3" resolved "https://registry.yarnpkg.com/electron-updater/-/electron-updater-6.8.3.tgz#bb0c8ef6509e5c67663f6481a729244d1bce21fb" @@ -902,32 +183,15 @@ electron-updater@6.8.3: semver "~7.7.3" tiny-typed-emitter "^2.1.0" -electron@23.2.0: - version "23.2.0" - resolved "https://registry.yarnpkg.com/electron/-/electron-23.2.0.tgz#1c60fec08206e24830f3a8dca2772454c8bc25ba" - integrity sha512-De9e21cri0QYct/w6tTNOnKyCt9RVKUw5F8PEN4FPzGR9tr6IT53uyt42uH754uJWrZeLMCAdoXy6/0GmMmYZA== +electron@35.7.5: + version "35.7.5" + resolved "https://registry.yarnpkg.com/electron/-/electron-35.7.5.tgz#294a4aebb2ad2a884de730c410f2358d061e8d53" + integrity sha512-dnL+JvLraKZl7iusXTVTGYs10TKfzUi30uEDTqsmTm0guN9V2tbOjTzyIZbh9n3ygUjgEYyo+igAwMRXIi3IPw== dependencies: "@electron/get" "^2.0.0" - "@types/node" "^16.11.26" + "@types/node" "^22.7.7" extract-zip "^2.0.1" -emoji-regex@^8.0.0: - version "8.0.0" - resolved "https://registry.yarnpkg.com/emoji-regex/-/emoji-regex-8.0.0.tgz#e818fd69ce5ccfcb404594f842963bf53164cc37" - integrity sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A== - -emoji-regex@^9.2.2: - version "9.2.2" - resolved "https://registry.yarnpkg.com/emoji-regex/-/emoji-regex-9.2.2.tgz#840c8803b0d8047f4ff0cf963176b32d4ef3ed72" - integrity sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg== - -encoding@^0.1.13: - version "0.1.13" - resolved "https://registry.yarnpkg.com/encoding/-/encoding-0.1.13.tgz#56574afdd791f54a8e9b2785c0582a2d26210fa9" - integrity sha512-ETBauow1T35Y/WZMkio9jiM0Z5xjHHmJ4XmjZOq1l/dXz3lr2sRn87nJy20RupqSh1F2m3HHPSp8ShIPQJrJ3A== - dependencies: - iconv-lite "^0.6.2" - end-of-stream@^1.1.0: version "1.4.5" resolved "https://registry.yarnpkg.com/end-of-stream/-/end-of-stream-1.4.5.tgz#7344d711dea40e0b74abc2ed49778743ccedb08c" @@ -940,12 +204,7 @@ env-paths@^2.2.0: resolved "https://registry.yarnpkg.com/env-paths/-/env-paths-2.2.1.tgz#420399d416ce1fbe9bc0a07c62fa68d67fd0f8f2" integrity sha512-+h1lkLKhZMTYjog1VEpJNG7NZJWcuc2DDk/qsqSTRRCOXiLjeQ1d1/udrUGhqMxUgAlwKNZ0cf2uqan5GLuS2A== -err-code@^2.0.2: - version "2.0.3" - resolved "https://registry.yarnpkg.com/err-code/-/err-code-2.0.3.tgz#23c2f3b756ffdfc608d30e27c9a941024807e7f9" - integrity sha512-2bmlRpNKBxT/CRmPOlyISQpNj+qSeYvcym/uT0Jx2bMOlKLtSy1ZmLuVxSEKKyor/N5yhvp/ZiG1oE3DEYMSFA== - -es-define-property@^1.0.0, es-define-property@^1.0.1: +es-define-property@^1.0.0: version "1.0.1" resolved "https://registry.yarnpkg.com/es-define-property/-/es-define-property-1.0.1.tgz#983eb2f9a6724e9303f61addf011c72e09e0b0fa" integrity sha512-e3nRfgfUZ4rNGL232gUgX06QNyyez04KdjFrF+LTRoOXmrOgFKDg4BCdsjW8EnT69eqdYGmRpJwiPVYNrCaW3g== @@ -955,71 +214,16 @@ es-errors@^1.3.0: resolved "https://registry.yarnpkg.com/es-errors/-/es-errors-1.3.0.tgz#05f75a25dab98e4fb1dcd5e1472c0546d5057c8f" integrity sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw== -es-object-atoms@^1.0.0, es-object-atoms@^1.1.1: - version "1.1.1" - resolved "https://registry.yarnpkg.com/es-object-atoms/-/es-object-atoms-1.1.1.tgz#1c4f2c4837327597ce69d2ca190a7fdd172338c1" - integrity sha512-FGgH2h8zKNim9ljj7dankFPcICIK9Cp5bm+c2gQSYePhpaG5+esrLODihIorn+Pe6FGJzWhXQotPv73jTaldXA== - dependencies: - es-errors "^1.3.0" - -es-set-tostringtag@^2.1.0: - version "2.1.0" - resolved "https://registry.yarnpkg.com/es-set-tostringtag/-/es-set-tostringtag-2.1.0.tgz#f31dbbe0c183b00a6d26eb6325c810c0fd18bd4d" - integrity sha512-j6vWzfrGVfyXxge+O0x5sh6cvxAog0a/4Rdd2K36zCMV5eJ+/+tOAngRO8cODMNWbVRdVlmGZQL2YS3yR8bIUA== - dependencies: - es-errors "^1.3.0" - get-intrinsic "^1.2.6" - has-tostringtag "^1.0.2" - hasown "^2.0.2" - es6-error@^4.1.1: version "4.1.1" resolved "https://registry.yarnpkg.com/es6-error/-/es6-error-4.1.1.tgz#9e3af407459deed47e9a91f9b885a84eb05c561d" integrity sha512-Um/+FxMr9CISWh0bi5Zv0iOD+4cFh5qLeks1qhAopKVAJw3drgKbKySikp7wGhDL0HPeaja0P5ULZrxLkniUVg== -escalade@^3.1.1: - version "3.2.0" - resolved "https://registry.yarnpkg.com/escalade/-/escalade-3.2.0.tgz#011a3f69856ba189dffa7dc8fcce99d2a87903e5" - integrity sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA== - -escape-html@1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/escape-html/-/escape-html-1.0.1.tgz#181a286ead397a39a92857cfb1d43052e356bff0" - integrity sha512-z6kAnok8fqVTra7Yu77dZF2Y6ETJlxH58wN38wNyuNQLm8xXdKnfNrlSmfXsTePWP03rRVUKHubtUwanwUi7+g== - escape-string-regexp@^4.0.0: version "4.0.0" resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz#14ba83a5d373e3d311e5afca29cf5bfad965bf34" integrity sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA== -exponential-backoff@^3.1.1: - version "3.1.3" - resolved "https://registry.yarnpkg.com/exponential-backoff/-/exponential-backoff-3.1.3.tgz#51cf92c1c0493c766053f9d3abee4434c244d2f6" - integrity sha512-ZgEeZXj30q+I0EN+CbSSpIyPaJ5HVQD18Z1m+u1FXbAeT94mr1zw50q4q6jiiC447Nl/YTcIYSAftiGqetwXCA== - -express@4.0.0: - version "4.0.0" - resolved "https://registry.yarnpkg.com/express/-/express-4.0.0.tgz#274dc82933c9f574cc38a0ce5ea8172be9c6b094" - integrity sha512-HP2D9TkAYTAfau6FklzmchQQH/7Dh/JmbrbiJanV80rO12Kc00z5tDrqahBG3fR6x/RuUZvpEwiQ91b7UhJ8qQ== - dependencies: - accepts "1.0.0" - buffer-crc32 "0.2.1" - cookie "0.1.0" - cookie-signature "1.0.3" - debug ">= 0.7.3 < 1" - escape-html "1.0.1" - fresh "0.2.2" - merge-descriptors "0.0.2" - methods "0.1.0" - parseurl "1.0.1" - path-to-regexp "0.1.2" - qs "0.6.6" - range-parser "1.0.0" - send "0.2.0" - serve-static "1.0.1" - type-is "1.0.0" - utils-merge "1.0.0" - extract-zip@^2.0.1: version "2.0.1" resolved "https://registry.yarnpkg.com/extract-zip/-/extract-zip-2.0.1.tgz#663dca56fe46df890d5f131ef4a06d22bb8ba13a" @@ -1031,21 +235,6 @@ extract-zip@^2.0.1: optionalDependencies: "@types/yauzl" "^2.9.1" -extsprintf@^1.2.0: - version "1.4.1" - resolved "https://registry.yarnpkg.com/extsprintf/-/extsprintf-1.4.1.tgz#8d172c064867f235c0c84a596806d279bf4bcc07" - integrity sha512-Wrk35e8ydCKDj/ArClo1VrPVmN8zph5V4AtHwIuHhvMXsKf73UT3BOD+azBIW+3wOJ4FhEH7zyaJCFvChjYvMA== - -fast-deep-equal@^3.1.1: - version "3.1.3" - resolved "https://registry.yarnpkg.com/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz#3a7d56b559d6cbc3eb512325244e619a65c6c525" - integrity sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q== - -fast-json-stable-stringify@^2.0.0: - version "2.1.0" - resolved "https://registry.yarnpkg.com/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz#874bf69c6f404c2b5d99c481341399fd55892633" - integrity sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw== - fd-slicer@~1.1.0: version "1.1.0" resolved "https://registry.yarnpkg.com/fd-slicer/-/fd-slicer-1.1.0.tgz#25c7c89cb1f9077f8891bbe61d8f390eae256f1e" @@ -1053,66 +242,6 @@ fd-slicer@~1.1.0: dependencies: pend "~1.2.0" -fdir@^6.5.0: - version "6.5.0" - resolved "https://registry.yarnpkg.com/fdir/-/fdir-6.5.0.tgz#ed2ab967a331ade62f18d077dae192684d50d350" - integrity sha512-tIbYtZbucOs0BRGqPJkshJUYdL+SDH7dVM8gjy+ERp3WAUjLEFJE+02kanyHtwjWOnwrKYBiwAmM0p4kLJAnXg== - -filelist@^1.0.4: - version "1.0.6" - resolved "https://registry.yarnpkg.com/filelist/-/filelist-1.0.6.tgz#1e8870942a7c636c862f7c49b9394937b6a995a3" - integrity sha512-5giy2PkLYY1cP39p17Ech+2xlpTRL9HLspOfEgm0L6CwBXBTgsK5ou0JtzYuepxkaQ/tvhCFIJ5uXo0OrM2DxA== - dependencies: - minimatch "^5.0.1" - -fill-range@^7.1.1: - version "7.1.1" - resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-7.1.1.tgz#44265d3cac07e3ea7dc247516380643754a05292" - integrity sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg== - dependencies: - to-regex-range "^5.0.1" - -find-yarn-workspace-root@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/find-yarn-workspace-root/-/find-yarn-workspace-root-2.0.0.tgz#f47fb8d239c900eb78179aa81b66673eac88f7bd" - integrity sha512-1IMnbjt4KzsQfnhnzNd8wUEgXZ44IzZaZmnLYx7D5FZlaHt2gW20Cri8Q+E/t5tIj4+epTBub+2Zxu/vNILzqQ== - dependencies: - micromatch "^4.0.2" - -foreground-child@^3.1.0: - version "3.3.1" - resolved "https://registry.yarnpkg.com/foreground-child/-/foreground-child-3.3.1.tgz#32e8e9ed1b68a3497befb9ac2b6adf92a638576f" - integrity sha512-gIXjKqtFuWEgzFRJA9WCQeSJLZDjgJUOMCMzxtvFq/37KojM1BFGufqsCy0r4qSQmYLsZYMeyRqzIWOMup03sw== - dependencies: - cross-spawn "^7.0.6" - signal-exit "^4.0.1" - -form-data@^4.0.5: - version "4.0.5" - resolved "https://registry.yarnpkg.com/form-data/-/form-data-4.0.5.tgz#b49e48858045ff4cbf6b03e1805cebcad3679053" - integrity sha512-8RipRLol37bNs2bhoV67fiTEvdTrbMUYcFTiy3+wuuOnUog2QBHCZWXDRijWQfAkhBj2Uf5UnVaiWwA5vdd82w== - dependencies: - asynckit "^0.4.0" - combined-stream "^1.0.8" - es-set-tostringtag "^2.1.0" - hasown "^2.0.2" - mime-types "^2.1.12" - -fresh@0.2.0: - version "0.2.0" - resolved "https://registry.yarnpkg.com/fresh/-/fresh-0.2.0.tgz#bfd9402cf3df12c4a4c310c79f99a3dde13d34a7" - integrity sha512-ckGdAuSRr1wBmnq7CsW7eU37DBwQxHx3vW8foJUIrF56rkOy8Osm6Fe8KSwemwyKejivKki7jVBgpBpBJexmrw== - -fresh@0.2.2: - version "0.2.2" - resolved "https://registry.yarnpkg.com/fresh/-/fresh-0.2.2.tgz#9731dcf5678c7faeb44fb903c4f72df55187fa77" - integrity sha512-ZGGi8GROK//ijm2gB33sUuN9TjN1tC/dvG4Bt4j6IWrVGpMmudUBCxx+Ir7qePsdREfkpQC4FL8W0jeSOsgv1w== - -fresh@~0.2.1: - version "0.2.4" - resolved "https://registry.yarnpkg.com/fresh/-/fresh-0.2.4.tgz#3582499206c9723714190edd74b4604feb4a614c" - integrity sha512-mnBGgIFRNu54GtbkXy6+QKPYW/b5joAURorA8ELeJc/5BBNph6Go1NmHa9dt08ghFnhGuLenrUmNO8Za1CwEUQ== - fs-extra@11.0.0: version "11.0.0" resolved "https://registry.yarnpkg.com/fs-extra/-/fs-extra-11.0.0.tgz#5c50cf225ab1b16804cabd4249b7e58feb4bdbe7" @@ -1122,7 +251,7 @@ fs-extra@11.0.0: jsonfile "^6.0.1" universalify "^2.0.0" -fs-extra@^10.0.0, fs-extra@^10.1.0: +fs-extra@^10.1.0: version "10.1.0" resolved "https://registry.yarnpkg.com/fs-extra/-/fs-extra-10.1.0.tgz#02873cfbc4084dde127eaa5f9905eef2325d1abf" integrity sha512-oRXApq54ETRj4eMiFzGnHWGy+zo5raudjuxN0b8H7s/RU2oW0Wvsx9O0ACRN/kRq9E8Vu/ReskGB5o3ji+FzHQ== @@ -1131,15 +260,6 @@ fs-extra@^10.0.0, fs-extra@^10.1.0: jsonfile "^6.0.1" universalify "^2.0.0" -fs-extra@^11.1.1: - version "11.3.3" - resolved "https://registry.yarnpkg.com/fs-extra/-/fs-extra-11.3.3.tgz#a27da23b72524e81ac6c3815cc0179b8c74c59ee" - integrity sha512-VWSRii4t0AFm6ixFFmLLx1t7wS1gh+ckoa84aOeapGum0h+EZd1EhEumSB+ZdDLnEPuucsVB9oB7cxJHap6Afg== - dependencies: - graceful-fs "^4.2.0" - jsonfile "^6.0.1" - universalify "^2.0.0" - fs-extra@^8.1.0: version "8.1.0" resolved "https://registry.yarnpkg.com/fs-extra/-/fs-extra-8.1.0.tgz#49d43c45a88cd9677668cb7be1b46efdb8d2e1c0" @@ -1149,62 +269,6 @@ fs-extra@^8.1.0: jsonfile "^4.0.0" universalify "^0.1.0" -fs-extra@^9.0.0, fs-extra@^9.0.1: - version "9.1.0" - resolved "https://registry.yarnpkg.com/fs-extra/-/fs-extra-9.1.0.tgz#5954460c764a8da2094ba3554bf839e6b9a7c86d" - integrity sha512-hcg3ZmepS30/7BSFqRvoo3DOMQu7IjqxO5nCDt+zM9XWjb33Wg7ziNT+Qvqbuc3+gWpzO02JubVyk2G4Zvo1OQ== - dependencies: - at-least-node "^1.0.0" - graceful-fs "^4.2.0" - jsonfile "^6.0.1" - universalify "^2.0.0" - -fs-minipass@^3.0.0: - version "3.0.3" - resolved "https://registry.yarnpkg.com/fs-minipass/-/fs-minipass-3.0.3.tgz#79a85981c4dc120065e96f62086bf6f9dc26cc54" - integrity sha512-XUBA9XClHbnJWSfBzjkm6RvPsyg3sryZt06BEQoXcF7EK/xpGaQYJgQKDJSUH5SGZ76Y7pFx1QBnXz09rU5Fbw== - dependencies: - minipass "^7.0.3" - -fs.realpath@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" - integrity sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw== - -function-bind@^1.1.2: - version "1.1.2" - resolved "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.2.tgz#2c02d864d97f3ea6c8830c464cbd11ab6eab7a1c" - integrity sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA== - -get-caller-file@^2.0.5: - version "2.0.5" - resolved "https://registry.yarnpkg.com/get-caller-file/-/get-caller-file-2.0.5.tgz#4f94412a82db32f36e3b0b9741f8a97feb031f7e" - integrity sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg== - -get-intrinsic@^1.2.4, get-intrinsic@^1.2.6, get-intrinsic@^1.3.0: - version "1.3.0" - resolved "https://registry.yarnpkg.com/get-intrinsic/-/get-intrinsic-1.3.0.tgz#743f0e3b6964a93a5491ed1bffaae054d7f98d01" - integrity sha512-9fSjSaos/fRIVIp+xSJlE6lfwhES7LNtKaCBIamHsjr2na1BiABJPo0mOjjz8GJDURarmCPGqaiVg5mfjb98CQ== - dependencies: - call-bind-apply-helpers "^1.0.2" - es-define-property "^1.0.1" - es-errors "^1.3.0" - es-object-atoms "^1.1.1" - function-bind "^1.1.2" - get-proto "^1.0.1" - gopd "^1.2.0" - has-symbols "^1.1.0" - hasown "^2.0.2" - math-intrinsics "^1.1.0" - -get-proto@^1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/get-proto/-/get-proto-1.0.1.tgz#150b3f2743869ef3e851ec0c49d15b1d14d00ee1" - integrity sha512-sTSfBjoXBp89JvIKIefqw7U2CCebsc74kiY6awiGogKtoSGbgjYE/G/+l9sF3MWFPNc9IcoOC4ODfKHfxFmp0g== - dependencies: - dunder-proto "^1.0.1" - es-object-atoms "^1.0.0" - get-stream@^5.1.0: version "5.2.0" resolved "https://registry.yarnpkg.com/get-stream/-/get-stream-5.2.0.tgz#4966a1795ee5ace65e706c4b7beb71257d6e22d3" @@ -1212,30 +276,6 @@ get-stream@^5.1.0: dependencies: pump "^3.0.0" -glob@^10.2.2: - version "10.5.0" - resolved "https://registry.yarnpkg.com/glob/-/glob-10.5.0.tgz#8ec0355919cd3338c28428a23d4f24ecc5fe738c" - integrity sha512-DfXN8DfhJ7NH3Oe7cFmu3NCu1wKbkReJ8TorzSAFbSKrlNaQSKfIzqYqVY8zlbs2NLBbWpRiU52GX2PbaBVNkg== - dependencies: - foreground-child "^3.1.0" - jackspeak "^3.1.2" - minimatch "^9.0.4" - minipass "^7.1.2" - package-json-from-dist "^1.0.0" - path-scurry "^1.11.1" - -glob@^7.1.3, glob@^7.1.6: - version "7.2.3" - resolved "https://registry.yarnpkg.com/glob/-/glob-7.2.3.tgz#b8df0fb802bbfa8e89bd1d938b4e16578ed44f2b" - integrity sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q== - dependencies: - fs.realpath "^1.0.0" - inflight "^1.0.4" - inherits "2" - minimatch "^3.1.1" - once "^1.3.0" - path-is-absolute "^1.0.0" - global-agent@^3.0.0: version "3.0.0" resolved "https://registry.yarnpkg.com/global-agent/-/global-agent-3.0.0.tgz#ae7cd31bd3583b93c5a16437a1afe27cc33a1ab6" @@ -1256,12 +296,12 @@ globalthis@^1.0.1: define-properties "^1.2.1" gopd "^1.0.1" -gopd@^1.0.1, gopd@^1.2.0: +gopd@^1.0.1: version "1.2.0" resolved "https://registry.yarnpkg.com/gopd/-/gopd-1.2.0.tgz#89f56b8217bdbc8802bd299df6d7f1081d7e51a1" integrity sha512-ZUKRh6/kUFoAiTAtTYPZJ3hw9wNxx+BIBOijnlG9PnrJsCcSjs1wyyD6vJpaYtgnzDrKYRSqf3OO6Rfa93xsRg== -got@^11.7.0, got@^11.8.5: +got@^11.8.5: version "11.8.6" resolved "https://registry.yarnpkg.com/got/-/got-11.8.6.tgz#276e827ead8772eddbcfc97170590b841823233a" integrity sha512-6tfZ91bOr7bOXnK7PRDCGBLa1H4U080YHNaAQ2KsMGlLEzRbk44nsZF2E1IeRc3vtJHPVbKCYgdFbaGO2ljd8g== @@ -1278,61 +318,22 @@ got@^11.7.0, got@^11.8.5: p-cancelable "^2.0.0" responselike "^2.0.0" -graceful-fs@^4.1.11, graceful-fs@^4.1.6, graceful-fs@^4.2.0, graceful-fs@^4.2.11, graceful-fs@^4.2.4, graceful-fs@^4.2.6: +graceful-fs@^4.1.6, graceful-fs@^4.2.0: version "4.2.11" resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.2.11.tgz#4183e4e8bf08bb6e05bbb2f7d2e0c8f712ca40e3" integrity sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ== -has-flag@^4.0.0: - version "4.0.0" - resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-4.0.0.tgz#944771fd9c81c81265c4d6941860da06bb59479b" - integrity sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ== - -has-property-descriptors@^1.0.0, has-property-descriptors@^1.0.2: +has-property-descriptors@^1.0.0: version "1.0.2" resolved "https://registry.yarnpkg.com/has-property-descriptors/-/has-property-descriptors-1.0.2.tgz#963ed7d071dc7bf5f084c5bfbe0d1b6222586854" integrity sha512-55JNKuIW+vq4Ke1BjOTjM2YctQIvCT7GFzHwmfZPGo5wnrgkid0YQtnAleFSqumZm4az3n2BS+erby5ipJdgrg== dependencies: es-define-property "^1.0.0" -has-symbols@^1.0.3, has-symbols@^1.1.0: - version "1.1.0" - resolved "https://registry.yarnpkg.com/has-symbols/-/has-symbols-1.1.0.tgz#fc9c6a783a084951d0b971fe1018de813707a338" - integrity sha512-1cDNdwJ2Jaohmb3sg4OmKaMBwuC48sYni5HUw2DvsC8LjGTLK9h+eb1X6RyuOHe4hT0ULCW68iomhjUoKUqlPQ== - -has-tostringtag@^1.0.2: - version "1.0.2" - resolved "https://registry.yarnpkg.com/has-tostringtag/-/has-tostringtag-1.0.2.tgz#2cdc42d40bef2e5b4eeab7c01a73c54ce7ab5abc" - integrity sha512-NqADB8VjPFLM2V0VvHUewwwsw0ZWBaIdgo+ieHtK3hasLz4qeCRjYcqfB6AQrBggRKppKF8L52/VqdVsO47Dlw== - dependencies: - has-symbols "^1.0.3" - -hasown@^2.0.2: - version "2.0.2" - resolved "https://registry.yarnpkg.com/hasown/-/hasown-2.0.2.tgz#003eaf91be7adc372e84ec59dc37252cedb80003" - integrity sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ== - dependencies: - function-bind "^1.1.2" - -hosted-git-info@^4.1.0: - version "4.1.0" - resolved "https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-4.1.0.tgz#827b82867e9ff1c8d0c4d9d53880397d2c86d224" - integrity sha512-kyCuEOWjJqZuDbRHzL8V93NzQhwIB71oFWSyzVo+KPZI+pnQPPxucdkrOZvkLRnrf5URsQM+IJ09Dw29cRALIA== - dependencies: - lru-cache "^6.0.0" - -http-cache-semantics@^4.0.0, http-cache-semantics@^4.1.1: - version "4.2.0" - resolved "https://registry.yarnpkg.com/http-cache-semantics/-/http-cache-semantics-4.2.0.tgz#205f4db64f8562b76a4ff9235aa5279839a09dd5" - integrity sha512-dTxcvPXqPvXBQpq5dUr6mEMJX4oIEFv6bwom3FDwKRDsuIjjJGANqhBuoAn9c1RQJIdAKav33ED65E2ys+87QQ== - -http-proxy-agent@^7.0.0: - version "7.0.2" - resolved "https://registry.yarnpkg.com/http-proxy-agent/-/http-proxy-agent-7.0.2.tgz#9a8b1f246866c028509486585f62b8f2c18c270e" - integrity sha512-T1gkAiYYDWYx3V5Bmyu7HcfcvL7mUrTWiM6yOfa3PIphViJ/gFPbvidQ+veqSOHci/PxBcDabeUNCzpOODJZig== - dependencies: - agent-base "^7.1.0" - debug "^4.3.4" +http-cache-semantics@^4.0.0: + version "4.2.0" + resolved "https://registry.yarnpkg.com/http-cache-semantics/-/http-cache-semantics-4.2.0.tgz#205f4db64f8562b76a4ff9235aa5279839a09dd5" + integrity sha512-dTxcvPXqPvXBQpq5dUr6mEMJX4oIEFv6bwom3FDwKRDsuIjjJGANqhBuoAn9c1RQJIdAKav33ED65E2ys+87QQ== http2-wrapper@^1.0.0-beta.5.2: version "1.0.3" @@ -1342,137 +343,6 @@ http2-wrapper@^1.0.0-beta.5.2: quick-lru "^5.1.1" resolve-alpn "^1.0.0" -https-proxy-agent@^7.0.0, https-proxy-agent@^7.0.1: - version "7.0.6" - resolved "https://registry.yarnpkg.com/https-proxy-agent/-/https-proxy-agent-7.0.6.tgz#da8dfeac7da130b05c2ba4b59c9b6cd66611a6b9" - integrity sha512-vK9P5/iUfdl95AI+JVyUuIcVtd4ofvtrOr3HNtM2yxC9bnMbEdp3x01OhQNnjb8IJYi38VlTE3mBXwcfvywuSw== - dependencies: - agent-base "^7.1.2" - debug "4" - -iconv-corefoundation@^1.1.7: - version "1.1.7" - resolved "https://registry.yarnpkg.com/iconv-corefoundation/-/iconv-corefoundation-1.1.7.tgz#31065e6ab2c9272154c8b0821151e2c88f1b002a" - integrity sha512-T10qvkw0zz4wnm560lOEg0PovVqUXuOFhhHAkixw8/sycy7TJt7v/RrkEKEQnAw2viPSJu6iAkErxnzR0g8PpQ== - dependencies: - cli-truncate "^2.1.0" - node-addon-api "^1.6.3" - -iconv-lite@^0.6.2: - version "0.6.3" - resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.6.3.tgz#a52f80bf38da1952eb5c681790719871a1a72501" - integrity sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw== - dependencies: - safer-buffer ">= 2.1.2 < 3.0.0" - -ieee754@^1.1.13: - version "1.2.1" - resolved "https://registry.yarnpkg.com/ieee754/-/ieee754-1.2.1.tgz#8eb7a10a63fff25d15a57b001586d177d1b0d352" - integrity sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA== - -imurmurhash@^0.1.4: - version "0.1.4" - resolved "https://registry.yarnpkg.com/imurmurhash/-/imurmurhash-0.1.4.tgz#9218b9b2b928a238b13dc4fb6b6d576f231453ea" - integrity sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA== - -inflight@^1.0.4: - version "1.0.6" - resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9" - integrity sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA== - dependencies: - once "^1.3.0" - wrappy "1" - -inherits@2, inherits@^2.0.3, inherits@^2.0.4: - version "2.0.4" - resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.4.tgz#0fa2c64f932917c3433a0ded55363aae37416b7c" - integrity sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ== - -ip-address@^10.0.1: - version "10.1.0" - resolved "https://registry.yarnpkg.com/ip-address/-/ip-address-10.1.0.tgz#d8dcffb34d0e02eb241427444a6e23f5b0595aa4" - integrity sha512-XXADHxXmvT9+CRxhXg56LJovE+bmWnEWB78LB83VZTprKTmaC5QfruXocxzTZ2Kl0DNwKuBdlIhjL8LeY8Sf8Q== - -is-docker@^2.0.0: - version "2.2.1" - resolved "https://registry.yarnpkg.com/is-docker/-/is-docker-2.2.1.tgz#33eeabe23cfe86f14bde4408a02c0cfb853acdaa" - integrity sha512-F+i2BKsFrH66iaUFc0woD8sLy8getkwTwtOBjvs56Cx4CgJDeKQeqfz8wAYiSb8JOprWhHH5p77PbmYCvvUuXQ== - -is-fullwidth-code-point@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz#f116f8064fe90b3f7844a38997c0b75051269f1d" - integrity sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg== - -is-interactive@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/is-interactive/-/is-interactive-1.0.0.tgz#cea6e6ae5c870a7b0a0004070b7b587e0252912e" - integrity sha512-2HvIEKRoqS62guEC+qBjpvRubdX910WCMuJTZ+I9yvqKU2/12eSL549HMwtabb4oupdj2sMP50k+XJfB/8JE6w== - -is-number@^7.0.0: - version "7.0.0" - resolved "https://registry.yarnpkg.com/is-number/-/is-number-7.0.0.tgz#7535345b896734d5f80c4d06c50955527a14f12b" - integrity sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng== - -is-unicode-supported@^0.1.0: - version "0.1.0" - resolved "https://registry.yarnpkg.com/is-unicode-supported/-/is-unicode-supported-0.1.0.tgz#3f26c76a809593b52bfa2ecb5710ed2779b522a7" - integrity sha512-knxG2q4UC3u8stRGyAVJCOdxFmv5DZiRcdlIaAQXAbSfJya+OhopNotLQrstBhququ4ZpuKbDc/8S6mgXgPFPw== - -is-wsl@^2.1.1: - version "2.2.0" - resolved "https://registry.yarnpkg.com/is-wsl/-/is-wsl-2.2.0.tgz#74a4c76e77ca9fd3f932f290c17ea326cd157271" - integrity sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww== - dependencies: - is-docker "^2.0.0" - -isarray@^2.0.5: - version "2.0.5" - resolved "https://registry.yarnpkg.com/isarray/-/isarray-2.0.5.tgz#8af1e4c1221244cc62459faf38940d4e644a5723" - integrity sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw== - -isbinaryfile@^4.0.8: - version "4.0.10" - resolved "https://registry.yarnpkg.com/isbinaryfile/-/isbinaryfile-4.0.10.tgz#0c5b5e30c2557a2f06febd37b7322946aaee42b3" - integrity sha512-iHrqe5shvBUcFbmZq9zOQHBoeOhZJu6RQGrDpBgenUm/Am+F3JM2MgQj+rK3Z601fzrL5gLZWtAPH2OBaSVcyw== - -isbinaryfile@^5.0.0: - version "5.0.7" - resolved "https://registry.yarnpkg.com/isbinaryfile/-/isbinaryfile-5.0.7.tgz#19a73f2281b7368dca9d3b3ac8a0434074670979" - integrity sha512-gnWD14Jh3FzS3CPhF0AxNOJ8CxqeblPTADzI38r0wt8ZyQl5edpy75myt08EG2oKvpyiqSqsx+Wkz9vtkbTqYQ== - -isexe@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10" - integrity sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw== - -isexe@^3.1.1: - version "3.1.5" - resolved "https://registry.yarnpkg.com/isexe/-/isexe-3.1.5.tgz#42e368f68d5e10dadfee4fda7b550bc2d8892dc9" - integrity sha512-6B3tLtFqtQS4ekarvLVMZ+X+VlvQekbe4taUkf/rhVO3d/h0M2rfARm/pXLcPEsjjMsFgrFgSrhQIxcSVrBz8w== - -jackspeak@^3.1.2: - version "3.4.3" - resolved "https://registry.yarnpkg.com/jackspeak/-/jackspeak-3.4.3.tgz#8833a9d89ab4acde6188942bd1c53b6390ed5a8a" - integrity sha512-OGlZQpz2yfahA/Rd1Y8Cd9SIEsqvXkLVoSw/cgwhnhFMDbsQFeZYoJJ7bIZBS9BcamUW96asq/npPWugM+RQBw== - dependencies: - "@isaacs/cliui" "^8.0.2" - optionalDependencies: - "@pkgjs/parseargs" "^0.11.0" - -jake@^10.8.5: - version "10.9.4" - resolved "https://registry.yarnpkg.com/jake/-/jake-10.9.4.tgz#d626da108c63d5cfb00ab5c25fadc7e0084af8e6" - integrity sha512-wpHYzhxiVQL+IV05BLE2Xn34zW1S223hvjtqk0+gsPrwd/8JNLXJgZZM/iPFsYc1xyphF+6M6EvdE5E9MBGkDA== - dependencies: - async "^3.2.6" - filelist "^1.0.4" - picocolors "^1.1.1" - -jiti@^2.4.2: - version "2.6.1" - resolved "https://registry.yarnpkg.com/jiti/-/jiti-2.6.1.tgz#178ef2fc9a1a594248c20627cd820187a4d78d92" - integrity sha512-ekilCSN1jwRvIbgeg/57YFh8qQDNbwDb9xT/qu2DAHbFFZUicIl4ygVaAvzveMhMVr3LnpSKTNnwt8PoOfmKhQ== - js-yaml@^4.1.0: version "4.1.1" resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-4.1.1.tgz#854c292467705b699476e1a2decc0c8a3458806b" @@ -1485,32 +355,11 @@ json-buffer@3.0.1: resolved "https://registry.yarnpkg.com/json-buffer/-/json-buffer-3.0.1.tgz#9338802a30d3b6605fbe0613e094008ca8c05a13" integrity sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ== -json-schema-traverse@^0.4.1: - version "0.4.1" - resolved "https://registry.yarnpkg.com/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz#69f6a87d9513ab8bb8fe63bdb0979c448e684660" - integrity sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg== - -json-stable-stringify@^1.0.2: - version "1.3.0" - resolved "https://registry.yarnpkg.com/json-stable-stringify/-/json-stable-stringify-1.3.0.tgz#8903cfac42ea1a0f97f35d63a4ce0518f0cc6a70" - integrity sha512-qtYiSSFlwot9XHtF9bD9c7rwKjr+RecWT//ZnPvSmEjpV5mmPOCN4j8UjY5hbjNkOwZ/jQv3J6R1/pL7RwgMsg== - dependencies: - call-bind "^1.0.8" - call-bound "^1.0.4" - isarray "^2.0.5" - jsonify "^0.0.1" - object-keys "^1.1.1" - json-stringify-safe@^5.0.1: version "5.0.1" resolved "https://registry.yarnpkg.com/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz#1296a2d58fd45f19a0f6ce01d65701e2c735b6eb" integrity sha512-ZClg6AaYvamvYEE82d3Iyd3vSSIjQ+odgjaTzRuO3s7toCdFKczob2i0zCh7JE8kWn17yvAWhUVxvqGwUalsRA== -json5@^2.2.3: - version "2.2.3" - resolved "https://registry.yarnpkg.com/json5/-/json5-2.2.3.tgz#78cd6f1a19bdc12b73db5ad0c61efd66c1e29283" - integrity sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg== - jsonfile@^4.0.0: version "4.0.0" resolved "https://registry.yarnpkg.com/jsonfile/-/jsonfile-4.0.0.tgz#8771aae0799b64076b76640fca058f9c10e33ecb" @@ -1527,11 +376,6 @@ jsonfile@^6.0.1: optionalDependencies: graceful-fs "^4.1.6" -jsonify@^0.0.1: - version "0.0.1" - resolved "https://registry.yarnpkg.com/jsonify/-/jsonify-0.0.1.tgz#2aa3111dae3d34a0f151c63f3a45d995d9420978" - integrity sha512-2/Ki0GcmuqSrgFyelQq9M05y7PS0mEwuIzrf3f1fPqkVDVRvZrPZtVSMHxdgo8Aq0sxAOb/cr2aqqA3LeWHVPg== - keyv@^4.0.0: version "4.5.4" resolved "https://registry.yarnpkg.com/keyv/-/keyv-4.5.4.tgz#a879a99e29452f942439f2a405e3af8b31d4de93" @@ -1539,13 +383,6 @@ keyv@^4.0.0: dependencies: json-buffer "3.0.1" -klaw-sync@^6.0.0: - version "6.0.0" - resolved "https://registry.yarnpkg.com/klaw-sync/-/klaw-sync-6.0.0.tgz#1fd2cfd56ebb6250181114f0a581167099c2b28c" - integrity sha512-nIeuVSzdCCs6TDPTqI8w1Yre34sSq7AkZ4B3sfOBbI2CgVSB4Du4aLQijFU2+lhAFCwt9+42Hel6lQNIv6AntQ== - dependencies: - graceful-fs "^4.1.11" - lazy-val@^1.0.5: version "1.0.5" resolved "https://registry.yarnpkg.com/lazy-val/-/lazy-val-1.0.5.tgz#6cf3b9f5bc31cee7ee3e369c0832b7583dcd923d" @@ -1561,53 +398,11 @@ lodash.isequal@^4.5.0: resolved "https://registry.yarnpkg.com/lodash.isequal/-/lodash.isequal-4.5.0.tgz#415c4478f2bcc30120c22ce10ed3226f7d3e18e0" integrity sha512-pDo3lu8Jhfjqls6GkMgpahsF9kCyayhgykjyLMNFTKWrpVdAQtYyB4muAMWozBB4ig/dtWAmsMxLEI8wuz+DYQ== -lodash@^4.17.15: - version "4.17.23" - resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.23.tgz#f113b0378386103be4f6893388c73d0bde7f2c5a" - integrity sha512-LgVTMpQtIopCi79SJeDiP0TfWi5CNEc/L/aRdTh3yIvmZXTnheWpKjSZhnvMl8iXbC1tFg9gdHHDMLoV7CnG+w== - -log-symbols@^4.1.0: - version "4.1.0" - resolved "https://registry.yarnpkg.com/log-symbols/-/log-symbols-4.1.0.tgz#3fbdbb95b4683ac9fc785111e792e558d4abd503" - integrity sha512-8XPvpAA8uyhfteu8pIvQxpJZ7SYYdpUivZpGy6sFsBuKRY/7rQGavedeB8aK+Zkyq6upMFVL/9AW6vOYzfRyLg== - dependencies: - chalk "^4.1.0" - is-unicode-supported "^0.1.0" - lowercase-keys@^2.0.0: version "2.0.0" resolved "https://registry.yarnpkg.com/lowercase-keys/-/lowercase-keys-2.0.0.tgz#2603e78b7b4b0006cbca2fbcc8a3202558ac9479" integrity sha512-tqNXrS78oMOE73NMxK4EMLQsQowWf8jKooH9g7xPavRT706R6bkQJ6DY2Te7QukaZsulxa30wQ7bk0pm4XiHmA== -lru-cache@^10.0.1, lru-cache@^10.2.0: - version "10.4.3" - resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-10.4.3.tgz#410fc8a17b70e598013df257c2446b7f3383f119" - integrity sha512-JNAzZcXrCt42VGLuYz0zfAzDfAvJWW6AfYlDBQyDV5DClI2m5sAmK+OIO7s59XfsRsWHp02jAJrRadPRGTt6SQ== - -lru-cache@^6.0.0: - version "6.0.0" - resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-6.0.0.tgz#6d6fe6570ebd96aaf90fcad1dafa3b2566db3a94" - integrity sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA== - dependencies: - yallist "^4.0.0" - -make-fetch-happen@^14.0.3: - version "14.0.3" - resolved "https://registry.yarnpkg.com/make-fetch-happen/-/make-fetch-happen-14.0.3.tgz#d74c3ecb0028f08ab604011e0bc6baed483fcdcd" - integrity sha512-QMjGbFTP0blj97EeidG5hk/QhKQ3T4ICckQGLgz38QF7Vgbk6e6FTARN8KhKxyBbWn8R0HU+bnw8aSoFPD4qtQ== - dependencies: - "@npmcli/agent" "^3.0.0" - cacache "^19.0.1" - http-cache-semantics "^4.1.1" - minipass "^7.0.2" - minipass-fetch "^4.0.0" - minipass-flush "^1.0.5" - minipass-pipeline "^1.2.4" - negotiator "^1.0.0" - proc-log "^5.0.0" - promise-retry "^2.0.1" - ssri "^12.0.0" - matcher@^3.0.0: version "3.0.0" resolved "https://registry.yarnpkg.com/matcher/-/matcher-3.0.0.tgz#bd9060f4c5b70aa8041ccc6f80368760994f30ca" @@ -1615,56 +410,6 @@ matcher@^3.0.0: dependencies: escape-string-regexp "^4.0.0" -math-intrinsics@^1.1.0: - version "1.1.0" - resolved "https://registry.yarnpkg.com/math-intrinsics/-/math-intrinsics-1.1.0.tgz#a0dd74be81e2aa5c2f27e65ce283605ee4e2b7f9" - integrity sha512-/IXtbwEk5HTPyEwyKX6hGkYXxM9nbj64B+ilVJnC/R6B0pH5G4V3b0pVbL7DBj4tkhBAppbQUlf6F6Xl9LHu1g== - -merge-descriptors@0.0.2: - version "0.0.2" - resolved "https://registry.yarnpkg.com/merge-descriptors/-/merge-descriptors-0.0.2.tgz#c36a52a781437513c57275f39dd9d317514ac8c7" - integrity sha512-dYBT4Ep+t/qnPeJcnMymmhTdd4g8/hn48ciaDqLAkfRf8abzLPS6Rb6EBdz5CZCL8tzZuI5ps9MhGQGxk+EuKg== - -methods@0.1.0: - version "0.1.0" - resolved "https://registry.yarnpkg.com/methods/-/methods-0.1.0.tgz#335d429eefd21b7bacf2e9c922a8d2bd14a30e4f" - integrity sha512-N4cn4CbDqu7Fp3AT4z3AsO19calgczhsmCGzXLCiUOrWg9sjb1B+yKFKOrnnPGKKvjyJBmw+k6b3adFN2LbuBw== - -micromatch@^4.0.2: - version "4.0.8" - resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-4.0.8.tgz#d66fa18f3a47076789320b9b1af32bd86d9fa202" - integrity sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA== - dependencies: - braces "^3.0.3" - picomatch "^2.3.1" - -mime-db@1.52.0: - version "1.52.0" - resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.52.0.tgz#bbabcdc02859f4987301c856e3387ce5ec43bf70" - integrity sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg== - -mime-types@^2.1.12: - version "2.1.35" - resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.35.tgz#381a871b62a734450660ae3deee44813f70d959a" - integrity sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw== - dependencies: - mime-db "1.52.0" - -mime@^2.5.2: - version "2.6.0" - resolved "https://registry.yarnpkg.com/mime/-/mime-2.6.0.tgz#a2a682a95cd4d0cb1d6257e28f83da7e35800367" - integrity sha512-USPkMeET31rOMiarsBNIHZKLGgvKc/LrjofAnBlOttf5ajRvqiRA8QsenbcooctK6d6Ts6aqZXBA+XbkKthiQg== - -mime@~1.2.11, mime@~1.2.9: - version "1.2.11" - resolved "https://registry.yarnpkg.com/mime/-/mime-1.2.11.tgz#58203eed86e3a5ef17aed2b7d9ebd47f0a60dd10" - integrity sha512-Ysa2F/nqTNGHhhm9MV8ure4+Hc+Y8AWiqUdHxsO7xu8zc92ND9f3kpALHjaP026Ft17UfxrMt95c50PLUeynBw== - -mimic-fn@^2.1.0: - version "2.1.0" - resolved "https://registry.yarnpkg.com/mimic-fn/-/mimic-fn-2.1.0.tgz#7ed2c2ccccaf84d3ffcb7a69b57711fc2083401b" - integrity sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg== - mimic-response@^1.0.0: version "1.0.1" resolved "https://registry.yarnpkg.com/mimic-response/-/mimic-response-1.0.1.tgz#4923538878eef42063cb8a3e3b0798781487ab1b" @@ -1675,154 +420,11 @@ mimic-response@^3.1.0: resolved "https://registry.yarnpkg.com/mimic-response/-/mimic-response-3.1.0.tgz#2d1d59af9c1b129815accc2c46a022a5ce1fa3c9" integrity sha512-z0yWI+4FDrrweS8Zmt4Ej5HdJmky15+L2e6Wgn3+iK5fWzb6T3fhNFq2+MeTRb064c6Wr4N/wv0DzQTjNzHNGQ== -minimatch@^10.0.3: - version "10.2.4" - resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-10.2.4.tgz#465b3accbd0218b8281f5301e27cedc697f96fde" - integrity sha512-oRjTw/97aTBN0RHbYCdtF1MQfvusSIBQM0IZEgzl6426+8jSC0nF1a/GmnVLpfB9yyr6g6FTqWqiZVbxrtaCIg== - dependencies: - brace-expansion "^5.0.2" - -minimatch@^3.0.4, minimatch@^3.0.5, minimatch@^3.1.1: - version "3.1.5" - resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.1.5.tgz#580c88f8d5445f2bd6aa8f3cadefa0de79fbd69e" - integrity sha512-VgjWUsnnT6n+NUk6eZq77zeFdpW2LWDzP6zFGrCbHXiYNul5Dzqk2HHQ5uFH2DNW5Xbp8+jVzaeNt94ssEEl4w== - dependencies: - brace-expansion "^1.1.7" - -minimatch@^5.0.1: - version "5.1.9" - resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-5.1.9.tgz#1293ef15db0098b394540e8f9f744f9fda8dee4b" - integrity sha512-7o1wEA2RyMP7Iu7GNba9vc0RWWGACJOCZBJX2GJWip0ikV+wcOsgVuY9uE8CPiyQhkGFSlhuSkZPavN7u1c2Fw== - dependencies: - brace-expansion "^2.0.1" - -minimatch@^9.0.3, minimatch@^9.0.4: - version "9.0.9" - resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-9.0.9.tgz#9b0cb9fcb78087f6fd7eababe2511c4d3d60574e" - integrity sha512-OBwBN9AL4dqmETlpS2zasx+vTeWclWzkblfZk7KTA5j3jeOONz/tRCnZomUyvNg83wL5Zv9Ss6HMJXAgL8R2Yg== - dependencies: - brace-expansion "^2.0.2" - -minimist@^1.2.5, minimist@^1.2.6: - version "1.2.8" - resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.8.tgz#c1a464e7693302e082a075cee0c057741ac4772c" - integrity sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA== - -minipass-collect@^2.0.1: - version "2.0.1" - resolved "https://registry.yarnpkg.com/minipass-collect/-/minipass-collect-2.0.1.tgz#1621bc77e12258a12c60d34e2276ec5c20680863" - integrity sha512-D7V8PO9oaz7PWGLbCACuI1qEOsq7UKfLotx/C0Aet43fCUB/wfQ7DYeq2oR/svFJGYDHPr38SHATeaj/ZoKHKw== - dependencies: - minipass "^7.0.3" - -minipass-fetch@^4.0.0: - version "4.0.1" - resolved "https://registry.yarnpkg.com/minipass-fetch/-/minipass-fetch-4.0.1.tgz#f2d717d5a418ad0b1a7274f9b913515d3e78f9e5" - integrity sha512-j7U11C5HXigVuutxebFadoYBbd7VSdZWggSe64NVdvWNBqGAiXPL2QVCehjmw7lY1oF9gOllYbORh+hiNgfPgQ== - dependencies: - minipass "^7.0.3" - minipass-sized "^1.0.3" - minizlib "^3.0.1" - optionalDependencies: - encoding "^0.1.13" - -minipass-flush@^1.0.5: - version "1.0.5" - resolved "https://registry.yarnpkg.com/minipass-flush/-/minipass-flush-1.0.5.tgz#82e7135d7e89a50ffe64610a787953c4c4cbb373" - integrity sha512-JmQSYYpPUqX5Jyn1mXaRwOda1uQ8HP5KAT/oDSLCzt1BYRhQU0/hDtsB1ufZfEEzMZ9aAVmsBw8+FWsIXlClWw== - dependencies: - minipass "^3.0.0" - -minipass-pipeline@^1.2.4: - version "1.2.4" - resolved "https://registry.yarnpkg.com/minipass-pipeline/-/minipass-pipeline-1.2.4.tgz#68472f79711c084657c067c5c6ad93cddea8214c" - integrity sha512-xuIq7cIOt09RPRJ19gdi4b+RiNvDFYe5JH+ggNvBqGqpQXcru3PcRmOZuHBKWK1Txf9+cQ+HMVN4d6z46LZP7A== - dependencies: - minipass "^3.0.0" - -minipass-sized@^1.0.3: - version "1.0.3" - resolved "https://registry.yarnpkg.com/minipass-sized/-/minipass-sized-1.0.3.tgz#70ee5a7c5052070afacfbc22977ea79def353b70" - integrity sha512-MbkQQ2CTiBMlA2Dm/5cY+9SWFEN8pzzOXi6rlM5Xxq0Yqbda5ZQy9sU75a673FE9ZK0Zsbr6Y5iP6u9nktfg2g== - dependencies: - minipass "^3.0.0" - -minipass@^3.0.0: - version "3.3.6" - resolved "https://registry.yarnpkg.com/minipass/-/minipass-3.3.6.tgz#7bba384db3a1520d18c9c0e5251c3444e95dd94a" - integrity sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw== - dependencies: - yallist "^4.0.0" - -"minipass@^5.0.0 || ^6.0.2 || ^7.0.0", minipass@^7.0.2, minipass@^7.0.3, minipass@^7.0.4, minipass@^7.1.2: - version "7.1.3" - resolved "https://registry.yarnpkg.com/minipass/-/minipass-7.1.3.tgz#79389b4eb1bb2d003a9bba87d492f2bd37bdc65b" - integrity sha512-tEBHqDnIoM/1rXME1zgka9g6Q2lcoCkxHLuc7ODJ5BxbP5d4c2Z5cGgtXAku59200Cx7diuHTOYfSBD8n6mm8A== - -minizlib@^3.0.1, minizlib@^3.1.0: - version "3.1.0" - resolved "https://registry.yarnpkg.com/minizlib/-/minizlib-3.1.0.tgz#6ad76c3a8f10227c9b51d1c9ac8e30b27f5a251c" - integrity sha512-KZxYo1BUkWD2TVFLr0MQoM8vUUigWD3LlD83a/75BqC+4qE0Hb1Vo5v1FgcfaNXvfXzr+5EhQ6ing/CaBijTlw== - dependencies: - minipass "^7.1.2" - ms@^2.1.3: version "2.1.3" resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.3.tgz#574c8138ce1d2b5861f0b44579dbadd60c6615b2" integrity sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA== -negotiator@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/negotiator/-/negotiator-1.0.0.tgz#b6c91bb47172d69f93cfd7c357bbb529019b5f6a" - integrity sha512-8Ofs/AUQh8MaEcrlq5xOX0CQ9ypTF5dl78mjlMNfOK08fzpgTHQRQPBxcPlEtIw0yRpws+Zo/3r+5WRby7u3Gg== - -negotiator@~0.3.0: - version "0.3.0" - resolved "https://registry.yarnpkg.com/negotiator/-/negotiator-0.3.0.tgz#706d692efeddf574d57ea9fb1ab89a4fa7ee8f60" - integrity sha512-q9wF64uB31BDZQ44DWf+8gE7y8xSpBdREAsJfnBO2WX9ecsutfUO6S9uWEdixlDLOlWaqnlnFXXwZxUUmyLfgg== - -node-abi@^4.2.0: - version "4.26.0" - resolved "https://registry.yarnpkg.com/node-abi/-/node-abi-4.26.0.tgz#7068474b3a945c08372995d823b71053e3ed85af" - integrity sha512-8QwIZqikRvDIkXS2S93LjzhsSPJuIbfaMETWH+Bx8oOT9Sa9UsUtBFQlc3gBNd1+QINjaTloitXr1W3dQLi9Iw== - dependencies: - semver "^7.6.3" - -node-addon-api@^1.6.3: - version "1.7.2" - resolved "https://registry.yarnpkg.com/node-addon-api/-/node-addon-api-1.7.2.tgz#3df30b95720b53c24e59948b49532b662444f54d" - integrity sha512-ibPK3iA+vaY1eEjESkQkM0BbCqFOaZMiXRTtdB0u7b4djtY6JnsjvPdUHVMg6xQt3B8fpTTWHI9A+ADjM9frzg== - -node-api-version@^0.2.1: - version "0.2.1" - resolved "https://registry.yarnpkg.com/node-api-version/-/node-api-version-0.2.1.tgz#19bad54f6d65628cbee4e607a325e4488ace2de9" - integrity sha512-2xP/IGGMmmSQpI1+O/k72jF/ykvZ89JeuKX3TLJAYPDVLUalrshrLHkeVcCCZqG/eEa635cr8IBYzgnDvM2O8Q== - dependencies: - semver "^7.3.5" - -node-gyp@^11.2.0: - version "11.5.0" - resolved "https://registry.yarnpkg.com/node-gyp/-/node-gyp-11.5.0.tgz#82661b5f40647a7361efe918e3cea76d297fcc56" - integrity sha512-ra7Kvlhxn5V9Slyus0ygMa2h+UqExPqUIkfk7Pc8QTLT956JLSy51uWFwHtIYy0vI8cB4BDhc/S03+880My/LQ== - dependencies: - env-paths "^2.2.0" - exponential-backoff "^3.1.1" - graceful-fs "^4.2.6" - make-fetch-happen "^14.0.3" - nopt "^8.0.0" - proc-log "^5.0.0" - semver "^7.3.5" - tar "^7.4.3" - tinyglobby "^0.2.12" - which "^5.0.0" - -nopt@^8.0.0: - version "8.1.0" - resolved "https://registry.yarnpkg.com/nopt/-/nopt-8.1.0.tgz#b11d38caf0f8643ce885818518064127f602eae3" - integrity sha512-ieGu42u/Qsa4TFktmaKEwM6MQH0pOWnaB3htzh0JRtx84+Mebc0cbZYN5bC+6WTZ4+77xrL9Pn5m7CV6VIkV7A== - dependencies: - abbrev "^3.0.0" - normalize-url@^6.0.1: version "6.1.0" resolved "https://registry.yarnpkg.com/normalize-url/-/normalize-url-6.1.0.tgz#40d0885b535deffe3f3147bec877d05fe4c5668a" @@ -1833,180 +435,28 @@ object-keys@^1.1.1: resolved "https://registry.yarnpkg.com/object-keys/-/object-keys-1.1.1.tgz#1c47f272df277f3b1daf061677d9c82e2322c60e" integrity sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA== -once@^1.3.0, once@^1.3.1, once@^1.4.0: +once@^1.3.1, once@^1.4.0: version "1.4.0" resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1" integrity sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w== dependencies: wrappy "1" -onetime@^5.1.0: - version "5.1.2" - resolved "https://registry.yarnpkg.com/onetime/-/onetime-5.1.2.tgz#d0e96ebb56b07476df1dd9c4806e5237985ca45e" - integrity sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg== - dependencies: - mimic-fn "^2.1.0" - -open@^7.4.2: - version "7.4.2" - resolved "https://registry.yarnpkg.com/open/-/open-7.4.2.tgz#b8147e26dcf3e426316c730089fd71edd29c2321" - integrity sha512-MVHddDVweXZF3awtlAS+6pgKLlm/JgxZ90+/NBurBoQctVOOB/zDdVjcyPzQ+0laDGbsWgrRkflI65sQeOgT9Q== - dependencies: - is-docker "^2.0.0" - is-wsl "^2.1.1" - -ora@^5.1.0: - version "5.4.1" - resolved "https://registry.yarnpkg.com/ora/-/ora-5.4.1.tgz#1b2678426af4ac4a509008e5e4ac9e9959db9e18" - integrity sha512-5b6Y85tPxZZ7QytO+BQzysW31HJku27cRIlkbAXaNx+BdcVi+LlRFmVXzeF6a7JCwJpyw5c4b+YSVImQIrBpuQ== - dependencies: - bl "^4.1.0" - chalk "^4.1.0" - cli-cursor "^3.1.0" - cli-spinners "^2.5.0" - is-interactive "^1.0.0" - is-unicode-supported "^0.1.0" - log-symbols "^4.1.0" - strip-ansi "^6.0.0" - wcwidth "^1.0.1" - -os-tmpdir@~1.0.2: - version "1.0.2" - resolved "https://registry.yarnpkg.com/os-tmpdir/-/os-tmpdir-1.0.2.tgz#bbe67406c79aa85c5cfec766fe5734555dfa1274" - integrity sha512-D2FR03Vir7FIu45XBY20mTb+/ZSWB00sjU9jdQXt83gDrI4Ztz5Fs7/yy74g2N5SVQY4xY1qDr4rNddwYRVX0g== - p-cancelable@^2.0.0: version "2.1.1" resolved "https://registry.yarnpkg.com/p-cancelable/-/p-cancelable-2.1.1.tgz#aab7fbd416582fa32a3db49859c122487c5ed2cf" integrity sha512-BZOr3nRQHOntUjTrH8+Lh54smKHoHyur8We1V8DSMVrl5A2malOOwuJRnKRDjSnkoeBh4at6BwEnb5I7Jl31wg== -"p-limit@^3.1.0 ": - version "3.1.0" - resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-3.1.0.tgz#e1daccbe78d0d1388ca18c64fea38e3e57e3706b" - integrity sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ== - dependencies: - yocto-queue "^0.1.0" - -p-map@^7.0.2: - version "7.0.4" - resolved "https://registry.yarnpkg.com/p-map/-/p-map-7.0.4.tgz#b81814255f542e252d5729dca4d66e5ec14935b8" - integrity sha512-tkAQEw8ysMzmkhgw8k+1U/iPhWNhykKnSk4Rd5zLoPJCuJaGRPo6YposrZgaxHKzDHdDWWZvE/Sk7hsL2X/CpQ== - -package-json-from-dist@^1.0.0: - version "1.0.1" - resolved "https://registry.yarnpkg.com/package-json-from-dist/-/package-json-from-dist-1.0.1.tgz#4f1471a010827a86f94cfd9b0727e36d267de505" - integrity sha512-UEZIS3/by4OC8vL3P2dTXRETpebLI2NiI5vIrjaD/5UtrkFX/tNbwjTSRAGC/+7CAo2pIcBaRgWmcBBHcsaCIw== - -parseurl@1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/parseurl/-/parseurl-1.0.1.tgz#2e57dce6efdd37c3518701030944c22bf388b7b4" - integrity sha512-6W9+0+9Ihayqwjgp4OaLLqZ3KDtqPY2PtUPz8YNiy4PamjJv+7x6J9GO93O9rUZOLgaanTPxsKTasxqKkO1iSw== - -patch-package@8.0.0: - version "8.0.0" - resolved "https://registry.yarnpkg.com/patch-package/-/patch-package-8.0.0.tgz#d191e2f1b6e06a4624a0116bcb88edd6714ede61" - integrity sha512-da8BVIhzjtgScwDJ2TtKsfT5JFWz1hYoBl9rUQ1f38MC2HwnEIkK8VN3dKMKcP7P7bvvgzNDbfNHtx3MsQb5vA== - dependencies: - "@yarnpkg/lockfile" "^1.1.0" - chalk "^4.1.2" - ci-info "^3.7.0" - cross-spawn "^7.0.3" - find-yarn-workspace-root "^2.0.0" - fs-extra "^9.0.0" - json-stable-stringify "^1.0.2" - klaw-sync "^6.0.0" - minimist "^1.2.6" - open "^7.4.2" - rimraf "^2.6.3" - semver "^7.5.3" - slash "^2.0.0" - tmp "^0.0.33" - yaml "^2.2.2" - -path-is-absolute@^1.0.0: - version "1.0.1" - resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" - integrity sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg== - -path-key@^3.1.0: - version "3.1.1" - resolved "https://registry.yarnpkg.com/path-key/-/path-key-3.1.1.tgz#581f6ade658cbba65a0d3380de7753295054f375" - integrity sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q== - -path-scurry@^1.11.1: - version "1.11.1" - resolved "https://registry.yarnpkg.com/path-scurry/-/path-scurry-1.11.1.tgz#7960a668888594a0720b12a911d1a742ab9f11d2" - integrity sha512-Xa4Nw17FS9ApQFJ9umLiJS4orGjm7ZzwUrwamcGQuHSzDyth9boKDaycYdDcZDuqYATXw4HFXgaqWTctW/v1HA== - dependencies: - lru-cache "^10.2.0" - minipass "^5.0.0 || ^6.0.2 || ^7.0.0" - -path-to-regexp@0.1.2: - version "0.1.2" - resolved "https://registry.yarnpkg.com/path-to-regexp/-/path-to-regexp-0.1.2.tgz#9b2b151f9cc3018c9eea50ca95729e05781712b4" - integrity sha512-BZU7Qr+qKkXJX9UBypMNikdZ85cQSjtfMhUykJFLJn4SNF0jhEbb9nMRpnNdA76ESryY8JpMA4k6XKdz3JS1pw== - -pe-library@^0.4.1: - version "0.4.1" - resolved "https://registry.yarnpkg.com/pe-library/-/pe-library-0.4.1.tgz#e269be0340dcb13aa6949d743da7d658c3e2fbea" - integrity sha512-eRWB5LBz7PpDu4PUlwT0PhnQfTQJlDDdPa35urV4Osrm0t0AqQFGn+UIkU3klZvwJ8KPO3VbBFsXquA6p6kqZw== - pend@~1.2.0: version "1.2.0" resolved "https://registry.yarnpkg.com/pend/-/pend-1.2.0.tgz#7a57eb550a6783f9115331fcf4663d5c8e007a50" integrity sha512-F3asv42UuXchdzt+xXqfW1OGlVBe+mxa2mqI0pg5yAHZPvFmY3Y6drSf/GQ1A86WgWEN9Kzh/WrgKa6iGcHXLg== -picocolors@^1.1.1: - version "1.1.1" - resolved "https://registry.yarnpkg.com/picocolors/-/picocolors-1.1.1.tgz#3d321af3eab939b083c8f929a1d12cda81c26b6b" - integrity sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA== - -picomatch@^2.3.1: - version "2.3.1" - resolved "https://registry.yarnpkg.com/picomatch/-/picomatch-2.3.1.tgz#3ba3833733646d9d3e4995946c1365a67fb07a42" - integrity sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA== - -picomatch@^4.0.3: - version "4.0.3" - resolved "https://registry.yarnpkg.com/picomatch/-/picomatch-4.0.3.tgz#796c76136d1eead715db1e7bad785dedd695a042" - integrity sha512-5gTmgEY/sqK6gFXLIsQNH19lWb4ebPDLA4SdLP7dsWkIXHWlG66oPuVvXSGFPppYZz8ZDZq0dYYrbHfBCVUb1Q== - -plist@3.1.0, plist@^3.0.4, plist@^3.0.5, plist@^3.1.0: - version "3.1.0" - resolved "https://registry.yarnpkg.com/plist/-/plist-3.1.0.tgz#797a516a93e62f5bde55e0b9cc9c967f860893c9" - integrity sha512-uysumyrvkUX0rX/dEVqt8gC3sTBzd4zoWfLeS29nb53imdaXVvLINYXTI2GNqzaMuvacNx4uJQ8+b3zXR0pkgQ== - dependencies: - "@xmldom/xmldom" "^0.8.8" - base64-js "^1.5.1" - xmlbuilder "^15.1.1" - -proc-log@^5.0.0: - version "5.0.0" - resolved "https://registry.yarnpkg.com/proc-log/-/proc-log-5.0.0.tgz#e6c93cf37aef33f835c53485f314f50ea906a9d8" - integrity sha512-Azwzvl90HaF0aCz1JrDdXQykFakSSNPaPoiZ9fm5qJIMHioDZEi7OAdRwSm6rSoPtY3Qutnm3L7ogmg3dc+wbQ== - progress@^2.0.3: version "2.0.3" resolved "https://registry.yarnpkg.com/progress/-/progress-2.0.3.tgz#7e8cf8d8f5b8f239c1bc68beb4eb78567d572ef8" integrity sha512-7PiHtLll5LdnKIMw100I+8xJXR5gW2QwWYkT6iJva0bXitZKa/XMrSbdmg3r2Xnaidz9Qumd0VPaMrZlF9V9sA== -promise-retry@^2.0.1: - version "2.0.1" - resolved "https://registry.yarnpkg.com/promise-retry/-/promise-retry-2.0.1.tgz#ff747a13620ab57ba688f5fc67855410c370da22" - integrity sha512-y+WKFlBR8BGXnsNlIHFGPZmyDf3DFMoLhaflAnyZgV6rG6xu+JwesTo2Q9R6XwYmtmwAFCkAk3e35jEdoeh/3g== - dependencies: - err-code "^2.0.2" - retry "^0.12.0" - -proper-lockfile@^4.1.2: - version "4.1.2" - resolved "https://registry.yarnpkg.com/proper-lockfile/-/proper-lockfile-4.1.2.tgz#c8b9de2af6b2f1601067f98e01ac66baa223141f" - integrity sha512-TjNPblN4BwAWMXU8s9AEz4JmQxnD1NNL7bNOY/AKUzyamc379FWASUhc/K1pL2noVb+XmZKLL68cjzLsiOAMaA== - dependencies: - graceful-fs "^4.2.4" - retry "^0.12.0" - signal-exit "^3.0.2" - pump@^3.0.0: version "3.0.4" resolved "https://registry.yarnpkg.com/pump/-/pump-3.0.4.tgz#1f313430527fa8b905622ebd22fe1444e757ab3c" @@ -2015,64 +465,11 @@ pump@^3.0.0: end-of-stream "^1.1.0" once "^1.3.1" -punycode@^2.1.0: - version "2.3.1" - resolved "https://registry.yarnpkg.com/punycode/-/punycode-2.3.1.tgz#027422e2faec0b25e1549c3e1bd8309b9133b6e5" - integrity sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg== - -qs@0.6.6: - version "0.6.6" - resolved "https://registry.yarnpkg.com/qs/-/qs-0.6.6.tgz#6e015098ff51968b8a3c819001d5f2c89bc4b107" - integrity sha512-kN+yNdAf29Jgp+AYHUmC7X4QdJPR8czuMWLNLc0aRxkQ7tB3vJQEONKKT9ou/rW7EbqVec11srC9q9BiVbcnHA== - quick-lru@^5.1.1: version "5.1.1" resolved "https://registry.yarnpkg.com/quick-lru/-/quick-lru-5.1.1.tgz#366493e6b3e42a3a6885e2e99d18f80fb7a8c932" integrity sha512-WuyALRjWPDGtt/wzJiadO5AXY+8hZ80hVpe6MyivgraREW751X3SbhRvG3eLKOYN+8VEvqLcf3wdnt44Z4S4SA== -range-parser@0.0.4: - version "0.0.4" - resolved "https://registry.yarnpkg.com/range-parser/-/range-parser-0.0.4.tgz#c0427ffef51c10acba0782a46c9602e744ff620b" - integrity sha512-okJVEq9DbZyg+5lD8pr6ooQmeA0uu8DYIyAU7VK1WUUK7hctI1yw2ZHhKiKjB6RXaDrYRmTR4SsIHkyiQpaLMA== - -range-parser@1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/range-parser/-/range-parser-1.0.0.tgz#a4b264cfe0be5ce36abe3765ac9c2a248746dbc0" - integrity sha512-wOH5LIH2ZHo0P7/bwkR+aNbJ+kv3CHVX4B8qs9GqbtY29fi1bGPV5xczrutN20G+Z4XhRqRMTW3q0S4iyJJPfw== - -range-parser@~1.0.0: - version "1.0.3" - resolved "https://registry.yarnpkg.com/range-parser/-/range-parser-1.0.3.tgz#6872823535c692e2c2a0103826afd82c2e0ff175" - integrity sha512-nDsRrtIxVUO5opg/A8T2S3ebULVIfuh8ECbh4w3N4mWxIiT3QILDJDUQayPqm2e8Q8NUa0RSUkGCfe33AfjR3Q== - -read-binary-file-arch@^1.0.6: - version "1.0.6" - resolved "https://registry.yarnpkg.com/read-binary-file-arch/-/read-binary-file-arch-1.0.6.tgz#959c4637daa932280a9b911b1a6766a7e44288fc" - integrity sha512-BNg9EN3DD3GsDXX7Aa8O4p92sryjkmzYYgmgTAc6CA4uGLEDzFfxOxugu21akOxpcXHiEgsYkC6nPsQvLLLmEg== - dependencies: - debug "^4.3.4" - -readable-stream@^3.4.0: - version "3.6.2" - resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-3.6.2.tgz#56a9b36ea965c00c5a93ef31eb111a0f11056967" - integrity sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA== - dependencies: - inherits "^2.0.3" - string_decoder "^1.1.1" - util-deprecate "^1.0.1" - -require-directory@^2.1.1: - version "2.1.1" - resolved "https://registry.yarnpkg.com/require-directory/-/require-directory-2.1.1.tgz#8c64ad5fd30dab1c976e2344ffe7f792a6a6df42" - integrity sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q== - -resedit@^1.7.0: - version "1.7.2" - resolved "https://registry.yarnpkg.com/resedit/-/resedit-1.7.2.tgz#b1041170b99811710c13f949c7d225871de4cc78" - integrity sha512-vHjcY2MlAITJhC0eRD/Vv8Vlgmu9Sd3LX9zZvtGzU5ZImdTN3+d6e/4mnTyV8vEbyf1sgNIrWxhWlrys52OkEA== - dependencies: - pe-library "^0.4.1" - resolve-alpn@^1.0.0: version "1.2.1" resolved "https://registry.yarnpkg.com/resolve-alpn/-/resolve-alpn-1.2.1.tgz#b7adbdac3546aaaec20b45e7d8265927072726f9" @@ -2085,26 +482,6 @@ responselike@^2.0.0: dependencies: lowercase-keys "^2.0.0" -restore-cursor@^3.1.0: - version "3.1.0" - resolved "https://registry.yarnpkg.com/restore-cursor/-/restore-cursor-3.1.0.tgz#39f67c54b3a7a58cea5236d95cf0034239631f7e" - integrity sha512-l+sSefzHpj5qimhFSE5a8nufZYAM3sBSVMAPtYkmC+4EH2anSGaEMXSD0izRQbu9nfyQ9y5JrVmp7E8oZrUjvA== - dependencies: - onetime "^5.1.0" - signal-exit "^3.0.2" - -retry@^0.12.0: - version "0.12.0" - resolved "https://registry.yarnpkg.com/retry/-/retry-0.12.0.tgz#1b42a6266a21f07421d1b0b54b7dc167b01c013b" - integrity sha512-9LkiTwjUh6rT555DtE9rTX+BKByPfrMzEAtnlEtdEwr3Nkffwiihqe2bWADg+OQRjt9gl6ICdmB/ZFDCGAtSow== - -rimraf@^2.6.3: - version "2.7.1" - resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.7.1.tgz#35797f13a7fdadc566142c29d4f07ccad483e3ec" - integrity sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w== - dependencies: - glob "^7.1.3" - roarr@^2.15.3: version "2.15.4" resolved "https://registry.yarnpkg.com/roarr/-/roarr-2.15.4.tgz#f5fe795b7b838ccfe35dc608e0282b9eba2e7afd" @@ -2117,68 +494,26 @@ roarr@^2.15.3: semver-compare "^1.0.0" sprintf-js "^1.1.2" -safe-buffer@~5.2.0: - version "5.2.1" - resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.2.1.tgz#1eaf9fa9bdb1fdd4ec75f58f9cdb4e6b7827eec6" - integrity sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ== - -"safer-buffer@>= 2.1.2 < 3.0.0": - version "2.1.2" - resolved "https://registry.yarnpkg.com/safer-buffer/-/safer-buffer-2.1.2.tgz#44fa161b0187b9549dd84bb91802f9bd8385cd6a" - integrity sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg== - -sanitize-filename@^1.6.3: - version "1.6.3" - resolved "https://registry.yarnpkg.com/sanitize-filename/-/sanitize-filename-1.6.3.tgz#755ebd752045931977e30b2025d340d7c9090378" - integrity sha512-y/52Mcy7aw3gRm7IrcGDFx/bCk4AhRh2eI9luHOQM86nZsqwiRkkq2GekHXBBD+SmPidc8i2PqtYZl+pWJ8Oeg== - dependencies: - truncate-utf8-bytes "^1.0.0" - sax@^1.2.4: - version "1.5.0" - resolved "https://registry.yarnpkg.com/sax/-/sax-1.5.0.tgz#b5549b671069b7aa392df55ec7574cf411179eb8" - integrity sha512-21IYA3Q5cQf089Z6tgaUTr7lDAyzoTPx5HRtbhsME8Udispad8dC/+sziTNugOEx54ilvatQ9YCzl4KQLPcRHA== + version "1.6.0" + resolved "https://registry.yarnpkg.com/sax/-/sax-1.6.0.tgz#da59637629307b97e7c4cb28e080a7bc38560d5b" + integrity sha512-6R3J5M4AcbtLUdZmRv2SygeVaM7IhrLXu9BmnOGmmACak8fiUtOsYNWUS4uK7upbmHIBbLBeFeI//477BKLBzA== semver-compare@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/semver-compare/-/semver-compare-1.0.0.tgz#0dee216a1c941ab37e9efb1788f6afc5ff5537fc" integrity sha512-YM3/ITh2MJ5MtzaM429anh+x2jiLVjqILF4m4oyQB18W7Ggea7BfqdH/wGMK7dDiMghv/6WG7znWMwUDzJiXow== -semver@^5.5.0: - version "5.7.2" - resolved "https://registry.yarnpkg.com/semver/-/semver-5.7.2.tgz#48d55db737c3287cd4835e17fa13feace1c41ef8" - integrity sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g== - semver@^6.2.0: version "6.3.1" resolved "https://registry.yarnpkg.com/semver/-/semver-6.3.1.tgz#556d2ef8689146e46dcea4bfdd095f3434dffcb4" integrity sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA== -semver@^7.3.2, semver@^7.3.5, semver@^7.5.3, semver@^7.6.3, semver@~7.7.3: +semver@^7.3.2, semver@~7.7.3: version "7.7.4" resolved "https://registry.yarnpkg.com/semver/-/semver-7.7.4.tgz#28464e36060e991fa7a11d0279d2d3f3b57a7e8a" integrity sha512-vFKC2IEtQnVhpT78h1Yp8wzwrf8CM+MzKMHGJZfBtzhZNycRFnXsHk6E5TxIkkMsgNS7mdX3AGB7x2QM2di4lA== -send@0.1.4: - version "0.1.4" - resolved "https://registry.yarnpkg.com/send/-/send-0.1.4.tgz#be70d8d1be01de61821af13780b50345a4f71abd" - integrity sha512-NJnIaB29/EcNqkNneUAm16oEVnzM2LeNBc/hmgKuExv2k9pCZQEw8SHJeCdjqesHJTyWAr7x5HjeOmRFS4BoFw== - dependencies: - debug "*" - fresh "0.2.0" - mime "~1.2.9" - range-parser "0.0.4" - -send@0.2.0: - version "0.2.0" - resolved "https://registry.yarnpkg.com/send/-/send-0.2.0.tgz#067abf45cff8bffb29cbdb7439725b32388a2c58" - integrity sha512-CR/kej5a8BChsMJwpmAtqOgdGI3nemoRaPcoXj/choHibvaOfkYcohcAbd9aEG8MhL9CfRH3KlUb+oHZsdNmTg== - dependencies: - debug "*" - fresh "~0.2.1" - mime "~1.2.9" - range-parser "~1.0.0" - serialize-error@^7.0.1: version "7.0.1" resolved "https://registry.yarnpkg.com/serialize-error/-/serialize-error-7.0.1.tgz#f1360b0447f61ffb483ec4157c737fab7d778e18" @@ -2186,159 +521,11 @@ serialize-error@^7.0.1: dependencies: type-fest "^0.13.1" -serve-static@1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/serve-static/-/serve-static-1.0.1.tgz#10dcbfd44b3e0291a131fc9ab4ab25a9f5a78a42" - integrity sha512-bo0TWkZYykHO97QfRgoaXQQBBmyheAb3MeYFzufTXDHUdaTwJXFa8NejuKbt7UdovoUzB8lJn4gHGQSEC+R4Nw== - dependencies: - send "0.1.4" - -set-function-length@^1.2.2: - version "1.2.2" - resolved "https://registry.yarnpkg.com/set-function-length/-/set-function-length-1.2.2.tgz#aac72314198eaed975cf77b2c3b6b880695e5449" - integrity sha512-pgRc4hJ4/sNjWCSS9AmnS40x3bNMDTknHgL5UaMBTMyJnU90EgWh1Rz+MC9eFu4BuN/UwZjKQuY/1v3rM7HMfg== - dependencies: - define-data-property "^1.1.4" - es-errors "^1.3.0" - function-bind "^1.1.2" - get-intrinsic "^1.2.4" - gopd "^1.0.1" - has-property-descriptors "^1.0.2" - -shebang-command@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/shebang-command/-/shebang-command-2.0.0.tgz#ccd0af4f8835fbdc265b82461aaf0c36663f34ea" - integrity sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA== - dependencies: - shebang-regex "^3.0.0" - -shebang-regex@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-3.0.0.tgz#ae16f1644d873ecad843b0307b143362d4c42172" - integrity sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A== - -signal-exit@^3.0.2: - version "3.0.7" - resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.7.tgz#a9a1767f8af84155114eaabd73f99273c8f59ad9" - integrity sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ== - -signal-exit@^4.0.1: - version "4.1.0" - resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-4.1.0.tgz#952188c1cbd546070e2dd20d0f41c0ae0530cb04" - integrity sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw== - -simple-update-notifier@2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/simple-update-notifier/-/simple-update-notifier-2.0.0.tgz#d70b92bdab7d6d90dfd73931195a30b6e3d7cebb" - integrity sha512-a2B9Y0KlNXl9u/vsW6sTIu9vGEpfKu2wRV6l1H3XEas/0gUIzGzBoP/IouTcUQbm9JWZLH3COxyn03TYlFax6w== - dependencies: - semver "^7.5.3" - -slash@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/slash/-/slash-2.0.0.tgz#de552851a1759df3a8f206535442f5ec4ddeab44" - integrity sha512-ZYKh3Wh2z1PpEXWr0MpSBZ0V6mZHAQfYevttO11c51CaWjGTaadiKZ+wVt1PbMlDV5qhMFslpZCemhwOK7C89A== - -slice-ansi@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/slice-ansi/-/slice-ansi-3.0.0.tgz#31ddc10930a1b7e0b67b08c96c2f49b77a789787" - integrity sha512-pSyv7bSTC7ig9Dcgbw9AuRNUb5k5V6oDudjZoMBSr13qpLBG7tB+zgCkARjq7xIUgdz5P1Qe8u+rSGdouOOIyQ== - dependencies: - ansi-styles "^4.0.0" - astral-regex "^2.0.0" - is-fullwidth-code-point "^3.0.0" - -smart-buffer@^4.0.2, smart-buffer@^4.2.0: - version "4.2.0" - resolved "https://registry.yarnpkg.com/smart-buffer/-/smart-buffer-4.2.0.tgz#6e1d71fa4f18c05f7d0ff216dd16a481d0e8d9ae" - integrity sha512-94hK0Hh8rPqQl2xXc3HsaBoOXKV20MToPkcXvwbISWLEs+64sBq5kFgn2kJDHb1Pry9yrP0dxrCI9RRci7RXKg== - -socks-proxy-agent@^8.0.3: - version "8.0.5" - resolved "https://registry.yarnpkg.com/socks-proxy-agent/-/socks-proxy-agent-8.0.5.tgz#b9cdb4e7e998509d7659d689ce7697ac21645bee" - integrity sha512-HehCEsotFqbPW9sJ8WVYB6UbmIMv7kUUORIF2Nncq4VQvBfNBLibW9YZR5dlYCSUhwcD628pRllm7n+E+YTzJw== - dependencies: - agent-base "^7.1.2" - debug "^4.3.4" - socks "^2.8.3" - -socks@^2.8.3: - version "2.8.7" - resolved "https://registry.yarnpkg.com/socks/-/socks-2.8.7.tgz#e2fb1d9a603add75050a2067db8c381a0b5669ea" - integrity sha512-HLpt+uLy/pxB+bum/9DzAgiKS8CX1EvbWxI4zlmgGCExImLdiad2iCwXT5Z4c9c3Eq8rP2318mPW2c+QbtjK8A== - dependencies: - ip-address "^10.0.1" - smart-buffer "^4.2.0" - -source-map-support@^0.5.19: - version "0.5.21" - resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.5.21.tgz#04fe7c7f9e1ed2d662233c28cb2b35b9f63f6e4f" - integrity sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w== - dependencies: - buffer-from "^1.0.0" - source-map "^0.6.0" - -source-map@^0.6.0: - version "0.6.1" - resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.6.1.tgz#74722af32e9614e9c287a8d0bbde48b5e2f1a263" - integrity sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g== - sprintf-js@^1.1.2: version "1.1.3" resolved "https://registry.yarnpkg.com/sprintf-js/-/sprintf-js-1.1.3.tgz#4914b903a2f8b685d17fdf78a70e917e872e444a" integrity sha512-Oo+0REFV59/rz3gfJNKQiBlwfHaSESl1pcGyABQsnnIfWOFt6JNj5gCog2U6MLZ//IGYD+nA8nI+mTShREReaA== -ssri@^12.0.0: - version "12.0.0" - resolved "https://registry.yarnpkg.com/ssri/-/ssri-12.0.0.tgz#bcb4258417c702472f8191981d3c8a771fee6832" - integrity sha512-S7iGNosepx9RadX82oimUkvr0Ct7IjJbEbs4mJcTxst8um95J3sDYU1RBEOvdu6oL1Wek2ODI5i4MAw+dZ6cAQ== - dependencies: - minipass "^7.0.3" - -stat-mode@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/stat-mode/-/stat-mode-1.0.0.tgz#68b55cb61ea639ff57136f36b216a291800d1465" - integrity sha512-jH9EhtKIjuXZ2cWxmXS8ZP80XyC3iasQxMDV8jzhNJpfDb7VbQLVW4Wvsxz9QZvzV+G4YoSfBUVKDOyxLzi/sg== - -"string-width-cjs@npm:string-width@^4.2.0", string-width@^4.1.0, string-width@^4.2.0, string-width@^4.2.3: - version "4.2.3" - resolved "https://registry.yarnpkg.com/string-width/-/string-width-4.2.3.tgz#269c7117d27b05ad2e536830a8ec895ef9c6d010" - integrity sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g== - dependencies: - emoji-regex "^8.0.0" - is-fullwidth-code-point "^3.0.0" - strip-ansi "^6.0.1" - -string-width@^5.0.1, string-width@^5.1.2: - version "5.1.2" - resolved "https://registry.yarnpkg.com/string-width/-/string-width-5.1.2.tgz#14f8daec6d81e7221d2a357e668cab73bdbca794" - integrity sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA== - dependencies: - eastasianwidth "^0.2.0" - emoji-regex "^9.2.2" - strip-ansi "^7.0.1" - -string_decoder@^1.1.1: - version "1.3.0" - resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.3.0.tgz#42f114594a46cf1a8e30b0a84f56c78c3edac21e" - integrity sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA== - dependencies: - safe-buffer "~5.2.0" - -"strip-ansi-cjs@npm:strip-ansi@^6.0.1", strip-ansi@^6.0.0, strip-ansi@^6.0.1: - version "6.0.1" - resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-6.0.1.tgz#9e26c63d30f53443e9489495b2105d37b67a85d9" - integrity sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A== - dependencies: - ansi-regex "^5.0.1" - -strip-ansi@^7.0.1: - version "7.2.0" - resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-7.2.0.tgz#d22a269522836a627af8d04b5c3fd2c7fa3e32e3" - integrity sha512-yDPMNjp4WyfYBkHnjIRLfca1i6KMyGCtsVgoKe/z1+6vukgaENdgGBZt+ZmKPc4gavvEZ5OgHfHdrazhgNyG7w== - dependencies: - ansi-regex "^6.2.2" - sumchecker@^3.0.1: version "3.0.1" resolved "https://registry.yarnpkg.com/sumchecker/-/sumchecker-3.0.1.tgz#6377e996795abb0b6d348e9b3e1dfb24345a8e42" @@ -2346,115 +533,25 @@ sumchecker@^3.0.1: dependencies: debug "^4.1.0" -supports-color@^7.1.0: - version "7.2.0" - resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-7.2.0.tgz#1b7dcdcb32b8138801b3e478ba6a51caa89648da" - integrity sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw== - dependencies: - has-flag "^4.0.0" - -tar@^7.4.3, tar@^7.5.6, tar@^7.5.7: - version "7.5.9" - resolved "https://registry.yarnpkg.com/tar/-/tar-7.5.9.tgz#817ac12a54bc4362c51340875b8985d7dc9724b8" - integrity sha512-BTLcK0xsDh2+PUe9F6c2TlRp4zOOBMTkoQHQIWSIzI0R7KG46uEwq4OPk2W7bZcprBMsuaeFsqwYr7pjh6CuHg== - dependencies: - "@isaacs/fs-minipass" "^4.0.0" - chownr "^3.0.0" - minipass "^7.1.2" - minizlib "^3.1.0" - yallist "^5.0.0" - -temp-file@^3.4.0: - version "3.4.0" - resolved "https://registry.yarnpkg.com/temp-file/-/temp-file-3.4.0.tgz#766ea28911c683996c248ef1a20eea04d51652c7" - integrity sha512-C5tjlC/HCtVUOi3KWVokd4vHVViOmGjtLwIh4MuzPo/nMYTV/p1urt3RnMz2IWXDdKEGJH3k5+KPxtqRsUYGtg== - dependencies: - async-exit-hook "^2.0.1" - fs-extra "^10.0.0" - -tiny-async-pool@1.3.0: - version "1.3.0" - resolved "https://registry.yarnpkg.com/tiny-async-pool/-/tiny-async-pool-1.3.0.tgz#c013e1b369095e7005db5595f95e646cca6ef8a5" - integrity sha512-01EAw5EDrcVrdgyCLgoSPvqznC0sVxDSVeiOz09FUpjh71G79VCqneOr+xvt7T1r76CF6ZZfPjHorN2+d+3mqA== - dependencies: - semver "^5.5.0" - tiny-typed-emitter@^2.1.0: version "2.1.0" resolved "https://registry.yarnpkg.com/tiny-typed-emitter/-/tiny-typed-emitter-2.1.0.tgz#b3b027fdd389ff81a152c8e847ee2f5be9fad7b5" integrity sha512-qVtvMxeXbVej0cQWKqVSSAHmKZEHAvxdF8HEUBFWts8h+xEo5m/lEiPakuyZ3BnCBjOD8i24kzNOiOLLgsSxhA== -tinyglobby@^0.2.12: - version "0.2.15" - resolved "https://registry.yarnpkg.com/tinyglobby/-/tinyglobby-0.2.15.tgz#e228dd1e638cea993d2fdb4fcd2d4602a79951c2" - integrity sha512-j2Zq4NyQYG5XMST4cbs02Ak8iJUdxRM0XI5QyxXuZOzKOINmWurp3smXu3y5wDcJrptwpSjgXHzIQxR0omXljQ== - dependencies: - fdir "^6.5.0" - picomatch "^4.0.3" - -tmp-promise@^3.0.2: - version "3.0.3" - resolved "https://registry.yarnpkg.com/tmp-promise/-/tmp-promise-3.0.3.tgz#60a1a1cc98c988674fcbfd23b6e3367bdeac4ce7" - integrity sha512-RwM7MoPojPxsOBYnyd2hy0bxtIlVrihNs9pj5SUvY8Zz1sQcQG2tG1hSr8PDxfgEB8RNKDhqbIlroIarSNDNsQ== - dependencies: - tmp "^0.2.0" - -tmp@^0.0.33: - version "0.0.33" - resolved "https://registry.yarnpkg.com/tmp/-/tmp-0.0.33.tgz#6d34335889768d21b2bcda0aa277ced3b1bfadf9" - integrity sha512-jRCJlojKnZ3addtTOjdIqoRuPEKBvNXcGYqzO6zWZX8KfKEpnGY5jfggJQ3EjKuu8D4bJRr0y+cYJFmYbImXGw== - dependencies: - os-tmpdir "~1.0.2" - -tmp@^0.2.0: - version "0.2.5" - resolved "https://registry.yarnpkg.com/tmp/-/tmp-0.2.5.tgz#b06bcd23f0f3c8357b426891726d16015abfd8f8" - integrity sha512-voyz6MApa1rQGUxT3E+BK7/ROe8itEx7vD8/HEvt4xwXucvQ5G5oeEiHkmHZJuBO21RpOf+YYm9MOivj709jow== - -to-regex-range@^5.0.1: - version "5.0.1" - resolved "https://registry.yarnpkg.com/to-regex-range/-/to-regex-range-5.0.1.tgz#1648c44aae7c8d988a326018ed72f5b4dd0392e4" - integrity sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ== - dependencies: - is-number "^7.0.0" - -truncate-utf8-bytes@^1.0.0: - version "1.0.2" - resolved "https://registry.yarnpkg.com/truncate-utf8-bytes/-/truncate-utf8-bytes-1.0.2.tgz#405923909592d56f78a5818434b0b78489ca5f2b" - integrity sha512-95Pu1QXQvruGEhv62XCMO3Mm90GscOCClvrIUwCM0PYOXK3kaF3l3sIHxx71ThJfcbM2O5Au6SO3AWCSEfW4mQ== - dependencies: - utf8-byte-length "^1.0.1" - type-fest@^0.13.1: version "0.13.1" resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.13.1.tgz#0172cb5bce80b0bd542ea348db50c7e21834d934" integrity sha512-34R7HTnG0XIJcBSn5XhDd7nNFPRcXYRZrBB2O2jdKqYODldSzBAqzsWoZYYvduky73toYS/ESqxPvkDf/F0XMg== -type-is@1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/type-is/-/type-is-1.0.0.tgz#4ff424e97349a1ee1910b4bfc488595ecdc443fc" - integrity sha512-CLdmAJgLeMtSPcTFX3eDdC1+ysfYoVdcYjMtuDtg23/fhHXoP5quNsvobr05ZNlG7og+oHQ4bosEzJX++DlIzQ== - dependencies: - mime "~1.2.11" +undici-types@~6.21.0: + version "6.21.0" + resolved "https://registry.yarnpkg.com/undici-types/-/undici-types-6.21.0.tgz#691d00af3909be93a7faa13be61b3a5b50ef12cb" + integrity sha512-iwDZqg0QAGrg9Rav5H4n0M64c3mkR59cJ6wQp+7C4nI0gsmExaedaYLNO44eT4AtBBwjbTiGPMlt2Md0T9H9JQ== -undici-types@~7.18.0: - version "7.18.2" - resolved "https://registry.yarnpkg.com/undici-types/-/undici-types-7.18.2.tgz#29357a89e7b7ca4aef3bf0fd3fd0cd73884229e9" - integrity sha512-AsuCzffGHJybSaRrmr5eHr81mwJU3kjw6M+uprWvCXiNeN9SOGwQ3Jn8jb8m3Z6izVgknn1R0FTCEAP2QrLY/w== - -unique-filename@^4.0.0: - version "4.0.0" - resolved "https://registry.yarnpkg.com/unique-filename/-/unique-filename-4.0.0.tgz#a06534d370e7c977a939cd1d11f7f0ab8f1fed13" - integrity sha512-XSnEewXmQ+veP7xX2dS5Q4yZAvO40cBN2MWkJ7D/6sW4Dg6wYBNwM1Vrnz1FhH5AdeLIlUXRI9e28z1YZi71NQ== - dependencies: - unique-slug "^5.0.0" - -unique-slug@^5.0.0: - version "5.0.0" - resolved "https://registry.yarnpkg.com/unique-slug/-/unique-slug-5.0.0.tgz#ca72af03ad0dbab4dad8aa683f633878b1accda8" - integrity sha512-9OdaqO5kwqR+1kVgHAhsp5vPNU0hnxRa26rBFNfNgM7M6pNtgzeBn3s/xbyCQL3dcjzOatcef6UUHpB/6MaETg== - dependencies: - imurmurhash "^0.1.4" +undici-types@~7.19.0: + version "7.19.2" + resolved "https://registry.yarnpkg.com/undici-types/-/undici-types-7.19.2.tgz#1b67fc26d0f157a0cba3a58a5b5c1e2276b8ba2a" + integrity sha512-qYVnV5OEm2AW8cJMCpdV20CDyaN3g0AjDlOGf1OW4iaDEx8MwdtChUp4zu4H0VP3nDRF/8RKWH+IPp9uW0YGZg== universalify@^0.1.0: version "0.1.2" @@ -2466,124 +563,11 @@ universalify@^2.0.0: resolved "https://registry.yarnpkg.com/universalify/-/universalify-2.0.1.tgz#168efc2180964e6386d061e094df61afe239b18d" integrity sha512-gptHNQghINnc/vTGIk0SOFGFNXw7JVrlRUtConJRlvaw6DuX0wO5Jeko9sWrMBhh+PsYAZ7oXAiOnf/UKogyiw== -uri-js@^4.2.2: - version "4.4.1" - resolved "https://registry.yarnpkg.com/uri-js/-/uri-js-4.4.1.tgz#9b1a52595225859e55f669d928f88c6c57f2a77e" - integrity sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg== - dependencies: - punycode "^2.1.0" - -utf8-byte-length@^1.0.1: - version "1.0.5" - resolved "https://registry.yarnpkg.com/utf8-byte-length/-/utf8-byte-length-1.0.5.tgz#f9f63910d15536ee2b2d5dd4665389715eac5c1e" - integrity sha512-Xn0w3MtiQ6zoz2vFyUVruaCL53O/DwUvkEeOvj+uulMm0BkUGYWmBYVyElqZaSLhY6ZD0ulfU3aBra2aVT4xfA== - -util-deprecate@^1.0.1: - version "1.0.2" - resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf" - integrity sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw== - -utils-merge@1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/utils-merge/-/utils-merge-1.0.0.tgz#0294fb922bb9375153541c4f7096231f287c8af8" - integrity sha512-HwU9SLQEtyo+0uoKXd1nkLqigUWLB+QuNQR4OcmB73eWqksM5ovuqcycks2x043W8XVb75rG1HQ0h93TMXkzQQ== - -verror@^1.10.0: - version "1.10.1" - resolved "https://registry.yarnpkg.com/verror/-/verror-1.10.1.tgz#4bf09eeccf4563b109ed4b3d458380c972b0cdeb" - integrity sha512-veufcmxri4e3XSrT0xwfUR7kguIkaxBeosDg00yDWhk49wdwkSUrvvsm7nc75e1PUyvIeZj6nS8VQRYz2/S4Xg== - dependencies: - assert-plus "^1.0.0" - core-util-is "1.0.2" - extsprintf "^1.2.0" - -wcwidth@^1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/wcwidth/-/wcwidth-1.0.1.tgz#f0b0dcf915bc5ff1528afadb2c0e17b532da2fe8" - integrity sha512-XHPEwS0q6TaxcvG85+8EYkbiCux2XtWG2mkc47Ng2A77BQu9+DqIOJldST4HgPkuea7dvKSj5VgX3P1d4rW8Tg== - dependencies: - defaults "^1.0.3" - -which@^2.0.1: - version "2.0.2" - resolved "https://registry.yarnpkg.com/which/-/which-2.0.2.tgz#7c6a8dd0a636a0327e10b59c9286eee93f3f51b1" - integrity sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA== - dependencies: - isexe "^2.0.0" - -which@^5.0.0: - version "5.0.0" - resolved "https://registry.yarnpkg.com/which/-/which-5.0.0.tgz#d93f2d93f79834d4363c7d0c23e00d07c466c8d6" - integrity sha512-JEdGzHwwkrbWoGOlIHqQ5gtprKGOenpDHpxE9zVR1bWbOtYRyPPHMe9FaP6x61CmNaTThSkb0DAJte5jD+DmzQ== - dependencies: - isexe "^3.1.1" - -"wrap-ansi-cjs@npm:wrap-ansi@^7.0.0", wrap-ansi@^7.0.0: - version "7.0.0" - resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-7.0.0.tgz#67e145cff510a6a6984bdf1152911d69d2eb9e43" - integrity sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q== - dependencies: - ansi-styles "^4.0.0" - string-width "^4.1.0" - strip-ansi "^6.0.0" - -wrap-ansi@^8.1.0: - version "8.1.0" - resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-8.1.0.tgz#56dc22368ee570face1b49819975d9b9a5ead214" - integrity sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ== - dependencies: - ansi-styles "^6.1.0" - string-width "^5.0.1" - strip-ansi "^7.0.1" - wrappy@1: version "1.0.2" resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" integrity sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ== -xmlbuilder@>=11.0.1, xmlbuilder@^15.1.1: - version "15.1.1" - resolved "https://registry.yarnpkg.com/xmlbuilder/-/xmlbuilder-15.1.1.tgz#9dcdce49eea66d8d10b42cae94a79c3c8d0c2ec5" - integrity sha512-yMqGBqtXyeN1e3TGYvgNgDVZ3j84W4cwkOXQswghol6APgZWaff9lnbvN7MHYJOiXsvGPXtjTYJEiC9J2wv9Eg== - -y18n@^5.0.5: - version "5.0.8" - resolved "https://registry.yarnpkg.com/y18n/-/y18n-5.0.8.tgz#7f4934d0f7ca8c56f95314939ddcd2dd91ce1d55" - integrity sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA== - -yallist@^4.0.0: - version "4.0.0" - resolved "https://registry.yarnpkg.com/yallist/-/yallist-4.0.0.tgz#9bb92790d9c0effec63be73519e11a35019a3a72" - integrity sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A== - -yallist@^5.0.0: - version "5.0.0" - resolved "https://registry.yarnpkg.com/yallist/-/yallist-5.0.0.tgz#00e2de443639ed0d78fd87de0d27469fbcffb533" - integrity sha512-YgvUTfwqyc7UXVMrB+SImsVYSmTS8X/tSrtdNZMImM+n7+QTriRXyXim0mBrTXNeqzVF0KWGgHPeiyViFFrNDw== - -yaml@^2.2.2: - version "2.8.2" - resolved "https://registry.yarnpkg.com/yaml/-/yaml-2.8.2.tgz#5694f25eca0ce9c3e7a9d9e00ce0ddabbd9e35c5" - integrity sha512-mplynKqc1C2hTVYxd0PU2xQAc22TI1vShAYGksCCfxbn/dFwnHTNi1bvYsBTkhdUNtGIf5xNOg938rrSSYvS9A== - -yargs-parser@^21.1.1: - version "21.1.1" - resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-21.1.1.tgz#9096bceebf990d21bb31fa9516e0ede294a77d35" - integrity sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw== - -yargs@^17.0.1, yargs@^17.6.2: - version "17.7.2" - resolved "https://registry.yarnpkg.com/yargs/-/yargs-17.7.2.tgz#991df39aca675a192b816e1e0363f9d75d2aa269" - integrity sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w== - dependencies: - cliui "^8.0.1" - escalade "^3.1.1" - get-caller-file "^2.0.5" - require-directory "^2.1.1" - string-width "^4.2.3" - y18n "^5.0.5" - yargs-parser "^21.1.1" - yauzl@^2.10.0: version "2.10.0" resolved "https://registry.yarnpkg.com/yauzl/-/yauzl-2.10.0.tgz#c7eb17c93e112cb1086fa6d8e51fb0667b79a5f9" @@ -2591,8 +575,3 @@ yauzl@^2.10.0: dependencies: buffer-crc32 "~0.2.3" fd-slicer "~1.1.0" - -yocto-queue@^0.1.0: - version "0.1.0" - resolved "https://registry.yarnpkg.com/yocto-queue/-/yocto-queue-0.1.0.tgz#0294eb3dee05028d31ee1a5fa2c556a6aaf10a1b" - integrity sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q== diff --git a/test/fixtures/lockfiles/HoistedNodeModuleTest/yarn two package.json.txt b/test/fixtures/lockfiles/HoistedNodeModuleTest/yarn two package.json.txt index d9c079f8101..4bce111bb7e 100644 --- a/test/fixtures/lockfiles/HoistedNodeModuleTest/yarn two package.json.txt +++ b/test/fixtures/lockfiles/HoistedNodeModuleTest/yarn two package.json.txt @@ -2,37 +2,6 @@ # yarn lockfile v1 -"7zip-bin@~5.2.0": - version "5.2.0" - resolved "https://registry.yarnpkg.com/7zip-bin/-/7zip-bin-5.2.0.tgz#7a03314684dd6572b7dfa89e68ce31d60286854d" - integrity sha512-ukTPVhqG4jNzMro2qA9HSCSSVJN3aN7tlb+hfqYCt3ER0yWroeA2VR38MNrOHLQ/cVj+DaIMad0kFCtWWowh/A== - -"@develar/schema-utils@~2.6.5": - version "2.6.5" - resolved "https://registry.yarnpkg.com/@develar/schema-utils/-/schema-utils-2.6.5.tgz#3ece22c5838402419a6e0425f85742b961d9b6c6" - integrity sha512-0cp4PsWQ/9avqTVMCtZ+GirikIA36ikvjtHweU4/j8yLtgObI0+JUPhYFScgwlteveGB1rt3Cm8UhN04XayDig== - dependencies: - ajv "^6.12.0" - ajv-keywords "^3.4.1" - -"@electron/asar@3.4.1", "@electron/asar@^3.3.1": - version "3.4.1" - resolved "https://registry.yarnpkg.com/@electron/asar/-/asar-3.4.1.tgz#4e9196a4b54fba18c56cd8d5cac67c5bdc588065" - integrity sha512-i4/rNPRS84t0vSRa2HorerGRXWyF4vThfHesw0dmcWHp+cspK743UanA0suA5Q5y8kzY2y6YKrvbIUn69BCAiA== - dependencies: - commander "^5.0.0" - glob "^7.1.6" - minimatch "^3.0.4" - -"@electron/fuses@^1.8.0": - version "1.8.0" - resolved "https://registry.yarnpkg.com/@electron/fuses/-/fuses-1.8.0.tgz#ad34d3cc4703b1258b83f6989917052cfc1490a0" - integrity sha512-zx0EIq78WlY/lBb1uXlziZmDZI4ubcCXIMJ4uGjXzZW0nS19TjSPeXPAjzzTmKQlJUZm0SbmZhPKP7tuQ1SsEw== - dependencies: - chalk "^4.1.1" - fs-extra "^9.0.1" - minimist "^1.2.5" - "@electron/get@^2.0.0": version "2.0.3" resolved "https://registry.yarnpkg.com/@electron/get/-/get-2.0.3.tgz#fba552683d387aebd9f3fcadbcafc8e12ee4f960" @@ -48,133 +17,6 @@ optionalDependencies: global-agent "^3.0.0" -"@electron/get@^3.0.0": - version "3.1.0" - resolved "https://registry.yarnpkg.com/@electron/get/-/get-3.1.0.tgz#22c5a0bd917ab201badeb77bc4ad18cba54cb4ec" - integrity sha512-F+nKc0xW+kVbBRhFzaMgPy3KwmuNTYX1fx6+FxxoSnNgwYX6LD7AKBTWkU0MQ6IBoe7dz069CNkR673sPAgkCQ== - dependencies: - debug "^4.1.1" - env-paths "^2.2.0" - fs-extra "^8.1.0" - got "^11.8.5" - progress "^2.0.3" - semver "^6.2.0" - sumchecker "^3.0.1" - optionalDependencies: - global-agent "^3.0.0" - -"@electron/notarize@2.5.0": - version "2.5.0" - resolved "https://registry.yarnpkg.com/@electron/notarize/-/notarize-2.5.0.tgz#d4d25356adfa29df4a76bd64a8bd347237cd251e" - integrity sha512-jNT8nwH1f9X5GEITXaQ8IF/KdskvIkOFfB2CvwumsveVidzpSc+mvhhTMdAGSYF3O+Nq49lJ7y+ssODRXu06+A== - dependencies: - debug "^4.1.1" - fs-extra "^9.0.1" - promise-retry "^2.0.1" - -"@electron/osx-sign@1.3.3": - version "1.3.3" - resolved "https://registry.yarnpkg.com/@electron/osx-sign/-/osx-sign-1.3.3.tgz#af751510488318d9f7663694af85819690d75583" - integrity sha512-KZ8mhXvWv2rIEgMbWZ4y33bDHyUKMXnx4M0sTyPNK/vcB81ImdeY9Ggdqy0SWbMDgmbqyQ+phgejh6V3R2QuSg== - dependencies: - compare-version "^0.1.2" - debug "^4.3.4" - fs-extra "^10.0.0" - isbinaryfile "^4.0.8" - minimist "^1.2.6" - plist "^3.0.5" - -"@electron/rebuild@^4.0.3": - version "4.0.3" - resolved "https://registry.yarnpkg.com/@electron/rebuild/-/rebuild-4.0.3.tgz#f022f7e66874920fd16a4d802b8605885cb549d3" - integrity sha512-u9vpTHRMkOYCs/1FLiSVAFZ7FbjsXK+bQuzviJZa+lG7BHZl1nz52/IcGvwa3sk80/fc3llutBkbCq10Vh8WQA== - dependencies: - "@malept/cross-spawn-promise" "^2.0.0" - debug "^4.1.1" - detect-libc "^2.0.1" - got "^11.7.0" - graceful-fs "^4.2.11" - node-abi "^4.2.0" - node-api-version "^0.2.1" - node-gyp "^11.2.0" - ora "^5.1.0" - read-binary-file-arch "^1.0.6" - semver "^7.3.5" - tar "^7.5.6" - yargs "^17.0.1" - -"@electron/universal@2.0.3": - version "2.0.3" - resolved "https://registry.yarnpkg.com/@electron/universal/-/universal-2.0.3.tgz#1680df6ced8f128ca0ff24e29c2165d41d78b3ce" - integrity sha512-Wn9sPYIVFRFl5HmwMJkARCCf7rqK/EurkfQ/rJZ14mHP3iYTjZSIOSVonEAnhWeAXwtw7zOekGRlc6yTtZ0t+g== - dependencies: - "@electron/asar" "^3.3.1" - "@malept/cross-spawn-promise" "^2.0.0" - debug "^4.3.1" - dir-compare "^4.2.0" - fs-extra "^11.1.1" - minimatch "^9.0.3" - plist "^3.1.0" - -"@isaacs/cliui@^8.0.2": - version "8.0.2" - resolved "https://registry.yarnpkg.com/@isaacs/cliui/-/cliui-8.0.2.tgz#b37667b7bc181c168782259bab42474fbf52b550" - integrity sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA== - dependencies: - string-width "^5.1.2" - string-width-cjs "npm:string-width@^4.2.0" - strip-ansi "^7.0.1" - strip-ansi-cjs "npm:strip-ansi@^6.0.1" - wrap-ansi "^8.1.0" - wrap-ansi-cjs "npm:wrap-ansi@^7.0.0" - -"@isaacs/fs-minipass@^4.0.0": - version "4.0.1" - resolved "https://registry.yarnpkg.com/@isaacs/fs-minipass/-/fs-minipass-4.0.1.tgz#2d59ae3ab4b38fb4270bfa23d30f8e2e86c7fe32" - integrity sha512-wgm9Ehl2jpeqP3zw/7mo3kRHFp5MEDhqAdwy1fTGkHAwnkGOVsgpvQhL8B5n1qlb01jV3n/bI0ZfZp5lWA1k4w== - dependencies: - minipass "^7.0.4" - -"@malept/cross-spawn-promise@^2.0.0": - version "2.0.0" - resolved "https://registry.yarnpkg.com/@malept/cross-spawn-promise/-/cross-spawn-promise-2.0.0.tgz#d0772de1aa680a0bfb9ba2f32b4c828c7857cb9d" - integrity sha512-1DpKU0Z5ThltBwjNySMC14g0CkbyhCaz9FkhxqNsZI6uAPJXFS8cMXlBKo26FJ8ZuW6S9GCMcR9IO5k2X5/9Fg== - dependencies: - cross-spawn "^7.0.1" - -"@malept/flatpak-bundler@^0.4.0": - version "0.4.0" - resolved "https://registry.yarnpkg.com/@malept/flatpak-bundler/-/flatpak-bundler-0.4.0.tgz#e8a32c30a95d20c2b1bb635cc580981a06389858" - integrity sha512-9QOtNffcOF/c1seMCDnjckb3R9WHcG34tky+FHpNKKCW0wc/scYLwMtO+ptyGUfMW0/b/n4qRiALlaFHc9Oj7Q== - dependencies: - debug "^4.1.1" - fs-extra "^9.0.0" - lodash "^4.17.15" - tmp-promise "^3.0.2" - -"@npmcli/agent@^3.0.0": - version "3.0.0" - resolved "https://registry.yarnpkg.com/@npmcli/agent/-/agent-3.0.0.tgz#1685b1fbd4a1b7bb4f930cbb68ce801edfe7aa44" - integrity sha512-S79NdEgDQd/NGCay6TCoVzXSj74skRZIKJcpJjC5lOq34SZzyI6MqtiiWoiVWoVrTcGjNeC4ipbh1VIHlpfF5Q== - dependencies: - agent-base "^7.1.0" - http-proxy-agent "^7.0.0" - https-proxy-agent "^7.0.1" - lru-cache "^10.0.1" - socks-proxy-agent "^8.0.3" - -"@npmcli/fs@^4.0.0": - version "4.0.0" - resolved "https://registry.yarnpkg.com/@npmcli/fs/-/fs-4.0.0.tgz#a1eb1aeddefd2a4a347eca0fab30bc62c0e1c0f2" - integrity sha512-/xGlezI6xfGO9NwuJlnwz/K14qD1kCSAGtacBHnGzeAIuJGazcp45KP5NuyARXoKb7cwulAGWVsbeSxdG/cb0Q== - dependencies: - semver "^7.3.5" - -"@pkgjs/parseargs@^0.11.0": - version "0.11.0" - resolved "https://registry.yarnpkg.com/@pkgjs/parseargs/-/parseargs-0.11.0.tgz#a77ea742fab25775145434eb1d2328cf5013ac33" - integrity sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg== - "@sindresorhus/is@^4.0.0": version "4.6.0" resolved "https://registry.yarnpkg.com/@sindresorhus/is/-/is-4.6.0.tgz#3c7c9c46e678feefe7a2e5bb609d3dbd665ffb3f" @@ -197,20 +39,6 @@ "@types/node" "*" "@types/responselike" "^1.0.0" -"@types/debug@^4.1.6": - version "4.1.12" - resolved "https://registry.yarnpkg.com/@types/debug/-/debug-4.1.12.tgz#a155f21690871953410df4b6b6f53187f0500917" - integrity sha512-vIChWdVG3LG1SMxEvI/AK+FWJthlrqlTu7fbrlywTkkaONwk/UAGaULXRlf8vkzFBLVm0zkMdCquhL5aOjhXPQ== - dependencies: - "@types/ms" "*" - -"@types/fs-extra@9.0.13", "@types/fs-extra@^9.0.11": - version "9.0.13" - resolved "https://registry.yarnpkg.com/@types/fs-extra/-/fs-extra-9.0.13.tgz#7594fbae04fe7f1918ce8b3d213f74ff44ac1f45" - integrity sha512-nEnwB++1u5lVDM2UI4c1+5R+FYaKfaAzS4OococimjVm3nQw3TuzH5UNsocrcTBbhnerblyHj4A49qXbIiZdpA== - dependencies: - "@types/node" "*" - "@types/http-cache-semantics@*": version "4.2.0" resolved "https://registry.yarnpkg.com/@types/http-cache-semantics/-/http-cache-semantics-4.2.0.tgz#f6a7788f438cbfde15f29acad46512b4c01913b3" @@ -223,30 +51,19 @@ dependencies: "@types/node" "*" -"@types/ms@*": - version "2.1.0" - resolved "https://registry.yarnpkg.com/@types/ms/-/ms-2.1.0.tgz#052aa67a48eccc4309d7f0191b7e41434b90bb78" - integrity sha512-GsCCIZDE/p3i96vtEqx+7dBUGXrc7zeSK3wwPHIaRThS+9OhWIXRqzs4d6k1SVU8g91DrNRWxWUGhp5KXQb2VA== - "@types/node@*": - version "25.3.3" - resolved "https://registry.yarnpkg.com/@types/node/-/node-25.3.3.tgz#605862544ee7ffd7a936bcbf0135a14012f1e549" - integrity sha512-DpzbrH7wIcBaJibpKo9nnSQL0MTRdnWttGyE5haGwK86xgMOkFLp7vEyfQPGLOJh5wNYiJ3V9PmUMDhV9u8kkQ== + version "25.6.0" + resolved "https://registry.yarnpkg.com/@types/node/-/node-25.6.0.tgz#4e09bad9b469871f2d0f68140198cbd714f4edca" + integrity sha512-+qIYRKdNYJwY3vRCZMdJbPLJAtGjQBudzZzdzwQYkEPQd+PJGixUL5QfvCLDaULoLv+RhT3LDkwEfKaAkgSmNQ== dependencies: - undici-types "~7.18.0" - -"@types/node@^16.11.26": - version "16.18.126" - resolved "https://registry.yarnpkg.com/@types/node/-/node-16.18.126.tgz#27875faa2926c0f475b39a8bb1e546c0176f8d4b" - integrity sha512-OTcgaiwfGFBKacvfwuHzzn1KLxH/er8mluiy8/uM3sGXHaRe73RrSIj01jow9t4kJEW633Ov+cOexXeiApTyAw== + undici-types "~7.19.0" -"@types/plist@^3.0.1": - version "3.0.5" - resolved "https://registry.yarnpkg.com/@types/plist/-/plist-3.0.5.tgz#9a0c49c0f9886c8c8696a7904dd703f6284036e0" - integrity sha512-E6OCaRmAe4WDmWNsL/9RMqdkkzDCY1etutkflWk4c+AcjDU07Pcz1fQwTX0TQz+Pxqn9i4L1TU3UFpjnrcDgxA== +"@types/node@^22.7.7": + version "22.19.17" + resolved "https://registry.yarnpkg.com/@types/node/-/node-22.19.17.tgz#09c71fb34ba2510f8ac865361b1fcb9552b8a581" + integrity sha512-wGdMcf+vPYM6jikpS/qhg6WiqSV/OhG+jeeHT/KlVqxYfD40iYJf9/AE1uQxVWFvU7MipKRkRv8NSHiCGgPr8Q== dependencies: - "@types/node" "*" - xmlbuilder ">=11.0.1" + undici-types "~6.21.0" "@types/responselike@^1.0.0": version "1.0.3" @@ -255,11 +72,6 @@ dependencies: "@types/node" "*" -"@types/verror@^1.10.3": - version "1.10.11" - resolved "https://registry.yarnpkg.com/@types/verror/-/verror-1.10.11.tgz#d3d6b418978c8aa202d41e5bb3483227b6ecc1bb" - integrity sha512-RlDm9K7+o5stv0Co8i8ZRGxDbrTxhJtgjqjFyVh/tXQyl/rYtTKlnTvZ88oSTeYREWurwx20Js4kTuKCsFkUtg== - "@types/yauzl@^2.9.1": version "2.10.3" resolved "https://registry.yarnpkg.com/@types/yauzl/-/yauzl-2.10.3.tgz#e9b2808b4f109504a03cda958259876f61017999" @@ -267,21 +79,11 @@ dependencies: "@types/node" "*" -"@xmldom/xmldom@^0.8.8": - version "0.8.11" - resolved "https://registry.yarnpkg.com/@xmldom/xmldom/-/xmldom-0.8.11.tgz#b79de2d67389734c57c52595f7a7305e30c2d608" - integrity sha512-cQzWCtO6C8TQiYl1ruKNn2U6Ao4o4WBBcbL61yJl84x+j5sOWWFU9X7DpND8XZG3daDppSsigMdfAIl2upQBRw== - "@yarnpkg/lockfile@^1.1.0": version "1.1.0" resolved "https://registry.yarnpkg.com/@yarnpkg/lockfile/-/lockfile-1.1.0.tgz#e77a97fbd345b76d83245edcd17d393b1b41fb31" integrity sha512-GpSwvyXOcOOlV70vbnzjj4fW5xW/FdUF6nQEt1ENy7m4ZCczi1+/buVUPAqmGfqznsORNFzUMjctTIp8a9tuCQ== -abbrev@^3.0.0: - version "3.0.1" - resolved "https://registry.yarnpkg.com/abbrev/-/abbrev-3.0.1.tgz#8ac8b3b5024d31464fe2a5feeea9f4536bf44025" - integrity sha512-AO2ac6pjRB3SJmGJo+v5/aK6Omggp6fsLrs6wN9bd35ulu4cCwaAU9+7ZhXjeqHVkaHThLuzH0nZr0YpCDhygg== - accepts@1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/accepts/-/accepts-1.0.0.tgz#3604c765586c3b9cf7877b6937cdbd4587f947dc" @@ -290,125 +92,18 @@ accepts@1.0.0: mime "~1.2.11" negotiator "~0.3.0" -agent-base@^7.1.0, agent-base@^7.1.2: - version "7.1.4" - resolved "https://registry.yarnpkg.com/agent-base/-/agent-base-7.1.4.tgz#e3cd76d4c548ee895d3c3fd8dc1f6c5b9032e7a8" - integrity sha512-MnA+YT8fwfJPgBx3m60MNqakm30XOkyIoH1y6huTQvC0PwZG7ki8NacLBcrPbNoo8vEZy7Jpuk7+jMO+CUovTQ== - -ajv-keywords@^3.4.1: - version "3.5.2" - resolved "https://registry.yarnpkg.com/ajv-keywords/-/ajv-keywords-3.5.2.tgz#31f29da5ab6e00d1c2d329acf7b5929614d5014d" - integrity sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ== - -ajv@^6.10.0, ajv@^6.12.0: - version "6.14.0" - resolved "https://registry.yarnpkg.com/ajv/-/ajv-6.14.0.tgz#fd067713e228210636ebb08c60bd3765d6dbe73a" - integrity sha512-IWrosm/yrn43eiKqkfkHis7QioDleaXQHdDVPKg0FSwwd/DuvyX79TZnFOnYpB7dcsFAMmtFztZuXPDvSePkFw== - dependencies: - fast-deep-equal "^3.1.1" - fast-json-stable-stringify "^2.0.0" - json-schema-traverse "^0.4.1" - uri-js "^4.2.2" - -ansi-regex@^5.0.1: - version "5.0.1" - resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-5.0.1.tgz#082cb2c89c9fe8659a311a53bd6a4dc5301db304" - integrity sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ== - -ansi-regex@^6.2.2: - version "6.2.2" - resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-6.2.2.tgz#60216eea464d864597ce2832000738a0589650c1" - integrity sha512-Bq3SmSpyFHaWjPk8If9yc6svM8c56dB5BAtW4Qbw5jHTwwXXcTLoRMkpDJp6VL0XzlWaCHTXrkFURMYmD0sLqg== - -ansi-styles@^4.0.0, ansi-styles@^4.1.0: +ansi-styles@^4.1.0: version "4.3.0" resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-4.3.0.tgz#edd803628ae71c04c85ae7a0906edad34b648937" integrity sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg== dependencies: color-convert "^2.0.1" -ansi-styles@^6.1.0: - version "6.2.3" - resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-6.2.3.tgz#c044d5dcc521a076413472597a1acb1f103c4041" - integrity sha512-4Dj6M28JB+oAH8kFkTLUo+a2jwOFkuqb3yucU0CANcRRUbxS0cP0nZYCGjcc3BNXwRIsUVmDGgzawme7zvJHvg== - -app-builder-bin@5.0.0-alpha.12: - version "5.0.0-alpha.12" - resolved "https://registry.yarnpkg.com/app-builder-bin/-/app-builder-bin-5.0.0-alpha.12.tgz#2daf82f8badc698e0adcc95ba36af4ff0650dc80" - integrity sha512-j87o0j6LqPL3QRr8yid6c+Tt5gC7xNfYo6uQIQkorAC6MpeayVMZrEDzKmJJ/Hlv7EnOQpaRm53k6ktDYZyB6w== - -app-builder-lib@26.8.1: - version "26.8.1" - resolved "https://registry.yarnpkg.com/app-builder-lib/-/app-builder-lib-26.8.1.tgz#315c893bf1f5882cc6cd174cfcd00535dbb76786" - integrity sha512-p0Im/Dx5C4tmz8QEE1Yn4MkuPC8PrnlRneMhWJj7BBXQfNTJUshM/bp3lusdEsDbvvfJZpXWnYesgSLvwtM2Zw== - dependencies: - "@develar/schema-utils" "~2.6.5" - "@electron/asar" "3.4.1" - "@electron/fuses" "^1.8.0" - "@electron/get" "^3.0.0" - "@electron/notarize" "2.5.0" - "@electron/osx-sign" "1.3.3" - "@electron/rebuild" "^4.0.3" - "@electron/universal" "2.0.3" - "@malept/flatpak-bundler" "^0.4.0" - "@types/fs-extra" "9.0.13" - async-exit-hook "^2.0.1" - builder-util "26.8.1" - builder-util-runtime "9.5.1" - chromium-pickle-js "^0.2.0" - ci-info "4.3.1" - debug "^4.3.4" - dotenv "^16.4.5" - dotenv-expand "^11.0.6" - ejs "^3.1.8" - electron-publish "26.8.1" - fs-extra "^10.1.0" - hosted-git-info "^4.1.0" - isbinaryfile "^5.0.0" - jiti "^2.4.2" - js-yaml "^4.1.0" - json5 "^2.2.3" - lazy-val "^1.0.5" - minimatch "^10.0.3" - plist "3.1.0" - proper-lockfile "^4.1.2" - resedit "^1.7.0" - semver "~7.7.3" - tar "^7.5.7" - temp-file "^3.4.0" - tiny-async-pool "1.3.0" - which "^5.0.0" - argparse@^2.0.1: version "2.0.1" resolved "https://registry.yarnpkg.com/argparse/-/argparse-2.0.1.tgz#246f50f3ca78a3240f6c997e8a9bd1eac49e4b38" integrity sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q== -assert-plus@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-1.0.0.tgz#f12e0f3c5d77b0b1cdd9146942e4e96c1e4dd525" - integrity sha512-NfJ4UzBCcQGLDlQq7nHxH+tv3kyZ0hHQqF5BO6J7tNJeP5do1llPr8dZ8zHonfhAu0PHAdMkSo+8o0wxg9lZWw== - -astral-regex@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/astral-regex/-/astral-regex-2.0.0.tgz#483143c567aeed4785759c0865786dc77d7d2e31" - integrity sha512-Z7tMw1ytTXt5jqMcOP+OQteU1VuNK9Y02uuJtKQ1Sv69jXQKKg5cibLwGJow8yzZP+eAc18EmLGPal0bp36rvQ== - -async-exit-hook@^2.0.1: - version "2.0.1" - resolved "https://registry.yarnpkg.com/async-exit-hook/-/async-exit-hook-2.0.1.tgz#8bd8b024b0ec9b1c01cccb9af9db29bd717dfaf3" - integrity sha512-NW2cX8m1Q7KPA7a5M2ULQeZ2wR5qI5PAbw5L0UOMxdioVk9PMZ0h1TmyZEkPYrCvYjDlFICusOu1dlEKAAeXBw== - -async@^3.2.6: - version "3.2.6" - resolved "https://registry.yarnpkg.com/async/-/async-3.2.6.tgz#1b0728e14929d51b85b449b7f06e27c1145e38ce" - integrity sha512-htCUDlxyyCLMgaM3xXg0C0LW2xqfuQ6p05pCEIsXuyQ+a1koYKTuBMzRNwmybfLgvJDMd0r1LTn4+E0Ti6C2AA== - -asynckit@^0.4.0: - version "0.4.0" - resolved "https://registry.yarnpkg.com/asynckit/-/asynckit-0.4.0.tgz#c79ed97f7f34cb8f2ba1bc9790bcc366474b4b79" - integrity sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q== - at-least-node@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/at-least-node/-/at-least-node-1.0.0.tgz#602cd4b46e844ad4effc92a8011a3c46e0238dc2" @@ -419,52 +114,19 @@ balanced-match@^1.0.0: resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.2.tgz#e83e3a7e3f300b34cb9d87f615fa0cbf357690ee" integrity sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw== -balanced-match@^4.0.2: - version "4.0.4" - resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-4.0.4.tgz#bfb10662feed8196a2c62e7c68e17720c274179a" - integrity sha512-BLrgEcRTwX2o6gGxGOCNyMvGSp35YofuYzw9h1IMTRmKqttAZZVU67bdb9Pr2vUHA8+j3i2tJfjO6C6+4myGTA== - -base64-js@^1.3.1, base64-js@^1.5.1: - version "1.5.1" - resolved "https://registry.yarnpkg.com/base64-js/-/base64-js-1.5.1.tgz#1b1b440160a5bf7ad40b650f095963481903930a" - integrity sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA== - -bl@^4.1.0: - version "4.1.0" - resolved "https://registry.yarnpkg.com/bl/-/bl-4.1.0.tgz#451535264182bec2fbbc83a62ab98cf11d9f7b3a" - integrity sha512-1W07cM9gS6DcLperZfFSj+bWLtaPGSOHWhPiGzXmvVJbRLdG82sH/Kn8EtW1VqWVA54AKf2h5k5BbnIbwF3h6w== - dependencies: - buffer "^5.5.0" - inherits "^2.0.4" - readable-stream "^3.4.0" - boolean@^3.0.1: version "3.2.0" resolved "https://registry.yarnpkg.com/boolean/-/boolean-3.2.0.tgz#9e5294af4e98314494cbb17979fa54ca159f116b" integrity sha512-d0II/GO9uf9lfUHH2BQsjxzRJZBdsjgsBiW4BvhWk/3qoKwQFjIDVN19PfX8F2D/r9PCMTtLWjYVCFrpeYUzsw== brace-expansion@^1.1.7: - version "1.1.12" - resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.12.tgz#ab9b454466e5a8cc3a187beaad580412a9c5b843" - integrity sha512-9T9UjW3r0UW5c1Q7GTwllptXwhvYmEzFhzMfZ9H7FQWt+uZePjZPjBP/W1ZEyZ1twGWom5/56TF4lPcqjnDHcg== + version "1.1.14" + resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.14.tgz#d9de602370d91347cd9ddad1224d4fd701eb348b" + integrity sha512-MWPGfDxnyzKU7rNOW9SP/c50vi3xrmrua/+6hfPbCS2ABNWfx24vPidzvC7krjU/RTo235sV776ymlsMtGKj8g== dependencies: balanced-match "^1.0.0" concat-map "0.0.1" -brace-expansion@^2.0.1, brace-expansion@^2.0.2: - version "2.0.2" - resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-2.0.2.tgz#54fc53237a613d854c7bd37463aad17df87214e7" - integrity sha512-Jt0vHyM+jmUBqojB7E1NIYadt0vI0Qxjxd2TErW94wDz+E2LAm5vKMXXwg6ZZBTHPuUlDgQHKXvjGBdfcF1ZDQ== - dependencies: - balanced-match "^1.0.0" - -brace-expansion@^5.0.2: - version "5.0.4" - resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-5.0.4.tgz#614daaecd0a688f660bbbc909a8748c3d80d4336" - integrity sha512-h+DEnpVvxmfVefa4jFbCf5HdH5YMDXRsmKflpf1pILZWRFlTbJpxeU55nJl4Smt5HQaGzg1o6RHFPJaOqnmBDg== - dependencies: - balanced-match "^4.0.2" - braces@^3.0.3: version "3.0.3" resolved "https://registry.yarnpkg.com/braces/-/braces-3.0.3.tgz#490332f40919452272d55a8480adc0c441358789" @@ -482,19 +144,6 @@ buffer-crc32@~0.2.3: resolved "https://registry.yarnpkg.com/buffer-crc32/-/buffer-crc32-0.2.13.tgz#0d333e3f00eac50aa1454abd30ef8c2a5d9a7242" integrity sha512-VO9Ht/+p3SN7SKWqcrgEzjGbRSJYTx+Q1pTQC0wrWqHx0vpJraQ6GtHx8tvcg1rlK1byhU5gccxgOgj7B0TDkQ== -buffer-from@^1.0.0: - version "1.1.2" - resolved "https://registry.yarnpkg.com/buffer-from/-/buffer-from-1.1.2.tgz#2b146a6fd72e80b4f55d255f35ed59a3a9a41bd5" - integrity sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ== - -buffer@^5.1.0, buffer@^5.5.0: - version "5.7.1" - resolved "https://registry.yarnpkg.com/buffer/-/buffer-5.7.1.tgz#ba62e7c13133053582197160851a8f648e99eed0" - integrity sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ== - dependencies: - base64-js "^1.3.1" - ieee754 "^1.1.13" - builder-util-runtime@9.5.1: version "9.5.1" resolved "https://registry.yarnpkg.com/builder-util-runtime/-/builder-util-runtime-9.5.1.tgz#74125fb374d1ecbf472ae1787485485ff7619702" @@ -503,46 +152,6 @@ builder-util-runtime@9.5.1: debug "^4.3.4" sax "^1.2.4" -builder-util@26.8.1: - version "26.8.1" - resolved "https://registry.yarnpkg.com/builder-util/-/builder-util-26.8.1.tgz#50fdfc2d4ffeb6f739af363b5bd60c49c95d4170" - integrity sha512-pm1lTYbGyc90DHgCDO7eo8Rl4EqKLciayNbZqGziqnH9jrlKe8ZANGdityLZU+pJh16dfzjAx2xQq9McuIPEtw== - dependencies: - "7zip-bin" "~5.2.0" - "@types/debug" "^4.1.6" - app-builder-bin "5.0.0-alpha.12" - builder-util-runtime "9.5.1" - chalk "^4.1.2" - cross-spawn "^7.0.6" - debug "^4.3.4" - fs-extra "^10.1.0" - http-proxy-agent "^7.0.0" - https-proxy-agent "^7.0.0" - js-yaml "^4.1.0" - sanitize-filename "^1.6.3" - source-map-support "^0.5.19" - stat-mode "^1.0.0" - temp-file "^3.4.0" - tiny-async-pool "1.3.0" - -cacache@^19.0.1: - version "19.0.1" - resolved "https://registry.yarnpkg.com/cacache/-/cacache-19.0.1.tgz#3370cc28a758434c85c2585008bd5bdcff17d6cd" - integrity sha512-hdsUxulXCi5STId78vRVYEtDAjq99ICAUktLTeTYsLoTE6Z8dS0c8pWNCxwdrk9YfJeobDZc2Y186hD/5ZQgFQ== - dependencies: - "@npmcli/fs" "^4.0.0" - fs-minipass "^3.0.0" - glob "^10.2.2" - lru-cache "^10.0.1" - minipass "^7.0.3" - minipass-collect "^2.0.1" - minipass-flush "^1.0.5" - minipass-pipeline "^1.2.4" - p-map "^7.0.2" - ssri "^12.0.0" - tar "^7.4.3" - unique-filename "^4.0.0" - cacheable-lookup@^5.0.3: version "5.0.4" resolved "https://registry.yarnpkg.com/cacheable-lookup/-/cacheable-lookup-5.0.4.tgz#5a6b865b2c44357be3d5ebc2a467b032719a7005" @@ -561,7 +170,7 @@ cacheable-request@^7.0.2: normalize-url "^6.0.1" responselike "^2.0.0" -call-bind-apply-helpers@^1.0.0, call-bind-apply-helpers@^1.0.1, call-bind-apply-helpers@^1.0.2: +call-bind-apply-helpers@^1.0.1, call-bind-apply-helpers@^1.0.2: version "1.0.2" resolved "https://registry.yarnpkg.com/call-bind-apply-helpers/-/call-bind-apply-helpers-1.0.2.tgz#4b5428c222be985d79c3d82657479dbe0b59b2d6" integrity sha512-Sp1ablJ0ivDkSzjcaJdxEunN5/XvksFJ2sMBFfq6x0ryhQV/2b/KwFe21cMpmHtPOSij8K99/wSfoEuTObmuMQ== @@ -570,13 +179,13 @@ call-bind-apply-helpers@^1.0.0, call-bind-apply-helpers@^1.0.1, call-bind-apply- function-bind "^1.1.2" call-bind@^1.0.8: - version "1.0.8" - resolved "https://registry.yarnpkg.com/call-bind/-/call-bind-1.0.8.tgz#0736a9660f537e3388826f440d5ec45f744eaa4c" - integrity sha512-oKlSFMcMwpUg2ednkhQ454wfWiU/ul3CkJe/PEHcTKuiX6RpbehUiFMXu13HalGZxfUwCQzZG747YXBn1im9ww== + version "1.0.9" + resolved "https://registry.yarnpkg.com/call-bind/-/call-bind-1.0.9.tgz#39a644700c80bc7d0ca9102fc6d1d43b2fd7eee7" + integrity sha512-a/hy+pNsFUTR+Iz8TCJvXudKVLAnz/DyeSUo10I5yvFDQJBFU2s9uqQpoSrJlroHUKoKqzg+epxyP9lqFdzfBQ== dependencies: - call-bind-apply-helpers "^1.0.0" - es-define-property "^1.0.0" - get-intrinsic "^1.2.4" + call-bind-apply-helpers "^1.0.2" + es-define-property "^1.0.1" + get-intrinsic "^1.3.0" set-function-length "^1.2.2" call-bound@^1.0.4: @@ -587,7 +196,7 @@ call-bound@^1.0.4: call-bind-apply-helpers "^1.0.2" get-intrinsic "^1.3.0" -chalk@^4.1.0, chalk@^4.1.1, chalk@^4.1.2: +chalk@^4.1.2: version "4.1.2" resolved "https://registry.yarnpkg.com/chalk/-/chalk-4.1.2.tgz#aac4e2b7734a740867aeb16bf02aad556a1e7a01" integrity sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA== @@ -595,60 +204,11 @@ chalk@^4.1.0, chalk@^4.1.1, chalk@^4.1.2: ansi-styles "^4.1.0" supports-color "^7.1.0" -chownr@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/chownr/-/chownr-3.0.0.tgz#9855e64ecd240a9cc4267ce8a4aa5d24a1da15e4" - integrity sha512-+IxzY9BZOQd/XuYPRmrvEVjF/nqj5kgT4kEq7VofrDoM1MxoRjEWkrCC3EtLi59TVawxTAn+orJwFQcrqEN1+g== - -chromium-pickle-js@^0.2.0: - version "0.2.0" - resolved "https://registry.yarnpkg.com/chromium-pickle-js/-/chromium-pickle-js-0.2.0.tgz#04a106672c18b085ab774d983dfa3ea138f22205" - integrity sha512-1R5Fho+jBq0DDydt+/vHWj5KJNJCKdARKOCwZUen84I5BreWoLqRLANH1U87eJy1tiASPtMnGqJJq0ZsLoRPOw== - -ci-info@4.3.1: - version "4.3.1" - resolved "https://registry.yarnpkg.com/ci-info/-/ci-info-4.3.1.tgz#355ad571920810b5623e11d40232f443f16f1daa" - integrity sha512-Wdy2Igu8OcBpI2pZePZ5oWjPC38tmDVx5WKUXKwlLYkA0ozo85sLsLvkBbBn/sZaSCMFOGZJ14fvW9t5/d7kdA== - ci-info@^3.7.0: version "3.9.0" resolved "https://registry.yarnpkg.com/ci-info/-/ci-info-3.9.0.tgz#4279a62028a7b1f262f3473fc9605f5e218c59b4" integrity sha512-NIxF55hv4nSqQswkAeiOi1r83xy8JldOFDTWiug55KBu9Jnblncd2U6ViHmYgHf01TPZS77NJBhBMKdWj9HQMQ== -ci-info@^4.2.0: - version "4.4.0" - resolved "https://registry.yarnpkg.com/ci-info/-/ci-info-4.4.0.tgz#7d54eff9f54b45b62401c26032696eb59c8bd18c" - integrity sha512-77PSwercCZU2Fc4sX94eF8k8Pxte6JAwL4/ICZLFjJLqegs7kCuAsqqj/70NQF6TvDpgFjkubQB2FW2ZZddvQg== - -cli-cursor@^3.1.0: - version "3.1.0" - resolved "https://registry.yarnpkg.com/cli-cursor/-/cli-cursor-3.1.0.tgz#264305a7ae490d1d03bf0c9ba7c925d1753af307" - integrity sha512-I/zHAwsKf9FqGoXM4WWRACob9+SNukZTd94DWF57E4toouRulbCxcUh6RKUEOQlYTHJnzkPMySvPNaaSLNfLZw== - dependencies: - restore-cursor "^3.1.0" - -cli-spinners@^2.5.0: - version "2.9.2" - resolved "https://registry.yarnpkg.com/cli-spinners/-/cli-spinners-2.9.2.tgz#1773a8f4b9c4d6ac31563df53b3fc1d79462fe41" - integrity sha512-ywqV+5MmyL4E7ybXgKys4DugZbX0FC6LnwrhjuykIjnK9k8OQacQ7axGKnjDXWNhns0xot3bZI5h55H8yo9cJg== - -cli-truncate@^2.1.0: - version "2.1.0" - resolved "https://registry.yarnpkg.com/cli-truncate/-/cli-truncate-2.1.0.tgz#c39e28bf05edcde5be3b98992a22deed5a2b93c7" - integrity sha512-n8fOixwDD6b/ObinzTrp1ZKFzbgvKZvuz/TvejnLn1aQfC6r52XEx85FmuC+3HI+JM7coBRXUvNqEU2PHVrHpg== - dependencies: - slice-ansi "^3.0.0" - string-width "^4.2.0" - -cliui@^8.0.1: - version "8.0.1" - resolved "https://registry.yarnpkg.com/cliui/-/cliui-8.0.1.tgz#0c04b075db02cbfe60dc8e6cf2f5486b1a3608aa" - integrity sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ== - dependencies: - string-width "^4.2.0" - strip-ansi "^6.0.1" - wrap-ansi "^7.0.0" - clone-response@^1.0.2: version "1.0.3" resolved "https://registry.yarnpkg.com/clone-response/-/clone-response-1.0.3.tgz#af2032aa47816399cf5f0a1d0db902f517abb8c3" @@ -656,11 +216,6 @@ clone-response@^1.0.2: dependencies: mimic-response "^1.0.0" -clone@^1.0.2: - version "1.0.4" - resolved "https://registry.yarnpkg.com/clone/-/clone-1.0.4.tgz#da309cc263df15994c688ca902179ca3c7cd7c7e" - integrity sha512-JQHZ2QMW6l3aH/j6xCqQThY/9OH4D/9ls34cgkUBiEeocRTU04tHfKPBsUK1PqZCUQM7GiA0IIXJSuXHI64Kbg== - color-convert@^2.0.1: version "2.0.1" resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-2.0.1.tgz#72d3a68d598c9bdb3af2ad1e84f21d896abd4de3" @@ -673,23 +228,6 @@ color-name@~1.1.4: resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.4.tgz#c2a09a87acbde69543de6f63fa3995c826c536a2" integrity sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA== -combined-stream@^1.0.8: - version "1.0.8" - resolved "https://registry.yarnpkg.com/combined-stream/-/combined-stream-1.0.8.tgz#c3d45a8b34fd730631a110a8a2520682b31d5a7f" - integrity sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg== - dependencies: - delayed-stream "~1.0.0" - -commander@^5.0.0: - version "5.1.0" - resolved "https://registry.yarnpkg.com/commander/-/commander-5.1.0.tgz#46abbd1652f8e059bddaef99bbdcb2ad9cf179ae" - integrity sha512-P0CysNDQ7rtVw4QIQtm+MRxV66vKFSvlsQvGYXZWR3qFU0jlMKHZZZgw8e+8DSah4UDKMqnknRDQz+xuQXQ/Zg== - -compare-version@^0.1.2: - version "0.1.2" - resolved "https://registry.yarnpkg.com/compare-version/-/compare-version-0.1.2.tgz#0162ec2d9351f5ddd59a9202cba935366a725080" - integrity sha512-pJDh5/4wrEnXX/VWRZvruAGHkzKdr46z11OlTPN+VrATlWWhSKewNCJ1futCO5C7eJB3nPMFZA1LeYtcFboZ2A== - concat-map@0.0.1: version "0.0.1" resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" @@ -705,19 +243,7 @@ cookie@0.1.0: resolved "https://registry.yarnpkg.com/cookie/-/cookie-0.1.0.tgz#90eb469ddce905c866de687efc43131d8801f9d0" integrity sha512-YSNOBX085/nzHvrTLEHYHoNdkvpLU1MPjU3r1IGawudZJjfuqnRNIFrcOJJ7bfwC+HWbHL1Y4yMkC0O+HWjV7w== -core-util-is@1.0.2: - version "1.0.2" - resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.2.tgz#b5fd54220aa2bc5ab57aab7140c940754503c1a7" - integrity sha512-3lqz5YjWTYnW6dlDa5TLaTCcShfar1e40rmcJVwCBJC6mWlFuj0eCHIElmG1g5kyuJ/GD+8Wn4FFCcz4gJPfaQ== - -crc@^3.8.0: - version "3.8.0" - resolved "https://registry.yarnpkg.com/crc/-/crc-3.8.0.tgz#ad60269c2c856f8c299e2c4cc0de4556914056c6" - integrity sha512-iX3mfgcTMIq3ZKLIsVFAbv7+Mc10kxabAGQb8HvjA1o3T1PIYprbakQ65d3I+2HGHt6nSKkM9PYjgoJO2KcFBQ== - dependencies: - buffer "^5.1.0" - -cross-spawn@^7.0.1, cross-spawn@^7.0.3, cross-spawn@^7.0.6: +cross-spawn@^7.0.3: version "7.0.6" resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-7.0.6.tgz#8a58fe78f00dcd70c370451759dfbfaf03e8ee9f" integrity sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA== @@ -726,7 +252,7 @@ cross-spawn@^7.0.1, cross-spawn@^7.0.3, cross-spawn@^7.0.6: shebang-command "^2.0.0" which "^2.0.1" -debug@*, debug@4, debug@^4.1.0, debug@^4.1.1, debug@^4.3.1, debug@^4.3.4: +debug@*, debug@^4.1.0, debug@^4.1.1, debug@^4.3.4: version "4.4.3" resolved "https://registry.yarnpkg.com/debug/-/debug-4.4.3.tgz#c6ae432d9bd9662582fce08709b038c58e9e3d6a" integrity sha512-RGwwWnwQvkVfavKVt22FGLw+xYSdzARwm0ru6DhTVA3umU5hZc28V3kO4stgYryrTlLpuvgI9GiijltAjNbcqA== @@ -745,13 +271,6 @@ decompress-response@^6.0.0: dependencies: mimic-response "^3.1.0" -defaults@^1.0.3: - version "1.0.4" - resolved "https://registry.yarnpkg.com/defaults/-/defaults-1.0.4.tgz#b0b02062c1e2aa62ff5d9528f0f98baa90978d7a" - integrity sha512-eFuaLoy/Rxalv2kr+lqMlUnrDWV+3j4pljOIJgLIhI058IQfWJ7vXhyEIHu+HtC738klGALYxOKDO0bQP3tg8A== - dependencies: - clone "^1.0.2" - defer-to-connect@^2.0.0: version "2.0.1" resolved "https://registry.yarnpkg.com/defer-to-connect/-/defer-to-connect-2.0.1.tgz#8016bdb4143e4632b77a3449c6236277de520587" @@ -775,68 +294,11 @@ define-properties@^1.2.1: has-property-descriptors "^1.0.0" object-keys "^1.1.1" -delayed-stream@~1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/delayed-stream/-/delayed-stream-1.0.0.tgz#df3ae199acadfb7d440aaae0b29e2272b24ec619" - integrity sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ== - -detect-libc@^2.0.1: - version "2.1.2" - resolved "https://registry.yarnpkg.com/detect-libc/-/detect-libc-2.1.2.tgz#689c5dcdc1900ef5583a4cb9f6d7b473742074ad" - integrity sha512-Btj2BOOO83o3WyH59e8MgXsxEQVcarkUOpEYrubB0urwnN10yQ364rsiByU11nZlqWYZm05i/of7io4mzihBtQ== - detect-node@^2.0.4: version "2.1.0" resolved "https://registry.yarnpkg.com/detect-node/-/detect-node-2.1.0.tgz#c9c70775a49c3d03bc2c06d9a73be550f978f8b1" integrity sha512-T0NIuQpnTvFDATNuHN5roPwSBG83rFsuO+MXXH9/3N1eFbn4wcPjttvjMLEPWJ0RGUYgQE7cGgS3tNxbqCGM7g== -dir-compare@^4.2.0: - version "4.2.0" - resolved "https://registry.yarnpkg.com/dir-compare/-/dir-compare-4.2.0.tgz#d1d4999c14fbf55281071fdae4293b3b9ce86f19" - integrity sha512-2xMCmOoMrdQIPHdsTawECdNPwlVFB9zGcz3kuhmBO6U3oU+UQjsue0i8ayLKpgBcm+hcXPMVSGUN9d+pvJ6+VQ== - dependencies: - minimatch "^3.0.5" - p-limit "^3.1.0 " - -dmg-builder@26.8.1: - version "26.8.1" - resolved "https://registry.yarnpkg.com/dmg-builder/-/dmg-builder-26.8.1.tgz#df99aa790676ac2a2ac0333bbadbef3b6076cb03" - integrity sha512-glMJgnTreo8CFINujtAhCgN96QAqApDMZ8Vl1r8f0QT8QprvC1UCltV4CcWj20YoIyLZx6IUskaJZ0NV8fokcg== - dependencies: - app-builder-lib "26.8.1" - builder-util "26.8.1" - fs-extra "^10.1.0" - iconv-lite "^0.6.2" - js-yaml "^4.1.0" - optionalDependencies: - dmg-license "^1.0.11" - -dmg-license@^1.0.11: - version "1.0.11" - resolved "https://registry.yarnpkg.com/dmg-license/-/dmg-license-1.0.11.tgz#7b3bc3745d1b52be7506b4ee80cb61df6e4cd79a" - integrity sha512-ZdzmqwKmECOWJpqefloC5OJy1+WZBBse5+MR88z9g9Zn4VY+WYUkAyojmhzJckH5YbbZGcYIuGAkY5/Ys5OM2Q== - dependencies: - "@types/plist" "^3.0.1" - "@types/verror" "^1.10.3" - ajv "^6.10.0" - crc "^3.8.0" - iconv-corefoundation "^1.1.7" - plist "^3.0.4" - smart-buffer "^4.0.2" - verror "^1.10.0" - -dotenv-expand@^11.0.6: - version "11.0.7" - resolved "https://registry.yarnpkg.com/dotenv-expand/-/dotenv-expand-11.0.7.tgz#af695aea007d6fdc84c86cd8d0ad7beb40a0bd08" - integrity sha512-zIHwmZPRshsCdpMDyVsqGmgyP0yT8GAgXUnkdAoJisxvf33k7yO6OuoKmcTGuXPWSsm8Oh88nZicRLA9Y0rUeA== - dependencies: - dotenv "^16.4.5" - -dotenv@^16.4.5: - version "16.6.1" - resolved "https://registry.yarnpkg.com/dotenv/-/dotenv-16.6.1.tgz#773f0e69527a8315c7285d5ee73c4459d20a8020" - integrity sha512-uBq4egWHTcTt33a72vpSG0z3HnPuIl6NqYcTrKEg2azoEyl2hpW0zqlxysq2pK9HlDIHyHyakeYaYnSAwd8bow== - dunder-proto@^1.0.1: version "1.0.1" resolved "https://registry.yarnpkg.com/dunder-proto/-/dunder-proto-1.0.1.tgz#d7ae667e1dc83482f8b70fd0f6eefc50da30f58a" @@ -846,48 +308,6 @@ dunder-proto@^1.0.1: es-errors "^1.3.0" gopd "^1.2.0" -eastasianwidth@^0.2.0: - version "0.2.0" - resolved "https://registry.yarnpkg.com/eastasianwidth/-/eastasianwidth-0.2.0.tgz#696ce2ec0aa0e6ea93a397ffcf24aa7840c827cb" - integrity sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA== - -ejs@^3.1.8: - version "3.1.10" - resolved "https://registry.yarnpkg.com/ejs/-/ejs-3.1.10.tgz#69ab8358b14e896f80cc39e62087b88500c3ac3b" - integrity sha512-UeJmFfOrAQS8OJWPZ4qtgHyWExa088/MtK5UEyoJGFH67cDEXkZSviOiKRCZ4Xij0zxI3JECgYs3oKx+AizQBA== - dependencies: - jake "^10.8.5" - -electron-builder@26.8.1: - version "26.8.1" - resolved "https://registry.yarnpkg.com/electron-builder/-/electron-builder-26.8.1.tgz#d49056b2fe5d37f0f94aa2eb0e1db38f261fc8c0" - integrity sha512-uWhx1r74NGpCagG0ULs/P9Nqv2nsoo+7eo4fLUOB8L8MdWltq9odW/uuLXMFCDGnPafknYLZgjNX0ZIFRzOQAw== - dependencies: - app-builder-lib "26.8.1" - builder-util "26.8.1" - builder-util-runtime "9.5.1" - chalk "^4.1.2" - ci-info "^4.2.0" - dmg-builder "26.8.1" - fs-extra "^10.1.0" - lazy-val "^1.0.5" - simple-update-notifier "2.0.0" - yargs "^17.6.2" - -electron-publish@26.8.1: - version "26.8.1" - resolved "https://registry.yarnpkg.com/electron-publish/-/electron-publish-26.8.1.tgz#6a32fa8eed0d41971dda53072bea06b9932be583" - integrity sha512-q+jrSTIh/Cv4eGZa7oVR+grEJo/FoLMYBAnSL5GCtqwUpr1T+VgKB/dn1pnzxIxqD8S/jP1yilT9VrwCqINR4w== - dependencies: - "@types/fs-extra" "^9.0.11" - builder-util "26.8.1" - builder-util-runtime "9.5.1" - chalk "^4.1.2" - form-data "^4.0.5" - fs-extra "^10.1.0" - lazy-val "^1.0.5" - mime "^2.5.2" - electron-updater@6.8.3: version "6.8.3" resolved "https://registry.yarnpkg.com/electron-updater/-/electron-updater-6.8.3.tgz#bb0c8ef6509e5c67663f6481a729244d1bce21fb" @@ -902,32 +322,15 @@ electron-updater@6.8.3: semver "~7.7.3" tiny-typed-emitter "^2.1.0" -electron@23.2.0: - version "23.2.0" - resolved "https://registry.yarnpkg.com/electron/-/electron-23.2.0.tgz#1c60fec08206e24830f3a8dca2772454c8bc25ba" - integrity sha512-De9e21cri0QYct/w6tTNOnKyCt9RVKUw5F8PEN4FPzGR9tr6IT53uyt42uH754uJWrZeLMCAdoXy6/0GmMmYZA== +electron@35.7.5: + version "35.7.5" + resolved "https://registry.yarnpkg.com/electron/-/electron-35.7.5.tgz#294a4aebb2ad2a884de730c410f2358d061e8d53" + integrity sha512-dnL+JvLraKZl7iusXTVTGYs10TKfzUi30uEDTqsmTm0guN9V2tbOjTzyIZbh9n3ygUjgEYyo+igAwMRXIi3IPw== dependencies: "@electron/get" "^2.0.0" - "@types/node" "^16.11.26" + "@types/node" "^22.7.7" extract-zip "^2.0.1" -emoji-regex@^8.0.0: - version "8.0.0" - resolved "https://registry.yarnpkg.com/emoji-regex/-/emoji-regex-8.0.0.tgz#e818fd69ce5ccfcb404594f842963bf53164cc37" - integrity sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A== - -emoji-regex@^9.2.2: - version "9.2.2" - resolved "https://registry.yarnpkg.com/emoji-regex/-/emoji-regex-9.2.2.tgz#840c8803b0d8047f4ff0cf963176b32d4ef3ed72" - integrity sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg== - -encoding@^0.1.13: - version "0.1.13" - resolved "https://registry.yarnpkg.com/encoding/-/encoding-0.1.13.tgz#56574afdd791f54a8e9b2785c0582a2d26210fa9" - integrity sha512-ETBauow1T35Y/WZMkio9jiM0Z5xjHHmJ4XmjZOq1l/dXz3lr2sRn87nJy20RupqSh1F2m3HHPSp8ShIPQJrJ3A== - dependencies: - iconv-lite "^0.6.2" - end-of-stream@^1.1.0: version "1.4.5" resolved "https://registry.yarnpkg.com/end-of-stream/-/end-of-stream-1.4.5.tgz#7344d711dea40e0b74abc2ed49778743ccedb08c" @@ -940,11 +343,6 @@ env-paths@^2.2.0: resolved "https://registry.yarnpkg.com/env-paths/-/env-paths-2.2.1.tgz#420399d416ce1fbe9bc0a07c62fa68d67fd0f8f2" integrity sha512-+h1lkLKhZMTYjog1VEpJNG7NZJWcuc2DDk/qsqSTRRCOXiLjeQ1d1/udrUGhqMxUgAlwKNZ0cf2uqan5GLuS2A== -err-code@^2.0.2: - version "2.0.3" - resolved "https://registry.yarnpkg.com/err-code/-/err-code-2.0.3.tgz#23c2f3b756ffdfc608d30e27c9a941024807e7f9" - integrity sha512-2bmlRpNKBxT/CRmPOlyISQpNj+qSeYvcym/uT0Jx2bMOlKLtSy1ZmLuVxSEKKyor/N5yhvp/ZiG1oE3DEYMSFA== - es-define-property@^1.0.0, es-define-property@^1.0.1: version "1.0.1" resolved "https://registry.yarnpkg.com/es-define-property/-/es-define-property-1.0.1.tgz#983eb2f9a6724e9303f61addf011c72e09e0b0fa" @@ -962,26 +360,11 @@ es-object-atoms@^1.0.0, es-object-atoms@^1.1.1: dependencies: es-errors "^1.3.0" -es-set-tostringtag@^2.1.0: - version "2.1.0" - resolved "https://registry.yarnpkg.com/es-set-tostringtag/-/es-set-tostringtag-2.1.0.tgz#f31dbbe0c183b00a6d26eb6325c810c0fd18bd4d" - integrity sha512-j6vWzfrGVfyXxge+O0x5sh6cvxAog0a/4Rdd2K36zCMV5eJ+/+tOAngRO8cODMNWbVRdVlmGZQL2YS3yR8bIUA== - dependencies: - es-errors "^1.3.0" - get-intrinsic "^1.2.6" - has-tostringtag "^1.0.2" - hasown "^2.0.2" - es6-error@^4.1.1: version "4.1.1" resolved "https://registry.yarnpkg.com/es6-error/-/es6-error-4.1.1.tgz#9e3af407459deed47e9a91f9b885a84eb05c561d" integrity sha512-Um/+FxMr9CISWh0bi5Zv0iOD+4cFh5qLeks1qhAopKVAJw3drgKbKySikp7wGhDL0HPeaja0P5ULZrxLkniUVg== -escalade@^3.1.1: - version "3.2.0" - resolved "https://registry.yarnpkg.com/escalade/-/escalade-3.2.0.tgz#011a3f69856ba189dffa7dc8fcce99d2a87903e5" - integrity sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA== - escape-html@1.0.1: version "1.0.1" resolved "https://registry.yarnpkg.com/escape-html/-/escape-html-1.0.1.tgz#181a286ead397a39a92857cfb1d43052e356bff0" @@ -992,11 +375,6 @@ escape-string-regexp@^4.0.0: resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz#14ba83a5d373e3d311e5afca29cf5bfad965bf34" integrity sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA== -exponential-backoff@^3.1.1: - version "3.1.3" - resolved "https://registry.yarnpkg.com/exponential-backoff/-/exponential-backoff-3.1.3.tgz#51cf92c1c0493c766053f9d3abee4434c244d2f6" - integrity sha512-ZgEeZXj30q+I0EN+CbSSpIyPaJ5HVQD18Z1m+u1FXbAeT94mr1zw50q4q6jiiC447Nl/YTcIYSAftiGqetwXCA== - express@4.0.0: version "4.0.0" resolved "https://registry.yarnpkg.com/express/-/express-4.0.0.tgz#274dc82933c9f574cc38a0ce5ea8172be9c6b094" @@ -1031,21 +409,6 @@ extract-zip@^2.0.1: optionalDependencies: "@types/yauzl" "^2.9.1" -extsprintf@^1.2.0: - version "1.4.1" - resolved "https://registry.yarnpkg.com/extsprintf/-/extsprintf-1.4.1.tgz#8d172c064867f235c0c84a596806d279bf4bcc07" - integrity sha512-Wrk35e8ydCKDj/ArClo1VrPVmN8zph5V4AtHwIuHhvMXsKf73UT3BOD+azBIW+3wOJ4FhEH7zyaJCFvChjYvMA== - -fast-deep-equal@^3.1.1: - version "3.1.3" - resolved "https://registry.yarnpkg.com/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz#3a7d56b559d6cbc3eb512325244e619a65c6c525" - integrity sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q== - -fast-json-stable-stringify@^2.0.0: - version "2.1.0" - resolved "https://registry.yarnpkg.com/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz#874bf69c6f404c2b5d99c481341399fd55892633" - integrity sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw== - fd-slicer@~1.1.0: version "1.1.0" resolved "https://registry.yarnpkg.com/fd-slicer/-/fd-slicer-1.1.0.tgz#25c7c89cb1f9077f8891bbe61d8f390eae256f1e" @@ -1053,18 +416,6 @@ fd-slicer@~1.1.0: dependencies: pend "~1.2.0" -fdir@^6.5.0: - version "6.5.0" - resolved "https://registry.yarnpkg.com/fdir/-/fdir-6.5.0.tgz#ed2ab967a331ade62f18d077dae192684d50d350" - integrity sha512-tIbYtZbucOs0BRGqPJkshJUYdL+SDH7dVM8gjy+ERp3WAUjLEFJE+02kanyHtwjWOnwrKYBiwAmM0p4kLJAnXg== - -filelist@^1.0.4: - version "1.0.6" - resolved "https://registry.yarnpkg.com/filelist/-/filelist-1.0.6.tgz#1e8870942a7c636c862f7c49b9394937b6a995a3" - integrity sha512-5giy2PkLYY1cP39p17Ech+2xlpTRL9HLspOfEgm0L6CwBXBTgsK5ou0JtzYuepxkaQ/tvhCFIJ5uXo0OrM2DxA== - dependencies: - minimatch "^5.0.1" - fill-range@^7.1.1: version "7.1.1" resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-7.1.1.tgz#44265d3cac07e3ea7dc247516380643754a05292" @@ -1079,25 +430,6 @@ find-yarn-workspace-root@^2.0.0: dependencies: micromatch "^4.0.2" -foreground-child@^3.1.0: - version "3.3.1" - resolved "https://registry.yarnpkg.com/foreground-child/-/foreground-child-3.3.1.tgz#32e8e9ed1b68a3497befb9ac2b6adf92a638576f" - integrity sha512-gIXjKqtFuWEgzFRJA9WCQeSJLZDjgJUOMCMzxtvFq/37KojM1BFGufqsCy0r4qSQmYLsZYMeyRqzIWOMup03sw== - dependencies: - cross-spawn "^7.0.6" - signal-exit "^4.0.1" - -form-data@^4.0.5: - version "4.0.5" - resolved "https://registry.yarnpkg.com/form-data/-/form-data-4.0.5.tgz#b49e48858045ff4cbf6b03e1805cebcad3679053" - integrity sha512-8RipRLol37bNs2bhoV67fiTEvdTrbMUYcFTiy3+wuuOnUog2QBHCZWXDRijWQfAkhBj2Uf5UnVaiWwA5vdd82w== - dependencies: - asynckit "^0.4.0" - combined-stream "^1.0.8" - es-set-tostringtag "^2.1.0" - hasown "^2.0.2" - mime-types "^2.1.12" - fresh@0.2.0: version "0.2.0" resolved "https://registry.yarnpkg.com/fresh/-/fresh-0.2.0.tgz#bfd9402cf3df12c4a4c310c79f99a3dde13d34a7" @@ -1122,7 +454,7 @@ fs-extra@11.0.0: jsonfile "^6.0.1" universalify "^2.0.0" -fs-extra@^10.0.0, fs-extra@^10.1.0: +fs-extra@^10.1.0: version "10.1.0" resolved "https://registry.yarnpkg.com/fs-extra/-/fs-extra-10.1.0.tgz#02873cfbc4084dde127eaa5f9905eef2325d1abf" integrity sha512-oRXApq54ETRj4eMiFzGnHWGy+zo5raudjuxN0b8H7s/RU2oW0Wvsx9O0ACRN/kRq9E8Vu/ReskGB5o3ji+FzHQ== @@ -1131,15 +463,6 @@ fs-extra@^10.0.0, fs-extra@^10.1.0: jsonfile "^6.0.1" universalify "^2.0.0" -fs-extra@^11.1.1: - version "11.3.3" - resolved "https://registry.yarnpkg.com/fs-extra/-/fs-extra-11.3.3.tgz#a27da23b72524e81ac6c3815cc0179b8c74c59ee" - integrity sha512-VWSRii4t0AFm6ixFFmLLx1t7wS1gh+ckoa84aOeapGum0h+EZd1EhEumSB+ZdDLnEPuucsVB9oB7cxJHap6Afg== - dependencies: - graceful-fs "^4.2.0" - jsonfile "^6.0.1" - universalify "^2.0.0" - fs-extra@^8.1.0: version "8.1.0" resolved "https://registry.yarnpkg.com/fs-extra/-/fs-extra-8.1.0.tgz#49d43c45a88cd9677668cb7be1b46efdb8d2e1c0" @@ -1149,7 +472,7 @@ fs-extra@^8.1.0: jsonfile "^4.0.0" universalify "^0.1.0" -fs-extra@^9.0.0, fs-extra@^9.0.1: +fs-extra@^9.0.0: version "9.1.0" resolved "https://registry.yarnpkg.com/fs-extra/-/fs-extra-9.1.0.tgz#5954460c764a8da2094ba3554bf839e6b9a7c86d" integrity sha512-hcg3ZmepS30/7BSFqRvoo3DOMQu7IjqxO5nCDt+zM9XWjb33Wg7ziNT+Qvqbuc3+gWpzO02JubVyk2G4Zvo1OQ== @@ -1159,13 +482,6 @@ fs-extra@^9.0.0, fs-extra@^9.0.1: jsonfile "^6.0.1" universalify "^2.0.0" -fs-minipass@^3.0.0: - version "3.0.3" - resolved "https://registry.yarnpkg.com/fs-minipass/-/fs-minipass-3.0.3.tgz#79a85981c4dc120065e96f62086bf6f9dc26cc54" - integrity sha512-XUBA9XClHbnJWSfBzjkm6RvPsyg3sryZt06BEQoXcF7EK/xpGaQYJgQKDJSUH5SGZ76Y7pFx1QBnXz09rU5Fbw== - dependencies: - minipass "^7.0.3" - fs.realpath@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" @@ -1176,12 +492,7 @@ function-bind@^1.1.2: resolved "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.2.tgz#2c02d864d97f3ea6c8830c464cbd11ab6eab7a1c" integrity sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA== -get-caller-file@^2.0.5: - version "2.0.5" - resolved "https://registry.yarnpkg.com/get-caller-file/-/get-caller-file-2.0.5.tgz#4f94412a82db32f36e3b0b9741f8a97feb031f7e" - integrity sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg== - -get-intrinsic@^1.2.4, get-intrinsic@^1.2.6, get-intrinsic@^1.3.0: +get-intrinsic@^1.2.4, get-intrinsic@^1.3.0: version "1.3.0" resolved "https://registry.yarnpkg.com/get-intrinsic/-/get-intrinsic-1.3.0.tgz#743f0e3b6964a93a5491ed1bffaae054d7f98d01" integrity sha512-9fSjSaos/fRIVIp+xSJlE6lfwhES7LNtKaCBIamHsjr2na1BiABJPo0mOjjz8GJDURarmCPGqaiVg5mfjb98CQ== @@ -1212,19 +523,7 @@ get-stream@^5.1.0: dependencies: pump "^3.0.0" -glob@^10.2.2: - version "10.5.0" - resolved "https://registry.yarnpkg.com/glob/-/glob-10.5.0.tgz#8ec0355919cd3338c28428a23d4f24ecc5fe738c" - integrity sha512-DfXN8DfhJ7NH3Oe7cFmu3NCu1wKbkReJ8TorzSAFbSKrlNaQSKfIzqYqVY8zlbs2NLBbWpRiU52GX2PbaBVNkg== - dependencies: - foreground-child "^3.1.0" - jackspeak "^3.1.2" - minimatch "^9.0.4" - minipass "^7.1.2" - package-json-from-dist "^1.0.0" - path-scurry "^1.11.1" - -glob@^7.1.3, glob@^7.1.6: +glob@^7.1.3: version "7.2.3" resolved "https://registry.yarnpkg.com/glob/-/glob-7.2.3.tgz#b8df0fb802bbfa8e89bd1d938b4e16578ed44f2b" integrity sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q== @@ -1261,7 +560,7 @@ gopd@^1.0.1, gopd@^1.2.0: resolved "https://registry.yarnpkg.com/gopd/-/gopd-1.2.0.tgz#89f56b8217bdbc8802bd299df6d7f1081d7e51a1" integrity sha512-ZUKRh6/kUFoAiTAtTYPZJ3hw9wNxx+BIBOijnlG9PnrJsCcSjs1wyyD6vJpaYtgnzDrKYRSqf3OO6Rfa93xsRg== -got@^11.7.0, got@^11.8.5: +got@^11.8.5: version "11.8.6" resolved "https://registry.yarnpkg.com/got/-/got-11.8.6.tgz#276e827ead8772eddbcfc97170590b841823233a" integrity sha512-6tfZ91bOr7bOXnK7PRDCGBLa1H4U080YHNaAQ2KsMGlLEzRbk44nsZF2E1IeRc3vtJHPVbKCYgdFbaGO2ljd8g== @@ -1278,7 +577,7 @@ got@^11.7.0, got@^11.8.5: p-cancelable "^2.0.0" responselike "^2.0.0" -graceful-fs@^4.1.11, graceful-fs@^4.1.6, graceful-fs@^4.2.0, graceful-fs@^4.2.11, graceful-fs@^4.2.4, graceful-fs@^4.2.6: +graceful-fs@^4.1.11, graceful-fs@^4.1.6, graceful-fs@^4.2.0: version "4.2.11" resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.2.11.tgz#4183e4e8bf08bb6e05bbb2f7d2e0c8f712ca40e3" integrity sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ== @@ -1295,18 +594,11 @@ has-property-descriptors@^1.0.0, has-property-descriptors@^1.0.2: dependencies: es-define-property "^1.0.0" -has-symbols@^1.0.3, has-symbols@^1.1.0: +has-symbols@^1.1.0: version "1.1.0" resolved "https://registry.yarnpkg.com/has-symbols/-/has-symbols-1.1.0.tgz#fc9c6a783a084951d0b971fe1018de813707a338" integrity sha512-1cDNdwJ2Jaohmb3sg4OmKaMBwuC48sYni5HUw2DvsC8LjGTLK9h+eb1X6RyuOHe4hT0ULCW68iomhjUoKUqlPQ== -has-tostringtag@^1.0.2: - version "1.0.2" - resolved "https://registry.yarnpkg.com/has-tostringtag/-/has-tostringtag-1.0.2.tgz#2cdc42d40bef2e5b4eeab7c01a73c54ce7ab5abc" - integrity sha512-NqADB8VjPFLM2V0VvHUewwwsw0ZWBaIdgo+ieHtK3hasLz4qeCRjYcqfB6AQrBggRKppKF8L52/VqdVsO47Dlw== - dependencies: - has-symbols "^1.0.3" - hasown@^2.0.2: version "2.0.2" resolved "https://registry.yarnpkg.com/hasown/-/hasown-2.0.2.tgz#003eaf91be7adc372e84ec59dc37252cedb80003" @@ -1314,26 +606,11 @@ hasown@^2.0.2: dependencies: function-bind "^1.1.2" -hosted-git-info@^4.1.0: - version "4.1.0" - resolved "https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-4.1.0.tgz#827b82867e9ff1c8d0c4d9d53880397d2c86d224" - integrity sha512-kyCuEOWjJqZuDbRHzL8V93NzQhwIB71oFWSyzVo+KPZI+pnQPPxucdkrOZvkLRnrf5URsQM+IJ09Dw29cRALIA== - dependencies: - lru-cache "^6.0.0" - -http-cache-semantics@^4.0.0, http-cache-semantics@^4.1.1: +http-cache-semantics@^4.0.0: version "4.2.0" resolved "https://registry.yarnpkg.com/http-cache-semantics/-/http-cache-semantics-4.2.0.tgz#205f4db64f8562b76a4ff9235aa5279839a09dd5" integrity sha512-dTxcvPXqPvXBQpq5dUr6mEMJX4oIEFv6bwom3FDwKRDsuIjjJGANqhBuoAn9c1RQJIdAKav33ED65E2ys+87QQ== -http-proxy-agent@^7.0.0: - version "7.0.2" - resolved "https://registry.yarnpkg.com/http-proxy-agent/-/http-proxy-agent-7.0.2.tgz#9a8b1f246866c028509486585f62b8f2c18c270e" - integrity sha512-T1gkAiYYDWYx3V5Bmyu7HcfcvL7mUrTWiM6yOfa3PIphViJ/gFPbvidQ+veqSOHci/PxBcDabeUNCzpOODJZig== - dependencies: - agent-base "^7.1.0" - debug "^4.3.4" - http2-wrapper@^1.0.0-beta.5.2: version "1.0.3" resolved "https://registry.yarnpkg.com/http2-wrapper/-/http2-wrapper-1.0.3.tgz#b8f55e0c1f25d4ebd08b3b0c2c079f9590800b3d" @@ -1342,39 +619,6 @@ http2-wrapper@^1.0.0-beta.5.2: quick-lru "^5.1.1" resolve-alpn "^1.0.0" -https-proxy-agent@^7.0.0, https-proxy-agent@^7.0.1: - version "7.0.6" - resolved "https://registry.yarnpkg.com/https-proxy-agent/-/https-proxy-agent-7.0.6.tgz#da8dfeac7da130b05c2ba4b59c9b6cd66611a6b9" - integrity sha512-vK9P5/iUfdl95AI+JVyUuIcVtd4ofvtrOr3HNtM2yxC9bnMbEdp3x01OhQNnjb8IJYi38VlTE3mBXwcfvywuSw== - dependencies: - agent-base "^7.1.2" - debug "4" - -iconv-corefoundation@^1.1.7: - version "1.1.7" - resolved "https://registry.yarnpkg.com/iconv-corefoundation/-/iconv-corefoundation-1.1.7.tgz#31065e6ab2c9272154c8b0821151e2c88f1b002a" - integrity sha512-T10qvkw0zz4wnm560lOEg0PovVqUXuOFhhHAkixw8/sycy7TJt7v/RrkEKEQnAw2viPSJu6iAkErxnzR0g8PpQ== - dependencies: - cli-truncate "^2.1.0" - node-addon-api "^1.6.3" - -iconv-lite@^0.6.2: - version "0.6.3" - resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.6.3.tgz#a52f80bf38da1952eb5c681790719871a1a72501" - integrity sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw== - dependencies: - safer-buffer ">= 2.1.2 < 3.0.0" - -ieee754@^1.1.13: - version "1.2.1" - resolved "https://registry.yarnpkg.com/ieee754/-/ieee754-1.2.1.tgz#8eb7a10a63fff25d15a57b001586d177d1b0d352" - integrity sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA== - -imurmurhash@^0.1.4: - version "0.1.4" - resolved "https://registry.yarnpkg.com/imurmurhash/-/imurmurhash-0.1.4.tgz#9218b9b2b928a238b13dc4fb6b6d576f231453ea" - integrity sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA== - inflight@^1.0.4: version "1.0.6" resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9" @@ -1383,41 +627,21 @@ inflight@^1.0.4: once "^1.3.0" wrappy "1" -inherits@2, inherits@^2.0.3, inherits@^2.0.4: +inherits@2: version "2.0.4" resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.4.tgz#0fa2c64f932917c3433a0ded55363aae37416b7c" integrity sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ== -ip-address@^10.0.1: - version "10.1.0" - resolved "https://registry.yarnpkg.com/ip-address/-/ip-address-10.1.0.tgz#d8dcffb34d0e02eb241427444a6e23f5b0595aa4" - integrity sha512-XXADHxXmvT9+CRxhXg56LJovE+bmWnEWB78LB83VZTprKTmaC5QfruXocxzTZ2Kl0DNwKuBdlIhjL8LeY8Sf8Q== - is-docker@^2.0.0: version "2.2.1" resolved "https://registry.yarnpkg.com/is-docker/-/is-docker-2.2.1.tgz#33eeabe23cfe86f14bde4408a02c0cfb853acdaa" integrity sha512-F+i2BKsFrH66iaUFc0woD8sLy8getkwTwtOBjvs56Cx4CgJDeKQeqfz8wAYiSb8JOprWhHH5p77PbmYCvvUuXQ== -is-fullwidth-code-point@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz#f116f8064fe90b3f7844a38997c0b75051269f1d" - integrity sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg== - -is-interactive@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/is-interactive/-/is-interactive-1.0.0.tgz#cea6e6ae5c870a7b0a0004070b7b587e0252912e" - integrity sha512-2HvIEKRoqS62guEC+qBjpvRubdX910WCMuJTZ+I9yvqKU2/12eSL549HMwtabb4oupdj2sMP50k+XJfB/8JE6w== - is-number@^7.0.0: version "7.0.0" resolved "https://registry.yarnpkg.com/is-number/-/is-number-7.0.0.tgz#7535345b896734d5f80c4d06c50955527a14f12b" integrity sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng== -is-unicode-supported@^0.1.0: - version "0.1.0" - resolved "https://registry.yarnpkg.com/is-unicode-supported/-/is-unicode-supported-0.1.0.tgz#3f26c76a809593b52bfa2ecb5710ed2779b522a7" - integrity sha512-knxG2q4UC3u8stRGyAVJCOdxFmv5DZiRcdlIaAQXAbSfJya+OhopNotLQrstBhququ4ZpuKbDc/8S6mgXgPFPw== - is-wsl@^2.1.1: version "2.2.0" resolved "https://registry.yarnpkg.com/is-wsl/-/is-wsl-2.2.0.tgz#74a4c76e77ca9fd3f932f290c17ea326cd157271" @@ -1430,49 +654,11 @@ isarray@^2.0.5: resolved "https://registry.yarnpkg.com/isarray/-/isarray-2.0.5.tgz#8af1e4c1221244cc62459faf38940d4e644a5723" integrity sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw== -isbinaryfile@^4.0.8: - version "4.0.10" - resolved "https://registry.yarnpkg.com/isbinaryfile/-/isbinaryfile-4.0.10.tgz#0c5b5e30c2557a2f06febd37b7322946aaee42b3" - integrity sha512-iHrqe5shvBUcFbmZq9zOQHBoeOhZJu6RQGrDpBgenUm/Am+F3JM2MgQj+rK3Z601fzrL5gLZWtAPH2OBaSVcyw== - -isbinaryfile@^5.0.0: - version "5.0.7" - resolved "https://registry.yarnpkg.com/isbinaryfile/-/isbinaryfile-5.0.7.tgz#19a73f2281b7368dca9d3b3ac8a0434074670979" - integrity sha512-gnWD14Jh3FzS3CPhF0AxNOJ8CxqeblPTADzI38r0wt8ZyQl5edpy75myt08EG2oKvpyiqSqsx+Wkz9vtkbTqYQ== - isexe@^2.0.0: version "2.0.0" resolved "https://registry.yarnpkg.com/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10" integrity sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw== -isexe@^3.1.1: - version "3.1.5" - resolved "https://registry.yarnpkg.com/isexe/-/isexe-3.1.5.tgz#42e368f68d5e10dadfee4fda7b550bc2d8892dc9" - integrity sha512-6B3tLtFqtQS4ekarvLVMZ+X+VlvQekbe4taUkf/rhVO3d/h0M2rfARm/pXLcPEsjjMsFgrFgSrhQIxcSVrBz8w== - -jackspeak@^3.1.2: - version "3.4.3" - resolved "https://registry.yarnpkg.com/jackspeak/-/jackspeak-3.4.3.tgz#8833a9d89ab4acde6188942bd1c53b6390ed5a8a" - integrity sha512-OGlZQpz2yfahA/Rd1Y8Cd9SIEsqvXkLVoSw/cgwhnhFMDbsQFeZYoJJ7bIZBS9BcamUW96asq/npPWugM+RQBw== - dependencies: - "@isaacs/cliui" "^8.0.2" - optionalDependencies: - "@pkgjs/parseargs" "^0.11.0" - -jake@^10.8.5: - version "10.9.4" - resolved "https://registry.yarnpkg.com/jake/-/jake-10.9.4.tgz#d626da108c63d5cfb00ab5c25fadc7e0084af8e6" - integrity sha512-wpHYzhxiVQL+IV05BLE2Xn34zW1S223hvjtqk0+gsPrwd/8JNLXJgZZM/iPFsYc1xyphF+6M6EvdE5E9MBGkDA== - dependencies: - async "^3.2.6" - filelist "^1.0.4" - picocolors "^1.1.1" - -jiti@^2.4.2: - version "2.6.1" - resolved "https://registry.yarnpkg.com/jiti/-/jiti-2.6.1.tgz#178ef2fc9a1a594248c20627cd820187a4d78d92" - integrity sha512-ekilCSN1jwRvIbgeg/57YFh8qQDNbwDb9xT/qu2DAHbFFZUicIl4ygVaAvzveMhMVr3LnpSKTNnwt8PoOfmKhQ== - js-yaml@^4.1.0: version "4.1.1" resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-4.1.1.tgz#854c292467705b699476e1a2decc0c8a3458806b" @@ -1485,11 +671,6 @@ json-buffer@3.0.1: resolved "https://registry.yarnpkg.com/json-buffer/-/json-buffer-3.0.1.tgz#9338802a30d3b6605fbe0613e094008ca8c05a13" integrity sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ== -json-schema-traverse@^0.4.1: - version "0.4.1" - resolved "https://registry.yarnpkg.com/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz#69f6a87d9513ab8bb8fe63bdb0979c448e684660" - integrity sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg== - json-stable-stringify@^1.0.2: version "1.3.0" resolved "https://registry.yarnpkg.com/json-stable-stringify/-/json-stable-stringify-1.3.0.tgz#8903cfac42ea1a0f97f35d63a4ce0518f0cc6a70" @@ -1506,11 +687,6 @@ json-stringify-safe@^5.0.1: resolved "https://registry.yarnpkg.com/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz#1296a2d58fd45f19a0f6ce01d65701e2c735b6eb" integrity sha512-ZClg6AaYvamvYEE82d3Iyd3vSSIjQ+odgjaTzRuO3s7toCdFKczob2i0zCh7JE8kWn17yvAWhUVxvqGwUalsRA== -json5@^2.2.3: - version "2.2.3" - resolved "https://registry.yarnpkg.com/json5/-/json5-2.2.3.tgz#78cd6f1a19bdc12b73db5ad0c61efd66c1e29283" - integrity sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg== - jsonfile@^4.0.0: version "4.0.0" resolved "https://registry.yarnpkg.com/jsonfile/-/jsonfile-4.0.0.tgz#8771aae0799b64076b76640fca058f9c10e33ecb" @@ -1561,53 +737,11 @@ lodash.isequal@^4.5.0: resolved "https://registry.yarnpkg.com/lodash.isequal/-/lodash.isequal-4.5.0.tgz#415c4478f2bcc30120c22ce10ed3226f7d3e18e0" integrity sha512-pDo3lu8Jhfjqls6GkMgpahsF9kCyayhgykjyLMNFTKWrpVdAQtYyB4muAMWozBB4ig/dtWAmsMxLEI8wuz+DYQ== -lodash@^4.17.15: - version "4.17.23" - resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.23.tgz#f113b0378386103be4f6893388c73d0bde7f2c5a" - integrity sha512-LgVTMpQtIopCi79SJeDiP0TfWi5CNEc/L/aRdTh3yIvmZXTnheWpKjSZhnvMl8iXbC1tFg9gdHHDMLoV7CnG+w== - -log-symbols@^4.1.0: - version "4.1.0" - resolved "https://registry.yarnpkg.com/log-symbols/-/log-symbols-4.1.0.tgz#3fbdbb95b4683ac9fc785111e792e558d4abd503" - integrity sha512-8XPvpAA8uyhfteu8pIvQxpJZ7SYYdpUivZpGy6sFsBuKRY/7rQGavedeB8aK+Zkyq6upMFVL/9AW6vOYzfRyLg== - dependencies: - chalk "^4.1.0" - is-unicode-supported "^0.1.0" - lowercase-keys@^2.0.0: version "2.0.0" resolved "https://registry.yarnpkg.com/lowercase-keys/-/lowercase-keys-2.0.0.tgz#2603e78b7b4b0006cbca2fbcc8a3202558ac9479" integrity sha512-tqNXrS78oMOE73NMxK4EMLQsQowWf8jKooH9g7xPavRT706R6bkQJ6DY2Te7QukaZsulxa30wQ7bk0pm4XiHmA== -lru-cache@^10.0.1, lru-cache@^10.2.0: - version "10.4.3" - resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-10.4.3.tgz#410fc8a17b70e598013df257c2446b7f3383f119" - integrity sha512-JNAzZcXrCt42VGLuYz0zfAzDfAvJWW6AfYlDBQyDV5DClI2m5sAmK+OIO7s59XfsRsWHp02jAJrRadPRGTt6SQ== - -lru-cache@^6.0.0: - version "6.0.0" - resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-6.0.0.tgz#6d6fe6570ebd96aaf90fcad1dafa3b2566db3a94" - integrity sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA== - dependencies: - yallist "^4.0.0" - -make-fetch-happen@^14.0.3: - version "14.0.3" - resolved "https://registry.yarnpkg.com/make-fetch-happen/-/make-fetch-happen-14.0.3.tgz#d74c3ecb0028f08ab604011e0bc6baed483fcdcd" - integrity sha512-QMjGbFTP0blj97EeidG5hk/QhKQ3T4ICckQGLgz38QF7Vgbk6e6FTARN8KhKxyBbWn8R0HU+bnw8aSoFPD4qtQ== - dependencies: - "@npmcli/agent" "^3.0.0" - cacache "^19.0.1" - http-cache-semantics "^4.1.1" - minipass "^7.0.2" - minipass-fetch "^4.0.0" - minipass-flush "^1.0.5" - minipass-pipeline "^1.2.4" - negotiator "^1.0.0" - proc-log "^5.0.0" - promise-retry "^2.0.1" - ssri "^12.0.0" - matcher@^3.0.0: version "3.0.0" resolved "https://registry.yarnpkg.com/matcher/-/matcher-3.0.0.tgz#bd9060f4c5b70aa8041ccc6f80368760994f30ca" @@ -1638,33 +772,11 @@ micromatch@^4.0.2: braces "^3.0.3" picomatch "^2.3.1" -mime-db@1.52.0: - version "1.52.0" - resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.52.0.tgz#bbabcdc02859f4987301c856e3387ce5ec43bf70" - integrity sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg== - -mime-types@^2.1.12: - version "2.1.35" - resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.35.tgz#381a871b62a734450660ae3deee44813f70d959a" - integrity sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw== - dependencies: - mime-db "1.52.0" - -mime@^2.5.2: - version "2.6.0" - resolved "https://registry.yarnpkg.com/mime/-/mime-2.6.0.tgz#a2a682a95cd4d0cb1d6257e28f83da7e35800367" - integrity sha512-USPkMeET31rOMiarsBNIHZKLGgvKc/LrjofAnBlOttf5ajRvqiRA8QsenbcooctK6d6Ts6aqZXBA+XbkKthiQg== - mime@~1.2.11, mime@~1.2.9: version "1.2.11" resolved "https://registry.yarnpkg.com/mime/-/mime-1.2.11.tgz#58203eed86e3a5ef17aed2b7d9ebd47f0a60dd10" integrity sha512-Ysa2F/nqTNGHhhm9MV8ure4+Hc+Y8AWiqUdHxsO7xu8zc92ND9f3kpALHjaP026Ft17UfxrMt95c50PLUeynBw== -mimic-fn@^2.1.0: - version "2.1.0" - resolved "https://registry.yarnpkg.com/mimic-fn/-/mimic-fn-2.1.0.tgz#7ed2c2ccccaf84d3ffcb7a69b57711fc2083401b" - integrity sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg== - mimic-response@^1.0.0: version "1.0.1" resolved "https://registry.yarnpkg.com/mimic-response/-/mimic-response-1.0.1.tgz#4923538878eef42063cb8a3e3b0798781487ab1b" @@ -1675,154 +787,28 @@ mimic-response@^3.1.0: resolved "https://registry.yarnpkg.com/mimic-response/-/mimic-response-3.1.0.tgz#2d1d59af9c1b129815accc2c46a022a5ce1fa3c9" integrity sha512-z0yWI+4FDrrweS8Zmt4Ej5HdJmky15+L2e6Wgn3+iK5fWzb6T3fhNFq2+MeTRb064c6Wr4N/wv0DzQTjNzHNGQ== -minimatch@^10.0.3: - version "10.2.4" - resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-10.2.4.tgz#465b3accbd0218b8281f5301e27cedc697f96fde" - integrity sha512-oRjTw/97aTBN0RHbYCdtF1MQfvusSIBQM0IZEgzl6426+8jSC0nF1a/GmnVLpfB9yyr6g6FTqWqiZVbxrtaCIg== - dependencies: - brace-expansion "^5.0.2" - -minimatch@^3.0.4, minimatch@^3.0.5, minimatch@^3.1.1: +minimatch@^3.1.1: version "3.1.5" resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.1.5.tgz#580c88f8d5445f2bd6aa8f3cadefa0de79fbd69e" integrity sha512-VgjWUsnnT6n+NUk6eZq77zeFdpW2LWDzP6zFGrCbHXiYNul5Dzqk2HHQ5uFH2DNW5Xbp8+jVzaeNt94ssEEl4w== dependencies: brace-expansion "^1.1.7" -minimatch@^5.0.1: - version "5.1.9" - resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-5.1.9.tgz#1293ef15db0098b394540e8f9f744f9fda8dee4b" - integrity sha512-7o1wEA2RyMP7Iu7GNba9vc0RWWGACJOCZBJX2GJWip0ikV+wcOsgVuY9uE8CPiyQhkGFSlhuSkZPavN7u1c2Fw== - dependencies: - brace-expansion "^2.0.1" - -minimatch@^9.0.3, minimatch@^9.0.4: - version "9.0.9" - resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-9.0.9.tgz#9b0cb9fcb78087f6fd7eababe2511c4d3d60574e" - integrity sha512-OBwBN9AL4dqmETlpS2zasx+vTeWclWzkblfZk7KTA5j3jeOONz/tRCnZomUyvNg83wL5Zv9Ss6HMJXAgL8R2Yg== - dependencies: - brace-expansion "^2.0.2" - -minimist@^1.2.5, minimist@^1.2.6: +minimist@^1.2.6: version "1.2.8" resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.8.tgz#c1a464e7693302e082a075cee0c057741ac4772c" integrity sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA== -minipass-collect@^2.0.1: - version "2.0.1" - resolved "https://registry.yarnpkg.com/minipass-collect/-/minipass-collect-2.0.1.tgz#1621bc77e12258a12c60d34e2276ec5c20680863" - integrity sha512-D7V8PO9oaz7PWGLbCACuI1qEOsq7UKfLotx/C0Aet43fCUB/wfQ7DYeq2oR/svFJGYDHPr38SHATeaj/ZoKHKw== - dependencies: - minipass "^7.0.3" - -minipass-fetch@^4.0.0: - version "4.0.1" - resolved "https://registry.yarnpkg.com/minipass-fetch/-/minipass-fetch-4.0.1.tgz#f2d717d5a418ad0b1a7274f9b913515d3e78f9e5" - integrity sha512-j7U11C5HXigVuutxebFadoYBbd7VSdZWggSe64NVdvWNBqGAiXPL2QVCehjmw7lY1oF9gOllYbORh+hiNgfPgQ== - dependencies: - minipass "^7.0.3" - minipass-sized "^1.0.3" - minizlib "^3.0.1" - optionalDependencies: - encoding "^0.1.13" - -minipass-flush@^1.0.5: - version "1.0.5" - resolved "https://registry.yarnpkg.com/minipass-flush/-/minipass-flush-1.0.5.tgz#82e7135d7e89a50ffe64610a787953c4c4cbb373" - integrity sha512-JmQSYYpPUqX5Jyn1mXaRwOda1uQ8HP5KAT/oDSLCzt1BYRhQU0/hDtsB1ufZfEEzMZ9aAVmsBw8+FWsIXlClWw== - dependencies: - minipass "^3.0.0" - -minipass-pipeline@^1.2.4: - version "1.2.4" - resolved "https://registry.yarnpkg.com/minipass-pipeline/-/minipass-pipeline-1.2.4.tgz#68472f79711c084657c067c5c6ad93cddea8214c" - integrity sha512-xuIq7cIOt09RPRJ19gdi4b+RiNvDFYe5JH+ggNvBqGqpQXcru3PcRmOZuHBKWK1Txf9+cQ+HMVN4d6z46LZP7A== - dependencies: - minipass "^3.0.0" - -minipass-sized@^1.0.3: - version "1.0.3" - resolved "https://registry.yarnpkg.com/minipass-sized/-/minipass-sized-1.0.3.tgz#70ee5a7c5052070afacfbc22977ea79def353b70" - integrity sha512-MbkQQ2CTiBMlA2Dm/5cY+9SWFEN8pzzOXi6rlM5Xxq0Yqbda5ZQy9sU75a673FE9ZK0Zsbr6Y5iP6u9nktfg2g== - dependencies: - minipass "^3.0.0" - -minipass@^3.0.0: - version "3.3.6" - resolved "https://registry.yarnpkg.com/minipass/-/minipass-3.3.6.tgz#7bba384db3a1520d18c9c0e5251c3444e95dd94a" - integrity sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw== - dependencies: - yallist "^4.0.0" - -"minipass@^5.0.0 || ^6.0.2 || ^7.0.0", minipass@^7.0.2, minipass@^7.0.3, minipass@^7.0.4, minipass@^7.1.2: - version "7.1.3" - resolved "https://registry.yarnpkg.com/minipass/-/minipass-7.1.3.tgz#79389b4eb1bb2d003a9bba87d492f2bd37bdc65b" - integrity sha512-tEBHqDnIoM/1rXME1zgka9g6Q2lcoCkxHLuc7ODJ5BxbP5d4c2Z5cGgtXAku59200Cx7diuHTOYfSBD8n6mm8A== - -minizlib@^3.0.1, minizlib@^3.1.0: - version "3.1.0" - resolved "https://registry.yarnpkg.com/minizlib/-/minizlib-3.1.0.tgz#6ad76c3a8f10227c9b51d1c9ac8e30b27f5a251c" - integrity sha512-KZxYo1BUkWD2TVFLr0MQoM8vUUigWD3LlD83a/75BqC+4qE0Hb1Vo5v1FgcfaNXvfXzr+5EhQ6ing/CaBijTlw== - dependencies: - minipass "^7.1.2" - ms@^2.1.3: version "2.1.3" resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.3.tgz#574c8138ce1d2b5861f0b44579dbadd60c6615b2" integrity sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA== -negotiator@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/negotiator/-/negotiator-1.0.0.tgz#b6c91bb47172d69f93cfd7c357bbb529019b5f6a" - integrity sha512-8Ofs/AUQh8MaEcrlq5xOX0CQ9ypTF5dl78mjlMNfOK08fzpgTHQRQPBxcPlEtIw0yRpws+Zo/3r+5WRby7u3Gg== - negotiator@~0.3.0: version "0.3.0" resolved "https://registry.yarnpkg.com/negotiator/-/negotiator-0.3.0.tgz#706d692efeddf574d57ea9fb1ab89a4fa7ee8f60" integrity sha512-q9wF64uB31BDZQ44DWf+8gE7y8xSpBdREAsJfnBO2WX9ecsutfUO6S9uWEdixlDLOlWaqnlnFXXwZxUUmyLfgg== -node-abi@^4.2.0: - version "4.26.0" - resolved "https://registry.yarnpkg.com/node-abi/-/node-abi-4.26.0.tgz#7068474b3a945c08372995d823b71053e3ed85af" - integrity sha512-8QwIZqikRvDIkXS2S93LjzhsSPJuIbfaMETWH+Bx8oOT9Sa9UsUtBFQlc3gBNd1+QINjaTloitXr1W3dQLi9Iw== - dependencies: - semver "^7.6.3" - -node-addon-api@^1.6.3: - version "1.7.2" - resolved "https://registry.yarnpkg.com/node-addon-api/-/node-addon-api-1.7.2.tgz#3df30b95720b53c24e59948b49532b662444f54d" - integrity sha512-ibPK3iA+vaY1eEjESkQkM0BbCqFOaZMiXRTtdB0u7b4djtY6JnsjvPdUHVMg6xQt3B8fpTTWHI9A+ADjM9frzg== - -node-api-version@^0.2.1: - version "0.2.1" - resolved "https://registry.yarnpkg.com/node-api-version/-/node-api-version-0.2.1.tgz#19bad54f6d65628cbee4e607a325e4488ace2de9" - integrity sha512-2xP/IGGMmmSQpI1+O/k72jF/ykvZ89JeuKX3TLJAYPDVLUalrshrLHkeVcCCZqG/eEa635cr8IBYzgnDvM2O8Q== - dependencies: - semver "^7.3.5" - -node-gyp@^11.2.0: - version "11.5.0" - resolved "https://registry.yarnpkg.com/node-gyp/-/node-gyp-11.5.0.tgz#82661b5f40647a7361efe918e3cea76d297fcc56" - integrity sha512-ra7Kvlhxn5V9Slyus0ygMa2h+UqExPqUIkfk7Pc8QTLT956JLSy51uWFwHtIYy0vI8cB4BDhc/S03+880My/LQ== - dependencies: - env-paths "^2.2.0" - exponential-backoff "^3.1.1" - graceful-fs "^4.2.6" - make-fetch-happen "^14.0.3" - nopt "^8.0.0" - proc-log "^5.0.0" - semver "^7.3.5" - tar "^7.4.3" - tinyglobby "^0.2.12" - which "^5.0.0" - -nopt@^8.0.0: - version "8.1.0" - resolved "https://registry.yarnpkg.com/nopt/-/nopt-8.1.0.tgz#b11d38caf0f8643ce885818518064127f602eae3" - integrity sha512-ieGu42u/Qsa4TFktmaKEwM6MQH0pOWnaB3htzh0JRtx84+Mebc0cbZYN5bC+6WTZ4+77xrL9Pn5m7CV6VIkV7A== - dependencies: - abbrev "^3.0.0" - normalize-url@^6.0.1: version "6.1.0" resolved "https://registry.yarnpkg.com/normalize-url/-/normalize-url-6.1.0.tgz#40d0885b535deffe3f3147bec877d05fe4c5668a" @@ -1840,13 +826,6 @@ once@^1.3.0, once@^1.3.1, once@^1.4.0: dependencies: wrappy "1" -onetime@^5.1.0: - version "5.1.2" - resolved "https://registry.yarnpkg.com/onetime/-/onetime-5.1.2.tgz#d0e96ebb56b07476df1dd9c4806e5237985ca45e" - integrity sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg== - dependencies: - mimic-fn "^2.1.0" - open@^7.4.2: version "7.4.2" resolved "https://registry.yarnpkg.com/open/-/open-7.4.2.tgz#b8147e26dcf3e426316c730089fd71edd29c2321" @@ -1855,21 +834,6 @@ open@^7.4.2: is-docker "^2.0.0" is-wsl "^2.1.1" -ora@^5.1.0: - version "5.4.1" - resolved "https://registry.yarnpkg.com/ora/-/ora-5.4.1.tgz#1b2678426af4ac4a509008e5e4ac9e9959db9e18" - integrity sha512-5b6Y85tPxZZ7QytO+BQzysW31HJku27cRIlkbAXaNx+BdcVi+LlRFmVXzeF6a7JCwJpyw5c4b+YSVImQIrBpuQ== - dependencies: - bl "^4.1.0" - chalk "^4.1.0" - cli-cursor "^3.1.0" - cli-spinners "^2.5.0" - is-interactive "^1.0.0" - is-unicode-supported "^0.1.0" - log-symbols "^4.1.0" - strip-ansi "^6.0.0" - wcwidth "^1.0.1" - os-tmpdir@~1.0.2: version "1.0.2" resolved "https://registry.yarnpkg.com/os-tmpdir/-/os-tmpdir-1.0.2.tgz#bbe67406c79aa85c5cfec766fe5734555dfa1274" @@ -1880,23 +844,6 @@ p-cancelable@^2.0.0: resolved "https://registry.yarnpkg.com/p-cancelable/-/p-cancelable-2.1.1.tgz#aab7fbd416582fa32a3db49859c122487c5ed2cf" integrity sha512-BZOr3nRQHOntUjTrH8+Lh54smKHoHyur8We1V8DSMVrl5A2malOOwuJRnKRDjSnkoeBh4at6BwEnb5I7Jl31wg== -"p-limit@^3.1.0 ": - version "3.1.0" - resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-3.1.0.tgz#e1daccbe78d0d1388ca18c64fea38e3e57e3706b" - integrity sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ== - dependencies: - yocto-queue "^0.1.0" - -p-map@^7.0.2: - version "7.0.4" - resolved "https://registry.yarnpkg.com/p-map/-/p-map-7.0.4.tgz#b81814255f542e252d5729dca4d66e5ec14935b8" - integrity sha512-tkAQEw8ysMzmkhgw8k+1U/iPhWNhykKnSk4Rd5zLoPJCuJaGRPo6YposrZgaxHKzDHdDWWZvE/Sk7hsL2X/CpQ== - -package-json-from-dist@^1.0.0: - version "1.0.1" - resolved "https://registry.yarnpkg.com/package-json-from-dist/-/package-json-from-dist-1.0.1.tgz#4f1471a010827a86f94cfd9b0727e36d267de505" - integrity sha512-UEZIS3/by4OC8vL3P2dTXRETpebLI2NiI5vIrjaD/5UtrkFX/tNbwjTSRAGC/+7CAo2pIcBaRgWmcBBHcsaCIw== - parseurl@1.0.1: version "1.0.1" resolved "https://registry.yarnpkg.com/parseurl/-/parseurl-1.0.1.tgz#2e57dce6efdd37c3518701030944c22bf388b7b4" @@ -1933,80 +880,26 @@ path-key@^3.1.0: resolved "https://registry.yarnpkg.com/path-key/-/path-key-3.1.1.tgz#581f6ade658cbba65a0d3380de7753295054f375" integrity sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q== -path-scurry@^1.11.1: - version "1.11.1" - resolved "https://registry.yarnpkg.com/path-scurry/-/path-scurry-1.11.1.tgz#7960a668888594a0720b12a911d1a742ab9f11d2" - integrity sha512-Xa4Nw17FS9ApQFJ9umLiJS4orGjm7ZzwUrwamcGQuHSzDyth9boKDaycYdDcZDuqYATXw4HFXgaqWTctW/v1HA== - dependencies: - lru-cache "^10.2.0" - minipass "^5.0.0 || ^6.0.2 || ^7.0.0" - path-to-regexp@0.1.2: version "0.1.2" resolved "https://registry.yarnpkg.com/path-to-regexp/-/path-to-regexp-0.1.2.tgz#9b2b151f9cc3018c9eea50ca95729e05781712b4" integrity sha512-BZU7Qr+qKkXJX9UBypMNikdZ85cQSjtfMhUykJFLJn4SNF0jhEbb9nMRpnNdA76ESryY8JpMA4k6XKdz3JS1pw== -pe-library@^0.4.1: - version "0.4.1" - resolved "https://registry.yarnpkg.com/pe-library/-/pe-library-0.4.1.tgz#e269be0340dcb13aa6949d743da7d658c3e2fbea" - integrity sha512-eRWB5LBz7PpDu4PUlwT0PhnQfTQJlDDdPa35urV4Osrm0t0AqQFGn+UIkU3klZvwJ8KPO3VbBFsXquA6p6kqZw== - pend@~1.2.0: version "1.2.0" resolved "https://registry.yarnpkg.com/pend/-/pend-1.2.0.tgz#7a57eb550a6783f9115331fcf4663d5c8e007a50" integrity sha512-F3asv42UuXchdzt+xXqfW1OGlVBe+mxa2mqI0pg5yAHZPvFmY3Y6drSf/GQ1A86WgWEN9Kzh/WrgKa6iGcHXLg== -picocolors@^1.1.1: - version "1.1.1" - resolved "https://registry.yarnpkg.com/picocolors/-/picocolors-1.1.1.tgz#3d321af3eab939b083c8f929a1d12cda81c26b6b" - integrity sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA== - picomatch@^2.3.1: - version "2.3.1" - resolved "https://registry.yarnpkg.com/picomatch/-/picomatch-2.3.1.tgz#3ba3833733646d9d3e4995946c1365a67fb07a42" - integrity sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA== - -picomatch@^4.0.3: - version "4.0.3" - resolved "https://registry.yarnpkg.com/picomatch/-/picomatch-4.0.3.tgz#796c76136d1eead715db1e7bad785dedd695a042" - integrity sha512-5gTmgEY/sqK6gFXLIsQNH19lWb4ebPDLA4SdLP7dsWkIXHWlG66oPuVvXSGFPppYZz8ZDZq0dYYrbHfBCVUb1Q== - -plist@3.1.0, plist@^3.0.4, plist@^3.0.5, plist@^3.1.0: - version "3.1.0" - resolved "https://registry.yarnpkg.com/plist/-/plist-3.1.0.tgz#797a516a93e62f5bde55e0b9cc9c967f860893c9" - integrity sha512-uysumyrvkUX0rX/dEVqt8gC3sTBzd4zoWfLeS29nb53imdaXVvLINYXTI2GNqzaMuvacNx4uJQ8+b3zXR0pkgQ== - dependencies: - "@xmldom/xmldom" "^0.8.8" - base64-js "^1.5.1" - xmlbuilder "^15.1.1" - -proc-log@^5.0.0: - version "5.0.0" - resolved "https://registry.yarnpkg.com/proc-log/-/proc-log-5.0.0.tgz#e6c93cf37aef33f835c53485f314f50ea906a9d8" - integrity sha512-Azwzvl90HaF0aCz1JrDdXQykFakSSNPaPoiZ9fm5qJIMHioDZEi7OAdRwSm6rSoPtY3Qutnm3L7ogmg3dc+wbQ== + version "2.3.2" + resolved "https://registry.yarnpkg.com/picomatch/-/picomatch-2.3.2.tgz#5a942915e26b372dc0f0e6753149a16e6b1c5601" + integrity sha512-V7+vQEJ06Z+c5tSye8S+nHUfI51xoXIXjHQ99cQtKUkQqqO1kO/KCJUfZXuB47h/YBlDhah2H3hdUGXn8ie0oA== progress@^2.0.3: version "2.0.3" resolved "https://registry.yarnpkg.com/progress/-/progress-2.0.3.tgz#7e8cf8d8f5b8f239c1bc68beb4eb78567d572ef8" integrity sha512-7PiHtLll5LdnKIMw100I+8xJXR5gW2QwWYkT6iJva0bXitZKa/XMrSbdmg3r2Xnaidz9Qumd0VPaMrZlF9V9sA== -promise-retry@^2.0.1: - version "2.0.1" - resolved "https://registry.yarnpkg.com/promise-retry/-/promise-retry-2.0.1.tgz#ff747a13620ab57ba688f5fc67855410c370da22" - integrity sha512-y+WKFlBR8BGXnsNlIHFGPZmyDf3DFMoLhaflAnyZgV6rG6xu+JwesTo2Q9R6XwYmtmwAFCkAk3e35jEdoeh/3g== - dependencies: - err-code "^2.0.2" - retry "^0.12.0" - -proper-lockfile@^4.1.2: - version "4.1.2" - resolved "https://registry.yarnpkg.com/proper-lockfile/-/proper-lockfile-4.1.2.tgz#c8b9de2af6b2f1601067f98e01ac66baa223141f" - integrity sha512-TjNPblN4BwAWMXU8s9AEz4JmQxnD1NNL7bNOY/AKUzyamc379FWASUhc/K1pL2noVb+XmZKLL68cjzLsiOAMaA== - dependencies: - graceful-fs "^4.2.4" - retry "^0.12.0" - signal-exit "^3.0.2" - pump@^3.0.0: version "3.0.4" resolved "https://registry.yarnpkg.com/pump/-/pump-3.0.4.tgz#1f313430527fa8b905622ebd22fe1444e757ab3c" @@ -2015,11 +908,6 @@ pump@^3.0.0: end-of-stream "^1.1.0" once "^1.3.1" -punycode@^2.1.0: - version "2.3.1" - resolved "https://registry.yarnpkg.com/punycode/-/punycode-2.3.1.tgz#027422e2faec0b25e1549c3e1bd8309b9133b6e5" - integrity sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg== - qs@0.6.6: version "0.6.6" resolved "https://registry.yarnpkg.com/qs/-/qs-0.6.6.tgz#6e015098ff51968b8a3c819001d5f2c89bc4b107" @@ -2045,34 +933,6 @@ range-parser@~1.0.0: resolved "https://registry.yarnpkg.com/range-parser/-/range-parser-1.0.3.tgz#6872823535c692e2c2a0103826afd82c2e0ff175" integrity sha512-nDsRrtIxVUO5opg/A8T2S3ebULVIfuh8ECbh4w3N4mWxIiT3QILDJDUQayPqm2e8Q8NUa0RSUkGCfe33AfjR3Q== -read-binary-file-arch@^1.0.6: - version "1.0.6" - resolved "https://registry.yarnpkg.com/read-binary-file-arch/-/read-binary-file-arch-1.0.6.tgz#959c4637daa932280a9b911b1a6766a7e44288fc" - integrity sha512-BNg9EN3DD3GsDXX7Aa8O4p92sryjkmzYYgmgTAc6CA4uGLEDzFfxOxugu21akOxpcXHiEgsYkC6nPsQvLLLmEg== - dependencies: - debug "^4.3.4" - -readable-stream@^3.4.0: - version "3.6.2" - resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-3.6.2.tgz#56a9b36ea965c00c5a93ef31eb111a0f11056967" - integrity sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA== - dependencies: - inherits "^2.0.3" - string_decoder "^1.1.1" - util-deprecate "^1.0.1" - -require-directory@^2.1.1: - version "2.1.1" - resolved "https://registry.yarnpkg.com/require-directory/-/require-directory-2.1.1.tgz#8c64ad5fd30dab1c976e2344ffe7f792a6a6df42" - integrity sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q== - -resedit@^1.7.0: - version "1.7.2" - resolved "https://registry.yarnpkg.com/resedit/-/resedit-1.7.2.tgz#b1041170b99811710c13f949c7d225871de4cc78" - integrity sha512-vHjcY2MlAITJhC0eRD/Vv8Vlgmu9Sd3LX9zZvtGzU5ZImdTN3+d6e/4mnTyV8vEbyf1sgNIrWxhWlrys52OkEA== - dependencies: - pe-library "^0.4.1" - resolve-alpn@^1.0.0: version "1.2.1" resolved "https://registry.yarnpkg.com/resolve-alpn/-/resolve-alpn-1.2.1.tgz#b7adbdac3546aaaec20b45e7d8265927072726f9" @@ -2085,19 +945,6 @@ responselike@^2.0.0: dependencies: lowercase-keys "^2.0.0" -restore-cursor@^3.1.0: - version "3.1.0" - resolved "https://registry.yarnpkg.com/restore-cursor/-/restore-cursor-3.1.0.tgz#39f67c54b3a7a58cea5236d95cf0034239631f7e" - integrity sha512-l+sSefzHpj5qimhFSE5a8nufZYAM3sBSVMAPtYkmC+4EH2anSGaEMXSD0izRQbu9nfyQ9y5JrVmp7E8oZrUjvA== - dependencies: - onetime "^5.1.0" - signal-exit "^3.0.2" - -retry@^0.12.0: - version "0.12.0" - resolved "https://registry.yarnpkg.com/retry/-/retry-0.12.0.tgz#1b42a6266a21f07421d1b0b54b7dc167b01c013b" - integrity sha512-9LkiTwjUh6rT555DtE9rTX+BKByPfrMzEAtnlEtdEwr3Nkffwiihqe2bWADg+OQRjt9gl6ICdmB/ZFDCGAtSow== - rimraf@^2.6.3: version "2.7.1" resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.7.1.tgz#35797f13a7fdadc566142c29d4f07ccad483e3ec" @@ -2117,44 +964,22 @@ roarr@^2.15.3: semver-compare "^1.0.0" sprintf-js "^1.1.2" -safe-buffer@~5.2.0: - version "5.2.1" - resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.2.1.tgz#1eaf9fa9bdb1fdd4ec75f58f9cdb4e6b7827eec6" - integrity sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ== - -"safer-buffer@>= 2.1.2 < 3.0.0": - version "2.1.2" - resolved "https://registry.yarnpkg.com/safer-buffer/-/safer-buffer-2.1.2.tgz#44fa161b0187b9549dd84bb91802f9bd8385cd6a" - integrity sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg== - -sanitize-filename@^1.6.3: - version "1.6.3" - resolved "https://registry.yarnpkg.com/sanitize-filename/-/sanitize-filename-1.6.3.tgz#755ebd752045931977e30b2025d340d7c9090378" - integrity sha512-y/52Mcy7aw3gRm7IrcGDFx/bCk4AhRh2eI9luHOQM86nZsqwiRkkq2GekHXBBD+SmPidc8i2PqtYZl+pWJ8Oeg== - dependencies: - truncate-utf8-bytes "^1.0.0" - sax@^1.2.4: - version "1.5.0" - resolved "https://registry.yarnpkg.com/sax/-/sax-1.5.0.tgz#b5549b671069b7aa392df55ec7574cf411179eb8" - integrity sha512-21IYA3Q5cQf089Z6tgaUTr7lDAyzoTPx5HRtbhsME8Udispad8dC/+sziTNugOEx54ilvatQ9YCzl4KQLPcRHA== + version "1.6.0" + resolved "https://registry.yarnpkg.com/sax/-/sax-1.6.0.tgz#da59637629307b97e7c4cb28e080a7bc38560d5b" + integrity sha512-6R3J5M4AcbtLUdZmRv2SygeVaM7IhrLXu9BmnOGmmACak8fiUtOsYNWUS4uK7upbmHIBbLBeFeI//477BKLBzA== semver-compare@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/semver-compare/-/semver-compare-1.0.0.tgz#0dee216a1c941ab37e9efb1788f6afc5ff5537fc" integrity sha512-YM3/ITh2MJ5MtzaM429anh+x2jiLVjqILF4m4oyQB18W7Ggea7BfqdH/wGMK7dDiMghv/6WG7znWMwUDzJiXow== -semver@^5.5.0: - version "5.7.2" - resolved "https://registry.yarnpkg.com/semver/-/semver-5.7.2.tgz#48d55db737c3287cd4835e17fa13feace1c41ef8" - integrity sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g== - semver@^6.2.0: version "6.3.1" resolved "https://registry.yarnpkg.com/semver/-/semver-6.3.1.tgz#556d2ef8689146e46dcea4bfdd095f3434dffcb4" integrity sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA== -semver@^7.3.2, semver@^7.3.5, semver@^7.5.3, semver@^7.6.3, semver@~7.7.3: +semver@^7.3.2, semver@^7.5.3, semver@~7.7.3: version "7.7.4" resolved "https://registry.yarnpkg.com/semver/-/semver-7.7.4.tgz#28464e36060e991fa7a11d0279d2d3f3b57a7e8a" integrity sha512-vFKC2IEtQnVhpT78h1Yp8wzwrf8CM+MzKMHGJZfBtzhZNycRFnXsHk6E5TxIkkMsgNS7mdX3AGB7x2QM2di4lA== @@ -2217,128 +1042,16 @@ shebang-regex@^3.0.0: resolved "https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-3.0.0.tgz#ae16f1644d873ecad843b0307b143362d4c42172" integrity sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A== -signal-exit@^3.0.2: - version "3.0.7" - resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.7.tgz#a9a1767f8af84155114eaabd73f99273c8f59ad9" - integrity sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ== - -signal-exit@^4.0.1: - version "4.1.0" - resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-4.1.0.tgz#952188c1cbd546070e2dd20d0f41c0ae0530cb04" - integrity sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw== - -simple-update-notifier@2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/simple-update-notifier/-/simple-update-notifier-2.0.0.tgz#d70b92bdab7d6d90dfd73931195a30b6e3d7cebb" - integrity sha512-a2B9Y0KlNXl9u/vsW6sTIu9vGEpfKu2wRV6l1H3XEas/0gUIzGzBoP/IouTcUQbm9JWZLH3COxyn03TYlFax6w== - dependencies: - semver "^7.5.3" - slash@^2.0.0: version "2.0.0" resolved "https://registry.yarnpkg.com/slash/-/slash-2.0.0.tgz#de552851a1759df3a8f206535442f5ec4ddeab44" integrity sha512-ZYKh3Wh2z1PpEXWr0MpSBZ0V6mZHAQfYevttO11c51CaWjGTaadiKZ+wVt1PbMlDV5qhMFslpZCemhwOK7C89A== -slice-ansi@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/slice-ansi/-/slice-ansi-3.0.0.tgz#31ddc10930a1b7e0b67b08c96c2f49b77a789787" - integrity sha512-pSyv7bSTC7ig9Dcgbw9AuRNUb5k5V6oDudjZoMBSr13qpLBG7tB+zgCkARjq7xIUgdz5P1Qe8u+rSGdouOOIyQ== - dependencies: - ansi-styles "^4.0.0" - astral-regex "^2.0.0" - is-fullwidth-code-point "^3.0.0" - -smart-buffer@^4.0.2, smart-buffer@^4.2.0: - version "4.2.0" - resolved "https://registry.yarnpkg.com/smart-buffer/-/smart-buffer-4.2.0.tgz#6e1d71fa4f18c05f7d0ff216dd16a481d0e8d9ae" - integrity sha512-94hK0Hh8rPqQl2xXc3HsaBoOXKV20MToPkcXvwbISWLEs+64sBq5kFgn2kJDHb1Pry9yrP0dxrCI9RRci7RXKg== - -socks-proxy-agent@^8.0.3: - version "8.0.5" - resolved "https://registry.yarnpkg.com/socks-proxy-agent/-/socks-proxy-agent-8.0.5.tgz#b9cdb4e7e998509d7659d689ce7697ac21645bee" - integrity sha512-HehCEsotFqbPW9sJ8WVYB6UbmIMv7kUUORIF2Nncq4VQvBfNBLibW9YZR5dlYCSUhwcD628pRllm7n+E+YTzJw== - dependencies: - agent-base "^7.1.2" - debug "^4.3.4" - socks "^2.8.3" - -socks@^2.8.3: - version "2.8.7" - resolved "https://registry.yarnpkg.com/socks/-/socks-2.8.7.tgz#e2fb1d9a603add75050a2067db8c381a0b5669ea" - integrity sha512-HLpt+uLy/pxB+bum/9DzAgiKS8CX1EvbWxI4zlmgGCExImLdiad2iCwXT5Z4c9c3Eq8rP2318mPW2c+QbtjK8A== - dependencies: - ip-address "^10.0.1" - smart-buffer "^4.2.0" - -source-map-support@^0.5.19: - version "0.5.21" - resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.5.21.tgz#04fe7c7f9e1ed2d662233c28cb2b35b9f63f6e4f" - integrity sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w== - dependencies: - buffer-from "^1.0.0" - source-map "^0.6.0" - -source-map@^0.6.0: - version "0.6.1" - resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.6.1.tgz#74722af32e9614e9c287a8d0bbde48b5e2f1a263" - integrity sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g== - sprintf-js@^1.1.2: version "1.1.3" resolved "https://registry.yarnpkg.com/sprintf-js/-/sprintf-js-1.1.3.tgz#4914b903a2f8b685d17fdf78a70e917e872e444a" integrity sha512-Oo+0REFV59/rz3gfJNKQiBlwfHaSESl1pcGyABQsnnIfWOFt6JNj5gCog2U6MLZ//IGYD+nA8nI+mTShREReaA== -ssri@^12.0.0: - version "12.0.0" - resolved "https://registry.yarnpkg.com/ssri/-/ssri-12.0.0.tgz#bcb4258417c702472f8191981d3c8a771fee6832" - integrity sha512-S7iGNosepx9RadX82oimUkvr0Ct7IjJbEbs4mJcTxst8um95J3sDYU1RBEOvdu6oL1Wek2ODI5i4MAw+dZ6cAQ== - dependencies: - minipass "^7.0.3" - -stat-mode@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/stat-mode/-/stat-mode-1.0.0.tgz#68b55cb61ea639ff57136f36b216a291800d1465" - integrity sha512-jH9EhtKIjuXZ2cWxmXS8ZP80XyC3iasQxMDV8jzhNJpfDb7VbQLVW4Wvsxz9QZvzV+G4YoSfBUVKDOyxLzi/sg== - -"string-width-cjs@npm:string-width@^4.2.0", string-width@^4.1.0, string-width@^4.2.0, string-width@^4.2.3: - version "4.2.3" - resolved "https://registry.yarnpkg.com/string-width/-/string-width-4.2.3.tgz#269c7117d27b05ad2e536830a8ec895ef9c6d010" - integrity sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g== - dependencies: - emoji-regex "^8.0.0" - is-fullwidth-code-point "^3.0.0" - strip-ansi "^6.0.1" - -string-width@^5.0.1, string-width@^5.1.2: - version "5.1.2" - resolved "https://registry.yarnpkg.com/string-width/-/string-width-5.1.2.tgz#14f8daec6d81e7221d2a357e668cab73bdbca794" - integrity sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA== - dependencies: - eastasianwidth "^0.2.0" - emoji-regex "^9.2.2" - strip-ansi "^7.0.1" - -string_decoder@^1.1.1: - version "1.3.0" - resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.3.0.tgz#42f114594a46cf1a8e30b0a84f56c78c3edac21e" - integrity sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA== - dependencies: - safe-buffer "~5.2.0" - -"strip-ansi-cjs@npm:strip-ansi@^6.0.1", strip-ansi@^6.0.0, strip-ansi@^6.0.1: - version "6.0.1" - resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-6.0.1.tgz#9e26c63d30f53443e9489495b2105d37b67a85d9" - integrity sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A== - dependencies: - ansi-regex "^5.0.1" - -strip-ansi@^7.0.1: - version "7.2.0" - resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-7.2.0.tgz#d22a269522836a627af8d04b5c3fd2c7fa3e32e3" - integrity sha512-yDPMNjp4WyfYBkHnjIRLfca1i6KMyGCtsVgoKe/z1+6vukgaENdgGBZt+ZmKPc4gavvEZ5OgHfHdrazhgNyG7w== - dependencies: - ansi-regex "^6.2.2" - sumchecker@^3.0.1: version "3.0.1" resolved "https://registry.yarnpkg.com/sumchecker/-/sumchecker-3.0.1.tgz#6377e996795abb0b6d348e9b3e1dfb24345a8e42" @@ -2353,52 +1066,11 @@ supports-color@^7.1.0: dependencies: has-flag "^4.0.0" -tar@^7.4.3, tar@^7.5.6, tar@^7.5.7: - version "7.5.9" - resolved "https://registry.yarnpkg.com/tar/-/tar-7.5.9.tgz#817ac12a54bc4362c51340875b8985d7dc9724b8" - integrity sha512-BTLcK0xsDh2+PUe9F6c2TlRp4zOOBMTkoQHQIWSIzI0R7KG46uEwq4OPk2W7bZcprBMsuaeFsqwYr7pjh6CuHg== - dependencies: - "@isaacs/fs-minipass" "^4.0.0" - chownr "^3.0.0" - minipass "^7.1.2" - minizlib "^3.1.0" - yallist "^5.0.0" - -temp-file@^3.4.0: - version "3.4.0" - resolved "https://registry.yarnpkg.com/temp-file/-/temp-file-3.4.0.tgz#766ea28911c683996c248ef1a20eea04d51652c7" - integrity sha512-C5tjlC/HCtVUOi3KWVokd4vHVViOmGjtLwIh4MuzPo/nMYTV/p1urt3RnMz2IWXDdKEGJH3k5+KPxtqRsUYGtg== - dependencies: - async-exit-hook "^2.0.1" - fs-extra "^10.0.0" - -tiny-async-pool@1.3.0: - version "1.3.0" - resolved "https://registry.yarnpkg.com/tiny-async-pool/-/tiny-async-pool-1.3.0.tgz#c013e1b369095e7005db5595f95e646cca6ef8a5" - integrity sha512-01EAw5EDrcVrdgyCLgoSPvqznC0sVxDSVeiOz09FUpjh71G79VCqneOr+xvt7T1r76CF6ZZfPjHorN2+d+3mqA== - dependencies: - semver "^5.5.0" - tiny-typed-emitter@^2.1.0: version "2.1.0" resolved "https://registry.yarnpkg.com/tiny-typed-emitter/-/tiny-typed-emitter-2.1.0.tgz#b3b027fdd389ff81a152c8e847ee2f5be9fad7b5" integrity sha512-qVtvMxeXbVej0cQWKqVSSAHmKZEHAvxdF8HEUBFWts8h+xEo5m/lEiPakuyZ3BnCBjOD8i24kzNOiOLLgsSxhA== -tinyglobby@^0.2.12: - version "0.2.15" - resolved "https://registry.yarnpkg.com/tinyglobby/-/tinyglobby-0.2.15.tgz#e228dd1e638cea993d2fdb4fcd2d4602a79951c2" - integrity sha512-j2Zq4NyQYG5XMST4cbs02Ak8iJUdxRM0XI5QyxXuZOzKOINmWurp3smXu3y5wDcJrptwpSjgXHzIQxR0omXljQ== - dependencies: - fdir "^6.5.0" - picomatch "^4.0.3" - -tmp-promise@^3.0.2: - version "3.0.3" - resolved "https://registry.yarnpkg.com/tmp-promise/-/tmp-promise-3.0.3.tgz#60a1a1cc98c988674fcbfd23b6e3367bdeac4ce7" - integrity sha512-RwM7MoPojPxsOBYnyd2hy0bxtIlVrihNs9pj5SUvY8Zz1sQcQG2tG1hSr8PDxfgEB8RNKDhqbIlroIarSNDNsQ== - dependencies: - tmp "^0.2.0" - tmp@^0.0.33: version "0.0.33" resolved "https://registry.yarnpkg.com/tmp/-/tmp-0.0.33.tgz#6d34335889768d21b2bcda0aa277ced3b1bfadf9" @@ -2406,11 +1078,6 @@ tmp@^0.0.33: dependencies: os-tmpdir "~1.0.2" -tmp@^0.2.0: - version "0.2.5" - resolved "https://registry.yarnpkg.com/tmp/-/tmp-0.2.5.tgz#b06bcd23f0f3c8357b426891726d16015abfd8f8" - integrity sha512-voyz6MApa1rQGUxT3E+BK7/ROe8itEx7vD8/HEvt4xwXucvQ5G5oeEiHkmHZJuBO21RpOf+YYm9MOivj709jow== - to-regex-range@^5.0.1: version "5.0.1" resolved "https://registry.yarnpkg.com/to-regex-range/-/to-regex-range-5.0.1.tgz#1648c44aae7c8d988a326018ed72f5b4dd0392e4" @@ -2418,13 +1085,6 @@ to-regex-range@^5.0.1: dependencies: is-number "^7.0.0" -truncate-utf8-bytes@^1.0.0: - version "1.0.2" - resolved "https://registry.yarnpkg.com/truncate-utf8-bytes/-/truncate-utf8-bytes-1.0.2.tgz#405923909592d56f78a5818434b0b78489ca5f2b" - integrity sha512-95Pu1QXQvruGEhv62XCMO3Mm90GscOCClvrIUwCM0PYOXK3kaF3l3sIHxx71ThJfcbM2O5Au6SO3AWCSEfW4mQ== - dependencies: - utf8-byte-length "^1.0.1" - type-fest@^0.13.1: version "0.13.1" resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.13.1.tgz#0172cb5bce80b0bd542ea348db50c7e21834d934" @@ -2437,24 +1097,15 @@ type-is@1.0.0: dependencies: mime "~1.2.11" -undici-types@~7.18.0: - version "7.18.2" - resolved "https://registry.yarnpkg.com/undici-types/-/undici-types-7.18.2.tgz#29357a89e7b7ca4aef3bf0fd3fd0cd73884229e9" - integrity sha512-AsuCzffGHJybSaRrmr5eHr81mwJU3kjw6M+uprWvCXiNeN9SOGwQ3Jn8jb8m3Z6izVgknn1R0FTCEAP2QrLY/w== - -unique-filename@^4.0.0: - version "4.0.0" - resolved "https://registry.yarnpkg.com/unique-filename/-/unique-filename-4.0.0.tgz#a06534d370e7c977a939cd1d11f7f0ab8f1fed13" - integrity sha512-XSnEewXmQ+veP7xX2dS5Q4yZAvO40cBN2MWkJ7D/6sW4Dg6wYBNwM1Vrnz1FhH5AdeLIlUXRI9e28z1YZi71NQ== - dependencies: - unique-slug "^5.0.0" +undici-types@~6.21.0: + version "6.21.0" + resolved "https://registry.yarnpkg.com/undici-types/-/undici-types-6.21.0.tgz#691d00af3909be93a7faa13be61b3a5b50ef12cb" + integrity sha512-iwDZqg0QAGrg9Rav5H4n0M64c3mkR59cJ6wQp+7C4nI0gsmExaedaYLNO44eT4AtBBwjbTiGPMlt2Md0T9H9JQ== -unique-slug@^5.0.0: - version "5.0.0" - resolved "https://registry.yarnpkg.com/unique-slug/-/unique-slug-5.0.0.tgz#ca72af03ad0dbab4dad8aa683f633878b1accda8" - integrity sha512-9OdaqO5kwqR+1kVgHAhsp5vPNU0hnxRa26rBFNfNgM7M6pNtgzeBn3s/xbyCQL3dcjzOatcef6UUHpB/6MaETg== - dependencies: - imurmurhash "^0.1.4" +undici-types@~7.19.0: + version "7.19.2" + resolved "https://registry.yarnpkg.com/undici-types/-/undici-types-7.19.2.tgz#1b67fc26d0f157a0cba3a58a5b5c1e2276b8ba2a" + integrity sha512-qYVnV5OEm2AW8cJMCpdV20CDyaN3g0AjDlOGf1OW4iaDEx8MwdtChUp4zu4H0VP3nDRF/8RKWH+IPp9uW0YGZg== universalify@^0.1.0: version "0.1.2" @@ -2466,44 +1117,11 @@ universalify@^2.0.0: resolved "https://registry.yarnpkg.com/universalify/-/universalify-2.0.1.tgz#168efc2180964e6386d061e094df61afe239b18d" integrity sha512-gptHNQghINnc/vTGIk0SOFGFNXw7JVrlRUtConJRlvaw6DuX0wO5Jeko9sWrMBhh+PsYAZ7oXAiOnf/UKogyiw== -uri-js@^4.2.2: - version "4.4.1" - resolved "https://registry.yarnpkg.com/uri-js/-/uri-js-4.4.1.tgz#9b1a52595225859e55f669d928f88c6c57f2a77e" - integrity sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg== - dependencies: - punycode "^2.1.0" - -utf8-byte-length@^1.0.1: - version "1.0.5" - resolved "https://registry.yarnpkg.com/utf8-byte-length/-/utf8-byte-length-1.0.5.tgz#f9f63910d15536ee2b2d5dd4665389715eac5c1e" - integrity sha512-Xn0w3MtiQ6zoz2vFyUVruaCL53O/DwUvkEeOvj+uulMm0BkUGYWmBYVyElqZaSLhY6ZD0ulfU3aBra2aVT4xfA== - -util-deprecate@^1.0.1: - version "1.0.2" - resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf" - integrity sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw== - utils-merge@1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/utils-merge/-/utils-merge-1.0.0.tgz#0294fb922bb9375153541c4f7096231f287c8af8" integrity sha512-HwU9SLQEtyo+0uoKXd1nkLqigUWLB+QuNQR4OcmB73eWqksM5ovuqcycks2x043W8XVb75rG1HQ0h93TMXkzQQ== -verror@^1.10.0: - version "1.10.1" - resolved "https://registry.yarnpkg.com/verror/-/verror-1.10.1.tgz#4bf09eeccf4563b109ed4b3d458380c972b0cdeb" - integrity sha512-veufcmxri4e3XSrT0xwfUR7kguIkaxBeosDg00yDWhk49wdwkSUrvvsm7nc75e1PUyvIeZj6nS8VQRYz2/S4Xg== - dependencies: - assert-plus "^1.0.0" - core-util-is "1.0.2" - extsprintf "^1.2.0" - -wcwidth@^1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/wcwidth/-/wcwidth-1.0.1.tgz#f0b0dcf915bc5ff1528afadb2c0e17b532da2fe8" - integrity sha512-XHPEwS0q6TaxcvG85+8EYkbiCux2XtWG2mkc47Ng2A77BQu9+DqIOJldST4HgPkuea7dvKSj5VgX3P1d4rW8Tg== - dependencies: - defaults "^1.0.3" - which@^2.0.1: version "2.0.2" resolved "https://registry.yarnpkg.com/which/-/which-2.0.2.tgz#7c6a8dd0a636a0327e10b59c9286eee93f3f51b1" @@ -2511,78 +1129,15 @@ which@^2.0.1: dependencies: isexe "^2.0.0" -which@^5.0.0: - version "5.0.0" - resolved "https://registry.yarnpkg.com/which/-/which-5.0.0.tgz#d93f2d93f79834d4363c7d0c23e00d07c466c8d6" - integrity sha512-JEdGzHwwkrbWoGOlIHqQ5gtprKGOenpDHpxE9zVR1bWbOtYRyPPHMe9FaP6x61CmNaTThSkb0DAJte5jD+DmzQ== - dependencies: - isexe "^3.1.1" - -"wrap-ansi-cjs@npm:wrap-ansi@^7.0.0", wrap-ansi@^7.0.0: - version "7.0.0" - resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-7.0.0.tgz#67e145cff510a6a6984bdf1152911d69d2eb9e43" - integrity sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q== - dependencies: - ansi-styles "^4.0.0" - string-width "^4.1.0" - strip-ansi "^6.0.0" - -wrap-ansi@^8.1.0: - version "8.1.0" - resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-8.1.0.tgz#56dc22368ee570face1b49819975d9b9a5ead214" - integrity sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ== - dependencies: - ansi-styles "^6.1.0" - string-width "^5.0.1" - strip-ansi "^7.0.1" - wrappy@1: version "1.0.2" resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" integrity sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ== -xmlbuilder@>=11.0.1, xmlbuilder@^15.1.1: - version "15.1.1" - resolved "https://registry.yarnpkg.com/xmlbuilder/-/xmlbuilder-15.1.1.tgz#9dcdce49eea66d8d10b42cae94a79c3c8d0c2ec5" - integrity sha512-yMqGBqtXyeN1e3TGYvgNgDVZ3j84W4cwkOXQswghol6APgZWaff9lnbvN7MHYJOiXsvGPXtjTYJEiC9J2wv9Eg== - -y18n@^5.0.5: - version "5.0.8" - resolved "https://registry.yarnpkg.com/y18n/-/y18n-5.0.8.tgz#7f4934d0f7ca8c56f95314939ddcd2dd91ce1d55" - integrity sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA== - -yallist@^4.0.0: - version "4.0.0" - resolved "https://registry.yarnpkg.com/yallist/-/yallist-4.0.0.tgz#9bb92790d9c0effec63be73519e11a35019a3a72" - integrity sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A== - -yallist@^5.0.0: - version "5.0.0" - resolved "https://registry.yarnpkg.com/yallist/-/yallist-5.0.0.tgz#00e2de443639ed0d78fd87de0d27469fbcffb533" - integrity sha512-YgvUTfwqyc7UXVMrB+SImsVYSmTS8X/tSrtdNZMImM+n7+QTriRXyXim0mBrTXNeqzVF0KWGgHPeiyViFFrNDw== - yaml@^2.2.2: - version "2.8.2" - resolved "https://registry.yarnpkg.com/yaml/-/yaml-2.8.2.tgz#5694f25eca0ce9c3e7a9d9e00ce0ddabbd9e35c5" - integrity sha512-mplynKqc1C2hTVYxd0PU2xQAc22TI1vShAYGksCCfxbn/dFwnHTNi1bvYsBTkhdUNtGIf5xNOg938rrSSYvS9A== - -yargs-parser@^21.1.1: - version "21.1.1" - resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-21.1.1.tgz#9096bceebf990d21bb31fa9516e0ede294a77d35" - integrity sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw== - -yargs@^17.0.1, yargs@^17.6.2: - version "17.7.2" - resolved "https://registry.yarnpkg.com/yargs/-/yargs-17.7.2.tgz#991df39aca675a192b816e1e0363f9d75d2aa269" - integrity sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w== - dependencies: - cliui "^8.0.1" - escalade "^3.1.1" - get-caller-file "^2.0.5" - require-directory "^2.1.1" - string-width "^4.2.3" - y18n "^5.0.5" - yargs-parser "^21.1.1" + version "2.8.3" + resolved "https://registry.yarnpkg.com/yaml/-/yaml-2.8.3.tgz#a0d6bd2efb3dd03c59370223701834e60409bd7d" + integrity sha512-AvbaCLOO2Otw/lW5bmh9d/WEdcDFdQp2Z2ZUH3pX9U2ihyUY0nvLv7J6TrWowklRGPYbB/IuIMfYgxaCPg5Bpg== yauzl@^2.10.0: version "2.10.0" @@ -2591,8 +1146,3 @@ yauzl@^2.10.0: dependencies: buffer-crc32 "~0.2.3" fd-slicer "~1.1.0" - -yocto-queue@^0.1.0: - version "0.1.0" - resolved "https://registry.yarnpkg.com/yocto-queue/-/yocto-queue-0.1.0.tgz#0294eb3dee05028d31ee1a5fa2c556a6aaf10a1b" - integrity sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q== diff --git a/test/fixtures/lockfiles/packageManagerTest/npm.txt b/test/fixtures/lockfiles/packageManagerTest/npm.txt index 7e85e334b9d..5d1fb4604df 100644 --- a/test/fixtures/lockfiles/packageManagerTest/npm.txt +++ b/test/fixtures/lockfiles/packageManagerTest/npm.txt @@ -73,9 +73,9 @@ } }, "node_modules/@types/http-cache-semantics": { - "version": "4.0.4", - "resolved": "https://registry.npmjs.org/@types/http-cache-semantics/-/http-cache-semantics-4.0.4.tgz", - "integrity": "sha512-1m0bIFVc7eJWyve9S0RnuRgcQqF/Xd5QsUZAZeQFr1Q3/p9JWoQQEqmVy+DPTNpGXwhgIetAoYF8JSc33q29QA==", + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/@types/http-cache-semantics/-/http-cache-semantics-4.2.0.tgz", + "integrity": "sha512-L3LgimLHXtGkWikKnsPg0/VFx9OGZaC+eN1u4r+OB1XRqH3meBIAVC2zr1WdMH+RHmnRkqliQAOHNJ/E0j/e0Q==", "dev": true }, "node_modules/@types/keyv": { @@ -88,9 +88,9 @@ } }, "node_modules/@types/node": { - "version": "22.19.3", - "resolved": "https://registry.npmjs.org/@types/node/-/node-22.19.3.tgz", - "integrity": "sha512-1N9SBnWYOJTrNZCdh/yJE+t910Y128BoyY+zBLWhL3r0TYzlTmFdXrPwHL9DyFZmlEXNQQolTZh3KHV31QDhyA==", + "version": "22.19.17", + "resolved": "https://registry.npmjs.org/@types/node/-/node-22.19.17.tgz", + "integrity": "sha512-wGdMcf+vPYM6jikpS/qhg6WiqSV/OhG+jeeHT/KlVqxYfD40iYJf9/AE1uQxVWFvU7MipKRkRv8NSHiCGgPr8Q==", "dev": true, "dependencies": { "undici-types": "~6.21.0" @@ -419,9 +419,9 @@ } }, "node_modules/global-agent/node_modules/semver": { - "version": "7.7.3", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.7.3.tgz", - "integrity": "sha512-SdsKMrI9TdgjdweUSR9MweHA4EJ8YxHn8DFaDisvhVlUOe4BF1tLD7GAj0lIqWVl+dPb/rExr0Btby5loQm20Q==", + "version": "7.7.4", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.7.4.tgz", + "integrity": "sha512-vFKC2IEtQnVhpT78h1Yp8wzwrf8CM+MzKMHGJZfBtzhZNycRFnXsHk6E5TxIkkMsgNS7mdX3AGB7x2QM2di4lA==", "dev": true, "optional": true, "bin": { @@ -647,9 +647,9 @@ } }, "node_modules/pump": { - "version": "3.0.3", - "resolved": "https://registry.npmjs.org/pump/-/pump-3.0.3.tgz", - "integrity": "sha512-todwxLMY7/heScKmntwQG8CXVkWUOdYxIvY2s0VWAAMh/nd8SoYiRaKjlr7+iCs984f2P8zvrfWcDDYVb73NfA==", + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/pump/-/pump-3.0.4.tgz", + "integrity": "sha512-VS7sjc6KR7e1ukRFhQSY5LM2uBWAUPiOPa/A3mkKmiMwSmRFUITt0xuj+/lesgnCv+dPIEYlkzrcyXgquIHMcA==", "dev": true, "dependencies": { "end-of-stream": "^1.1.0", diff --git a/test/fixtures/lockfiles/packageManagerTest/pnpm.txt b/test/fixtures/lockfiles/packageManagerTest/pnpm.txt index b9762dc842a..b4f8dbb388f 100644 --- a/test/fixtures/lockfiles/packageManagerTest/pnpm.txt +++ b/test/fixtures/lockfiles/packageManagerTest/pnpm.txt @@ -33,14 +33,14 @@ packages: '@types/cacheable-request@6.0.3': resolution: {integrity: sha512-IQ3EbTzGxIigb1I3qPZc1rWJnH0BmSKv5QYTalEwweFvyBDLSAe24zP0le/hyi7ecGfZVlIVAg4BZqb8WBwKqw==} - '@types/http-cache-semantics@4.0.4': - resolution: {integrity: sha512-1m0bIFVc7eJWyve9S0RnuRgcQqF/Xd5QsUZAZeQFr1Q3/p9JWoQQEqmVy+DPTNpGXwhgIetAoYF8JSc33q29QA==} + '@types/http-cache-semantics@4.2.0': + resolution: {integrity: sha512-L3LgimLHXtGkWikKnsPg0/VFx9OGZaC+eN1u4r+OB1XRqH3meBIAVC2zr1WdMH+RHmnRkqliQAOHNJ/E0j/e0Q==} '@types/keyv@3.1.4': resolution: {integrity: sha512-BQ5aZNSCpj7D6K2ksrRCTmKRLEpnPvWDiLPfoGyhZ++8YtiK9d/3DBKPJgry359X/P1PfruyYwvnvwFjuEiEIg==} - '@types/node@22.19.2': - resolution: {integrity: sha512-LPM2G3Syo1GLzXLGJAKdqoU35XvrWzGJ21/7sgZTUpbkBaOasTj8tjwn6w+hCkqaa1TfJ/w67rJSwYItlJ2mYw==} + '@types/node@22.19.17': + resolution: {integrity: sha512-wGdMcf+vPYM6jikpS/qhg6WiqSV/OhG+jeeHT/KlVqxYfD40iYJf9/AE1uQxVWFvU7MipKRkRv8NSHiCGgPr8Q==} '@types/responselike@1.0.3': resolution: {integrity: sha512-H/+L+UkTV33uf49PH5pCAUBVPNj2nDBXTN+qS1dOwyyg24l3CcicicCA7ca+HMvJBZcFgl5r8e+RR6elsb4Lyw==} @@ -219,8 +219,8 @@ packages: resolution: {integrity: sha512-7PiHtLll5LdnKIMw100I+8xJXR5gW2QwWYkT6iJva0bXitZKa/XMrSbdmg3r2Xnaidz9Qumd0VPaMrZlF9V9sA==} engines: {node: '>=0.4.0'} - pump@3.0.3: - resolution: {integrity: sha512-todwxLMY7/heScKmntwQG8CXVkWUOdYxIvY2s0VWAAMh/nd8SoYiRaKjlr7+iCs984f2P8zvrfWcDDYVb73NfA==} + pump@3.0.4: + resolution: {integrity: sha512-VS7sjc6KR7e1ukRFhQSY5LM2uBWAUPiOPa/A3mkKmiMwSmRFUITt0xuj+/lesgnCv+dPIEYlkzrcyXgquIHMcA==} quick-lru@5.1.1: resolution: {integrity: sha512-WuyALRjWPDGtt/wzJiadO5AXY+8hZ80hVpe6MyivgraREW751X3SbhRvG3eLKOYN+8VEvqLcf3wdnt44Z4S4SA==} @@ -243,8 +243,8 @@ packages: resolution: {integrity: sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==} hasBin: true - semver@7.7.3: - resolution: {integrity: sha512-SdsKMrI9TdgjdweUSR9MweHA4EJ8YxHn8DFaDisvhVlUOe4BF1tLD7GAj0lIqWVl+dPb/rExr0Btby5loQm20Q==} + semver@7.7.4: + resolution: {integrity: sha512-vFKC2IEtQnVhpT78h1Yp8wzwrf8CM+MzKMHGJZfBtzhZNycRFnXsHk6E5TxIkkMsgNS7mdX3AGB7x2QM2di4lA==} engines: {node: '>=10'} hasBin: true @@ -300,28 +300,28 @@ snapshots: '@types/cacheable-request@6.0.3': dependencies: - '@types/http-cache-semantics': 4.0.4 + '@types/http-cache-semantics': 4.2.0 '@types/keyv': 3.1.4 - '@types/node': 22.19.2 + '@types/node': 22.19.17 '@types/responselike': 1.0.3 - '@types/http-cache-semantics@4.0.4': {} + '@types/http-cache-semantics@4.2.0': {} '@types/keyv@3.1.4': dependencies: - '@types/node': 22.19.2 + '@types/node': 22.19.17 - '@types/node@22.19.2': + '@types/node@22.19.17': dependencies: undici-types: 6.21.0 '@types/responselike@1.0.3': dependencies: - '@types/node': 22.19.2 + '@types/node': 22.19.17 '@types/yauzl@2.10.3': dependencies: - '@types/node': 22.19.2 + '@types/node': 22.19.17 optional: true boolean@3.2.0: @@ -375,7 +375,7 @@ snapshots: electron@35.7.5: dependencies: '@electron/get': 2.0.3 - '@types/node': 22.19.2 + '@types/node': 22.19.17 extract-zip: 2.0.1 transitivePeerDependencies: - supports-color @@ -420,7 +420,7 @@ snapshots: get-stream@5.2.0: dependencies: - pump: 3.0.3 + pump: 3.0.4 global-agent@3.0.0: dependencies: @@ -428,7 +428,7 @@ snapshots: es6-error: 4.1.1 matcher: 3.0.0 roarr: 2.15.4 - semver: 7.7.3 + semver: 7.7.4 serialize-error: 7.0.1 optional: true @@ -510,7 +510,7 @@ snapshots: progress@2.0.3: {} - pump@3.0.3: + pump@3.0.4: dependencies: end-of-stream: 1.4.5 once: 1.4.0 @@ -538,7 +538,7 @@ snapshots: semver@6.3.1: {} - semver@7.7.3: + semver@7.7.4: optional: true serialize-error@7.0.1: diff --git a/test/fixtures/lockfiles/packageManagerTest/yarn berry multi-package workspace.txt b/test/fixtures/lockfiles/packageManagerTest/yarn berry multi-package workspace.txt index 3b2c4eaf8bf..c7ff2fc9b31 100644 --- a/test/fixtures/lockfiles/packageManagerTest/yarn berry multi-package workspace.txt +++ b/test/fixtures/lockfiles/packageManagerTest/yarn berry multi-package workspace.txt @@ -53,9 +53,9 @@ __metadata: linkType: hard "@types/http-cache-semantics@npm:*": - version: 4.0.4 - resolution: "@types/http-cache-semantics@npm:4.0.4" - checksum: 7f4dd832e618bc1e271be49717d7b4066d77c2d4eed5b81198eb987e532bb3e1c7e02f45d77918185bad936f884b700c10cebe06305f50400f382ab75055f9e8 + version: 4.2.0 + resolution: "@types/http-cache-semantics@npm:4.2.0" + checksum: c75c63c3d4204eba2dc14f5ac5cfabc1c17ee9f11e6f5ff63d5c73a6245c7e360c0ae3e95512778860f5b08f5886fbaf7400fba3d23fd8faf279f58aa9bb54bc languageName: node linkType: hard @@ -69,20 +69,20 @@ __metadata: linkType: hard "@types/node@npm:*": - version: 25.0.3 - resolution: "@types/node@npm:25.0.3" + version: 25.6.0 + resolution: "@types/node@npm:25.6.0" dependencies: - undici-types: ~7.16.0 - checksum: b5e0146eafe208e2f1c1167fd6078a460ace823ad1da61967ec70b8d7521bd6dd26f3cd945796effac48ef4b3df4d8d57d03e9eefd5f2903f6c1d6daf84a9a79 + undici-types: ~7.19.0 + checksum: 98945eb59909a08868ccac203022f122b5549448ef8628de9eac3fe20481467cd6ec32af819fd432695f67ac21ebbbc69c8a141de6c6455edaf6e717e2cb89c9 languageName: node linkType: hard "@types/node@npm:^22.7.7": - version: 22.19.3 - resolution: "@types/node@npm:22.19.3" + version: 22.19.17 + resolution: "@types/node@npm:22.19.17" dependencies: undici-types: ~6.21.0 - checksum: 2fffd870ac2a5a531a160034075c858e7c95c521b0612e9b7ae35e7a6bae1880c7a190a77a5c335fbb2e5f4a315c1e2f2b529f9be4bdbb2166664a7206e28951 + checksum: c817456948b0453b15a15d7865faea0b0de9bc93e9725788a62978f05994702b673029300ce9667d52ce439acfb43ecd8122acb8eba9145c26b1c4d22e67a234 languageName: node linkType: hard @@ -533,12 +533,12 @@ __metadata: linkType: hard "pump@npm:^3.0.0": - version: 3.0.3 - resolution: "pump@npm:3.0.3" + version: 3.0.4 + resolution: "pump@npm:3.0.4" dependencies: end-of-stream: ^1.1.0 once: ^1.3.1 - checksum: 52843fc933b838c0330f588388115a1b28ef2a5ffa7774709b142e35431e8ab0c2edec90de3fa34ebb72d59fef854f151eea7dfc211b6dcf586b384556bd2f39 + checksum: d043c3e710c56ffd280711e98a94e863ab334f79ea43cee0fb70e1349b2355ffd2ff287c7522e4c960a247699d5b7825f00fa090b85d6179c973be13f78a6c49 languageName: node linkType: hard @@ -596,11 +596,11 @@ __metadata: linkType: hard "semver@npm:^7.3.2": - version: 7.7.3 - resolution: "semver@npm:7.7.3" + version: 7.7.4 + resolution: "semver@npm:7.7.4" bin: semver: bin/semver.js - checksum: f013a3ee4607857bcd3503b6ac1d80165f7f8ea94f5d55e2d3e33df82fce487aa3313b987abf9b39e0793c83c9fc67b76c36c067625141a9f6f704ae0ea18db2 + checksum: 9b4a6a58e98b9723fafcafa393c9d4e8edefaa60b8dfbe39e30892a3604cf1f45f52df9cfb1ae1a22b44c8b3d57fec8a9bb7b3e1645431587cb272399ede152e languageName: node linkType: hard @@ -649,10 +649,10 @@ __metadata: languageName: node linkType: hard -"undici-types@npm:~7.16.0": - version: 7.16.0 - resolution: "undici-types@npm:7.16.0" - checksum: 1ef68fc6c5bad200c8b6f17de8e5bc5cfdcadc164ba8d7208cd087cfa8583d922d8316a7fd76c9a658c22b4123d3ff847429185094484fbc65377d695c905857 +"undici-types@npm:~7.19.0": + version: 7.19.2 + resolution: "undici-types@npm:7.19.2" + checksum: f721026160e1f068a982401d0272b872819c335a2f64783c235ddd37a65ccd94327ec24489cee4556d57c77c14bd68ced60efa5def11cf11e3991f5ebf5e0e72 languageName: node linkType: hard diff --git a/test/fixtures/lockfiles/packageManagerTest/yarn berry workspace.txt b/test/fixtures/lockfiles/packageManagerTest/yarn berry workspace.txt index dab7692d323..2222aa512f5 100644 --- a/test/fixtures/lockfiles/packageManagerTest/yarn berry workspace.txt +++ b/test/fixtures/lockfiles/packageManagerTest/yarn berry workspace.txt @@ -53,9 +53,9 @@ __metadata: linkType: hard "@types/http-cache-semantics@npm:*": - version: 4.0.4 - resolution: "@types/http-cache-semantics@npm:4.0.4" - checksum: 7f4dd832e618bc1e271be49717d7b4066d77c2d4eed5b81198eb987e532bb3e1c7e02f45d77918185bad936f884b700c10cebe06305f50400f382ab75055f9e8 + version: 4.2.0 + resolution: "@types/http-cache-semantics@npm:4.2.0" + checksum: c75c63c3d4204eba2dc14f5ac5cfabc1c17ee9f11e6f5ff63d5c73a6245c7e360c0ae3e95512778860f5b08f5886fbaf7400fba3d23fd8faf279f58aa9bb54bc languageName: node linkType: hard @@ -69,20 +69,20 @@ __metadata: linkType: hard "@types/node@npm:*": - version: 25.0.3 - resolution: "@types/node@npm:25.0.3" + version: 25.6.0 + resolution: "@types/node@npm:25.6.0" dependencies: - undici-types: ~7.16.0 - checksum: b5e0146eafe208e2f1c1167fd6078a460ace823ad1da61967ec70b8d7521bd6dd26f3cd945796effac48ef4b3df4d8d57d03e9eefd5f2903f6c1d6daf84a9a79 + undici-types: ~7.19.0 + checksum: 98945eb59909a08868ccac203022f122b5549448ef8628de9eac3fe20481467cd6ec32af819fd432695f67ac21ebbbc69c8a141de6c6455edaf6e717e2cb89c9 languageName: node linkType: hard "@types/node@npm:^22.7.7": - version: 22.19.3 - resolution: "@types/node@npm:22.19.3" + version: 22.19.17 + resolution: "@types/node@npm:22.19.17" dependencies: undici-types: ~6.21.0 - checksum: 2fffd870ac2a5a531a160034075c858e7c95c521b0612e9b7ae35e7a6bae1880c7a190a77a5c335fbb2e5f4a315c1e2f2b529f9be4bdbb2166664a7206e28951 + checksum: c817456948b0453b15a15d7865faea0b0de9bc93e9725788a62978f05994702b673029300ce9667d52ce439acfb43ecd8122acb8eba9145c26b1c4d22e67a234 languageName: node linkType: hard @@ -518,12 +518,12 @@ __metadata: linkType: hard "pump@npm:^3.0.0": - version: 3.0.3 - resolution: "pump@npm:3.0.3" + version: 3.0.4 + resolution: "pump@npm:3.0.4" dependencies: end-of-stream: ^1.1.0 once: ^1.3.1 - checksum: 52843fc933b838c0330f588388115a1b28ef2a5ffa7774709b142e35431e8ab0c2edec90de3fa34ebb72d59fef854f151eea7dfc211b6dcf586b384556bd2f39 + checksum: d043c3e710c56ffd280711e98a94e863ab334f79ea43cee0fb70e1349b2355ffd2ff287c7522e4c960a247699d5b7825f00fa090b85d6179c973be13f78a6c49 languageName: node linkType: hard @@ -587,11 +587,11 @@ __metadata: linkType: hard "semver@npm:^7.3.2": - version: 7.7.3 - resolution: "semver@npm:7.7.3" + version: 7.7.4 + resolution: "semver@npm:7.7.4" bin: semver: bin/semver.js - checksum: f013a3ee4607857bcd3503b6ac1d80165f7f8ea94f5d55e2d3e33df82fce487aa3313b987abf9b39e0793c83c9fc67b76c36c067625141a9f6f704ae0ea18db2 + checksum: 9b4a6a58e98b9723fafcafa393c9d4e8edefaa60b8dfbe39e30892a3604cf1f45f52df9cfb1ae1a22b44c8b3d57fec8a9bb7b3e1645431587cb272399ede152e languageName: node linkType: hard @@ -634,10 +634,10 @@ __metadata: languageName: node linkType: hard -"undici-types@npm:~7.16.0": - version: 7.16.0 - resolution: "undici-types@npm:7.16.0" - checksum: 1ef68fc6c5bad200c8b6f17de8e5bc5cfdcadc164ba8d7208cd087cfa8583d922d8316a7fd76c9a658c22b4123d3ff847429185094484fbc65377d695c905857 +"undici-types@npm:~7.19.0": + version: 7.19.2 + resolution: "undici-types@npm:7.19.2" + checksum: f721026160e1f068a982401d0272b872819c335a2f64783c235ddd37a65ccd94327ec24489cee4556d57c77c14bd68ced60efa5def11cf11e3991f5ebf5e0e72 languageName: node linkType: hard diff --git a/test/fixtures/lockfiles/packageManagerTest/yarn berry.txt b/test/fixtures/lockfiles/packageManagerTest/yarn berry.txt index e69de29bb2d..722dc3679e9 100644 --- a/test/fixtures/lockfiles/packageManagerTest/yarn berry.txt +++ b/test/fixtures/lockfiles/packageManagerTest/yarn berry.txt @@ -0,0 +1,11 @@ +# This file is generated by running "yarn install" inside your project. +# Manual changes might be lost - proceed with caution! + +__metadata: + version: 6 + +"root-workspace-0b6124@workspace:.": + version: 0.0.0-use.local + resolution: "root-workspace-0b6124@workspace:." + languageName: unknown + linkType: soft diff --git a/test/fixtures/lockfiles/packageManagerTest/yarn multi-package workspace.txt b/test/fixtures/lockfiles/packageManagerTest/yarn multi-package workspace.txt index 915beb4f614..6d83ebf35ac 100644 --- a/test/fixtures/lockfiles/packageManagerTest/yarn multi-package workspace.txt +++ b/test/fixtures/lockfiles/packageManagerTest/yarn multi-package workspace.txt @@ -40,9 +40,9 @@ "@types/responselike" "^1.0.0" "@types/http-cache-semantics@*": - version "4.0.4" - resolved "https://registry.yarnpkg.com/@types/http-cache-semantics/-/http-cache-semantics-4.0.4.tgz#b979ebad3919799c979b17c72621c0bc0a31c6c4" - integrity sha512-1m0bIFVc7eJWyve9S0RnuRgcQqF/Xd5QsUZAZeQFr1Q3/p9JWoQQEqmVy+DPTNpGXwhgIetAoYF8JSc33q29QA== + version "4.2.0" + resolved "https://registry.yarnpkg.com/@types/http-cache-semantics/-/http-cache-semantics-4.2.0.tgz#f6a7788f438cbfde15f29acad46512b4c01913b3" + integrity sha512-L3LgimLHXtGkWikKnsPg0/VFx9OGZaC+eN1u4r+OB1XRqH3meBIAVC2zr1WdMH+RHmnRkqliQAOHNJ/E0j/e0Q== "@types/keyv@^3.1.4": version "3.1.4" @@ -52,16 +52,16 @@ "@types/node" "*" "@types/node@*": - version "25.0.3" - resolved "https://registry.yarnpkg.com/@types/node/-/node-25.0.3.tgz#79b9ac8318f373fbfaaf6e2784893efa9701f269" - integrity sha512-W609buLVRVmeW693xKfzHeIV6nJGGz98uCPfeXI1ELMLXVeKYZ9m15fAMSaUPBHYLGFsVRcMmSCksQOrZV9BYA== + version "25.6.0" + resolved "https://registry.yarnpkg.com/@types/node/-/node-25.6.0.tgz#4e09bad9b469871f2d0f68140198cbd714f4edca" + integrity sha512-+qIYRKdNYJwY3vRCZMdJbPLJAtGjQBudzZzdzwQYkEPQd+PJGixUL5QfvCLDaULoLv+RhT3LDkwEfKaAkgSmNQ== dependencies: - undici-types "~7.16.0" + undici-types "~7.19.0" "@types/node@^22.7.7": - version "22.19.3" - resolved "https://registry.yarnpkg.com/@types/node/-/node-22.19.3.tgz#8dfde7630d7a8528dc9b34db23d34f764467c02c" - integrity sha512-1N9SBnWYOJTrNZCdh/yJE+t910Y128BoyY+zBLWhL3r0TYzlTmFdXrPwHL9DyFZmlEXNQQolTZh3KHV31QDhyA== + version "22.19.17" + resolved "https://registry.yarnpkg.com/@types/node/-/node-22.19.17.tgz#09c71fb34ba2510f8ac865361b1fcb9552b8a581" + integrity sha512-wGdMcf+vPYM6jikpS/qhg6WiqSV/OhG+jeeHT/KlVqxYfD40iYJf9/AE1uQxVWFvU7MipKRkRv8NSHiCGgPr8Q== dependencies: undici-types "~6.21.0" @@ -387,9 +387,9 @@ progress@^2.0.3: integrity sha512-7PiHtLll5LdnKIMw100I+8xJXR5gW2QwWYkT6iJva0bXitZKa/XMrSbdmg3r2Xnaidz9Qumd0VPaMrZlF9V9sA== pump@^3.0.0: - version "3.0.3" - resolved "https://registry.yarnpkg.com/pump/-/pump-3.0.3.tgz#151d979f1a29668dc0025ec589a455b53282268d" - integrity sha512-todwxLMY7/heScKmntwQG8CXVkWUOdYxIvY2s0VWAAMh/nd8SoYiRaKjlr7+iCs984f2P8zvrfWcDDYVb73NfA== + version "3.0.4" + resolved "https://registry.yarnpkg.com/pump/-/pump-3.0.4.tgz#1f313430527fa8b905622ebd22fe1444e757ab3c" + integrity sha512-VS7sjc6KR7e1ukRFhQSY5LM2uBWAUPiOPa/A3mkKmiMwSmRFUITt0xuj+/lesgnCv+dPIEYlkzrcyXgquIHMcA== dependencies: end-of-stream "^1.1.0" once "^1.3.1" @@ -434,9 +434,9 @@ semver@^6.2.0: integrity sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA== semver@^7.3.2: - version "7.7.3" - resolved "https://registry.yarnpkg.com/semver/-/semver-7.7.3.tgz#4b5f4143d007633a8dc671cd0a6ef9147b8bb946" - integrity sha512-SdsKMrI9TdgjdweUSR9MweHA4EJ8YxHn8DFaDisvhVlUOe4BF1tLD7GAj0lIqWVl+dPb/rExr0Btby5loQm20Q== + version "7.7.4" + resolved "https://registry.yarnpkg.com/semver/-/semver-7.7.4.tgz#28464e36060e991fa7a11d0279d2d3f3b57a7e8a" + integrity sha512-vFKC2IEtQnVhpT78h1Yp8wzwrf8CM+MzKMHGJZfBtzhZNycRFnXsHk6E5TxIkkMsgNS7mdX3AGB7x2QM2di4lA== serialize-error@^7.0.1: version "7.0.1" @@ -467,10 +467,10 @@ undici-types@~6.21.0: resolved "https://registry.yarnpkg.com/undici-types/-/undici-types-6.21.0.tgz#691d00af3909be93a7faa13be61b3a5b50ef12cb" integrity sha512-iwDZqg0QAGrg9Rav5H4n0M64c3mkR59cJ6wQp+7C4nI0gsmExaedaYLNO44eT4AtBBwjbTiGPMlt2Md0T9H9JQ== -undici-types@~7.16.0: - version "7.16.0" - resolved "https://registry.yarnpkg.com/undici-types/-/undici-types-7.16.0.tgz#ffccdff36aea4884cbfce9a750a0580224f58a46" - integrity sha512-Zz+aZWSj8LE6zoxD+xrjh4VfkIG8Ya6LvYkZqtUQGJPZjYl53ypCaUwWqo7eI0x66KBGeRo+mlBEkMSeSZ38Nw== +undici-types@~7.19.0: + version "7.19.2" + resolved "https://registry.yarnpkg.com/undici-types/-/undici-types-7.19.2.tgz#1b67fc26d0f157a0cba3a58a5b5c1e2276b8ba2a" + integrity sha512-qYVnV5OEm2AW8cJMCpdV20CDyaN3g0AjDlOGf1OW4iaDEx8MwdtChUp4zu4H0VP3nDRF/8RKWH+IPp9uW0YGZg== universalify@^0.1.0: version "0.1.2" diff --git a/test/fixtures/lockfiles/packageManagerTest/yarn workspace.txt b/test/fixtures/lockfiles/packageManagerTest/yarn workspace.txt index 3d0a0d91a18..29bb5a8b76a 100644 --- a/test/fixtures/lockfiles/packageManagerTest/yarn workspace.txt +++ b/test/fixtures/lockfiles/packageManagerTest/yarn workspace.txt @@ -40,9 +40,9 @@ "@types/responselike" "^1.0.0" "@types/http-cache-semantics@*": - version "4.0.4" - resolved "https://registry.yarnpkg.com/@types/http-cache-semantics/-/http-cache-semantics-4.0.4.tgz#b979ebad3919799c979b17c72621c0bc0a31c6c4" - integrity sha512-1m0bIFVc7eJWyve9S0RnuRgcQqF/Xd5QsUZAZeQFr1Q3/p9JWoQQEqmVy+DPTNpGXwhgIetAoYF8JSc33q29QA== + version "4.2.0" + resolved "https://registry.yarnpkg.com/@types/http-cache-semantics/-/http-cache-semantics-4.2.0.tgz#f6a7788f438cbfde15f29acad46512b4c01913b3" + integrity sha512-L3LgimLHXtGkWikKnsPg0/VFx9OGZaC+eN1u4r+OB1XRqH3meBIAVC2zr1WdMH+RHmnRkqliQAOHNJ/E0j/e0Q== "@types/keyv@^3.1.4": version "3.1.4" @@ -52,16 +52,16 @@ "@types/node" "*" "@types/node@*": - version "25.0.3" - resolved "https://registry.yarnpkg.com/@types/node/-/node-25.0.3.tgz#79b9ac8318f373fbfaaf6e2784893efa9701f269" - integrity sha512-W609buLVRVmeW693xKfzHeIV6nJGGz98uCPfeXI1ELMLXVeKYZ9m15fAMSaUPBHYLGFsVRcMmSCksQOrZV9BYA== + version "25.6.0" + resolved "https://registry.yarnpkg.com/@types/node/-/node-25.6.0.tgz#4e09bad9b469871f2d0f68140198cbd714f4edca" + integrity sha512-+qIYRKdNYJwY3vRCZMdJbPLJAtGjQBudzZzdzwQYkEPQd+PJGixUL5QfvCLDaULoLv+RhT3LDkwEfKaAkgSmNQ== dependencies: - undici-types "~7.16.0" + undici-types "~7.19.0" "@types/node@^22.7.7": - version "22.19.3" - resolved "https://registry.yarnpkg.com/@types/node/-/node-22.19.3.tgz#8dfde7630d7a8528dc9b34db23d34f764467c02c" - integrity sha512-1N9SBnWYOJTrNZCdh/yJE+t910Y128BoyY+zBLWhL3r0TYzlTmFdXrPwHL9DyFZmlEXNQQolTZh3KHV31QDhyA== + version "22.19.17" + resolved "https://registry.yarnpkg.com/@types/node/-/node-22.19.17.tgz#09c71fb34ba2510f8ac865361b1fcb9552b8a581" + integrity sha512-wGdMcf+vPYM6jikpS/qhg6WiqSV/OhG+jeeHT/KlVqxYfD40iYJf9/AE1uQxVWFvU7MipKRkRv8NSHiCGgPr8Q== dependencies: undici-types "~6.21.0" @@ -382,9 +382,9 @@ progress@^2.0.3: integrity sha512-7PiHtLll5LdnKIMw100I+8xJXR5gW2QwWYkT6iJva0bXitZKa/XMrSbdmg3r2Xnaidz9Qumd0VPaMrZlF9V9sA== pump@^3.0.0: - version "3.0.3" - resolved "https://registry.yarnpkg.com/pump/-/pump-3.0.3.tgz#151d979f1a29668dc0025ec589a455b53282268d" - integrity sha512-todwxLMY7/heScKmntwQG8CXVkWUOdYxIvY2s0VWAAMh/nd8SoYiRaKjlr7+iCs984f2P8zvrfWcDDYVb73NfA== + version "3.0.4" + resolved "https://registry.yarnpkg.com/pump/-/pump-3.0.4.tgz#1f313430527fa8b905622ebd22fe1444e757ab3c" + integrity sha512-VS7sjc6KR7e1ukRFhQSY5LM2uBWAUPiOPa/A3mkKmiMwSmRFUITt0xuj+/lesgnCv+dPIEYlkzrcyXgquIHMcA== dependencies: end-of-stream "^1.1.0" once "^1.3.1" @@ -429,9 +429,9 @@ semver@^6.2.0: integrity sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA== semver@^7.3.2: - version "7.7.3" - resolved "https://registry.yarnpkg.com/semver/-/semver-7.7.3.tgz#4b5f4143d007633a8dc671cd0a6ef9147b8bb946" - integrity sha512-SdsKMrI9TdgjdweUSR9MweHA4EJ8YxHn8DFaDisvhVlUOe4BF1tLD7GAj0lIqWVl+dPb/rExr0Btby5loQm20Q== + version "7.7.4" + resolved "https://registry.yarnpkg.com/semver/-/semver-7.7.4.tgz#28464e36060e991fa7a11d0279d2d3f3b57a7e8a" + integrity sha512-vFKC2IEtQnVhpT78h1Yp8wzwrf8CM+MzKMHGJZfBtzhZNycRFnXsHk6E5TxIkkMsgNS7mdX3AGB7x2QM2di4lA== serialize-error@^7.0.1: version "7.0.1" @@ -462,10 +462,10 @@ undici-types@~6.21.0: resolved "https://registry.yarnpkg.com/undici-types/-/undici-types-6.21.0.tgz#691d00af3909be93a7faa13be61b3a5b50ef12cb" integrity sha512-iwDZqg0QAGrg9Rav5H4n0M64c3mkR59cJ6wQp+7C4nI0gsmExaedaYLNO44eT4AtBBwjbTiGPMlt2Md0T9H9JQ== -undici-types@~7.16.0: - version "7.16.0" - resolved "https://registry.yarnpkg.com/undici-types/-/undici-types-7.16.0.tgz#ffccdff36aea4884cbfce9a750a0580224f58a46" - integrity sha512-Zz+aZWSj8LE6zoxD+xrjh4VfkIG8Ya6LvYkZqtUQGJPZjYl53ypCaUwWqo7eI0x66KBGeRo+mlBEkMSeSZ38Nw== +undici-types@~7.19.0: + version "7.19.2" + resolved "https://registry.yarnpkg.com/undici-types/-/undici-types-7.19.2.tgz#1b67fc26d0f157a0cba3a58a5b5c1e2276b8ba2a" + integrity sha512-qYVnV5OEm2AW8cJMCpdV20CDyaN3g0AjDlOGf1OW4iaDEx8MwdtChUp4zu4H0VP3nDRF/8RKWH+IPp9uW0YGZg== universalify@^0.1.0: version "0.1.2" diff --git a/test/snapshots/HoistedNodeModuleTest.js.snap b/test/snapshots/HoistedNodeModuleTest.js.snap index 7224a19233c..16097ced9bf 100644 --- a/test/snapshots/HoistedNodeModuleTest.js.snap +++ b/test/snapshots/HoistedNodeModuleTest.js.snap @@ -9430,11 +9430,11 @@ exports[`node_module collectors > pnpm max stack 2`] = ` { "files": { "index.html": { - "offset": 3739200, + "offset": 3740300, "size": 380, }, "index.js": { - "offset": 3739580, + "offset": 3740670, "size": 620, }, "node_modules": { @@ -9607,10 +9607,10 @@ exports[`node_module collectors > pnpm max stack 2`] = ` }, "index.js": { "offset": 31210, - "size": 4800, + "size": 4810, }, "package.json": { - "offset": 36010, + "offset": 36020, "size": 1010, }, }, @@ -9618,27 +9618,27 @@ exports[`node_module collectors > pnpm max stack 2`] = ` "call-bind": { "files": { ".eslintignore": { - "offset": 37020, + "offset": 37030, "size": 10, }, ".nycrc": { - "offset": 37030, + "offset": 37040, "size": 140, }, "LICENSE": { - "offset": 37170, + "offset": 37180, "size": 1080, }, "callBound.js": { - "offset": 38240, + "offset": 38250, "size": 420, }, "index.js": { - "offset": 38650, + "offset": 38660, "size": 650, }, "package.json": { - "offset": 39290, + "offset": 39310, "size": 1510, }, }, @@ -9646,43 +9646,43 @@ exports[`node_module collectors > pnpm max stack 2`] = ` "call-bind-apply-helpers": { "files": { ".nycrc": { - "offset": 40800, + "offset": 40810, "size": 140, }, "LICENSE": { - "offset": 40940, + "offset": 40950, "size": 1080, }, "actualApply.js": { - "offset": 42010, + "offset": 42020, "size": 280, }, "applyBind.js": { - "offset": 42290, + "offset": 42300, "size": 270, }, "functionApply.js": { - "offset": 42550, + "offset": 42560, "size": 100, }, "functionCall.js": { - "offset": 42650, + "offset": 42660, "size": 100, }, "index.js": { - "offset": 42750, + "offset": 42760, "size": 520, }, "package.json": { - "offset": 43260, + "offset": 43270, "size": 1850, }, "reflectApply.js": { - "offset": 45100, + "offset": 45110, "size": 140, }, "tsconfig.json": { - "offset": 45230, + "offset": 45240, "size": 120, }, }, @@ -9690,23 +9690,23 @@ exports[`node_module collectors > pnpm max stack 2`] = ` "call-bound": { "files": { ".nycrc": { - "offset": 45350, + "offset": 45360, "size": 140, }, "LICENSE": { - "offset": 45490, + "offset": 45500, "size": 1080, }, "index.js": { - "offset": 46560, + "offset": 46570, "size": 690, }, "package.json": { - "offset": 47240, + "offset": 47260, "size": 1690, }, "tsconfig.json": { - "offset": 48930, + "offset": 48950, "size": 140, }, }, @@ -9714,23 +9714,23 @@ exports[`node_module collectors > pnpm max stack 2`] = ` "chalk": { "files": { "index.js": { - "offset": 49070, + "offset": 49080, "size": 6440, }, "index.js.flow": { - "offset": 55510, + "offset": 55520, "size": 1930, }, "license": { - "offset": 57430, + "offset": 57440, "size": 1110, }, "package.json": { - "offset": 58540, + "offset": 58550, "size": 710, }, "templates.js": { - "offset": 59250, + "offset": 59260, "size": 3140, }, }, @@ -9738,23 +9738,23 @@ exports[`node_module collectors > pnpm max stack 2`] = ` "color-convert": { "files": { "LICENSE": { - "offset": 62380, + "offset": 62390, "size": 1090, }, "conversions.js": { - "offset": 63470, + "offset": 63480, "size": 16850, }, "index.js": { - "offset": 80320, + "offset": 80330, "size": 1730, }, "package.json": { - "offset": 82040, + "offset": 82050, "size": 430, }, "route.js": { - "offset": 82470, + "offset": 82480, "size": 2230, }, }, @@ -9762,23 +9762,23 @@ exports[`node_module collectors > pnpm max stack 2`] = ` "color-name": { "files": { ".eslintrc.json": { - "offset": 84700, + "offset": 84710, "size": 1160, }, "LICENSE": { - "offset": 85860, + "offset": 85870, "size": 1090, }, "index.js": { - "offset": 86940, + "offset": 86960, "size": 4620, }, "package.json": { - "offset": 91560, + "offset": 91570, "size": 350, }, "test.js": { - "offset": 91900, + "offset": 91910, "size": 180, }, }, @@ -9786,19 +9786,19 @@ exports[`node_module collectors > pnpm max stack 2`] = ` "concat-map": { "files": { "LICENSE": { - "offset": 92070, + "offset": 92090, "size": 1080, }, "README.markdown": { - "offset": 93150, + "offset": 93160, "size": 1170, }, "index.js": { - "offset": 94310, + "offset": 94320, "size": 350, }, "package.json": { - "offset": 94660, + "offset": 94670, "size": 800, }, }, @@ -9806,35 +9806,35 @@ exports[`node_module collectors > pnpm max stack 2`] = ` "cross-spawn": { "files": { "LICENSE": { - "offset": 95450, + "offset": 95460, "size": 1110, }, "index.js": { - "offset": 96550, + "offset": 96560, "size": 1200, }, "lib": { "files": { "enoent.js": { - "offset": 97740, + "offset": 97760, "size": 1480, }, "parse.js": { - "offset": 99220, + "offset": 99240, "size": 4420, }, "util": { "files": { "escape.js": { - "offset": 103640, + "offset": 103650, "size": 1390, }, "readShebang.js": { - "offset": 105020, + "offset": 105030, "size": 740, }, "resolveCommand.js": { - "offset": 105760, + "offset": 105770, "size": 1500, }, }, @@ -9842,7 +9842,7 @@ exports[`node_module collectors > pnpm max stack 2`] = ` }, }, "package.json": { - "offset": 107260, + "offset": 107270, "size": 1350, }, }, @@ -9850,23 +9850,23 @@ exports[`node_module collectors > pnpm max stack 2`] = ` "data-view-buffer": { "files": { ".nycrc": { - "offset": 108600, + "offset": 108610, "size": 220, }, "LICENSE": { - "offset": 108820, + "offset": 108830, "size": 1080, }, "index.js": { - "offset": 109890, + "offset": 109900, "size": 490, }, "package.json": { - "offset": 110370, + "offset": 110380, "size": 1630, }, "tsconfig.json": { - "offset": 111990, + "offset": 112010, "size": 270, }, }, @@ -9874,23 +9874,23 @@ exports[`node_module collectors > pnpm max stack 2`] = ` "data-view-byte-length": { "files": { ".nycrc": { - "offset": 112260, + "offset": 112270, "size": 220, }, "LICENSE": { - "offset": 112470, + "offset": 112490, "size": 1080, }, "index.js": { - "offset": 113550, + "offset": 113560, "size": 500, }, "package.json": { - "offset": 114040, + "offset": 114050, "size": 1660, }, "tsconfig.json": { - "offset": 115700, + "offset": 115710, "size": 250, }, }, @@ -9898,23 +9898,23 @@ exports[`node_module collectors > pnpm max stack 2`] = ` "data-view-byte-offset": { "files": { ".nycrc": { - "offset": 115940, + "offset": 115950, "size": 220, }, "LICENSE": { - "offset": 116150, + "offset": 116170, "size": 1080, }, "index.js": { - "offset": 117220, + "offset": 117240, "size": 500, }, "package.json": { - "offset": 117720, + "offset": 117730, "size": 1710, }, "tsconfig.json": { - "offset": 119430, + "offset": 119440, "size": 120, }, }, @@ -9922,23 +9922,23 @@ exports[`node_module collectors > pnpm max stack 2`] = ` "define-data-property": { "files": { ".nycrc": { - "offset": 119550, + "offset": 119560, "size": 220, }, "LICENSE": { - "offset": 119760, + "offset": 119780, "size": 1080, }, "index.js": { - "offset": 120830, + "offset": 120850, "size": 2340, }, "package.json": { - "offset": 123170, + "offset": 123180, "size": 2080, }, "tsconfig.json": { - "offset": 125240, + "offset": 125260, "size": 4890, }, }, @@ -9946,23 +9946,23 @@ exports[`node_module collectors > pnpm max stack 2`] = ` "define-properties": { "files": { ".editorconfig": { - "offset": 130130, + "offset": 130140, "size": 280, }, ".nycrc": { - "offset": 130400, + "offset": 130410, "size": 140, }, "LICENSE": { - "offset": 130540, + "offset": 130550, "size": 1080, }, "index.js": { - "offset": 131620, + "offset": 131630, "size": 1270, }, "package.json": { - "offset": 132890, + "offset": 132900, "size": 1680, }, }, @@ -9970,27 +9970,27 @@ exports[`node_module collectors > pnpm max stack 2`] = ` "dunder-proto": { "files": { ".nycrc": { - "offset": 134560, + "offset": 134570, "size": 220, }, "LICENSE": { - "offset": 134780, + "offset": 134790, "size": 1080, }, "get.js": { - "offset": 135850, + "offset": 135860, "size": 980, }, "package.json": { - "offset": 136830, + "offset": 136840, "size": 1450, }, "set.js": { - "offset": 138280, + "offset": 138290, "size": 1280, }, "tsconfig.json": { - "offset": 139560, + "offset": 139570, "size": 120, }, }, @@ -9998,15 +9998,15 @@ exports[`node_module collectors > pnpm max stack 2`] = ` "error-ex": { "files": { "LICENSE": { - "offset": 139670, + "offset": 139690, "size": 1080, }, "index.js": { - "offset": 140750, + "offset": 140760, "size": 2910, }, "package.json": { - "offset": 143660, + "offset": 143670, "size": 590, }, }, @@ -10016,563 +10016,563 @@ exports[`node_module collectors > pnpm max stack 2`] = ` ".claude": { "files": { "settings.local.json": { - "offset": 144240, + "offset": 144250, "size": 180, }, }, }, ".editorconfig": { - "offset": 144420, + "offset": 144430, "size": 320, }, ".nycrc": { - "offset": 144730, + "offset": 144740, "size": 320, }, "2015": { "files": { "AbstractEqualityComparison.js": { - "offset": 145040, + "offset": 145050, "size": 1210, }, "AbstractRelationalComparison.js": { - "offset": 146240, + "offset": 146260, "size": 1580, }, "AdvanceStringIndex.js": { - "offset": 147810, + "offset": 147830, "size": 1250, }, "ArrayCreate.js": { - "offset": 149060, + "offset": 149070, "size": 1430, }, "ArraySetLength.js": { - "offset": 150490, + "offset": 150500, "size": 2430, }, "ArraySpeciesCreate.js": { - "offset": 152910, + "offset": 152920, "size": 1370, }, "Call.js": { - "offset": 154280, + "offset": 154290, "size": 610, }, "CanonicalNumericIndexString.js": { - "offset": 154880, + "offset": 154890, "size": 580, }, "Canonicalize.js": { - "offset": 155450, + "offset": 155470, "size": 1190, }, "CharacterRange.js": { - "offset": 156640, + "offset": 156650, "size": 1350, }, "CompletePropertyDescriptor.js": { - "offset": 157980, + "offset": 157990, "size": 1110, }, "CompletionRecord.js": { - "offset": 159090, + "offset": 159100, "size": 1360, }, "CreateDataProperty.js": { - "offset": 160450, + "offset": 160460, "size": 730, }, "CreateDataPropertyOrThrow.js": { - "offset": 161170, + "offset": 161180, "size": 700, }, "CreateHTML.js": { - "offset": 161870, + "offset": 161880, "size": 840, }, "CreateIterResultObject.js": { - "offset": 162710, + "offset": 162720, "size": 350, }, "CreateListFromArrayLike.js": { - "offset": 163060, + "offset": 163070, "size": 1350, }, "CreateMethodProperty.js": { - "offset": 164400, + "offset": 164410, "size": 950, }, "DateFromTime.js": { - "offset": 165340, + "offset": 165360, "size": 990, }, "Day.js": { - "offset": 166330, + "offset": 166340, "size": 240, }, "DayFromYear.js": { - "offset": 166570, + "offset": 166580, "size": 260, }, "DayWithinYear.js": { - "offset": 166820, + "offset": 166830, "size": 290, }, "DaysInYear.js": { - "offset": 167110, + "offset": 167120, "size": 310, }, "DefinePropertyOrThrow.js": { - "offset": 167410, + "offset": 167420, "size": 1170, }, "DeletePropertyOrThrow.js": { - "offset": 168580, + "offset": 168590, "size": 670, }, "DetachArrayBuffer.js": { - "offset": 169240, + "offset": 169260, "size": 1260, }, "EnumerableOwnNames.js": { - "offset": 170500, + "offset": 170510, "size": 380, }, "FromPropertyDescriptor.js": { - "offset": 170880, + "offset": 170890, "size": 540, }, "Get.js": { - "offset": 171410, + "offset": 171430, "size": 570, }, "GetGlobalObject.js": { - "offset": 171980, + "offset": 171990, "size": 200, }, "GetIterator.js": { - "offset": 172180, + "offset": 172190, "size": 760, }, "GetMethod.js": { - "offset": 172930, + "offset": 172950, "size": 690, }, "GetOwnPropertyKeys.js": { - "offset": 173620, + "offset": 173630, "size": 840, }, "GetPrototypeFromConstructor.js": { - "offset": 174450, + "offset": 174460, "size": 1080, }, "GetSubstitution.js": { - "offset": 175530, + "offset": 175540, "size": 3270, }, "GetV.js": { - "offset": 178790, + "offset": 178800, "size": 500, }, "GetValueFromBuffer.js": { - "offset": 179280, + "offset": 179290, "size": 3280, }, "HasOwnProperty.js": { - "offset": 182550, + "offset": 182560, "size": 540, }, "HasProperty.js": { - "offset": 183080, + "offset": 183100, "size": 490, }, "HourFromTime.js": { - "offset": 183570, + "offset": 183580, "size": 390, }, "InLeapYear.js": { - "offset": 183950, + "offset": 183970, "size": 470, }, "InstanceofOperator.js": { - "offset": 184420, + "offset": 184430, "size": 930, }, "IntegerIndexedElementGet.js": { - "offset": 185340, + "offset": 185350, "size": 1850, }, "IntegerIndexedElementSet.js": { - "offset": 187190, + "offset": 187200, "size": 1960, }, "InternalizeJSONProperty.js": { - "offset": 189140, + "offset": 189150, "size": 2140, }, "Invoke.js": { - "offset": 191270, + "offset": 191290, "size": 680, }, "IsAccessorDescriptor.js": { - "offset": 191940, + "offset": 191960, "size": 560, }, "IsArray.js": { - "offset": 192500, + "offset": 192510, "size": 120, }, "IsCallable.js": { - "offset": 192620, + "offset": 192630, "size": 110, }, "IsCompatiblePropertyDescriptor.js": { - "offset": 192730, + "offset": 192740, "size": 370, }, "IsConcatSpreadable.js": { - "offset": 193100, + "offset": 193110, "size": 640, }, "IsConstructor.js": { - "offset": 193730, + "offset": 193740, "size": 1150, }, "IsDataDescriptor.js": { - "offset": 194880, + "offset": 194890, "size": 570, }, "IsDetachedBuffer.js": { - "offset": 195440, + "offset": 195450, "size": 740, }, "IsExtensible.js": { - "offset": 196170, + "offset": 196180, "size": 510, }, "IsGenericDescriptor.js": { - "offset": 196680, + "offset": 196690, "size": 660, }, "IsInteger.js": { - "offset": 197330, + "offset": 197340, "size": 210, }, "IsPromise.js": { - "offset": 197540, + "offset": 197550, "size": 490, }, "IsPropertyDescriptor.js": { - "offset": 198020, + "offset": 198040, "size": 320, }, "IsPropertyKey.js": { - "offset": 198340, + "offset": 198350, "size": 230, }, "IsRegExp.js": { - "offset": 198560, + "offset": 198570, "size": 570, }, "IsWordChar.js": { - "offset": 199130, + "offset": 199140, "size": 1090, }, "IteratorClose.js": { - "offset": 200220, + "offset": 200230, "size": 1770, }, "IteratorComplete.js": { - "offset": 201980, + "offset": 201990, "size": 460, }, "IteratorNext.js": { - "offset": 202440, + "offset": 202450, "size": 460, }, "IteratorStep.js": { - "offset": 202890, + "offset": 202910, "size": 350, }, "IteratorValue.js": { - "offset": 203240, + "offset": 203250, "size": 410, }, "MakeDate.js": { - "offset": 203650, + "offset": 203660, "size": 340, }, "MakeDay.js": { - "offset": 203980, + "offset": 203990, "size": 930, }, "MakeTime.js": { - "offset": 204900, + "offset": 204910, "size": 710, }, "MinFromTime.js": { - "offset": 205610, + "offset": 205620, "size": 400, }, "MonthFromTime.js": { - "offset": 206000, + "offset": 206010, "size": 1130, }, "NewPromiseCapability.js": { - "offset": 207130, + "offset": 207140, "size": 1230, }, "NormalCompletion.js": { - "offset": 208360, + "offset": 208370, "size": 240, }, "ObjectCreate.js": { - "offset": 208600, + "offset": 208610, "size": 1330, }, "ObjectDefineProperties.js": { - "offset": 209920, + "offset": 209940, "size": 1440, }, "OrdinaryCreateFromConstructor.js": { - "offset": 211360, + "offset": 211370, "size": 810, }, "OrdinaryDefineOwnProperty.js": { - "offset": 212160, + "offset": 212170, "size": 2180, }, "OrdinaryGetOwnProperty.js": { - "offset": 214340, + "offset": 214350, "size": 1200, }, "OrdinaryHasInstance.js": { - "offset": 215530, + "offset": 215540, "size": 580, }, "OrdinaryHasProperty.js": { - "offset": 216100, + "offset": 216110, "size": 510, }, "QuoteJSONString.js": { - "offset": 216600, + "offset": 216610, "size": 1340, }, "RegExpCreate.js": { - "offset": 217940, + "offset": 217950, "size": 650, }, "RegExpExec.js": { - "offset": 218580, + "offset": 218590, "size": 830, }, "RequireObjectCoercible.js": { - "offset": 219410, + "offset": 219420, "size": 90, }, "SameValue.js": { - "offset": 219490, + "offset": 219500, "size": 320, }, "SameValueZero.js": { - "offset": 219800, + "offset": 219820, "size": 230, }, "SecFromTime.js": { - "offset": 220030, + "offset": 220040, "size": 410, }, "Set.js": { - "offset": 220430, + "offset": 220440, "size": 1230, }, "SetFunctionName.js": { - "offset": 221660, + "offset": 221670, "size": 1290, }, "SetIntegrityLevel.js": { - "offset": 222940, + "offset": 222960, "size": 1840, }, "SetValueInBuffer.js": { - "offset": 224780, + "offset": 224790, "size": 3830, }, "SpeciesConstructor.js": { - "offset": 228610, + "offset": 228620, "size": 850, }, "SplitMatch.js": { - "offset": 229450, + "offset": 229460, "size": 810, }, "StrictEqualityComparison.js": { - "offset": 230250, + "offset": 230260, "size": 320, }, "StringCreate.js": { - "offset": 230570, + "offset": 230580, "size": 1080, }, "StringGetIndexProperty.js": { - "offset": 231640, + "offset": 231660, "size": 1320, }, "SymbolDescriptiveString.js": { - "offset": 232960, + "offset": 232970, "size": 440, }, "TestIntegrityLevel.js": { - "offset": 233390, + "offset": 233400, "size": 1210, }, "TimeClip.js": { - "offset": 234600, + "offset": 234610, "size": 440, }, "TimeFromYear.js": { - "offset": 235040, + "offset": 235050, "size": 270, }, "TimeWithinDay.js": { - "offset": 235300, + "offset": 235310, "size": 250, }, "ToBoolean.js": { - "offset": 235540, + "offset": 235560, "size": 130, }, "ToDateString.js": { - "offset": 235670, + "offset": 235690, "size": 520, }, "ToInt16.js": { - "offset": 236190, + "offset": 236200, "size": 260, }, "ToInt32.js": { - "offset": 236450, + "offset": 236460, "size": 180, }, "ToInt8.js": { - "offset": 236620, + "offset": 236630, "size": 250, }, "ToInteger.js": { - "offset": 236860, + "offset": 236870, "size": 270, }, "ToLength.js": { - "offset": 237130, + "offset": 237140, "size": 410, }, "ToNumber.js": { - "offset": 237530, + "offset": 237550, "size": 1510, }, "ToObject.js": { - "offset": 239040, + "offset": 239050, "size": 130, }, "ToPrimitive.js": { - "offset": 239160, + "offset": 239180, "size": 290, }, "ToPropertyDescriptor.js": { - "offset": 239450, + "offset": 239460, "size": 1460, }, "ToPropertyKey.js": { - "offset": 240900, + "offset": 240910, "size": 400, }, "ToString.js": { - "offset": 241300, + "offset": 241310, "size": 390, }, "ToUint16.js": { - "offset": 241690, + "offset": 241700, "size": 610, }, "ToUint32.js": { - "offset": 242300, + "offset": 242310, "size": 180, }, "ToUint8.js": { - "offset": 242470, + "offset": 242480, "size": 630, }, "ToUint8Clamp.js": { - "offset": 243100, + "offset": 243110, "size": 520, }, "Type.js": { - "offset": 243620, + "offset": 243630, "size": 250, }, "ValidateAndApplyPropertyDescriptor.js": { - "offset": 243860, + "offset": 243870, "size": 5010, }, "ValidateTypedArray.js": { - "offset": 248860, + "offset": 248870, "size": 800, }, "WeekDay.js": { - "offset": 249660, + "offset": 249670, "size": 210, }, "YearFromTime.js": { - "offset": 249860, + "offset": 249880, "size": 400, }, "abs.js": { - "offset": 250260, + "offset": 250270, "size": 170, }, "floor.js": { - "offset": 250430, + "offset": 250440, "size": 240, }, "max.js": { - "offset": 250670, + "offset": 250680, "size": 140, }, "min.js": { - "offset": 250800, + "offset": 250810, "size": 140, }, "modulo.js": { - "offset": 250930, + "offset": 250950, "size": 170, }, "msFromTime.js": { - "offset": 251100, + "offset": 251110, "size": 260, }, "tables": { "files": { "typed-array-objects.js": { - "offset": 251360, + "offset": 251370, "size": 630, }, }, }, "thisBooleanValue.js": { - "offset": 251980, + "offset": 252000, "size": 330, }, "thisNumberValue.js": { - "offset": 252310, + "offset": 252320, "size": 350, }, "thisStringValue.js": { - "offset": 252650, + "offset": 252660, "size": 320, }, "thisTimeValue.js": { - "offset": 252970, + "offset": 252980, "size": 240, }, }, @@ -10580,575 +10580,575 @@ exports[`node_module collectors > pnpm max stack 2`] = ` "2016": { "files": { "AbstractEqualityComparison.js": { - "offset": 253200, + "offset": 253210, "size": 1210, }, "AbstractRelationalComparison.js": { - "offset": 254400, + "offset": 254420, "size": 1580, }, "AdvanceStringIndex.js": { - "offset": 255970, + "offset": 255990, "size": 1250, }, "ArrayCreate.js": { - "offset": 257220, + "offset": 257230, "size": 1430, }, "ArraySetLength.js": { - "offset": 258650, + "offset": 258660, "size": 2430, }, "ArraySpeciesCreate.js": { - "offset": 261070, + "offset": 261080, "size": 1370, }, "Call.js": { - "offset": 262440, + "offset": 262450, "size": 610, }, "CanonicalNumericIndexString.js": { - "offset": 263040, + "offset": 263050, "size": 580, }, "Canonicalize.js": { - "offset": 263610, + "offset": 263630, "size": 1190, }, "CharacterRange.js": { - "offset": 264800, + "offset": 264810, "size": 1350, }, "CompletePropertyDescriptor.js": { - "offset": 266140, + "offset": 266150, "size": 1110, }, "CompletionRecord.js": { - "offset": 267250, + "offset": 267260, "size": 1360, }, "CreateDataProperty.js": { - "offset": 268610, + "offset": 268620, "size": 730, }, "CreateDataPropertyOrThrow.js": { - "offset": 269330, + "offset": 269340, "size": 700, }, "CreateHTML.js": { - "offset": 270030, + "offset": 270040, "size": 840, }, "CreateIterResultObject.js": { - "offset": 270870, + "offset": 270880, "size": 350, }, "CreateListFromArrayLike.js": { - "offset": 271220, + "offset": 271230, "size": 1350, }, "CreateMethodProperty.js": { - "offset": 272560, + "offset": 272570, "size": 950, }, "DateFromTime.js": { - "offset": 273500, + "offset": 273520, "size": 990, }, "Day.js": { - "offset": 274490, + "offset": 274500, "size": 240, }, "DayFromYear.js": { - "offset": 274730, + "offset": 274740, "size": 260, }, "DayWithinYear.js": { - "offset": 274980, + "offset": 274990, "size": 290, }, "DaysInYear.js": { - "offset": 275270, + "offset": 275280, "size": 310, }, "DefinePropertyOrThrow.js": { - "offset": 275570, + "offset": 275580, "size": 1170, }, "DeletePropertyOrThrow.js": { - "offset": 276740, + "offset": 276750, "size": 670, }, "DetachArrayBuffer.js": { - "offset": 277400, + "offset": 277420, "size": 1260, }, "EnumerableOwnNames.js": { - "offset": 278660, + "offset": 278670, "size": 380, }, "FromPropertyDescriptor.js": { - "offset": 279040, + "offset": 279050, "size": 540, }, "Get.js": { - "offset": 279570, + "offset": 279590, "size": 570, }, "GetGlobalObject.js": { - "offset": 280140, + "offset": 280150, "size": 200, }, "GetIterator.js": { - "offset": 280340, + "offset": 280350, "size": 760, }, "GetMethod.js": { - "offset": 281090, + "offset": 281110, "size": 690, }, "GetOwnPropertyKeys.js": { - "offset": 281780, + "offset": 281790, "size": 840, }, "GetPrototypeFromConstructor.js": { - "offset": 282610, + "offset": 282620, "size": 1080, }, "GetSubstitution.js": { - "offset": 283690, + "offset": 283700, "size": 3270, }, "GetV.js": { - "offset": 286950, + "offset": 286960, "size": 500, }, "GetValueFromBuffer.js": { - "offset": 287440, + "offset": 287450, "size": 3280, }, "HasOwnProperty.js": { - "offset": 290710, + "offset": 290720, "size": 540, }, "HasProperty.js": { - "offset": 291240, + "offset": 291260, "size": 490, }, "HourFromTime.js": { - "offset": 291730, + "offset": 291740, "size": 390, }, "InLeapYear.js": { - "offset": 292110, + "offset": 292130, "size": 470, }, "InstanceofOperator.js": { - "offset": 292580, + "offset": 292590, "size": 930, }, "IntegerIndexedElementGet.js": { - "offset": 293500, + "offset": 293510, "size": 1850, }, "IntegerIndexedElementSet.js": { - "offset": 295350, + "offset": 295360, "size": 1960, }, "InternalizeJSONProperty.js": { - "offset": 297300, + "offset": 297310, "size": 2140, }, "Invoke.js": { - "offset": 299430, + "offset": 299450, "size": 680, }, "IsAccessorDescriptor.js": { - "offset": 300100, + "offset": 300120, "size": 560, }, "IsArray.js": { - "offset": 300660, + "offset": 300670, "size": 120, }, "IsCallable.js": { - "offset": 300780, + "offset": 300790, "size": 110, }, "IsCompatiblePropertyDescriptor.js": { - "offset": 300890, + "offset": 300900, "size": 370, }, "IsConcatSpreadable.js": { - "offset": 301260, + "offset": 301270, "size": 640, }, "IsConstructor.js": { - "offset": 301890, + "offset": 301900, "size": 1150, }, "IsDataDescriptor.js": { - "offset": 303040, + "offset": 303050, "size": 570, }, "IsDetachedBuffer.js": { - "offset": 303600, + "offset": 303610, "size": 740, }, "IsExtensible.js": { - "offset": 304330, + "offset": 304340, "size": 510, }, "IsGenericDescriptor.js": { - "offset": 304840, + "offset": 304850, "size": 660, }, "IsInteger.js": { - "offset": 305490, + "offset": 305500, "size": 210, }, "IsPromise.js": { - "offset": 305700, + "offset": 305710, "size": 490, }, "IsPropertyDescriptor.js": { - "offset": 306180, + "offset": 306200, "size": 320, }, "IsPropertyKey.js": { - "offset": 306500, + "offset": 306510, "size": 230, }, "IsRegExp.js": { - "offset": 306720, + "offset": 306730, "size": 570, }, "IsWordChar.js": { - "offset": 307290, + "offset": 307300, "size": 1090, }, "IterableToArrayLike.js": { - "offset": 308380, + "offset": 308390, "size": 950, }, "IteratorClose.js": { - "offset": 309320, + "offset": 309330, "size": 1770, }, "IteratorComplete.js": { - "offset": 311090, + "offset": 311100, "size": 460, }, "IteratorNext.js": { - "offset": 311550, + "offset": 311560, "size": 460, }, "IteratorStep.js": { - "offset": 312000, + "offset": 312010, "size": 350, }, "IteratorValue.js": { - "offset": 312350, + "offset": 312360, "size": 410, }, "MakeDate.js": { - "offset": 312750, + "offset": 312760, "size": 340, }, "MakeDay.js": { - "offset": 313090, + "offset": 313100, "size": 930, }, "MakeTime.js": { - "offset": 314010, + "offset": 314020, "size": 710, }, "MinFromTime.js": { - "offset": 314710, + "offset": 314720, "size": 400, }, "MonthFromTime.js": { - "offset": 315110, + "offset": 315120, "size": 1130, }, "NewPromiseCapability.js": { - "offset": 316240, + "offset": 316250, "size": 1230, }, "NormalCompletion.js": { - "offset": 317460, + "offset": 317480, "size": 240, }, "ObjectCreate.js": { - "offset": 317700, + "offset": 317710, "size": 1330, }, "ObjectDefineProperties.js": { - "offset": 319030, + "offset": 319040, "size": 1440, }, "OrdinaryCreateFromConstructor.js": { - "offset": 320460, + "offset": 320480, "size": 810, }, "OrdinaryDefineOwnProperty.js": { - "offset": 321260, + "offset": 321280, "size": 2180, }, "OrdinaryGetOwnProperty.js": { - "offset": 323440, + "offset": 323450, "size": 1200, }, "OrdinaryGetPrototypeOf.js": { - "offset": 324640, + "offset": 324650, "size": 500, }, "OrdinaryHasInstance.js": { - "offset": 325130, + "offset": 325140, "size": 580, }, "OrdinaryHasProperty.js": { - "offset": 325700, + "offset": 325710, "size": 510, }, "OrdinarySetPrototypeOf.js": { - "offset": 326200, + "offset": 326210, "size": 1000, }, "QuoteJSONString.js": { - "offset": 327200, + "offset": 327210, "size": 1340, }, "RegExpCreate.js": { - "offset": 328530, + "offset": 328540, "size": 650, }, "RegExpExec.js": { - "offset": 329180, + "offset": 329190, "size": 830, }, "RequireObjectCoercible.js": { - "offset": 330010, + "offset": 330020, "size": 90, }, "SameValue.js": { - "offset": 330090, + "offset": 330100, "size": 320, }, "SameValueNonNumber.js": { - "offset": 330400, + "offset": 330410, "size": 410, }, "SameValueZero.js": { - "offset": 330800, + "offset": 330810, "size": 230, }, "SecFromTime.js": { - "offset": 331030, + "offset": 331040, "size": 410, }, "Set.js": { - "offset": 331430, + "offset": 331440, "size": 1230, }, "SetFunctionName.js": { - "offset": 332650, + "offset": 332670, "size": 1290, }, "SetIntegrityLevel.js": { - "offset": 333940, + "offset": 333950, "size": 1840, }, "SetValueInBuffer.js": { - "offset": 335780, + "offset": 335790, "size": 3830, }, "SpeciesConstructor.js": { - "offset": 339600, + "offset": 339620, "size": 850, }, "SplitMatch.js": { - "offset": 340450, + "offset": 340460, "size": 810, }, "StrictEqualityComparison.js": { - "offset": 341250, + "offset": 341260, "size": 320, }, "StringCreate.js": { - "offset": 341570, + "offset": 341580, "size": 1080, }, "SymbolDescriptiveString.js": { - "offset": 342640, + "offset": 342650, "size": 440, }, "TestIntegrityLevel.js": { - "offset": 343080, + "offset": 343090, "size": 1210, }, "TimeClip.js": { - "offset": 344280, + "offset": 344300, "size": 440, }, "TimeFromYear.js": { - "offset": 344720, + "offset": 344730, "size": 270, }, "TimeWithinDay.js": { - "offset": 344980, + "offset": 345000, "size": 250, }, "ToBoolean.js": { - "offset": 345230, + "offset": 345240, "size": 130, }, "ToDateString.js": { - "offset": 345360, + "offset": 345370, "size": 520, }, "ToInt16.js": { - "offset": 345880, + "offset": 345890, "size": 260, }, "ToInt32.js": { - "offset": 346130, + "offset": 346150, "size": 180, }, "ToInt8.js": { - "offset": 346310, + "offset": 346320, "size": 250, }, "ToInteger.js": { - "offset": 346550, + "offset": 346560, "size": 270, }, "ToLength.js": { - "offset": 346820, + "offset": 346830, "size": 410, }, "ToNumber.js": { - "offset": 347220, + "offset": 347230, "size": 1510, }, "ToObject.js": { - "offset": 348720, + "offset": 348740, "size": 130, }, "ToPrimitive.js": { - "offset": 348850, + "offset": 348860, "size": 290, }, "ToPropertyDescriptor.js": { - "offset": 349130, + "offset": 349140, "size": 1460, }, "ToPropertyKey.js": { - "offset": 350590, + "offset": 350600, "size": 400, }, "ToString.js": { - "offset": 350990, + "offset": 351000, "size": 390, }, "ToUint16.js": { - "offset": 351380, + "offset": 351390, "size": 610, }, "ToUint32.js": { - "offset": 351980, + "offset": 351990, "size": 180, }, "ToUint8.js": { - "offset": 352160, + "offset": 352170, "size": 630, }, "ToUint8Clamp.js": { - "offset": 352780, + "offset": 352800, "size": 520, }, "Type.js": { - "offset": 353300, + "offset": 353320, "size": 250, }, "TypedArrayCreate.js": { - "offset": 353550, + "offset": 353560, "size": 1690, }, "TypedArraySpeciesCreate.js": { - "offset": 355230, + "offset": 355250, "size": 1380, }, "UTF16Decode.js": { - "offset": 356600, + "offset": 356620, "size": 830, }, "UTF16Encoding.js": { - "offset": 357430, + "offset": 357440, "size": 700, }, "ValidateAndApplyPropertyDescriptor.js": { - "offset": 358120, + "offset": 358140, "size": 5010, }, "ValidateTypedArray.js": { - "offset": 363120, + "offset": 363140, "size": 800, }, "WeekDay.js": { - "offset": 363920, + "offset": 363930, "size": 210, }, "YearFromTime.js": { - "offset": 364130, + "offset": 364140, "size": 400, }, "abs.js": { - "offset": 364520, + "offset": 364540, "size": 170, }, "floor.js": { - "offset": 364690, + "offset": 364700, "size": 240, }, "max.js": { - "offset": 364930, + "offset": 364940, "size": 140, }, "min.js": { - "offset": 365060, + "offset": 365080, "size": 140, }, "modulo.js": { - "offset": 365200, + "offset": 365210, "size": 170, }, "msFromTime.js": { - "offset": 365370, + "offset": 365380, "size": 260, }, "tables": { "files": { "typed-array-objects.js": { - "offset": 365620, + "offset": 365630, "size": 630, }, }, }, "thisBooleanValue.js": { - "offset": 366250, + "offset": 366260, "size": 330, }, "thisNumberValue.js": { - "offset": 366570, + "offset": 366580, "size": 350, }, "thisStringValue.js": { - "offset": 366920, + "offset": 366930, "size": 320, }, "thisTimeValue.js": { - "offset": 367230, + "offset": 367240, "size": 240, }, }, @@ -11156,607 +11156,607 @@ exports[`node_module collectors > pnpm max stack 2`] = ` "2017": { "files": { "AbstractEqualityComparison.js": { - "offset": 367460, + "offset": 367480, "size": 1210, }, "AbstractRelationalComparison.js": { - "offset": 368670, + "offset": 368680, "size": 1580, }, "AdvanceStringIndex.js": { - "offset": 370240, + "offset": 370250, "size": 1250, }, "ArrayCreate.js": { - "offset": 371480, + "offset": 371490, "size": 1430, }, "ArraySetLength.js": { - "offset": 372910, + "offset": 372920, "size": 2430, }, "ArraySpeciesCreate.js": { - "offset": 375330, + "offset": 375340, "size": 1370, }, "Call.js": { - "offset": 376700, + "offset": 376710, "size": 610, }, "CanonicalNumericIndexString.js": { - "offset": 377310, + "offset": 377320, "size": 580, }, "Canonicalize.js": { - "offset": 377880, + "offset": 377890, "size": 1190, }, "CharacterRange.js": { - "offset": 379060, + "offset": 379080, "size": 1350, }, "CompletePropertyDescriptor.js": { - "offset": 380400, + "offset": 380420, "size": 1110, }, "CompletionRecord.js": { - "offset": 381510, + "offset": 381530, "size": 1360, }, "CreateDataProperty.js": { - "offset": 382870, + "offset": 382880, "size": 730, }, "CreateDataPropertyOrThrow.js": { - "offset": 383590, + "offset": 383610, "size": 700, }, "CreateHTML.js": { - "offset": 384290, + "offset": 384310, "size": 840, }, "CreateIterResultObject.js": { - "offset": 385130, + "offset": 385140, "size": 350, }, "CreateListFromArrayLike.js": { - "offset": 385480, + "offset": 385490, "size": 1350, }, "CreateMethodProperty.js": { - "offset": 386820, + "offset": 386840, "size": 950, }, "DateFromTime.js": { - "offset": 387770, + "offset": 387780, "size": 990, }, "Day.js": { - "offset": 388760, + "offset": 388770, "size": 240, }, "DayFromYear.js": { - "offset": 388990, + "offset": 389000, "size": 260, }, "DayWithinYear.js": { - "offset": 389250, + "offset": 389260, "size": 290, }, "DaysInYear.js": { - "offset": 389530, + "offset": 389540, "size": 310, }, "DefinePropertyOrThrow.js": { - "offset": 389830, + "offset": 389840, "size": 1170, }, "DeletePropertyOrThrow.js": { - "offset": 391000, + "offset": 391010, "size": 670, }, "DetachArrayBuffer.js": { - "offset": 391670, + "offset": 391680, "size": 1390, }, "EnumerableOwnProperties.js": { - "offset": 393050, + "offset": 393060, "size": 1010, }, "FromPropertyDescriptor.js": { - "offset": 394060, + "offset": 394070, "size": 540, }, "Get.js": { - "offset": 394590, + "offset": 394600, "size": 570, }, "GetGlobalObject.js": { - "offset": 395160, + "offset": 395170, "size": 200, }, "GetIterator.js": { - "offset": 395360, + "offset": 395370, "size": 760, }, "GetMethod.js": { - "offset": 396110, + "offset": 396120, "size": 690, }, "GetOwnPropertyKeys.js": { - "offset": 396800, + "offset": 396810, "size": 840, }, "GetPrototypeFromConstructor.js": { - "offset": 397630, + "offset": 397640, "size": 1080, }, "GetSubstitution.js": { - "offset": 398710, + "offset": 398720, "size": 3270, }, "GetV.js": { - "offset": 401970, + "offset": 401980, "size": 500, }, "GetValueFromBuffer.js": { - "offset": 402460, + "offset": 402470, "size": 4390, }, "HasOwnProperty.js": { - "offset": 406850, + "offset": 406860, "size": 540, }, "HasProperty.js": { - "offset": 407380, + "offset": 407390, "size": 490, }, "HourFromTime.js": { - "offset": 407870, + "offset": 407880, "size": 390, }, "InLeapYear.js": { - "offset": 408250, + "offset": 408260, "size": 470, }, "InstanceofOperator.js": { - "offset": 408710, + "offset": 408720, "size": 930, }, "IntegerIndexedElementGet.js": { - "offset": 409640, + "offset": 409650, "size": 1870, }, "IntegerIndexedElementSet.js": { - "offset": 411500, + "offset": 411520, "size": 1970, }, "InternalizeJSONProperty.js": { - "offset": 413470, + "offset": 413490, "size": 2170, }, "Invoke.js": { - "offset": 415640, + "offset": 415650, "size": 680, }, "IsAccessorDescriptor.js": { - "offset": 416310, + "offset": 416330, "size": 560, }, "IsArray.js": { - "offset": 416870, + "offset": 416880, "size": 120, }, "IsCallable.js": { - "offset": 416990, + "offset": 417000, "size": 110, }, "IsCompatiblePropertyDescriptor.js": { - "offset": 417100, + "offset": 417110, "size": 370, }, "IsConcatSpreadable.js": { - "offset": 417460, + "offset": 417480, "size": 640, }, "IsConstructor.js": { - "offset": 418100, + "offset": 418110, "size": 1150, }, "IsDataDescriptor.js": { - "offset": 419240, + "offset": 419260, "size": 570, }, "IsDetachedBuffer.js": { - "offset": 419810, + "offset": 419820, "size": 1000, }, "IsExtensible.js": { - "offset": 420800, + "offset": 420820, "size": 510, }, "IsGenericDescriptor.js": { - "offset": 421310, + "offset": 421320, "size": 660, }, "IsInteger.js": { - "offset": 421960, + "offset": 421980, "size": 210, }, "IsPromise.js": { - "offset": 422170, + "offset": 422180, "size": 490, }, "IsPropertyDescriptor.js": { - "offset": 422660, + "offset": 422670, "size": 320, }, "IsPropertyKey.js": { - "offset": 422970, + "offset": 422980, "size": 230, }, "IsRegExp.js": { - "offset": 423190, + "offset": 423200, "size": 570, }, "IsSharedArrayBuffer.js": { - "offset": 423760, + "offset": 423770, "size": 430, }, "IsWordChar.js": { - "offset": 424190, + "offset": 424200, "size": 1370, }, "IterableToList.js": { - "offset": 425550, + "offset": 425560, "size": 530, }, "IteratorClose.js": { - "offset": 426070, + "offset": 426090, "size": 1770, }, "IteratorComplete.js": { - "offset": 427840, + "offset": 427850, "size": 460, }, "IteratorNext.js": { - "offset": 428300, + "offset": 428310, "size": 460, }, "IteratorStep.js": { - "offset": 428750, + "offset": 428760, "size": 350, }, "IteratorValue.js": { - "offset": 429100, + "offset": 429110, "size": 410, }, "MakeDate.js": { - "offset": 429500, + "offset": 429520, "size": 340, }, "MakeDay.js": { - "offset": 429840, + "offset": 429850, "size": 930, }, "MakeTime.js": { - "offset": 430760, + "offset": 430770, "size": 710, }, "MinFromTime.js": { - "offset": 431460, + "offset": 431480, "size": 400, }, "MonthFromTime.js": { - "offset": 431860, + "offset": 431870, "size": 1130, }, "NewPromiseCapability.js": { - "offset": 432990, + "offset": 433000, "size": 1230, }, "NormalCompletion.js": { - "offset": 434220, + "offset": 434230, "size": 240, }, "NumberToRawBytes.js": { - "offset": 434450, + "offset": 434470, "size": 1820, }, "ObjectCreate.js": { - "offset": 436270, + "offset": 436280, "size": 1330, }, "ObjectDefineProperties.js": { - "offset": 437600, + "offset": 437610, "size": 1440, }, "OrdinaryCreateFromConstructor.js": { - "offset": 439030, + "offset": 439050, "size": 810, }, "OrdinaryDefineOwnProperty.js": { - "offset": 439840, + "offset": 439850, "size": 2180, }, "OrdinaryGetOwnProperty.js": { - "offset": 442010, + "offset": 442020, "size": 1200, }, "OrdinaryGetPrototypeOf.js": { - "offset": 443210, + "offset": 443220, "size": 500, }, "OrdinaryHasInstance.js": { - "offset": 443700, + "offset": 443710, "size": 580, }, "OrdinaryHasProperty.js": { - "offset": 444270, + "offset": 444280, "size": 510, }, "OrdinarySetPrototypeOf.js": { - "offset": 444770, + "offset": 444780, "size": 1000, }, "OrdinaryToPrimitive.js": { - "offset": 445770, + "offset": 445780, "size": 1030, }, "QuoteJSONString.js": { - "offset": 446790, + "offset": 446810, "size": 1340, }, "RawBytesToNumber.js": { - "offset": 448130, + "offset": 448140, "size": 2010, }, "RegExpCreate.js": { - "offset": 450130, + "offset": 450140, "size": 650, }, "RegExpExec.js": { - "offset": 450770, + "offset": 450780, "size": 830, }, "RequireObjectCoercible.js": { - "offset": 451600, + "offset": 451610, "size": 90, }, "SameValue.js": { - "offset": 451680, + "offset": 451700, "size": 320, }, "SameValueNonNumber.js": { - "offset": 452000, + "offset": 452010, "size": 410, }, "SameValueZero.js": { - "offset": 452400, + "offset": 452410, "size": 230, }, "SecFromTime.js": { - "offset": 452620, + "offset": 452630, "size": 410, }, "Set.js": { - "offset": 453020, + "offset": 453040, "size": 1230, }, "SetFunctionName.js": { - "offset": 454250, + "offset": 454260, "size": 1290, }, "SetIntegrityLevel.js": { - "offset": 455540, + "offset": 455550, "size": 1840, }, "SetValueInBuffer.js": { - "offset": 457370, + "offset": 457390, "size": 3700, }, "SpeciesConstructor.js": { - "offset": 461070, + "offset": 461080, "size": 850, }, "SplitMatch.js": { - "offset": 461910, + "offset": 461920, "size": 810, }, "StrictEqualityComparison.js": { - "offset": 462710, + "offset": 462730, "size": 320, }, "StringCreate.js": { - "offset": 463030, + "offset": 463040, "size": 1080, }, "StringGetOwnProperty.js": { - "offset": 464110, + "offset": 464120, "size": 1360, }, "SymbolDescriptiveString.js": { - "offset": 465470, + "offset": 465480, "size": 440, }, "TestIntegrityLevel.js": { - "offset": 465900, + "offset": 465910, "size": 1210, }, "TimeClip.js": { - "offset": 467110, + "offset": 467120, "size": 440, }, "TimeFromYear.js": { - "offset": 467550, + "offset": 467560, "size": 270, }, "TimeWithinDay.js": { - "offset": 467810, + "offset": 467820, "size": 250, }, "ToBoolean.js": { - "offset": 468050, + "offset": 468070, "size": 130, }, "ToDateString.js": { - "offset": 468180, + "offset": 468200, "size": 520, }, "ToIndex.js": { - "offset": 468700, + "offset": 468720, "size": 620, }, "ToInt16.js": { - "offset": 469320, + "offset": 469340, "size": 260, }, "ToInt32.js": { - "offset": 469580, + "offset": 469590, "size": 180, }, "ToInt8.js": { - "offset": 469750, + "offset": 469760, "size": 250, }, "ToInteger.js": { - "offset": 469990, + "offset": 470010, "size": 270, }, "ToLength.js": { - "offset": 470260, + "offset": 470270, "size": 410, }, "ToNumber.js": { - "offset": 470670, + "offset": 470680, "size": 1510, }, "ToObject.js": { - "offset": 472170, + "offset": 472180, "size": 130, }, "ToPrimitive.js": { - "offset": 472290, + "offset": 472310, "size": 290, }, "ToPropertyDescriptor.js": { - "offset": 472580, + "offset": 472590, "size": 1460, }, "ToPropertyKey.js": { - "offset": 474030, + "offset": 474040, "size": 400, }, "ToString.js": { - "offset": 474430, + "offset": 474440, "size": 390, }, "ToUint16.js": { - "offset": 474820, + "offset": 474830, "size": 610, }, "ToUint32.js": { - "offset": 475430, + "offset": 475440, "size": 180, }, "ToUint8.js": { - "offset": 475600, + "offset": 475610, "size": 630, }, "ToUint8Clamp.js": { - "offset": 476230, + "offset": 476240, "size": 520, }, "Type.js": { - "offset": 476750, + "offset": 476760, "size": 250, }, "TypedArrayCreate.js": { - "offset": 476990, + "offset": 477000, "size": 1690, }, "TypedArraySpeciesCreate.js": { - "offset": 478680, + "offset": 478690, "size": 1380, }, "UTF16Decode.js": { - "offset": 480050, + "offset": 480060, "size": 830, }, "UTF16Encoding.js": { - "offset": 480870, + "offset": 480880, "size": 700, }, "ValidateAndApplyPropertyDescriptor.js": { - "offset": 481570, + "offset": 481580, "size": 5010, }, "ValidateAtomicAccess.js": { - "offset": 486570, + "offset": 486580, "size": 900, }, "ValidateTypedArray.js": { - "offset": 487470, + "offset": 487480, "size": 800, }, "WeekDay.js": { - "offset": 488260, + "offset": 488270, "size": 210, }, "WordCharacters.js": { - "offset": 488470, + "offset": 488480, "size": 1470, }, "YearFromTime.js": { - "offset": 489940, + "offset": 489950, "size": 400, }, "abs.js": { - "offset": 490340, + "offset": 490350, "size": 170, }, "floor.js": { - "offset": 490500, + "offset": 490510, "size": 240, }, "max.js": { - "offset": 490740, + "offset": 490750, "size": 140, }, "min.js": { - "offset": 490870, + "offset": 490890, "size": 140, }, "modulo.js": { - "offset": 491010, + "offset": 491020, "size": 170, }, "msFromTime.js": { - "offset": 491180, + "offset": 491190, "size": 260, }, "tables": { "files": { "typed-array-objects.js": { - "offset": 491430, + "offset": 491440, "size": 630, }, }, }, "thisBooleanValue.js": { - "offset": 492060, + "offset": 492070, "size": 330, }, "thisNumberValue.js": { - "offset": 492380, + "offset": 492390, "size": 350, }, "thisStringValue.js": { - "offset": 492730, + "offset": 492740, "size": 320, }, "thisTimeValue.js": { - "offset": 493040, + "offset": 493060, "size": 240, }, }, @@ -11764,655 +11764,655 @@ exports[`node_module collectors > pnpm max stack 2`] = ` "2018": { "files": { "AbstractEqualityComparison.js": { - "offset": 493270, + "offset": 493290, "size": 1210, }, "AbstractRelationalComparison.js": { - "offset": 494480, + "offset": 494490, "size": 1520, }, "AdvanceStringIndex.js": { - "offset": 495990, + "offset": 496000, "size": 1250, }, "ArrayCreate.js": { - "offset": 497230, + "offset": 497250, "size": 1430, }, "ArraySetLength.js": { - "offset": 498660, + "offset": 498680, "size": 2430, }, "ArraySpeciesCreate.js": { - "offset": 501090, + "offset": 501100, "size": 1370, }, "AsyncIteratorClose.js": { - "offset": 502450, + "offset": 502470, "size": 1810, }, "Call.js": { - "offset": 504260, + "offset": 504270, "size": 610, }, "CanonicalNumericIndexString.js": { - "offset": 504860, + "offset": 504880, "size": 580, }, "Canonicalize.js": { - "offset": 505440, + "offset": 505450, "size": 1190, }, "CharacterRange.js": { - "offset": 506620, + "offset": 506630, "size": 1350, }, "CompletePropertyDescriptor.js": { - "offset": 507960, + "offset": 507980, "size": 1110, }, "CompletionRecord.js": { - "offset": 509070, + "offset": 509090, "size": 1360, }, "CopyDataProperties.js": { - "offset": 510430, + "offset": 510440, "size": 1830, }, "CreateAsyncFromSyncIterator.js": { - "offset": 512260, + "offset": 512270, "size": 5590, }, "CreateDataProperty.js": { - "offset": 517840, + "offset": 517860, "size": 730, }, "CreateDataPropertyOrThrow.js": { - "offset": 518570, + "offset": 518580, "size": 700, }, "CreateHTML.js": { - "offset": 519270, + "offset": 519280, "size": 840, }, "CreateIterResultObject.js": { - "offset": 520100, + "offset": 520120, "size": 350, }, "CreateListFromArrayLike.js": { - "offset": 520450, + "offset": 520460, "size": 1350, }, "CreateMethodProperty.js": { - "offset": 521800, + "offset": 521810, "size": 950, }, "DateFromTime.js": { - "offset": 522740, + "offset": 522750, "size": 990, }, "DateString.js": { - "offset": 523730, + "offset": 523740, "size": 990, }, "Day.js": { - "offset": 524710, + "offset": 524720, "size": 240, }, "DayFromYear.js": { - "offset": 524950, + "offset": 524960, "size": 260, }, "DayWithinYear.js": { - "offset": 525200, + "offset": 525210, "size": 290, }, "DaysInYear.js": { - "offset": 525490, + "offset": 525500, "size": 310, }, "DefinePropertyOrThrow.js": { - "offset": 525790, + "offset": 525800, "size": 1170, }, "DeletePropertyOrThrow.js": { - "offset": 526960, + "offset": 526970, "size": 670, }, "DetachArrayBuffer.js": { - "offset": 527620, + "offset": 527630, "size": 1720, }, "EnumerableOwnPropertyNames.js": { - "offset": 529330, + "offset": 529350, "size": 1010, }, "FromPropertyDescriptor.js": { - "offset": 530340, + "offset": 530350, "size": 540, }, "Get.js": { - "offset": 530880, + "offset": 530890, "size": 570, }, "GetGlobalObject.js": { - "offset": 531440, + "offset": 531460, "size": 200, }, "GetIterator.js": { - "offset": 531640, + "offset": 531650, "size": 760, }, "GetMethod.js": { - "offset": 532400, + "offset": 532410, "size": 690, }, "GetOwnPropertyKeys.js": { - "offset": 533080, + "offset": 533090, "size": 840, }, "GetPrototypeFromConstructor.js": { - "offset": 533910, + "offset": 533920, "size": 1080, }, "GetSubstitution.js": { - "offset": 534990, + "offset": 535000, "size": 4020, }, "GetV.js": { - "offset": 539010, + "offset": 539020, "size": 500, }, "GetValueFromBuffer.js": { - "offset": 539500, + "offset": 539510, "size": 4390, }, "HasOwnProperty.js": { - "offset": 543890, + "offset": 543900, "size": 540, }, "HasProperty.js": { - "offset": 544420, + "offset": 544430, "size": 490, }, "HourFromTime.js": { - "offset": 544910, + "offset": 544920, "size": 390, }, "InLeapYear.js": { - "offset": 545290, + "offset": 545300, "size": 470, }, "InstanceofOperator.js": { - "offset": 545750, + "offset": 545760, "size": 930, }, "IntegerIndexedElementGet.js": { - "offset": 546680, + "offset": 546690, "size": 1870, }, "IntegerIndexedElementSet.js": { - "offset": 548540, + "offset": 548550, "size": 1970, }, "InternalizeJSONProperty.js": { - "offset": 550510, + "offset": 550520, "size": 2180, }, "Invoke.js": { - "offset": 552690, + "offset": 552700, "size": 680, }, "IsAccessorDescriptor.js": { - "offset": 553360, + "offset": 553370, "size": 560, }, "IsArray.js": { - "offset": 553920, + "offset": 553930, "size": 120, }, "IsCallable.js": { - "offset": 554040, + "offset": 554050, "size": 110, }, "IsCompatiblePropertyDescriptor.js": { - "offset": 554150, + "offset": 554160, "size": 370, }, "IsConcatSpreadable.js": { - "offset": 554510, + "offset": 554520, "size": 640, }, "IsConstructor.js": { - "offset": 555150, + "offset": 555160, "size": 1150, }, "IsDataDescriptor.js": { - "offset": 556290, + "offset": 556300, "size": 570, }, "IsDetachedBuffer.js": { - "offset": 556850, + "offset": 556870, "size": 1000, }, "IsExtensible.js": { - "offset": 557850, + "offset": 557860, "size": 510, }, "IsGenericDescriptor.js": { - "offset": 558360, + "offset": 558370, "size": 660, }, "IsInteger.js": { - "offset": 559010, + "offset": 559020, "size": 210, }, "IsPromise.js": { - "offset": 559220, + "offset": 559230, "size": 490, }, "IsPropertyKey.js": { - "offset": 559700, + "offset": 559720, "size": 230, }, "IsRegExp.js": { - "offset": 559930, + "offset": 559940, "size": 570, }, "IsSharedArrayBuffer.js": { - "offset": 560500, + "offset": 560510, "size": 430, }, "IsStringPrefix.js": { - "offset": 560920, + "offset": 560940, "size": 860, }, "IsWordChar.js": { - "offset": 561780, + "offset": 561790, "size": 1370, }, "IterableToList.js": { - "offset": 563140, + "offset": 563160, "size": 530, }, "IteratorClose.js": { - "offset": 563670, + "offset": 563680, "size": 1770, }, "IteratorComplete.js": { - "offset": 565430, + "offset": 565440, "size": 460, }, "IteratorNext.js": { - "offset": 565890, + "offset": 565900, "size": 460, }, "IteratorStep.js": { - "offset": 566340, + "offset": 566350, "size": 350, }, "IteratorValue.js": { - "offset": 566690, + "offset": 566700, "size": 410, }, "MakeDate.js": { - "offset": 567090, + "offset": 567110, "size": 340, }, "MakeDay.js": { - "offset": 567430, + "offset": 567440, "size": 930, }, "MakeTime.js": { - "offset": 568350, + "offset": 568360, "size": 710, }, "MinFromTime.js": { - "offset": 569050, + "offset": 569070, "size": 400, }, "MonthFromTime.js": { - "offset": 569450, + "offset": 569460, "size": 1130, }, "NewPromiseCapability.js": { - "offset": 570580, + "offset": 570590, "size": 1230, }, "NormalCompletion.js": { - "offset": 571810, + "offset": 571820, "size": 240, }, "NumberToRawBytes.js": { - "offset": 572040, + "offset": 572060, "size": 1820, }, "NumberToString.js": { - "offset": 573860, + "offset": 573880, "size": 400, }, "ObjectCreate.js": { - "offset": 574260, + "offset": 574280, "size": 1330, }, "ObjectDefineProperties.js": { - "offset": 575590, + "offset": 575600, "size": 1440, }, "OrdinaryCreateFromConstructor.js": { - "offset": 577030, + "offset": 577040, "size": 810, }, "OrdinaryDefineOwnProperty.js": { - "offset": 577830, + "offset": 577840, "size": 2180, }, "OrdinaryGetOwnProperty.js": { - "offset": 580000, + "offset": 580020, "size": 1200, }, "OrdinaryGetPrototypeOf.js": { - "offset": 581200, + "offset": 581210, "size": 500, }, "OrdinaryHasInstance.js": { - "offset": 581690, + "offset": 581700, "size": 580, }, "OrdinaryHasProperty.js": { - "offset": 582260, + "offset": 582270, "size": 510, }, "OrdinarySetPrototypeOf.js": { - "offset": 582760, + "offset": 582780, "size": 1000, }, "OrdinaryToPrimitive.js": { - "offset": 583760, + "offset": 583770, "size": 1030, }, "PromiseResolve.js": { - "offset": 584780, + "offset": 584800, "size": 510, }, "QuoteJSONString.js": { - "offset": 585290, + "offset": 585300, "size": 1010, }, "RawBytesToNumber.js": { - "offset": 586290, + "offset": 586300, "size": 2010, }, "RegExpCreate.js": { - "offset": 588290, + "offset": 588310, "size": 650, }, "RegExpExec.js": { - "offset": 588940, + "offset": 588950, "size": 830, }, "RequireObjectCoercible.js": { - "offset": 589770, + "offset": 589780, "size": 90, }, "SameValue.js": { - "offset": 589850, + "offset": 589860, "size": 320, }, "SameValueNonNumber.js": { - "offset": 590160, + "offset": 590170, "size": 410, }, "SameValueZero.js": { - "offset": 590560, + "offset": 590580, "size": 230, }, "SecFromTime.js": { - "offset": 590790, + "offset": 590800, "size": 410, }, "Set.js": { - "offset": 591190, + "offset": 591200, "size": 1230, }, "SetFunctionLength.js": { - "offset": 592410, + "offset": 592430, "size": 990, }, "SetFunctionName.js": { - "offset": 593400, + "offset": 593410, "size": 1290, }, "SetIntegrityLevel.js": { - "offset": 594690, + "offset": 594700, "size": 1840, }, "SetValueInBuffer.js": { - "offset": 596520, + "offset": 596530, "size": 3700, }, "SpeciesConstructor.js": { - "offset": 600220, + "offset": 600230, "size": 850, }, "SplitMatch.js": { - "offset": 601060, + "offset": 601070, "size": 810, }, "StrictEqualityComparison.js": { - "offset": 601860, + "offset": 601880, "size": 320, }, "StringCreate.js": { - "offset": 602180, + "offset": 602190, "size": 1080, }, "StringGetOwnProperty.js": { - "offset": 603260, + "offset": 603270, "size": 1360, }, "SymbolDescriptiveString.js": { - "offset": 604620, + "offset": 604630, "size": 440, }, "TestIntegrityLevel.js": { - "offset": 605050, + "offset": 605060, "size": 1210, }, "ThrowCompletion.js": { - "offset": 606260, + "offset": 606270, "size": 240, }, "TimeClip.js": { - "offset": 606500, + "offset": 606510, "size": 440, }, "TimeFromYear.js": { - "offset": 606940, + "offset": 606950, "size": 270, }, "TimeString.js": { - "offset": 607200, + "offset": 607210, "size": 740, }, "TimeWithinDay.js": { - "offset": 607930, + "offset": 607940, "size": 250, }, "TimeZoneString.js": { - "offset": 608180, + "offset": 608190, "size": 1650, }, "ToBoolean.js": { - "offset": 609830, + "offset": 609840, "size": 130, }, "ToDateString.js": { - "offset": 609960, + "offset": 609970, "size": 520, }, "ToIndex.js": { - "offset": 610470, + "offset": 610490, "size": 620, }, "ToInt16.js": { - "offset": 611090, + "offset": 611110, "size": 260, }, "ToInt32.js": { - "offset": 611350, + "offset": 611360, "size": 180, }, "ToInt8.js": { - "offset": 611520, + "offset": 611530, "size": 250, }, "ToInteger.js": { - "offset": 611760, + "offset": 611780, "size": 270, }, "ToLength.js": { - "offset": 612030, + "offset": 612040, "size": 410, }, "ToNumber.js": { - "offset": 612440, + "offset": 612450, "size": 1510, }, "ToObject.js": { - "offset": 613940, + "offset": 613950, "size": 130, }, "ToPrimitive.js": { - "offset": 614070, + "offset": 614080, "size": 290, }, "ToPropertyDescriptor.js": { - "offset": 614350, + "offset": 614360, "size": 1460, }, "ToPropertyKey.js": { - "offset": 615800, + "offset": 615810, "size": 400, }, "ToString.js": { - "offset": 616200, + "offset": 616210, "size": 390, }, "ToUint16.js": { - "offset": 616590, + "offset": 616600, "size": 610, }, "ToUint32.js": { - "offset": 617200, + "offset": 617210, "size": 180, }, "ToUint8.js": { - "offset": 617370, + "offset": 617380, "size": 630, }, "ToUint8Clamp.js": { - "offset": 618000, + "offset": 618010, "size": 520, }, "Type.js": { - "offset": 618520, + "offset": 618530, "size": 250, }, "TypedArrayCreate.js": { - "offset": 618760, + "offset": 618770, "size": 1690, }, "TypedArraySpeciesCreate.js": { - "offset": 620450, + "offset": 620460, "size": 1380, }, "UTF16Decode.js": { - "offset": 621820, + "offset": 621830, "size": 830, }, "UTF16Encoding.js": { - "offset": 622640, + "offset": 622650, "size": 700, }, "UnicodeEscape.js": { - "offset": 623340, + "offset": 623350, "size": 790, }, "ValidateAndApplyPropertyDescriptor.js": { - "offset": 624130, + "offset": 624140, "size": 5010, }, "ValidateAtomicAccess.js": { - "offset": 629130, + "offset": 629140, "size": 900, }, "ValidateTypedArray.js": { - "offset": 630030, + "offset": 630040, "size": 800, }, "WeekDay.js": { - "offset": 630820, + "offset": 630830, "size": 210, }, "WordCharacters.js": { - "offset": 631030, + "offset": 631040, "size": 1470, }, "YearFromTime.js": { - "offset": 632500, + "offset": 632510, "size": 400, }, "abs.js": { - "offset": 632900, + "offset": 632910, "size": 170, }, "floor.js": { - "offset": 633060, + "offset": 633070, "size": 240, }, "max.js": { - "offset": 633300, + "offset": 633310, "size": 140, }, "min.js": { - "offset": 633430, + "offset": 633450, "size": 140, }, "modulo.js": { - "offset": 633570, + "offset": 633580, "size": 170, }, "msFromTime.js": { - "offset": 633740, + "offset": 633750, "size": 260, }, "tables": { "files": { "typed-array-objects.js": { - "offset": 633990, + "offset": 634000, "size": 630, }, }, }, "thisBooleanValue.js": { - "offset": 634620, + "offset": 634630, "size": 330, }, "thisNumberValue.js": { - "offset": 634940, + "offset": 634950, "size": 350, }, "thisStringValue.js": { - "offset": 635290, + "offset": 635300, "size": 320, }, "thisSymbolValue.js": { - "offset": 635600, + "offset": 635620, "size": 530, }, "thisTimeValue.js": { - "offset": 636130, + "offset": 636140, "size": 240, }, }, @@ -12420,671 +12420,671 @@ exports[`node_module collectors > pnpm max stack 2`] = ` "2019": { "files": { "AbstractEqualityComparison.js": { - "offset": 636360, + "offset": 636370, "size": 1210, }, "AbstractRelationalComparison.js": { - "offset": 637560, + "offset": 637580, "size": 1520, }, "AddEntriesFromIterable.js": { - "offset": 639080, + "offset": 639090, "size": 1420, }, "AdvanceStringIndex.js": { - "offset": 640490, + "offset": 640500, "size": 1250, }, "ArrayCreate.js": { - "offset": 641740, + "offset": 641750, "size": 1430, }, "ArraySetLength.js": { - "offset": 643170, + "offset": 643180, "size": 2430, }, "ArraySpeciesCreate.js": { - "offset": 645590, + "offset": 645600, "size": 1370, }, "AsyncFromSyncIteratorContinuation.js": { - "offset": 646960, + "offset": 646970, "size": 1530, }, "AsyncIteratorClose.js": { - "offset": 648480, + "offset": 648490, "size": 1810, }, "Call.js": { - "offset": 650280, + "offset": 650300, "size": 610, }, "CanonicalNumericIndexString.js": { - "offset": 650890, + "offset": 650900, "size": 580, }, "Canonicalize.js": { - "offset": 651460, + "offset": 651470, "size": 1190, }, "CharacterRange.js": { - "offset": 652650, + "offset": 652660, "size": 1350, }, "CompletePropertyDescriptor.js": { - "offset": 653990, + "offset": 654000, "size": 1110, }, "CompletionRecord.js": { - "offset": 655100, + "offset": 655110, "size": 1360, }, "CopyDataProperties.js": { - "offset": 656450, + "offset": 656470, "size": 1830, }, "CreateAsyncFromSyncIterator.js": { - "offset": 658280, + "offset": 658290, "size": 4550, }, "CreateDataProperty.js": { - "offset": 662830, + "offset": 662840, "size": 730, }, "CreateDataPropertyOrThrow.js": { - "offset": 663550, + "offset": 663560, "size": 700, }, "CreateHTML.js": { - "offset": 664250, + "offset": 664260, "size": 840, }, "CreateIterResultObject.js": { - "offset": 665090, + "offset": 665100, "size": 350, }, "CreateListFromArrayLike.js": { - "offset": 665440, + "offset": 665450, "size": 1350, }, "CreateMethodProperty.js": { - "offset": 666780, + "offset": 666790, "size": 950, }, "DateFromTime.js": { - "offset": 667720, + "offset": 667740, "size": 990, }, "DateString.js": { - "offset": 668710, + "offset": 668720, "size": 990, }, "Day.js": { - "offset": 669700, + "offset": 669710, "size": 240, }, "DayFromYear.js": { - "offset": 669930, + "offset": 669940, "size": 260, }, "DayWithinYear.js": { - "offset": 670190, + "offset": 670200, "size": 290, }, "DaysInYear.js": { - "offset": 670470, + "offset": 670480, "size": 310, }, "DefinePropertyOrThrow.js": { - "offset": 670770, + "offset": 670780, "size": 1170, }, "DeletePropertyOrThrow.js": { - "offset": 671940, + "offset": 671950, "size": 670, }, "DetachArrayBuffer.js": { - "offset": 672610, + "offset": 672620, "size": 1720, }, "EnumerableOwnPropertyNames.js": { - "offset": 674320, + "offset": 674330, "size": 1010, }, "FlattenIntoArray.js": { - "offset": 675320, + "offset": 675340, "size": 1670, }, "FromPropertyDescriptor.js": { - "offset": 676990, + "offset": 677000, "size": 540, }, "Get.js": { - "offset": 677530, + "offset": 677540, "size": 570, }, "GetGlobalObject.js": { - "offset": 678100, + "offset": 678110, "size": 200, }, "GetIterator.js": { - "offset": 678290, + "offset": 678310, "size": 760, }, "GetMethod.js": { - "offset": 679050, + "offset": 679060, "size": 690, }, "GetOwnPropertyKeys.js": { - "offset": 679730, + "offset": 679750, "size": 840, }, "GetPrototypeFromConstructor.js": { - "offset": 680560, + "offset": 680580, "size": 1080, }, "GetSubstitution.js": { - "offset": 681640, + "offset": 681650, "size": 4020, }, "GetV.js": { - "offset": 685660, + "offset": 685670, "size": 500, }, "GetValueFromBuffer.js": { - "offset": 686150, + "offset": 686160, "size": 4290, }, "HasOwnProperty.js": { - "offset": 690430, + "offset": 690450, "size": 540, }, "HasProperty.js": { - "offset": 690970, + "offset": 690980, "size": 490, }, "HourFromTime.js": { - "offset": 691450, + "offset": 691460, "size": 390, }, "InLeapYear.js": { - "offset": 691830, + "offset": 691850, "size": 470, }, "InstanceofOperator.js": { - "offset": 692300, + "offset": 692310, "size": 930, }, "IntegerIndexedElementGet.js": { - "offset": 693220, + "offset": 693240, "size": 1870, }, "IntegerIndexedElementSet.js": { - "offset": 695090, + "offset": 695100, "size": 1970, }, "InternalizeJSONProperty.js": { - "offset": 697060, + "offset": 697070, "size": 2180, }, "Invoke.js": { - "offset": 699240, + "offset": 699250, "size": 680, }, "IsAccessorDescriptor.js": { - "offset": 699910, + "offset": 699920, "size": 560, }, "IsArray.js": { - "offset": 700470, + "offset": 700480, "size": 120, }, "IsCallable.js": { - "offset": 700580, + "offset": 700600, "size": 110, }, "IsCompatiblePropertyDescriptor.js": { - "offset": 700690, + "offset": 700700, "size": 370, }, "IsConcatSpreadable.js": { - "offset": 701060, + "offset": 701070, "size": 640, }, "IsConstructor.js": { - "offset": 701690, + "offset": 701710, "size": 1150, }, "IsDataDescriptor.js": { - "offset": 702840, + "offset": 702850, "size": 570, }, "IsDetachedBuffer.js": { - "offset": 703400, + "offset": 703410, "size": 1000, }, "IsExtensible.js": { - "offset": 704400, + "offset": 704410, "size": 510, }, "IsGenericDescriptor.js": { - "offset": 704900, + "offset": 704910, "size": 660, }, "IsInteger.js": { - "offset": 705560, + "offset": 705570, "size": 210, }, "IsPromise.js": { - "offset": 705770, + "offset": 705780, "size": 490, }, "IsPropertyKey.js": { - "offset": 706250, + "offset": 706260, "size": 230, }, "IsRegExp.js": { - "offset": 706470, + "offset": 706490, "size": 570, }, "IsSharedArrayBuffer.js": { - "offset": 707040, + "offset": 707060, "size": 430, }, "IsStringPrefix.js": { - "offset": 707470, + "offset": 707480, "size": 860, }, "IsWordChar.js": { - "offset": 708320, + "offset": 708340, "size": 1370, }, "IterableToList.js": { - "offset": 709690, + "offset": 709700, "size": 530, }, "IteratorClose.js": { - "offset": 710210, + "offset": 710220, "size": 1770, }, "IteratorComplete.js": { - "offset": 711980, + "offset": 711990, "size": 460, }, "IteratorNext.js": { - "offset": 712430, + "offset": 712450, "size": 460, }, "IteratorStep.js": { - "offset": 712890, + "offset": 712900, "size": 350, }, "IteratorValue.js": { - "offset": 713240, + "offset": 713250, "size": 410, }, "MakeDate.js": { - "offset": 713640, + "offset": 713650, "size": 340, }, "MakeDay.js": { - "offset": 713970, + "offset": 713990, "size": 930, }, "MakeTime.js": { - "offset": 714900, + "offset": 714910, "size": 710, }, "MinFromTime.js": { - "offset": 715600, + "offset": 715610, "size": 400, }, "MonthFromTime.js": { - "offset": 716000, + "offset": 716010, "size": 1130, }, "NewPromiseCapability.js": { - "offset": 717130, + "offset": 717140, "size": 1230, }, "NormalCompletion.js": { - "offset": 718350, + "offset": 718370, "size": 240, }, "NumberToRawBytes.js": { - "offset": 718590, + "offset": 718600, "size": 1820, }, "NumberToString.js": { - "offset": 720410, + "offset": 720420, "size": 400, }, "ObjectCreate.js": { - "offset": 720810, + "offset": 720820, "size": 1330, }, "ObjectDefineProperties.js": { - "offset": 722140, + "offset": 722150, "size": 1440, }, "OrdinaryCreateFromConstructor.js": { - "offset": 723570, + "offset": 723580, "size": 810, }, "OrdinaryDefineOwnProperty.js": { - "offset": 724370, + "offset": 724380, "size": 2180, }, "OrdinaryGetOwnProperty.js": { - "offset": 726550, + "offset": 726560, "size": 1200, }, "OrdinaryGetPrototypeOf.js": { - "offset": 727740, + "offset": 727760, "size": 500, }, "OrdinaryHasInstance.js": { - "offset": 728240, + "offset": 728250, "size": 580, }, "OrdinaryHasProperty.js": { - "offset": 728810, + "offset": 728820, "size": 510, }, "OrdinarySetPrototypeOf.js": { - "offset": 729310, + "offset": 729320, "size": 1000, }, "OrdinaryToPrimitive.js": { - "offset": 730310, + "offset": 730320, "size": 1030, }, "PromiseResolve.js": { - "offset": 731330, + "offset": 731340, "size": 510, }, "QuoteJSONString.js": { - "offset": 731840, + "offset": 731850, "size": 1330, }, "RawBytesToNumber.js": { - "offset": 733160, + "offset": 733170, "size": 2010, }, "RegExpCreate.js": { - "offset": 735160, + "offset": 735170, "size": 650, }, "RegExpExec.js": { - "offset": 735800, + "offset": 735820, "size": 830, }, "RequireObjectCoercible.js": { - "offset": 736630, + "offset": 736650, "size": 90, }, "SameValue.js": { - "offset": 736720, + "offset": 736730, "size": 320, }, "SameValueNonNumber.js": { - "offset": 737030, + "offset": 737040, "size": 410, }, "SameValueZero.js": { - "offset": 737430, + "offset": 737440, "size": 230, }, "SecFromTime.js": { - "offset": 737650, + "offset": 737670, "size": 410, }, "Set.js": { - "offset": 738060, + "offset": 738070, "size": 1230, }, "SetFunctionLength.js": { - "offset": 739280, + "offset": 739290, "size": 990, }, "SetFunctionName.js": { - "offset": 740270, + "offset": 740280, "size": 1290, }, "SetIntegrityLevel.js": { - "offset": 741550, + "offset": 741570, "size": 1840, }, "SetValueInBuffer.js": { - "offset": 743390, + "offset": 743400, "size": 3700, }, "SpeciesConstructor.js": { - "offset": 747080, + "offset": 747100, "size": 850, }, "SplitMatch.js": { - "offset": 747930, + "offset": 747940, "size": 810, }, "StrictEqualityComparison.js": { - "offset": 748730, + "offset": 748740, "size": 320, }, "StringCreate.js": { - "offset": 749050, + "offset": 749060, "size": 1080, }, "StringGetOwnProperty.js": { - "offset": 750120, + "offset": 750140, "size": 1360, }, "SymbolDescriptiveString.js": { - "offset": 751480, + "offset": 751490, "size": 440, }, "TestIntegrityLevel.js": { - "offset": 751920, + "offset": 751930, "size": 1210, }, "ThrowCompletion.js": { - "offset": 753120, + "offset": 753140, "size": 240, }, "TimeClip.js": { - "offset": 753360, + "offset": 753380, "size": 440, }, "TimeFromYear.js": { - "offset": 753800, + "offset": 753810, "size": 270, }, "TimeString.js": { - "offset": 754060, + "offset": 754080, "size": 740, }, "TimeWithinDay.js": { - "offset": 754800, + "offset": 754810, "size": 250, }, "TimeZoneString.js": { - "offset": 755050, + "offset": 755060, "size": 1650, }, "ToBoolean.js": { - "offset": 756690, + "offset": 756700, "size": 130, }, "ToDateString.js": { - "offset": 756820, + "offset": 756830, "size": 520, }, "ToIndex.js": { - "offset": 757340, + "offset": 757350, "size": 620, }, "ToInt16.js": { - "offset": 757960, + "offset": 757970, "size": 260, }, "ToInt32.js": { - "offset": 758220, + "offset": 758230, "size": 180, }, "ToInt8.js": { - "offset": 758390, + "offset": 758400, "size": 250, }, "ToInteger.js": { - "offset": 758630, + "offset": 758640, "size": 270, }, "ToLength.js": { - "offset": 758900, + "offset": 758910, "size": 410, }, "ToNumber.js": { - "offset": 759300, + "offset": 759320, "size": 1510, }, "ToObject.js": { - "offset": 760810, + "offset": 760820, "size": 130, }, "ToPrimitive.js": { - "offset": 760930, + "offset": 760940, "size": 290, }, "ToPropertyDescriptor.js": { - "offset": 761210, + "offset": 761230, "size": 1460, }, "ToPropertyKey.js": { - "offset": 762670, + "offset": 762680, "size": 400, }, "ToString.js": { - "offset": 763070, + "offset": 763080, "size": 390, }, "ToUint16.js": { - "offset": 763460, + "offset": 763470, "size": 610, }, "ToUint32.js": { - "offset": 764060, + "offset": 764080, "size": 180, }, "ToUint8.js": { - "offset": 764240, + "offset": 764250, "size": 630, }, "ToUint8Clamp.js": { - "offset": 764870, + "offset": 764880, "size": 520, }, "TrimString.js": { - "offset": 765390, + "offset": 765400, "size": 760, }, "Type.js": { - "offset": 766140, + "offset": 766150, "size": 250, }, "TypedArrayCreate.js": { - "offset": 766390, + "offset": 766400, "size": 1690, }, "TypedArraySpeciesCreate.js": { - "offset": 768070, + "offset": 768080, "size": 1380, }, "UTF16Decode.js": { - "offset": 769440, + "offset": 769450, "size": 830, }, "UTF16Encoding.js": { - "offset": 770260, + "offset": 770280, "size": 700, }, "UnicodeEscape.js": { - "offset": 770960, + "offset": 770970, "size": 790, }, "ValidateAndApplyPropertyDescriptor.js": { - "offset": 771750, + "offset": 771760, "size": 5010, }, "ValidateAtomicAccess.js": { - "offset": 776750, + "offset": 776760, "size": 900, }, "ValidateTypedArray.js": { - "offset": 777650, + "offset": 777660, "size": 800, }, "WeekDay.js": { - "offset": 778450, + "offset": 778460, "size": 210, }, "WordCharacters.js": { - "offset": 778650, + "offset": 778670, "size": 1470, }, "YearFromTime.js": { - "offset": 780120, + "offset": 780130, "size": 400, }, "abs.js": { - "offset": 780520, + "offset": 780530, "size": 170, }, "floor.js": { - "offset": 780680, + "offset": 780700, "size": 240, }, "max.js": { - "offset": 780920, + "offset": 780940, "size": 140, }, "min.js": { - "offset": 781060, + "offset": 781070, "size": 140, }, "modulo.js": { - "offset": 781190, + "offset": 781200, "size": 170, }, "msFromTime.js": { - "offset": 781360, + "offset": 781370, "size": 260, }, "tables": { "files": { "typed-array-objects.js": { - "offset": 781610, + "offset": 781620, "size": 630, }, }, }, "thisBooleanValue.js": { - "offset": 782240, + "offset": 782250, "size": 330, }, "thisNumberValue.js": { - "offset": 782560, + "offset": 782580, "size": 350, }, "thisStringValue.js": { - "offset": 782910, + "offset": 782920, "size": 320, }, "thisSymbolValue.js": { - "offset": 783230, + "offset": 783240, "size": 530, }, "thisTimeValue.js": { - "offset": 783750, + "offset": 783770, "size": 240, }, }, @@ -13092,927 +13092,927 @@ exports[`node_module collectors > pnpm max stack 2`] = ` "2020": { "files": { "AbstractEqualityComparison.js": { - "offset": 783980, + "offset": 784000, "size": 1960, }, "AbstractRelationalComparison.js": { - "offset": 785940, + "offset": 785950, "size": 2100, }, "AddEntriesFromIterable.js": { - "offset": 788030, + "offset": 788040, "size": 1420, }, "AdvanceStringIndex.js": { - "offset": 789450, + "offset": 789460, "size": 940, }, "ArrayCreate.js": { - "offset": 790380, + "offset": 790400, "size": 1430, }, "ArraySetLength.js": { - "offset": 791810, + "offset": 791820, "size": 2430, }, "ArraySpeciesCreate.js": { - "offset": 794230, + "offset": 794250, "size": 1370, }, "AsyncFromSyncIteratorContinuation.js": { - "offset": 795600, + "offset": 795610, "size": 1530, }, "AsyncIteratorClose.js": { - "offset": 797120, + "offset": 797140, "size": 1810, }, "BigInt": { "files": { "add.js": { - "offset": 798930, + "offset": 798940, "size": 390, }, "bitwiseAND.js": { - "offset": 799310, + "offset": 799320, "size": 430, }, "bitwiseNOT.js": { - "offset": 799740, + "offset": 799750, "size": 420, }, "bitwiseOR.js": { - "offset": 800150, + "offset": 800170, "size": 430, }, "bitwiseXOR.js": { - "offset": 800580, + "offset": 800590, "size": 430, }, "divide.js": { - "offset": 801000, + "offset": 801020, "size": 600, }, "equal.js": { - "offset": 801600, + "offset": 801610, "size": 390, }, "exponentiate.js": { - "offset": 801990, + "offset": 802000, "size": 860, }, "index.js": { - "offset": 802840, + "offset": 802850, "size": 1280, }, "leftShift.js": { - "offset": 804110, + "offset": 804130, "size": 400, }, "lessThan.js": { - "offset": 804510, + "offset": 804520, "size": 400, }, "multiply.js": { - "offset": 804900, + "offset": 804910, "size": 400, }, "remainder.js": { - "offset": 805290, + "offset": 805300, "size": 680, }, "sameValue.js": { - "offset": 805960, + "offset": 805970, "size": 410, }, "sameValueZero.js": { - "offset": 806360, + "offset": 806380, "size": 410, }, "signedRightShift.js": { - "offset": 806770, + "offset": 806780, "size": 430, }, "subtract.js": { - "offset": 807200, + "offset": 807210, "size": 400, }, "toString.js": { - "offset": 807590, + "offset": 807600, "size": 400, }, "unaryMinus.js": { - "offset": 807990, + "offset": 808000, "size": 480, }, "unsignedRightShift.js": { - "offset": 808460, + "offset": 808480, "size": 440, }, }, }, "BigIntBitwiseOp.js": { - "offset": 808900, + "offset": 808910, "size": 1670, }, "BinaryAnd.js": { - "offset": 810560, + "offset": 810570, "size": 320, }, "BinaryOr.js": { - "offset": 810870, + "offset": 810890, "size": 320, }, "BinaryXor.js": { - "offset": 811190, + "offset": 811200, "size": 320, }, "Call.js": { - "offset": 811500, + "offset": 811520, "size": 610, }, "CanonicalNumericIndexString.js": { - "offset": 812110, + "offset": 812120, "size": 580, }, "Canonicalize.js": { - "offset": 812680, + "offset": 812690, "size": 1190, }, "CharacterRange.js": { - "offset": 813870, + "offset": 813880, "size": 1350, }, "CodePointAt.js": { - "offset": 815210, + "offset": 815220, "size": 1640, }, "CompletePropertyDescriptor.js": { - "offset": 816840, + "offset": 816850, "size": 1110, }, "CompletionRecord.js": { - "offset": 817950, + "offset": 817960, "size": 1360, }, "CopyDataProperties.js": { - "offset": 819310, + "offset": 819320, "size": 1840, }, "CreateAsyncFromSyncIterator.js": { - "offset": 821140, + "offset": 821160, "size": 4570, }, "CreateDataProperty.js": { - "offset": 825710, + "offset": 825730, "size": 730, }, "CreateDataPropertyOrThrow.js": { - "offset": 826440, + "offset": 826450, "size": 700, }, "CreateHTML.js": { - "offset": 827140, + "offset": 827150, "size": 840, }, "CreateIterResultObject.js": { - "offset": 827970, + "offset": 827990, "size": 350, }, "CreateListFromArrayLike.js": { - "offset": 828320, + "offset": 828340, "size": 1500, }, "CreateMethodProperty.js": { - "offset": 829820, + "offset": 829830, "size": 950, }, "CreateRegExpStringIterator.js": { - "offset": 830760, + "offset": 830770, "size": 3410, }, "DateFromTime.js": { - "offset": 834170, + "offset": 834180, "size": 990, }, "DateString.js": { - "offset": 835150, + "offset": 835170, "size": 990, }, "Day.js": { - "offset": 836140, + "offset": 836150, "size": 240, }, "DayFromYear.js": { - "offset": 836370, + "offset": 836380, "size": 260, }, "DayWithinYear.js": { - "offset": 836630, + "offset": 836640, "size": 290, }, "DaysInYear.js": { - "offset": 836910, + "offset": 836930, "size": 310, }, "DefinePropertyOrThrow.js": { - "offset": 837210, + "offset": 837230, "size": 1170, }, "DeletePropertyOrThrow.js": { - "offset": 838380, + "offset": 838400, "size": 670, }, "DetachArrayBuffer.js": { - "offset": 839050, + "offset": 839060, "size": 1720, }, "EnumerableOwnPropertyNames.js": { - "offset": 840760, + "offset": 840770, "size": 1010, }, "FlattenIntoArray.js": { - "offset": 841770, + "offset": 841780, "size": 1680, }, "FromPropertyDescriptor.js": { - "offset": 843450, + "offset": 843460, "size": 540, }, "Get.js": { - "offset": 843980, + "offset": 843990, "size": 570, }, "GetGlobalObject.js": { - "offset": 844550, + "offset": 844560, "size": 200, }, "GetIterator.js": { - "offset": 844750, + "offset": 844760, "size": 1720, }, "GetMethod.js": { - "offset": 846460, + "offset": 846470, "size": 690, }, "GetOwnPropertyKeys.js": { - "offset": 847150, + "offset": 847160, "size": 840, }, "GetPrototypeFromConstructor.js": { - "offset": 847980, + "offset": 847990, "size": 1080, }, "GetSubstitution.js": { - "offset": 849050, + "offset": 849070, "size": 4020, }, "GetV.js": { - "offset": 853070, + "offset": 853080, "size": 500, }, "GetValueFromBuffer.js": { - "offset": 853560, + "offset": 853570, "size": 4530, }, "HasOwnProperty.js": { - "offset": 858090, + "offset": 858100, "size": 540, }, "HasProperty.js": { - "offset": 858620, + "offset": 858630, "size": 490, }, "HourFromTime.js": { - "offset": 859110, + "offset": 859120, "size": 390, }, "InLeapYear.js": { - "offset": 859490, + "offset": 859500, "size": 470, }, "InstanceofOperator.js": { - "offset": 859950, + "offset": 859960, "size": 930, }, "IntegerIndexedElementGet.js": { - "offset": 860880, + "offset": 860890, "size": 1590, }, "IntegerIndexedElementSet.js": { - "offset": 862460, + "offset": 862470, "size": 1890, }, "InternalizeJSONProperty.js": { - "offset": 864340, + "offset": 864350, "size": 2110, }, "Invoke.js": { - "offset": 866450, + "offset": 866460, "size": 680, }, "IsAccessorDescriptor.js": { - "offset": 867120, + "offset": 867130, "size": 560, }, "IsArray.js": { - "offset": 867680, + "offset": 867690, "size": 120, }, "IsBigIntElementType.js": { - "offset": 867800, + "offset": 867810, "size": 200, }, "IsCallable.js": { - "offset": 867990, + "offset": 868000, "size": 110, }, "IsCompatiblePropertyDescriptor.js": { - "offset": 868100, + "offset": 868110, "size": 370, }, "IsConcatSpreadable.js": { - "offset": 868460, + "offset": 868480, "size": 640, }, "IsConstructor.js": { - "offset": 869100, + "offset": 869110, "size": 1150, }, "IsDataDescriptor.js": { - "offset": 870240, + "offset": 870260, "size": 570, }, "IsDetachedBuffer.js": { - "offset": 870810, + "offset": 870820, "size": 1000, }, "IsExtensible.js": { - "offset": 871800, + "offset": 871820, "size": 510, }, "IsGenericDescriptor.js": { - "offset": 872310, + "offset": 872320, "size": 660, }, "IsInteger.js": { - "offset": 872960, + "offset": 872980, "size": 210, }, "IsNoTearConfiguration.js": { - "offset": 873170, + "offset": 873180, "size": 470, }, "IsNonNegativeInteger.js": { - "offset": 873640, + "offset": 873650, "size": 240, }, "IsPromise.js": { - "offset": 873870, + "offset": 873890, "size": 490, }, "IsPropertyKey.js": { - "offset": 874360, + "offset": 874370, "size": 230, }, "IsRegExp.js": { - "offset": 874580, + "offset": 874590, "size": 570, }, "IsSharedArrayBuffer.js": { - "offset": 875150, + "offset": 875160, "size": 430, }, "IsStringPrefix.js": { - "offset": 875580, + "offset": 875590, "size": 860, }, "IsUnclampedIntegerElementType.js": { - "offset": 876430, + "offset": 876440, "size": 300, }, "IsUnsignedElementType.js": { - "offset": 876730, + "offset": 876740, "size": 270, }, "IsValidIntegerIndex.js": { - "offset": 877000, + "offset": 877010, "size": 850, }, "IsWordChar.js": { - "offset": 877840, + "offset": 877850, "size": 1370, }, "IterableToList.js": { - "offset": 879210, + "offset": 879220, "size": 530, }, "IteratorClose.js": { - "offset": 879740, + "offset": 879750, "size": 1770, }, "IteratorComplete.js": { - "offset": 881500, + "offset": 881510, "size": 460, }, "IteratorNext.js": { - "offset": 881960, + "offset": 881970, "size": 460, }, "IteratorStep.js": { - "offset": 882420, + "offset": 882430, "size": 350, }, "IteratorValue.js": { - "offset": 882760, + "offset": 882780, "size": 410, }, "LengthOfArrayLike.js": { - "offset": 883170, + "offset": 883180, "size": 470, }, "MakeDate.js": { - "offset": 883630, + "offset": 883640, "size": 340, }, "MakeDay.js": { - "offset": 883960, + "offset": 883970, "size": 930, }, "MakeTime.js": { - "offset": 884880, + "offset": 884900, "size": 710, }, "MinFromTime.js": { - "offset": 885590, + "offset": 885600, "size": 400, }, "MonthFromTime.js": { - "offset": 885980, + "offset": 886000, "size": 1130, }, "NewPromiseCapability.js": { - "offset": 887110, + "offset": 887130, "size": 1230, }, "NormalCompletion.js": { - "offset": 888340, + "offset": 888350, "size": 240, }, "Number": { "files": { "add.js": { - "offset": 888580, + "offset": 888590, "size": 890, }, "bitwiseAND.js": { - "offset": 889460, + "offset": 889470, "size": 430, }, "bitwiseNOT.js": { - "offset": 889890, + "offset": 889900, "size": 500, }, "bitwiseOR.js": { - "offset": 890390, + "offset": 890400, "size": 430, }, "bitwiseXOR.js": { - "offset": 890810, + "offset": 890820, "size": 430, }, "divide.js": { - "offset": 891240, + "offset": 891250, "size": 570, }, "equal.js": { - "offset": 891800, + "offset": 891810, "size": 480, }, "exponentiate.js": { - "offset": 892280, + "offset": 892290, "size": 1740, }, "index.js": { - "offset": 894020, + "offset": 894030, "size": 1280, }, "leftShift.js": { - "offset": 895290, + "offset": 895310, "size": 530, }, "lessThan.js": { - "offset": 895820, + "offset": 895830, "size": 570, }, "multiply.js": { - "offset": 896380, + "offset": 896390, "size": 770, }, "remainder.js": { - "offset": 897150, + "offset": 897160, "size": 970, }, "sameValue.js": { - "offset": 898110, + "offset": 898120, "size": 570, }, "sameValueZero.js": { - "offset": 898680, + "offset": 898690, "size": 500, }, "signedRightShift.js": { - "offset": 899180, + "offset": 899190, "size": 540, }, "subtract.js": { - "offset": 899710, + "offset": 899730, "size": 350, }, "toString.js": { - "offset": 900060, + "offset": 900070, "size": 400, }, "unaryMinus.js": { - "offset": 900450, + "offset": 900470, "size": 400, }, "unsignedRightShift.js": { - "offset": 900850, + "offset": 900860, "size": 550, }, }, }, "NumberBitwiseOp.js": { - "offset": 901390, + "offset": 901400, "size": 690, }, "NumberToBigInt.js": { - "offset": 902070, + "offset": 902080, "size": 800, }, "NumericToRawBytes.js": { - "offset": 902860, + "offset": 902870, "size": 2030, }, "ObjectDefineProperties.js": { - "offset": 904880, + "offset": 904900, "size": 1440, }, "OrdinaryCreateFromConstructor.js": { - "offset": 906320, + "offset": 906330, "size": 830, }, "OrdinaryDefineOwnProperty.js": { - "offset": 907140, + "offset": 907160, "size": 2180, }, "OrdinaryGetOwnProperty.js": { - "offset": 909320, + "offset": 909330, "size": 1200, }, "OrdinaryGetPrototypeOf.js": { - "offset": 910510, + "offset": 910530, "size": 500, }, "OrdinaryHasInstance.js": { - "offset": 911010, + "offset": 911020, "size": 580, }, "OrdinaryHasProperty.js": { - "offset": 911580, + "offset": 911590, "size": 510, }, "OrdinaryObjectCreate.js": { - "offset": 912080, + "offset": 912090, "size": 1630, }, "OrdinarySetPrototypeOf.js": { - "offset": 913710, + "offset": 913720, "size": 1000, }, "OrdinaryToPrimitive.js": { - "offset": 914700, + "offset": 914720, "size": 1030, }, "PromiseResolve.js": { - "offset": 915730, + "offset": 915740, "size": 510, }, "QuoteJSONString.js": { - "offset": 916230, + "offset": 916250, "size": 1400, }, "RawBytesToNumeric.js": { - "offset": 917630, + "offset": 917640, "size": 2370, }, "RegExpCreate.js": { - "offset": 920000, + "offset": 920010, "size": 650, }, "RegExpExec.js": { - "offset": 920640, + "offset": 920660, "size": 830, }, "RequireObjectCoercible.js": { - "offset": 921470, + "offset": 921490, "size": 90, }, "SameValue.js": { - "offset": 921560, + "offset": 921570, "size": 320, }, "SameValueNonNumeric.js": { - "offset": 921870, + "offset": 921880, "size": 580, }, "SameValueZero.js": { - "offset": 922440, + "offset": 922450, "size": 230, }, "SecFromTime.js": { - "offset": 922660, + "offset": 922680, "size": 410, }, "Set.js": { - "offset": 923070, + "offset": 923080, "size": 1230, }, "SetFunctionLength.js": { - "offset": 924290, + "offset": 924300, "size": 990, }, "SetFunctionName.js": { - "offset": 925280, + "offset": 925290, "size": 1290, }, "SetIntegrityLevel.js": { - "offset": 926570, + "offset": 926580, "size": 1840, }, "SetValueInBuffer.js": { - "offset": 928410, + "offset": 928420, "size": 3990, }, "SpeciesConstructor.js": { - "offset": 932390, + "offset": 932410, "size": 850, }, "SplitMatch.js": { - "offset": 933240, + "offset": 933250, "size": 810, }, "StrictEqualityComparison.js": { - "offset": 934040, + "offset": 934050, "size": 320, }, "StringCreate.js": { - "offset": 934360, + "offset": 934370, "size": 1080, }, "StringGetOwnProperty.js": { - "offset": 935430, + "offset": 935440, "size": 1360, }, "StringPad.js": { - "offset": 936790, + "offset": 936800, "size": 1210, }, "StringToBigInt.js": { - "offset": 938000, + "offset": 938010, "size": 580, }, "SymbolDescriptiveString.js": { - "offset": 938570, + "offset": 938590, "size": 440, }, "TestIntegrityLevel.js": { - "offset": 939010, + "offset": 939020, "size": 1210, }, "ThrowCompletion.js": { - "offset": 940220, + "offset": 940230, "size": 240, }, "TimeClip.js": { - "offset": 940460, + "offset": 940470, "size": 440, }, "TimeFromYear.js": { - "offset": 940890, + "offset": 940910, "size": 270, }, "TimeString.js": { - "offset": 941160, + "offset": 941170, "size": 740, }, "TimeWithinDay.js": { - "offset": 941890, + "offset": 941900, "size": 250, }, "TimeZoneString.js": { - "offset": 942140, + "offset": 942150, "size": 1650, }, "ToBigInt.js": { - "offset": 943780, + "offset": 943800, "size": 1310, }, "ToBigInt64.js": { - "offset": 945090, + "offset": 945100, "size": 960, }, "ToBigUint64.js": { - "offset": 946040, + "offset": 946050, "size": 710, }, "ToBoolean.js": { - "offset": 946750, + "offset": 946760, "size": 130, }, "ToDateString.js": { - "offset": 946880, + "offset": 946890, "size": 520, }, "ToIndex.js": { - "offset": 947400, + "offset": 947410, "size": 610, }, "ToInt16.js": { - "offset": 948010, + "offset": 948020, "size": 260, }, "ToInt32.js": { - "offset": 948260, + "offset": 948270, "size": 180, }, "ToInt8.js": { - "offset": 948430, + "offset": 948450, "size": 250, }, "ToInteger.js": { - "offset": 948680, + "offset": 948690, "size": 340, }, "ToLength.js": { - "offset": 949010, + "offset": 949020, "size": 410, }, "ToNumber.js": { - "offset": 949410, + "offset": 949420, "size": 1630, }, "ToNumeric.js": { - "offset": 951040, + "offset": 951050, "size": 530, }, "ToObject.js": { - "offset": 951560, + "offset": 951570, "size": 130, }, "ToPrimitive.js": { - "offset": 951680, + "offset": 951700, "size": 290, }, "ToPropertyDescriptor.js": { - "offset": 951970, + "offset": 951980, "size": 1460, }, "ToPropertyKey.js": { - "offset": 953420, + "offset": 953430, "size": 400, }, "ToString.js": { - "offset": 953820, + "offset": 953830, "size": 390, }, "ToUint16.js": { - "offset": 954210, + "offset": 954220, "size": 610, }, "ToUint32.js": { - "offset": 954820, + "offset": 954830, "size": 180, }, "ToUint8.js": { - "offset": 954990, + "offset": 955000, "size": 630, }, "ToUint8Clamp.js": { - "offset": 955620, + "offset": 955630, "size": 520, }, "TrimString.js": { - "offset": 956140, + "offset": 956150, "size": 760, }, "Type.js": { - "offset": 956890, + "offset": 956910, "size": 300, }, "TypedArrayCreate.js": { - "offset": 957190, + "offset": 957200, "size": 1690, }, "TypedArraySpeciesCreate.js": { - "offset": 958880, + "offset": 958890, "size": 1380, }, "UTF16DecodeString.js": { - "offset": 960250, + "offset": 960260, "size": 600, }, "UTF16DecodeSurrogatePair.js": { - "offset": 960840, + "offset": 960850, "size": 780, }, "UTF16Encoding.js": { - "offset": 961610, + "offset": 961630, "size": 700, }, "UnicodeEscape.js": { - "offset": 962310, + "offset": 962320, "size": 790, }, "ValidateAndApplyPropertyDescriptor.js": { - "offset": 963090, + "offset": 963110, "size": 5010, }, "ValidateAtomicAccess.js": { - "offset": 968090, + "offset": 968110, "size": 900, }, "ValidateTypedArray.js": { - "offset": 968990, + "offset": 969010, "size": 800, }, "WeekDay.js": { - "offset": 969790, + "offset": 969800, "size": 210, }, "WordCharacters.js": { - "offset": 970000, + "offset": 970010, "size": 1470, }, "YearFromTime.js": { - "offset": 971460, + "offset": 971480, "size": 400, }, "abs.js": { - "offset": 971860, + "offset": 971870, "size": 220, }, "floor.js": { - "offset": 972080, + "offset": 972090, "size": 290, }, "max.js": { - "offset": 972370, + "offset": 972380, "size": 140, }, "min.js": { - "offset": 972500, + "offset": 972510, "size": 140, }, "modulo.js": { - "offset": 972630, + "offset": 972650, "size": 170, }, "msFromTime.js": { - "offset": 972800, + "offset": 972810, "size": 260, }, "tables": { "files": { "typed-array-objects.js": { - "offset": 973050, + "offset": 973070, "size": 780, }, }, }, "thisBigIntValue.js": { - "offset": 973830, + "offset": 973840, "size": 460, }, "thisBooleanValue.js": { - "offset": 974280, + "offset": 974290, "size": 330, }, "thisNumberValue.js": { - "offset": 974600, + "offset": 974620, "size": 350, }, "thisStringValue.js": { - "offset": 974950, + "offset": 974960, "size": 320, }, "thisSymbolValue.js": { - "offset": 975270, + "offset": 975280, "size": 530, }, "thisTimeValue.js": { - "offset": 975790, + "offset": 975810, "size": 240, }, }, @@ -14020,983 +14020,983 @@ exports[`node_module collectors > pnpm max stack 2`] = ` "2021": { "files": { "AbstractEqualityComparison.js": { - "offset": 976020, + "offset": 976040, "size": 1960, }, "AbstractRelationalComparison.js": { - "offset": 977980, + "offset": 977990, "size": 2100, }, "AddEntriesFromIterable.js": { - "offset": 980070, + "offset": 980080, "size": 1420, }, "AddToKeptObjects.js": { - "offset": 981490, + "offset": 981500, "size": 540, }, "AdvanceStringIndex.js": { - "offset": 982020, + "offset": 982030, "size": 940, }, "ApplyStringOrNumericBinaryOperator.js": { - "offset": 982960, + "offset": 982970, "size": 3130, }, "ArrayCreate.js": { - "offset": 986090, + "offset": 986100, "size": 1430, }, "ArraySetLength.js": { - "offset": 987510, + "offset": 987520, "size": 2430, }, "ArraySpeciesCreate.js": { - "offset": 989930, + "offset": 989940, "size": 1370, }, "AsyncFromSyncIteratorContinuation.js": { - "offset": 991300, + "offset": 991310, "size": 1530, }, "AsyncIteratorClose.js": { - "offset": 992820, + "offset": 992830, "size": 1940, }, "BigInt": { "files": { "add.js": { - "offset": 994760, + "offset": 994770, "size": 390, }, "bitwiseAND.js": { - "offset": 995140, + "offset": 995150, "size": 430, }, "bitwiseNOT.js": { - "offset": 995560, + "offset": 995580, "size": 420, }, "bitwiseOR.js": { - "offset": 995980, + "offset": 995990, "size": 430, }, "bitwiseXOR.js": { - "offset": 996410, + "offset": 996420, "size": 430, }, "divide.js": { - "offset": 996830, + "offset": 996840, "size": 600, }, "equal.js": { - "offset": 997430, + "offset": 997440, "size": 390, }, "exponentiate.js": { - "offset": 997810, + "offset": 997830, "size": 860, }, "index.js": { - "offset": 998670, + "offset": 998680, "size": 1280, }, "leftShift.js": { - "offset": 999940, + "offset": 999950, "size": 400, }, "lessThan.js": { - "offset": 1000340, + "offset": 1000350, "size": 400, }, "multiply.js": { - "offset": 1000730, + "offset": 1000740, "size": 400, }, "remainder.js": { - "offset": 1001120, + "offset": 1001130, "size": 680, }, "sameValue.js": { - "offset": 1001790, + "offset": 1001800, "size": 410, }, "sameValueZero.js": { - "offset": 1002190, + "offset": 1002200, "size": 410, }, "signedRightShift.js": { - "offset": 1002600, + "offset": 1002610, "size": 430, }, "subtract.js": { - "offset": 1003030, + "offset": 1003040, "size": 400, }, "toString.js": { - "offset": 1003420, + "offset": 1003430, "size": 400, }, "unaryMinus.js": { - "offset": 1003810, + "offset": 1003820, "size": 480, }, "unsignedRightShift.js": { - "offset": 1004290, + "offset": 1004300, "size": 440, }, }, }, "BigIntBitwiseOp.js": { - "offset": 1004720, + "offset": 1004730, "size": 1670, }, "BinaryAnd.js": { - "offset": 1006390, + "offset": 1006400, "size": 320, }, "BinaryOr.js": { - "offset": 1006700, + "offset": 1006710, "size": 320, }, "BinaryXor.js": { - "offset": 1007020, + "offset": 1007030, "size": 320, }, "ByteListBitwiseOp.js": { - "offset": 1007330, + "offset": 1007340, "size": 1190, }, "ByteListEqual.js": { - "offset": 1008510, + "offset": 1008530, "size": 860, }, "Call.js": { - "offset": 1009370, + "offset": 1009390, "size": 610, }, "CanonicalNumericIndexString.js": { - "offset": 1009980, + "offset": 1009990, "size": 580, }, "Canonicalize.js": { - "offset": 1010550, + "offset": 1010560, "size": 1190, }, "CharacterRange.js": { - "offset": 1011740, + "offset": 1011750, "size": 1350, }, "ClearKeptObjects.js": { - "offset": 1013080, + "offset": 1013090, "size": 300, }, "CloneArrayBuffer.js": { - "offset": 1013380, + "offset": 1013390, "size": 1900, }, "CodePointAt.js": { - "offset": 1015270, + "offset": 1015280, "size": 1650, }, "CodePointsToString.js": { - "offset": 1016920, + "offset": 1016930, "size": 740, }, "CompletePropertyDescriptor.js": { - "offset": 1017660, + "offset": 1017670, "size": 1110, }, "CompletionRecord.js": { - "offset": 1018770, + "offset": 1018780, "size": 1360, }, "CopyDataProperties.js": { - "offset": 1020120, + "offset": 1020130, "size": 1990, }, "CreateAsyncFromSyncIterator.js": { - "offset": 1022110, + "offset": 1022120, "size": 4570, }, "CreateDataProperty.js": { - "offset": 1026680, + "offset": 1026690, "size": 730, }, "CreateDataPropertyOrThrow.js": { - "offset": 1027400, + "offset": 1027410, "size": 700, }, "CreateHTML.js": { - "offset": 1028100, + "offset": 1028110, "size": 840, }, "CreateIterResultObject.js": { - "offset": 1028940, + "offset": 1028950, "size": 350, }, "CreateListFromArrayLike.js": { - "offset": 1029290, + "offset": 1029300, "size": 1370, }, "CreateMethodProperty.js": { - "offset": 1030660, + "offset": 1030670, "size": 950, }, "CreateRegExpStringIterator.js": { - "offset": 1031600, + "offset": 1031610, "size": 3410, }, "DateFromTime.js": { - "offset": 1035010, + "offset": 1035020, "size": 990, }, "DateString.js": { - "offset": 1035990, + "offset": 1036010, "size": 990, }, "Day.js": { - "offset": 1036980, + "offset": 1036990, "size": 240, }, "DayFromYear.js": { - "offset": 1037210, + "offset": 1037220, "size": 260, }, "DayWithinYear.js": { - "offset": 1037470, + "offset": 1037480, "size": 290, }, "DaysInYear.js": { - "offset": 1037750, + "offset": 1037770, "size": 310, }, "DefinePropertyOrThrow.js": { - "offset": 1038050, + "offset": 1038070, "size": 1170, }, "DeletePropertyOrThrow.js": { - "offset": 1039220, + "offset": 1039240, "size": 670, }, "DetachArrayBuffer.js": { - "offset": 1039890, + "offset": 1039900, "size": 1720, }, "EnumerableOwnPropertyNames.js": { - "offset": 1041600, + "offset": 1041610, "size": 1010, }, "FlattenIntoArray.js": { - "offset": 1042610, + "offset": 1042620, "size": 1680, }, "FromPropertyDescriptor.js": { - "offset": 1044290, + "offset": 1044300, "size": 540, }, "Get.js": { - "offset": 1044820, + "offset": 1044830, "size": 570, }, "GetGlobalObject.js": { - "offset": 1045390, + "offset": 1045400, "size": 200, }, "GetIterator.js": { - "offset": 1045590, + "offset": 1045600, "size": 1720, }, "GetMethod.js": { - "offset": 1047300, + "offset": 1047310, "size": 690, }, "GetOwnPropertyKeys.js": { - "offset": 1047990, + "offset": 1048000, "size": 840, }, "GetPromiseResolve.js": { - "offset": 1048820, + "offset": 1048830, "size": 640, }, "GetPrototypeFromConstructor.js": { - "offset": 1049460, + "offset": 1049470, "size": 1080, }, "GetSubstitution.js": { - "offset": 1050530, + "offset": 1050550, "size": 4040, }, "GetV.js": { - "offset": 1054570, + "offset": 1054580, "size": 500, }, "GetValueFromBuffer.js": { - "offset": 1055060, + "offset": 1055080, "size": 4530, }, "HasOwnProperty.js": { - "offset": 1059590, + "offset": 1059600, "size": 540, }, "HasProperty.js": { - "offset": 1060120, + "offset": 1060130, "size": 490, }, "HourFromTime.js": { - "offset": 1060610, + "offset": 1060620, "size": 390, }, "InLeapYear.js": { - "offset": 1060990, + "offset": 1061000, "size": 470, }, "InstanceofOperator.js": { - "offset": 1061450, + "offset": 1061470, "size": 930, }, "IntegerIndexedElementGet.js": { - "offset": 1062380, + "offset": 1062390, "size": 1250, }, "IntegerIndexedElementSet.js": { - "offset": 1063630, + "offset": 1063640, "size": 1570, }, "InternalizeJSONProperty.js": { - "offset": 1065190, + "offset": 1065200, "size": 2110, }, "Invoke.js": { - "offset": 1067300, + "offset": 1067310, "size": 680, }, "IsAccessorDescriptor.js": { - "offset": 1067970, + "offset": 1067980, "size": 560, }, "IsArray.js": { - "offset": 1068530, + "offset": 1068540, "size": 120, }, "IsBigIntElementType.js": { - "offset": 1068640, + "offset": 1068660, "size": 200, }, "IsCallable.js": { - "offset": 1068840, + "offset": 1068850, "size": 110, }, "IsCompatiblePropertyDescriptor.js": { - "offset": 1068950, + "offset": 1068960, "size": 370, }, "IsConcatSpreadable.js": { - "offset": 1069310, + "offset": 1069320, "size": 640, }, "IsConstructor.js": { - "offset": 1069950, + "offset": 1069960, "size": 1150, }, "IsDataDescriptor.js": { - "offset": 1071090, + "offset": 1071100, "size": 570, }, "IsDetachedBuffer.js": { - "offset": 1071650, + "offset": 1071670, "size": 1000, }, "IsExtensible.js": { - "offset": 1072650, + "offset": 1072660, "size": 510, }, "IsGenericDescriptor.js": { - "offset": 1073160, + "offset": 1073170, "size": 660, }, "IsIntegralNumber.js": { - "offset": 1073810, + "offset": 1073820, "size": 220, }, "IsNoTearConfiguration.js": { - "offset": 1074030, + "offset": 1074040, "size": 470, }, "IsPromise.js": { - "offset": 1074490, + "offset": 1074510, "size": 490, }, "IsPropertyKey.js": { - "offset": 1074980, + "offset": 1074990, "size": 230, }, "IsRegExp.js": { - "offset": 1075200, + "offset": 1075210, "size": 570, }, "IsSharedArrayBuffer.js": { - "offset": 1075770, + "offset": 1075780, "size": 430, }, "IsStringPrefix.js": { - "offset": 1076200, + "offset": 1076210, "size": 860, }, "IsUnclampedIntegerElementType.js": { - "offset": 1077050, + "offset": 1077060, "size": 300, }, "IsUnsignedElementType.js": { - "offset": 1077350, + "offset": 1077360, "size": 270, }, "IsValidIntegerIndex.js": { - "offset": 1077620, + "offset": 1077630, "size": 890, }, "IsWordChar.js": { - "offset": 1078500, + "offset": 1078510, "size": 1390, }, "IterableToList.js": { - "offset": 1079880, + "offset": 1079890, "size": 630, }, "IteratorClose.js": { - "offset": 1080510, + "offset": 1080520, "size": 1770, }, "IteratorComplete.js": { - "offset": 1082270, + "offset": 1082280, "size": 460, }, "IteratorNext.js": { - "offset": 1082730, + "offset": 1082740, "size": 460, }, "IteratorStep.js": { - "offset": 1083180, + "offset": 1083200, "size": 350, }, "IteratorValue.js": { - "offset": 1083530, + "offset": 1083540, "size": 410, }, "LengthOfArrayLike.js": { - "offset": 1083940, + "offset": 1083950, "size": 470, }, "MakeDate.js": { - "offset": 1084400, + "offset": 1084410, "size": 340, }, "MakeDay.js": { - "offset": 1084730, + "offset": 1084740, "size": 1020, }, "MakeTime.js": { - "offset": 1085740, + "offset": 1085750, "size": 770, }, "MinFromTime.js": { - "offset": 1086510, + "offset": 1086520, "size": 400, }, "MonthFromTime.js": { - "offset": 1086900, + "offset": 1086910, "size": 1130, }, "NewPromiseCapability.js": { - "offset": 1088030, + "offset": 1088040, "size": 1230, }, "NormalCompletion.js": { - "offset": 1089260, + "offset": 1089270, "size": 240, }, "Number": { "files": { "add.js": { - "offset": 1089500, + "offset": 1089510, "size": 800, }, "bitwiseAND.js": { - "offset": 1090300, + "offset": 1090310, "size": 430, }, "bitwiseNOT.js": { - "offset": 1090720, + "offset": 1090730, "size": 500, }, "bitwiseOR.js": { - "offset": 1091220, + "offset": 1091230, "size": 430, }, "bitwiseXOR.js": { - "offset": 1091650, + "offset": 1091660, "size": 430, }, "divide.js": { - "offset": 1092070, + "offset": 1092080, "size": 570, }, "equal.js": { - "offset": 1092640, + "offset": 1092650, "size": 480, }, "exponentiate.js": { - "offset": 1093110, + "offset": 1093130, "size": 1740, }, "index.js": { - "offset": 1094850, + "offset": 1094870, "size": 1280, }, "leftShift.js": { - "offset": 1096130, + "offset": 1096140, "size": 570, }, "lessThan.js": { - "offset": 1096690, + "offset": 1096700, "size": 570, }, "multiply.js": { - "offset": 1097250, + "offset": 1097270, "size": 770, }, "remainder.js": { - "offset": 1098020, + "offset": 1098040, "size": 950, }, "sameValue.js": { - "offset": 1098970, + "offset": 1098990, "size": 570, }, "sameValueZero.js": { - "offset": 1099540, + "offset": 1099550, "size": 500, }, "signedRightShift.js": { - "offset": 1100040, + "offset": 1100050, "size": 580, }, "subtract.js": { - "offset": 1100620, + "offset": 1100630, "size": 460, }, "toString.js": { - "offset": 1101070, + "offset": 1101090, "size": 400, }, "unaryMinus.js": { - "offset": 1101470, + "offset": 1101480, "size": 400, }, "unsignedRightShift.js": { - "offset": 1101860, + "offset": 1101870, "size": 590, }, }, }, "NumberBitwiseOp.js": { - "offset": 1102440, + "offset": 1102450, "size": 690, }, "NumberToBigInt.js": { - "offset": 1103120, + "offset": 1103130, "size": 800, }, "NumericToRawBytes.js": { - "offset": 1103910, + "offset": 1103930, "size": 2030, }, "ObjectDefineProperties.js": { - "offset": 1105940, + "offset": 1105950, "size": 1440, }, "OrdinaryCreateFromConstructor.js": { - "offset": 1107370, + "offset": 1107380, "size": 830, }, "OrdinaryDefineOwnProperty.js": { - "offset": 1108200, + "offset": 1108210, "size": 2180, }, "OrdinaryGetOwnProperty.js": { - "offset": 1110370, + "offset": 1110390, "size": 1200, }, "OrdinaryGetPrototypeOf.js": { - "offset": 1111570, + "offset": 1111580, "size": 500, }, "OrdinaryHasInstance.js": { - "offset": 1112060, + "offset": 1112080, "size": 580, }, "OrdinaryHasProperty.js": { - "offset": 1112630, + "offset": 1112650, "size": 510, }, "OrdinaryObjectCreate.js": { - "offset": 1113140, + "offset": 1113150, "size": 1630, }, "OrdinarySetPrototypeOf.js": { - "offset": 1114760, + "offset": 1114770, "size": 1000, }, "OrdinaryToPrimitive.js": { - "offset": 1115760, + "offset": 1115770, "size": 1030, }, "PromiseResolve.js": { - "offset": 1116780, + "offset": 1116800, "size": 510, }, "QuoteJSONString.js": { - "offset": 1117290, + "offset": 1117300, "size": 1430, }, "RawBytesToNumeric.js": { - "offset": 1118710, + "offset": 1118720, "size": 2370, }, "RegExpCreate.js": { - "offset": 1121080, + "offset": 1121090, "size": 650, }, "RegExpExec.js": { - "offset": 1121720, + "offset": 1121730, "size": 830, }, "RequireObjectCoercible.js": { - "offset": 1122550, + "offset": 1122560, "size": 90, }, "SameValue.js": { - "offset": 1122640, + "offset": 1122650, "size": 320, }, "SameValueNonNumeric.js": { - "offset": 1122950, + "offset": 1122960, "size": 580, }, "SameValueZero.js": { - "offset": 1123520, + "offset": 1123530, "size": 230, }, "SecFromTime.js": { - "offset": 1123740, + "offset": 1123760, "size": 410, }, "Set.js": { - "offset": 1124150, + "offset": 1124160, "size": 1230, }, "SetFunctionLength.js": { - "offset": 1125370, + "offset": 1125380, "size": 1020, }, "SetFunctionName.js": { - "offset": 1126390, + "offset": 1126400, "size": 1290, }, "SetIntegrityLevel.js": { - "offset": 1127680, + "offset": 1127690, "size": 1840, }, "SetTypedArrayFromArrayLike.js": { - "offset": 1129510, + "offset": 1129530, "size": 3100, }, "SetTypedArrayFromTypedArray.js": { - "offset": 1132600, + "offset": 1132620, "size": 5150, }, "SetValueInBuffer.js": { - "offset": 1137750, + "offset": 1137770, "size": 4160, }, "SpeciesConstructor.js": { - "offset": 1141910, + "offset": 1141920, "size": 850, }, "SplitMatch.js": { - "offset": 1142750, + "offset": 1142760, "size": 820, }, "StrictEqualityComparison.js": { - "offset": 1143570, + "offset": 1143580, "size": 320, }, "StringCreate.js": { - "offset": 1143890, + "offset": 1143900, "size": 1080, }, "StringGetOwnProperty.js": { - "offset": 1144960, + "offset": 1144970, "size": 1380, }, "StringIndexOf.js": { - "offset": 1146340, + "offset": 1146350, "size": 1030, }, "StringPad.js": { - "offset": 1147360, + "offset": 1147370, "size": 1210, }, "StringToBigInt.js": { - "offset": 1148570, + "offset": 1148580, "size": 580, }, "StringToCodePoints.js": { - "offset": 1149140, + "offset": 1149150, "size": 600, }, "SymbolDescriptiveString.js": { - "offset": 1149740, + "offset": 1149750, "size": 440, }, "TestIntegrityLevel.js": { - "offset": 1150170, + "offset": 1150180, "size": 1210, }, "ThrowCompletion.js": { - "offset": 1151380, + "offset": 1151390, "size": 240, }, "TimeClip.js": { - "offset": 1151620, + "offset": 1151630, "size": 440, }, "TimeFromYear.js": { - "offset": 1152060, + "offset": 1152070, "size": 270, }, "TimeString.js": { - "offset": 1152320, + "offset": 1152330, "size": 740, }, "TimeWithinDay.js": { - "offset": 1153050, + "offset": 1153070, "size": 250, }, "TimeZoneString.js": { - "offset": 1153300, + "offset": 1153310, "size": 1800, }, "ToBigInt.js": { - "offset": 1155090, + "offset": 1155110, "size": 1310, }, "ToBigInt64.js": { - "offset": 1156400, + "offset": 1156410, "size": 960, }, "ToBigUint64.js": { - "offset": 1157350, + "offset": 1157360, "size": 710, }, "ToBoolean.js": { - "offset": 1158060, + "offset": 1158070, "size": 130, }, "ToDateString.js": { - "offset": 1158190, + "offset": 1158200, "size": 520, }, "ToIndex.js": { - "offset": 1158710, + "offset": 1158720, "size": 640, }, "ToInt16.js": { - "offset": 1159350, + "offset": 1159360, "size": 260, }, "ToInt32.js": { - "offset": 1159600, + "offset": 1159610, "size": 180, }, "ToInt8.js": { - "offset": 1159770, + "offset": 1159790, "size": 250, }, "ToIntegerOrInfinity.js": { - "offset": 1160020, + "offset": 1160030, "size": 620, }, "ToLength.js": { - "offset": 1160630, + "offset": 1160640, "size": 440, }, "ToNumber.js": { - "offset": 1161070, + "offset": 1161080, "size": 1630, }, "ToNumeric.js": { - "offset": 1162690, + "offset": 1162700, "size": 530, }, "ToObject.js": { - "offset": 1163210, + "offset": 1163220, "size": 130, }, "ToPrimitive.js": { - "offset": 1163340, + "offset": 1163350, "size": 290, }, "ToPropertyDescriptor.js": { - "offset": 1163620, + "offset": 1163630, "size": 1460, }, "ToPropertyKey.js": { - "offset": 1165070, + "offset": 1165090, "size": 400, }, "ToString.js": { - "offset": 1165470, + "offset": 1165490, "size": 390, }, "ToUint16.js": { - "offset": 1165860, + "offset": 1165880, "size": 610, }, "ToUint32.js": { - "offset": 1166470, + "offset": 1166480, "size": 180, }, "ToUint8.js": { - "offset": 1166650, + "offset": 1166660, "size": 630, }, "ToUint8Clamp.js": { - "offset": 1167270, + "offset": 1167280, "size": 520, }, "TrimString.js": { - "offset": 1167790, + "offset": 1167800, "size": 760, }, "Type.js": { - "offset": 1168550, + "offset": 1168560, "size": 300, }, "TypedArrayCreate.js": { - "offset": 1168840, + "offset": 1168860, "size": 1690, }, "TypedArraySpeciesCreate.js": { - "offset": 1170530, + "offset": 1170540, "size": 1380, }, "UTF16EncodeCodePoint.js": { - "offset": 1171900, + "offset": 1171910, "size": 710, }, "UTF16SurrogatePairToCodePoint.js": { - "offset": 1172610, + "offset": 1172620, "size": 780, }, "UnicodeEscape.js": { - "offset": 1173390, + "offset": 1173400, "size": 790, }, "ValidateAndApplyPropertyDescriptor.js": { - "offset": 1174170, + "offset": 1174180, "size": 5010, }, "ValidateAtomicAccess.js": { - "offset": 1179170, + "offset": 1179180, "size": 1330, }, "ValidateIntegerTypedArray.js": { - "offset": 1180500, + "offset": 1180510, "size": 1320, }, "ValidateTypedArray.js": { - "offset": 1181810, + "offset": 1181820, "size": 800, }, "WeakRefDeref.js": { - "offset": 1182600, + "offset": 1182610, "size": 570, }, "WeekDay.js": { - "offset": 1183170, + "offset": 1183180, "size": 210, }, "WordCharacters.js": { - "offset": 1183370, + "offset": 1183390, "size": 1470, }, "YearFromTime.js": { - "offset": 1184840, + "offset": 1184850, "size": 400, }, "abs.js": { - "offset": 1185240, + "offset": 1185250, "size": 220, }, "clamp.js": { - "offset": 1185460, + "offset": 1185470, "size": 510, }, "floor.js": { - "offset": 1185960, + "offset": 1185980, "size": 290, }, "max.js": { - "offset": 1186250, + "offset": 1186260, "size": 140, }, "min.js": { - "offset": 1186390, + "offset": 1186400, "size": 140, }, "modulo.js": { - "offset": 1186520, + "offset": 1186530, "size": 170, }, "msFromTime.js": { - "offset": 1186690, + "offset": 1186700, "size": 260, }, "substring.js": { - "offset": 1186940, + "offset": 1186950, "size": 640, }, "tables": { "files": { "typed-array-objects.js": { - "offset": 1187580, + "offset": 1187590, "size": 780, }, }, }, "thisBigIntValue.js": { - "offset": 1188350, + "offset": 1188360, "size": 460, }, "thisBooleanValue.js": { - "offset": 1188810, + "offset": 1188820, "size": 330, }, "thisNumberValue.js": { - "offset": 1189130, + "offset": 1189140, "size": 350, }, "thisStringValue.js": { - "offset": 1189470, + "offset": 1189490, "size": 320, }, "thisSymbolValue.js": { - "offset": 1189790, + "offset": 1189800, "size": 530, }, "thisTimeValue.js": { - "offset": 1190320, + "offset": 1190330, "size": 240, }, }, @@ -15004,1035 +15004,1035 @@ exports[`node_module collectors > pnpm max stack 2`] = ` "2022": { "files": { "AddEntriesFromIterable.js": { - "offset": 1190550, + "offset": 1190560, "size": 1420, }, "AddToKeptObjects.js": { - "offset": 1191960, + "offset": 1191980, "size": 540, }, "AdvanceStringIndex.js": { - "offset": 1192500, + "offset": 1192510, "size": 940, }, "ApplyStringOrNumericBinaryOperator.js": { - "offset": 1193430, + "offset": 1193450, "size": 3130, }, "ArrayCreate.js": { - "offset": 1196560, + "offset": 1196580, "size": 1430, }, "ArraySetLength.js": { - "offset": 1197980, + "offset": 1198000, "size": 2430, }, "ArraySpeciesCreate.js": { - "offset": 1200410, + "offset": 1200420, "size": 1370, }, "AsyncFromSyncIteratorContinuation.js": { - "offset": 1201780, + "offset": 1201790, "size": 1530, }, "AsyncIteratorClose.js": { - "offset": 1203300, + "offset": 1203310, "size": 1940, }, "BigInt": { "files": { "add.js": { - "offset": 1205230, + "offset": 1205250, "size": 390, }, "bitwiseAND.js": { - "offset": 1205620, + "offset": 1205630, "size": 430, }, "bitwiseNOT.js": { - "offset": 1206040, + "offset": 1206050, "size": 420, }, "bitwiseOR.js": { - "offset": 1206460, + "offset": 1206470, "size": 430, }, "bitwiseXOR.js": { - "offset": 1206880, + "offset": 1206890, "size": 430, }, "divide.js": { - "offset": 1207310, + "offset": 1207320, "size": 600, }, "equal.js": { - "offset": 1207910, + "offset": 1207920, "size": 390, }, "exponentiate.js": { - "offset": 1208290, + "offset": 1208300, "size": 860, }, "index.js": { - "offset": 1209140, + "offset": 1209160, "size": 1280, }, "leftShift.js": { - "offset": 1210420, + "offset": 1210430, "size": 400, }, "lessThan.js": { - "offset": 1210810, + "offset": 1210820, "size": 400, }, "multiply.js": { - "offset": 1211200, + "offset": 1211220, "size": 400, }, "remainder.js": { - "offset": 1211590, + "offset": 1211610, "size": 680, }, "sameValue.js": { - "offset": 1212270, + "offset": 1212280, "size": 410, }, "sameValueZero.js": { - "offset": 1212670, + "offset": 1212680, "size": 410, }, "signedRightShift.js": { - "offset": 1213080, + "offset": 1213090, "size": 430, }, "subtract.js": { - "offset": 1213500, + "offset": 1213520, "size": 400, }, "toString.js": { - "offset": 1213900, + "offset": 1213910, "size": 400, }, "unaryMinus.js": { - "offset": 1214290, + "offset": 1214300, "size": 480, }, "unsignedRightShift.js": { - "offset": 1214770, + "offset": 1214780, "size": 440, }, }, }, "BigIntBitwiseOp.js": { - "offset": 1215200, + "offset": 1215210, "size": 1670, }, "BinaryAnd.js": { - "offset": 1216860, + "offset": 1216870, "size": 320, }, "BinaryOr.js": { - "offset": 1217180, + "offset": 1217190, "size": 320, }, "BinaryXor.js": { - "offset": 1217490, + "offset": 1217500, "size": 320, }, "ByteListBitwiseOp.js": { - "offset": 1217810, + "offset": 1217820, "size": 1190, }, "ByteListEqual.js": { - "offset": 1218990, + "offset": 1219000, "size": 860, }, "Call.js": { - "offset": 1219850, + "offset": 1219860, "size": 610, }, "CanonicalNumericIndexString.js": { - "offset": 1220460, + "offset": 1220470, "size": 580, }, "Canonicalize.js": { - "offset": 1221030, + "offset": 1221040, "size": 1190, }, "CharacterRange.js": { - "offset": 1222210, + "offset": 1222230, "size": 1350, }, "ClearKeptObjects.js": { - "offset": 1223560, + "offset": 1223570, "size": 300, }, "CloneArrayBuffer.js": { - "offset": 1223850, + "offset": 1223860, "size": 1900, }, "CodePointAt.js": { - "offset": 1225750, + "offset": 1225760, "size": 1650, }, "CodePointsToString.js": { - "offset": 1227400, + "offset": 1227410, "size": 740, }, "CompletePropertyDescriptor.js": { - "offset": 1228130, + "offset": 1228150, "size": 1110, }, "CompletionRecord.js": { - "offset": 1229240, + "offset": 1229260, "size": 1360, }, "CopyDataProperties.js": { - "offset": 1230600, + "offset": 1230610, "size": 1990, }, "CreateAsyncFromSyncIterator.js": { - "offset": 1232590, + "offset": 1232600, "size": 4570, }, "CreateDataProperty.js": { - "offset": 1237160, + "offset": 1237170, "size": 730, }, "CreateDataPropertyOrThrow.js": { - "offset": 1237880, + "offset": 1237890, "size": 700, }, "CreateHTML.js": { - "offset": 1238580, + "offset": 1238590, "size": 840, }, "CreateIterResultObject.js": { - "offset": 1239420, + "offset": 1239430, "size": 350, }, "CreateListFromArrayLike.js": { - "offset": 1239770, + "offset": 1239780, "size": 1370, }, "CreateMethodProperty.js": { - "offset": 1241130, + "offset": 1241150, "size": 950, }, "CreateNonEnumerableDataPropertyOrThrow.js": { - "offset": 1242080, + "offset": 1242090, "size": 760, }, "CreateRegExpStringIterator.js": { - "offset": 1242830, + "offset": 1242850, "size": 3410, }, "DateFromTime.js": { - "offset": 1246240, + "offset": 1246250, "size": 990, }, "DateString.js": { - "offset": 1247230, + "offset": 1247240, "size": 990, }, "Day.js": { - "offset": 1248210, + "offset": 1248220, "size": 240, }, "DayFromYear.js": { - "offset": 1248440, + "offset": 1248460, "size": 260, }, "DayWithinYear.js": { - "offset": 1248700, + "offset": 1248710, "size": 290, }, "DaysInYear.js": { - "offset": 1248990, + "offset": 1249000, "size": 310, }, "DefineMethodProperty.js": { - "offset": 1249290, + "offset": 1249300, "size": 1510, }, "DefinePropertyOrThrow.js": { - "offset": 1250790, + "offset": 1250800, "size": 1170, }, "DeletePropertyOrThrow.js": { - "offset": 1251960, + "offset": 1251970, "size": 670, }, "DetachArrayBuffer.js": { - "offset": 1252630, + "offset": 1252640, "size": 1720, }, "EnumerableOwnPropertyNames.js": { - "offset": 1254340, + "offset": 1254350, "size": 1010, }, "FlattenIntoArray.js": { - "offset": 1255340, + "offset": 1255360, "size": 1680, }, "FromPropertyDescriptor.js": { - "offset": 1257020, + "offset": 1257040, "size": 540, }, "Get.js": { - "offset": 1257560, + "offset": 1257570, "size": 570, }, "GetGlobalObject.js": { - "offset": 1258130, + "offset": 1258140, "size": 200, }, "GetIterator.js": { - "offset": 1258330, + "offset": 1258340, "size": 1720, }, "GetMatchIndexPair.js": { - "offset": 1260040, + "offset": 1260050, "size": 840, }, "GetMatchString.js": { - "offset": 1260880, + "offset": 1260890, "size": 890, }, "GetMethod.js": { - "offset": 1261760, + "offset": 1261770, "size": 690, }, "GetOwnPropertyKeys.js": { - "offset": 1262440, + "offset": 1262460, "size": 840, }, "GetPromiseResolve.js": { - "offset": 1263280, + "offset": 1263290, "size": 640, }, "GetPrototypeFromConstructor.js": { - "offset": 1263910, + "offset": 1263930, "size": 1080, }, "GetStringIndex.js": { - "offset": 1264990, + "offset": 1265000, "size": 760, }, "GetSubstitution.js": { - "offset": 1265750, + "offset": 1265760, "size": 5770, }, "GetV.js": { - "offset": 1271520, + "offset": 1271530, "size": 500, }, "GetValueFromBuffer.js": { - "offset": 1272010, + "offset": 1272020, "size": 4530, }, "HasOwnProperty.js": { - "offset": 1276530, + "offset": 1276550, "size": 540, }, "HasProperty.js": { - "offset": 1277070, + "offset": 1277080, "size": 490, }, "HourFromTime.js": { - "offset": 1277550, + "offset": 1277570, "size": 390, }, "InLeapYear.js": { - "offset": 1277940, + "offset": 1277950, "size": 470, }, "InstallErrorCause.js": { - "offset": 1278400, + "offset": 1278410, "size": 670, }, "InstanceofOperator.js": { - "offset": 1279060, + "offset": 1279070, "size": 930, }, "IntegerIndexedElementGet.js": { - "offset": 1279990, + "offset": 1280000, "size": 1240, }, "IntegerIndexedElementSet.js": { - "offset": 1281220, + "offset": 1281230, "size": 1560, }, "InternalizeJSONProperty.js": { - "offset": 1282770, + "offset": 1282790, "size": 2110, }, "Invoke.js": { - "offset": 1284880, + "offset": 1284890, "size": 680, }, "IsAccessorDescriptor.js": { - "offset": 1285550, + "offset": 1285560, "size": 560, }, "IsArray.js": { - "offset": 1286110, + "offset": 1286120, "size": 120, }, "IsBigIntElementType.js": { - "offset": 1286230, + "offset": 1286240, "size": 200, }, "IsCallable.js": { - "offset": 1286420, + "offset": 1286430, "size": 110, }, "IsCompatiblePropertyDescriptor.js": { - "offset": 1286530, + "offset": 1286540, "size": 370, }, "IsConcatSpreadable.js": { - "offset": 1286890, + "offset": 1286900, "size": 640, }, "IsConstructor.js": { - "offset": 1287530, + "offset": 1287540, "size": 1150, }, "IsDataDescriptor.js": { - "offset": 1288670, + "offset": 1288680, "size": 570, }, "IsDetachedBuffer.js": { - "offset": 1289230, + "offset": 1289240, "size": 1000, }, "IsExtensible.js": { - "offset": 1290230, + "offset": 1290240, "size": 510, }, "IsGenericDescriptor.js": { - "offset": 1290730, + "offset": 1290740, "size": 660, }, "IsIntegralNumber.js": { - "offset": 1291390, + "offset": 1291400, "size": 220, }, "IsLessThan.js": { - "offset": 1291600, + "offset": 1291620, "size": 2500, }, "IsLooselyEqual.js": { - "offset": 1294100, + "offset": 1294110, "size": 1800, }, "IsNoTearConfiguration.js": { - "offset": 1295900, + "offset": 1295910, "size": 470, }, "IsPromise.js": { - "offset": 1296370, + "offset": 1296380, "size": 490, }, "IsPropertyKey.js": { - "offset": 1296850, + "offset": 1296860, "size": 230, }, "IsRegExp.js": { - "offset": 1297070, + "offset": 1297090, "size": 570, }, "IsSharedArrayBuffer.js": { - "offset": 1297640, + "offset": 1297660, "size": 430, }, "IsStrictlyEqual.js": { - "offset": 1298070, + "offset": 1298080, "size": 530, }, "IsStringPrefix.js": { - "offset": 1298600, + "offset": 1298610, "size": 470, }, "IsStringWellFormedUnicode.js": { - "offset": 1299060, + "offset": 1299070, "size": 640, }, "IsUnclampedIntegerElementType.js": { - "offset": 1299700, + "offset": 1299710, "size": 300, }, "IsUnsignedElementType.js": { - "offset": 1300000, + "offset": 1300010, "size": 270, }, "IsValidIntegerIndex.js": { - "offset": 1300260, + "offset": 1300270, "size": 890, }, "IsWordChar.js": { - "offset": 1301150, + "offset": 1301160, "size": 1390, }, "IterableToList.js": { - "offset": 1302530, + "offset": 1302540, "size": 630, }, "IteratorClose.js": { - "offset": 1303150, + "offset": 1303160, "size": 1770, }, "IteratorComplete.js": { - "offset": 1304920, + "offset": 1304930, "size": 460, }, "IteratorNext.js": { - "offset": 1305380, + "offset": 1305390, "size": 460, }, "IteratorStep.js": { - "offset": 1305830, + "offset": 1305840, "size": 350, }, "IteratorValue.js": { - "offset": 1306180, + "offset": 1306190, "size": 410, }, "LengthOfArrayLike.js": { - "offset": 1306580, + "offset": 1306590, "size": 470, }, "MakeDate.js": { - "offset": 1307040, + "offset": 1307050, "size": 340, }, "MakeDay.js": { - "offset": 1307380, + "offset": 1307390, "size": 1020, }, "MakeMatchIndicesIndexPairArray.js": { - "offset": 1308390, + "offset": 1308400, "size": 2710, }, "MakeTime.js": { - "offset": 1311100, + "offset": 1311110, "size": 770, }, "MinFromTime.js": { - "offset": 1311860, + "offset": 1311870, "size": 400, }, "MonthFromTime.js": { - "offset": 1312260, + "offset": 1312270, "size": 1130, }, "NewPromiseCapability.js": { - "offset": 1313390, + "offset": 1313400, "size": 1230, }, "NormalCompletion.js": { - "offset": 1314610, + "offset": 1314630, "size": 240, }, "Number": { "files": { "add.js": { - "offset": 1314850, + "offset": 1314860, "size": 800, }, "bitwiseAND.js": { - "offset": 1315650, + "offset": 1315660, "size": 430, }, "bitwiseNOT.js": { - "offset": 1316080, + "offset": 1316090, "size": 500, }, "bitwiseOR.js": { - "offset": 1316580, + "offset": 1316590, "size": 430, }, "bitwiseXOR.js": { - "offset": 1317000, + "offset": 1317010, "size": 430, }, "divide.js": { - "offset": 1317430, + "offset": 1317440, "size": 570, }, "equal.js": { - "offset": 1317990, + "offset": 1318000, "size": 480, }, "exponentiate.js": { - "offset": 1318470, + "offset": 1318480, "size": 1740, }, "index.js": { - "offset": 1320210, + "offset": 1320220, "size": 1280, }, "leftShift.js": { - "offset": 1321480, + "offset": 1321500, "size": 570, }, "lessThan.js": { - "offset": 1322050, + "offset": 1322060, "size": 570, }, "multiply.js": { - "offset": 1322610, + "offset": 1322620, "size": 770, }, "remainder.js": { - "offset": 1323380, + "offset": 1323390, "size": 950, }, "sameValue.js": { - "offset": 1324330, + "offset": 1324340, "size": 570, }, "sameValueZero.js": { - "offset": 1324900, + "offset": 1324910, "size": 500, }, "signedRightShift.js": { - "offset": 1325400, + "offset": 1325410, "size": 580, }, "subtract.js": { - "offset": 1325970, + "offset": 1325980, "size": 460, }, "toString.js": { - "offset": 1326430, + "offset": 1326440, "size": 400, }, "unaryMinus.js": { - "offset": 1326820, + "offset": 1326840, "size": 400, }, "unsignedRightShift.js": { - "offset": 1327210, + "offset": 1327230, "size": 590, }, }, }, "NumberBitwiseOp.js": { - "offset": 1327800, + "offset": 1327810, "size": 690, }, "NumberToBigInt.js": { - "offset": 1328480, + "offset": 1328490, "size": 800, }, "NumericToRawBytes.js": { - "offset": 1329270, + "offset": 1329280, "size": 2030, }, "ObjectDefineProperties.js": { - "offset": 1331290, + "offset": 1331310, "size": 1440, }, "OrdinaryCreateFromConstructor.js": { - "offset": 1332730, + "offset": 1332740, "size": 830, }, "OrdinaryDefineOwnProperty.js": { - "offset": 1333550, + "offset": 1333570, "size": 2180, }, "OrdinaryGetOwnProperty.js": { - "offset": 1335730, + "offset": 1335740, "size": 1200, }, "OrdinaryGetPrototypeOf.js": { - "offset": 1336930, + "offset": 1336940, "size": 500, }, "OrdinaryHasInstance.js": { - "offset": 1337420, + "offset": 1337430, "size": 580, }, "OrdinaryHasProperty.js": { - "offset": 1337990, + "offset": 1338000, "size": 510, }, "OrdinaryObjectCreate.js": { - "offset": 1338490, + "offset": 1338500, "size": 1630, }, "OrdinarySetPrototypeOf.js": { - "offset": 1340120, + "offset": 1340130, "size": 1000, }, "OrdinaryToPrimitive.js": { - "offset": 1341120, + "offset": 1341130, "size": 1030, }, "PromiseResolve.js": { - "offset": 1342140, + "offset": 1342150, "size": 510, }, "QuoteJSONString.js": { - "offset": 1342650, + "offset": 1342660, "size": 1430, }, "RawBytesToNumeric.js": { - "offset": 1344070, + "offset": 1344080, "size": 2370, }, "RegExpCreate.js": { - "offset": 1346440, + "offset": 1346450, "size": 650, }, "RegExpExec.js": { - "offset": 1347080, + "offset": 1347090, "size": 830, }, "RegExpHasFlag.js": { - "offset": 1347910, + "offset": 1347920, "size": 1110, }, "RequireObjectCoercible.js": { - "offset": 1349010, + "offset": 1349030, "size": 90, }, "SameValue.js": { - "offset": 1349100, + "offset": 1349110, "size": 320, }, "SameValueNonNumeric.js": { - "offset": 1349410, + "offset": 1349420, "size": 580, }, "SameValueZero.js": { - "offset": 1349980, + "offset": 1349990, "size": 230, }, "SecFromTime.js": { - "offset": 1350200, + "offset": 1350220, "size": 410, }, "Set.js": { - "offset": 1350610, + "offset": 1350620, "size": 1230, }, "SetFunctionLength.js": { - "offset": 1351830, + "offset": 1351840, "size": 1020, }, "SetFunctionName.js": { - "offset": 1352850, + "offset": 1352860, "size": 1290, }, "SetIntegrityLevel.js": { - "offset": 1354140, + "offset": 1354150, "size": 1840, }, "SetTypedArrayFromArrayLike.js": { - "offset": 1355970, + "offset": 1355990, "size": 3110, }, "SetTypedArrayFromTypedArray.js": { - "offset": 1359080, + "offset": 1359090, "size": 5130, }, "SetValueInBuffer.js": { - "offset": 1364200, + "offset": 1364220, "size": 4160, }, "SortIndexedProperties.js": { - "offset": 1368360, + "offset": 1368370, "size": 1600, }, "SpeciesConstructor.js": { - "offset": 1369960, + "offset": 1369970, "size": 850, }, "StringCreate.js": { - "offset": 1370800, + "offset": 1370810, "size": 1080, }, "StringGetOwnProperty.js": { - "offset": 1371870, + "offset": 1371890, "size": 1380, }, "StringIndexOf.js": { - "offset": 1373250, + "offset": 1373260, "size": 1030, }, "StringPad.js": { - "offset": 1374270, + "offset": 1374280, "size": 1210, }, "StringToBigInt.js": { - "offset": 1375480, + "offset": 1375490, "size": 590, }, "StringToCodePoints.js": { - "offset": 1376060, + "offset": 1376080, "size": 600, }, "StringToNumber.js": { - "offset": 1376660, + "offset": 1376670, "size": 1270, }, "SymbolDescriptiveString.js": { - "offset": 1377920, + "offset": 1377930, "size": 440, }, "TestIntegrityLevel.js": { - "offset": 1378350, + "offset": 1378370, "size": 1210, }, "ThrowCompletion.js": { - "offset": 1379560, + "offset": 1379570, "size": 240, }, "TimeClip.js": { - "offset": 1379800, + "offset": 1379810, "size": 440, }, "TimeFromYear.js": { - "offset": 1380240, + "offset": 1380250, "size": 270, }, "TimeString.js": { - "offset": 1380500, + "offset": 1380510, "size": 830, }, "TimeWithinDay.js": { - "offset": 1381320, + "offset": 1381340, "size": 250, }, "TimeZoneString.js": { - "offset": 1381570, + "offset": 1381580, "size": 1590, }, "ToBigInt.js": { - "offset": 1383150, + "offset": 1383170, "size": 1280, }, "ToBigInt64.js": { - "offset": 1384430, + "offset": 1384440, "size": 960, }, "ToBigUint64.js": { - "offset": 1385380, + "offset": 1385390, "size": 710, }, "ToBoolean.js": { - "offset": 1386090, + "offset": 1386100, "size": 130, }, "ToDateString.js": { - "offset": 1386220, + "offset": 1386230, "size": 520, }, "ToIndex.js": { - "offset": 1386740, + "offset": 1386750, "size": 640, }, "ToInt16.js": { - "offset": 1387370, + "offset": 1387390, "size": 260, }, "ToInt32.js": { - "offset": 1387630, + "offset": 1387640, "size": 180, }, "ToInt8.js": { - "offset": 1387800, + "offset": 1387810, "size": 250, }, "ToIntegerOrInfinity.js": { - "offset": 1388040, + "offset": 1388060, "size": 620, }, "ToLength.js": { - "offset": 1388660, + "offset": 1388670, "size": 440, }, "ToNumber.js": { - "offset": 1389090, + "offset": 1389110, "size": 800, }, "ToNumeric.js": { - "offset": 1389890, + "offset": 1389900, "size": 530, }, "ToObject.js": { - "offset": 1390410, + "offset": 1390420, "size": 130, }, "ToPrimitive.js": { - "offset": 1390540, + "offset": 1390550, "size": 290, }, "ToPropertyDescriptor.js": { - "offset": 1390820, + "offset": 1390830, "size": 1460, }, "ToPropertyKey.js": { - "offset": 1392270, + "offset": 1392290, "size": 400, }, "ToString.js": { - "offset": 1392670, + "offset": 1392690, "size": 390, }, "ToUint16.js": { - "offset": 1393060, + "offset": 1393070, "size": 610, }, "ToUint32.js": { - "offset": 1393670, + "offset": 1393680, "size": 180, }, "ToUint8.js": { - "offset": 1393840, + "offset": 1393860, "size": 630, }, "ToUint8Clamp.js": { - "offset": 1394470, + "offset": 1394480, "size": 520, }, "ToZeroPaddedDecimalString.js": { - "offset": 1394990, + "offset": 1395000, "size": 580, }, "TrimString.js": { - "offset": 1395560, + "offset": 1395570, "size": 760, }, "Type.js": { - "offset": 1396320, + "offset": 1396330, "size": 300, }, "TypedArrayCreate.js": { - "offset": 1396620, + "offset": 1396630, "size": 1690, }, "TypedArrayElementSize.js": { - "offset": 1398300, + "offset": 1398310, "size": 720, }, "TypedArrayElementType.js": { - "offset": 1399020, + "offset": 1399030, "size": 650, }, "TypedArraySpeciesCreate.js": { - "offset": 1399670, + "offset": 1399680, "size": 1380, }, "UTF16EncodeCodePoint.js": { - "offset": 1401040, + "offset": 1401050, "size": 710, }, "UTF16SurrogatePairToCodePoint.js": { - "offset": 1401740, + "offset": 1401750, "size": 780, }, "UnicodeEscape.js": { - "offset": 1402520, + "offset": 1402530, "size": 790, }, "ValidateAndApplyPropertyDescriptor.js": { - "offset": 1403300, + "offset": 1403320, "size": 5740, }, "ValidateAtomicAccess.js": { - "offset": 1409040, + "offset": 1409050, "size": 1170, }, "ValidateIntegerTypedArray.js": { - "offset": 1410210, + "offset": 1410220, "size": 1420, }, "ValidateTypedArray.js": { - "offset": 1411630, + "offset": 1411640, "size": 770, }, "WeakRefDeref.js": { - "offset": 1412400, + "offset": 1412410, "size": 570, }, "WeekDay.js": { - "offset": 1412960, + "offset": 1412970, "size": 210, }, "WordCharacters.js": { - "offset": 1413170, + "offset": 1413180, "size": 1470, }, "YearFromTime.js": { - "offset": 1414630, + "offset": 1414650, "size": 400, }, "abs.js": { - "offset": 1415030, + "offset": 1415040, "size": 220, }, "clamp.js": { - "offset": 1415250, + "offset": 1415260, "size": 510, }, "floor.js": { - "offset": 1415760, + "offset": 1415770, "size": 290, }, "max.js": { - "offset": 1416040, + "offset": 1416060, "size": 140, }, "min.js": { - "offset": 1416180, + "offset": 1416190, "size": 140, }, "modulo.js": { - "offset": 1416310, + "offset": 1416320, "size": 170, }, "msFromTime.js": { - "offset": 1416480, + "offset": 1416490, "size": 260, }, "substring.js": { - "offset": 1416730, + "offset": 1416750, "size": 640, }, "tables": { "files": { "typed-array-objects.js": { - "offset": 1417370, + "offset": 1417380, "size": 780, }, }, }, "thisBigIntValue.js": { - "offset": 1418150, + "offset": 1418160, "size": 460, }, "thisBooleanValue.js": { - "offset": 1418600, + "offset": 1418610, "size": 330, }, "thisNumberValue.js": { - "offset": 1418920, + "offset": 1418930, "size": 350, }, "thisStringValue.js": { - "offset": 1419270, + "offset": 1419280, "size": 320, }, "thisSymbolValue.js": { - "offset": 1419580, + "offset": 1419600, "size": 530, }, "thisTimeValue.js": { - "offset": 1420110, + "offset": 1420120, "size": 240, }, }, @@ -16040,1075 +16040,1075 @@ exports[`node_module collectors > pnpm max stack 2`] = ` "2023": { "files": { "AddEntriesFromIterable.js": { - "offset": 1420340, + "offset": 1420350, "size": 1430, }, "AddToKeptObjects.js": { - "offset": 1421770, + "offset": 1421780, "size": 540, }, "AdvanceStringIndex.js": { - "offset": 1422300, + "offset": 1422310, "size": 940, }, "ApplyStringOrNumericBinaryOperator.js": { - "offset": 1423230, + "offset": 1423250, "size": 3130, }, "ArrayCreate.js": { - "offset": 1426360, + "offset": 1426380, "size": 1430, }, "ArraySetLength.js": { - "offset": 1427790, + "offset": 1427800, "size": 2430, }, "ArraySpeciesCreate.js": { - "offset": 1430210, + "offset": 1430220, "size": 1370, }, "AsyncFromSyncIteratorContinuation.js": { - "offset": 1431580, + "offset": 1431590, "size": 1530, }, "AsyncIteratorClose.js": { - "offset": 1433100, + "offset": 1433110, "size": 1940, }, "BigInt": { "files": { "add.js": { - "offset": 1435040, + "offset": 1435050, "size": 390, }, "bitwiseAND.js": { - "offset": 1435420, + "offset": 1435430, "size": 430, }, "bitwiseNOT.js": { - "offset": 1435840, + "offset": 1435850, "size": 420, }, "bitwiseOR.js": { - "offset": 1436260, + "offset": 1436270, "size": 430, }, "bitwiseXOR.js": { - "offset": 1436680, + "offset": 1436700, "size": 430, }, "divide.js": { - "offset": 1437110, + "offset": 1437120, "size": 600, }, "equal.js": { - "offset": 1437710, + "offset": 1437720, "size": 390, }, "exponentiate.js": { - "offset": 1438090, + "offset": 1438100, "size": 860, }, "index.js": { - "offset": 1438950, + "offset": 1438960, "size": 1140, }, "leftShift.js": { - "offset": 1440080, + "offset": 1440090, "size": 400, }, "lessThan.js": { - "offset": 1440470, + "offset": 1440480, "size": 400, }, "multiply.js": { - "offset": 1440860, + "offset": 1440870, "size": 400, }, "remainder.js": { - "offset": 1441250, + "offset": 1441270, "size": 680, }, "signedRightShift.js": { - "offset": 1441930, + "offset": 1441940, "size": 430, }, "subtract.js": { - "offset": 1442350, + "offset": 1442370, "size": 400, }, "toString.js": { - "offset": 1442740, + "offset": 1442760, "size": 790, }, "unaryMinus.js": { - "offset": 1443530, + "offset": 1443540, "size": 480, }, "unsignedRightShift.js": { - "offset": 1444000, + "offset": 1444020, "size": 440, }, }, }, "BigIntBitwiseOp.js": { - "offset": 1444440, + "offset": 1444450, "size": 1670, }, "BinaryAnd.js": { - "offset": 1446100, + "offset": 1446110, "size": 320, }, "BinaryOr.js": { - "offset": 1446420, + "offset": 1446430, "size": 320, }, "BinaryXor.js": { - "offset": 1446730, + "offset": 1446740, "size": 320, }, "ByteListBitwiseOp.js": { - "offset": 1447050, + "offset": 1447060, "size": 1190, }, "ByteListEqual.js": { - "offset": 1448230, + "offset": 1448240, "size": 860, }, "Call.js": { - "offset": 1449090, + "offset": 1449100, "size": 610, }, "CanBeHeldWeakly.js": { - "offset": 1449690, + "offset": 1449710, "size": 410, }, "CanonicalNumericIndexString.js": { - "offset": 1450100, + "offset": 1450110, "size": 580, }, "Canonicalize.js": { - "offset": 1450670, + "offset": 1450680, "size": 1240, }, "CharacterRange.js": { - "offset": 1451910, + "offset": 1451920, "size": 1350, }, "ClearKeptObjects.js": { - "offset": 1453250, + "offset": 1453260, "size": 300, }, "CloneArrayBuffer.js": { - "offset": 1453540, + "offset": 1453560, "size": 1900, }, "CodePointAt.js": { - "offset": 1455440, + "offset": 1455450, "size": 1650, }, "CodePointsToString.js": { - "offset": 1457090, + "offset": 1457100, "size": 740, }, "CompareArrayElements.js": { - "offset": 1457830, + "offset": 1457840, "size": 1280, }, "CompareTypedArrayElements.js": { - "offset": 1459100, + "offset": 1459110, "size": 1360, }, "CompletePropertyDescriptor.js": { - "offset": 1460460, + "offset": 1460470, "size": 1110, }, "CompletionRecord.js": { - "offset": 1461570, + "offset": 1461580, "size": 1360, }, "CopyDataProperties.js": { - "offset": 1462930, + "offset": 1462940, "size": 1990, }, "CreateAsyncFromSyncIterator.js": { - "offset": 1464910, + "offset": 1464920, "size": 4540, }, "CreateDataProperty.js": { - "offset": 1469450, + "offset": 1469460, "size": 730, }, "CreateDataPropertyOrThrow.js": { - "offset": 1470170, + "offset": 1470190, "size": 690, }, "CreateHTML.js": { - "offset": 1470860, + "offset": 1470870, "size": 840, }, "CreateIterResultObject.js": { - "offset": 1471690, + "offset": 1471710, "size": 350, }, "CreateListFromArrayLike.js": { - "offset": 1472040, + "offset": 1472060, "size": 1370, }, "CreateMethodProperty.js": { - "offset": 1473410, + "offset": 1473420, "size": 950, }, "CreateNonEnumerableDataPropertyOrThrow.js": { - "offset": 1474360, + "offset": 1474370, "size": 760, }, "CreateRegExpStringIterator.js": { - "offset": 1475110, + "offset": 1475120, "size": 3410, }, "DateFromTime.js": { - "offset": 1478520, + "offset": 1478530, "size": 990, }, "DateString.js": { - "offset": 1479510, + "offset": 1479520, "size": 990, }, "Day.js": { - "offset": 1480490, + "offset": 1480500, "size": 240, }, "DayFromYear.js": { - "offset": 1480720, + "offset": 1480730, "size": 260, }, "DayWithinYear.js": { - "offset": 1480980, + "offset": 1480990, "size": 290, }, "DaysInYear.js": { - "offset": 1481260, + "offset": 1481280, "size": 310, }, "DefaultTimeZone.js": { - "offset": 1481570, + "offset": 1481580, "size": 540, }, "DefineMethodProperty.js": { - "offset": 1482100, + "offset": 1482120, "size": 1510, }, "DefinePropertyOrThrow.js": { - "offset": 1483610, + "offset": 1483620, "size": 1170, }, "DeletePropertyOrThrow.js": { - "offset": 1484780, + "offset": 1484790, "size": 670, }, "DetachArrayBuffer.js": { - "offset": 1485440, + "offset": 1485460, "size": 1720, }, "EnumerableOwnProperties.js": { - "offset": 1487150, + "offset": 1487170, "size": 1010, }, "FindViaPredicate.js": { - "offset": 1488160, + "offset": 1488170, "size": 1420, }, "FlattenIntoArray.js": { - "offset": 1489570, + "offset": 1489590, "size": 1680, }, "FromPropertyDescriptor.js": { - "offset": 1491250, + "offset": 1491270, "size": 540, }, "Get.js": { - "offset": 1491790, + "offset": 1491800, "size": 570, }, "GetGlobalObject.js": { - "offset": 1492360, + "offset": 1492370, "size": 200, }, "GetIterator.js": { - "offset": 1492560, + "offset": 1492570, "size": 1750, }, "GetIteratorFromMethod.js": { - "offset": 1494300, + "offset": 1494310, "size": 750, }, "GetMatchIndexPair.js": { - "offset": 1495040, + "offset": 1495050, "size": 840, }, "GetMatchString.js": { - "offset": 1495870, + "offset": 1495890, "size": 890, }, "GetMethod.js": { - "offset": 1496760, + "offset": 1496770, "size": 690, }, "GetNamedTimeZoneEpochNanoseconds.js": { - "offset": 1497440, + "offset": 1497450, "size": 2430, }, "GetOwnPropertyKeys.js": { - "offset": 1499870, + "offset": 1499880, "size": 840, }, "GetPromiseResolve.js": { - "offset": 1500700, + "offset": 1500710, "size": 640, }, "GetPrototypeFromConstructor.js": { - "offset": 1501340, + "offset": 1501350, "size": 1080, }, "GetStringIndex.js": { - "offset": 1502420, + "offset": 1502430, "size": 760, }, "GetSubstitution.js": { - "offset": 1503180, + "offset": 1503190, "size": 5570, }, "GetUTCEpochNanoseconds.js": { - "offset": 1508740, + "offset": 1508750, "size": 2560, }, "GetV.js": { - "offset": 1511300, + "offset": 1511310, "size": 500, }, "GetValueFromBuffer.js": { - "offset": 1511790, + "offset": 1511800, "size": 4530, }, "HasOwnProperty.js": { - "offset": 1516320, + "offset": 1516330, "size": 540, }, "HasProperty.js": { - "offset": 1516850, + "offset": 1516860, "size": 490, }, "HourFromTime.js": { - "offset": 1517340, + "offset": 1517350, "size": 390, }, "InLeapYear.js": { - "offset": 1517720, + "offset": 1517730, "size": 470, }, "InstallErrorCause.js": { - "offset": 1518180, + "offset": 1518190, "size": 670, }, "InstanceofOperator.js": { - "offset": 1518840, + "offset": 1518850, "size": 930, }, "IntegerIndexedElementGet.js": { - "offset": 1519770, + "offset": 1519780, "size": 1240, }, "IntegerIndexedElementSet.js": { - "offset": 1521000, + "offset": 1521010, "size": 1560, }, "InternalizeJSONProperty.js": { - "offset": 1522560, + "offset": 1522570, "size": 2190, }, "Invoke.js": { - "offset": 1524740, + "offset": 1524750, "size": 680, }, "IsAccessorDescriptor.js": { - "offset": 1525410, + "offset": 1525420, "size": 560, }, "IsArray.js": { - "offset": 1525970, + "offset": 1525980, "size": 120, }, "IsBigIntElementType.js": { - "offset": 1526080, + "offset": 1526100, "size": 200, }, "IsCallable.js": { - "offset": 1526280, + "offset": 1526290, "size": 110, }, "IsCompatiblePropertyDescriptor.js": { - "offset": 1526390, + "offset": 1526400, "size": 370, }, "IsConcatSpreadable.js": { - "offset": 1526750, + "offset": 1526760, "size": 640, }, "IsConstructor.js": { - "offset": 1527380, + "offset": 1527400, "size": 1150, }, "IsDataDescriptor.js": { - "offset": 1528530, + "offset": 1528540, "size": 570, }, "IsDetachedBuffer.js": { - "offset": 1529090, + "offset": 1529100, "size": 1000, }, "IsExtensible.js": { - "offset": 1530090, + "offset": 1530100, "size": 510, }, "IsGenericDescriptor.js": { - "offset": 1530590, + "offset": 1530600, "size": 660, }, "IsIntegralNumber.js": { - "offset": 1531250, + "offset": 1531260, "size": 360, }, "IsLessThan.js": { - "offset": 1531600, + "offset": 1531610, "size": 2760, }, "IsLooselyEqual.js": { - "offset": 1534360, + "offset": 1534370, "size": 1800, }, "IsNoTearConfiguration.js": { - "offset": 1536160, + "offset": 1536170, "size": 470, }, "IsPromise.js": { - "offset": 1536620, + "offset": 1536630, "size": 490, }, "IsPropertyKey.js": { - "offset": 1537110, + "offset": 1537120, "size": 230, }, "IsRegExp.js": { - "offset": 1537330, + "offset": 1537340, "size": 570, }, "IsSharedArrayBuffer.js": { - "offset": 1537900, + "offset": 1537910, "size": 430, }, "IsStrictlyEqual.js": { - "offset": 1538330, + "offset": 1538340, "size": 400, }, "IsStringWellFormedUnicode.js": { - "offset": 1538720, + "offset": 1538730, "size": 640, }, "IsTimeZoneOffsetString.js": { - "offset": 1539350, + "offset": 1539360, "size": 690, }, "IsUnclampedIntegerElementType.js": { - "offset": 1540030, + "offset": 1540040, "size": 300, }, "IsUnsignedElementType.js": { - "offset": 1540330, + "offset": 1540340, "size": 270, }, "IsValidIntegerIndex.js": { - "offset": 1540600, + "offset": 1540610, "size": 890, }, "IsWordChar.js": { - "offset": 1541480, + "offset": 1541490, "size": 1170, }, "IteratorClose.js": { - "offset": 1542640, + "offset": 1542660, "size": 2400, }, "IteratorComplete.js": { - "offset": 1545040, + "offset": 1545050, "size": 460, }, "IteratorNext.js": { - "offset": 1545500, + "offset": 1545510, "size": 900, }, "IteratorStep.js": { - "offset": 1546390, + "offset": 1546410, "size": 660, }, "IteratorToList.js": { - "offset": 1547050, + "offset": 1547070, "size": 790, }, "IteratorValue.js": { - "offset": 1547840, + "offset": 1547850, "size": 410, }, "KeyForSymbol.js": { - "offset": 1548250, + "offset": 1548260, "size": 390, }, "LengthOfArrayLike.js": { - "offset": 1548630, + "offset": 1548640, "size": 470, }, "MakeDate.js": { - "offset": 1549090, + "offset": 1549100, "size": 340, }, "MakeDay.js": { - "offset": 1549430, + "offset": 1549440, "size": 1020, }, "MakeMatchIndicesIndexPairArray.js": { - "offset": 1550440, + "offset": 1550450, "size": 2710, }, "MakeTime.js": { - "offset": 1553150, + "offset": 1553160, "size": 770, }, "MinFromTime.js": { - "offset": 1553910, + "offset": 1553920, "size": 400, }, "MonthFromTime.js": { - "offset": 1554310, + "offset": 1554320, "size": 1130, }, "NewPromiseCapability.js": { - "offset": 1555440, + "offset": 1555450, "size": 1230, }, "NormalCompletion.js": { - "offset": 1556660, + "offset": 1556680, "size": 240, }, "Number": { "files": { "add.js": { - "offset": 1556900, + "offset": 1556910, "size": 800, }, "bitwiseAND.js": { - "offset": 1557700, + "offset": 1557710, "size": 430, }, "bitwiseNOT.js": { - "offset": 1558130, + "offset": 1558140, "size": 500, }, "bitwiseOR.js": { - "offset": 1558630, + "offset": 1558640, "size": 430, }, "bitwiseXOR.js": { - "offset": 1559050, + "offset": 1559060, "size": 430, }, "divide.js": { - "offset": 1559480, + "offset": 1559490, "size": 570, }, "equal.js": { - "offset": 1560040, + "offset": 1560050, "size": 480, }, "exponentiate.js": { - "offset": 1560520, + "offset": 1560530, "size": 1740, }, "index.js": { - "offset": 1562260, + "offset": 1562270, "size": 1280, }, "leftShift.js": { - "offset": 1563530, + "offset": 1563550, "size": 570, }, "lessThan.js": { - "offset": 1564100, + "offset": 1564110, "size": 570, }, "multiply.js": { - "offset": 1564660, + "offset": 1564670, "size": 770, }, "remainder.js": { - "offset": 1565430, + "offset": 1565440, "size": 1220, }, "sameValue.js": { - "offset": 1566650, + "offset": 1566660, "size": 570, }, "sameValueZero.js": { - "offset": 1567220, + "offset": 1567230, "size": 500, }, "signedRightShift.js": { - "offset": 1567720, + "offset": 1567730, "size": 580, }, "subtract.js": { - "offset": 1568290, + "offset": 1568300, "size": 460, }, "toString.js": { - "offset": 1568750, + "offset": 1568760, "size": 650, }, "unaryMinus.js": { - "offset": 1569390, + "offset": 1569410, "size": 400, }, "unsignedRightShift.js": { - "offset": 1569790, + "offset": 1569800, "size": 590, }, }, }, "NumberBitwiseOp.js": { - "offset": 1570370, + "offset": 1570380, "size": 690, }, "NumberToBigInt.js": { - "offset": 1571050, + "offset": 1571060, "size": 800, }, "NumericToRawBytes.js": { - "offset": 1571840, + "offset": 1571850, "size": 2030, }, "ObjectDefineProperties.js": { - "offset": 1573860, + "offset": 1573880, "size": 1440, }, "OrdinaryCreateFromConstructor.js": { - "offset": 1575300, + "offset": 1575310, "size": 830, }, "OrdinaryDefineOwnProperty.js": { - "offset": 1576120, + "offset": 1576140, "size": 2180, }, "OrdinaryGetOwnProperty.js": { - "offset": 1578300, + "offset": 1578310, "size": 1200, }, "OrdinaryGetPrototypeOf.js": { - "offset": 1579500, + "offset": 1579510, "size": 500, }, "OrdinaryHasInstance.js": { - "offset": 1579990, + "offset": 1580000, "size": 580, }, "OrdinaryHasProperty.js": { - "offset": 1580560, + "offset": 1580570, "size": 510, }, "OrdinaryObjectCreate.js": { - "offset": 1581060, + "offset": 1581070, "size": 1630, }, "OrdinarySetPrototypeOf.js": { - "offset": 1582690, + "offset": 1582700, "size": 1000, }, "OrdinaryToPrimitive.js": { - "offset": 1583690, + "offset": 1583700, "size": 1030, }, "ParseHexOctet.js": { - "offset": 1584710, + "offset": 1584720, "size": 1330, }, "PromiseResolve.js": { - "offset": 1586040, + "offset": 1586050, "size": 510, }, "QuoteJSONString.js": { - "offset": 1586540, + "offset": 1586560, "size": 1430, }, "RawBytesToNumeric.js": { - "offset": 1587970, + "offset": 1587980, "size": 2370, }, "RegExpCreate.js": { - "offset": 1590330, + "offset": 1590350, "size": 650, }, "RegExpExec.js": { - "offset": 1590980, + "offset": 1590990, "size": 830, }, "RegExpHasFlag.js": { - "offset": 1591810, + "offset": 1591820, "size": 1110, }, "RequireObjectCoercible.js": { - "offset": 1592910, + "offset": 1592920, "size": 90, }, "SameValue.js": { - "offset": 1593000, + "offset": 1593010, "size": 320, }, "SameValueNonNumber.js": { - "offset": 1593310, + "offset": 1593320, "size": 540, }, "SameValueZero.js": { - "offset": 1593840, + "offset": 1593850, "size": 230, }, "SecFromTime.js": { - "offset": 1594060, + "offset": 1594080, "size": 410, }, "Set.js": { - "offset": 1594470, + "offset": 1594480, "size": 1230, }, "SetFunctionLength.js": { - "offset": 1595690, + "offset": 1595700, "size": 1020, }, "SetFunctionName.js": { - "offset": 1596710, + "offset": 1596720, "size": 1290, }, "SetIntegrityLevel.js": { - "offset": 1598000, + "offset": 1598010, "size": 1840, }, "SetTypedArrayFromArrayLike.js": { - "offset": 1599830, + "offset": 1599850, "size": 2130, }, "SetTypedArrayFromTypedArray.js": { - "offset": 1601960, + "offset": 1601970, "size": 4990, }, "SetValueInBuffer.js": { - "offset": 1606940, + "offset": 1606950, "size": 4160, }, "SortIndexedProperties.js": { - "offset": 1611090, + "offset": 1611110, "size": 1520, }, "SpeciesConstructor.js": { - "offset": 1612610, + "offset": 1612620, "size": 850, }, "StringCreate.js": { - "offset": 1613450, + "offset": 1613470, "size": 1080, }, "StringGetOwnProperty.js": { - "offset": 1614530, + "offset": 1614540, "size": 1380, }, "StringIndexOf.js": { - "offset": 1615900, + "offset": 1615910, "size": 1030, }, "StringPad.js": { - "offset": 1616930, + "offset": 1616940, "size": 1210, }, "StringToBigInt.js": { - "offset": 1618130, + "offset": 1618140, "size": 590, }, "StringToCodePoints.js": { - "offset": 1618720, + "offset": 1618730, "size": 600, }, "StringToNumber.js": { - "offset": 1619310, + "offset": 1619330, "size": 1270, }, "SymbolDescriptiveString.js": { - "offset": 1620580, + "offset": 1620590, "size": 440, }, "TestIntegrityLevel.js": { - "offset": 1621010, + "offset": 1621020, "size": 1210, }, "ThrowCompletion.js": { - "offset": 1622220, + "offset": 1622230, "size": 240, }, "TimeClip.js": { - "offset": 1622460, + "offset": 1622470, "size": 440, }, "TimeFromYear.js": { - "offset": 1622900, + "offset": 1622910, "size": 270, }, "TimeString.js": { - "offset": 1623160, + "offset": 1623170, "size": 830, }, "TimeWithinDay.js": { - "offset": 1623980, + "offset": 1623990, "size": 250, }, "TimeZoneString.js": { - "offset": 1624230, + "offset": 1624240, "size": 1970, }, "ToBigInt.js": { - "offset": 1626190, + "offset": 1626200, "size": 1280, }, "ToBigInt64.js": { - "offset": 1627460, + "offset": 1627470, "size": 960, }, "ToBigUint64.js": { - "offset": 1628410, + "offset": 1628430, "size": 710, }, "ToBoolean.js": { - "offset": 1629120, + "offset": 1629130, "size": 130, }, "ToDateString.js": { - "offset": 1629250, + "offset": 1629260, "size": 520, }, "ToIndex.js": { - "offset": 1629770, + "offset": 1629780, "size": 640, }, "ToInt16.js": { - "offset": 1630410, + "offset": 1630420, "size": 550, }, "ToInt32.js": { - "offset": 1630950, + "offset": 1630960, "size": 700, }, "ToInt8.js": { - "offset": 1631640, + "offset": 1631650, "size": 500, }, "ToIntegerOrInfinity.js": { - "offset": 1632130, + "offset": 1632150, "size": 480, }, "ToLength.js": { - "offset": 1632610, + "offset": 1632620, "size": 440, }, "ToNumber.js": { - "offset": 1633040, + "offset": 1633050, "size": 800, }, "ToNumeric.js": { - "offset": 1633830, + "offset": 1633850, "size": 530, }, "ToObject.js": { - "offset": 1634360, + "offset": 1634370, "size": 130, }, "ToPrimitive.js": { - "offset": 1634480, + "offset": 1634500, "size": 290, }, "ToPropertyDescriptor.js": { - "offset": 1634770, + "offset": 1634780, "size": 1460, }, "ToPropertyKey.js": { - "offset": 1636220, + "offset": 1636230, "size": 400, }, "ToString.js": { - "offset": 1636620, + "offset": 1636630, "size": 390, }, "ToUint16.js": { - "offset": 1637010, + "offset": 1637020, "size": 590, }, "ToUint32.js": { - "offset": 1637600, + "offset": 1637610, "size": 600, }, "ToUint8.js": { - "offset": 1638190, + "offset": 1638200, "size": 460, }, "ToUint8Clamp.js": { - "offset": 1638640, + "offset": 1638660, "size": 520, }, "ToZeroPaddedDecimalString.js": { - "offset": 1639160, + "offset": 1639180, "size": 580, }, "TrimString.js": { - "offset": 1639740, + "offset": 1639750, "size": 760, }, "Type.js": { - "offset": 1640490, + "offset": 1640500, "size": 300, }, "TypedArrayCreate.js": { - "offset": 1640790, + "offset": 1640800, "size": 1690, }, "TypedArrayCreateSameType.js": { - "offset": 1642480, + "offset": 1642490, "size": 1240, }, "TypedArrayElementSize.js": { - "offset": 1643710, + "offset": 1643720, "size": 720, }, "TypedArrayElementType.js": { - "offset": 1644430, + "offset": 1644440, "size": 650, }, "TypedArraySpeciesCreate.js": { - "offset": 1645070, + "offset": 1645080, "size": 1380, }, "UTF16EncodeCodePoint.js": { - "offset": 1646440, + "offset": 1646460, "size": 710, }, "UTF16SurrogatePairToCodePoint.js": { - "offset": 1647150, + "offset": 1647160, "size": 780, }, "UnicodeEscape.js": { - "offset": 1647930, + "offset": 1647940, "size": 790, }, "ValidateAndApplyPropertyDescriptor.js": { - "offset": 1648710, + "offset": 1648720, "size": 5740, }, "ValidateAtomicAccess.js": { - "offset": 1654450, + "offset": 1654460, "size": 1170, }, "ValidateIntegerTypedArray.js": { - "offset": 1655620, + "offset": 1655630, "size": 1420, }, "ValidateTypedArray.js": { - "offset": 1657030, + "offset": 1657050, "size": 770, }, "WeakRefDeref.js": { - "offset": 1657800, + "offset": 1657810, "size": 570, }, "WeekDay.js": { - "offset": 1658370, + "offset": 1658380, "size": 210, }, "WordCharacters.js": { - "offset": 1658570, + "offset": 1658590, "size": 1620, }, "YearFromTime.js": { - "offset": 1660190, + "offset": 1660210, "size": 400, }, "abs.js": { - "offset": 1660590, + "offset": 1660600, "size": 220, }, "clamp.js": { - "offset": 1660810, + "offset": 1660820, "size": 510, }, "floor.js": { - "offset": 1661320, + "offset": 1661330, "size": 290, }, "max.js": { - "offset": 1661600, + "offset": 1661620, "size": 140, }, "min.js": { - "offset": 1661740, + "offset": 1661750, "size": 140, }, "modulo.js": { - "offset": 1661870, + "offset": 1661880, "size": 170, }, "msFromTime.js": { - "offset": 1662040, + "offset": 1662050, "size": 260, }, "substring.js": { - "offset": 1662290, + "offset": 1662310, "size": 640, }, "tables": { "files": { "typed-array-objects.js": { - "offset": 1662930, + "offset": 1662940, "size": 780, }, }, }, "thisBigIntValue.js": { - "offset": 1663710, + "offset": 1663720, "size": 460, }, "thisBooleanValue.js": { - "offset": 1664160, + "offset": 1664170, "size": 330, }, "thisNumberValue.js": { - "offset": 1664480, + "offset": 1664490, "size": 350, }, "thisStringValue.js": { - "offset": 1664830, + "offset": 1664840, "size": 320, }, "thisSymbolValue.js": { - "offset": 1665140, + "offset": 1665160, "size": 530, }, "thisTimeValue.js": { - "offset": 1665670, + "offset": 1665680, "size": 240, }, "truncate.js": { - "offset": 1665900, + "offset": 1665910, "size": 470, }, }, @@ -17116,1151 +17116,1151 @@ exports[`node_module collectors > pnpm max stack 2`] = ` "2024": { "files": { "AddEntriesFromIterable.js": { - "offset": 1666360, + "offset": 1666370, "size": 1430, }, "AddToKeptObjects.js": { - "offset": 1667790, + "offset": 1667800, "size": 540, }, "AddValueToKeyedGroup.js": { - "offset": 1668320, + "offset": 1668330, "size": 1300, }, "AdvanceStringIndex.js": { - "offset": 1669620, + "offset": 1669630, "size": 940, }, "AllCharacters.js": { - "offset": 1670550, + "offset": 1670560, "size": 1140, }, "ApplyStringOrNumericBinaryOperator.js": { - "offset": 1671690, + "offset": 1671700, "size": 3130, }, "ArrayBufferByteLength.js": { - "offset": 1674820, + "offset": 1674830, "size": 1780, }, "ArrayBufferCopyAndDetach.js": { - "offset": 1676590, + "offset": 1676600, "size": 3910, }, "ArrayCreate.js": { - "offset": 1680500, + "offset": 1680510, "size": 1430, }, "ArraySetLength.js": { - "offset": 1681920, + "offset": 1681930, "size": 2430, }, "ArraySpeciesCreate.js": { - "offset": 1684340, + "offset": 1684350, "size": 1370, }, "AsyncFromSyncIteratorContinuation.js": { - "offset": 1685710, + "offset": 1685720, "size": 1530, }, "AsyncIteratorClose.js": { - "offset": 1687230, + "offset": 1687240, "size": 1940, }, "BigInt": { "files": { "add.js": { - "offset": 1689160, + "offset": 1689170, "size": 390, }, "bitwiseAND.js": { - "offset": 1689540, + "offset": 1689560, "size": 430, }, "bitwiseNOT.js": { - "offset": 1689970, + "offset": 1689980, "size": 420, }, "bitwiseOR.js": { - "offset": 1690390, + "offset": 1690400, "size": 430, }, "bitwiseXOR.js": { - "offset": 1690810, + "offset": 1690820, "size": 430, }, "divide.js": { - "offset": 1691240, + "offset": 1691250, "size": 600, }, "equal.js": { - "offset": 1691830, + "offset": 1691850, "size": 390, }, "exponentiate.js": { - "offset": 1692220, + "offset": 1692230, "size": 860, }, "index.js": { - "offset": 1693070, + "offset": 1693080, "size": 1140, }, "leftShift.js": { - "offset": 1694200, + "offset": 1694220, "size": 400, }, "lessThan.js": { - "offset": 1694600, + "offset": 1694610, "size": 400, }, "multiply.js": { - "offset": 1694990, + "offset": 1695000, "size": 400, }, "remainder.js": { - "offset": 1695380, + "offset": 1695390, "size": 680, }, "signedRightShift.js": { - "offset": 1696050, + "offset": 1696060, "size": 430, }, "subtract.js": { - "offset": 1696480, + "offset": 1696490, "size": 400, }, "toString.js": { - "offset": 1696870, + "offset": 1696880, "size": 790, }, "unaryMinus.js": { - "offset": 1697650, + "offset": 1697670, "size": 480, }, "unsignedRightShift.js": { - "offset": 1698130, + "offset": 1698140, "size": 440, }, }, }, "BigIntBitwiseOp.js": { - "offset": 1698560, + "offset": 1698580, "size": 1670, }, "BinaryAnd.js": { - "offset": 1700230, + "offset": 1700240, "size": 320, }, "BinaryOr.js": { - "offset": 1700540, + "offset": 1700550, "size": 320, }, "BinaryXor.js": { - "offset": 1700860, + "offset": 1700870, "size": 320, }, "ByteListBitwiseOp.js": { - "offset": 1701170, + "offset": 1701180, "size": 1190, }, "ByteListEqual.js": { - "offset": 1702360, + "offset": 1702370, "size": 860, }, "Call.js": { - "offset": 1703220, + "offset": 1703230, "size": 610, }, "CanBeHeldWeakly.js": { - "offset": 1703820, + "offset": 1703830, "size": 410, }, "CanonicalNumericIndexString.js": { - "offset": 1704220, + "offset": 1704240, "size": 580, }, "Canonicalize.js": { - "offset": 1704800, + "offset": 1704810, "size": 1240, }, "CharacterComplement.js": { - "offset": 1706030, + "offset": 1706050, "size": 890, }, "CharacterRange.js": { - "offset": 1706920, + "offset": 1706930, "size": 1350, }, "ClearKeptObjects.js": { - "offset": 1708260, + "offset": 1708270, "size": 300, }, "CloneArrayBuffer.js": { - "offset": 1708560, + "offset": 1708570, "size": 1900, }, "CodePointAt.js": { - "offset": 1710450, + "offset": 1710470, "size": 1650, }, "CodePointsToString.js": { - "offset": 1712100, + "offset": 1712110, "size": 740, }, "CompareArrayElements.js": { - "offset": 1712840, + "offset": 1712850, "size": 1280, }, "CompareTypedArrayElements.js": { - "offset": 1714110, + "offset": 1714130, "size": 1360, }, "CompletePropertyDescriptor.js": { - "offset": 1715470, + "offset": 1715480, "size": 1110, }, "CompletionRecord.js": { - "offset": 1716580, + "offset": 1716590, "size": 1360, }, "CopyDataProperties.js": { - "offset": 1717940, + "offset": 1717950, "size": 1990, }, "CreateAsyncFromSyncIterator.js": { - "offset": 1719920, + "offset": 1719940, "size": 4540, }, "CreateDataProperty.js": { - "offset": 1724460, + "offset": 1724470, "size": 730, }, "CreateDataPropertyOrThrow.js": { - "offset": 1725180, + "offset": 1725190, "size": 690, }, "CreateHTML.js": { - "offset": 1725860, + "offset": 1725880, "size": 840, }, "CreateIterResultObject.js": { - "offset": 1726700, + "offset": 1726710, "size": 350, }, "CreateListFromArrayLike.js": { - "offset": 1727050, + "offset": 1727060, "size": 1370, }, "CreateNonEnumerableDataPropertyOrThrow.js": { - "offset": 1728420, + "offset": 1728430, "size": 760, }, "CreateRegExpStringIterator.js": { - "offset": 1729170, + "offset": 1729190, "size": 3430, }, "DateFromTime.js": { - "offset": 1732600, + "offset": 1732610, "size": 990, }, "DateString.js": { - "offset": 1733580, + "offset": 1733600, "size": 990, }, "Day.js": { - "offset": 1734570, + "offset": 1734580, "size": 240, }, "DayFromYear.js": { - "offset": 1734800, + "offset": 1734810, "size": 260, }, "DayWithinYear.js": { - "offset": 1735060, + "offset": 1735070, "size": 290, }, "DaysInYear.js": { - "offset": 1735340, + "offset": 1735350, "size": 310, }, "DefineMethodProperty.js": { - "offset": 1735640, + "offset": 1735660, "size": 1510, }, "DefinePropertyOrThrow.js": { - "offset": 1737150, + "offset": 1737160, "size": 1170, }, "DeletePropertyOrThrow.js": { - "offset": 1738320, + "offset": 1738330, "size": 670, }, "DetachArrayBuffer.js": { - "offset": 1738980, + "offset": 1738990, "size": 1720, }, "EnumerableOwnProperties.js": { - "offset": 1740690, + "offset": 1740710, "size": 1010, }, "FindViaPredicate.js": { - "offset": 1741700, + "offset": 1741710, "size": 1540, }, "FlattenIntoArray.js": { - "offset": 1743230, + "offset": 1743240, "size": 1680, }, "FromPropertyDescriptor.js": { - "offset": 1744910, + "offset": 1744920, "size": 540, }, "Get.js": { - "offset": 1745450, + "offset": 1745460, "size": 570, }, "GetArrayBufferMaxByteLengthOption.js": { - "offset": 1746010, + "offset": 1746030, "size": 540, }, "GetGlobalObject.js": { - "offset": 1746540, + "offset": 1746560, "size": 200, }, "GetIterator.js": { - "offset": 1746740, + "offset": 1746750, "size": 1750, }, "GetIteratorFromMethod.js": { - "offset": 1748480, + "offset": 1748500, "size": 740, }, "GetMatchIndexPair.js": { - "offset": 1749220, + "offset": 1749230, "size": 840, }, "GetMatchString.js": { - "offset": 1750060, + "offset": 1750070, "size": 890, }, "GetMethod.js": { - "offset": 1750940, + "offset": 1750950, "size": 690, }, "GetNamedTimeZoneEpochNanoseconds.js": { - "offset": 1751630, + "offset": 1751640, "size": 2430, }, "GetOwnPropertyKeys.js": { - "offset": 1754050, + "offset": 1754060, "size": 840, }, "GetPromiseResolve.js": { - "offset": 1754880, + "offset": 1754900, "size": 640, }, "GetPrototypeFromConstructor.js": { - "offset": 1755520, + "offset": 1755530, "size": 1080, }, "GetStringIndex.js": { - "offset": 1756600, + "offset": 1756610, "size": 760, }, "GetSubstitution.js": { - "offset": 1757360, + "offset": 1757370, "size": 5980, }, "GetUTCEpochNanoseconds.js": { - "offset": 1763340, + "offset": 1763350, "size": 2560, }, "GetV.js": { - "offset": 1765900, + "offset": 1765910, "size": 500, }, "GetValueFromBuffer.js": { - "offset": 1766390, + "offset": 1766400, "size": 4530, }, "GetViewByteLength.js": { - "offset": 1770920, + "offset": 1770930, "size": 1580, }, "GroupBy.js": { - "offset": 1772490, + "offset": 1772510, "size": 2340, }, "HasEitherUnicodeFlag.js": { - "offset": 1774830, + "offset": 1774840, "size": 520, }, "HasOwnProperty.js": { - "offset": 1775340, + "offset": 1775360, "size": 540, }, "HasProperty.js": { - "offset": 1775880, + "offset": 1775890, "size": 490, }, "HourFromTime.js": { - "offset": 1776360, + "offset": 1776380, "size": 390, }, "InLeapYear.js": { - "offset": 1776750, + "offset": 1776760, "size": 470, }, "InstallErrorCause.js": { - "offset": 1777210, + "offset": 1777220, "size": 670, }, "InstanceofOperator.js": { - "offset": 1777870, + "offset": 1777880, "size": 930, }, "InternalizeJSONProperty.js": { - "offset": 1778800, + "offset": 1778810, "size": 2190, }, "Invoke.js": { - "offset": 1780980, + "offset": 1780990, "size": 680, }, "IsAccessorDescriptor.js": { - "offset": 1781650, + "offset": 1781660, "size": 560, }, "IsArray.js": { - "offset": 1782210, + "offset": 1782220, "size": 120, }, "IsArrayBufferViewOutOfBounds.js": { - "offset": 1782330, + "offset": 1782340, "size": 1050, }, "IsBigIntElementType.js": { - "offset": 1783370, + "offset": 1783380, "size": 200, }, "IsCallable.js": { - "offset": 1783570, + "offset": 1783580, "size": 110, }, "IsCompatiblePropertyDescriptor.js": { - "offset": 1783670, + "offset": 1783690, "size": 370, }, "IsConcatSpreadable.js": { - "offset": 1784030, + "offset": 1784050, "size": 640, }, "IsConstructor.js": { - "offset": 1784670, + "offset": 1784680, "size": 1150, }, "IsDataDescriptor.js": { - "offset": 1785810, + "offset": 1785830, "size": 570, }, "IsDetachedBuffer.js": { - "offset": 1786380, + "offset": 1786390, "size": 1000, }, "IsExtensible.js": { - "offset": 1787370, + "offset": 1787390, "size": 510, }, "IsFixedLengthArrayBuffer.js": { - "offset": 1787880, + "offset": 1787890, "size": 960, }, "IsGenericDescriptor.js": { - "offset": 1788830, + "offset": 1788850, "size": 660, }, "IsIntegralNumber.js": { - "offset": 1789490, + "offset": 1789500, "size": 360, }, "IsLessThan.js": { - "offset": 1789840, + "offset": 1789860, "size": 2760, }, "IsLooselyEqual.js": { - "offset": 1792600, + "offset": 1792610, "size": 1800, }, "IsNoTearConfiguration.js": { - "offset": 1794400, + "offset": 1794410, "size": 470, }, "IsPromise.js": { - "offset": 1794870, + "offset": 1794880, "size": 490, }, "IsPropertyKey.js": { - "offset": 1795350, + "offset": 1795360, "size": 230, }, "IsRegExp.js": { - "offset": 1795570, + "offset": 1795590, "size": 570, }, "IsSharedArrayBuffer.js": { - "offset": 1796140, + "offset": 1796160, "size": 430, }, "IsStrictlyEqual.js": { - "offset": 1796570, + "offset": 1796580, "size": 400, }, "IsStringWellFormedUnicode.js": { - "offset": 1796960, + "offset": 1796970, "size": 640, }, "IsTimeZoneOffsetString.js": { - "offset": 1797590, + "offset": 1797610, "size": 690, }, "IsTypedArrayOutOfBounds.js": { - "offset": 1798280, + "offset": 1798290, "size": 1970, }, "IsUnclampedIntegerElementType.js": { - "offset": 1800240, + "offset": 1800250, "size": 300, }, "IsUnsignedElementType.js": { - "offset": 1800540, + "offset": 1800550, "size": 270, }, "IsValidIntegerIndex.js": { - "offset": 1800810, + "offset": 1800820, "size": 1400, }, "IsViewOutOfBounds.js": { - "offset": 1802200, + "offset": 1802210, "size": 1730, }, "IsWordChar.js": { - "offset": 1803930, + "offset": 1803940, "size": 1170, }, "IteratorClose.js": { - "offset": 1805090, + "offset": 1805100, "size": 2390, }, "IteratorComplete.js": { - "offset": 1807480, + "offset": 1807490, "size": 460, }, "IteratorNext.js": { - "offset": 1807940, + "offset": 1807950, "size": 900, }, "IteratorStep.js": { - "offset": 1808830, + "offset": 1808840, "size": 660, }, "IteratorStepValue.js": { - "offset": 1809490, + "offset": 1809500, "size": 1190, }, "IteratorToList.js": { - "offset": 1810680, + "offset": 1810690, "size": 790, }, "IteratorValue.js": { - "offset": 1811460, + "offset": 1811470, "size": 410, }, "KeyForSymbol.js": { - "offset": 1811860, + "offset": 1811880, "size": 390, }, "LengthOfArrayLike.js": { - "offset": 1812250, + "offset": 1812260, "size": 470, }, "MakeDataViewWithBufferWitnessRecord.js": { - "offset": 1812710, + "offset": 1812720, "size": 940, }, "MakeDate.js": { - "offset": 1813650, + "offset": 1813660, "size": 340, }, "MakeDay.js": { - "offset": 1813980, + "offset": 1813990, "size": 1020, }, "MakeFullYear.js": { - "offset": 1814990, + "offset": 1815000, "size": 600, }, "MakeMatchIndicesIndexPairArray.js": { - "offset": 1815590, + "offset": 1815600, "size": 2710, }, "MakeTime.js": { - "offset": 1818300, + "offset": 1818310, "size": 770, }, "MakeTypedArrayWithBufferWitnessRecord.js": { - "offset": 1819070, + "offset": 1819080, "size": 940, }, "MinFromTime.js": { - "offset": 1820000, + "offset": 1820010, "size": 400, }, "MonthFromTime.js": { - "offset": 1820400, + "offset": 1820410, "size": 1130, }, "NewPromiseCapability.js": { - "offset": 1821530, + "offset": 1821540, "size": 1230, }, "NormalCompletion.js": { - "offset": 1822760, + "offset": 1822770, "size": 240, }, "Number": { "files": { "add.js": { - "offset": 1822990, + "offset": 1823000, "size": 800, }, "bitwiseAND.js": { - "offset": 1823790, + "offset": 1823800, "size": 430, }, "bitwiseNOT.js": { - "offset": 1824220, + "offset": 1824230, "size": 500, }, "bitwiseOR.js": { - "offset": 1824720, + "offset": 1824730, "size": 430, }, "bitwiseXOR.js": { - "offset": 1825140, + "offset": 1825150, "size": 430, }, "divide.js": { - "offset": 1825570, + "offset": 1825580, "size": 570, }, "equal.js": { - "offset": 1826130, + "offset": 1826140, "size": 480, }, "exponentiate.js": { - "offset": 1826610, + "offset": 1826620, "size": 1740, }, "index.js": { - "offset": 1828350, + "offset": 1828360, "size": 1280, }, "leftShift.js": { - "offset": 1829630, + "offset": 1829640, "size": 570, }, "lessThan.js": { - "offset": 1830190, + "offset": 1830200, "size": 570, }, "multiply.js": { - "offset": 1830750, + "offset": 1830760, "size": 770, }, "remainder.js": { - "offset": 1831520, + "offset": 1831530, "size": 1220, }, "sameValue.js": { - "offset": 1832740, + "offset": 1832750, "size": 570, }, "sameValueZero.js": { - "offset": 1833310, + "offset": 1833320, "size": 500, }, "signedRightShift.js": { - "offset": 1833810, + "offset": 1833820, "size": 580, }, "subtract.js": { - "offset": 1834380, + "offset": 1834390, "size": 460, }, "toString.js": { - "offset": 1834840, + "offset": 1834850, "size": 650, }, "unaryMinus.js": { - "offset": 1835490, + "offset": 1835500, "size": 400, }, "unsignedRightShift.js": { - "offset": 1835880, + "offset": 1835890, "size": 590, }, }, }, "NumberBitwiseOp.js": { - "offset": 1836460, + "offset": 1836470, "size": 690, }, "NumberToBigInt.js": { - "offset": 1837140, + "offset": 1837150, "size": 800, }, "NumericToRawBytes.js": { - "offset": 1837930, + "offset": 1837940, "size": 2030, }, "ObjectDefineProperties.js": { - "offset": 1839960, + "offset": 1839970, "size": 1280, }, "OrdinaryCreateFromConstructor.js": { - "offset": 1841230, + "offset": 1841240, "size": 830, }, "OrdinaryDefineOwnProperty.js": { - "offset": 1842060, + "offset": 1842070, "size": 2180, }, "OrdinaryGetOwnProperty.js": { - "offset": 1844230, + "offset": 1844240, "size": 1200, }, "OrdinaryGetPrototypeOf.js": { - "offset": 1845430, + "offset": 1845440, "size": 500, }, "OrdinaryHasInstance.js": { - "offset": 1845920, + "offset": 1845930, "size": 580, }, "OrdinaryHasProperty.js": { - "offset": 1846490, + "offset": 1846500, "size": 510, }, "OrdinaryObjectCreate.js": { - "offset": 1846990, + "offset": 1847010, "size": 1630, }, "OrdinarySetPrototypeOf.js": { - "offset": 1848620, + "offset": 1848630, "size": 1000, }, "OrdinaryToPrimitive.js": { - "offset": 1849620, + "offset": 1849630, "size": 1030, }, "ParseHexOctet.js": { - "offset": 1850640, + "offset": 1850650, "size": 1330, }, "PromiseResolve.js": { - "offset": 1851970, + "offset": 1851980, "size": 510, }, "QuoteJSONString.js": { - "offset": 1852480, + "offset": 1852490, "size": 1430, }, "RawBytesToNumeric.js": { - "offset": 1853900, + "offset": 1853910, "size": 2340, }, "RegExpCreate.js": { - "offset": 1856240, + "offset": 1856250, "size": 650, }, "RegExpExec.js": { - "offset": 1856880, + "offset": 1856890, "size": 830, }, "RegExpHasFlag.js": { - "offset": 1857710, + "offset": 1857720, "size": 1110, }, "RequireObjectCoercible.js": { - "offset": 1858820, + "offset": 1858830, "size": 90, }, "SameValue.js": { - "offset": 1858900, + "offset": 1858910, "size": 320, }, "SameValueNonNumber.js": { - "offset": 1859210, + "offset": 1859220, "size": 540, }, "SameValueZero.js": { - "offset": 1859740, + "offset": 1859760, "size": 230, }, "SecFromTime.js": { - "offset": 1859970, + "offset": 1859980, "size": 410, }, "Set.js": { - "offset": 1860370, + "offset": 1860380, "size": 1230, }, "SetFunctionLength.js": { - "offset": 1861600, + "offset": 1861610, "size": 1020, }, "SetFunctionName.js": { - "offset": 1862610, + "offset": 1862630, "size": 1290, }, "SetIntegrityLevel.js": { - "offset": 1863900, + "offset": 1863910, "size": 1840, }, "SetTypedArrayFromArrayLike.js": { - "offset": 1865740, + "offset": 1865750, "size": 2200, }, "SetTypedArrayFromTypedArray.js": { - "offset": 1867930, + "offset": 1867950, "size": 5280, }, "SetValueInBuffer.js": { - "offset": 1873210, + "offset": 1873230, "size": 4160, }, "SortIndexedProperties.js": { - "offset": 1877370, + "offset": 1877380, "size": 1520, }, "SpeciesConstructor.js": { - "offset": 1878890, + "offset": 1878900, "size": 850, }, "StringCreate.js": { - "offset": 1879730, + "offset": 1879740, "size": 1080, }, "StringGetOwnProperty.js": { - "offset": 1880810, + "offset": 1880820, "size": 1380, }, "StringIndexOf.js": { - "offset": 1882180, + "offset": 1882190, "size": 1030, }, "StringPad.js": { - "offset": 1883200, + "offset": 1883220, "size": 1570, }, "StringPaddingBuiltinsImpl.js": { - "offset": 1884770, + "offset": 1884780, "size": 880, }, "StringToBigInt.js": { - "offset": 1885650, + "offset": 1885660, "size": 590, }, "StringToCodePoints.js": { - "offset": 1886240, + "offset": 1886250, "size": 600, }, "StringToNumber.js": { - "offset": 1886830, + "offset": 1886840, "size": 1270, }, "SymbolDescriptiveString.js": { - "offset": 1888090, + "offset": 1888100, "size": 440, }, "SystemTimeZoneIdentifier.js": { - "offset": 1888530, + "offset": 1888540, "size": 530, }, "TestIntegrityLevel.js": { - "offset": 1889060, + "offset": 1889070, "size": 1210, }, "ThisBigIntValue.js": { - "offset": 1890260, + "offset": 1890270, "size": 460, }, "ThisBooleanValue.js": { - "offset": 1890720, + "offset": 1890730, "size": 330, }, "ThisNumberValue.js": { - "offset": 1891040, + "offset": 1891050, "size": 320, }, "ThisStringValue.js": { - "offset": 1891360, + "offset": 1891370, "size": 320, }, "ThisSymbolValue.js": { - "offset": 1891680, + "offset": 1891690, "size": 530, }, "ThrowCompletion.js": { - "offset": 1892210, + "offset": 1892220, "size": 240, }, "TimeClip.js": { - "offset": 1892450, + "offset": 1892460, "size": 440, }, "TimeFromYear.js": { - "offset": 1892890, + "offset": 1892900, "size": 270, }, "TimeString.js": { - "offset": 1893150, + "offset": 1893160, "size": 830, }, "TimeWithinDay.js": { - "offset": 1893970, + "offset": 1893980, "size": 250, }, "TimeZoneString.js": { - "offset": 1894220, + "offset": 1894230, "size": 1970, }, "ToBigInt.js": { - "offset": 1896180, + "offset": 1896190, "size": 1280, }, "ToBigInt64.js": { - "offset": 1897450, + "offset": 1897460, "size": 960, }, "ToBigUint64.js": { - "offset": 1898400, + "offset": 1898410, "size": 710, }, "ToBoolean.js": { - "offset": 1899110, + "offset": 1899120, "size": 130, }, "ToDateString.js": { - "offset": 1899240, + "offset": 1899250, "size": 520, }, "ToIndex.js": { - "offset": 1899760, + "offset": 1899770, "size": 540, }, "ToInt16.js": { - "offset": 1900290, + "offset": 1900310, "size": 550, }, "ToInt32.js": { - "offset": 1900830, + "offset": 1900850, "size": 700, }, "ToInt8.js": { - "offset": 1901530, + "offset": 1901540, "size": 500, }, "ToIntegerOrInfinity.js": { - "offset": 1902020, + "offset": 1902030, "size": 480, }, "ToLength.js": { - "offset": 1902490, + "offset": 1902500, "size": 440, }, "ToNumber.js": { - "offset": 1902930, + "offset": 1902940, "size": 800, }, "ToNumeric.js": { - "offset": 1903720, + "offset": 1903730, "size": 530, }, "ToObject.js": { - "offset": 1904240, + "offset": 1904250, "size": 130, }, "ToPrimitive.js": { - "offset": 1904370, + "offset": 1904380, "size": 290, }, "ToPropertyDescriptor.js": { - "offset": 1904650, + "offset": 1904660, "size": 1460, }, "ToPropertyKey.js": { - "offset": 1906100, + "offset": 1906120, "size": 400, }, "ToString.js": { - "offset": 1906500, + "offset": 1906520, "size": 390, }, "ToUint16.js": { - "offset": 1906890, + "offset": 1906910, "size": 590, }, "ToUint32.js": { - "offset": 1907480, + "offset": 1907490, "size": 600, }, "ToUint8.js": { - "offset": 1908070, + "offset": 1908080, "size": 460, }, "ToUint8Clamp.js": { - "offset": 1908530, + "offset": 1908540, "size": 610, }, "ToZeroPaddedDecimalString.js": { - "offset": 1909140, + "offset": 1909150, "size": 580, }, "TrimString.js": { - "offset": 1909710, + "offset": 1909720, "size": 760, }, "Type.js": { - "offset": 1910470, + "offset": 1910480, "size": 300, }, "TypedArrayByteLength.js": { - "offset": 1910760, + "offset": 1910770, "size": 1340, }, "TypedArrayCreateFromConstructor.js": { - "offset": 1912100, + "offset": 1912110, "size": 1950, }, "TypedArrayCreateSameType.js": { - "offset": 1914040, + "offset": 1914060, "size": 1280, }, "TypedArrayElementSize.js": { - "offset": 1915320, + "offset": 1915330, "size": 720, }, "TypedArrayElementType.js": { - "offset": 1916040, + "offset": 1916050, "size": 650, }, "TypedArrayGetElement.js": { - "offset": 1916690, + "offset": 1916700, "size": 1240, }, "TypedArrayLength.js": { - "offset": 1917920, + "offset": 1917930, "size": 1700, }, "TypedArraySetElement.js": { - "offset": 1919610, + "offset": 1919620, "size": 1530, }, "TypedArraySpeciesCreate.js": { - "offset": 1921140, + "offset": 1921150, "size": 1420, }, "UTF16EncodeCodePoint.js": { - "offset": 1922550, + "offset": 1922570, "size": 710, }, "UTF16SurrogatePairToCodePoint.js": { - "offset": 1923260, + "offset": 1923270, "size": 780, }, "UnicodeEscape.js": { - "offset": 1924040, + "offset": 1924050, "size": 790, }, "ValidateAndApplyPropertyDescriptor.js": { - "offset": 1924820, + "offset": 1924830, "size": 5740, }, "ValidateAtomicAccess.js": { - "offset": 1930560, + "offset": 1930570, "size": 1330, }, "ValidateAtomicAccessOnIntegerTypedArray.js": { - "offset": 1931890, + "offset": 1931900, "size": 690, }, "ValidateIntegerTypedArray.js": { - "offset": 1932570, + "offset": 1932580, "size": 1300, }, "ValidateTypedArray.js": { - "offset": 1933860, + "offset": 1933870, "size": 1060, }, "WeakRefDeref.js": { - "offset": 1934920, + "offset": 1934930, "size": 570, }, "WeekDay.js": { - "offset": 1935480, + "offset": 1935490, "size": 210, }, "WordCharacters.js": { - "offset": 1935690, + "offset": 1935700, "size": 1620, }, "YearFromTime.js": { - "offset": 1937310, + "offset": 1937320, "size": 400, }, "abs.js": { - "offset": 1937710, + "offset": 1937720, "size": 220, }, "clamp.js": { - "offset": 1937920, + "offset": 1937940, "size": 510, }, "floor.js": { - "offset": 1938430, + "offset": 1938440, "size": 290, }, "max.js": { - "offset": 1938720, + "offset": 1938730, "size": 140, }, "min.js": { - "offset": 1938850, + "offset": 1938860, "size": 140, }, "modulo.js": { - "offset": 1938990, + "offset": 1939000, "size": 170, }, "msFromTime.js": { - "offset": 1939150, + "offset": 1939170, "size": 260, }, "substring.js": { - "offset": 1939410, + "offset": 1939420, "size": 640, }, "tables": { "files": { "typed-array-objects.js": { - "offset": 1940050, + "offset": 1940060, "size": 780, }, }, }, "truncate.js": { - "offset": 1940820, + "offset": 1940830, "size": 470, }, }, @@ -18268,1219 +18268,1219 @@ exports[`node_module collectors > pnpm max stack 2`] = ` "2025": { "files": { "AddEntriesFromIterable.js": { - "offset": 1941280, + "offset": 1941290, "size": 1430, }, "AddToKeptObjects.js": { - "offset": 1942700, + "offset": 1942720, "size": 540, }, "AddValueToKeyedGroup.js": { - "offset": 1943240, + "offset": 1943250, "size": 1300, }, "AdvanceStringIndex.js": { - "offset": 1944530, + "offset": 1944550, "size": 940, }, "AllCharacters.js": { - "offset": 1945470, + "offset": 1945480, "size": 1140, }, "ApplyStringOrNumericBinaryOperator.js": { - "offset": 1946600, + "offset": 1946620, "size": 3140, }, "ArrayBufferByteLength.js": { - "offset": 1949740, + "offset": 1949750, "size": 1780, }, "ArrayBufferCopyAndDetach.js": { - "offset": 1951510, + "offset": 1951530, "size": 3910, }, "ArrayCreate.js": { - "offset": 1955420, + "offset": 1955430, "size": 1430, }, "ArraySetLength.js": { - "offset": 1956840, + "offset": 1956850, "size": 2430, }, "ArraySpeciesCreate.js": { - "offset": 1959260, + "offset": 1959270, "size": 1370, }, "AsyncFromSyncIteratorContinuation.js": { - "offset": 1960630, + "offset": 1960640, "size": 1540, }, "AsyncIteratorClose.js": { - "offset": 1962160, + "offset": 1962180, "size": 1940, }, "BigInt": { "files": { "add.js": { - "offset": 1964100, + "offset": 1964110, "size": 390, }, "bitwiseAND.js": { - "offset": 1964480, + "offset": 1964490, "size": 430, }, "bitwiseNOT.js": { - "offset": 1964900, + "offset": 1964920, "size": 420, }, "bitwiseOR.js": { - "offset": 1965320, + "offset": 1965330, "size": 430, }, "bitwiseXOR.js": { - "offset": 1965740, + "offset": 1965760, "size": 430, }, "divide.js": { - "offset": 1966170, + "offset": 1966180, "size": 600, }, "equal.js": { - "offset": 1966770, + "offset": 1966780, "size": 390, }, "exponentiate.js": { - "offset": 1967150, + "offset": 1967170, "size": 860, }, "index.js": { - "offset": 1968010, + "offset": 1968020, "size": 1140, }, "leftShift.js": { - "offset": 1969140, + "offset": 1969150, "size": 400, }, "lessThan.js": { - "offset": 1969530, + "offset": 1969540, "size": 400, }, "multiply.js": { - "offset": 1969920, + "offset": 1969940, "size": 400, }, "remainder.js": { - "offset": 1970310, + "offset": 1970330, "size": 680, }, "signedRightShift.js": { - "offset": 1970990, + "offset": 1971000, "size": 430, }, "subtract.js": { - "offset": 1971410, + "offset": 1971430, "size": 400, }, "toString.js": { - "offset": 1971810, + "offset": 1971820, "size": 790, }, "unaryMinus.js": { - "offset": 1972590, + "offset": 1972600, "size": 480, }, "unsignedRightShift.js": { - "offset": 1973070, + "offset": 1973080, "size": 440, }, }, }, "BigIntBitwiseOp.js": { - "offset": 1973500, + "offset": 1973510, "size": 1670, }, "BinaryAnd.js": { - "offset": 1975160, + "offset": 1975170, "size": 320, }, "BinaryOr.js": { - "offset": 1975480, + "offset": 1975490, "size": 320, }, "BinaryXor.js": { - "offset": 1975790, + "offset": 1975800, "size": 320, }, "ByteListBitwiseOp.js": { - "offset": 1976110, + "offset": 1976120, "size": 1190, }, "ByteListEqual.js": { - "offset": 1977290, + "offset": 1977300, "size": 860, }, "Call.js": { - "offset": 1978150, + "offset": 1978160, "size": 610, }, "CanBeHeldWeakly.js": { - "offset": 1978750, + "offset": 1978770, "size": 410, }, "CanonicalNumericIndexString.js": { - "offset": 1979160, + "offset": 1979170, "size": 580, }, "Canonicalize.js": { - "offset": 1979730, + "offset": 1979740, "size": 1240, }, "CanonicalizeKeyedCollectionKey.js": { - "offset": 1980970, + "offset": 1980980, "size": 200, }, "CharacterComplement.js": { - "offset": 1981160, + "offset": 1981170, "size": 890, }, "CharacterRange.js": { - "offset": 1982040, + "offset": 1982060, "size": 1200, }, "ClearKeptObjects.js": { - "offset": 1983240, + "offset": 1983250, "size": 300, }, "CloneArrayBuffer.js": { - "offset": 1983540, + "offset": 1983550, "size": 1900, }, "CodePointAt.js": { - "offset": 1985440, + "offset": 1985450, "size": 1650, }, "CodePointsToString.js": { - "offset": 1987090, + "offset": 1987100, "size": 740, }, "CompareArrayElements.js": { - "offset": 1987820, + "offset": 1987830, "size": 1280, }, "CompareTypedArrayElements.js": { - "offset": 1989100, + "offset": 1989110, "size": 1360, }, "CompletePropertyDescriptor.js": { - "offset": 1990450, + "offset": 1990470, "size": 1110, }, "CompletionRecord.js": { - "offset": 1991560, + "offset": 1991580, "size": 1360, }, "CopyDataProperties.js": { - "offset": 1992920, + "offset": 1992930, "size": 1990, }, "CreateAsyncFromSyncIterator.js": { - "offset": 1994910, + "offset": 1994920, "size": 4550, }, "CreateDataProperty.js": { - "offset": 1999450, + "offset": 1999460, "size": 730, }, "CreateDataPropertyOrThrow.js": { - "offset": 2000180, + "offset": 2000190, "size": 690, }, "CreateHTML.js": { - "offset": 2000860, + "offset": 2000870, "size": 840, }, "CreateIteratorFromClosure.js": { - "offset": 2001700, + "offset": 2001710, "size": 2030, }, "CreateIteratorResultObject.js": { - "offset": 2003720, + "offset": 2003730, "size": 360, }, "CreateListFromArrayLike.js": { - "offset": 2004070, + "offset": 2004090, "size": 1280, }, "CreateNonEnumerableDataPropertyOrThrow.js": { - "offset": 2005350, + "offset": 2005360, "size": 760, }, "CreateRegExpStringIterator.js": { - "offset": 2006110, + "offset": 2006120, "size": 3450, }, "DateFromTime.js": { - "offset": 2009550, + "offset": 2009560, "size": 990, }, "DateString.js": { - "offset": 2010540, + "offset": 2010550, "size": 990, }, "Day.js": { - "offset": 2011520, + "offset": 2011530, "size": 240, }, "DayFromYear.js": { - "offset": 2011760, + "offset": 2011770, "size": 260, }, "DayWithinYear.js": { - "offset": 2012010, + "offset": 2012020, "size": 290, }, "DaysInYear.js": { - "offset": 2012300, + "offset": 2012310, "size": 310, }, "DefineMethodProperty.js": { - "offset": 2012600, + "offset": 2012610, "size": 1510, }, "DefinePropertyOrThrow.js": { - "offset": 2014100, + "offset": 2014120, "size": 1170, }, "DeletePropertyOrThrow.js": { - "offset": 2015270, + "offset": 2015290, "size": 670, }, "DetachArrayBuffer.js": { - "offset": 2015940, + "offset": 2015950, "size": 1720, }, "EncodeForRegExpEscape.js": { - "offset": 2017650, + "offset": 2017660, "size": 2100, }, "EnumerableOwnProperties.js": { - "offset": 2019740, + "offset": 2019760, "size": 1010, }, "FindViaPredicate.js": { - "offset": 2020750, + "offset": 2020760, "size": 1540, }, "FlattenIntoArray.js": { - "offset": 2022280, + "offset": 2022290, "size": 1680, }, "FromPropertyDescriptor.js": { - "offset": 2023960, + "offset": 2023970, "size": 540, }, "GeneratorResume.js": { - "offset": 2024500, + "offset": 2024510, "size": 920, }, "GeneratorResumeAbrupt.js": { - "offset": 2025410, + "offset": 2025420, "size": 1970, }, "GeneratorStart.js": { - "offset": 2027380, + "offset": 2027390, "size": 1630, }, "GeneratorValidate.js": { - "offset": 2029000, + "offset": 2029010, "size": 770, }, "Get.js": { - "offset": 2029770, + "offset": 2029780, "size": 570, }, "GetArrayBufferMaxByteLengthOption.js": { - "offset": 2030340, + "offset": 2030350, "size": 540, }, "GetGlobalObject.js": { - "offset": 2030870, + "offset": 2030880, "size": 200, }, "GetIterator.js": { - "offset": 2031060, + "offset": 2031080, "size": 1750, }, "GetIteratorDirect.js": { - "offset": 2032810, + "offset": 2032820, "size": 560, }, "GetIteratorFlattenable.js": { - "offset": 2033360, + "offset": 2033370, "size": 1460, }, "GetIteratorFromMethod.js": { - "offset": 2034810, + "offset": 2034820, "size": 740, }, "GetMatchIndexPair.js": { - "offset": 2035550, + "offset": 2035560, "size": 840, }, "GetMatchString.js": { - "offset": 2036390, + "offset": 2036400, "size": 890, }, "GetMethod.js": { - "offset": 2037270, + "offset": 2037280, "size": 690, }, "GetNamedTimeZoneEpochNanoseconds.js": { - "offset": 2037950, + "offset": 2037970, "size": 2430, }, "GetOwnPropertyKeys.js": { - "offset": 2040380, + "offset": 2040390, "size": 840, }, "GetPromiseResolve.js": { - "offset": 2041210, + "offset": 2041220, "size": 640, }, "GetPrototypeFromConstructor.js": { - "offset": 2041850, + "offset": 2041860, "size": 1080, }, "GetSetRecord.js": { - "offset": 2042930, + "offset": 2042940, "size": 1710, }, "GetStringIndex.js": { - "offset": 2044640, + "offset": 2044650, "size": 760, }, "GetSubstitution.js": { - "offset": 2045400, + "offset": 2045410, "size": 5980, }, "GetUTCEpochNanoseconds.js": { - "offset": 2051370, + "offset": 2051390, "size": 2560, }, "GetV.js": { - "offset": 2053930, + "offset": 2053940, "size": 500, }, "GetValueFromBuffer.js": { - "offset": 2054420, + "offset": 2054440, "size": 4530, }, "GetViewByteLength.js": { - "offset": 2058950, + "offset": 2058960, "size": 1580, }, "GroupBy.js": { - "offset": 2060530, + "offset": 2060540, "size": 2390, }, "HasEitherUnicodeFlag.js": { - "offset": 2062920, + "offset": 2062930, "size": 520, }, "HasOwnProperty.js": { - "offset": 2063430, + "offset": 2063450, "size": 540, }, "HasProperty.js": { - "offset": 2063970, + "offset": 2063980, "size": 490, }, "HourFromTime.js": { - "offset": 2064450, + "offset": 2064460, "size": 390, }, "IfAbruptCloseIterator.js": { - "offset": 2064830, + "offset": 2064850, "size": 580, }, "InLeapYear.js": { - "offset": 2065410, + "offset": 2065420, "size": 470, }, "InstallErrorCause.js": { - "offset": 2065870, + "offset": 2065880, "size": 670, }, "InstanceofOperator.js": { - "offset": 2066530, + "offset": 2066540, "size": 930, }, "InternalizeJSONProperty.js": { - "offset": 2067460, + "offset": 2067470, "size": 2190, }, "Invoke.js": { - "offset": 2069640, + "offset": 2069650, "size": 680, }, "IsAccessorDescriptor.js": { - "offset": 2070310, + "offset": 2070320, "size": 560, }, "IsArray.js": { - "offset": 2070870, + "offset": 2070880, "size": 120, }, "IsArrayBufferViewOutOfBounds.js": { - "offset": 2070990, + "offset": 2071000, "size": 1050, }, "IsBigIntElementType.js": { - "offset": 2072030, + "offset": 2072050, "size": 200, }, "IsCallable.js": { - "offset": 2072230, + "offset": 2072240, "size": 110, }, "IsCompatiblePropertyDescriptor.js": { - "offset": 2072340, + "offset": 2072350, "size": 370, }, "IsConcatSpreadable.js": { - "offset": 2072700, + "offset": 2072710, "size": 640, }, "IsConstructor.js": { - "offset": 2073330, + "offset": 2073340, "size": 1150, }, "IsDataDescriptor.js": { - "offset": 2074480, + "offset": 2074490, "size": 570, }, "IsDetachedBuffer.js": { - "offset": 2075040, + "offset": 2075050, "size": 1000, }, "IsExtensible.js": { - "offset": 2076040, + "offset": 2076050, "size": 510, }, "IsFixedLengthArrayBuffer.js": { - "offset": 2076540, + "offset": 2076550, "size": 960, }, "IsGenericDescriptor.js": { - "offset": 2077500, + "offset": 2077510, "size": 660, }, "IsLessThan.js": { - "offset": 2078150, + "offset": 2078160, "size": 2760, }, "IsLooselyEqual.js": { - "offset": 2080910, + "offset": 2080920, "size": 1800, }, "IsNoTearConfiguration.js": { - "offset": 2082710, + "offset": 2082720, "size": 470, }, "IsPromise.js": { - "offset": 2083180, + "offset": 2083190, "size": 490, }, "IsRegExp.js": { - "offset": 2083660, + "offset": 2083670, "size": 570, }, "IsSharedArrayBuffer.js": { - "offset": 2084230, + "offset": 2084240, "size": 430, }, "IsStrictlyEqual.js": { - "offset": 2084660, + "offset": 2084670, "size": 400, }, "IsStringWellFormedUnicode.js": { - "offset": 2085050, + "offset": 2085060, "size": 640, }, "IsTimeZoneOffsetString.js": { - "offset": 2085680, + "offset": 2085700, "size": 690, }, "IsTypedArrayFixedLength.js": { - "offset": 2086370, + "offset": 2086380, "size": 940, }, "IsTypedArrayOutOfBounds.js": { - "offset": 2087300, + "offset": 2087310, "size": 1970, }, "IsUnclampedIntegerElementType.js": { - "offset": 2089270, + "offset": 2089280, "size": 300, }, "IsUnsignedElementType.js": { - "offset": 2089560, + "offset": 2089580, "size": 270, }, "IsValidIntegerIndex.js": { - "offset": 2089830, + "offset": 2089840, "size": 1400, }, "IsViewOutOfBounds.js": { - "offset": 2091220, + "offset": 2091230, "size": 1730, }, "IsWordChar.js": { - "offset": 2092950, + "offset": 2092960, "size": 1170, }, "IteratorClose.js": { - "offset": 2094120, + "offset": 2094130, "size": 2390, }, "IteratorComplete.js": { - "offset": 2096510, + "offset": 2096520, "size": 460, }, "IteratorNext.js": { - "offset": 2096960, + "offset": 2096980, "size": 1160, }, "IteratorStep.js": { - "offset": 2098120, + "offset": 2098140, "size": 1000, }, "IteratorStepValue.js": { - "offset": 2099120, + "offset": 2099130, "size": 870, }, "IteratorToList.js": { - "offset": 2099980, + "offset": 2099990, "size": 790, }, "IteratorValue.js": { - "offset": 2100770, + "offset": 2100780, "size": 410, }, "KeyForSymbol.js": { - "offset": 2101170, + "offset": 2101180, "size": 390, }, "LengthOfArrayLike.js": { - "offset": 2101550, + "offset": 2101570, "size": 470, }, "MakeDataViewWithBufferWitnessRecord.js": { - "offset": 2102020, + "offset": 2102030, "size": 940, }, "MakeDate.js": { - "offset": 2102950, + "offset": 2102960, "size": 340, }, "MakeDay.js": { - "offset": 2103290, + "offset": 2103300, "size": 1020, }, "MakeFullYear.js": { - "offset": 2104300, + "offset": 2104310, "size": 600, }, "MakeMatchIndicesIndexPairArray.js": { - "offset": 2104900, + "offset": 2104910, "size": 2710, }, "MakeTime.js": { - "offset": 2107610, + "offset": 2107620, "size": 770, }, "MakeTypedArrayWithBufferWitnessRecord.js": { - "offset": 2108370, + "offset": 2108380, "size": 940, }, "MinFromTime.js": { - "offset": 2109310, + "offset": 2109320, "size": 400, }, "MonthFromTime.js": { - "offset": 2109700, + "offset": 2109720, "size": 1130, }, "NewPromiseCapability.js": { - "offset": 2110830, + "offset": 2110840, "size": 1230, }, "NormalCompletion.js": { - "offset": 2112060, + "offset": 2112070, "size": 240, }, "Number": { "files": { "add.js": { - "offset": 2112300, + "offset": 2112310, "size": 800, }, "bitwiseAND.js": { - "offset": 2113100, + "offset": 2113110, "size": 430, }, "bitwiseNOT.js": { - "offset": 2113520, + "offset": 2113540, "size": 500, }, "bitwiseOR.js": { - "offset": 2114020, + "offset": 2114040, "size": 430, }, "bitwiseXOR.js": { - "offset": 2114450, + "offset": 2114460, "size": 430, }, "divide.js": { - "offset": 2114870, + "offset": 2114890, "size": 570, }, "equal.js": { - "offset": 2115440, + "offset": 2115450, "size": 480, }, "exponentiate.js": { - "offset": 2115920, + "offset": 2115930, "size": 1740, }, "index.js": { - "offset": 2117660, + "offset": 2117670, "size": 1280, }, "leftShift.js": { - "offset": 2118930, + "offset": 2118940, "size": 570, }, "lessThan.js": { - "offset": 2119490, + "offset": 2119500, "size": 570, }, "multiply.js": { - "offset": 2120060, + "offset": 2120070, "size": 770, }, "remainder.js": { - "offset": 2120830, + "offset": 2120840, "size": 1220, }, "sameValue.js": { - "offset": 2122050, + "offset": 2122060, "size": 570, }, "sameValueZero.js": { - "offset": 2122610, + "offset": 2122630, "size": 500, }, "signedRightShift.js": { - "offset": 2123110, + "offset": 2123120, "size": 580, }, "subtract.js": { - "offset": 2123690, + "offset": 2123700, "size": 460, }, "toString.js": { - "offset": 2124150, + "offset": 2124160, "size": 650, }, "unaryMinus.js": { - "offset": 2124790, + "offset": 2124800, "size": 400, }, "unsignedRightShift.js": { - "offset": 2125180, + "offset": 2125190, "size": 590, }, }, }, "NumberBitwiseOp.js": { - "offset": 2125760, + "offset": 2125770, "size": 690, }, "NumberToBigInt.js": { - "offset": 2126440, + "offset": 2126460, "size": 800, }, "NumericToRawBytes.js": { - "offset": 2127240, + "offset": 2127250, "size": 2190, }, "ObjectDefineProperties.js": { - "offset": 2129430, + "offset": 2129440, "size": 1280, }, "OrdinaryCreateFromConstructor.js": { - "offset": 2130700, + "offset": 2130710, "size": 830, }, "OrdinaryDefineOwnProperty.js": { - "offset": 2131530, + "offset": 2131540, "size": 2180, }, "OrdinaryGetOwnProperty.js": { - "offset": 2133700, + "offset": 2133720, "size": 1200, }, "OrdinaryGetPrototypeOf.js": { - "offset": 2134900, + "offset": 2134910, "size": 500, }, "OrdinaryHasInstance.js": { - "offset": 2135390, + "offset": 2135400, "size": 580, }, "OrdinaryHasProperty.js": { - "offset": 2135960, + "offset": 2135980, "size": 510, }, "OrdinaryObjectCreate.js": { - "offset": 2136460, + "offset": 2136480, "size": 1630, }, "OrdinarySetPrototypeOf.js": { - "offset": 2138090, + "offset": 2138100, "size": 1000, }, "OrdinaryToPrimitive.js": { - "offset": 2139090, + "offset": 2139100, "size": 1030, }, "ParseHexOctet.js": { - "offset": 2140110, + "offset": 2140120, "size": 1330, }, "PromiseResolve.js": { - "offset": 2141440, + "offset": 2141450, "size": 510, }, "QuoteJSONString.js": { - "offset": 2141950, + "offset": 2141960, "size": 1430, }, "RawBytesToNumeric.js": { - "offset": 2143370, + "offset": 2143380, "size": 2480, }, "RegExpCreate.js": { - "offset": 2145840, + "offset": 2145860, "size": 650, }, "RegExpExec.js": { - "offset": 2146490, + "offset": 2146500, "size": 830, }, "RegExpHasFlag.js": { - "offset": 2147320, + "offset": 2147330, "size": 1110, }, "RequireObjectCoercible.js": { - "offset": 2148420, + "offset": 2148430, "size": 90, }, "ReturnCompletion.js": { - "offset": 2148500, + "offset": 2148520, "size": 230, }, "SameType.js": { - "offset": 2148730, + "offset": 2148740, "size": 290, }, "SameValue.js": { - "offset": 2149010, + "offset": 2149020, "size": 320, }, "SameValueNonNumber.js": { - "offset": 2149320, + "offset": 2149330, "size": 540, }, "SameValueZero.js": { - "offset": 2149860, + "offset": 2149870, "size": 230, }, "SecFromTime.js": { - "offset": 2150080, + "offset": 2150090, "size": 410, }, "Set.js": { - "offset": 2150480, + "offset": 2150490, "size": 1230, }, "SetDataHas.js": { - "offset": 2151710, + "offset": 2151720, "size": 760, }, "SetDataIndex.js": { - "offset": 2152460, + "offset": 2152480, "size": 860, }, "SetDataSize.js": { - "offset": 2153320, + "offset": 2153330, "size": 690, }, "SetFunctionLength.js": { - "offset": 2154010, + "offset": 2154020, "size": 1020, }, "SetFunctionName.js": { - "offset": 2155030, + "offset": 2155040, "size": 1290, }, "SetIntegrityLevel.js": { - "offset": 2156320, + "offset": 2156330, "size": 1840, }, "SetTypedArrayFromArrayLike.js": { - "offset": 2158150, + "offset": 2158160, "size": 2200, }, "SetTypedArrayFromTypedArray.js": { - "offset": 2160350, + "offset": 2160360, "size": 5280, }, "SetValueInBuffer.js": { - "offset": 2165630, + "offset": 2165640, "size": 4160, }, "SetterThatIgnoresPrototypeProperties.js": { - "offset": 2169790, + "offset": 2169800, "size": 1250, }, "SortIndexedProperties.js": { - "offset": 2171030, + "offset": 2171040, "size": 1520, }, "SpeciesConstructor.js": { - "offset": 2172550, + "offset": 2172560, "size": 850, }, "StringCreate.js": { - "offset": 2173390, + "offset": 2173400, "size": 1080, }, "StringGetOwnProperty.js": { - "offset": 2174470, + "offset": 2174480, "size": 1380, }, "StringIndexOf.js": { - "offset": 2175840, + "offset": 2175850, "size": 1110, }, "StringLastIndexOf.js": { - "offset": 2176950, + "offset": 2176960, "size": 1100, }, "StringPad.js": { - "offset": 2178050, + "offset": 2178060, "size": 1570, }, "StringPaddingBuiltinsImpl.js": { - "offset": 2179610, + "offset": 2179630, "size": 880, }, "StringToBigInt.js": { - "offset": 2180490, + "offset": 2180500, "size": 590, }, "StringToCodePoints.js": { - "offset": 2181080, + "offset": 2181090, "size": 600, }, "StringToNumber.js": { - "offset": 2181670, + "offset": 2181680, "size": 1270, }, "SymbolDescriptiveString.js": { - "offset": 2182930, + "offset": 2182950, "size": 440, }, "SystemTimeZoneIdentifier.js": { - "offset": 2183370, + "offset": 2183380, "size": 530, }, "TestIntegrityLevel.js": { - "offset": 2183900, + "offset": 2183910, "size": 1210, }, "ThisBigIntValue.js": { - "offset": 2185100, + "offset": 2185120, "size": 460, }, "ThisBooleanValue.js": { - "offset": 2185560, + "offset": 2185570, "size": 330, }, "ThisNumberValue.js": { - "offset": 2185880, + "offset": 2185900, "size": 320, }, "ThisStringValue.js": { - "offset": 2186200, + "offset": 2186220, "size": 320, }, "ThisSymbolValue.js": { - "offset": 2186520, + "offset": 2186530, "size": 530, }, "ThrowCompletion.js": { - "offset": 2187050, + "offset": 2187060, "size": 240, }, "TimeClip.js": { - "offset": 2187290, + "offset": 2187300, "size": 440, }, "TimeFromYear.js": { - "offset": 2187730, + "offset": 2187740, "size": 270, }, "TimeString.js": { - "offset": 2187990, + "offset": 2188000, "size": 830, }, "TimeWithinDay.js": { - "offset": 2188810, + "offset": 2188820, "size": 250, }, "TimeZoneString.js": { - "offset": 2189060, + "offset": 2189070, "size": 1970, }, "ToBigInt.js": { - "offset": 2191020, + "offset": 2191030, "size": 1280, }, "ToBigInt64.js": { - "offset": 2192290, + "offset": 2192300, "size": 960, }, "ToBigUint64.js": { - "offset": 2193240, + "offset": 2193260, "size": 710, }, "ToBoolean.js": { - "offset": 2193950, + "offset": 2193960, "size": 130, }, "ToDateString.js": { - "offset": 2194080, + "offset": 2194090, "size": 520, }, "ToIndex.js": { - "offset": 2194600, + "offset": 2194610, "size": 540, }, "ToInt16.js": { - "offset": 2195140, + "offset": 2195150, "size": 550, }, "ToInt32.js": { - "offset": 2195680, + "offset": 2195690, "size": 700, }, "ToInt8.js": { - "offset": 2196370, + "offset": 2196380, "size": 500, }, "ToIntegerOrInfinity.js": { - "offset": 2196860, + "offset": 2196870, "size": 480, }, "ToLength.js": { - "offset": 2197330, + "offset": 2197340, "size": 440, }, "ToNumber.js": { - "offset": 2197770, + "offset": 2197780, "size": 800, }, "ToNumeric.js": { - "offset": 2198560, + "offset": 2198570, "size": 530, }, "ToObject.js": { - "offset": 2199080, + "offset": 2199100, "size": 130, }, "ToPrimitive.js": { - "offset": 2199210, + "offset": 2199220, "size": 290, }, "ToPropertyDescriptor.js": { - "offset": 2199490, + "offset": 2199500, "size": 1460, }, "ToPropertyKey.js": { - "offset": 2200950, + "offset": 2200960, "size": 400, }, "ToString.js": { - "offset": 2201350, + "offset": 2201360, "size": 390, }, "ToUint16.js": { - "offset": 2201740, + "offset": 2201750, "size": 590, }, "ToUint32.js": { - "offset": 2202320, + "offset": 2202330, "size": 600, }, "ToUint8.js": { - "offset": 2202910, + "offset": 2202930, "size": 460, }, "ToUint8Clamp.js": { - "offset": 2203370, + "offset": 2203380, "size": 610, }, "ToZeroPaddedDecimalString.js": { - "offset": 2203980, + "offset": 2203990, "size": 580, }, "TrimString.js": { - "offset": 2204550, + "offset": 2204560, "size": 760, }, "TypedArrayByteLength.js": { - "offset": 2205310, + "offset": 2205320, "size": 1340, }, "TypedArrayCreateFromConstructor.js": { - "offset": 2206650, + "offset": 2206660, "size": 1950, }, "TypedArrayCreateSameType.js": { - "offset": 2208590, + "offset": 2208600, "size": 1280, }, "TypedArrayElementSize.js": { - "offset": 2209870, + "offset": 2209880, "size": 720, }, "TypedArrayElementType.js": { - "offset": 2210590, + "offset": 2210600, "size": 650, }, "TypedArrayGetElement.js": { - "offset": 2211230, + "offset": 2211240, "size": 1240, }, "TypedArrayLength.js": { - "offset": 2212460, + "offset": 2212470, "size": 1700, }, "TypedArraySetElement.js": { - "offset": 2214160, + "offset": 2214170, "size": 1530, }, "TypedArraySpeciesCreate.js": { - "offset": 2215680, + "offset": 2215690, "size": 1420, }, "UTF16EncodeCodePoint.js": { - "offset": 2217100, + "offset": 2217110, "size": 710, }, "UTF16SurrogatePairToCodePoint.js": { - "offset": 2217800, + "offset": 2217820, "size": 780, }, "UnicodeEscape.js": { - "offset": 2218580, + "offset": 2218600, "size": 790, }, "UpdateModifiers.js": { - "offset": 2219370, + "offset": 2219380, "size": 2100, }, "ValidateAndApplyPropertyDescriptor.js": { - "offset": 2221460, + "offset": 2221470, "size": 5740, }, "ValidateAtomicAccess.js": { - "offset": 2227200, + "offset": 2227210, "size": 1330, }, "ValidateAtomicAccessOnIntegerTypedArray.js": { - "offset": 2228520, + "offset": 2228540, "size": 690, }, "ValidateIntegerTypedArray.js": { - "offset": 2229210, + "offset": 2229220, "size": 1300, }, "ValidateTypedArray.js": { - "offset": 2230500, + "offset": 2230510, "size": 1060, }, "WeakRefDeref.js": { - "offset": 2231550, + "offset": 2231570, "size": 570, }, "WeekDay.js": { - "offset": 2232120, + "offset": 2232130, "size": 210, }, "WordCharacters.js": { - "offset": 2232330, + "offset": 2232340, "size": 1620, }, "YearFromTime.js": { - "offset": 2233950, + "offset": 2233960, "size": 400, }, "abs.js": { - "offset": 2234340, + "offset": 2234360, "size": 220, }, "clamp.js": { - "offset": 2234560, + "offset": 2234570, "size": 510, }, "floor.js": { - "offset": 2235070, + "offset": 2235080, "size": 290, }, "max.js": { - "offset": 2235360, + "offset": 2235370, "size": 140, }, "min.js": { - "offset": 2235490, + "offset": 2235500, "size": 140, }, "modulo.js": { - "offset": 2235620, + "offset": 2235640, "size": 170, }, "msFromTime.js": { - "offset": 2235790, + "offset": 2235800, "size": 260, }, "substring.js": { - "offset": 2236040, + "offset": 2236060, "size": 640, }, "tables": { "files": { "typed-array-objects.js": { - "offset": 2236680, + "offset": 2236690, "size": 830, }, }, }, "truncate.js": { - "offset": 2237510, + "offset": 2237520, "size": 470, }, }, @@ -19488,601 +19488,601 @@ exports[`node_module collectors > pnpm max stack 2`] = ` "5": { "files": { "AbstractEqualityComparison.js": { - "offset": 2237970, + "offset": 2237980, "size": 1140, }, "AbstractRelationalComparison.js": { - "offset": 2239100, + "offset": 2239110, "size": 1580, }, "Canonicalize.js": { - "offset": 2240670, + "offset": 2240690, "size": 850, }, "CheckObjectCoercible.js": { - "offset": 2241520, + "offset": 2241530, "size": 300, }, "DateFromTime.js": { - "offset": 2241820, + "offset": 2241830, "size": 990, }, "Day.js": { - "offset": 2242810, + "offset": 2242820, "size": 240, }, "DayFromYear.js": { - "offset": 2243040, + "offset": 2243050, "size": 260, }, "DayWithinYear.js": { - "offset": 2243300, + "offset": 2243310, "size": 290, }, "DaysInYear.js": { - "offset": 2243580, + "offset": 2243590, "size": 310, }, "FromPropertyDescriptor.js": { - "offset": 2243880, + "offset": 2243900, "size": 1050, }, "HourFromTime.js": { - "offset": 2244930, + "offset": 2244950, "size": 390, }, "InLeapYear.js": { - "offset": 2245320, + "offset": 2245330, "size": 470, }, "IsAccessorDescriptor.js": { - "offset": 2245780, + "offset": 2245790, "size": 560, }, "IsCallable.js": { - "offset": 2246340, + "offset": 2246350, "size": 110, }, "IsDataDescriptor.js": { - "offset": 2246440, + "offset": 2246460, "size": 570, }, "IsGenericDescriptor.js": { - "offset": 2247000, + "offset": 2247020, "size": 630, }, "IsPropertyDescriptor.js": { - "offset": 2247630, + "offset": 2247640, "size": 320, }, "MakeDate.js": { - "offset": 2247940, + "offset": 2247950, "size": 340, }, "MakeDay.js": { - "offset": 2248280, + "offset": 2248290, "size": 930, }, "MakeTime.js": { - "offset": 2249200, + "offset": 2249210, "size": 710, }, "MinFromTime.js": { - "offset": 2249900, + "offset": 2249910, "size": 400, }, "MonthFromTime.js": { - "offset": 2250300, + "offset": 2250310, "size": 1130, }, "SameValue.js": { - "offset": 2251430, + "offset": 2251440, "size": 320, }, "SecFromTime.js": { - "offset": 2251740, + "offset": 2251750, "size": 410, }, "StrictEqualityComparison.js": { - "offset": 2252140, + "offset": 2252150, "size": 320, }, "TimeClip.js": { - "offset": 2252460, + "offset": 2252470, "size": 440, }, "TimeFromYear.js": { - "offset": 2252900, + "offset": 2252910, "size": 270, }, "TimeWithinDay.js": { - "offset": 2253160, + "offset": 2253170, "size": 250, }, "ToBoolean.js": { - "offset": 2253410, + "offset": 2253420, "size": 130, }, "ToInt32.js": { - "offset": 2253540, + "offset": 2253550, "size": 180, }, "ToInteger.js": { - "offset": 2253710, + "offset": 2253720, "size": 560, }, "ToNumber.js": { - "offset": 2254270, + "offset": 2254280, "size": 930, }, "ToObject.js": { - "offset": 2255200, + "offset": 2255210, "size": 120, }, "ToPrimitive.js": { - "offset": 2255320, + "offset": 2255330, "size": 120, }, "ToPropertyDescriptor.js": { - "offset": 2255430, + "offset": 2255440, "size": 1460, }, "ToString.js": { - "offset": 2256880, + "offset": 2256900, "size": 230, }, "ToUint16.js": { - "offset": 2257110, + "offset": 2257120, "size": 610, }, "ToUint32.js": { - "offset": 2257720, + "offset": 2257730, "size": 180, }, "Type.js": { - "offset": 2257890, + "offset": 2257900, "size": 460, }, "WeekDay.js": { - "offset": 2258350, + "offset": 2258360, "size": 210, }, "YearFromTime.js": { - "offset": 2258550, + "offset": 2258570, "size": 400, }, "abs.js": { - "offset": 2258950, + "offset": 2258960, "size": 170, }, "floor.js": { - "offset": 2259120, + "offset": 2259130, "size": 240, }, "modulo.js": { - "offset": 2259360, + "offset": 2259370, "size": 170, }, "msFromTime.js": { - "offset": 2259520, + "offset": 2259540, "size": 260, }, }, }, "GetIntrinsic.js": { - "offset": 2259780, + "offset": 2259790, "size": 90, }, "LICENSE": { - "offset": 2259870, + "offset": 2259880, "size": 1090, }, "es2015.js": { - "offset": 2260950, + "offset": 2260960, "size": 7050, }, "es2016.js": { - "offset": 2267990, + "offset": 2268000, "size": 7450, }, "es2017.js": { - "offset": 2275440, + "offset": 2275450, "size": 7900, }, "es2018.js": { - "offset": 2283340, + "offset": 2283350, "size": 8540, }, "es2019.js": { - "offset": 2291870, + "offset": 2291880, "size": 8790, }, "es2020.js": { - "offset": 2300660, + "offset": 2300670, "size": 10080, }, "es2021.js": { - "offset": 2310740, + "offset": 2310750, "size": 10950, }, "es2022.js": { - "offset": 2321690, + "offset": 2321700, "size": 11720, }, "es2023.js": { - "offset": 2333400, + "offset": 2333420, "size": 12450, }, "es2024.js": { - "offset": 2345850, + "offset": 2345860, "size": 13790, }, "es2025.js": { - "offset": 2359630, + "offset": 2359650, "size": 14850, }, "es5.js": { - "offset": 2374480, + "offset": 2374490, "size": 2080, }, "es6.js": { - "offset": 2376550, + "offset": 2376560, "size": 60, }, "es7.js": { - "offset": 2376600, + "offset": 2376610, "size": 60, }, "eslint.config.mjs": { - "offset": 2376650, + "offset": 2376670, "size": 2640, }, "helpers": { "files": { "CharSet.js": { - "offset": 2379290, + "offset": 2379300, "size": 3350, }, "DefineOwnProperty.js": { - "offset": 2382640, + "offset": 2382650, "size": 1500, }, "IsArray.js": { - "offset": 2384130, + "offset": 2384150, "size": 340, }, "OwnPropertyKeys.js": { - "offset": 2384470, + "offset": 2384490, "size": 90, }, "assertRecord.js": { - "offset": 2384560, + "offset": 2384570, "size": 1180, }, "assign.js": { - "offset": 2385740, + "offset": 2385750, "size": 470, }, "bytesAsFloat16.js": { - "offset": 2386200, + "offset": 2386210, "size": 1240, }, "bytesAsFloat32.js": { - "offset": 2387430, + "offset": 2387440, "size": 1170, }, "bytesAsFloat64.js": { - "offset": 2388600, + "offset": 2388610, "size": 1510, }, "bytesAsInteger.js": { - "offset": 2390110, + "offset": 2390120, "size": 1000, }, "callBind.js": { - "offset": 2391110, + "offset": 2391120, "size": 90, }, "callBound.js": { - "offset": 2391200, + "offset": 2391210, "size": 90, }, "caseFolding.json": { - "offset": 2391280, + "offset": 2391290, "size": 22350, }, "defaultEndianness.js": { - "offset": 2413630, + "offset": 2413640, "size": 610, }, "every.js": { - "offset": 2414230, + "offset": 2414250, "size": 200, }, "forEach.js": { - "offset": 2414430, + "offset": 2414440, "size": 190, }, "fractionToBinaryString.js": { - "offset": 2414620, + "offset": 2414630, "size": 850, }, "fromPropertyDescriptor.js": { - "offset": 2415460, + "offset": 2415470, "size": 580, }, "getInferredName.js": { - "offset": 2416040, + "offset": 2416050, "size": 120, }, "getIteratorMethod.js": { - "offset": 2416150, + "offset": 2416170, "size": 1200, }, "getOwnPropertyDescriptor.js": { - "offset": 2417350, + "offset": 2417360, "size": 80, }, "getProto.js": { - "offset": 2417430, + "offset": 2417440, "size": 90, }, "getSymbolDescription.js": { - "offset": 2417510, + "offset": 2417530, "size": 100, }, "intToBinaryString.js": { - "offset": 2417610, + "offset": 2417620, "size": 500, }, "integerToNBytes.js": { - "offset": 2418110, + "offset": 2418120, "size": 1090, }, "isAbstractClosure.js": { - "offset": 2419200, + "offset": 2419210, "size": 250, }, "isByteValue.js": { - "offset": 2419440, + "offset": 2419450, "size": 160, }, "isCodePoint.js": { - "offset": 2419590, + "offset": 2419610, "size": 150, }, "isFinite.js": { - "offset": 2419740, + "offset": 2419750, "size": 100, }, "isFullyPopulatedPropertyDescriptor.js": { - "offset": 2419840, + "offset": 2419850, "size": 330, }, "isInteger.js": { - "offset": 2420160, + "offset": 2420170, "size": 100, }, "isLeadingSurrogate.js": { - "offset": 2420260, + "offset": 2420270, "size": 160, }, "isLineTerminator.js": { - "offset": 2420420, + "offset": 2420430, "size": 190, }, "isNaN.js": { - "offset": 2420610, + "offset": 2420620, "size": 90, }, "isNegativeZero.js": { - "offset": 2420690, + "offset": 2420710, "size": 140, }, "isObject.js": { - "offset": 2420820, + "offset": 2420840, "size": 100, }, "isPrefixOf.js": { - "offset": 2420920, + "offset": 2420940, "size": 300, }, "isPrimitive.js": { - "offset": 2421220, + "offset": 2421230, "size": 160, }, "isPropertyKey.js": { - "offset": 2421370, + "offset": 2421380, "size": 140, }, "isSamePropertyDescriptor.js": { - "offset": 2421510, + "offset": 2421520, "size": 390, }, "isSameType.js": { - "offset": 2421900, + "offset": 2421910, "size": 250, }, "isStringOrHole.js": { - "offset": 2422150, + "offset": 2422160, "size": 340, }, "isStringOrUndefined.js": { - "offset": 2422480, + "offset": 2422500, "size": 140, }, "isTrailingSurrogate.js": { - "offset": 2422620, + "offset": 2422630, "size": 160, }, "maxSafeInteger.js": { - "offset": 2422780, + "offset": 2422790, "size": 120, }, "maxValue.js": { - "offset": 2422890, + "offset": 2422910, "size": 80, }, "mod.js": { - "offset": 2422970, + "offset": 2422980, "size": 100, }, "modBigInt.js": { - "offset": 2423060, + "offset": 2423080, "size": 190, }, "padTimeComponent.js": { - "offset": 2423250, + "offset": 2423260, "size": 220, }, "records": { "files": { "async-generator-request-record.js": { - "offset": 2423460, + "offset": 2423470, "size": 410, }, "data-view-with-buffer-witness-record.js": { - "offset": 2423870, + "offset": 2423880, "size": 540, }, "iterator-record-2023.js": { - "offset": 2424400, + "offset": 2424410, "size": 220, }, "iterator-record.js": { - "offset": 2424610, + "offset": 2424630, "size": 300, }, "match-record.js": { - "offset": 2424910, + "offset": 2424920, "size": 560, }, "promise-capability-record.js": { - "offset": 2425470, + "offset": 2425480, "size": 500, }, "property-descriptor.js": { - "offset": 2425970, + "offset": 2425980, "size": 870, }, "regexp-record.js": { - "offset": 2426830, + "offset": 2426850, "size": 850, }, "set-record.js": { - "offset": 2427680, + "offset": 2427700, "size": 590, }, "typed-array-with-buffer-witness-record.js": { - "offset": 2428270, + "offset": 2428280, "size": 550, }, }, }, "reduce.js": { - "offset": 2428820, + "offset": 2428830, "size": 180, }, "regexTester.js": { - "offset": 2428990, + "offset": 2429000, "size": 100, }, "setProto.js": { - "offset": 2429080, + "offset": 2429090, "size": 90, }, "sign.js": { - "offset": 2429160, + "offset": 2429170, "size": 100, }, "some.js": { - "offset": 2429260, + "offset": 2429270, "size": 200, }, "timeConstants.js": { - "offset": 2429450, + "offset": 2429460, "size": 450, }, "timeValue.js": { - "offset": 2429900, + "offset": 2429910, "size": 160, }, "typedArrayConstructors.js": { - "offset": 2430050, + "offset": 2430060, "size": 840, }, "valueToFloat16Bytes.js": { - "offset": 2430880, + "offset": 2430890, "size": 1780, }, "valueToFloat32Bytes.js": { - "offset": 2432650, + "offset": 2432670, "size": 1650, }, "valueToFloat64Bytes.js": { - "offset": 2434300, + "offset": 2434310, "size": 2990, }, }, }, "index.js": { - "offset": 2437290, + "offset": 2437300, "size": 840, }, "operations": { "files": { "2015.js": { - "offset": 2438120, + "offset": 2438130, "size": 24060, }, "2016.js": { - "offset": 2462180, + "offset": 2462190, "size": 26550, }, "2017.js": { - "offset": 2488720, + "offset": 2488730, "size": 30900, }, "2018.js": { - "offset": 2519620, + "offset": 2519630, "size": 33500, }, "2019.js": { - "offset": 2553110, + "offset": 2553130, "size": 34390, }, "2020.js": { - "offset": 2587500, + "offset": 2587510, "size": 40870, }, "2021.js": { - "offset": 2628370, + "offset": 2628380, "size": 42900, }, "2022.js": { - "offset": 2671260, + "offset": 2671280, "size": 45950, }, "2023.js": { - "offset": 2717210, + "offset": 2717220, "size": 48240, }, "2024.js": { - "offset": 2765440, + "offset": 2765460, "size": 51780, }, "2025.js": { - "offset": 2817220, + "offset": 2817230, "size": 54150, }, "es5.js": { - "offset": 2871370, + "offset": 2871380, "size": 3220, }, }, }, "package.json": { - "offset": 2874580, + "offset": 2874590, "size": 4280, }, }, @@ -20090,23 +20090,23 @@ exports[`node_module collectors > pnpm max stack 2`] = ` "es-define-property": { "files": { ".nycrc": { - "offset": 2878850, + "offset": 2878870, "size": 140, }, "LICENSE": { - "offset": 2878990, + "offset": 2879010, "size": 1080, }, "index.js": { - "offset": 2880060, + "offset": 2880080, "size": 290, }, "package.json": { - "offset": 2880350, + "offset": 2880360, "size": 1340, }, "tsconfig.json": { - "offset": 2881690, + "offset": 2881700, "size": 140, }, }, @@ -20114,43 +20114,43 @@ exports[`node_module collectors > pnpm max stack 2`] = ` "es-errors": { "files": { "LICENSE": { - "offset": 2881830, + "offset": 2881840, "size": 1080, }, "eval.js": { - "offset": 2882900, + "offset": 2882910, "size": 80, }, "index.js": { - "offset": 2882970, + "offset": 2882990, "size": 70, }, "package.json": { - "offset": 2883040, + "offset": 2883050, "size": 1340, }, "range.js": { - "offset": 2884370, + "offset": 2884390, "size": 80, }, "ref.js": { - "offset": 2884450, + "offset": 2884460, "size": 80, }, "syntax.js": { - "offset": 2884530, + "offset": 2884540, "size": 80, }, "tsconfig.json": { - "offset": 2884610, + "offset": 2884620, "size": 3170, }, "type.js": { - "offset": 2887780, + "offset": 2887790, "size": 80, }, "uri.js": { - "offset": 2887850, + "offset": 2887870, "size": 80, }, }, @@ -20158,31 +20158,31 @@ exports[`node_module collectors > pnpm max stack 2`] = ` "es-object-atoms": { "files": { "LICENSE": { - "offset": 2887930, + "offset": 2887940, "size": 1080, }, "RequireObjectCoercible.js": { - "offset": 2889000, + "offset": 2889010, "size": 320, }, "ToObject.js": { - "offset": 2889310, + "offset": 2889320, "size": 250, }, "index.js": { - "offset": 2889560, + "offset": 2889570, "size": 70, }, "isObject.js": { - "offset": 2889630, + "offset": 2889640, "size": 170, }, "package.json": { - "offset": 2889790, + "offset": 2889800, "size": 1430, }, "tsconfig.json": { - "offset": 2891210, + "offset": 2891220, "size": 90, }, }, @@ -20190,23 +20190,23 @@ exports[`node_module collectors > pnpm max stack 2`] = ` "es-set-tostringtag": { "files": { ".nycrc": { - "offset": 2891290, + "offset": 2891310, "size": 140, }, "LICENSE": { - "offset": 2891430, + "offset": 2891440, "size": 1080, }, "index.js": { - "offset": 2892510, + "offset": 2892520, "size": 1220, }, "package.json": { - "offset": 2893720, + "offset": 2893730, "size": 1540, }, "tsconfig.json": { - "offset": 2895250, + "offset": 2895260, "size": 120, }, }, @@ -20214,51 +20214,51 @@ exports[`node_module collectors > pnpm max stack 2`] = ` "es-to-primitive": { "files": { ".editorconfig": { - "offset": 2895370, + "offset": 2895380, "size": 290, }, ".eslintignore": { - "offset": 2895650, + "offset": 2895670, "size": 10, }, ".nycrc": { - "offset": 2895660, + "offset": 2895680, "size": 140, }, "LICENSE": { - "offset": 2895800, + "offset": 2895810, "size": 1090, }, "es2015.js": { - "offset": 2896880, + "offset": 2896900, "size": 2710, }, "es5.js": { - "offset": 2899590, + "offset": 2899600, "size": 1720, }, "es6.js": { - "offset": 2901310, + "offset": 2901320, "size": 90, }, "helpers": { "files": { "isPrimitive.js": { - "offset": 2901400, + "offset": 2901410, "size": 260, }, }, }, "index.js": { - "offset": 2901650, + "offset": 2901670, "size": 570, }, "package.json": { - "offset": 2902220, + "offset": 2902230, "size": 1720, }, "tsconfig.json": { - "offset": 2903940, + "offset": 2903950, "size": 120, }, }, @@ -20266,15 +20266,15 @@ exports[`node_module collectors > pnpm max stack 2`] = ` "escape-string-regexp": { "files": { "index.js": { - "offset": 2904060, + "offset": 2904070, "size": 230, }, "license": { - "offset": 2904280, + "offset": 2904300, "size": 1120, }, "package.json": { - "offset": 2905400, + "offset": 2905410, "size": 590, }, }, @@ -20282,27 +20282,27 @@ exports[`node_module collectors > pnpm max stack 2`] = ` "for-each": { "files": { ".editorconfig": { - "offset": 2905990, + "offset": 2906000, "size": 290, }, ".nycrc": { - "offset": 2906270, + "offset": 2906280, "size": 130, }, "LICENSE": { - "offset": 2906400, + "offset": 2906410, "size": 1080, }, "index.js": { - "offset": 2907480, + "offset": 2907490, "size": 2380, }, "package.json": { - "offset": 2909850, + "offset": 2909860, "size": 1150, }, "tsconfig.json": { - "offset": 2911000, + "offset": 2911010, "size": 100, }, }, @@ -20310,23 +20310,23 @@ exports[`node_module collectors > pnpm max stack 2`] = ` "function-bind": { "files": { ".nycrc": { - "offset": 2911090, + "offset": 2911100, "size": 220, }, "LICENSE": { - "offset": 2911310, + "offset": 2911320, "size": 1060, }, "implementation.js": { - "offset": 2912360, + "offset": 2912370, "size": 2050, }, "index.js": { - "offset": 2914400, + "offset": 2914410, "size": 130, }, "package.json": { - "offset": 2914530, + "offset": 2914540, "size": 1330, }, }, @@ -20334,47 +20334,47 @@ exports[`node_module collectors > pnpm max stack 2`] = ` "function.prototype.name": { "files": { ".editorconfig": { - "offset": 2915860, + "offset": 2915870, "size": 340, }, ".nycrc": { - "offset": 2916190, + "offset": 2916210, "size": 140, }, "LICENSE": { - "offset": 2916330, + "offset": 2916340, "size": 1090, }, "auto.js": { - "offset": 2917410, + "offset": 2917430, "size": 40, }, "helpers": { "files": { "functionsHaveNames.js": { - "offset": 2917450, + "offset": 2917460, "size": 100, }, }, }, "implementation.js": { - "offset": 2917550, + "offset": 2917560, "size": 2050, }, "index.js": { - "offset": 2919600, + "offset": 2919610, "size": 380, }, "package.json": { - "offset": 2919970, + "offset": 2919980, "size": 1930, }, "polyfill.js": { - "offset": 2921890, + "offset": 2921900, "size": 140, }, "shim.js": { - "offset": 2922030, + "offset": 2922040, "size": 920, }, }, @@ -20382,23 +20382,23 @@ exports[`node_module collectors > pnpm max stack 2`] = ` "functions-have-names": { "files": { ".editorconfig": { - "offset": 2922940, + "offset": 2922950, "size": 290, }, ".nycrc": { - "offset": 2923230, + "offset": 2923240, "size": 140, }, "LICENSE": { - "offset": 2923370, + "offset": 2923380, "size": 1080, }, "index.js": { - "offset": 2924440, + "offset": 2924450, "size": 780, }, "package.json": { - "offset": 2925210, + "offset": 2925220, "size": 920, }, }, @@ -20406,39 +20406,39 @@ exports[`node_module collectors > pnpm max stack 2`] = ` "generator-function": { "files": { ".nycrc": { - "offset": 2926120, + "offset": 2926140, "size": 140, }, "LICENSE.md": { - "offset": 2926260, + "offset": 2926270, "size": 1070, }, "index.d.mts": { - "offset": 2927330, + "offset": 2927340, "size": 100, }, "index.js": { - "offset": 2927430, + "offset": 2927440, "size": 230, }, "index.mjs": { - "offset": 2927660, + "offset": 2927670, "size": 140, }, "legacy.js": { - "offset": 2927790, + "offset": 2927800, "size": 380, }, "package.json": { - "offset": 2928170, + "offset": 2928180, "size": 1650, }, "require.mjs": { - "offset": 2929820, + "offset": 2929830, "size": 140, }, "tsconfig.json": { - "offset": 2929950, + "offset": 2929970, "size": 120, }, }, @@ -20446,19 +20446,19 @@ exports[`node_module collectors > pnpm max stack 2`] = ` "get-intrinsic": { "files": { ".nycrc": { - "offset": 2930070, + "offset": 2930080, "size": 140, }, "LICENSE": { - "offset": 2930210, + "offset": 2930220, "size": 1080, }, "index.js": { - "offset": 2931280, + "offset": 2931290, "size": 14440, }, "package.json": { - "offset": 2945720, + "offset": 2945730, "size": 1870, }, }, @@ -20466,31 +20466,31 @@ exports[`node_module collectors > pnpm max stack 2`] = ` "get-proto": { "files": { ".nycrc": { - "offset": 2947580, + "offset": 2947600, "size": 140, }, "LICENSE": { - "offset": 2947720, + "offset": 2947730, "size": 1080, }, "Object.getPrototypeOf.js": { - "offset": 2948790, + "offset": 2948810, "size": 160, }, "Reflect.getPrototypeOf.js": { - "offset": 2948950, + "offset": 2948960, "size": 150, }, "index.js": { - "offset": 2949100, + "offset": 2949110, "size": 830, }, "package.json": { - "offset": 2949920, + "offset": 2949930, "size": 1430, }, "tsconfig.json": { - "offset": 2951350, + "offset": 2951360, "size": 120, }, }, @@ -20498,27 +20498,27 @@ exports[`node_module collectors > pnpm max stack 2`] = ` "get-symbol-description": { "files": { ".nycrc": { - "offset": 2951460, + "offset": 2951480, "size": 140, }, "LICENSE": { - "offset": 2951600, + "offset": 2951610, "size": 1070, }, "getInferredName.js": { - "offset": 2952670, + "offset": 2952680, "size": 480, }, "index.js": { - "offset": 2953140, + "offset": 2953160, "size": 1570, }, "package.json": { - "offset": 2954710, + "offset": 2954720, "size": 1760, }, "tsconfig.json": { - "offset": 2956460, + "offset": 2956480, "size": 120, }, }, @@ -20526,39 +20526,39 @@ exports[`node_module collectors > pnpm max stack 2`] = ` "globalthis": { "files": { ".nycrc": { - "offset": 2956580, + "offset": 2956590, "size": 150, }, "LICENSE": { - "offset": 2956730, + "offset": 2956740, "size": 1090, }, "auto.js": { - "offset": 2957810, + "offset": 2957820, "size": 40, }, "implementation.browser.js": { - "offset": 2957850, + "offset": 2957860, "size": 260, }, "implementation.js": { - "offset": 2958100, + "offset": 2958110, "size": 40, }, "index.js": { - "offset": 2958140, + "offset": 2958150, "size": 410, }, "package.json": { - "offset": 2958550, + "offset": 2958560, "size": 1680, }, "polyfill.js": { - "offset": 2960220, + "offset": 2960240, "size": 260, }, "shim.js": { - "offset": 2960480, + "offset": 2960490, "size": 720, }, }, @@ -20566,23 +20566,23 @@ exports[`node_module collectors > pnpm max stack 2`] = ` "gopd": { "files": { "LICENSE": { - "offset": 2961190, + "offset": 2961200, "size": 1080, }, "gOPD.js": { - "offset": 2962260, + "offset": 2962270, "size": 100, }, "index.js": { - "offset": 2962360, + "offset": 2962370, "size": 210, }, "package.json": { - "offset": 2962560, + "offset": 2962580, "size": 1310, }, "tsconfig.json": { - "offset": 2963870, + "offset": 2963890, "size": 120, }, }, @@ -20590,27 +20590,27 @@ exports[`node_module collectors > pnpm max stack 2`] = ` "graceful-fs": { "files": { "LICENSE": { - "offset": 2963990, + "offset": 2964000, "size": 800, }, "clone.js": { - "offset": 2964780, + "offset": 2964790, "size": 500, }, "graceful-fs.js": { - "offset": 2965280, + "offset": 2965290, "size": 12680, }, "legacy-streams.js": { - "offset": 2977960, + "offset": 2977970, "size": 2660, }, "package.json": { - "offset": 2980610, + "offset": 2980620, "size": 600, }, "polyfills.js": { - "offset": 2981210, + "offset": 2981220, "size": 10150, }, }, @@ -20618,23 +20618,23 @@ exports[`node_module collectors > pnpm max stack 2`] = ` "has-bigints": { "files": { ".nycrc": { - "offset": 2991350, + "offset": 2991360, "size": 140, }, "LICENSE": { - "offset": 2991490, + "offset": 2991500, "size": 1080, }, "index.js": { - "offset": 2992560, + "offset": 2992570, "size": 380, }, "package.json": { - "offset": 2992940, + "offset": 2992950, "size": 1170, }, "tsconfig.json": { - "offset": 2994100, + "offset": 2994110, "size": 130, }, }, @@ -20642,15 +20642,15 @@ exports[`node_module collectors > pnpm max stack 2`] = ` "has-flag": { "files": { "index.js": { - "offset": 2994230, + "offset": 2994240, "size": 320, }, "license": { - "offset": 2994550, + "offset": 2994560, "size": 1110, }, "package.json": { - "offset": 2995650, + "offset": 2995670, "size": 410, }, }, @@ -20658,19 +20658,19 @@ exports[`node_module collectors > pnpm max stack 2`] = ` "has-property-descriptors": { "files": { ".nycrc": { - "offset": 2996060, + "offset": 2996070, "size": 140, }, "LICENSE": { - "offset": 2996200, + "offset": 2996210, "size": 1070, }, "index.js": { - "offset": 2997270, + "offset": 2997280, "size": 590, }, "package.json": { - "offset": 2997860, + "offset": 2997870, "size": 1330, }, }, @@ -20678,27 +20678,27 @@ exports[`node_module collectors > pnpm max stack 2`] = ` "has-proto": { "files": { "LICENSE": { - "offset": 2999180, + "offset": 2999200, "size": 1070, }, "accessor.js": { - "offset": 3000250, + "offset": 3000260, "size": 550, }, "index.js": { - "offset": 3000800, + "offset": 3000810, "size": 300, }, "mutator.js": { - "offset": 3001100, + "offset": 3001110, "size": 540, }, "package.json": { - "offset": 3001630, + "offset": 3001640, "size": 1610, }, "tsconfig.json": { - "offset": 3003240, + "offset": 3003250, "size": 130, }, }, @@ -20706,27 +20706,27 @@ exports[`node_module collectors > pnpm max stack 2`] = ` "has-symbols": { "files": { ".nycrc": { - "offset": 3003370, + "offset": 3003380, "size": 140, }, "LICENSE": { - "offset": 3003510, + "offset": 3003520, "size": 1080, }, "index.js": { - "offset": 3004580, + "offset": 3004590, "size": 450, }, "package.json": { - "offset": 3005030, + "offset": 3005040, "size": 1800, }, "shams.js": { - "offset": 3006820, + "offset": 3006830, "size": 1930, }, "tsconfig.json": { - "offset": 3008740, + "offset": 3008750, "size": 150, }, }, @@ -20734,27 +20734,27 @@ exports[`node_module collectors > pnpm max stack 2`] = ` "has-tostringtag": { "files": { ".nycrc": { - "offset": 3008880, + "offset": 3008900, "size": 220, }, "LICENSE": { - "offset": 3009100, + "offset": 3009110, "size": 1070, }, "index.js": { - "offset": 3010170, + "offset": 3010180, "size": 200, }, "package.json": { - "offset": 3010360, + "offset": 3010370, "size": 1700, }, "shams.js": { - "offset": 3012060, + "offset": 3012070, "size": 190, }, "tsconfig.json": { - "offset": 3012250, + "offset": 3012260, "size": 3620, }, }, @@ -20762,23 +20762,23 @@ exports[`node_module collectors > pnpm max stack 2`] = ` "hasown": { "files": { ".nycrc": { - "offset": 3015860, + "offset": 3015870, "size": 220, }, "LICENSE": { - "offset": 3016080, + "offset": 3016090, "size": 1090, }, "index.js": { - "offset": 3017160, + "offset": 3017170, "size": 210, }, "package.json": { - "offset": 3017370, + "offset": 3017380, "size": 1480, }, "tsconfig.json": { - "offset": 3018840, + "offset": 3018850, "size": 80, }, }, @@ -20786,23 +20786,23 @@ exports[`node_module collectors > pnpm max stack 2`] = ` "hosted-git-info": { "files": { "LICENSE": { - "offset": 3018910, + "offset": 3018920, "size": 740, }, "git-host-info.js": { - "offset": 3019650, + "offset": 3019660, "size": 3790, }, "git-host.js": { - "offset": 3023440, + "offset": 3023450, "size": 4640, }, "index.js": { - "offset": 3028070, + "offset": 3028080, "size": 5150, }, "package.json": { - "offset": 3033220, + "offset": 3033230, "size": 620, }, }, @@ -20810,31 +20810,31 @@ exports[`node_module collectors > pnpm max stack 2`] = ` "internal-slot": { "files": { ".attw.json": { - "offset": 3033840, + "offset": 3033850, "size": 50, }, ".editorconfig": { - "offset": 3033880, + "offset": 3033890, "size": 290, }, ".nycrc": { - "offset": 3034160, + "offset": 3034180, "size": 140, }, "LICENSE": { - "offset": 3034300, + "offset": 3034320, "size": 1080, }, "index.js": { - "offset": 3035370, + "offset": 3035390, "size": 2050, }, "package.json": { - "offset": 3037420, + "offset": 3037430, "size": 1260, }, "tsconfig.json": { - "offset": 3038680, + "offset": 3038690, "size": 120, }, }, @@ -20842,23 +20842,23 @@ exports[`node_module collectors > pnpm max stack 2`] = ` "is-array-buffer": { "files": { ".nycrc": { - "offset": 3038790, + "offset": 3038810, "size": 140, }, "LICENSE": { - "offset": 3038930, + "offset": 3038940, "size": 1090, }, "index.js": { - "offset": 3040010, + "offset": 3040030, "size": 1410, }, "package.json": { - "offset": 3041420, + "offset": 3041430, "size": 1720, }, "tsconfig.json": { - "offset": 3043140, + "offset": 3043150, "size": 130, }, }, @@ -20866,23 +20866,23 @@ exports[`node_module collectors > pnpm max stack 2`] = ` "is-arrayish": { "files": { ".editorconfig": { - "offset": 3043270, + "offset": 3043280, "size": 270, }, ".istanbul.yml": { - "offset": 3043530, + "offset": 3043540, "size": 60, }, "LICENSE": { - "offset": 3043590, + "offset": 3043600, "size": 1080, }, "index.js": { - "offset": 3044670, + "offset": 3044680, "size": 210, }, "package.json": { - "offset": 3044870, + "offset": 3044880, "size": 470, }, }, @@ -20890,23 +20890,23 @@ exports[`node_module collectors > pnpm max stack 2`] = ` "is-async-function": { "files": { ".nycrc": { - "offset": 3045330, + "offset": 3045340, "size": 140, }, "LICENSE": { - "offset": 3045470, + "offset": 3045480, "size": 1090, }, "index.js": { - "offset": 3046550, + "offset": 3046560, "size": 830, }, "package.json": { - "offset": 3047380, + "offset": 3047390, "size": 2060, }, "tsconfig.json": { - "offset": 3049440, + "offset": 3049450, "size": 160, }, }, @@ -20914,23 +20914,23 @@ exports[`node_module collectors > pnpm max stack 2`] = ` "is-bigint": { "files": { ".nycrc": { - "offset": 3049590, + "offset": 3049610, "size": 140, }, "LICENSE": { - "offset": 3049730, + "offset": 3049750, "size": 1080, }, "index.js": { - "offset": 3050800, + "offset": 3050820, "size": 850, }, "package.json": { - "offset": 3051650, + "offset": 3051660, "size": 1400, }, "tsconfig.json": { - "offset": 3053050, + "offset": 3053060, "size": 120, }, }, @@ -20938,27 +20938,27 @@ exports[`node_module collectors > pnpm max stack 2`] = ` "is-boolean-object": { "files": { ".editorconfig": { - "offset": 3053160, + "offset": 3053170, "size": 360, }, ".nycrc": { - "offset": 3053510, + "offset": 3053520, "size": 160, }, "LICENSE": { - "offset": 3053670, + "offset": 3053680, "size": 1090, }, "index.js": { - "offset": 3054750, + "offset": 3054770, "size": 720, }, "package.json": { - "offset": 3055460, + "offset": 3055480, "size": 1840, }, "tsconfig.json": { - "offset": 3057300, + "offset": 3057320, "size": 120, }, }, @@ -20966,23 +20966,23 @@ exports[`node_module collectors > pnpm max stack 2`] = ` "is-callable": { "files": { ".editorconfig": { - "offset": 3057420, + "offset": 3057430, "size": 460, }, ".nycrc": { - "offset": 3057870, + "offset": 3057890, "size": 140, }, "LICENSE": { - "offset": 3058010, + "offset": 3058030, "size": 1090, }, "index.js": { - "offset": 3059100, + "offset": 3059110, "size": 3230, }, "package.json": { - "offset": 3062320, + "offset": 3062330, "size": 1840, }, }, @@ -20990,23 +20990,23 @@ exports[`node_module collectors > pnpm max stack 2`] = ` "is-core-module": { "files": { ".nycrc": { - "offset": 3064160, + "offset": 3064170, "size": 140, }, "LICENSE": { - "offset": 3064300, + "offset": 3064310, "size": 1080, }, "core.json": { - "offset": 3065370, + "offset": 3065390, "size": 5960, }, "index.js": { - "offset": 3071330, + "offset": 3071340, "size": 1770, }, "package.json": { - "offset": 3073090, + "offset": 3073100, "size": 1240, }, }, @@ -21014,27 +21014,27 @@ exports[`node_module collectors > pnpm max stack 2`] = ` "is-data-view": { "files": { ".editorconfig": { - "offset": 3074330, + "offset": 3074340, "size": 290, }, ".nycrc": { - "offset": 3074610, + "offset": 3074630, "size": 140, }, "LICENSE": { - "offset": 3074750, + "offset": 3074770, "size": 1070, }, "index.js": { - "offset": 3075820, + "offset": 3075830, "size": 850, }, "package.json": { - "offset": 3076670, + "offset": 3076680, "size": 2070, }, "tsconfig.json": { - "offset": 3078730, + "offset": 3078740, "size": 120, }, }, @@ -21042,27 +21042,27 @@ exports[`node_module collectors > pnpm max stack 2`] = ` "is-date-object": { "files": { ".editorconfig": { - "offset": 3078840, + "offset": 3078860, "size": 290, }, ".nycrc": { - "offset": 3079130, + "offset": 3079140, "size": 160, }, "LICENSE": { - "offset": 3079290, + "offset": 3079300, "size": 1090, }, "index.js": { - "offset": 3080370, + "offset": 3080380, "size": 680, }, "package.json": { - "offset": 3081050, + "offset": 3081060, "size": 1900, }, "tsconfig.json": { - "offset": 3082940, + "offset": 3082950, "size": 80, }, }, @@ -21070,23 +21070,23 @@ exports[`node_module collectors > pnpm max stack 2`] = ` "is-finalizationregistry": { "files": { ".nycrc": { - "offset": 3083010, + "offset": 3083020, "size": 140, }, "LICENSE": { - "offset": 3083150, + "offset": 3083160, "size": 1070, }, "index.js": { - "offset": 3084220, + "offset": 3084230, "size": 830, }, "package.json": { - "offset": 3085040, + "offset": 3085050, "size": 1590, }, "tsconfig.json": { - "offset": 3086620, + "offset": 3086640, "size": 130, }, }, @@ -21094,27 +21094,27 @@ exports[`node_module collectors > pnpm max stack 2`] = ` "is-generator-function": { "files": { ".nvmrc": { - "offset": 3086750, + "offset": 3086760, "size": 10, }, ".nycrc": { - "offset": 3086750, + "offset": 3086760, "size": 140, }, "LICENSE": { - "offset": 3086890, + "offset": 3086900, "size": 1090, }, "index.js": { - "offset": 3087970, + "offset": 3087980, "size": 860, }, "package.json": { - "offset": 3088830, + "offset": 3088840, "size": 1950, }, "tsconfig.json": { - "offset": 3090780, + "offset": 3090790, "size": 130, }, }, @@ -21122,27 +21122,27 @@ exports[`node_module collectors > pnpm max stack 2`] = ` "is-map": { "files": { ".editorconfig": { - "offset": 3090910, + "offset": 3090920, "size": 240, }, ".nycrc": { - "offset": 3091140, + "offset": 3091150, "size": 140, }, "LICENSE": { - "offset": 3091280, + "offset": 3091290, "size": 1070, }, "index.js": { - "offset": 3092340, + "offset": 3092360, "size": 1080, }, "package.json": { - "offset": 3093420, + "offset": 3093430, "size": 1410, }, "tsconfig.json": { - "offset": 3094830, + "offset": 3094840, "size": 3620, }, }, @@ -21150,27 +21150,27 @@ exports[`node_module collectors > pnpm max stack 2`] = ` "is-negative-zero": { "files": { ".editorconfig": { - "offset": 3098440, + "offset": 3098450, "size": 130, }, ".nycrc": { - "offset": 3098570, + "offset": 3098580, "size": 140, }, "LICENSE": { - "offset": 3098710, + "offset": 3098720, "size": 1090, }, "index.js": { - "offset": 3099790, + "offset": 3099800, "size": 150, }, "package.json": { - "offset": 3099940, + "offset": 3099950, "size": 1600, }, "tsconfig.json": { - "offset": 3101530, + "offset": 3101540, "size": 3620, }, }, @@ -21178,27 +21178,27 @@ exports[`node_module collectors > pnpm max stack 2`] = ` "is-number-object": { "files": { ".editorconfig": { - "offset": 3105140, + "offset": 3105150, "size": 330, }, ".nycrc": { - "offset": 3105460, + "offset": 3105480, "size": 160, }, "LICENSE": { - "offset": 3105620, + "offset": 3105640, "size": 1090, }, "index.js": { - "offset": 3106710, + "offset": 3106720, "size": 700, }, "package.json": { - "offset": 3107400, + "offset": 3107420, "size": 1520, }, "tsconfig.json": { - "offset": 3108920, + "offset": 3108940, "size": 120, }, }, @@ -21206,27 +21206,27 @@ exports[`node_module collectors > pnpm max stack 2`] = ` "is-regex": { "files": { ".editorconfig": { - "offset": 3109040, + "offset": 3109050, "size": 330, }, ".nycrc": { - "offset": 3109360, + "offset": 3109370, "size": 160, }, "LICENSE": { - "offset": 3109520, + "offset": 3109530, "size": 1090, }, "index.js": { - "offset": 3110600, + "offset": 3110610, "size": 2230, }, "package.json": { - "offset": 3112820, + "offset": 3112830, "size": 1920, }, "tsconfig.json": { - "offset": 3114740, + "offset": 3114750, "size": 120, }, }, @@ -21234,27 +21234,27 @@ exports[`node_module collectors > pnpm max stack 2`] = ` "is-set": { "files": { ".editorconfig": { - "offset": 3114850, + "offset": 3114860, "size": 240, }, ".nycrc": { - "offset": 3115080, + "offset": 3115090, "size": 140, }, "LICENSE": { - "offset": 3115220, + "offset": 3115230, "size": 1070, }, "index.js": { - "offset": 3116290, + "offset": 3116300, "size": 1070, }, "package.json": { - "offset": 3117350, + "offset": 3117360, "size": 1300, }, "tsconfig.json": { - "offset": 3118640, + "offset": 3118650, "size": 3620, }, }, @@ -21262,23 +21262,23 @@ exports[`node_module collectors > pnpm max stack 2`] = ` "is-shared-array-buffer": { "files": { ".nycrc": { - "offset": 3122250, + "offset": 3122270, "size": 140, }, "LICENSE": { - "offset": 3122390, + "offset": 3122400, "size": 1070, }, "index.js": { - "offset": 3123460, + "offset": 3123470, "size": 680, }, "package.json": { - "offset": 3124130, + "offset": 3124140, "size": 1700, }, "tsconfig.json": { - "offset": 3125830, + "offset": 3125840, "size": 120, }, }, @@ -21286,23 +21286,23 @@ exports[`node_module collectors > pnpm max stack 2`] = ` "is-string": { "files": { ".nycrc": { - "offset": 3125940, + "offset": 3125960, "size": 160, }, "LICENSE": { - "offset": 3126100, + "offset": 3126120, "size": 1090, }, "index.js": { - "offset": 3127190, + "offset": 3127200, "size": 1060, }, "package.json": { - "offset": 3128240, + "offset": 3128250, "size": 1780, }, "tsconfig.json": { - "offset": 3130010, + "offset": 3130020, "size": 130, }, }, @@ -21310,27 +21310,27 @@ exports[`node_module collectors > pnpm max stack 2`] = ` "is-symbol": { "files": { ".editorconfig": { - "offset": 3130140, + "offset": 3130150, "size": 280, }, ".nycrc": { - "offset": 3130410, + "offset": 3130420, "size": 140, }, "LICENSE": { - "offset": 3130550, + "offset": 3130560, "size": 1090, }, "index.js": { - "offset": 3131630, + "offset": 3131640, "size": 1030, }, "package.json": { - "offset": 3132660, + "offset": 3132670, "size": 1850, }, "tsconfig.json": { - "offset": 3134510, + "offset": 3134520, "size": 120, }, }, @@ -21338,27 +21338,27 @@ exports[`node_module collectors > pnpm max stack 2`] = ` "is-typed-array": { "files": { ".editorconfig": { - "offset": 3134620, + "offset": 3134630, "size": 290, }, ".nycrc": { - "offset": 3134910, + "offset": 3134920, "size": 140, }, "LICENSE": { - "offset": 3135050, + "offset": 3135060, "size": 1090, }, "index.js": { - "offset": 3136130, + "offset": 3136140, "size": 180, }, "package.json": { - "offset": 3136310, + "offset": 3136320, "size": 2310, }, "tsconfig.json": { - "offset": 3138610, + "offset": 3138630, "size": 70, }, }, @@ -21366,27 +21366,27 @@ exports[`node_module collectors > pnpm max stack 2`] = ` "is-weakmap": { "files": { ".editorconfig": { - "offset": 3138680, + "offset": 3138690, "size": 240, }, ".nycrc": { - "offset": 3138910, + "offset": 3138930, "size": 140, }, "LICENSE": { - "offset": 3139050, + "offset": 3139060, "size": 1070, }, "index.js": { - "offset": 3140120, + "offset": 3140130, "size": 1160, }, "package.json": { - "offset": 3141280, + "offset": 3141290, "size": 1410, }, "tsconfig.json": { - "offset": 3142690, + "offset": 3142700, "size": 3620, }, }, @@ -21394,23 +21394,23 @@ exports[`node_module collectors > pnpm max stack 2`] = ` "is-weakref": { "files": { ".nycrc": { - "offset": 3146300, + "offset": 3146310, "size": 140, }, "LICENSE": { - "offset": 3146440, + "offset": 3146450, "size": 1070, }, "index.js": { - "offset": 3147500, + "offset": 3147510, "size": 600, }, "package.json": { - "offset": 3148100, + "offset": 3148110, "size": 1510, }, "tsconfig.json": { - "offset": 3149610, + "offset": 3149620, "size": 130, }, }, @@ -21418,27 +21418,27 @@ exports[`node_module collectors > pnpm max stack 2`] = ` "is-weakset": { "files": { ".editorconfig": { - "offset": 3149730, + "offset": 3149740, "size": 230, }, ".nycrc": { - "offset": 3149950, + "offset": 3149970, "size": 140, }, "LICENSE": { - "offset": 3150090, + "offset": 3150100, "size": 1070, }, "index.js": { - "offset": 3151160, + "offset": 3151170, "size": 1260, }, "package.json": { - "offset": 3152410, + "offset": 3152430, "size": 1580, }, "tsconfig.json": { - "offset": 3153990, + "offset": 3154000, "size": 120, }, }, @@ -21446,15 +21446,15 @@ exports[`node_module collectors > pnpm max stack 2`] = ` "isarray": { "files": { "LICENSE": { - "offset": 3154100, + "offset": 3154110, "size": 1100, }, "index.js": { - "offset": 3155200, + "offset": 3155210, "size": 140, }, "package.json": { - "offset": 3155330, + "offset": 3155340, "size": 880, }, }, @@ -21462,23 +21462,23 @@ exports[`node_module collectors > pnpm max stack 2`] = ` "isexe": { "files": { "LICENSE": { - "offset": 3156210, + "offset": 3156220, "size": 770, }, "index.js": { - "offset": 3156970, + "offset": 3156990, "size": 1200, }, "mode.js": { - "offset": 3158170, + "offset": 3158180, "size": 910, }, "package.json": { - "offset": 3159080, + "offset": 3159090, "size": 520, }, "windows.js": { - "offset": 3159590, + "offset": 3159600, "size": 890, }, }, @@ -21486,15 +21486,15 @@ exports[`node_module collectors > pnpm max stack 2`] = ` "json-parse-better-errors": { "files": { "LICENSE.md": { - "offset": 3160480, + "offset": 3160490, "size": 1060, }, "index.js": { - "offset": 3161530, + "offset": 3161540, "size": 1090, }, "package.json": { - "offset": 3162620, + "offset": 3162630, "size": 680, }, }, @@ -21502,15 +21502,15 @@ exports[`node_module collectors > pnpm max stack 2`] = ` "load-json-file": { "files": { "index.js": { - "offset": 3163290, + "offset": 3163300, "size": 430, }, "license": { - "offset": 3163710, + "offset": 3163720, "size": 1120, }, "package.json": { - "offset": 3164830, + "offset": 3164840, "size": 550, }, }, @@ -21518,79 +21518,79 @@ exports[`node_module collectors > pnpm max stack 2`] = ` "math-intrinsics": { "files": { "LICENSE": { - "offset": 3165370, + "offset": 3165380, "size": 1080, }, "abs.js": { - "offset": 3166440, + "offset": 3166460, "size": 80, }, "constants": { "files": { "maxArrayLength.js": { - "offset": 3166520, + "offset": 3166530, "size": 110, }, "maxSafeInteger.js": { - "offset": 3166630, + "offset": 3166640, "size": 240, }, "maxValue.js": { - "offset": 3166860, + "offset": 3166870, "size": 200, }, }, }, "floor.js": { - "offset": 3167060, + "offset": 3167070, "size": 80, }, "isFinite.js": { - "offset": 3167130, + "offset": 3167140, "size": 270, }, "isInteger.js": { - "offset": 3167390, + "offset": 3167410, "size": 410, }, "isNaN.js": { - "offset": 3167800, + "offset": 3167820, "size": 130, }, "isNegativeZero.js": { - "offset": 3167930, + "offset": 3167940, "size": 150, }, "max.js": { - "offset": 3168070, + "offset": 3168080, "size": 80, }, "min.js": { - "offset": 3168140, + "offset": 3168150, "size": 80, }, "mod.js": { - "offset": 3168210, + "offset": 3168230, "size": 220, }, "package.json": { - "offset": 3168430, + "offset": 3168440, "size": 1940, }, "pow.js": { - "offset": 3170370, + "offset": 3170380, "size": 80, }, "round.js": { - "offset": 3170440, + "offset": 3170450, "size": 80, }, "sign.js": { - "offset": 3170520, + "offset": 3170530, "size": 220, }, "tsconfig.json": { - "offset": 3170730, + "offset": 3170740, "size": 40, }, }, @@ -21598,19 +21598,19 @@ exports[`node_module collectors > pnpm max stack 2`] = ` "memorystream": { "files": { "Gruntfile.js": { - "offset": 3170770, + "offset": 3170780, "size": 550, }, "LICENSE": { - "offset": 3171310, + "offset": 3171330, "size": 1060, }, "index.js": { - "offset": 3172370, + "offset": 3172380, "size": 6130, }, "package.json": { - "offset": 3178500, + "offset": 3178510, "size": 750, }, }, @@ -21618,15 +21618,15 @@ exports[`node_module collectors > pnpm max stack 2`] = ` "minimatch": { "files": { "LICENSE": { - "offset": 3179240, + "offset": 3179260, "size": 770, }, "minimatch.js": { - "offset": 3180010, - "size": 26380, + "offset": 3180020, + "size": 27460, }, "package.json": { - "offset": 3206390, + "offset": 3207480, "size": 530, }, }, @@ -21634,17 +21634,17 @@ exports[`node_module collectors > pnpm max stack 2`] = ` "nice-try": { "files": { "LICENSE": { - "offset": 3206920, + "offset": 3208010, "size": 1080, }, "package.json": { - "offset": 3208000, + "offset": 3209090, "size": 550, }, "src": { "files": { "index.js": { - "offset": 3208540, + "offset": 3209630, "size": 310, }, }, @@ -21654,47 +21654,47 @@ exports[`node_module collectors > pnpm max stack 2`] = ` "normalize-package-data": { "files": { "AUTHORS": { - "offset": 3208840, + "offset": 3209940, "size": 160, }, "LICENSE": { - "offset": 3208990, + "offset": 3210090, "size": 1400, }, "lib": { "files": { "extract_description.js": { - "offset": 3210390, + "offset": 3211480, "size": 510, }, "fixer.js": { - "offset": 3210900, + "offset": 3211990, "size": 11810, }, "make_warning.js": { - "offset": 3222700, + "offset": 3223790, "size": 710, }, "normalize.js": { - "offset": 3223410, + "offset": 3224500, "size": 1350, }, "safe_format.js": { - "offset": 3224750, + "offset": 3225840, "size": 250, }, "typos.json": { - "offset": 3225000, + "offset": 3226090, "size": 750, }, "warning_messages.json": { - "offset": 3225740, + "offset": 3226840, "size": 1800, }, }, }, "package.json": { - "offset": 3227540, + "offset": 3228640, "size": 680, }, }, @@ -21702,7 +21702,7 @@ exports[`node_module collectors > pnpm max stack 2`] = ` "npm-run-all": { "files": { "LICENSE": { - "offset": 3228220, + "offset": 3229310, "size": 1090, }, "bin": { @@ -21710,15 +21710,15 @@ exports[`node_module collectors > pnpm max stack 2`] = ` "common": { "files": { "bootstrap.js": { - "offset": 3229300, + "offset": 3230390, "size": 1490, }, "parse-cli-args.js": { - "offset": 3230780, + "offset": 3231880, "size": 7280, }, "version.js": { - "offset": 3238060, + "offset": 3239160, "size": 690, }, }, @@ -21726,16 +21726,16 @@ exports[`node_module collectors > pnpm max stack 2`] = ` "npm-run-all": { "files": { "help.js": { - "offset": 3238750, + "offset": 3239840, "size": 3180, }, "index.js": { "executable": true, - "offset": 3241930, + "offset": 3243020, "size": 400, }, "main.js": { - "offset": 3242320, + "offset": 3243420, "size": 2660, }, }, @@ -21743,16 +21743,16 @@ exports[`node_module collectors > pnpm max stack 2`] = ` "run-p": { "files": { "help.js": { - "offset": 3244980, + "offset": 3246070, "size": 2610, }, "index.js": { "executable": true, - "offset": 3247590, + "offset": 3248680, "size": 400, }, "main.js": { - "offset": 3247980, + "offset": 3249070, "size": 2370, }, }, @@ -21760,16 +21760,16 @@ exports[`node_module collectors > pnpm max stack 2`] = ` "run-s": { "files": { "help.js": { - "offset": 3250350, + "offset": 3251440, "size": 2200, }, "index.js": { "executable": true, - "offset": 3252540, + "offset": 3253630, "size": 400, }, "main.js": { - "offset": 3252930, + "offset": 3254020, "size": 2240, }, }, @@ -21779,19 +21779,19 @@ exports[`node_module collectors > pnpm max stack 2`] = ` "docs": { "files": { "node-api.md": { - "offset": 3255160, + "offset": 3256260, "size": 5070, }, "npm-run-all.md": { - "offset": 3260230, + "offset": 3261320, "size": 7070, }, "run-p.md": { - "offset": 3267290, + "offset": 3268380, "size": 5510, }, "run-s.md": { - "offset": 3272790, + "offset": 3273890, "size": 4890, }, }, @@ -21799,53 +21799,53 @@ exports[`node_module collectors > pnpm max stack 2`] = ` "lib": { "files": { "create-header.js": { - "offset": 3277680, + "offset": 3278770, "size": 1760, }, "create-prefix-transform-stream.js": { - "offset": 3279430, + "offset": 3280530, "size": 3210, }, "index.js": { - "offset": 3282640, + "offset": 3283730, "size": 10020, }, "match-tasks.js": { - "offset": 3292650, + "offset": 3293750, "size": 4030, }, "npm-run-all-error.js": { - "offset": 3296680, + "offset": 3297780, "size": 1420, }, "read-package-json.js": { - "offset": 3298100, + "offset": 3299200, "size": 980, }, "run-task.js": { - "offset": 3299080, + "offset": 3300180, "size": 7330, }, "run-tasks.js": { - "offset": 3306410, + "offset": 3307510, "size": 5140, }, "spawn-posix.js": { - "offset": 3311540, + "offset": 3312640, "size": 1850, }, "spawn-win32.js": { - "offset": 3313390, + "offset": 3314480, "size": 1570, }, "spawn.js": { - "offset": 3314950, + "offset": 3316050, "size": 610, }, }, }, "package.json": { - "offset": 3315550, + "offset": 3316650, "size": 1280, }, }, @@ -21853,31 +21853,31 @@ exports[`node_module collectors > pnpm max stack 2`] = ` "object-inspect": { "files": { ".nycrc": { - "offset": 3316830, + "offset": 3317920, "size": 240, }, "LICENSE": { - "offset": 3317070, + "offset": 3318160, "size": 1080, }, "index.js": { - "offset": 3318140, + "offset": 3319230, "size": 19060, }, "package-support.json": { - "offset": 3337200, + "offset": 3338290, "size": 370, }, "package.json": { - "offset": 3337560, + "offset": 3338650, "size": 2000, }, "test-core-js.js": { - "offset": 3339550, + "offset": 3340650, "size": 540, }, "util.inspect.js": { - "offset": 3340090, + "offset": 3341180, "size": 50, }, }, @@ -21885,27 +21885,27 @@ exports[`node_module collectors > pnpm max stack 2`] = ` "object-keys": { "files": { ".editorconfig": { - "offset": 3340130, + "offset": 3341220, "size": 280, }, "LICENSE": { - "offset": 3340400, + "offset": 3341500, "size": 1080, }, "implementation.js": { - "offset": 3341480, + "offset": 3342580, "size": 3220, }, "index.js": { - "offset": 3344700, + "offset": 3345800, "size": 830, }, "isArguments.js": { - "offset": 3345520, + "offset": 3346620, "size": 430, }, "package.json": { - "offset": 3345950, + "offset": 3347040, "size": 1130, }, }, @@ -21913,51 +21913,51 @@ exports[`node_module collectors > pnpm max stack 2`] = ` "object.assign": { "files": { ".editorconfig": { - "offset": 3347070, + "offset": 3348160, "size": 290, }, ".nycrc": { - "offset": 3347350, + "offset": 3348450, "size": 140, }, "LICENSE": { - "offset": 3347490, + "offset": 3348590, "size": 1080, }, "auto.js": { - "offset": 3348570, + "offset": 3349670, "size": 40, }, "dist": { "files": { "browser.js": { - "offset": 3348610, + "offset": 3349700, "size": 41570, }, }, }, "hasSymbols.js": { - "offset": 3390180, + "offset": 3391270, "size": 1620, }, "implementation.js": { - "offset": 3391790, + "offset": 3392890, "size": 1430, }, "index.js": { - "offset": 3393220, + "offset": 3394310, "size": 540, }, "package.json": { - "offset": 3393750, + "offset": 3394840, "size": 1630, }, "polyfill.js": { - "offset": 3395370, + "offset": 3396470, "size": 1300, }, "shim.js": { - "offset": 3396670, + "offset": 3397770, "size": 310, }, }, @@ -21965,23 +21965,23 @@ exports[`node_module collectors > pnpm max stack 2`] = ` "own-keys": { "files": { ".nycrc": { - "offset": 3396980, + "offset": 3398070, "size": 140, }, "LICENSE": { - "offset": 3397120, + "offset": 3398210, "size": 1080, }, "index.js": { - "offset": 3398190, + "offset": 3399280, "size": 590, }, "package.json": { - "offset": 3398770, + "offset": 3399870, "size": 1640, }, "tsconfig.json": { - "offset": 3400410, + "offset": 3401500, "size": 130, }, }, @@ -21989,15 +21989,15 @@ exports[`node_module collectors > pnpm max stack 2`] = ` "parse-json": { "files": { "index.js": { - "offset": 3400530, + "offset": 3401630, "size": 620, }, "license": { - "offset": 3401150, + "offset": 3402240, "size": 1110, }, "package.json": { - "offset": 3402260, + "offset": 3403350, "size": 550, }, }, @@ -22005,15 +22005,15 @@ exports[`node_module collectors > pnpm max stack 2`] = ` "path-key": { "files": { "index.js": { - "offset": 3402800, + "offset": 3403890, "size": 290, }, "license": { - "offset": 3403080, + "offset": 3404170, "size": 1120, }, "package.json": { - "offset": 3404200, + "offset": 3405290, "size": 430, }, }, @@ -22021,15 +22021,15 @@ exports[`node_module collectors > pnpm max stack 2`] = ` "path-parse": { "files": { "LICENSE": { - "offset": 3404630, + "offset": 3405720, "size": 1080, }, "index.js": { - "offset": 3405710, + "offset": 3406800, "size": 1900, }, "package.json": { - "offset": 3407600, + "offset": 3408690, "size": 370, }, }, @@ -22037,15 +22037,15 @@ exports[`node_module collectors > pnpm max stack 2`] = ` "path-type": { "files": { "index.js": { - "offset": 3407960, + "offset": 3409050, "size": 990, }, "license": { - "offset": 3408950, + "offset": 3410040, "size": 1110, }, "package.json": { - "offset": 3410060, + "offset": 3411150, "size": 470, }, }, @@ -22056,45 +22056,45 @@ exports[`node_module collectors > pnpm max stack 2`] = ` "files": { "pidtree.js": { "executable": true, - "offset": 3410530, + "offset": 3411620, "size": 2860, }, }, }, "index.js": { - "offset": 3413390, + "offset": 3414480, "size": 1350, }, "lib": { "files": { "bin.js": { - "offset": 3414730, + "offset": 3415830, "size": 1030, }, "get.js": { - "offset": 3415760, + "offset": 3416850, "size": 730, }, "pidtree.js": { - "offset": 3416480, + "offset": 3417570, "size": 2690, }, "ps.js": { - "offset": 3419160, + "offset": 3420260, "size": 1070, }, "wmic.js": { - "offset": 3420230, + "offset": 3421320, "size": 1180, }, }, }, "license": { - "offset": 3421410, + "offset": 3422500, "size": 1080, }, "package.json": { - "offset": 3422480, + "offset": 3423580, "size": 810, }, }, @@ -22102,15 +22102,15 @@ exports[`node_module collectors > pnpm max stack 2`] = ` "pify": { "files": { "index.js": { - "offset": 3423290, + "offset": 3424380, "size": 1810, }, "license": { - "offset": 3425100, + "offset": 3426190, "size": 1110, }, "package.json": { - "offset": 3426210, + "offset": 3427300, "size": 470, }, }, @@ -22118,19 +22118,19 @@ exports[`node_module collectors > pnpm max stack 2`] = ` "possible-typed-array-names": { "files": { "LICENSE": { - "offset": 3426670, + "offset": 3427760, "size": 1080, }, "index.js": { - "offset": 3427740, + "offset": 3428830, "size": 270, }, "package.json": { - "offset": 3428000, + "offset": 3429100, "size": 1300, }, "tsconfig.json": { - "offset": 3429290, + "offset": 3430390, "size": 120, }, }, @@ -22138,15 +22138,15 @@ exports[`node_module collectors > pnpm max stack 2`] = ` "read-pkg": { "files": { "index.js": { - "offset": 3429410, + "offset": 3430500, "size": 820, }, "license": { - "offset": 3430220, + "offset": 3431320, "size": 1110, }, "package.json": { - "offset": 3431330, + "offset": 3432430, "size": 530, }, }, @@ -22154,35 +22154,35 @@ exports[`node_module collectors > pnpm max stack 2`] = ` "reflect.getprototypeof": { "files": { ".nycrc": { - "offset": 3431850, + "offset": 3432950, "size": 140, }, "LICENSE": { - "offset": 3431990, + "offset": 3433090, "size": 1080, }, "auto.js": { - "offset": 3433070, + "offset": 3434160, "size": 40, }, "implementation.js": { - "offset": 3433100, + "offset": 3434200, "size": 1100, }, "index.js": { - "offset": 3434190, + "offset": 3435290, "size": 430, }, "package.json": { - "offset": 3434610, + "offset": 3435710, "size": 1810, }, "polyfill.js": { - "offset": 3436420, + "offset": 3437510, "size": 350, }, "shim.js": { - "offset": 3436770, + "offset": 3437860, "size": 470, }, }, @@ -22190,39 +22190,39 @@ exports[`node_module collectors > pnpm max stack 2`] = ` "regexp.prototype.flags": { "files": { ".editorconfig": { - "offset": 3437230, + "offset": 3438320, "size": 280, }, ".nycrc": { - "offset": 3437510, + "offset": 3438600, "size": 140, }, "LICENSE": { - "offset": 3437650, + "offset": 3438740, "size": 1090, }, "auto.js": { - "offset": 3438730, + "offset": 3439820, "size": 40, }, "implementation.js": { - "offset": 3438760, + "offset": 3439860, "size": 710, }, "index.js": { - "offset": 3439470, + "offset": 3440570, "size": 390, }, "package.json": { - "offset": 3439860, + "offset": 3440960, "size": 1920, }, "polyfill.js": { - "offset": 3441780, + "offset": 3442870, "size": 870, }, "shim.js": { - "offset": 3442640, + "offset": 3443740, "size": 780, }, }, @@ -22230,80 +22230,80 @@ exports[`node_module collectors > pnpm max stack 2`] = ` "resolve": { "files": { ".editorconfig": { - "offset": 3443420, + "offset": 3444520, "size": 610, }, "LICENSE": { - "offset": 3444030, + "offset": 3445120, "size": 1080, }, "SECURITY.md": { - "offset": 3445100, + "offset": 3446190, "size": 360, }, "async.js": { - "offset": 3445450, + "offset": 3446550, "size": 60, }, "bin": { "files": { "resolve": { "executable": true, - "offset": 3445510, + "offset": 3446600, "size": 1540, }, }, }, "index.js": { - "offset": 3447050, + "offset": 3448140, "size": 180, }, "lib": { "files": { "async.js": { - "offset": 3447220, + "offset": 3448310, "size": 11520, }, "caller.js": { - "offset": 3458740, + "offset": 3459830, "size": 360, }, "core.js": { - "offset": 3459090, + "offset": 3460180, "size": 310, }, "core.json": { - "offset": 3459400, + "offset": 3460490, "size": 5960, }, "homedir.js": { - "offset": 3465350, + "offset": 3466450, "size": 810, }, "is-core.js": { - "offset": 3466160, + "offset": 3467250, "size": 120, }, "node-modules-paths.js": { - "offset": 3466270, + "offset": 3467370, "size": 1370, }, "normalize-options.js": { - "offset": 3467640, + "offset": 3468730, "size": 350, }, "sync.js": { - "offset": 3467990, + "offset": 3469080, "size": 7150, }, }, }, "package.json": { - "offset": 3475130, + "offset": 3476230, "size": 1320, }, "sync.js": { - "offset": 3476450, + "offset": 3477550, "size": 60, }, }, @@ -22311,23 +22311,23 @@ exports[`node_module collectors > pnpm max stack 2`] = ` "safe-array-concat": { "files": { ".nycrc": { - "offset": 3476510, + "offset": 3477600, "size": 220, }, "LICENSE": { - "offset": 3476720, + "offset": 3477820, "size": 1080, }, "index.js": { - "offset": 3477790, + "offset": 3478890, "size": 1880, }, "package.json": { - "offset": 3479670, + "offset": 3480760, "size": 1720, }, "tsconfig.json": { - "offset": 3481380, + "offset": 3482480, "size": 130, }, }, @@ -22335,23 +22335,23 @@ exports[`node_module collectors > pnpm max stack 2`] = ` "safe-push-apply": { "files": { ".nycrc": { - "offset": 3481510, + "offset": 3482600, "size": 220, }, "LICENSE": { - "offset": 3481720, + "offset": 3482820, "size": 1080, }, "index.js": { - "offset": 3482790, + "offset": 3483890, "size": 390, }, "package.json": { - "offset": 3483180, + "offset": 3484270, "size": 1460, }, "tsconfig.json": { - "offset": 3484630, + "offset": 3485730, "size": 130, }, }, @@ -22359,23 +22359,23 @@ exports[`node_module collectors > pnpm max stack 2`] = ` "safe-regex-test": { "files": { ".nycrc": { - "offset": 3484760, + "offset": 3485850, "size": 220, }, "LICENSE": { - "offset": 3484970, + "offset": 3486070, "size": 1080, }, "index.js": { - "offset": 3486050, + "offset": 3487140, "size": 410, }, "package.json": { - "offset": 3486450, + "offset": 3487540, "size": 1590, }, "tsconfig.json": { - "offset": 3488030, + "offset": 3489130, "size": 120, }, }, @@ -22383,28 +22383,28 @@ exports[`node_module collectors > pnpm max stack 2`] = ` "semver": { "files": { "LICENSE": { - "offset": 3488150, + "offset": 3489240, "size": 770, }, "bin": { "files": { "semver": { "executable": true, - "offset": 3488920, + "offset": 3490010, "size": 4420, }, }, }, "package.json": { - "offset": 3493330, + "offset": 3494430, "size": 670, }, "range.bnf": { - "offset": 3494000, + "offset": 3495090, "size": 620, }, "semver.js": { - "offset": 3494620, + "offset": 3495710, "size": 40820, }, }, @@ -22412,27 +22412,27 @@ exports[`node_module collectors > pnpm max stack 2`] = ` "set-function-length": { "files": { ".nycrc": { - "offset": 3535430, + "offset": 3536530, "size": 220, }, "LICENSE": { - "offset": 3535650, + "offset": 3536740, "size": 1090, }, "env.js": { - "offset": 3536730, + "offset": 3537820, "size": 870, }, "index.js": { - "offset": 3537600, + "offset": 3538690, "size": 1280, }, "package.json": { - "offset": 3538870, + "offset": 3539960, "size": 1960, }, "tsconfig.json": { - "offset": 3540820, + "offset": 3541920, "size": 120, }, }, @@ -22440,19 +22440,19 @@ exports[`node_module collectors > pnpm max stack 2`] = ` "set-function-name": { "files": { "LICENSE": { - "offset": 3540940, + "offset": 3542030, "size": 1090, }, "index.js": { - "offset": 3542020, + "offset": 3543120, "size": 750, }, "package.json": { - "offset": 3542770, + "offset": 3543860, "size": 2130, }, "tsconfig.json": { - "offset": 3544890, + "offset": 3545990, "size": 4890, }, }, @@ -22460,31 +22460,31 @@ exports[`node_module collectors > pnpm max stack 2`] = ` "set-proto": { "files": { ".nycrc": { - "offset": 3549780, + "offset": 3550880, "size": 140, }, "LICENSE": { - "offset": 3549920, + "offset": 3551010, "size": 1080, }, "Object.setPrototypeOf.js": { - "offset": 3550990, + "offset": 3552090, "size": 160, }, "Reflect.setPrototypeOf.js": { - "offset": 3551150, + "offset": 3552240, "size": 150, }, "index.js": { - "offset": 3551300, + "offset": 3552390, "size": 740, }, "package.json": { - "offset": 3552030, + "offset": 3553120, "size": 1460, }, "tsconfig.json": { - "offset": 3553480, + "offset": 3554580, "size": 120, }, }, @@ -22492,15 +22492,15 @@ exports[`node_module collectors > pnpm max stack 2`] = ` "shebang-command": { "files": { "index.js": { - "offset": 3553600, + "offset": 3554690, "size": 350, }, "license": { - "offset": 3553950, + "offset": 3555040, "size": 1130, }, "package.json": { - "offset": 3555070, + "offset": 3556170, "size": 480, }, }, @@ -22508,15 +22508,15 @@ exports[`node_module collectors > pnpm max stack 2`] = ` "shebang-regex": { "files": { "index.js": { - "offset": 3555550, + "offset": 3556640, "size": 40, }, "license": { - "offset": 3555590, + "offset": 3556680, "size": 1120, }, "package.json": { - "offset": 3556710, + "offset": 3557800, "size": 420, }, }, @@ -22524,36 +22524,36 @@ exports[`node_module collectors > pnpm max stack 2`] = ` "shell-quote": { "files": { ".nycrc": { - "offset": 3557130, + "offset": 3558220, "size": 230, }, "LICENSE": { - "offset": 3557360, + "offset": 3558450, "size": 1110, }, "index.js": { - "offset": 3558460, + "offset": 3559560, "size": 90, }, "package.json": { - "offset": 3558550, + "offset": 3559650, "size": 1200, }, "parse.js": { - "offset": 3559750, + "offset": 3560840, "size": 5190, }, "print.py": { "executable": true, - "offset": 3564930, + "offset": 3566030, "size": 60, }, "quote.js": { - "offset": 3564990, + "offset": 3566080, "size": 500, }, "security.md": { - "offset": 3565480, + "offset": 3566580, "size": 300, }, }, @@ -22561,27 +22561,27 @@ exports[`node_module collectors > pnpm max stack 2`] = ` "side-channel": { "files": { ".editorconfig": { - "offset": 3565780, + "offset": 3566870, "size": 150, }, ".nycrc": { - "offset": 3565920, + "offset": 3567020, "size": 220, }, "LICENSE": { - "offset": 3566140, + "offset": 3567230, "size": 1080, }, "index.js": { - "offset": 3567210, + "offset": 3568300, "size": 1190, }, "package.json": { - "offset": 3568400, + "offset": 3569490, "size": 1570, }, "tsconfig.json": { - "offset": 3569960, + "offset": 3571060, "size": 120, }, }, @@ -22589,27 +22589,27 @@ exports[`node_module collectors > pnpm max stack 2`] = ` "side-channel-list": { "files": { ".editorconfig": { - "offset": 3570080, + "offset": 3571170, "size": 150, }, ".nycrc": { - "offset": 3570220, + "offset": 3571320, "size": 220, }, "LICENSE": { - "offset": 3570440, + "offset": 3571530, "size": 1080, }, "index.js": { - "offset": 3571510, + "offset": 3572610, "size": 3400, }, "package.json": { - "offset": 3574900, + "offset": 3576000, "size": 1490, }, "tsconfig.json": { - "offset": 3576390, + "offset": 3577490, "size": 120, }, }, @@ -22617,27 +22617,27 @@ exports[`node_module collectors > pnpm max stack 2`] = ` "side-channel-map": { "files": { ".editorconfig": { - "offset": 3576510, + "offset": 3577600, "size": 150, }, ".nycrc": { - "offset": 3576650, + "offset": 3577750, "size": 220, }, "LICENSE": { - "offset": 3576870, + "offset": 3577960, "size": 1080, }, "index.js": { - "offset": 3577940, + "offset": 3579030, "size": 1990, }, "package.json": { - "offset": 3579920, + "offset": 3581020, "size": 1580, }, "tsconfig.json": { - "offset": 3581500, + "offset": 3582590, "size": 120, }, }, @@ -22645,27 +22645,27 @@ exports[`node_module collectors > pnpm max stack 2`] = ` "side-channel-weakmap": { "files": { ".editorconfig": { - "offset": 3581610, + "offset": 3582710, "size": 150, }, ".nycrc": { - "offset": 3581760, + "offset": 3582850, "size": 220, }, "LICENSE": { - "offset": 3581970, + "offset": 3583070, "size": 1080, }, "index.js": { - "offset": 3583050, + "offset": 3584140, "size": 2710, }, "package.json": { - "offset": 3585750, + "offset": 3586850, "size": 1650, }, "tsconfig.json": { - "offset": 3587400, + "offset": 3588490, "size": 120, }, }, @@ -22673,15 +22673,15 @@ exports[`node_module collectors > pnpm max stack 2`] = ` "spdx-correct": { "files": { "LICENSE": { - "offset": 3587520, + "offset": 3588610, "size": 11360, }, "index.js": { - "offset": 3598870, + "offset": 3599970, "size": 10760, }, "package.json": { - "offset": 3609630, + "offset": 3610720, "size": 490, }, }, @@ -22689,15 +22689,15 @@ exports[`node_module collectors > pnpm max stack 2`] = ` "spdx-exceptions": { "files": { "deprecated.json": { - "offset": 3610110, + "offset": 3611200, "size": 40, }, "index.json": { - "offset": 3610140, + "offset": 3611230, "size": 1740, }, "package.json": { - "offset": 3611870, + "offset": 3612970, "size": 290, }, }, @@ -22705,27 +22705,27 @@ exports[`node_module collectors > pnpm max stack 2`] = ` "spdx-expression-parse": { "files": { "AUTHORS": { - "offset": 3612160, + "offset": 3613250, "size": 210, }, "LICENSE": { - "offset": 3612360, + "offset": 3613450, "size": 1120, }, "index.js": { - "offset": 3613470, + "offset": 3614560, "size": 150, }, "package.json": { - "offset": 3613610, + "offset": 3614710, "size": 560, }, "parse.js": { - "offset": 3614170, + "offset": 3615260, "size": 2910, }, "scan.js": { - "offset": 3617070, + "offset": 3618160, "size": 2760, }, }, @@ -22733,15 +22733,15 @@ exports[`node_module collectors > pnpm max stack 2`] = ` "spdx-license-ids": { "files": { "deprecated.json": { - "offset": 3619820, + "offset": 3620920, "size": 520, }, "index.json": { - "offset": 3620330, + "offset": 3621430, "size": 11290, }, "package.json": { - "offset": 3631620, + "offset": 3632710, "size": 310, }, }, @@ -22749,23 +22749,23 @@ exports[`node_module collectors > pnpm max stack 2`] = ` "stop-iteration-iterator": { "files": { ".nycrc": { - "offset": 3631920, + "offset": 3633010, "size": 220, }, "LICENSE": { - "offset": 3632130, + "offset": 3633230, "size": 1080, }, "index.js": { - "offset": 3633210, + "offset": 3634300, "size": 1310, }, "package.json": { - "offset": 3634510, + "offset": 3635610, "size": 1420, }, "tsconfig.json": { - "offset": 3635930, + "offset": 3637020, "size": 70, }, }, @@ -22773,39 +22773,39 @@ exports[`node_module collectors > pnpm max stack 2`] = ` "string.prototype.padend": { "files": { ".editorconfig": { - "offset": 3636000, + "offset": 3637090, "size": 290, }, ".nycrc": { - "offset": 3636280, + "offset": 3637380, "size": 140, }, "LICENSE": { - "offset": 3636420, + "offset": 3637510, "size": 1090, }, "auto.js": { - "offset": 3637500, + "offset": 3638600, "size": 40, }, "implementation.js": { - "offset": 3637540, + "offset": 3638630, "size": 1110, }, "index.js": { - "offset": 3638650, + "offset": 3639740, "size": 660, }, "package.json": { - "offset": 3639310, + "offset": 3640400, "size": 1700, }, "polyfill.js": { - "offset": 3641000, + "offset": 3642100, "size": 210, }, "shim.js": { - "offset": 3641210, + "offset": 3642310, "size": 340, }, }, @@ -22813,39 +22813,39 @@ exports[`node_module collectors > pnpm max stack 2`] = ` "string.prototype.trim": { "files": { ".editorconfig": { - "offset": 3641550, + "offset": 3642640, "size": 290, }, ".nycrc": { - "offset": 3641830, + "offset": 3642930, "size": 140, }, "LICENSE": { - "offset": 3641970, + "offset": 3643060, "size": 1090, }, "auto.js": { - "offset": 3643050, + "offset": 3644150, "size": 40, }, "implementation.js": { - "offset": 3643090, + "offset": 3644180, "size": 1180, }, "index.js": { - "offset": 3644260, + "offset": 3645350, "size": 580, }, "package.json": { - "offset": 3644830, + "offset": 3645930, "size": 1870, }, "polyfill.js": { - "offset": 3646700, + "offset": 3647790, "size": 550, }, "shim.js": { - "offset": 3647240, + "offset": 3648340, "size": 500, }, }, @@ -22853,39 +22853,39 @@ exports[`node_module collectors > pnpm max stack 2`] = ` "string.prototype.trimend": { "files": { ".editorconfig": { - "offset": 3647740, + "offset": 3648830, "size": 290, }, ".nycrc": { - "offset": 3648020, + "offset": 3649120, "size": 140, }, "LICENSE": { - "offset": 3648160, + "offset": 3649260, "size": 1080, }, "auto.js": { - "offset": 3649230, + "offset": 3650330, "size": 40, }, "implementation.js": { - "offset": 3649270, + "offset": 3650360, "size": 640, }, "index.js": { - "offset": 3649910, + "offset": 3651000, "size": 580, }, "package.json": { - "offset": 3650480, + "offset": 3651570, "size": 1250, }, "polyfill.js": { - "offset": 3651720, + "offset": 3652820, "size": 460, }, "shim.js": { - "offset": 3652180, + "offset": 3653280, "size": 330, }, }, @@ -22893,39 +22893,39 @@ exports[`node_module collectors > pnpm max stack 2`] = ` "string.prototype.trimstart": { "files": { ".editorconfig": { - "offset": 3652510, + "offset": 3653610, "size": 290, }, ".nycrc": { - "offset": 3652800, + "offset": 3653890, "size": 140, }, "LICENSE": { - "offset": 3652940, + "offset": 3654030, "size": 1080, }, "auto.js": { - "offset": 3654010, + "offset": 3655100, "size": 40, }, "implementation.js": { - "offset": 3654050, + "offset": 3655140, "size": 650, }, "index.js": { - "offset": 3654700, + "offset": 3655790, "size": 580, }, "package.json": { - "offset": 3655270, + "offset": 3656360, "size": 1220, }, "polyfill.js": { - "offset": 3656490, + "offset": 3657580, "size": 470, }, "shim.js": { - "offset": 3656950, + "offset": 3658040, "size": 340, }, }, @@ -22933,15 +22933,15 @@ exports[`node_module collectors > pnpm max stack 2`] = ` "strip-bom": { "files": { "index.js": { - "offset": 3657290, + "offset": 3658380, "size": 320, }, "license": { - "offset": 3657600, + "offset": 3658700, "size": 1120, }, "package.json": { - "offset": 3658720, + "offset": 3659820, "size": 430, }, }, @@ -22949,19 +22949,19 @@ exports[`node_module collectors > pnpm max stack 2`] = ` "supports-color": { "files": { "browser.js": { - "offset": 3659150, + "offset": 3660240, "size": 70, }, "index.js": { - "offset": 3659210, + "offset": 3660310, "size": 2780, }, "license": { - "offset": 3661980, + "offset": 3663080, "size": 1110, }, "package.json": { - "offset": 3663090, + "offset": 3664190, "size": 560, }, }, @@ -22969,23 +22969,23 @@ exports[`node_module collectors > pnpm max stack 2`] = ` "supports-preserve-symlinks-flag": { "files": { ".nycrc": { - "offset": 3663650, + "offset": 3664740, "size": 140, }, "LICENSE": { - "offset": 3663790, + "offset": 3664880, "size": 1070, }, "browser.js": { - "offset": 3664850, + "offset": 3665950, "size": 40, }, "index.js": { - "offset": 3664890, + "offset": 3665990, "size": 300, }, "package.json": { - "offset": 3665190, + "offset": 3666280, "size": 1270, }, }, @@ -22993,23 +22993,23 @@ exports[`node_module collectors > pnpm max stack 2`] = ` "typed-array-buffer": { "files": { ".nycrc": { - "offset": 3666450, + "offset": 3667550, "size": 220, }, "LICENSE": { - "offset": 3666670, + "offset": 3667760, "size": 1080, }, "index.js": { - "offset": 3667740, + "offset": 3668830, "size": 600, }, "package.json": { - "offset": 3668330, + "offset": 3669420, "size": 1600, }, "tsconfig.json": { - "offset": 3669920, + "offset": 3671020, "size": 120, }, }, @@ -23017,23 +23017,23 @@ exports[`node_module collectors > pnpm max stack 2`] = ` "typed-array-byte-length": { "files": { ".nycrc": { - "offset": 3670040, + "offset": 3671130, "size": 220, }, "LICENSE": { - "offset": 3670250, + "offset": 3671350, "size": 1070, }, "index.js": { - "offset": 3671320, + "offset": 3672420, "size": 2750, }, "package.json": { - "offset": 3674070, + "offset": 3675160, "size": 2020, }, "tsconfig.json": { - "offset": 3676080, + "offset": 3677180, "size": 120, }, }, @@ -23041,23 +23041,23 @@ exports[`node_module collectors > pnpm max stack 2`] = ` "typed-array-byte-offset": { "files": { ".nycrc": { - "offset": 3676200, + "offset": 3677290, "size": 220, }, "LICENSE": { - "offset": 3676410, + "offset": 3677510, "size": 1070, }, "index.js": { - "offset": 3677480, + "offset": 3678580, "size": 2490, }, "package.json": { - "offset": 3679970, + "offset": 3681060, "size": 2130, }, "tsconfig.json": { - "offset": 3682090, + "offset": 3683190, "size": 150, }, }, @@ -23065,23 +23065,23 @@ exports[`node_module collectors > pnpm max stack 2`] = ` "typed-array-length": { "files": { ".nycrc": { - "offset": 3682240, + "offset": 3683330, "size": 220, }, "LICENSE": { - "offset": 3682450, + "offset": 3683550, "size": 1070, }, "index.js": { - "offset": 3683520, + "offset": 3684610, "size": 2950, }, "package.json": { - "offset": 3686460, + "offset": 3687560, "size": 2000, }, "tsconfig.json": { - "offset": 3688460, + "offset": 3689560, "size": 150, }, }, @@ -23089,27 +23089,27 @@ exports[`node_module collectors > pnpm max stack 2`] = ` "unbox-primitive": { "files": { ".editorconfig": { - "offset": 3688610, + "offset": 3689700, "size": 290, }, ".nycrc": { - "offset": 3688890, + "offset": 3689990, "size": 220, }, "LICENSE": { - "offset": 3689110, + "offset": 3690200, "size": 1080, }, "index.js": { - "offset": 3690180, + "offset": 3691270, "size": 1540, }, "package.json": { - "offset": 3691710, + "offset": 3692810, "size": 1540, }, "tsconfig.json": { - "offset": 3693250, + "offset": 3694340, "size": 70, }, }, @@ -23117,15 +23117,15 @@ exports[`node_module collectors > pnpm max stack 2`] = ` "validate-npm-package-license": { "files": { "LICENSE": { - "offset": 3693320, + "offset": 3694410, "size": 11360, }, "index.js": { - "offset": 3704670, + "offset": 3705770, "size": 1930, }, "package.json": { - "offset": 3706600, + "offset": 3707690, "size": 520, }, }, @@ -23133,24 +23133,24 @@ exports[`node_module collectors > pnpm max stack 2`] = ` "which": { "files": { "LICENSE": { - "offset": 3707120, + "offset": 3708210, "size": 770, }, "bin": { "files": { "which": { "executable": true, - "offset": 3707880, + "offset": 3708980, "size": 990, }, }, }, "package.json": { - "offset": 3708870, + "offset": 3709960, "size": 570, }, "which.js": { - "offset": 3709430, + "offset": 3710530, "size": 3190, }, }, @@ -23158,27 +23158,27 @@ exports[`node_module collectors > pnpm max stack 2`] = ` "which-boxed-primitive": { "files": { ".editorconfig": { - "offset": 3712620, + "offset": 3713710, "size": 290, }, ".nycrc": { - "offset": 3712900, + "offset": 3714000, "size": 220, }, "LICENSE": { - "offset": 3713120, + "offset": 3714210, "size": 1080, }, "index.js": { - "offset": 3714190, + "offset": 3715280, "size": 720, }, "package.json": { - "offset": 3714910, + "offset": 3716000, "size": 1540, }, "tsconfig.json": { - "offset": 3716440, + "offset": 3717540, "size": 120, }, }, @@ -23186,23 +23186,23 @@ exports[`node_module collectors > pnpm max stack 2`] = ` "which-builtin-type": { "files": { ".nycrc": { - "offset": 3716560, + "offset": 3717650, "size": 140, }, "LICENSE": { - "offset": 3716700, + "offset": 3717790, "size": 1080, }, "index.js": { - "offset": 3717770, + "offset": 3718860, "size": 3960, }, "package.json": { - "offset": 3721720, + "offset": 3722820, "size": 2570, }, "tsconfig.json": { - "offset": 3724280, + "offset": 3725380, "size": 130, }, }, @@ -23210,23 +23210,23 @@ exports[`node_module collectors > pnpm max stack 2`] = ` "which-collection": { "files": { ".nycrc": { - "offset": 3724410, + "offset": 3725500, "size": 220, }, "LICENSE": { - "offset": 3724620, + "offset": 3725720, "size": 1070, }, "index.js": { - "offset": 3725690, + "offset": 3726780, "size": 510, }, "package.json": { - "offset": 3726200, + "offset": 3727290, "size": 1620, }, "tsconfig.json": { - "offset": 3727810, + "offset": 3728910, "size": 3620, }, }, @@ -23234,27 +23234,27 @@ exports[`node_module collectors > pnpm max stack 2`] = ` "which-typed-array": { "files": { ".editorconfig": { - "offset": 3731420, + "offset": 3732520, "size": 290, }, ".nycrc": { - "offset": 3731710, + "offset": 3732800, "size": 220, }, "LICENSE": { - "offset": 3731930, + "offset": 3733020, "size": 1090, }, "index.js": { - "offset": 3733010, + "offset": 3734100, "size": 3770, }, "package.json": { - "offset": 3736770, + "offset": 3737870, "size": 2310, }, "tsconfig.json": { - "offset": 3739080, + "offset": 3740170, "size": 130, }, }, @@ -23262,7 +23262,7 @@ exports[`node_module collectors > pnpm max stack 2`] = ` }, }, "package.json": { - "offset": 3740200, + "offset": 3741290, "size": 370, }, }, @@ -28476,11 +28476,11 @@ exports[`node_module collectors > pnpm workspace with native module 2`] = ` { "files": { "index.html": { - "offset": 526550, + "offset": 526790, "size": 850, }, "index.js": { - "offset": 527400, + "offset": 527630, "size": 2510, }, "node_modules": { @@ -28921,14 +28921,14 @@ exports[`node_module collectors > pnpm workspace with native module 2`] = ` }, "abi_registry.json": { "offset": 200980, - "size": 7280, + "size": 7410, }, "index.js": { - "offset": 208260, + "offset": 208390, "size": 6490, }, "package.json": { - "offset": 214750, + "offset": 214870, "size": 850, }, }, @@ -28936,15 +28936,15 @@ exports[`node_module collectors > pnpm workspace with native module 2`] = ` "once": { "files": { "LICENSE": { - "offset": 215590, + "offset": 215720, "size": 770, }, "once.js": { - "offset": 216360, + "offset": 216480, "size": 940, }, "package.json": { - "offset": 217290, + "offset": 217420, "size": 460, }, }, @@ -28952,56 +28952,56 @@ exports[`node_module collectors > pnpm workspace with native module 2`] = ` "prebuild-install": { "files": { "CONTRIBUTING.md": { - "offset": 217750, + "offset": 217870, "size": 220, }, "LICENSE": { - "offset": 217960, + "offset": 218090, "size": 1080, }, "asset.js": { - "offset": 219040, + "offset": 219170, "size": 1130, }, "bin.js": { "executable": true, - "offset": 220170, + "offset": 220290, "size": 2310, }, "download.js": { - "offset": 222470, + "offset": 222600, "size": 4100, }, "error.js": { - "offset": 226570, + "offset": 226700, "size": 360, }, "help.txt": { - "offset": 226930, + "offset": 227050, "size": 1080, }, "index.js": { - "offset": 228010, + "offset": 228130, "size": 50, }, "log.js": { - "offset": 228050, + "offset": 228170, "size": 630, }, "package.json": { - "offset": 228670, + "offset": 228800, "size": 1050, }, "proxy.js": { - "offset": 229720, + "offset": 229840, "size": 1150, }, "rc.js": { - "offset": 230860, + "offset": 230990, "size": 2140, }, "util.js": { - "offset": 233000, + "offset": 233120, "size": 4280, }, }, @@ -29009,27 +29009,31 @@ exports[`node_module collectors > pnpm workspace with native module 2`] = ` "pump": { "files": { "LICENSE": { - "offset": 237280, + "offset": 237400, "size": 1080, }, "SECURITY.md": { - "offset": 238350, + "offset": 238480, "size": 200, }, + "empty.js": { + "offset": 238670, + "size": 30, + }, "index.js": { - "offset": 238550, + "offset": 238690, "size": 2300, }, "package.json": { - "offset": 240840, - "size": 380, + "offset": 240990, + "size": 470, }, "test-browser.js": { - "offset": 241210, + "offset": 241450, "size": 1180, }, "test-node.js": { - "offset": 242390, + "offset": 242620, "size": 1000, }, }, @@ -29037,41 +29041,41 @@ exports[`node_module collectors > pnpm workspace with native module 2`] = ` "rc": { "files": { "LICENSE.APACHE2": { - "offset": 243380, + "offset": 243610, "size": 590, }, "LICENSE.BSD": { - "offset": 243960, + "offset": 244200, "size": 1520, }, "LICENSE.MIT": { - "offset": 245480, + "offset": 245710, "size": 1090, }, "browser.js": { - "offset": 246570, + "offset": 246800, "size": 140, }, "cli.js": { "executable": true, - "offset": 246710, + "offset": 246940, "size": 110, }, "index.js": { "executable": true, - "offset": 246810, + "offset": 247050, "size": 1510, }, "lib": { "files": { "utils.js": { - "offset": 248320, + "offset": 248550, "size": 2760, }, }, }, "package.json": { - "offset": 251080, + "offset": 251310, "size": 520, }, }, @@ -29079,49 +29083,49 @@ exports[`node_module collectors > pnpm workspace with native module 2`] = ` "readable-stream": { "files": { "CONTRIBUTING.md": { - "offset": 251590, + "offset": 251820, "size": 1450, }, "GOVERNANCE.md": { - "offset": 253030, + "offset": 253270, "size": 5550, }, "LICENSE": { - "offset": 258580, + "offset": 258820, "size": 2340, }, "errors-browser.js": { - "offset": 260920, + "offset": 261150, "size": 4200, }, "errors.js": { - "offset": 265120, + "offset": 265350, "size": 3720, }, "experimentalWarning.js": { - "offset": 268830, + "offset": 269070, "size": 460, }, "lib": { "files": { "_stream_duplex.js": { - "offset": 269290, + "offset": 269530, "size": 4390, }, "_stream_passthrough.js": { - "offset": 273670, + "offset": 273910, "size": 1630, }, "_stream_readable.js": { - "offset": 275300, + "offset": 275540, "size": 36030, }, "_stream_transform.js": { - "offset": 311320, + "offset": 311560, "size": 7940, }, "_stream_writable.js": { - "offset": 319260, + "offset": 319490, "size": 21910, }, "internal": { @@ -29129,43 +29133,43 @@ exports[`node_module collectors > pnpm workspace with native module 2`] = ` "streams": { "files": { "async_iterator.js": { - "offset": 341170, + "offset": 341400, "size": 6470, }, "buffer_list.js": { - "offset": 347640, + "offset": 347870, "size": 6910, }, "destroy.js": { - "offset": 354540, + "offset": 354770, "size": 3110, }, "end-of-stream.js": { - "offset": 357650, + "offset": 357880, "size": 3090, }, "from-browser.js": { - "offset": 360730, + "offset": 360970, "size": 110, }, "from.js": { - "offset": 360830, + "offset": 361070, "size": 3670, }, "pipeline.js": { - "offset": 364500, + "offset": 364740, "size": 2420, }, "state.js": { - "offset": 366920, + "offset": 367150, "size": 750, }, "stream-browser.js": { - "offset": 367660, + "offset": 367900, "size": 50, }, "stream.js": { - "offset": 367710, + "offset": 367950, "size": 40, }, }, @@ -29175,15 +29179,15 @@ exports[`node_module collectors > pnpm workspace with native module 2`] = ` }, }, "package.json": { - "offset": 367750, + "offset": 367980, "size": 1300, }, "readable-browser.js": { - "offset": 369050, + "offset": 369280, "size": 490, }, "readable.js": { - "offset": 369540, + "offset": 369770, "size": 730, }, }, @@ -29191,15 +29195,15 @@ exports[`node_module collectors > pnpm workspace with native module 2`] = ` "safe-buffer": { "files": { "LICENSE": { - "offset": 370260, + "offset": 370500, "size": 1090, }, "index.js": { - "offset": 371350, + "offset": 371580, "size": 1670, }, "package.json": { - "offset": 373020, + "offset": 373250, "size": 780, }, }, @@ -29207,14 +29211,14 @@ exports[`node_module collectors > pnpm workspace with native module 2`] = ` "semver": { "files": { "LICENSE": { - "offset": 373790, + "offset": 374020, "size": 770, }, "bin": { "files": { "semver.js": { "executable": true, - "offset": 374550, + "offset": 374790, "size": 4750, }, }, @@ -29222,19 +29226,19 @@ exports[`node_module collectors > pnpm workspace with native module 2`] = ` "classes": { "files": { "comparator.js": { - "offset": 379300, + "offset": 379540, "size": 3640, }, "index.js": { - "offset": 382930, + "offset": 383170, "size": 150, }, "range.js": { - "offset": 383080, + "offset": 383310, "size": 14980, }, "semver.js": { - "offset": 398050, + "offset": 398290, "size": 9480, }, }, @@ -29242,191 +29246,191 @@ exports[`node_module collectors > pnpm workspace with native module 2`] = ` "functions": { "files": { "clean.js": { - "offset": 407530, + "offset": 407770, "size": 210, }, "cmp.js": { - "offset": 407740, + "offset": 407970, "size": 970, }, "coerce.js": { - "offset": 408700, + "offset": 408930, "size": 2010, }, "compare-build.js": { - "offset": 410700, + "offset": 410940, "size": 290, }, "compare-loose.js": { - "offset": 410980, + "offset": 411220, "size": 140, }, "compare.js": { - "offset": 411120, + "offset": 411350, "size": 170, }, "diff.js": { - "offset": 411290, + "offset": 411520, "size": 1430, }, "eq.js": { - "offset": 412710, + "offset": 412940, "size": 130, }, "gt.js": { - "offset": 412840, + "offset": 413070, "size": 130, }, "gte.js": { - "offset": 412960, + "offset": 413190, "size": 130, }, "inc.js": { - "offset": 413090, + "offset": 413320, "size": 480, }, "lt.js": { - "offset": 413560, + "offset": 413800, "size": 130, }, "lte.js": { - "offset": 413690, + "offset": 413920, "size": 130, }, "major.js": { - "offset": 413820, + "offset": 414050, "size": 140, }, "minor.js": { - "offset": 413950, + "offset": 414190, "size": 140, }, "neq.js": { - "offset": 414090, + "offset": 414320, "size": 130, }, "parse.js": { - "offset": 414220, + "offset": 414450, "size": 340, }, "patch.js": { - "offset": 414550, + "offset": 414780, "size": 140, }, "prerelease.js": { - "offset": 414680, + "offset": 414920, "size": 240, }, "rcompare.js": { - "offset": 414920, + "offset": 415150, "size": 140, }, "rsort.js": { - "offset": 415050, + "offset": 415280, "size": 170, }, "satisfies.js": { - "offset": 415210, + "offset": 415450, "size": 250, }, "sort.js": { - "offset": 415460, + "offset": 415690, "size": 170, }, "valid.js": { - "offset": 415620, + "offset": 415850, "size": 180, }, }, }, "index.js": { - "offset": 415800, + "offset": 416030, "size": 2630, }, "internal": { "files": { "constants.js": { - "offset": 418430, + "offset": 418660, "size": 880, }, "debug.js": { - "offset": 419300, + "offset": 419530, "size": 240, }, "identifiers.js": { - "offset": 419540, + "offset": 419770, "size": 530, }, "lrucache.js": { - "offset": 420060, + "offset": 420300, "size": 810, }, "parse-options.js": { - "offset": 420870, + "offset": 421100, "size": 340, }, "re.js": { - "offset": 421200, + "offset": 421440, "size": 8140, }, }, }, "package.json": { - "offset": 429340, + "offset": 429580, "size": 1350, }, "preload.js": { - "offset": 430690, + "offset": 430930, "size": 90, }, "range.bnf": { - "offset": 430770, + "offset": 431010, "size": 620, }, "ranges": { "files": { "gtr.js": { - "offset": 431390, + "offset": 431630, "size": 240, }, "intersects.js": { - "offset": 431620, + "offset": 431860, "size": 230, }, "ltr.js": { - "offset": 431850, + "offset": 432080, "size": 230, }, "max-satisfying.js": { - "offset": 432080, + "offset": 432310, "size": 600, }, "min-satisfying.js": { - "offset": 432670, + "offset": 432900, "size": 600, }, "min-version.js": { - "offset": 433260, + "offset": 433490, "size": 1520, }, "outside.js": { - "offset": 434770, + "offset": 435010, "size": 2210, }, "simplify.js": { - "offset": 436980, + "offset": 437210, "size": 1360, }, "subset.js": { - "offset": 438330, + "offset": 438570, "size": 7530, }, "to-comparators.js": { - "offset": 445860, + "offset": 446090, "size": 290, }, "valid.js": { - "offset": 446140, + "offset": 446370, "size": 330, }, }, @@ -29436,15 +29440,15 @@ exports[`node_module collectors > pnpm workspace with native module 2`] = ` "simple-concat": { "files": { "LICENSE": { - "offset": 446460, + "offset": 446700, "size": 1090, }, "index.js": { - "offset": 447550, + "offset": 447780, "size": 400, }, "package.json": { - "offset": 447940, + "offset": 448170, "size": 820, }, }, @@ -29452,15 +29456,15 @@ exports[`node_module collectors > pnpm workspace with native module 2`] = ` "simple-get": { "files": { "LICENSE": { - "offset": 448750, + "offset": 448990, "size": 1090, }, "index.js": { - "offset": 449840, + "offset": 450070, "size": 4060, }, "package.json": { - "offset": 453890, + "offset": 454130, "size": 1070, }, }, @@ -29468,19 +29472,19 @@ exports[`node_module collectors > pnpm workspace with native module 2`] = ` "string_decoder": { "files": { "LICENSE": { - "offset": 454950, + "offset": 455190, "size": 2340, }, "lib": { "files": { "string_decoder.js": { - "offset": 457290, + "offset": 457530, "size": 9470, }, }, }, "package.json": { - "offset": 466760, + "offset": 466990, "size": 550, }, }, @@ -29488,15 +29492,15 @@ exports[`node_module collectors > pnpm workspace with native module 2`] = ` "strip-json-comments": { "files": { "index.js": { - "offset": 467300, + "offset": 467530, "size": 1700, }, "license": { - "offset": 469000, + "offset": 469230, "size": 1120, }, "package.json": { - "offset": 470120, + "offset": 470350, "size": 470, }, }, @@ -29504,15 +29508,15 @@ exports[`node_module collectors > pnpm workspace with native module 2`] = ` "tar-fs": { "files": { "LICENSE": { - "offset": 470590, + "offset": 470820, "size": 1080, }, "index.js": { - "offset": 471660, + "offset": 471900, "size": 10030, }, "package.json": { - "offset": 481690, + "offset": 481920, "size": 590, }, }, @@ -29520,31 +29524,31 @@ exports[`node_module collectors > pnpm workspace with native module 2`] = ` "tar-stream": { "files": { "LICENSE": { - "offset": 482280, + "offset": 482510, "size": 1080, }, "extract.js": { - "offset": 483360, + "offset": 483590, "size": 5960, }, "headers.js": { - "offset": 489320, + "offset": 489550, "size": 7970, }, "index.js": { - "offset": 497290, + "offset": 497520, "size": 80, }, "pack.js": { - "offset": 497360, + "offset": 497590, "size": 5630, }, "package.json": { - "offset": 502990, + "offset": 503220, "size": 930, }, "sandbox.js": { - "offset": 503910, + "offset": 504140, "size": 380, }, }, @@ -29552,15 +29556,15 @@ exports[`node_module collectors > pnpm workspace with native module 2`] = ` "tunnel-agent": { "files": { "LICENSE": { - "offset": 504280, + "offset": 504510, "size": 9140, }, "index.js": { - "offset": 513420, + "offset": 513650, "size": 6890, }, "package.json": { - "offset": 520300, + "offset": 520540, "size": 550, }, }, @@ -29568,23 +29572,23 @@ exports[`node_module collectors > pnpm workspace with native module 2`] = ` "util-deprecate": { "files": { "History.md": { - "offset": 520850, + "offset": 521080, "size": 290, }, "LICENSE": { - "offset": 521130, + "offset": 521360, "size": 1110, }, "browser.js": { - "offset": 522230, + "offset": 522460, "size": 1620, }, "node.js": { - "offset": 523840, + "offset": 524080, "size": 130, }, "package.json": { - "offset": 523970, + "offset": 524200, "size": 440, }, }, @@ -29592,15 +29596,15 @@ exports[`node_module collectors > pnpm workspace with native module 2`] = ` "wrappy": { "files": { "LICENSE": { - "offset": 524410, + "offset": 524640, "size": 770, }, "package.json": { - "offset": 525170, + "offset": 525400, "size": 480, }, "wrappy.js": { - "offset": 525650, + "offset": 525880, "size": 910, }, }, @@ -29608,7 +29612,7 @@ exports[`node_module collectors > pnpm workspace with native module 2`] = ` }, }, "package.json": { - "offset": 529900, + "offset": 530130, "size": 320, }, }, @@ -29625,11 +29629,11 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen { "files": { "index.html": { - "offset": 18214160, + "offset": 18751780, "size": 850, }, "index.js": { - "offset": 18215010, + "offset": 18752620, "size": 2510, }, "node_modules": { @@ -30202,32 +30206,32 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen "files": { "index.json": { "offset": 3283880, - "size": 86230, + "size": 76310, }, }, }, "package.json": { - "offset": 3370110, - "size": 790, + "offset": 3360190, + "size": 920, }, }, }, "css-tokenizer": { "files": { "LICENSE.md": { - "offset": 3370900, + "offset": 3361110, "size": 1120, }, "dist": { "files": { "index.mjs": { - "offset": 3372010, + "offset": 3362220, "size": 24040, }, }, }, "package.json": { - "offset": 3396040, + "offset": 3386250, "size": 830, }, }, @@ -30239,231 +30243,231 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen "bytes": { "files": { "LICENSE": { - "offset": 3396870, + "offset": 3387070, "size": 1080, }, "array.js": { - "offset": 3397950, - "size": 560, + "offset": 3388150, + "size": 1000, }, "assert.js": { - "offset": 3398500, + "offset": 3389140, "size": 930, }, "base32.js": { - "offset": 3399420, - "size": 1540, + "offset": 3390060, + "size": 1500, }, "base58.js": { - "offset": 3400960, - "size": 6440, + "offset": 3391560, + "size": 6360, }, "base58check.js": { - "offset": 3407400, + "offset": 3397910, "size": 880, }, "base58check.node.js": { - "offset": 3408270, + "offset": 3398790, "size": 500, }, "base64.js": { - "offset": 3408770, - "size": 8210, + "offset": 3399280, + "size": 8440, }, "bech32.js": { - "offset": 3416980, + "offset": 3407720, "size": 9560, }, "bigint.js": { - "offset": 3426530, + "offset": 3417270, "size": 600, }, "encoding-browser.browser.js": { - "offset": 3427130, + "offset": 3417870, "size": 1830, }, "encoding-browser.js": { - "offset": 3428960, - "size": 30, + "offset": 3419700, + "size": 50, }, "encoding-browser.native.js": { - "offset": 3428990, - "size": 30, + "offset": 3419740, + "size": 180, }, "encoding-lite.js": { - "offset": 3429020, - "size": 190, + "offset": 3419920, + "size": 230, }, "encoding.js": { - "offset": 3429200, - "size": 430, + "offset": 3420150, + "size": 470, }, "fallback": { "files": { "_utils.js": { - "offset": 3429630, - "size": 680, + "offset": 3420610, + "size": 1820, }, "base32.js": { - "offset": 3430300, - "size": 8410, + "offset": 3422430, + "size": 8550, }, "base58check.js": { - "offset": 3438700, - "size": 1630, + "offset": 3430980, + "size": 1580, }, "base64.js": { - "offset": 3440330, + "offset": 3432550, "size": 6660, }, "encoding.api.js": { - "offset": 3446990, + "offset": 3439210, "size": 1570, }, "encoding.js": { - "offset": 3448550, - "size": 13240, + "offset": 3440770, + "size": 13300, }, "encoding.labels.js": { - "offset": 3461780, + "offset": 3454060, "size": 2970, }, "encoding.util.js": { - "offset": 3464750, - "size": 2600, + "offset": 3457030, + "size": 2570, }, "hex.js": { - "offset": 3467350, + "offset": 3459600, "size": 4340, }, "latin1.js": { - "offset": 3471680, + "offset": 3463930, "size": 5870, }, "multi-byte.encodings.cjs": { - "offset": 3477550, + "offset": 3469800, "size": 80, }, "multi-byte.encodings.json": { - "offset": 3477620, + "offset": 3469870, "size": 153320, }, "multi-byte.js": { - "offset": 3630940, - "size": 27950, + "offset": 3623180, + "size": 28010, }, "multi-byte.table.js": { - "offset": 3658880, + "offset": 3651190, "size": 3400, }, "percent.js": { - "offset": 3662270, + "offset": 3654580, "size": 1320, }, "platform.browser.js": { - "offset": 3663580, + "offset": 3655900, "size": 1030, }, "platform.js": { - "offset": 3664610, + "offset": 3656930, "size": 100, }, "platform.native.js": { - "offset": 3664710, + "offset": 3657030, "size": 4010, }, "single-byte.encodings.js": { - "offset": 3668720, + "offset": 3661030, "size": 6140, }, "single-byte.js": { - "offset": 3674850, + "offset": 3667160, "size": 3970, }, "utf16.js": { - "offset": 3678820, + "offset": 3671130, "size": 9360, }, "utf8.auto.browser.js": { - "offset": 3688170, + "offset": 3680490, "size": 60, }, "utf8.auto.js": { - "offset": 3688230, + "offset": 3680550, "size": 50, }, "utf8.auto.native.js": { - "offset": 3688280, + "offset": 3680590, "size": 50, }, "utf8.js": { - "offset": 3688330, + "offset": 3680640, "size": 8630, }, }, }, "hex.js": { - "offset": 3696960, - "size": 600, + "offset": 3689270, + "size": 570, }, "hex.node.js": { - "offset": 3697550, - "size": 1310, + "offset": 3689840, + "size": 1670, }, "index.js": { - "offset": 3698850, + "offset": 3691500, "size": 200, }, "multi-byte.js": { - "offset": 3699040, + "offset": 3691690, "size": 720, }, "multi-byte.node.js": { - "offset": 3699760, + "offset": 3692400, "size": 1090, }, "package.json": { - "offset": 3700840, + "offset": 3693490, "size": 6540, }, "single-byte.js": { - "offset": 3707380, - "size": 4890, + "offset": 3700030, + "size": 4850, }, "single-byte.node.js": { - "offset": 3712270, - "size": 4520, + "offset": 3704880, + "size": 4610, }, "utf16.browser.js": { - "offset": 3716780, + "offset": 3709490, "size": 560, }, "utf16.js": { - "offset": 3717340, + "offset": 3710040, "size": 40, }, "utf16.native.js": { - "offset": 3717370, + "offset": 3710080, "size": 1020, }, "utf16.node.js": { - "offset": 3718390, - "size": 2780, + "offset": 3711090, + "size": 2830, }, "utf8.js": { - "offset": 3721160, - "size": 2640, + "offset": 3713910, + "size": 2610, }, "utf8.node.js": { - "offset": 3723800, - "size": 2860, + "offset": 3716520, + "size": 2850, }, "whatwg.js": { - "offset": 3726660, + "offset": 3719360, "size": 2780, }, "wif.js": { - "offset": 3729440, + "offset": 3722140, "size": 1940, }, }, @@ -30473,39 +30477,39 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen "agent-base": { "files": { "LICENSE": { - "offset": 3731370, + "offset": 3724070, "size": 1110, }, "dist": { "files": { "helpers.d.ts.map": { - "offset": 3732470, + "offset": 3725170, "size": 590, }, "helpers.js": { - "offset": 3733060, + "offset": 3725760, "size": 2320, }, "helpers.js.map": { - "offset": 3735370, + "offset": 3728070, "size": 1410, }, "index.d.ts.map": { - "offset": 3736770, + "offset": 3729470, "size": 1430, }, "index.js": { - "offset": 3738200, + "offset": 3730900, "size": 7330, }, "index.js.map": { - "offset": 3745530, + "offset": 3738230, "size": 4150, }, }, }, "package.json": { - "offset": 3749670, + "offset": 3742370, "size": 810, }, }, @@ -30513,27 +30517,27 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen "argparse": { "files": { "LICENSE": { - "offset": 3750480, + "offset": 3743180, "size": 12780, }, "argparse.js": { - "offset": 3763250, + "offset": 3755960, "size": 129720, }, "lib": { "files": { "sub.js": { - "offset": 3892970, + "offset": 3885670, "size": 2260, }, "textwrap.js": { - "offset": 3895220, + "offset": 3887920, "size": 17400, }, }, }, "package.json": { - "offset": 3912610, + "offset": 3905310, "size": 450, }, }, @@ -30541,79 +30545,79 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen "bidi-js": { "files": { "LICENSE.txt": { - "offset": 3913060, + "offset": 3905760, "size": 1080, }, "dist": { "files": { "bidi.js": { - "offset": 3914130, + "offset": 3906830, "size": 45570, }, "bidi.min.js": { - "offset": 3959690, + "offset": 3952390, "size": 12150, }, "bidi.min.mjs": { - "offset": 3971840, + "offset": 3964540, "size": 11930, }, "bidi.mjs": { - "offset": 3983770, + "offset": 3976470, "size": 43380, }, }, }, "package.json": { - "offset": 4027140, + "offset": 4019850, "size": 860, }, "src": { "files": { "brackets.js": { - "offset": 4028000, + "offset": 4020700, "size": 790, }, "charTypes.js": { - "offset": 4028780, + "offset": 4021480, "size": 1760, }, "data": { "files": { "bidiBrackets.data.js": { - "offset": 4030540, + "offset": 4023240, "size": 530, }, "bidiCharTypes.data.js": { - "offset": 4031060, + "offset": 4023760, "size": 3160, }, "bidiMirroring.data.js": { - "offset": 4034210, + "offset": 4026910, "size": 670, }, }, }, "embeddingLevels.js": { - "offset": 4034880, + "offset": 4027580, "size": 27080, }, "index.js": { - "offset": 4061960, + "offset": 4054660, "size": 410, }, "mirroring.js": { - "offset": 4062360, + "offset": 4055070, "size": 1370, }, "reordering.js": { - "offset": 4063730, + "offset": 4056430, "size": 3870, }, "util": { "files": { "parseCharacterMap.js": { - "offset": 4067600, + "offset": 4060300, "size": 1110, }, }, @@ -30625,7 +30629,7 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen "css-tree": { "files": { "LICENSE": { - "offset": 4068700, + "offset": 4061400, "size": 1070, }, "cjs": { @@ -30633,51 +30637,47 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen "convertor": { "files": { "create.cjs": { - "offset": 4069770, + "offset": 4062470, "size": 830, }, "index.cjs": { - "offset": 4070590, + "offset": 4063290, "size": 180, }, }, }, "data-patch.cjs": { - "offset": 4070770, + "offset": 4063470, "size": 120, }, "data.cjs": { - "offset": 4070880, + "offset": 4063580, "size": 3520, }, "definition-syntax": { "files": { "SyntaxError.cjs": { - "offset": 4074390, + "offset": 4067100, "size": 480, }, "generate.cjs": { - "offset": 4074870, + "offset": 4067570, "size": 3460, }, "index.cjs": { - "offset": 4078320, + "offset": 4071020, "size": 330, }, "parse.cjs": { - "offset": 4078650, - "size": 13780, + "offset": 4071350, + "size": 15030, }, "scanner.cjs": { - "offset": 4092420, + "offset": 4086370, "size": 2700, }, - "tokenizer.cjs": { - "offset": 4095120, - "size": 1400, - }, "walk.cjs": { - "offset": 4096510, + "offset": 4089070, "size": 1290, }, }, @@ -30685,83 +30685,83 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen "generator": { "files": { "create.cjs": { - "offset": 4097800, - "size": 2740, + "offset": 4090360, + "size": 3070, }, "index.cjs": { - "offset": 4100540, + "offset": 4093430, "size": 200, }, "sourceMap.cjs": { - "offset": 4100730, + "offset": 4093620, "size": 2690, }, "token-before.cjs": { - "offset": 4103420, - "size": 4940, + "offset": 4096300, + "size": 5100, }, }, }, "index.cjs": { - "offset": 4108360, + "offset": 4101400, "size": 1860, }, "lexer": { "files": { "Lexer.cjs": { - "offset": 4110210, + "offset": 4103260, "size": 17140, }, "error.cjs": { - "offset": 4127350, + "offset": 4120400, "size": 3490, }, "generic-an-plus-b.cjs": { - "offset": 4130840, + "offset": 4123880, "size": 6850, }, "generic-const.cjs": { - "offset": 4137680, + "offset": 4130720, "size": 210, }, "generic-urange.cjs": { - "offset": 4137880, + "offset": 4130930, "size": 4460, }, "generic.cjs": { - "offset": 4142340, - "size": 17930, + "offset": 4135380, + "size": 21090, }, "index.cjs": { - "offset": 4160260, + "offset": 4156460, "size": 90, }, "match-graph.cjs": { - "offset": 4160350, + "offset": 4156550, "size": 15440, }, "match.cjs": { - "offset": 4175780, + "offset": 4171980, "size": 19790, }, "prepare-tokens.cjs": { - "offset": 4195570, + "offset": 4191770, "size": 1150, }, "search.cjs": { - "offset": 4196720, + "offset": 4192920, "size": 1640, }, "structure.cjs": { - "offset": 4198350, + "offset": 4194560, "size": 5330, }, "trace.cjs": { - "offset": 4203680, + "offset": 4199880, "size": 1750, }, "units.cjs": { - "offset": 4205420, + "offset": 4201630, "size": 1720, }, }, @@ -30769,23 +30769,23 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen "parser": { "files": { "SyntaxError.cjs": { - "offset": 4207140, + "offset": 4203340, "size": 2610, }, "create.cjs": { - "offset": 4209740, - "size": 10970, + "offset": 4205950, + "size": 12890, }, "index.cjs": { - "offset": 4220710, + "offset": 4218830, "size": 180, }, "parse-selector.cjs": { - "offset": 4220880, + "offset": 4219010, "size": 220, }, "sequence.cjs": { - "offset": 4221100, + "offset": 4219230, "size": 1030, }, }, @@ -30795,47 +30795,47 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen "atrule": { "files": { "container.cjs": { - "offset": 4222130, + "offset": 4220260, "size": 900, }, "font-face.cjs": { - "offset": 4223030, + "offset": 4221160, "size": 180, }, "import.cjs": { - "offset": 4223200, + "offset": 4221330, "size": 2690, }, "index.cjs": { - "offset": 4225890, + "offset": 4224010, "size": 650, }, "layer.cjs": { - "offset": 4226530, + "offset": 4224660, "size": 270, }, "media.cjs": { - "offset": 4226800, + "offset": 4224930, "size": 290, }, "nest.cjs": { - "offset": 4227090, + "offset": 4225220, "size": 270, }, "page.cjs": { - "offset": 4227360, + "offset": 4225490, "size": 270, }, "scope.cjs": { - "offset": 4227630, + "offset": 4225750, "size": 280, }, "starting-style.cjs": { - "offset": 4227910, + "offset": 4226030, "size": 200, }, "supports.cjs": { - "offset": 4228100, + "offset": 4226230, "size": 300, }, }, @@ -30843,299 +30843,263 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen "config": { "files": { "generator.cjs": { - "offset": 4228400, + "offset": 4226530, "size": 150, }, "lexer.cjs": { - "offset": 4228550, + "offset": 4226680, "size": 320, }, "mix.cjs": { - "offset": 4228870, - "size": 3860, + "offset": 4227000, + "size": 3690, }, "parser-selector.cjs": { - "offset": 4232730, + "offset": 4230680, "size": 460, }, "parser.cjs": { - "offset": 4233180, + "offset": 4231140, "size": 1260, }, "walker.cjs": { - "offset": 4234440, + "offset": 4232390, "size": 130, }, }, }, "create.cjs": { - "offset": 4234560, + "offset": 4232520, "size": 1720, }, "function": { "files": { "expression.cjs": { - "offset": 4236270, + "offset": 4234230, "size": 210, }, "var.cjs": { - "offset": 4236470, + "offset": 4234430, "size": 1170, }, }, }, "index.cjs": { - "offset": 4237640, + "offset": 4235600, "size": 300, }, "node": { "files": { "AnPlusB.cjs": { - "offset": 4237930, + "offset": 4235890, "size": 8090, }, "Atrule.cjs": { - "offset": 4246020, + "offset": 4243970, "size": 2520, }, "AtrulePrelude.cjs": { - "offset": 4248530, + "offset": 4246490, "size": 1150, }, "AttributeSelector.cjs": { - "offset": 4249670, + "offset": 4247630, "size": 3640, }, "Block.cjs": { - "offset": 4253310, + "offset": 4251270, "size": 2340, }, "Brackets.cjs": { - "offset": 4255650, + "offset": 4253600, "size": 760, }, "CDC.cjs": { - "offset": 4256400, + "offset": 4254350, "size": 460, }, "CDO.cjs": { - "offset": 4256860, + "offset": 4254810, "size": 470, }, "ClassSelector.cjs": { - "offset": 4257320, + "offset": 4255280, "size": 620, }, "Combinator.cjs": { - "offset": 4257940, + "offset": 4255900, "size": 1430, }, "Comment.cjs": { - "offset": 4259370, + "offset": 4257330, "size": 860, }, "Condition.cjs": { - "offset": 4260220, + "offset": 4258180, "size": 2980, }, "Declaration.cjs": { - "offset": 4263200, + "offset": 4261150, "size": 4540, }, "DeclarationList.cjs": { - "offset": 4267730, + "offset": 4265680, "size": 1480, }, "Dimension.cjs": { - "offset": 4269200, + "offset": 4267160, "size": 650, }, "Feature.cjs": { - "offset": 4269840, + "offset": 4267800, "size": 2360, }, "FeatureFunction.cjs": { - "offset": 4272200, + "offset": 4270160, "size": 1580, }, "FeatureRange.cjs": { - "offset": 4273780, + "offset": 4271730, "size": 3350, }, "Function.cjs": { - "offset": 4277120, + "offset": 4275080, "size": 1070, }, "GeneralEnclosed.cjs": { - "offset": 4278180, + "offset": 4276140, "size": 1550, }, "Hash.cjs": { - "offset": 4279730, + "offset": 4277690, "size": 590, }, "IdSelector.cjs": { - "offset": 4280320, + "offset": 4278270, "size": 850, }, "Identifier.cjs": { - "offset": 4281160, + "offset": 4279120, "size": 490, }, "Layer.cjs": { - "offset": 4281650, + "offset": 4279600, "size": 690, }, "LayerList.cjs": { - "offset": 4282330, + "offset": 4280290, "size": 770, }, - "LayerName.cjs": { - "offset": 4283100, - "size": 660, - }, - "LayerNameList.cjs": { - "offset": 4283760, - "size": 760, - }, - "MediaCondition.cjs": { - "offset": 4284520, - "size": 1880, - }, - "MediaFeature.cjs": { - "offset": 4286390, - "size": 1690, - }, - "MediaFeatureRange.cjs": { - "offset": 4288080, - "size": 290, - }, "MediaQuery.cjs": { - "offset": 4288370, + "offset": 4281060, "size": 2570, }, "MediaQueryList.cjs": { - "offset": 4290930, + "offset": 4283620, "size": 740, }, "NestingSelector.cjs": { - "offset": 4291670, + "offset": 4284360, "size": 540, }, "Nth.cjs": { - "offset": 4292210, + "offset": 4284900, "size": 1050, }, "Number.cjs": { - "offset": 4293250, + "offset": 4285940, "size": 480, }, "Operator.cjs": { - "offset": 4293730, + "offset": 4286420, "size": 510, }, "Parentheses.cjs": { - "offset": 4294230, + "offset": 4286920, "size": 780, }, "Percentage.cjs": { - "offset": 4295000, + "offset": 4287700, "size": 510, }, "PseudoClassSelector.cjs": { - "offset": 4295510, + "offset": 4288200, "size": 1670, }, "PseudoElementSelector.cjs": { - "offset": 4297170, + "offset": 4289860, "size": 1730, }, "Ratio.cjs": { - "offset": 4298900, + "offset": 4291590, "size": 2040, }, "Raw.cjs": { - "offset": 4300930, + "offset": 4293630, "size": 1150, }, "Rule.cjs": { - "offset": 4302080, + "offset": 4294770, "size": 1230, }, "Scope.cjs": { - "offset": 4303310, + "offset": 4296000, "size": 1620, }, "Selector.cjs": { - "offset": 4304920, + "offset": 4297610, "size": 760, }, "SelectorList.cjs": { - "offset": 4305680, + "offset": 4298370, "size": 810, }, "String.cjs": { - "offset": 4306490, + "offset": 4299180, "size": 560, }, "StyleSheet.cjs": { - "offset": 4307040, + "offset": 4299740, "size": 2020, }, "SupportsDeclaration.cjs": { - "offset": 4309060, + "offset": 4301750, "size": 780, }, - "SupportsFeature.cjs": { - "offset": 4309830, - "size": 1690, - }, "TypeSelector.cjs": { - "offset": 4311520, + "offset": 4302530, "size": 1190, }, "UnicodeRange.cjs": { - "offset": 4312710, + "offset": 4303720, "size": 4540, }, "Url.cjs": { - "offset": 4317250, + "offset": 4308250, "size": 1290, }, "Value.cjs": { - "offset": 4318540, + "offset": 4309540, "size": 470, }, "WhiteSpace.cjs": { - "offset": 4319000, + "offset": 4310010, "size": 650, }, - "common": { - "files": { - "feature-range.cjs": { - "offset": 4319650, - "size": 2730, - }, - "feature.cjs": { - "offset": 4322370, - "size": 1830, - }, - }, - }, "index-generate.cjs": { - "offset": 4324190, + "offset": 4310650, "size": 4320, }, "index-parse-selector.cjs": { - "offset": 4328510, + "offset": 4314970, "size": 1560, }, "index-parse.cjs": { - "offset": 4330060, + "offset": 4316520, "size": 4170, }, "index.cjs": { - "offset": 4334230, + "offset": 4320690, "size": 3890, }, }, @@ -31143,11 +31107,11 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen "pseudo": { "files": { "index.cjs": { - "offset": 4338110, + "offset": 4324570, "size": 1080, }, "lang.cjs": { - "offset": 4339190, + "offset": 4325650, "size": 820, }, }, @@ -31155,23 +31119,23 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen "scope": { "files": { "atrulePrelude.cjs": { - "offset": 4340010, + "offset": 4326470, "size": 150, }, "default.cjs": { - "offset": 4340150, + "offset": 4326610, "size": 2250, }, "index.cjs": { - "offset": 4342400, + "offset": 4328860, "size": 250, }, "selector.cjs": { - "offset": 4342640, + "offset": 4329100, "size": 2540, }, "value.cjs": { - "offset": 4345180, + "offset": 4331640, "size": 730, }, }, @@ -31181,35 +31145,35 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen "tokenizer": { "files": { "OffsetToLocation.cjs": { - "offset": 4345910, + "offset": 4332370, "size": 2580, }, "TokenStream.cjs": { - "offset": 4348480, - "size": 9610, + "offset": 4334940, + "size": 11380, }, "adopt-buffer.cjs": { - "offset": 4358090, + "offset": 4346320, "size": 270, }, "char-code-definitions.cjs": { - "offset": 4358360, + "offset": 4346590, "size": 7200, }, "index.cjs": { - "offset": 4365550, + "offset": 4353780, "size": 23720, }, "names.cjs": { - "offset": 4389270, + "offset": 4377500, "size": 570, }, "types.cjs": { - "offset": 4389840, + "offset": 4378070, "size": 2110, }, "utils.cjs": { - "offset": 4391940, + "offset": 4380170, "size": 8440, }, }, @@ -31217,51 +31181,51 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen "utils": { "files": { "List.cjs": { - "offset": 4400380, + "offset": 4388610, "size": 12830, }, "clone.cjs": { - "offset": 4413210, + "offset": 4401440, "size": 510, }, "create-custom-error.cjs": { - "offset": 4413710, + "offset": 4401940, "size": 540, }, "ident.cjs": { - "offset": 4414240, + "offset": 4402470, "size": 3530, }, "index.cjs": { - "offset": 4417770, + "offset": 4406000, "size": 530, }, "names.cjs": { - "offset": 4418290, + "offset": 4406520, "size": 3070, }, "string.cjs": { - "offset": 4421360, + "offset": 4409590, "size": 3300, }, "url.cjs": { - "offset": 4424650, + "offset": 4412880, "size": 3370, }, }, }, "version.cjs": { - "offset": 4428020, + "offset": 4416250, "size": 100, }, "walker": { "files": { "create.cjs": { - "offset": 4428110, + "offset": 4416340, "size": 7540, }, "index.cjs": { - "offset": 4435640, + "offset": 4423870, "size": 190, }, }, @@ -31271,35 +31235,35 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen "data": { "files": { "patch.json": { - "offset": 4435830, - "size": 52540, + "offset": 4424060, + "size": 46710, }, }, }, "dist": { "files": { "csstree.esm.js": { - "offset": 4488360, - "size": 192160, + "offset": 4470770, + "size": 202540, }, "csstree.js": { - "offset": 4680520, - "size": 192280, + "offset": 4673300, + "size": 202660, }, "data.cjs": { - "offset": 4872790, - "size": 89730, + "offset": 4875960, + "size": 98180, }, "data.js": { - "offset": 4962510, - "size": 89730, + "offset": 4974130, + "size": 98180, }, "version.cjs": { - "offset": 5052230, + "offset": 5072310, "size": 30, }, "version.js": { - "offset": 5052260, + "offset": 5072330, "size": 40, }, }, @@ -31309,48 +31273,48 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen "convertor": { "files": { "create.js": { - "offset": 5052290, + "offset": 5072360, "size": 760, }, "index.js": { - "offset": 5053050, + "offset": 5073120, "size": 130, }, }, }, "data-patch.js": { - "offset": 5053180, + "offset": 5073250, "size": 160, }, "data.js": { "executable": true, - "offset": 5053330, + "offset": 5073410, "size": 3540, }, "definition-syntax": { "files": { "SyntaxError.js": { - "offset": 5056860, + "offset": 5076940, "size": 410, }, "generate.js": { - "offset": 5057270, + "offset": 5077350, "size": 3420, }, "index.js": { - "offset": 5060690, + "offset": 5080770, "size": 160, }, "parse.js": { - "offset": 5060850, - "size": 13730, + "offset": 5080930, + "size": 14980, }, "scanner.js": { - "offset": 5074580, + "offset": 5095900, "size": 2650, }, "walk.js": { - "offset": 5077230, + "offset": 5098550, "size": 1270, }, }, @@ -31358,83 +31322,83 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen "generator": { "files": { "create.js": { - "offset": 5078500, - "size": 2630, + "offset": 5099820, + "size": 2950, }, "index.js": { - "offset": 5081130, + "offset": 5102770, "size": 140, }, "sourceMap.js": { - "offset": 5081270, + "offset": 5102910, "size": 2610, }, "token-before.js": { - "offset": 5083870, - "size": 4410, + "offset": 5105510, + "size": 4560, }, }, }, "index.js": { - "offset": 5088280, + "offset": 5110070, "size": 780, }, "lexer": { "files": { "Lexer.js": { - "offset": 5089050, + "offset": 5110840, "size": 16890, }, "error.js": { - "offset": 5105930, + "offset": 5127720, "size": 3340, }, "generic-an-plus-b.js": { - "offset": 5109270, + "offset": 5131060, "size": 6690, }, "generic-const.js": { - "offset": 5115950, + "offset": 5137750, "size": 160, }, "generic-urange.js": { - "offset": 5116110, + "offset": 5137900, "size": 4330, }, "generic.js": { - "offset": 5120440, - "size": 17750, + "offset": 5142230, + "size": 20720, }, "index.js": { - "offset": 5138180, + "offset": 5162950, "size": 40, }, "match-graph.js": { - "offset": 5138220, + "offset": 5162980, "size": 15320, }, "match.js": { - "offset": 5153530, + "offset": 5178290, "size": 19520, }, "prepare-tokens.js": { - "offset": 5173040, + "offset": 5197810, "size": 1100, }, "search.js": { - "offset": 5174140, + "offset": 5198900, "size": 1590, }, "structure.js": { - "offset": 5175720, + "offset": 5200480, "size": 5260, }, "trace.js": { - "offset": 5180970, + "offset": 5205740, "size": 1640, }, "units.js": { - "offset": 5182610, + "offset": 5207370, "size": 1540, }, }, @@ -31442,23 +31406,23 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen "parser": { "files": { "SyntaxError.js": { - "offset": 5184150, + "offset": 5208910, "size": 2550, }, "create.js": { - "offset": 5186700, - "size": 10720, + "offset": 5211460, + "size": 12650, }, "index.js": { - "offset": 5197410, + "offset": 5224110, "size": 140, }, "parse-selector.js": { - "offset": 5197540, + "offset": 5224240, "size": 140, }, "sequence.js": { - "offset": 5197680, + "offset": 5224380, "size": 990, }, }, @@ -31468,47 +31432,47 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen "atrule": { "files": { "container.js": { - "offset": 5198670, + "offset": 5225360, "size": 850, }, "font-face.js": { - "offset": 5199510, + "offset": 5226200, "size": 130, }, "import.js": { - "offset": 5199640, + "offset": 5226330, "size": 2710, }, "index.js": { - "offset": 5202350, + "offset": 5229040, "size": 560, }, "layer.js": { - "offset": 5202900, + "offset": 5229590, "size": 230, }, "media.js": { - "offset": 5203130, + "offset": 5229820, "size": 250, }, "nest.js": { - "offset": 5203380, + "offset": 5230070, "size": 240, }, "page.js": { - "offset": 5203610, + "offset": 5230310, "size": 240, }, "scope.js": { - "offset": 5203840, + "offset": 5230540, "size": 250, }, "starting-style.js": { - "offset": 5204080, + "offset": 5230780, "size": 150, }, "supports.js": { - "offset": 5204230, + "offset": 5230920, "size": 260, }, }, @@ -31516,263 +31480,263 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen "config": { "files": { "generator.js": { - "offset": 5204480, + "offset": 5231180, "size": 90, }, "lexer.js": { - "offset": 5204560, + "offset": 5231260, "size": 240, }, "mix.js": { - "offset": 5204800, - "size": 3840, + "offset": 5231490, + "size": 3670, }, "parser-selector.js": { - "offset": 5208630, + "offset": 5235160, "size": 360, }, "parser.js": { - "offset": 5208990, + "offset": 5235510, "size": 1160, }, "walker.js": { - "offset": 5210140, + "offset": 5236660, "size": 80, }, }, }, "create.js": { - "offset": 5210220, + "offset": 5236740, "size": 1610, }, "function": { "files": { "expression.js": { - "offset": 5211820, + "offset": 5238340, "size": 160, }, "var.js": { - "offset": 5211980, + "offset": 5238500, "size": 1140, }, }, }, "index.js": { - "offset": 5213110, + "offset": 5239630, "size": 280, }, "node": { "files": { "AnPlusB.js": { - "offset": 5213390, + "offset": 5239910, "size": 7840, }, "Atrule.js": { - "offset": 5221230, + "offset": 5247750, "size": 2400, }, "AtrulePrelude.js": { - "offset": 5223630, + "offset": 5250150, "size": 1040, }, "AttributeSelector.js": { - "offset": 5224660, + "offset": 5251180, "size": 3570, }, "Block.js": { - "offset": 5228230, + "offset": 5254750, "size": 2250, }, "Brackets.js": { - "offset": 5230470, + "offset": 5257000, "size": 690, }, "CDC.js": { - "offset": 5231160, + "offset": 5257680, "size": 360, }, "CDO.js": { - "offset": 5231510, + "offset": 5258030, "size": 360, }, "ClassSelector.js": { - "offset": 5231870, + "offset": 5258390, "size": 520, }, "Combinator.js": { - "offset": 5232380, + "offset": 5258900, "size": 1340, }, "Comment.js": { - "offset": 5233720, + "offset": 5260240, "size": 750, }, "Condition.js": { - "offset": 5234470, + "offset": 5260990, "size": 2940, }, "Declaration.js": { - "offset": 5237400, + "offset": 5263920, "size": 4400, }, "DeclarationList.js": { - "offset": 5241790, + "offset": 5268320, "size": 1420, }, "Dimension.js": { - "offset": 5243210, + "offset": 5269730, "size": 540, }, "Feature.js": { - "offset": 5243750, + "offset": 5270270, "size": 2320, }, "FeatureFunction.js": { - "offset": 5246060, + "offset": 5272580, "size": 1520, }, "FeatureRange.js": { - "offset": 5247570, + "offset": 5274090, "size": 3310, }, "Function.js": { - "offset": 5250880, + "offset": 5277400, "size": 980, }, "GeneralEnclosed.js": { - "offset": 5251850, + "offset": 5278370, "size": 1500, }, "Hash.js": { - "offset": 5253350, + "offset": 5279870, "size": 470, }, "IdSelector.js": { - "offset": 5253820, + "offset": 5280340, "size": 750, }, "Identifier.js": { - "offset": 5254560, + "offset": 5281090, "size": 380, }, "Layer.js": { - "offset": 5254940, + "offset": 5281460, "size": 590, }, "LayerList.js": { - "offset": 5255520, + "offset": 5282040, "size": 670, }, "MediaQuery.js": { - "offset": 5256190, + "offset": 5282710, "size": 2490, }, "MediaQueryList.js": { - "offset": 5258670, + "offset": 5285190, "size": 630, }, "NestingSelector.js": { - "offset": 5259300, + "offset": 5285820, "size": 440, }, "Nth.js": { - "offset": 5259740, + "offset": 5286260, "size": 950, }, "Number.js": { - "offset": 5260680, + "offset": 5287200, "size": 400, }, "Operator.js": { - "offset": 5261080, + "offset": 5287600, "size": 410, }, "Parentheses.js": { - "offset": 5261490, + "offset": 5288010, "size": 700, }, "Percentage.js": { - "offset": 5262180, + "offset": 5288700, "size": 410, }, "PseudoClassSelector.js": { - "offset": 5262590, + "offset": 5289110, "size": 1570, }, "PseudoElementSelector.js": { - "offset": 5264150, + "offset": 5290670, "size": 1620, }, "Ratio.js": { - "offset": 5265770, + "offset": 5292290, "size": 2000, }, "Raw.js": { - "offset": 5267760, + "offset": 5294280, "size": 1050, }, "Rule.js": { - "offset": 5268810, + "offset": 5295330, "size": 1120, }, "Scope.js": { - "offset": 5269920, + "offset": 5296440, "size": 1510, }, "Selector.js": { - "offset": 5271430, + "offset": 5297950, "size": 670, }, "SelectorList.js": { - "offset": 5272090, + "offset": 5298610, "size": 680, }, "String.js": { - "offset": 5272770, + "offset": 5299290, "size": 480, }, "StyleSheet.js": { - "offset": 5273240, + "offset": 5299760, "size": 1930, }, "SupportsDeclaration.js": { - "offset": 5275170, + "offset": 5301690, "size": 700, }, "TypeSelector.js": { - "offset": 5275860, + "offset": 5302380, "size": 1090, }, "UnicodeRange.js": { - "offset": 5276950, + "offset": 5303470, "size": 4360, }, "Url.js": { - "offset": 5281310, + "offset": 5307830, "size": 1250, }, "Value.js": { - "offset": 5282560, + "offset": 5309080, "size": 380, }, "WhiteSpace.js": { - "offset": 5282930, + "offset": 5309460, "size": 550, }, "index-generate.js": { - "offset": 5283480, + "offset": 5310000, "size": 2790, }, "index-parse-selector.js": { - "offset": 5286260, + "offset": 5312780, "size": 970, }, "index-parse.js": { - "offset": 5287230, + "offset": 5313750, "size": 2640, }, "index.js": { - "offset": 5289870, + "offset": 5316390, "size": 2250, }, }, @@ -31780,11 +31744,11 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen "pseudo": { "files": { "index.js": { - "offset": 5292110, + "offset": 5318630, "size": 1050, }, "lang.js": { - "offset": 5293150, + "offset": 5319680, "size": 790, }, }, @@ -31792,23 +31756,23 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen "scope": { "files": { "atrulePrelude.js": { - "offset": 5293940, + "offset": 5320460, "size": 70, }, "default.js": { - "offset": 5294000, + "offset": 5320530, "size": 2360, }, "index.js": { - "offset": 5296360, + "offset": 5322890, "size": 170, }, "selector.js": { - "offset": 5296530, + "offset": 5323050, "size": 2570, }, "value.js": { - "offset": 5299090, + "offset": 5325610, "size": 670, }, }, @@ -31818,35 +31782,35 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen "tokenizer": { "files": { "OffsetToLocation.js": { - "offset": 5299760, + "offset": 5326280, "size": 2460, }, "TokenStream.js": { - "offset": 5302210, - "size": 9620, + "offset": 5328730, + "size": 11360, }, "adopt-buffer.js": { - "offset": 5311830, + "offset": 5340090, "size": 230, }, "char-code-definitions.js": { - "offset": 5312060, + "offset": 5340310, "size": 6530, }, "index.js": { - "offset": 5318580, + "offset": 5346840, "size": 20670, }, "names.js": { - "offset": 5339250, + "offset": 5367510, "size": 520, }, "types.js": { - "offset": 5339770, + "offset": 5368020, "size": 1490, }, "utils.js": { - "offset": 5341260, + "offset": 5369510, "size": 7820, }, }, @@ -31854,51 +31818,51 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen "utils": { "files": { "List.js": { - "offset": 5349080, + "offset": 5377330, "size": 12800, }, "clone.js": { - "offset": 5361870, + "offset": 5390130, "size": 470, }, "create-custom-error.js": { - "offset": 5362340, + "offset": 5390590, "size": 480, }, "ident.js": { - "offset": 5362820, + "offset": 5391070, "size": 3410, }, "index.js": { - "offset": 5366220, + "offset": 5394470, "size": 200, }, "names.js": { - "offset": 5366410, + "offset": 5394660, "size": 2940, }, "string.js": { - "offset": 5369350, + "offset": 5397600, "size": 3180, }, "url.js": { - "offset": 5372520, + "offset": 5400770, "size": 3230, }, }, }, "version.js": { - "offset": 5375750, + "offset": 5404000, "size": 150, }, "walker": { "files": { "create.js": { - "offset": 5375890, + "offset": 5404150, "size": 7490, }, "index.js": { - "offset": 5383380, + "offset": 5411640, "size": 140, }, }, @@ -31906,359 +31870,359 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen }, }, "package.json": { - "offset": 5383510, - "size": 2650, + "offset": 5411770, + "size": 2670, }, }, }, "cssstyle": { "files": { "LICENSE": { - "offset": 5386160, + "offset": 5414440, "size": 1050, }, "lib": { "files": { "CSSStyleDeclaration.js": { - "offset": 5387210, + "offset": 5415490, "size": 19120, }, "generated": { "files": { "allProperties.js": { - "offset": 5406320, + "offset": 5434600, "size": 13620, }, "implementedProperties.js": { - "offset": 5419940, + "offset": 5448220, "size": 46890, }, "properties.js": { - "offset": 5466830, + "offset": 5495110, "size": 232600, }, "propertyDefinitions.js": { - "offset": 5699430, + "offset": 5727700, "size": 406290, }, }, }, "normalize.js": { - "offset": 6105710, + "offset": 6133990, "size": 54450, }, "parsers.js": { - "offset": 6160160, + "offset": 6188440, "size": 22440, }, "properties": { "files": { "background.js": { - "offset": 6182600, + "offset": 6210880, "size": 13540, }, "backgroundAttachment.js": { - "offset": 6196140, + "offset": 6224420, "size": 1530, }, "backgroundClip.js": { - "offset": 6197670, + "offset": 6225950, "size": 1530, }, "backgroundColor.js": { - "offset": 6199190, + "offset": 6227470, "size": 1200, }, "backgroundImage.js": { - "offset": 6200390, + "offset": 6228670, "size": 1560, }, "backgroundOrigin.js": { - "offset": 6201950, + "offset": 6230230, "size": 1530, }, "backgroundPosition.js": { - "offset": 6203470, + "offset": 6231750, "size": 6540, }, "backgroundRepeat.js": { - "offset": 6210010, + "offset": 6238290, "size": 2460, }, "backgroundSize.js": { - "offset": 6212460, + "offset": 6240740, "size": 3390, }, "border.js": { - "offset": 6215850, + "offset": 6244130, "size": 2960, }, "borderBottom.js": { - "offset": 6218810, + "offset": 6247090, "size": 2820, }, "borderBottomColor.js": { - "offset": 6221630, + "offset": 6249910, "size": 1480, }, "borderBottomStyle.js": { - "offset": 6223110, + "offset": 6251390, "size": 1480, }, "borderBottomWidth.js": { - "offset": 6224590, + "offset": 6252870, "size": 1530, }, "borderCollapse.js": { - "offset": 6226110, + "offset": 6254390, "size": 1030, }, "borderColor.js": { - "offset": 6227140, + "offset": 6255420, "size": 2790, }, "borderLeft.js": { - "offset": 6229930, + "offset": 6258200, "size": 2780, }, "borderLeftColor.js": { - "offset": 6232700, + "offset": 6260980, "size": 1480, }, "borderLeftStyle.js": { - "offset": 6234170, + "offset": 6262450, "size": 1480, }, "borderLeftWidth.js": { - "offset": 6235650, + "offset": 6263920, "size": 1520, }, "borderRight.js": { - "offset": 6237160, + "offset": 6265440, "size": 2800, }, "borderRightColor.js": { - "offset": 6239960, + "offset": 6268240, "size": 1480, }, "borderRightStyle.js": { - "offset": 6241430, + "offset": 6269710, "size": 1480, }, "borderRightWidth.js": { - "offset": 6242910, + "offset": 6271190, "size": 1530, }, "borderSpacing.js": { - "offset": 6244430, + "offset": 6272710, "size": 1480, }, "borderStyle.js": { - "offset": 6245910, + "offset": 6274190, "size": 2800, }, "borderTop.js": { - "offset": 6248700, + "offset": 6276980, "size": 2750, }, "borderTopColor.js": { - "offset": 6251450, + "offset": 6279730, "size": 1480, }, "borderTopStyle.js": { - "offset": 6252920, + "offset": 6281200, "size": 1480, }, "borderTopWidth.js": { - "offset": 6254400, + "offset": 6282680, "size": 1520, }, "borderWidth.js": { - "offset": 6255910, + "offset": 6284190, "size": 2820, }, "bottom.js": { - "offset": 6258730, + "offset": 6287010, "size": 1050, }, "clear.js": { - "offset": 6259780, + "offset": 6288060, "size": 1020, }, "clip.js": { - "offset": 6260790, + "offset": 6289070, "size": 1850, }, "color.js": { - "offset": 6262640, + "offset": 6290920, "size": 1020, }, "display.js": { - "offset": 6263650, + "offset": 6291930, "size": 6110, }, "flex.js": { - "offset": 6269760, + "offset": 6298040, "size": 5290, }, "flexBasis.js": { - "offset": 6275050, + "offset": 6303320, "size": 1240, }, "flexGrow.js": { - "offset": 6276280, + "offset": 6304560, "size": 1230, }, "flexShrink.js": { - "offset": 6277510, + "offset": 6305780, "size": 1230, }, "float.js": { - "offset": 6278730, + "offset": 6307010, "size": 1020, }, "floodColor.js": { - "offset": 6279750, + "offset": 6308030, "size": 1030, }, "font.js": { - "offset": 6280770, + "offset": 6309050, "size": 8710, }, "fontFamily.js": { - "offset": 6289480, + "offset": 6317760, "size": 2550, }, "fontSize.js": { - "offset": 6292030, + "offset": 6320310, "size": 1240, }, "fontStyle.js": { - "offset": 6293260, + "offset": 6321540, "size": 1730, }, "fontVariant.js": { - "offset": 6294980, + "offset": 6323260, "size": 1640, }, "fontWeight.js": { - "offset": 6296620, + "offset": 6324900, "size": 1320, }, "height.js": { - "offset": 6297930, + "offset": 6326210, "size": 1070, }, "left.js": { - "offset": 6299000, + "offset": 6327270, "size": 1050, }, "lightingColor.js": { - "offset": 6300040, + "offset": 6328320, "size": 1030, }, "lineHeight.js": { - "offset": 6301070, + "offset": 6329340, "size": 1220, }, "margin.js": { - "offset": 6302280, + "offset": 6330560, "size": 1930, }, "marginBottom.js": { - "offset": 6304210, + "offset": 6332490, "size": 1290, }, "marginLeft.js": { - "offset": 6305490, + "offset": 6333770, "size": 1280, }, "marginRight.js": { - "offset": 6306770, + "offset": 6335050, "size": 1290, }, "marginTop.js": { - "offset": 6308050, + "offset": 6336330, "size": 1280, }, "opacity.js": { - "offset": 6309330, + "offset": 6337610, "size": 1050, }, "outlineColor.js": { - "offset": 6310380, + "offset": 6338660, "size": 1030, }, "padding.js": { - "offset": 6311400, + "offset": 6339680, "size": 1970, }, "paddingBottom.js": { - "offset": 6313360, + "offset": 6341640, "size": 1300, }, "paddingLeft.js": { - "offset": 6314660, + "offset": 6342940, "size": 1300, }, "paddingRight.js": { - "offset": 6315960, + "offset": 6344240, "size": 1300, }, "paddingTop.js": { - "offset": 6317260, + "offset": 6345540, "size": 1300, }, "right.js": { - "offset": 6318550, + "offset": 6346830, "size": 1050, }, "stopColor.js": { - "offset": 6319600, + "offset": 6347880, "size": 1020, }, "top.js": { - "offset": 6320620, + "offset": 6348900, "size": 1050, }, "webkitBorderAfterColor.js": { - "offset": 6321660, + "offset": 6349940, "size": 1040, }, "webkitBorderBeforeColor.js": { - "offset": 6322700, + "offset": 6350980, "size": 1040, }, "webkitBorderEndColor.js": { - "offset": 6323740, + "offset": 6352020, "size": 1040, }, "webkitBorderStartColor.js": { - "offset": 6324770, + "offset": 6353050, "size": 1040, }, "webkitColumnRuleColor.js": { - "offset": 6325810, + "offset": 6354090, "size": 1040, }, "webkitTapHighlightColor.js": { - "offset": 6326840, + "offset": 6355120, "size": 1040, }, "webkitTextEmphasisColor.js": { - "offset": 6327880, + "offset": 6356160, "size": 1040, }, "webkitTextFillColor.js": { - "offset": 6328920, + "offset": 6357200, "size": 1040, }, "webkitTextStrokeColor.js": { - "offset": 6329950, + "offset": 6358230, "size": 1040, }, "width.js": { - "offset": 6330980, + "offset": 6359260, "size": 1070, }, }, @@ -32266,19 +32230,19 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen "utils": { "files": { "allExtraProperties.js": { - "offset": 6332050, + "offset": 6360320, "size": 3390, }, "camelize.js": { - "offset": 6335430, + "offset": 6363710, "size": 1090, }, "propertyDescriptors.js": { - "offset": 6336510, + "offset": 6364790, "size": 1580, }, "strings.js": { - "offset": 6338090, + "offset": 6366370, "size": 5600, }, }, @@ -32286,7 +32250,7 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen }, }, "package.json": { - "offset": 6343690, + "offset": 6371970, "size": 1010, }, }, @@ -32294,23 +32258,23 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen "data-urls": { "files": { "LICENSE.txt": { - "offset": 6344690, + "offset": 6372970, "size": 1070, }, "lib": { "files": { "parser.js": { - "offset": 6345760, + "offset": 6374040, "size": 1690, }, "utils.js": { - "offset": 6347450, + "offset": 6375730, "size": 470, }, }, }, "package.json": { - "offset": 6347910, + "offset": 6376190, "size": 700, }, }, @@ -32318,29 +32282,29 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen "debug": { "files": { "LICENSE": { - "offset": 6348610, + "offset": 6376890, "size": 1140, }, "package.json": { - "offset": 6349750, + "offset": 6378030, "size": 910, }, "src": { "files": { "browser.js": { - "offset": 6350660, + "offset": 6378940, "size": 6110, }, "common.js": { - "offset": 6356760, + "offset": 6385040, "size": 6920, }, "index.js": { - "offset": 6363670, + "offset": 6391950, "size": 320, }, "node.js": { - "offset": 6363990, + "offset": 6392270, "size": 4730, }, }, @@ -32350,19 +32314,19 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen "decimal.js": { "files": { "LICENCE.md": { - "offset": 6368720, + "offset": 6397000, "size": 1110, }, "decimal.js": { - "offset": 6369820, + "offset": 6398100, "size": 136680, }, "decimal.mjs": { - "offset": 6506490, + "offset": 6534770, "size": 127790, }, "package.json": { - "offset": 6634280, + "offset": 6662560, "size": 880, }, }, @@ -32370,11 +32334,11 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen "entities": { "files": { "LICENSE": { - "offset": 6635150, + "offset": 6663430, "size": 1260, }, "decode.js": { - "offset": 6636410, + "offset": 6664690, "size": 150, }, "dist": { @@ -32382,107 +32346,107 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen "commonjs": { "files": { "decode-codepoint.d.ts.map": { - "offset": 6636560, + "offset": 6664840, "size": 350, }, "decode-codepoint.js": { - "offset": 6636910, + "offset": 6665190, "size": 2290, }, "decode-codepoint.js.map": { - "offset": 6639200, + "offset": 6667480, "size": 1850, }, "decode.d.ts.map": { - "offset": 6641050, + "offset": 6669330, "size": 2100, }, "decode.js": { - "offset": 6643150, + "offset": 6671420, "size": 21470, }, "decode.js.map": { - "offset": 6664610, + "offset": 6692890, "size": 11840, }, "encode.d.ts.map": { - "offset": 6676450, + "offset": 6704720, "size": 260, }, "encode.js": { - "offset": 6676700, + "offset": 6704980, "size": 2870, }, "encode.js.map": { - "offset": 6679560, + "offset": 6707840, "size": 1820, }, "escape.d.ts.map": { - "offset": 6681380, + "offset": 6709660, "size": 590, }, "escape.js": { - "offset": 6681960, + "offset": 6710240, "size": 4290, }, "escape.js.map": { - "offset": 6686250, + "offset": 6714520, "size": 2840, }, "generated": { "files": { "decode-data-html.d.ts.map": { - "offset": 6689080, + "offset": 6717360, "size": 180, }, "decode-data-html.js": { - "offset": 6689260, + "offset": 6717540, "size": 47860, }, "decode-data-html.js.map": { - "offset": 6737120, + "offset": 6765400, "size": 340, }, "decode-data-xml.d.ts.map": { - "offset": 6737460, + "offset": 6765740, "size": 180, }, "decode-data-xml.js": { - "offset": 6737630, + "offset": 6765910, "size": 420, }, "decode-data-xml.js.map": { - "offset": 6738050, + "offset": 6766330, "size": 340, }, "encode-html.d.ts.map": { - "offset": 6738380, + "offset": 6766660, "size": 360, }, "encode-html.js": { - "offset": 6738730, + "offset": 6767010, "size": 27230, }, "encode-html.js.map": { - "offset": 6765960, + "offset": 6794240, "size": 48200, }, }, }, "index.d.ts.map": { - "offset": 6814160, + "offset": 6842440, "size": 1340, }, "index.js": { - "offset": 6815490, + "offset": 6843770, "size": 7250, }, "index.js.map": { - "offset": 6822740, + "offset": 6851020, "size": 2730, }, "package.json": { - "offset": 6825460, + "offset": 6853740, "size": 30, }, }, @@ -32490,107 +32454,107 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen "esm": { "files": { "decode-codepoint.d.ts.map": { - "offset": 6825490, + "offset": 6853770, "size": 350, }, "decode-codepoint.js": { - "offset": 6825840, + "offset": 6854120, "size": 2100, }, "decode-codepoint.js.map": { - "offset": 6827940, + "offset": 6856210, "size": 1840, }, "decode.d.ts.map": { - "offset": 6829770, + "offset": 6858050, "size": 2100, }, "decode.js": { - "offset": 6831870, + "offset": 6860150, "size": 20170, }, "decode.js.map": { - "offset": 6852030, + "offset": 6880310, "size": 11900, }, "encode.d.ts.map": { - "offset": 6863930, + "offset": 6892210, "size": 260, }, "encode.js": { - "offset": 6864180, + "offset": 6892460, "size": 2680, }, "encode.js.map": { - "offset": 6866860, + "offset": 6895140, "size": 1860, }, "escape.d.ts.map": { - "offset": 6868720, + "offset": 6896990, "size": 590, }, "escape.js": { - "offset": 6869300, + "offset": 6897580, "size": 4090, }, "escape.js.map": { - "offset": 6873380, + "offset": 6901660, "size": 2900, }, "generated": { "files": { "decode-data-html.d.ts.map": { - "offset": 6876270, + "offset": 6904550, "size": 180, }, "decode-data-html.js": { - "offset": 6876450, + "offset": 6904730, "size": 47780, }, "decode-data-html.js.map": { - "offset": 6924220, + "offset": 6952500, "size": 360, }, "decode-data-xml.d.ts.map": { - "offset": 6924580, + "offset": 6952860, "size": 180, }, "decode-data-xml.js": { - "offset": 6924750, + "offset": 6953030, "size": 330, }, "decode-data-xml.js.map": { - "offset": 6925080, + "offset": 6953360, "size": 350, }, "encode-html.d.ts.map": { - "offset": 6925430, + "offset": 6953710, "size": 360, }, "encode-html.js": { - "offset": 6925780, + "offset": 6954060, "size": 27150, }, "encode-html.js.map": { - "offset": 6952930, + "offset": 6981200, "size": 48220, }, }, }, "index.d.ts.map": { - "offset": 7001140, + "offset": 7029420, "size": 1340, }, "index.js": { - "offset": 7002480, + "offset": 7030760, "size": 4350, }, "index.js.map": { - "offset": 7006820, + "offset": 7035100, "size": 2710, }, "package.json": { - "offset": 7009530, + "offset": 7037810, "size": 30, }, }, @@ -32598,69 +32562,69 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen }, }, "escape.js": { - "offset": 7009550, + "offset": 7037830, "size": 150, }, "package.json": { - "offset": 7009700, + "offset": 7037980, "size": 2260, }, "src": { "files": { "decode-codepoint.ts": { - "offset": 7011950, + "offset": 7040230, "size": 2170, }, "decode.spec.ts": { - "offset": 7014120, + "offset": 7042400, "size": 11680, }, "decode.ts": { - "offset": 7025800, + "offset": 7054080, "size": 20300, }, "encode.spec.ts": { - "offset": 7046100, + "offset": 7074380, "size": 3320, }, "encode.ts": { - "offset": 7049410, + "offset": 7077690, "size": 2740, }, "escape.spec.ts": { - "offset": 7052150, + "offset": 7080430, "size": 500, }, "escape.ts": { - "offset": 7052650, + "offset": 7080930, "size": 4620, }, "generated": { "files": { ".eslintrc.json": { - "offset": 7057270, + "offset": 7085540, "size": 250, }, "decode-data-html.ts": { - "offset": 7057520, + "offset": 7085790, "size": 47760, }, "decode-data-xml.ts": { - "offset": 7105270, + "offset": 7133550, "size": 320, }, "encode-html.ts": { - "offset": 7105590, + "offset": 7133870, "size": 24040, }, }, }, "index.spec.ts": { - "offset": 7129620, + "offset": 7157900, "size": 4370, }, "index.ts": { - "offset": 7133990, + "offset": 7162270, "size": 4990, }, }, @@ -32670,19 +32634,19 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen "html-encoding-sniffer": { "files": { "LICENSE.txt": { - "offset": 7138980, + "offset": 7167260, "size": 1070, }, "lib": { "files": { "html-encoding-sniffer.js": { - "offset": 7140050, + "offset": 7168320, "size": 7810, }, }, }, "package.json": { - "offset": 7147850, + "offset": 7176130, "size": 640, }, }, @@ -32690,27 +32654,27 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen "http-proxy-agent": { "files": { "LICENSE": { - "offset": 7148480, + "offset": 7176760, "size": 1110, }, "dist": { "files": { "index.d.ts.map": { - "offset": 7149590, + "offset": 7177870, "size": 1670, }, "index.js": { - "offset": 7151250, + "offset": 7179530, "size": 6090, }, "index.js.map": { - "offset": 7157340, + "offset": 7185620, "size": 4140, }, }, }, "package.json": { - "offset": 7161470, + "offset": 7189750, "size": 850, }, }, @@ -32718,39 +32682,39 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen "https-proxy-agent": { "files": { "LICENSE": { - "offset": 7162320, + "offset": 7190600, "size": 1110, }, "dist": { "files": { "index.d.ts.map": { - "offset": 7163420, + "offset": 7191700, "size": 1400, }, "index.js": { - "offset": 7164810, + "offset": 7193090, "size": 7460, }, "index.js.map": { - "offset": 7172260, + "offset": 7200540, "size": 4600, }, "parse-proxy-response.d.ts.map": { - "offset": 7176850, + "offset": 7205130, "size": 450, }, "parse-proxy-response.js": { - "offset": 7177300, + "offset": 7205580, "size": 3910, }, "parse-proxy-response.js.map": { - "offset": 7181210, + "offset": 7209490, "size": 2950, }, }, }, "package.json": { - "offset": 7184160, + "offset": 7212430, "size": 910, }, }, @@ -32758,16 +32722,16 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen "is-potential-custom-element-name": { "files": { "LICENSE-MIT.txt": { - "offset": 7185060, + "offset": 7213340, "size": 1080, }, "index.js": { "executable": true, - "offset": 7186140, + "offset": 7214420, "size": 580, }, "package.json": { - "offset": 7186710, + "offset": 7214990, "size": 680, }, }, @@ -32775,13 +32739,13 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen "jsdom": { "files": { "LICENSE.txt": { - "offset": 7187390, + "offset": 7215670, "size": 1060, }, "lib": { "files": { "api.js": { - "offset": 7188440, + "offset": 7216720, "size": 10620, }, "jsdom": { @@ -32789,33 +32753,33 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen "browser": { "files": { "Window.js": { - "offset": 7199060, + "offset": 7227340, "size": 33170, }, "default-stylesheet.css": { - "offset": 7232220, + "offset": 7260500, "size": 11710, }, "js-globals.json": { - "offset": 7243930, + "offset": 7272210, "size": 6230, }, "not-implemented.js": { - "offset": 7250150, + "offset": 7278430, "size": 530, }, "parser": { "files": { "html.js": { - "offset": 7250680, + "offset": 7278960, "size": 7130, }, "index.js": { - "offset": 7257810, + "offset": 7286090, "size": 1040, }, "xml.js": { - "offset": 7258840, + "offset": 7287120, "size": 7000, }, }, @@ -32823,27 +32787,27 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen "resources": { "files": { "async-resource-queue.js": { - "offset": 7265840, + "offset": 7294120, "size": 2200, }, "no-op-resource-loader.js": { - "offset": 7268030, + "offset": 7296310, "size": 180, }, "per-document-resource-loader.js": { - "offset": 7268210, + "offset": 7296490, "size": 2790, }, "request-manager.js": { - "offset": 7270990, + "offset": 7299270, "size": 580, }, "resource-loader.js": { - "offset": 7271570, + "offset": 7299850, "size": 4420, }, "resource-queue.js": { - "offset": 7275990, + "offset": 7304270, "size": 2900, }, }, @@ -32853,7 +32817,7 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen "level2": { "files": { "style.js": { - "offset": 7278880, + "offset": 7307160, "size": 2740, }, }, @@ -32861,7 +32825,7 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen "level3": { "files": { "xpath.js": { - "offset": 7281610, + "offset": 7309890, "size": 70490, }, }, @@ -32871,11 +32835,11 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen "aborting": { "files": { "AbortController-impl.js": { - "offset": 7352100, + "offset": 7380380, "size": 320, }, "AbortSignal-impl.js": { - "offset": 7352420, + "offset": 7380690, "size": 3580, }, }, @@ -32883,27 +32847,27 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen "attributes": { "files": { "Attr-impl.js": { - "offset": 7364850, + "offset": 7393130, "size": 1520, }, "NamedNodeMap-impl.js": { - "offset": 7366360, + "offset": 7394640, "size": 2370, }, }, }, "attributes.js": { - "offset": 7355990, + "offset": 7384270, "size": 8870, }, "constraint-validation": { "files": { "DefaultConstraintValidation-impl.js": { - "offset": 7368730, + "offset": 7397010, "size": 2480, }, "ValidityState-impl.js": { - "offset": 7371210, + "offset": 7399490, "size": 1540, }, }, @@ -32911,7 +32875,7 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen "crypto": { "files": { "Crypto-impl.js": { - "offset": 7372750, + "offset": 7401020, "size": 2120, }, }, @@ -32919,7 +32883,7 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen "cssom": { "files": { "StyleSheetList-impl.js": { - "offset": 7374860, + "offset": 7403140, "size": 670, }, }, @@ -32927,11 +32891,11 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen "custom-elements": { "files": { "CustomElementRegistry-impl.js": { - "offset": 7375530, + "offset": 7403810, "size": 8430, }, "ElementInternals-impl.js": { - "offset": 7383960, + "offset": 7412240, "size": 1690, }, }, @@ -32939,39 +32903,39 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen "deviceorientation": { "files": { "DeviceMotionEventAcceleration-impl.js": { - "offset": 7385640, + "offset": 7413920, "size": 140, }, "DeviceMotionEventRotationRate-impl.js": { - "offset": 7385780, + "offset": 7414050, "size": 140, }, }, }, "documents.js": { - "offset": 7385910, + "offset": 7414190, "size": 600, }, "domparsing": { "files": { "DOMParser-impl.js": { - "offset": 7386500, + "offset": 7414780, "size": 1650, }, "InnerHTML-impl.js": { - "offset": 7388140, + "offset": 7416420, "size": 1040, }, "XMLSerializer-impl.js": { - "offset": 7389180, + "offset": 7417460, "size": 530, }, "parse5-adapter-serialization.js": { - "offset": 7389710, + "offset": 7417990, "size": 1930, }, "serialization.js": { - "offset": 7391640, + "offset": 7419910, "size": 1240, }, }, @@ -32979,11 +32943,11 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen "encoding": { "files": { "TextDecoder-impl.js": { - "offset": 7392870, + "offset": 7421150, "size": 620, }, "TextEncoder-impl.js": { - "offset": 7393480, + "offset": 7421760, "size": 180, }, }, @@ -32991,115 +32955,115 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen "events": { "files": { "BeforeUnloadEvent-impl.js": { - "offset": 7393660, + "offset": 7421940, "size": 320, }, "BlobEvent-impl.js": { - "offset": 7393980, + "offset": 7422260, "size": 300, }, "CloseEvent-impl.js": { - "offset": 7394270, + "offset": 7422550, "size": 300, }, "CompositionEvent-impl.js": { - "offset": 7394570, + "offset": 7422850, "size": 560, }, "CustomEvent-impl.js": { - "offset": 7395120, + "offset": 7423400, "size": 510, }, "DeviceMotionEvent-impl.js": { - "offset": 7395620, + "offset": 7423900, "size": 1850, }, "DeviceOrientationEvent-impl.js": { - "offset": 7397470, + "offset": 7425750, "size": 390, }, "ErrorEvent-impl.js": { - "offset": 7397850, + "offset": 7426130, "size": 320, }, "Event-impl.js": { - "offset": 7398160, + "offset": 7426440, "size": 4720, }, "EventModifierMixin-impl.js": { - "offset": 7402880, + "offset": 7431150, "size": 1160, }, "EventTarget-impl.js": { - "offset": 7404030, + "offset": 7432310, "size": 12600, }, "FocusEvent-impl.js": { - "offset": 7416630, + "offset": 7444910, "size": 310, }, "HashChangeEvent-impl.js": { - "offset": 7416930, + "offset": 7445210, "size": 350, }, "InputEvent-impl.js": { - "offset": 7417280, + "offset": 7445560, "size": 380, }, "KeyboardEvent-impl.js": { - "offset": 7417650, + "offset": 7445930, "size": 920, }, "MessageEvent-impl.js": { - "offset": 7418560, + "offset": 7446840, "size": 650, }, "MouseEvent-impl.js": { - "offset": 7419210, + "offset": 7447490, "size": 1980, }, "PageTransitionEvent-impl.js": { - "offset": 7421180, + "offset": 7449460, "size": 640, }, "PointerEvent-impl.js": { - "offset": 7421820, + "offset": 7450100, "size": 660, }, "PopStateEvent-impl.js": { - "offset": 7422480, + "offset": 7450760, "size": 320, }, "ProgressEvent-impl.js": { - "offset": 7422790, + "offset": 7451070, "size": 340, }, "PromiseRejectionEvent-impl.js": { - "offset": 7423120, + "offset": 7451400, "size": 350, }, "StorageEvent-impl.js": { - "offset": 7423470, + "offset": 7451740, "size": 740, }, "SubmitEvent-impl.js": { - "offset": 7424200, + "offset": 7452480, "size": 420, }, "TouchEvent-impl.js": { - "offset": 7424620, + "offset": 7452900, "size": 320, }, "TransitionEvent-impl.js": { - "offset": 7424940, + "offset": 7453220, "size": 340, }, "UIEvent-impl.js": { - "offset": 7425280, + "offset": 7453560, "size": 1340, }, "WheelEvent-impl.js": { - "offset": 7426620, + "offset": 7454890, "size": 330, }, }, @@ -33107,15 +33071,15 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen "fetch": { "files": { "Headers-impl.js": { - "offset": 7426940, + "offset": 7455220, "size": 3620, }, "header-list.js": { - "offset": 7430550, + "offset": 7458830, "size": 1360, }, "header-types.js": { - "offset": 7431910, + "offset": 7460190, "size": 2240, }, }, @@ -33123,19 +33087,19 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen "file-api": { "files": { "Blob-impl.js": { - "offset": 7434140, + "offset": 7462420, "size": 2450, }, "File-impl.js": { - "offset": 7436590, + "offset": 7464870, "size": 390, }, "FileList-impl.js": { - "offset": 7436970, + "offset": 7465250, "size": 300, }, "FileReader-impl.js": { - "offset": 7437270, + "offset": 7465540, "size": 3700, }, }, @@ -33143,1015 +33107,1015 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen "generated": { "files": { "AbortController.js": { - "offset": 7440960, + "offset": 7469240, "size": 4290, }, "AbortSignal.js": { - "offset": 7445240, + "offset": 7473520, "size": 7610, }, "AbstractRange.js": { - "offset": 7452850, + "offset": 7481120, "size": 5080, }, "AddEventListenerOptions.js": { - "offset": 7457920, + "offset": 7486200, "size": 1660, }, "AssignedNodesOptions.js": { - "offset": 7459580, + "offset": 7487860, "size": 900, }, "Attr.js": { - "offset": 7460470, + "offset": 7488750, "size": 6680, }, "BarProp.js": { - "offset": 7467150, + "offset": 7495430, "size": 3360, }, "BeforeUnloadEvent.js": { - "offset": 7470510, + "offset": 7498790, "size": 4150, }, "BinaryType.js": { - "offset": 7474650, + "offset": 7502930, "size": 420, }, "Blob.js": { - "offset": 7475070, + "offset": 7503350, "size": 6680, }, "BlobCallback.js": { - "offset": 7481740, + "offset": 7510020, "size": 830, }, "BlobEvent.js": { - "offset": 7482570, + "offset": 7510850, "size": 4750, }, "BlobEventInit.js": { - "offset": 7487320, + "offset": 7515600, "size": 1370, }, "BlobPropertyBag.js": { - "offset": 7488680, + "offset": 7516960, "size": 1260, }, "CDATASection.js": { - "offset": 7489940, + "offset": 7518220, "size": 3160, }, "CanPlayTypeResult.js": { - "offset": 7493100, + "offset": 7521380, "size": 430, }, "CharacterData.js": { - "offset": 7493520, + "offset": 7521800, "size": 15060, }, "CloseEvent.js": { - "offset": 7508570, + "offset": 7536850, "size": 5020, }, "CloseEventInit.js": { - "offset": 7513590, + "offset": 7541870, "size": 1730, }, "Comment.js": { - "offset": 7515320, + "offset": 7543600, "size": 3530, }, "CompositionEvent.js": { - "offset": 7518840, + "offset": 7547120, "size": 6780, }, "CompositionEventInit.js": { - "offset": 7525610, + "offset": 7553890, "size": 1010, }, "Crypto.js": { - "offset": 7526620, + "offset": 7554900, "size": 4510, }, "CustomElementConstructor.js": { - "offset": 7531130, + "offset": 7559410, "size": 970, }, "CustomElementRegistry.js": { - "offset": 7532090, + "offset": 7560370, "size": 9020, }, "CustomEvent.js": { - "offset": 7541110, + "offset": 7569390, "size": 6290, }, "CustomEventInit.js": { - "offset": 7547400, + "offset": 7575670, "size": 1000, }, "DOMException.js": { - "offset": 7548390, + "offset": 7576670, "size": 7700, }, "DOMImplementation.js": { - "offset": 7556090, + "offset": 7584370, "size": 7730, }, "DOMParser.js": { - "offset": 7563820, + "offset": 7592090, "size": 4290, }, "DOMRect.js": { - "offset": 7568100, + "offset": 7596380, "size": 8350, }, "DOMRectInit.js": { - "offset": 7576450, + "offset": 7604730, "size": 1980, }, "DOMRectReadOnly.js": { - "offset": 7578420, + "offset": 7606700, "size": 8350, }, "DOMStringMap.js": { - "offset": 7586770, + "offset": 7615050, "size": 8440, }, "DOMTokenList.js": { - "offset": 7595210, + "offset": 7623490, "size": 16800, }, "DeviceMotionEvent.js": { - "offset": 7612000, + "offset": 7640280, "size": 5750, }, "DeviceMotionEventAcceleration.js": { - "offset": 7617750, + "offset": 7646030, "size": 4330, }, "DeviceMotionEventAccelerationInit.js": { - "offset": 7622080, + "offset": 7650350, "size": 1810, }, "DeviceMotionEventInit.js": { - "offset": 7623880, + "offset": 7652160, "size": 2210, }, "DeviceMotionEventRotationRate.js": { - "offset": 7626080, + "offset": 7654360, "size": 4370, }, "DeviceMotionEventRotationRateInit.js": { - "offset": 7630450, + "offset": 7658730, "size": 1830, }, "DeviceOrientationEvent.js": { - "offset": 7632270, + "offset": 7660550, "size": 5620, }, "DeviceOrientationEventInit.js": { - "offset": 7637890, + "offset": 7666160, "size": 2290, }, "Document.js": { - "offset": 7640180, + "offset": 7668450, "size": 147250, }, "DocumentFragment.js": { - "offset": 7787420, + "offset": 7815700, "size": 11290, }, "DocumentReadyState.js": { - "offset": 7798710, + "offset": 7826990, "size": 440, }, "DocumentType.js": { - "offset": 7799140, + "offset": 7827420, "size": 8130, }, "Element.js": { - "offset": 7807270, + "offset": 7835550, "size": 123350, }, "ElementCreationOptions.js": { - "offset": 7930610, + "offset": 7958890, "size": 850, }, "ElementDefinitionOptions.js": { - "offset": 7931460, + "offset": 7959740, "size": 880, }, "ElementInternals.js": { - "offset": 7932340, + "offset": 7960620, "size": 70640, }, "EndingType.js": { - "offset": 8002970, + "offset": 8031250, "size": 420, }, "ErrorEvent.js": { - "offset": 8003390, + "offset": 8031670, "size": 5750, }, "ErrorEventInit.js": { - "offset": 8009130, + "offset": 8037410, "size": 2410, }, "Event.js": { - "offset": 8011530, + "offset": 8039810, "size": 13630, }, "EventHandlerNonNull.js": { - "offset": 8025160, + "offset": 8053440, "size": 1020, }, "EventInit.js": { - "offset": 8026170, + "offset": 8054450, "size": 1610, }, "EventListener.js": { - "offset": 8027780, + "offset": 8056050, "size": 990, }, "EventListenerOptions.js": { - "offset": 8028760, + "offset": 8057040, "size": 900, }, "EventModifierInit.js": { - "offset": 8029650, + "offset": 8057930, "size": 5700, }, "EventTarget.js": { - "offset": 8035350, + "offset": 8063620, "size": 8990, }, "External.js": { - "offset": 8044330, + "offset": 8072610, "size": 3860, }, "File.js": { - "offset": 8048180, + "offset": 8076460, "size": 5850, }, "FileList.js": { - "offset": 8054030, + "offset": 8082310, "size": 8320, }, "FilePropertyBag.js": { - "offset": 8062340, + "offset": 8090620, "size": 1020, }, "FileReader.js": { - "offset": 8063360, + "offset": 8091640, "size": 14850, }, "FocusEvent.js": { - "offset": 8078200, + "offset": 8106480, "size": 4350, }, "FocusEventInit.js": { - "offset": 8082550, + "offset": 8110830, "size": 1160, }, "FormData.js": { - "offset": 8083700, + "offset": 8111980, "size": 15570, }, "Function.js": { - "offset": 8099270, + "offset": 8127550, "size": 1190, }, "GetRootNodeOptions.js": { - "offset": 8100450, + "offset": 8128730, "size": 920, }, "HTMLAnchorElement.js": { - "offset": 8101370, + "offset": 8129650, "size": 32690, }, "HTMLAreaElement.js": { - "offset": 8134050, + "offset": 8162330, "size": 25970, }, "HTMLAudioElement.js": { - "offset": 8160020, + "offset": 8188300, "size": 3390, }, "HTMLBRElement.js": { - "offset": 8163400, + "offset": 8191680, "size": 4910, }, "HTMLBaseElement.js": { - "offset": 8168310, + "offset": 8196580, "size": 6160, }, "HTMLBodyElement.js": { - "offset": 8174470, + "offset": 8202740, "size": 28550, }, "HTMLButtonElement.js": { - "offset": 8203010, + "offset": 8231290, "size": 17120, }, "HTMLCanvasElement.js": { - "offset": 8220120, + "offset": 8248400, "size": 9900, }, "HTMLCollection.js": { - "offset": 8230020, + "offset": 8258300, "size": 10010, }, "HTMLDListElement.js": { - "offset": 8240030, + "offset": 8268310, "size": 5040, }, "HTMLDataElement.js": { - "offset": 8245060, + "offset": 8273340, "size": 4930, }, "HTMLDataListElement.js": { - "offset": 8249990, + "offset": 8278270, "size": 3870, }, "HTMLDetailsElement.js": { - "offset": 8253860, + "offset": 8282140, "size": 5040, }, "HTMLDialogElement.js": { - "offset": 8258890, + "offset": 8287170, "size": 5020, }, "HTMLDirectoryElement.js": { - "offset": 8263910, + "offset": 8292190, "size": 5090, }, "HTMLDivElement.js": { - "offset": 8269000, + "offset": 8297280, "size": 4920, }, "HTMLElement.js": { - "offset": 8273910, + "offset": 8302190, "size": 110310, }, "HTMLEmbedElement.js": { - "offset": 8384210, + "offset": 8412490, "size": 12350, }, "HTMLFieldSetElement.js": { - "offset": 8396560, + "offset": 8424830, "size": 10750, }, "HTMLFontElement.js": { - "offset": 8407300, + "offset": 8435580, "size": 7640, }, "HTMLFormControlsCollection.js": { - "offset": 8414940, + "offset": 8443220, "size": 9060, }, "HTMLFormElement.js": { - "offset": 8423990, + "offset": 8452270, "size": 20270, }, "HTMLFrameElement.js": { - "offset": 8444260, + "offset": 8472540, "size": 16950, }, "HTMLFrameSetElement.js": { - "offset": 8461210, + "offset": 8489490, "size": 23180, }, "HTMLHRElement.js": { - "offset": 8484380, + "offset": 8512660, "size": 10350, }, "HTMLHeadElement.js": { - "offset": 8494730, + "offset": 8523000, "size": 3360, }, "HTMLHeadingElement.js": { - "offset": 8498080, + "offset": 8526360, "size": 4970, }, "HTMLHtmlElement.js": { - "offset": 8503040, + "offset": 8531320, "size": 4950, }, "HTMLIFrameElement.js": { - "offset": 8507990, + "offset": 8536270, "size": 22890, }, "HTMLImageElement.js": { - "offset": 8530880, + "offset": 8559150, "size": 29550, }, "HTMLInputElement.js": { - "offset": 8560420, + "offset": 8588700, "size": 63420, }, "HTMLLIElement.js": { - "offset": 8623830, + "offset": 8652110, "size": 6500, }, "HTMLLabelElement.js": { - "offset": 8630330, + "offset": 8658610, "size": 5750, }, "HTMLLegendElement.js": { - "offset": 8636080, + "offset": 8664360, "size": 5350, }, "HTMLLinkElement.js": { - "offset": 8641420, + "offset": 8669700, "size": 17970, }, "HTMLMapElement.js": { - "offset": 8659390, + "offset": 8687670, "size": 5380, }, "HTMLMarqueeElement.js": { - "offset": 8664760, + "offset": 8693040, "size": 18620, }, "HTMLMediaElement.js": { - "offset": 8683380, + "offset": 8711660, "size": 29070, }, "HTMLMenuElement.js": { - "offset": 8712450, + "offset": 8740730, "size": 5030, }, "HTMLMetaElement.js": { - "offset": 8717470, + "offset": 8745750, "size": 9010, }, "HTMLMeterElement.js": { - "offset": 8726480, + "offset": 8754760, "size": 11350, }, "HTMLModElement.js": { - "offset": 8737830, + "offset": 8766110, "size": 6970, }, "HTMLOListElement.js": { - "offset": 8744800, + "offset": 8773080, "size": 9060, }, "HTMLObjectElement.js": { - "offset": 8753850, + "offset": 8782130, "size": 31230, }, "HTMLOptGroupElement.js": { - "offset": 8785070, + "offset": 8813350, "size": 6440, }, "HTMLOptionElement.js": { - "offset": 8791510, + "offset": 8819790, "size": 11950, }, "HTMLOptionsCollection.js": { - "offset": 8803450, + "offset": 8831730, "size": 15630, }, "HTMLOutputElement.js": { - "offset": 8819080, + "offset": 8847350, "size": 12600, }, "HTMLParagraphElement.js": { - "offset": 8831670, + "offset": 8859950, "size": 4990, }, "HTMLParamElement.js": { - "offset": 8836650, + "offset": 8864930, "size": 9000, }, "HTMLPictureElement.js": { - "offset": 8845650, + "offset": 8873930, "size": 3390, }, "HTMLPreElement.js": { - "offset": 8849030, + "offset": 8877310, "size": 5180, }, "HTMLProgressElement.js": { - "offset": 8854210, + "offset": 8882490, "size": 7310, }, "HTMLQuoteElement.js": { - "offset": 8861510, + "offset": 8889790, "size": 5630, }, "HTMLScriptElement.js": { - "offset": 8867140, + "offset": 8895420, "size": 15280, }, "HTMLSelectElement.js": { - "offset": 8882410, + "offset": 8910690, "size": 31520, }, "HTMLSlotElement.js": { - "offset": 8913930, + "offset": 8942200, "size": 6400, }, "HTMLSourceElement.js": { - "offset": 8920320, + "offset": 8948600, "size": 11050, }, "HTMLSpanElement.js": { - "offset": 8931370, + "offset": 8959650, "size": 3360, }, "HTMLStyleElement.js": { - "offset": 8934720, + "offset": 8963000, "size": 6680, }, "HTMLTableCaptionElement.js": { - "offset": 8941400, + "offset": 8969680, "size": 5030, }, "HTMLTableCellElement.js": { - "offset": 8946430, + "offset": 8974700, "size": 24020, }, "HTMLTableColElement.js": { - "offset": 8970440, + "offset": 8998720, "size": 12250, }, "HTMLTableElement.js": { - "offset": 8982680, + "offset": 9010960, "size": 26280, }, "HTMLTableRowElement.js": { - "offset": 9008960, + "offset": 9037230, "size": 13590, }, "HTMLTableSectionElement.js": { - "offset": 9022550, + "offset": 9050820, "size": 11470, }, "HTMLTemplateElement.js": { - "offset": 9034010, + "offset": 9062290, "size": 3800, }, "HTMLTextAreaElement.js": { - "offset": 9037810, + "offset": 9066090, "size": 40270, }, "HTMLTimeElement.js": { - "offset": 9078070, + "offset": 9106350, "size": 4960, }, "HTMLTitleElement.js": { - "offset": 9083030, + "offset": 9111310, "size": 4820, }, "HTMLTrackElement.js": { - "offset": 9087850, + "offset": 9116130, "size": 11900, }, "HTMLUListElement.js": { - "offset": 9099740, + "offset": 9128020, "size": 6380, }, "HTMLUnknownElement.js": { - "offset": 9106120, + "offset": 9134400, "size": 3240, }, "HTMLVideoElement.js": { - "offset": 9109360, + "offset": 9137640, "size": 11290, }, "HashChangeEvent.js": { - "offset": 9120640, + "offset": 9148920, "size": 4740, }, "HashChangeEventInit.js": { - "offset": 9125380, + "offset": 9153660, "size": 1380, }, "Headers.js": { - "offset": 9126750, + "offset": 9155030, "size": 14250, }, "History.js": { - "offset": 9141000, + "offset": 9169280, "size": 8220, }, "InputEvent.js": { - "offset": 9149220, + "offset": 9177500, "size": 5040, }, "InputEventInit.js": { - "offset": 9154250, + "offset": 9182530, "size": 1850, }, "KeyboardEvent.js": { - "offset": 9156100, + "offset": 9184380, "size": 13770, }, "KeyboardEventInit.js": { - "offset": 9169860, + "offset": 9198140, "size": 3100, }, "Location.js": { - "offset": 9172960, + "offset": 9201240, "size": 13510, }, "MessageEvent.js": { - "offset": 9186470, + "offset": 9214740, "size": 9580, }, "MessageEventInit.js": { - "offset": 9196040, + "offset": 9224320, "size": 2630, }, "MimeType.js": { - "offset": 9198670, + "offset": 9226950, "size": 4530, }, "MimeTypeArray.js": { - "offset": 9203190, + "offset": 9231470, "size": 9250, }, "MouseEvent.js": { - "offset": 9212440, + "offset": 9240720, "size": 17840, }, "MouseEventInit.js": { - "offset": 9230280, + "offset": 9258560, "size": 5160, }, "MutationCallback.js": { - "offset": 9235430, + "offset": 9263710, "size": 1020, }, "MutationObserver.js": { - "offset": 9236440, + "offset": 9264720, "size": 5640, }, "MutationObserverInit.js": { - "offset": 9242080, + "offset": 9270360, "size": 3290, }, "MutationRecord.js": { - "offset": 9245370, + "offset": 9273650, "size": 6970, }, "NamedNodeMap.js": { - "offset": 9252340, + "offset": 9280620, "size": 16410, }, "Navigator.js": { - "offset": 9268740, + "offset": 9297020, "size": 9720, }, "Node.js": { - "offset": 9278450, + "offset": 9306730, "size": 26720, }, "NodeFilter.js": { - "offset": 9305160, + "offset": 9333440, "size": 2450, }, "NodeIterator.js": { - "offset": 9307600, + "offset": 9335880, "size": 6330, }, "NodeList.js": { - "offset": 9313930, + "offset": 9342210, "size": 8760, }, "OnBeforeUnloadEventHandlerNonNull.js": { - "offset": 9322690, + "offset": 9350970, "size": 1240, }, "OnErrorEventHandlerNonNull.js": { - "offset": 9323920, + "offset": 9352200, "size": 1520, }, "PageTransitionEvent.js": { - "offset": 9325430, + "offset": 9353710, "size": 4440, }, "PageTransitionEventInit.js": { - "offset": 9329870, + "offset": 9358150, "size": 1040, }, "Performance.js": { - "offset": 9330900, + "offset": 9359180, "size": 4300, }, "Plugin.js": { - "offset": 9335200, + "offset": 9363480, "size": 10270, }, "PluginArray.js": { - "offset": 9345460, + "offset": 9373740, "size": 9570, }, "PointerEvent.js": { - "offset": 9355020, + "offset": 9383300, "size": 9870, }, "PointerEventInit.js": { - "offset": 9364890, + "offset": 9393170, "size": 6480, }, "PopStateEvent.js": { - "offset": 9371370, + "offset": 9399640, "size": 4330, }, "PopStateEventInit.js": { - "offset": 9375690, + "offset": 9403970, "size": 1000, }, "ProcessingInstruction.js": { - "offset": 9376690, + "offset": 9404970, "size": 3660, }, "ProgressEvent.js": { - "offset": 9380350, + "offset": 9408620, "size": 5150, }, "ProgressEventInit.js": { - "offset": 9385500, + "offset": 9413770, "size": 1760, }, "PromiseRejectionEvent.js": { - "offset": 9387250, + "offset": 9415530, "size": 4870, }, "PromiseRejectionEventInit.js": { - "offset": 9392110, + "offset": 9420390, "size": 1370, }, "RadioNodeList.js": { - "offset": 9393470, + "offset": 9421750, "size": 8150, }, "Range.js": { - "offset": 9401620, + "offset": 9429900, "size": 22320, }, "SVGAnimatedPreserveAspectRatio.js": { - "offset": 9423940, + "offset": 9452220, "size": 4190, }, "SVGAnimatedRect.js": { - "offset": 9428130, + "offset": 9456410, "size": 4030, }, "SVGAnimatedString.js": { - "offset": 9432160, + "offset": 9460440, "size": 4390, }, "SVGBoundingBoxOptions.js": { - "offset": 9436540, + "offset": 9464820, "size": 1880, }, "SVGDefsElement.js": { - "offset": 9438410, + "offset": 9466690, "size": 3240, }, "SVGDescElement.js": { - "offset": 9441640, + "offset": 9469920, "size": 3200, }, "SVGElement.js": { - "offset": 9444840, + "offset": 9473120, "size": 99440, }, "SVGGElement.js": { - "offset": 9544280, + "offset": 9572560, "size": 3210, }, "SVGGraphicsElement.js": { - "offset": 9547490, + "offset": 9575770, "size": 4290, }, "SVGMetadataElement.js": { - "offset": 9551770, + "offset": 9580050, "size": 3240, }, "SVGNumber.js": { - "offset": 9555000, + "offset": 9583280, "size": 3850, }, "SVGPreserveAspectRatio.js": { - "offset": 9558850, + "offset": 9587130, "size": 6960, }, "SVGRect.js": { - "offset": 9565800, + "offset": 9594080, "size": 6220, }, "SVGSVGElement.js": { - "offset": 9572020, + "offset": 9600300, "size": 25530, }, "SVGStringList.js": { - "offset": 9597550, + "offset": 9625830, "size": 15520, }, "SVGSwitchElement.js": { - "offset": 9613070, + "offset": 9641350, "size": 3250, }, "SVGSymbolElement.js": { - "offset": 9616320, + "offset": 9644600, "size": 4550, }, "SVGTitleElement.js": { - "offset": 9620860, + "offset": 9649140, "size": 3210, }, "Screen.js": { - "offset": 9624070, + "offset": 9652350, "size": 5230, }, "ScrollBehavior.js": { - "offset": 9629290, + "offset": 9657570, "size": 430, }, "ScrollIntoViewOptions.js": { - "offset": 9629720, + "offset": 9658000, "size": 1420, }, "ScrollLogicalPosition.js": { - "offset": 9631130, + "offset": 9659410, "size": 460, }, "ScrollOptions.js": { - "offset": 9631580, + "offset": 9659860, "size": 950, }, "ScrollRestoration.js": { - "offset": 9632520, + "offset": 9660800, "size": 420, }, "Selection.js": { - "offset": 9632940, + "offset": 9661220, "size": 18590, }, "SelectionMode.js": { - "offset": 9651530, + "offset": 9679810, "size": 440, }, "ShadowRoot.js": { - "offset": 9651960, + "offset": 9680240, "size": 5870, }, "ShadowRootInit.js": { - "offset": 9657820, + "offset": 9686100, "size": 990, }, "ShadowRootMode.js": { - "offset": 9658810, + "offset": 9687090, "size": 420, }, "StaticRange.js": { - "offset": 9659230, + "offset": 9687510, "size": 3720, }, "StaticRangeInit.js": { - "offset": 9662940, + "offset": 9691220, "size": 2230, }, "Storage.js": { - "offset": 9665170, + "offset": 9693450, "size": 11530, }, "StorageEvent.js": { - "offset": 9676700, + "offset": 9704980, "size": 9750, }, "StorageEventInit.js": { - "offset": 9686440, + "offset": 9714720, "size": 2800, }, "StyleSheetList.js": { - "offset": 9689230, + "offset": 9717510, "size": 8400, }, "SubmitEvent.js": { - "offset": 9697630, + "offset": 9725910, "size": 4340, }, "SubmitEventInit.js": { - "offset": 9701970, + "offset": 9730250, "size": 1150, }, "SupportedType.js": { - "offset": 9703110, + "offset": 9731390, "size": 500, }, "Text.js": { - "offset": 9703600, + "offset": 9731880, "size": 5140, }, "TextDecodeOptions.js": { - "offset": 9708740, + "offset": 9737020, "size": 890, }, "TextDecoder.js": { - "offset": 9709630, + "offset": 9737910, "size": 6620, }, "TextDecoderOptions.js": { - "offset": 9716250, + "offset": 9744520, "size": 1250, }, "TextEncoder.js": { - "offset": 9717490, + "offset": 9745770, "size": 5390, }, "TextEncoderEncodeIntoResult.js": { - "offset": 9722870, + "offset": 9751150, "size": 1210, }, "TextTrackKind.js": { - "offset": 9724080, + "offset": 9752360, "size": 460, }, "TouchEvent.js": { - "offset": 9724540, + "offset": 9752820, "size": 6680, }, "TouchEventInit.js": { - "offset": 9731210, + "offset": 9759490, "size": 2460, }, "TransitionEvent.js": { - "offset": 9733670, + "offset": 9761950, "size": 5240, }, "TransitionEventInit.js": { - "offset": 9738910, + "offset": 9767180, "size": 1760, }, "TreeWalker.js": { - "offset": 9740660, + "offset": 9768940, "size": 8000, }, "UIEvent.js": { - "offset": 9748660, + "offset": 9776940, "size": 7150, }, "UIEventInit.js": { - "offset": 9755800, + "offset": 9784080, "size": 1700, }, "ValidityState.js": { - "offset": 9757500, + "offset": 9785770, "size": 7400, }, "VisibilityState.js": { - "offset": 9764890, + "offset": 9793170, "size": 430, }, "VoidFunction.js": { - "offset": 9765320, + "offset": 9793600, "size": 730, }, "WebSocket.js": { - "offset": 9766050, + "offset": 9794330, "size": 15160, }, "WheelEvent.js": { - "offset": 9781200, + "offset": 9809480, "size": 5810, }, "WheelEventInit.js": { - "offset": 9787000, + "offset": 9815280, "size": 2030, }, "XMLDocument.js": { - "offset": 9789030, + "offset": 9817300, "size": 3170, }, "XMLHttpRequest.js": { - "offset": 9792190, + "offset": 9820470, "size": 22020, }, "XMLHttpRequestEventTarget.js": { - "offset": 9814210, + "offset": 9842490, "size": 10630, }, "XMLHttpRequestResponseType.js": { - "offset": 9824830, + "offset": 9853110, "size": 480, }, "XMLHttpRequestUpload.js": { - "offset": 9825310, + "offset": 9853590, "size": 3350, }, "XMLSerializer.js": { - "offset": 9828660, + "offset": 9856930, "size": 4030, }, "utils.js": { - "offset": 9832680, + "offset": 9860960, "size": 7090, }, }, @@ -34159,11 +34123,11 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen "geometry": { "files": { "DOMRect-impl.js": { - "offset": 9839770, + "offset": 9868050, "size": 730, }, "DOMRectReadOnly-impl.js": { - "offset": 9840500, + "offset": 9868780, "size": 1700, }, }, @@ -34171,143 +34135,143 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen "helpers": { "files": { "agent-factory.js": { - "offset": 9842200, + "offset": 9870480, "size": 530, }, "binary-data.js": { - "offset": 9842730, + "offset": 9871000, "size": 320, }, "colors.js": { - "offset": 9843050, + "offset": 9871320, "size": 7470, }, "create-element.js": { - "offset": 9850510, + "offset": 9878790, "size": 10430, }, "create-event-accessor.js": { - "offset": 9860940, + "offset": 9889220, "size": 5840, }, "custom-elements.js": { - "offset": 9866780, + "offset": 9895060, "size": 7740, }, "dates-and-times.js": { - "offset": 9874520, + "offset": 9902800, "size": 7870, }, "details.js": { - "offset": 9882380, + "offset": 9910660, "size": 540, }, "events.js": { - "offset": 9882920, + "offset": 9911200, "size": 720, }, "focusing.js": { - "offset": 9883640, + "offset": 9911920, "size": 3480, }, "form-controls.js": { - "offset": 9887110, + "offset": 9915390, "size": 10390, }, "html-constructor.js": { - "offset": 9897500, + "offset": 9925780, "size": 2830, }, "http-request.js": { - "offset": 9900320, + "offset": 9928600, "size": 8460, }, "internal-constants.js": { - "offset": 9908780, + "offset": 9937060, "size": 390, }, "is-window.js": { - "offset": 9909170, + "offset": 9937440, "size": 740, }, "iterable-weak-set.js": { - "offset": 9909900, + "offset": 9938180, "size": 1160, }, "json.js": { - "offset": 9911060, + "offset": 9939340, "size": 350, }, "mutation-observers.js": { - "offset": 9911400, + "offset": 9939680, "size": 5440, }, "namespaces.js": { - "offset": 9916840, + "offset": 9945120, "size": 480, }, "node.js": { - "offset": 9917320, + "offset": 9945600, "size": 1320, }, "number-and-date-inputs.js": { - "offset": 9918640, + "offset": 9946920, "size": 6880, }, "ordered-set.js": { - "offset": 9925510, + "offset": 9953790, "size": 2090, }, "page-transition-event.js": { - "offset": 9927600, + "offset": 9955880, "size": 450, }, "runtime-script-errors.js": { - "offset": 9928040, + "offset": 9956320, "size": 2480, }, "shadow-dom.js": { - "offset": 9930520, + "offset": 9958800, "size": 6850, }, "strings.js": { - "offset": 9937370, + "offset": 9965650, "size": 5470, }, "style-rules.js": { - "offset": 9942840, + "offset": 9971110, "size": 10600, }, "stylesheets.js": { - "offset": 9953430, + "offset": 9981710, "size": 5340, }, "svg": { "files": { "basic-types.js": { - "offset": 9958770, + "offset": 9987050, "size": 1640, }, "render.js": { - "offset": 9960400, + "offset": 9988680, "size": 1320, }, }, }, "system-colors.js": { - "offset": 9961710, + "offset": 9989990, "size": 2890, }, "text.js": { - "offset": 9964600, + "offset": 9992870, "size": 550, }, "traversal.js": { - "offset": 9965140, + "offset": 9993420, "size": 2330, }, "validate-names.js": { - "offset": 9967470, + "offset": 9995740, "size": 2050, }, }, @@ -34315,23 +34279,23 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen "hr-time": { "files": { "Performance-impl.js": { - "offset": 9969510, + "offset": 9997790, "size": 520, }, }, }, "interfaces.js": { - "offset": 9970030, + "offset": 9998300, "size": 12290, }, "mutation-observer": { "files": { "MutationObserver-impl.js": { - "offset": 9982310, + "offset": 10010590, "size": 3600, }, "MutationRecord-impl.js": { - "offset": 9985900, + "offset": 10014180, "size": 980, }, }, @@ -34339,523 +34303,523 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen "navigator": { "files": { "MimeType-impl.js": { - "offset": 9986880, + "offset": 10015160, "size": 60, }, "MimeTypeArray-impl.js": { - "offset": 9986940, + "offset": 10015210, "size": 290, }, "Navigator-impl.js": { - "offset": 9987220, + "offset": 10015500, "size": 1440, }, "NavigatorConcurrentHardware-impl.js": { - "offset": 9988660, + "offset": 10016930, "size": 180, }, "NavigatorCookies-impl.js": { - "offset": 9988830, + "offset": 10017110, "size": 120, }, "NavigatorID-impl.js": { - "offset": 9988940, + "offset": 10017220, "size": 480, }, "NavigatorLanguage-impl.js": { - "offset": 9989420, + "offset": 10017700, "size": 170, }, "NavigatorOnLine-impl.js": { - "offset": 9989590, + "offset": 10017860, "size": 110, }, "NavigatorPlugins-impl.js": { - "offset": 9989690, + "offset": 10017970, "size": 180, }, "Plugin-impl.js": { - "offset": 9989870, + "offset": 10018150, "size": 60, }, "PluginArray-impl.js": { - "offset": 9989930, + "offset": 10018210, "size": 300, }, }, }, "node-document-position.js": { - "offset": 9990230, + "offset": 10018510, "size": 280, }, "node-type.js": { - "offset": 9990500, + "offset": 10018780, "size": 390, }, "node.js": { - "offset": 9990890, + "offset": 10019170, "size": 9510, }, "nodes": { "files": { "CDATASection-impl.js": { - "offset": 10000390, + "offset": 10028670, "size": 370, }, "CharacterData-impl.js": { - "offset": 10000760, + "offset": 10029040, "size": 3540, }, "ChildNode-impl.js": { - "offset": 10004290, + "offset": 10032570, "size": 2030, }, "Comment-impl.js": { - "offset": 10006320, + "offset": 10034590, "size": 540, }, "DOMImplementation-impl.js": { - "offset": 10006850, + "offset": 10035130, "size": 3880, }, "DOMStringMap-impl.js": { - "offset": 10010720, + "offset": 10039000, "size": 1990, }, "DOMTokenList-impl.js": { - "offset": 10012710, + "offset": 10040990, "size": 4340, }, "Document-impl.js": { - "offset": 10017050, + "offset": 10045330, "size": 31130, }, "DocumentFragment-impl.js": { - "offset": 10048180, + "offset": 10076460, "size": 1400, }, "DocumentOrShadowRoot-impl.js": { - "offset": 10049570, + "offset": 10077850, "size": 740, }, "DocumentType-impl.js": { - "offset": 10050300, + "offset": 10078580, "size": 660, }, "Element-impl.js": { - "offset": 10050960, + "offset": 10079240, "size": 17090, }, "ElementCSSInlineStyle-impl.js": { - "offset": 10068040, + "offset": 10096320, "size": 520, }, "ElementContentEditable-impl.js": { - "offset": 10068550, + "offset": 10096830, "size": 120, }, "GlobalEventHandlers-impl.js": { - "offset": 10068670, + "offset": 10096950, "size": 3100, }, "HTMLAnchorElement-impl.js": { - "offset": 10071760, + "offset": 10100040, "size": 1260, }, "HTMLAreaElement-impl.js": { - "offset": 10073010, + "offset": 10101290, "size": 1150, }, "HTMLAudioElement-impl.js": { - "offset": 10074160, + "offset": 10102440, "size": 220, }, "HTMLBRElement-impl.js": { - "offset": 10074380, + "offset": 10102660, "size": 200, }, "HTMLBaseElement-impl.js": { - "offset": 10074580, + "offset": 10102860, "size": 1000, }, "HTMLBodyElement-impl.js": { - "offset": 10075580, + "offset": 10103850, "size": 490, }, "HTMLButtonElement-impl.js": { - "offset": 10076070, + "offset": 10104340, "size": 1960, }, "HTMLCanvasElement-impl.js": { - "offset": 10078030, + "offset": 10106300, "size": 3950, }, "HTMLCollection-impl.js": { - "offset": 10081970, + "offset": 10110250, "size": 2270, }, "HTMLDListElement-impl.js": { - "offset": 10084240, + "offset": 10112510, "size": 210, }, "HTMLDataElement-impl.js": { - "offset": 10084440, + "offset": 10112720, "size": 210, }, "HTMLDataListElement-impl.js": { - "offset": 10084640, + "offset": 10112920, "size": 600, }, "HTMLDetailsElement-impl.js": { - "offset": 10085240, + "offset": 10113520, "size": 930, }, "HTMLDialogElement-impl.js": { - "offset": 10086160, + "offset": 10114440, "size": 210, }, "HTMLDirectoryElement-impl.js": { - "offset": 10086360, + "offset": 10114640, "size": 220, }, "HTMLDivElement-impl.js": { - "offset": 10086580, + "offset": 10114850, "size": 200, }, "HTMLElement-impl.js": { - "offset": 10086770, + "offset": 10115050, "size": 6300, }, "HTMLEmbedElement-impl.js": { - "offset": 10093070, + "offset": 10121350, "size": 210, }, "HTMLFieldSetElement-impl.js": { - "offset": 10093270, + "offset": 10121550, "size": 1250, }, "HTMLFontElement-impl.js": { - "offset": 10094520, + "offset": 10122800, "size": 210, }, "HTMLFormControlsCollection-impl.js": { - "offset": 10094720, + "offset": 10123000, "size": 780, }, "HTMLFormElement-impl.js": { - "offset": 10095500, + "offset": 10123770, "size": 6780, }, "HTMLFrameElement-impl.js": { - "offset": 10102270, + "offset": 10130550, "size": 8100, }, "HTMLFrameSetElement-impl.js": { - "offset": 10110360, + "offset": 10138640, "size": 510, }, "HTMLHRElement-impl.js": { - "offset": 10110860, + "offset": 10139140, "size": 200, }, "HTMLHeadElement-impl.js": { - "offset": 10111060, + "offset": 10139340, "size": 210, }, "HTMLHeadingElement-impl.js": { - "offset": 10111260, + "offset": 10139540, "size": 210, }, "HTMLHtmlElement-impl.js": { - "offset": 10111470, + "offset": 10139750, "size": 210, }, "HTMLHyperlinkElementUtils-impl.js": { - "offset": 10111670, + "offset": 10139950, "size": 7690, }, "HTMLIFrameElement-impl.js": { - "offset": 10119350, + "offset": 10147630, "size": 220, }, "HTMLImageElement-impl.js": { - "offset": 10119570, + "offset": 10147850, "size": 3570, }, "HTMLInputElement-impl.js": { - "offset": 10123140, + "offset": 10151420, "size": 36430, }, "HTMLLIElement-impl.js": { - "offset": 10159570, + "offset": 10187840, "size": 200, }, "HTMLLabelElement-impl.js": { - "offset": 10159760, + "offset": 10188040, "size": 2750, }, "HTMLLegendElement-impl.js": { - "offset": 10162500, + "offset": 10190780, "size": 520, }, "HTMLLinkElement-impl.js": { - "offset": 10163020, + "offset": 10191300, "size": 2780, }, "HTMLMapElement-impl.js": { - "offset": 10165790, + "offset": 10194070, "size": 270, }, "HTMLMarqueeElement-impl.js": { - "offset": 10166060, + "offset": 10194340, "size": 210, }, "HTMLMediaElement-impl.js": { - "offset": 10166260, + "offset": 10194540, "size": 3190, }, "HTMLMenuElement-impl.js": { - "offset": 10169450, + "offset": 10197730, "size": 210, }, "HTMLMetaElement-impl.js": { - "offset": 10169650, + "offset": 10197930, "size": 210, }, "HTMLMeterElement-impl.js": { - "offset": 10169850, + "offset": 10198130, "size": 4360, }, "HTMLModElement-impl.js": { - "offset": 10174210, + "offset": 10202490, "size": 200, }, "HTMLOListElement-impl.js": { - "offset": 10174410, + "offset": 10202680, "size": 430, }, "HTMLObjectElement-impl.js": { - "offset": 10174830, + "offset": 10203110, "size": 690, }, "HTMLOptGroupElement-impl.js": { - "offset": 10175520, + "offset": 10203800, "size": 210, }, "HTMLOptionElement-impl.js": { - "offset": 10175730, + "offset": 10204000, "size": 3670, }, "HTMLOptionsCollection-impl.js": { - "offset": 10179390, + "offset": 10207670, "size": 3420, }, "HTMLOrSVGElement-impl.js": { - "offset": 10182800, + "offset": 10211080, "size": 3150, }, "HTMLOutputElement-impl.js": { - "offset": 10185950, + "offset": 10214230, "size": 2040, }, "HTMLParagraphElement-impl.js": { - "offset": 10187980, + "offset": 10216260, "size": 220, }, "HTMLParamElement-impl.js": { - "offset": 10188190, + "offset": 10216470, "size": 210, }, "HTMLPictureElement-impl.js": { - "offset": 10188400, + "offset": 10216670, "size": 210, }, "HTMLPreElement-impl.js": { - "offset": 10188600, + "offset": 10216880, "size": 200, }, "HTMLProgressElement-impl.js": { - "offset": 10188800, + "offset": 10217080, "size": 1880, }, "HTMLQuoteElement-impl.js": { - "offset": 10190670, + "offset": 10218950, "size": 210, }, "HTMLScriptElement-impl.js": { - "offset": 10190870, + "offset": 10219150, "size": 7380, }, "HTMLSelectElement-impl.js": { - "offset": 10198250, + "offset": 10226530, "size": 8140, }, "HTMLSlotElement-impl.js": { - "offset": 10206380, + "offset": 10234660, "size": 1540, }, "HTMLSourceElement-impl.js": { - "offset": 10207920, + "offset": 10236200, "size": 210, }, "HTMLSpanElement-impl.js": { - "offset": 10208130, + "offset": 10236410, "size": 210, }, "HTMLStyleElement-impl.js": { - "offset": 10208330, + "offset": 10236610, "size": 2140, }, "HTMLTableCaptionElement-impl.js": { - "offset": 10210470, + "offset": 10238740, "size": 220, }, "HTMLTableCellElement-impl.js": { - "offset": 10210680, + "offset": 10238960, "size": 1660, }, "HTMLTableColElement-impl.js": { - "offset": 10212340, + "offset": 10240620, "size": 210, }, "HTMLTableElement-impl.js": { - "offset": 10212550, + "offset": 10240830, "size": 6150, }, "HTMLTableRowElement-impl.js": { - "offset": 10218700, + "offset": 10246980, "size": 2410, }, "HTMLTableSectionElement-impl.js": { - "offset": 10221100, + "offset": 10249380, "size": 1640, }, "HTMLTemplateElement-impl.js": { - "offset": 10222740, + "offset": 10251010, "size": 2040, }, "HTMLTextAreaElement-impl.js": { - "offset": 10224770, + "offset": 10253050, "size": 6540, }, "HTMLTimeElement-impl.js": { - "offset": 10231310, + "offset": 10259590, "size": 210, }, "HTMLTitleElement-impl.js": { - "offset": 10231510, + "offset": 10259790, "size": 370, }, "HTMLTrackElement-impl.js": { - "offset": 10231880, + "offset": 10260160, "size": 250, }, "HTMLUListElement-impl.js": { - "offset": 10232130, + "offset": 10260400, "size": 210, }, "HTMLUnknownElement-impl.js": { - "offset": 10232330, + "offset": 10260610, "size": 210, }, "HTMLVideoElement-impl.js": { - "offset": 10232540, + "offset": 10260810, "size": 300, }, "LinkStyle-impl.js": { - "offset": 10232830, + "offset": 10261110, "size": 60, }, "Node-impl.js": { - "offset": 10232890, + "offset": 10261170, "size": 35020, }, "NodeList-impl.js": { - "offset": 10267910, + "offset": 10296190, "size": 1060, }, "NonDocumentTypeChildNode-impl.js": { - "offset": 10268970, + "offset": 10297250, "size": 680, }, "NonElementParentNode-impl.js": { - "offset": 10269640, + "offset": 10297920, "size": 270, }, "ParentNode-impl.js": { - "offset": 10269900, + "offset": 10298180, "size": 2630, }, "ProcessingInstruction-impl.js": { - "offset": 10272530, + "offset": 10300810, "size": 510, }, "RadioNodeList-impl.js": { - "offset": 10273040, + "offset": 10301320, "size": 1370, }, "SVGDefsElement-impl.js": { - "offset": 10274400, + "offset": 10302680, "size": 220, }, "SVGDescElement-impl.js": { - "offset": 10274620, + "offset": 10302900, "size": 200, }, "SVGElement-impl.js": { - "offset": 10274810, + "offset": 10303090, "size": 2130, }, "SVGGElement-impl.js": { - "offset": 10276940, + "offset": 10305220, "size": 220, }, "SVGGraphicsElement-impl.js": { - "offset": 10277150, + "offset": 10305430, "size": 500, }, "SVGMetadataElement-impl.js": { - "offset": 10277650, + "offset": 10305930, "size": 210, }, "SVGSVGElement-impl.js": { - "offset": 10277850, + "offset": 10306130, "size": 1360, }, "SVGSwitchElement-impl.js": { - "offset": 10279210, + "offset": 10307490, "size": 230, }, "SVGSymbolElement-impl.js": { - "offset": 10279430, + "offset": 10307710, "size": 230, }, "SVGTests-impl.js": { - "offset": 10279650, + "offset": 10307930, "size": 1160, }, "SVGTitleElement-impl.js": { - "offset": 10280810, + "offset": 10309090, "size": 200, }, "ShadowRoot-impl.js": { - "offset": 10281010, + "offset": 10309290, "size": 1020, }, "Slotable-impl.js": { - "offset": 10282030, + "offset": 10310310, "size": 950, }, "Text-impl.js": { - "offset": 10282980, + "offset": 10311260, "size": 2900, }, "WindowEventHandlers-impl.js": { - "offset": 10285870, + "offset": 10314150, "size": 1090, }, "XMLDocument-impl.js": { - "offset": 10286960, + "offset": 10315230, "size": 160, }, }, @@ -34863,19 +34827,19 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen "range": { "files": { "AbstractRange-impl.js": { - "offset": 10287110, + "offset": 10315390, "size": 970, }, "Range-impl.js": { - "offset": 10288070, + "offset": 10316350, "size": 27240, }, "StaticRange-impl.js": { - "offset": 10315300, + "offset": 10343580, "size": 1110, }, "boundary-point.js": { - "offset": 10316410, + "offset": 10344690, "size": 1130, }, }, @@ -34883,7 +34847,7 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen "selection": { "files": { "Selection-impl.js": { - "offset": 10317540, + "offset": 10345820, "size": 10900, }, }, @@ -34891,35 +34855,35 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen "svg": { "files": { "SVGAnimatedPreserveAspectRatio-impl.js": { - "offset": 10328440, + "offset": 10356710, "size": 600, }, "SVGAnimatedRect-impl.js": { - "offset": 10329030, + "offset": 10357310, "size": 2630, }, "SVGAnimatedString-impl.js": { - "offset": 10331660, + "offset": 10359940, "size": 1430, }, "SVGListBase.js": { - "offset": 10333090, + "offset": 10361370, "size": 5280, }, "SVGNumber-impl.js": { - "offset": 10338370, + "offset": 10366650, "size": 1040, }, "SVGPreserveAspectRatio-impl.js": { - "offset": 10339400, + "offset": 10367680, "size": 2680, }, "SVGRect-impl.js": { - "offset": 10342080, + "offset": 10370360, "size": 3170, }, "SVGStringList-impl.js": { - "offset": 10345250, + "offset": 10373520, "size": 370, }, }, @@ -34927,15 +34891,15 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen "traversal": { "files": { "NodeIterator-impl.js": { - "offset": 10345610, + "offset": 10373890, "size": 2740, }, "TreeWalker-impl.js": { - "offset": 10348340, + "offset": 10376620, "size": 4710, }, "helpers.js": { - "offset": 10353050, + "offset": 10381320, "size": 1180, }, }, @@ -34943,7 +34907,7 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen "webidl": { "files": { "DOMException-impl.js": { - "offset": 10354220, + "offset": 10382500, "size": 1100, }, }, @@ -34951,7 +34915,7 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen "websockets": { "files": { "WebSocket-impl.js": { - "offset": 10355320, + "offset": 10383590, "size": 10420, }, }, @@ -34959,7 +34923,7 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen "webstorage": { "files": { "Storage-impl.js": { - "offset": 10365730, + "offset": 10394010, "size": 2660, }, }, @@ -34967,67 +34931,67 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen "window": { "files": { "BarProp-impl.js": { - "offset": 10375140, + "offset": 10403420, "size": 320, }, "External-impl.js": { - "offset": 10375450, + "offset": 10403730, "size": 280, }, "History-impl.js": { - "offset": 10375730, + "offset": 10404010, "size": 4560, }, "Location-impl.js": { - "offset": 10380290, + "offset": 10408560, "size": 5780, }, "Screen-impl.js": { - "offset": 10386060, + "offset": 10414340, "size": 360, }, "SessionHistory.js": { - "offset": 10386410, + "offset": 10414690, "size": 5830, }, "navigation.js": { - "offset": 10392240, + "offset": 10420520, "size": 3170, }, }, }, "window-properties.js": { - "offset": 10368380, + "offset": 10396660, "size": 6760, }, "xhr": { "files": { "FormData-impl.js": { - "offset": 10395400, + "offset": 10423680, "size": 5890, }, "XMLHttpRequest-impl.js": { - "offset": 10401290, + "offset": 10429570, "size": 31950, }, "XMLHttpRequestEventTarget-impl.js": { - "offset": 10433240, + "offset": 10461520, "size": 780, }, "XMLHttpRequestUpload-impl.js": { - "offset": 10434020, + "offset": 10462300, "size": 220, }, "multipart-form-data.js": { - "offset": 10434230, + "offset": 10462510, "size": 3400, }, "xhr-sync-worker.js": { - "offset": 10437620, + "offset": 10465900, "size": 1650, }, "xhr-utils.js": { - "offset": 10439260, + "offset": 10467540, "size": 12590, }, }, @@ -35035,11 +34999,11 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen }, }, "utils.js": { - "offset": 10451850, + "offset": 10480130, "size": 2690, }, "virtual-console.js": { - "offset": 10454540, + "offset": 10482820, "size": 1130, }, }, @@ -35051,35 +35015,35 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen "whatwg-mimetype": { "files": { "LICENSE.txt": { - "offset": 10457680, + "offset": 10485960, "size": 1070, }, "lib": { "files": { "mime-type-parameters.js": { - "offset": 10458750, + "offset": 10487030, "size": 1440, }, "mime-type.js": { - "offset": 10460190, + "offset": 10488470, "size": 3160, }, "parser.js": { - "offset": 10463350, + "offset": 10491630, "size": 2520, }, "serializer.js": { - "offset": 10465860, + "offset": 10494140, "size": 600, }, "utils.js": { - "offset": 10466460, + "offset": 10494740, "size": 1410, }, }, }, "package.json": { - "offset": 10467870, + "offset": 10496150, "size": 700, }, }, @@ -35087,7 +35051,7 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen }, }, "package.json": { - "offset": 10455670, + "offset": 10483940, "size": 2020, }, }, @@ -35095,31 +35059,31 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen "linkify-it": { "files": { "LICENSE": { - "offset": 10468570, + "offset": 10496840, "size": 1060, }, "build": { "files": { "index.cjs.js": { - "offset": 10469620, + "offset": 10497900, "size": 23330, }, }, }, "index.mjs": { - "offset": 10492950, + "offset": 10521230, "size": 17610, }, "lib": { "files": { "re.mjs": { - "offset": 10510550, + "offset": 10538830, "size": 5560, }, }, }, "package.json": { - "offset": 10516110, + "offset": 10544390, "size": 920, }, }, @@ -35127,63 +35091,123 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen "lru-cache": { "files": { "LICENSE.md": { - "offset": 10517030, + "offset": 10545310, "size": 1560, }, "dist": { "files": { "commonjs": { "files": { + "diagnostics-channel.d.ts.map": { + "offset": 10546860, + "size": 340, + }, + "diagnostics-channel.js": { + "offset": 10547200, + "size": 580, + }, + "diagnostics-channel.js.map": { + "offset": 10547770, + "size": 830, + }, "index.d.ts.map": { - "offset": 10518580, - "size": 14380, + "offset": 10548600, + "size": 15010, }, "index.js": { - "offset": 10532960, - "size": 57430, + "offset": 10563610, + "size": 61260, }, "index.js.map": { - "offset": 10590380, - "size": 143540, + "offset": 10624860, + "size": 153310, }, "index.min.js": { - "offset": 10733910, - "size": 17530, + "offset": 10778170, + "size": 18920, }, "index.min.js.map": { - "offset": 10751440, - "size": 123260, + "offset": 10797080, + "size": 132070, }, "package.json": { - "offset": 10874690, + "offset": 10929150, "size": 30, }, }, }, "esm": { "files": { + "diagnostics-channel-esm.d.mts.map": { + "offset": 10929170, + "size": 350, + }, + "diagnostics-channel-esm.mjs.map": { + "offset": 10929520, + "size": 1640, + }, + "diagnostics-channel.js": { + "offset": 10931150, + "size": 780, + }, "index.d.ts.map": { - "offset": 10874720, - "size": 14380, + "offset": 10931930, + "size": 15010, }, "index.js": { - "offset": 10889090, - "size": 57300, + "offset": 10946940, + "size": 60580, }, "index.js.map": { - "offset": 10946390, - "size": 143530, + "offset": 11007510, + "size": 153310, }, "index.min.js": { - "offset": 11089910, - "size": 17440, + "offset": 11160820, + "size": 18510, }, "index.min.js.map": { - "offset": 11107340, - "size": 123240, + "offset": 11179320, + "size": 132550, + }, + "node": { + "files": { + "diagnostics-channel-node.d.mts.map": { + "offset": 11311870, + "size": 360, + }, + "diagnostics-channel-node.mjs.map": { + "offset": 11312220, + "size": 890, + }, + "diagnostics-channel.js": { + "offset": 11313100, + "size": 410, + }, + "index.d.ts.map": { + "offset": 11313510, + "size": 15020, + }, + "index.js": { + "offset": 11328520, + "size": 60580, + }, + "index.js.map": { + "offset": 11389090, + "size": 153310, + }, + "index.min.js": { + "offset": 11542400, + "size": 18470, + }, + "index.min.js.map": { + "offset": 11560860, + "size": 131920, + }, + }, }, "package.json": { - "offset": 11230580, + "offset": 11692780, "size": 30, }, }, @@ -35191,22 +35215,22 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen }, }, "package.json": { - "offset": 11230600, - "size": 1790, + "offset": 11692800, + "size": 2170, }, }, }, "markdown-it": { "files": { "LICENSE": { - "offset": 11232390, + "offset": 11694970, "size": 1080, }, "bin": { "files": { "markdown-it.mjs": { "executable": true, - "offset": 11233460, + "offset": 11696040, "size": 2170, }, }, @@ -35214,21 +35238,21 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen "dist": { "files": { "index.cjs.js": { - "offset": 11235630, + "offset": 11698210, "size": 163060, }, "markdown-it.js": { - "offset": 11398680, + "offset": 11861260, "size": 298980, }, "markdown-it.min.js": { - "offset": 11697650, + "offset": 12160230, "size": 123620, }, }, }, "index.mjs": { - "offset": 11821270, + "offset": 12283850, "size": 50, }, "lib": { @@ -35236,15 +35260,15 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen "common": { "files": { "html_blocks.mjs": { - "offset": 11821310, + "offset": 12283890, "size": 800, }, "html_re.mjs": { - "offset": 11822110, + "offset": 12284690, "size": 1000, }, "utils.mjs": { - "offset": 11823100, + "offset": 12285680, "size": 7900, }, }, @@ -35252,111 +35276,111 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen "helpers": { "files": { "index.mjs": { - "offset": 11831000, + "offset": 12293580, "size": 280, }, "parse_link_destination.mjs": { - "offset": 11831270, + "offset": 12293850, "size": 1550, }, "parse_link_label.mjs": { - "offset": 11832820, + "offset": 12295400, "size": 990, }, "parse_link_title.mjs": { - "offset": 11833800, + "offset": 12296380, "size": 1860, }, }, }, "index.mjs": { - "offset": 11835650, + "offset": 12298230, "size": 17900, }, "parser_block.mjs": { - "offset": 11853550, + "offset": 12316130, "size": 3990, }, "parser_core.mjs": { - "offset": 11857540, + "offset": 12320120, "size": 1510, }, "parser_inline.mjs": { - "offset": 11859050, + "offset": 12321630, "size": 5440, }, "presets": { "files": { "commonmark.mjs": { - "offset": 11864480, + "offset": 12327060, "size": 1910, }, "default.mjs": { - "offset": 11866390, + "offset": 12328970, "size": 1290, }, "zero.mjs": { - "offset": 11867670, + "offset": 12330250, "size": 1660, }, }, }, "renderer.mjs": { - "offset": 11869320, + "offset": 12331900, "size": 8930, }, "ruler.mjs": { - "offset": 11878250, + "offset": 12340830, "size": 8480, }, "rules_block": { "files": { "blockquote.mjs": { - "offset": 11886730, + "offset": 12349310, "size": 6060, }, "code.mjs": { - "offset": 11892790, + "offset": 12355370, "size": 690, }, "fence.mjs": { - "offset": 11893470, + "offset": 12356050, "size": 2420, }, "heading.mjs": { - "offset": 11895880, + "offset": 12358460, "size": 1500, }, "hr.mjs": { - "offset": 11897380, + "offset": 12359960, "size": 1070, }, "html_block.mjs": { - "offset": 11898450, + "offset": 12361030, "size": 2200, }, "lheading.mjs": { - "offset": 11900650, + "offset": 12363230, "size": 2490, }, "list.mjs": { - "offset": 11903140, + "offset": 12365720, "size": 9110, }, "paragraph.mjs": { - "offset": 11912240, + "offset": 12374820, "size": 1460, }, "reference.mjs": { - "offset": 11913700, + "offset": 12376280, "size": 5830, }, "state_block.mjs": { - "offset": 11919530, + "offset": 12382110, "size": 5900, }, "table.mjs": { - "offset": 11925420, + "offset": 12388000, "size": 7090, }, }, @@ -35364,35 +35388,35 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen "rules_core": { "files": { "block.mjs": { - "offset": 11932510, + "offset": 12395090, "size": 340, }, "inline.mjs": { - "offset": 11932840, + "offset": 12395420, "size": 290, }, "linkify.mjs": { - "offset": 11933130, + "offset": 12395710, "size": 4250, }, "normalize.mjs": { - "offset": 11937380, + "offset": 12399960, "size": 360, }, "replacements.mjs": { - "offset": 11937730, + "offset": 12400310, "size": 2640, }, "smartquotes.mjs": { - "offset": 11940360, + "offset": 12402940, "size": 5730, }, "state_core.mjs": { - "offset": 11946090, + "offset": 12408670, "size": 330, }, "text_join.mjs": { - "offset": 11946410, + "offset": 12408990, "size": 1150, }, }, @@ -35400,69 +35424,69 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen "rules_inline": { "files": { "autolink.mjs": { - "offset": 11947560, + "offset": 12410140, "size": 2020, }, "backticks.mjs": { - "offset": 11949570, + "offset": 12412150, "size": 1680, }, "balance_pairs.mjs": { - "offset": 11951250, + "offset": 12413830, "size": 4090, }, "emphasis.mjs": { - "offset": 11955330, + "offset": 12417910, "size": 3520, }, "entity.mjs": { - "offset": 11958850, + "offset": 12421430, "size": 1490, }, "escape.mjs": { - "offset": 11960340, + "offset": 12422920, "size": 1420, }, "fragments_join.mjs": { - "offset": 11961760, + "offset": 12424340, "size": 1270, }, "html_inline.mjs": { - "offset": 11963020, + "offset": 12425600, "size": 1170, }, "image.mjs": { - "offset": 11964190, + "offset": 12426770, "size": 3640, }, "link.mjs": { - "offset": 11967830, + "offset": 12430410, "size": 3730, }, "linkify.mjs": { - "offset": 11971550, + "offset": 12434130, "size": 1680, }, "newline.mjs": { - "offset": 11973220, + "offset": 12435800, "size": 1200, }, "state_inline.mjs": { - "offset": 11974420, + "offset": 12437000, "size": 3500, }, "strikethrough.mjs": { - "offset": 11977920, + "offset": 12440500, "size": 2940, }, "text.mjs": { - "offset": 11980850, + "offset": 12443430, "size": 2110, }, }, }, "token.mjs": { - "offset": 11982950, + "offset": 12445530, "size": 3800, }, }, @@ -35472,163 +35496,163 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen "entities": { "files": { "LICENSE": { - "offset": 11988520, + "offset": 12451100, "size": 1260, }, "lib": { "files": { "decode.d.ts.map": { - "offset": 11989780, + "offset": 12452360, "size": 2210, }, "decode.js": { - "offset": 11991990, + "offset": 12454570, "size": 22620, }, "decode.js.map": { - "offset": 12014600, + "offset": 12477180, "size": 11600, }, "decode_codepoint.d.ts.map": { - "offset": 12026200, + "offset": 12488780, "size": 400, }, "decode_codepoint.js": { - "offset": 12026590, + "offset": 12489170, "size": 2320, }, "decode_codepoint.js.map": { - "offset": 12028900, + "offset": 12491480, "size": 1910, }, "encode.d.ts.map": { - "offset": 12030810, + "offset": 12493390, "size": 340, }, "encode.js": { - "offset": 12031150, + "offset": 12493730, "size": 2970, }, "encode.js.map": { - "offset": 12034110, + "offset": 12496690, "size": 1840, }, "escape.d.ts.map": { - "offset": 12035950, + "offset": 12498530, "size": 590, }, "escape.js": { - "offset": 12036530, + "offset": 12499110, "size": 4320, }, "escape.js.map": { - "offset": 12040850, + "offset": 12503430, "size": 2880, }, "esm": { "files": { "decode.d.ts.map": { - "offset": 12043720, + "offset": 12506300, "size": 2210, }, "decode.js": { - "offset": 12045930, + "offset": 12508510, "size": 19810, }, "decode.js.map": { - "offset": 12065740, + "offset": 12528320, "size": 11480, }, "decode_codepoint.d.ts.map": { - "offset": 12077210, + "offset": 12539790, "size": 400, }, "decode_codepoint.js": { - "offset": 12077610, + "offset": 12540190, "size": 2120, }, "decode_codepoint.js.map": { - "offset": 12079720, + "offset": 12542300, "size": 1910, }, "encode.d.ts.map": { - "offset": 12081630, + "offset": 12544210, "size": 340, }, "encode.js": { - "offset": 12081960, + "offset": 12544540, "size": 2570, }, "encode.js.map": { - "offset": 12084530, + "offset": 12547110, "size": 1870, }, "escape.d.ts.map": { - "offset": 12086400, + "offset": 12548980, "size": 590, }, "escape.js": { - "offset": 12086980, + "offset": 12549560, "size": 3970, }, "escape.js.map": { - "offset": 12090950, + "offset": 12553530, "size": 2900, }, "generated": { "files": { "decode-data-html.d.ts.map": { - "offset": 12093840, + "offset": 12556420, "size": 240, }, "decode-data-html.js": { - "offset": 12094080, + "offset": 12556660, "size": 47730, }, "decode-data-html.js.map": { - "offset": 12141800, + "offset": 12604380, "size": 400, }, "decode-data-xml.d.ts.map": { - "offset": 12142200, + "offset": 12604780, "size": 240, }, "decode-data-xml.js": { - "offset": 12142430, + "offset": 12605010, "size": 280, }, "decode-data-xml.js.map": { - "offset": 12142710, + "offset": 12605290, "size": 390, }, "encode-html.d.ts.map": { - "offset": 12143100, + "offset": 12605680, "size": 390, }, "encode-html.js": { - "offset": 12143480, + "offset": 12606060, "size": 27040, }, "encode-html.js.map": { - "offset": 12170520, + "offset": 12633100, "size": 48230, }, }, }, "index.d.ts.map": { - "offset": 12218750, + "offset": 12681330, "size": 1420, }, "index.js": { - "offset": 12220160, + "offset": 12682740, "size": 4060, }, "index.js.map": { - "offset": 12224220, + "offset": 12686800, "size": 2550, }, "package.json": { - "offset": 12226770, + "offset": 12689350, "size": 20, }, }, @@ -35636,59 +35660,59 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen "generated": { "files": { "decode-data-html.d.ts.map": { - "offset": 12226780, + "offset": 12689360, "size": 240, }, "decode-data-html.js": { - "offset": 12227020, + "offset": 12689600, "size": 47830, }, "decode-data-html.js.map": { - "offset": 12274840, + "offset": 12737420, "size": 410, }, "decode-data-xml.d.ts.map": { - "offset": 12275240, + "offset": 12737820, "size": 240, }, "decode-data-xml.js": { - "offset": 12275470, + "offset": 12738050, "size": 380, }, "decode-data-xml.js.map": { - "offset": 12275850, + "offset": 12738430, "size": 400, }, "encode-html.d.ts.map": { - "offset": 12276250, + "offset": 12738830, "size": 390, }, "encode-html.js": { - "offset": 12276630, + "offset": 12739210, "size": 27120, }, "encode-html.js.map": { - "offset": 12303750, + "offset": 12766330, "size": 48230, }, }, }, "index.d.ts.map": { - "offset": 12351980, + "offset": 12814560, "size": 1420, }, "index.js": { - "offset": 12353400, + "offset": 12815980, "size": 7150, }, "index.js.map": { - "offset": 12360540, + "offset": 12823120, "size": 2650, }, }, }, "package.json": { - "offset": 12363180, + "offset": 12825760, "size": 1510, }, }, @@ -35696,7 +35720,7 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen }, }, "package.json": { - "offset": 11986750, + "offset": 12449330, "size": 1780, }, }, @@ -35704,21 +35728,21 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen "mdn-data": { "files": { "LICENSE": { - "offset": 12364680, + "offset": 12827260, "size": 6560, }, "api": { "files": { "index.js": { - "offset": 12371240, + "offset": 12833820, "size": 70, }, "inheritance.json": { - "offset": 12371300, + "offset": 12833880, "size": 53040, }, "inheritance.schema.json": { - "offset": 12424340, + "offset": 12886920, "size": 530, }, }, @@ -35726,89 +35750,89 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen "css": { "files": { "at-rules.json": { - "offset": 12424870, - "size": 15240, + "offset": 12887450, + "size": 19150, }, "at-rules.schema.json": { - "offset": 12440110, - "size": 3200, + "offset": 12906590, + "size": 3390, }, "definitions.json": { - "offset": 12443300, - "size": 1870, + "offset": 12909980, + "size": 2090, }, "functions.json": { - "offset": 12445170, - "size": 17770, + "offset": 12912070, + "size": 25250, }, "functions.schema.json": { - "offset": 12462940, + "offset": 12937310, "size": 840, }, "index.js": { - "offset": 12463770, + "offset": 12938150, "size": 280, }, "properties.json": { - "offset": 12464050, - "size": 312520, + "offset": 12938430, + "size": 340620, }, "properties.schema.json": { - "offset": 12776560, - "size": 15130, + "offset": 13279040, + "size": 16100, }, "selectors.json": { - "offset": 12791690, - "size": 26890, + "offset": 13295140, + "size": 27640, }, "selectors.schema.json": { - "offset": 12818570, - "size": 690, + "offset": 13322780, + "size": 720, }, "syntaxes.json": { - "offset": 12819260, - "size": 30990, + "offset": 13323490, + "size": 40350, }, "syntaxes.schema.json": { - "offset": 12850250, + "offset": 13363830, "size": 230, }, "types.json": { - "offset": 12850480, - "size": 6540, + "offset": 13364060, + "size": 6620, }, "types.schema.json": { - "offset": 12857020, - "size": 630, + "offset": 13370680, + "size": 650, }, "units.json": { - "offset": 12857640, - "size": 3130, + "offset": 13371320, + "size": 2840, }, "units.schema.json": { - "offset": 12860770, - "size": 510, + "offset": 13374160, + "size": 530, }, }, }, "index.js": { - "offset": 12861270, + "offset": 13374680, "size": 100, }, "l10n": { "files": { "css.json": { - "offset": 12861370, - "size": 162620, + "offset": 13374780, + "size": 181820, }, "index.js": { - "offset": 13023980, + "offset": 13556600, "size": 50, }, }, }, "package.json": { - "offset": 13024030, + "offset": 13556640, "size": 560, }, }, @@ -35816,43 +35840,43 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen "mdurl": { "files": { "LICENSE": { - "offset": 13024580, + "offset": 13557190, "size": 2310, }, "build": { "files": { "index.cjs.js": { - "offset": 13026880, + "offset": 13559500, "size": 15460, }, }, }, "index.mjs": { - "offset": 13042340, + "offset": 13574950, "size": 200, }, "lib": { "files": { "decode.mjs": { - "offset": 13042540, + "offset": 13575150, "size": 2850, }, "encode.mjs": { - "offset": 13045380, + "offset": 13578000, "size": 2220, }, "format.mjs": { - "offset": 13047600, + "offset": 13580210, "size": 490, }, "parse.mjs": { - "offset": 13048080, + "offset": 13580690, "size": 9740, }, }, }, "package.json": { - "offset": 13057810, + "offset": 13590430, "size": 610, }, }, @@ -35860,15 +35884,15 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen "ms": { "files": { "index.js": { - "offset": 13058420, + "offset": 13591030, "size": 3030, }, "license.md": { - "offset": 13061440, + "offset": 13594050, "size": 1080, }, "package.json": { - "offset": 13062520, + "offset": 13595130, "size": 500, }, }, @@ -35876,7 +35900,7 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen "parse5": { "files": { "LICENSE": { - "offset": 13063020, + "offset": 13595630, "size": 1110, }, "dist": { @@ -35884,47 +35908,47 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen "common": { "files": { "doctype.js": { - "offset": 13064120, + "offset": 13596740, "size": 4670, }, "error-codes.js": { - "offset": 13068790, + "offset": 13601400, "size": 4750, }, "foreign-content.js": { - "offset": 13073530, + "offset": 13606140, "size": 6300, }, "html.js": { - "offset": 13079830, + "offset": 13612440, "size": 17560, }, "token.js": { - "offset": 13097380, + "offset": 13630000, "size": 840, }, "unicode.js": { - "offset": 13098220, + "offset": 13630830, "size": 2990, }, }, }, "index.js": { - "offset": 13101210, + "offset": 13633820, "size": 1360, }, "parser": { "files": { "formatting-element-list.js": { - "offset": 13102560, + "offset": 13635170, "size": 4310, }, "index.js": { - "offset": 13106860, + "offset": 13639480, "size": 107130, }, "open-element-stack.js": { - "offset": 13213990, + "offset": 13746600, "size": 10920, }, }, @@ -35932,7 +35956,7 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen "serializer": { "files": { "index.js": { - "offset": 13224910, + "offset": 13757520, "size": 5270, }, }, @@ -35940,11 +35964,11 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen "tokenizer": { "files": { "index.js": { - "offset": 13230170, + "offset": 13762790, "size": 98130, }, "preprocessor.js": { - "offset": 13328300, + "offset": 13860910, "size": 7030, }, }, @@ -35952,11 +35976,11 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen "tree-adapters": { "files": { "default.js": { - "offset": 13335320, + "offset": 13867930, "size": 5240, }, "interface.js": { - "offset": 13340550, + "offset": 13873160, "size": 20, }, }, @@ -35964,7 +35988,7 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen }, }, "package.json": { - "offset": 13340560, + "offset": 13873170, "size": 670, }, }, @@ -35972,19 +35996,19 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen "punycode": { "files": { "LICENSE-MIT.txt": { - "offset": 13341230, + "offset": 13873840, "size": 1080, }, "package.json": { - "offset": 13342310, + "offset": 13874920, "size": 750, }, "punycode.es6.js": { - "offset": 13343060, + "offset": 13875670, "size": 12780, }, "punycode.js": { - "offset": 13355840, + "offset": 13888450, "size": 12720, }, }, @@ -35992,19 +36016,19 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen "punycode.js": { "files": { "LICENSE-MIT.txt": { - "offset": 13368550, + "offset": 13901160, "size": 1080, }, "package.json": { - "offset": 13369630, + "offset": 13902240, "size": 760, }, "punycode.es6.js": { - "offset": 13370380, + "offset": 13902990, "size": 12780, }, "punycode.js": { - "offset": 13383160, + "offset": 13915770, "size": 12720, }, }, @@ -36012,15 +36036,15 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen "require-from-string": { "files": { "index.js": { - "offset": 13395870, + "offset": 13928480, "size": 870, }, "license": { - "offset": 13396740, + "offset": 13929350, "size": 1130, }, "package.json": { - "offset": 13397860, + "offset": 13930480, "size": 450, }, }, @@ -36028,15 +36052,15 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen "saxes": { "files": { "package.json": { - "offset": 13398310, + "offset": 13930920, "size": 1700, }, "saxes.js": { - "offset": 13400000, + "offset": 13932610, "size": 73800, }, "saxes.js.map": { - "offset": 13473790, + "offset": 14006400, "size": 51770, }, }, @@ -36044,59 +36068,59 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen "source-map-js": { "files": { "LICENSE": { - "offset": 13525560, + "offset": 14058170, "size": 1530, }, "lib": { "files": { "array-set.js": { - "offset": 13527080, + "offset": 14059700, "size": 3200, }, "base64-vlq.js": { - "offset": 13530280, + "offset": 14062890, "size": 4720, }, "base64.js": { - "offset": 13535000, + "offset": 14067610, "size": 1540, }, "binary-search.js": { - "offset": 13536540, + "offset": 14069150, "size": 4250, }, "mapping-list.js": { - "offset": 13540780, + "offset": 14073400, "size": 2340, }, "quick-sort.js": { - "offset": 13543120, + "offset": 14075740, "size": 4070, }, "source-map-consumer.js": { - "offset": 13547190, + "offset": 14079800, "size": 41580, }, "source-map-generator.js": { - "offset": 13588770, + "offset": 14121380, "size": 14940, }, "source-node.js": { - "offset": 13603700, + "offset": 14136320, "size": 13810, }, "util.js": { - "offset": 13617510, + "offset": 14150120, "size": 15410, }, }, }, "package.json": { - "offset": 13632920, + "offset": 14165530, "size": 640, }, "source-map.js": { - "offset": 13633550, + "offset": 14166160, "size": 410, }, }, @@ -36104,31 +36128,31 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen "symbol-tree": { "files": { "LICENSE": { - "offset": 13633950, + "offset": 14166560, "size": 1090, }, "lib": { "files": { "SymbolTree.js": { - "offset": 13635040, + "offset": 14167650, "size": 29510, }, "SymbolTreeNode.js": { - "offset": 13664550, + "offset": 14197160, "size": 1940, }, "TreeIterator.js": { - "offset": 13666480, + "offset": 14199090, "size": 1980, }, "TreePosition.js": { - "offset": 13668460, + "offset": 14201070, "size": 250, }, }, }, "package.json": { - "offset": 13668700, + "offset": 14201310, "size": 700, }, }, @@ -36136,14 +36160,14 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen "tldts": { "files": { "LICENSE": { - "offset": 13669390, + "offset": 14202000, "size": 1080, }, "bin": { "files": { "cli.js": { "executable": true, - "offset": 13670470, + "offset": 14203080, "size": 550, }, }, @@ -36153,51 +36177,51 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen "cjs": { "files": { "index.js": { - "offset": 13671020, - "size": 175640, + "offset": 14203630, + "size": 175940, }, "index.js.map": { - "offset": 13846660, - "size": 410510, + "offset": 14379570, + "size": 411330, }, "src": { "files": { "data": { "files": { "trie.js": { - "offset": 14257170, - "size": 151830, + "offset": 14790900, + "size": 152130, }, "trie.js.map": { - "offset": 14408990, - "size": 217490, + "offset": 14943020, + "size": 218020, }, }, }, "suffix-trie.js": { - "offset": 14626480, + "offset": 15161030, "size": 2490, }, "suffix-trie.js.map": { - "offset": 14628970, + "offset": 15163520, "size": 2270, }, }, }, "tsconfig.tsbuildinfo": { - "offset": 14631230, - "size": 39380, + "offset": 15165780, + "size": 39390, }, }, }, "es6": { "files": { "index.js": { - "offset": 14670610, + "offset": 15205170, "size": 1510, }, "index.js.map": { - "offset": 14672120, + "offset": 15206680, "size": 1290, }, "src": { @@ -36205,63 +36229,63 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen "data": { "files": { "trie.js": { - "offset": 14673400, - "size": 151710, + "offset": 15207970, + "size": 152010, }, "trie.js.map": { - "offset": 14825110, - "size": 217510, + "offset": 15359980, + "size": 218040, }, }, }, "suffix-trie.js": { - "offset": 15042620, + "offset": 15578010, "size": 2380, }, "suffix-trie.js.map": { - "offset": 15045000, + "offset": 15580380, "size": 2320, }, }, }, "tsconfig.bundle.tsbuildinfo": { - "offset": 15047320, - "size": 39090, + "offset": 15582700, + "size": 39100, }, }, }, "index.cjs.min.js": { - "offset": 15086400, - "size": 110070, + "offset": 15621800, + "size": 110280, }, "index.cjs.min.js.map": { - "offset": 15196470, - "size": 394430, + "offset": 15732070, + "size": 395130, }, "index.esm.min.js": { - "offset": 15590890, - "size": 110060, + "offset": 16127200, + "size": 110260, }, "index.esm.min.js.map": { - "offset": 15700950, - "size": 394540, + "offset": 16237460, + "size": 395240, }, "index.umd.min.js": { - "offset": 16095480, - "size": 110270, + "offset": 16632690, + "size": 110470, }, "index.umd.min.js.map": { - "offset": 16205740, - "size": 394430, + "offset": 16743160, + "size": 395130, }, }, }, "index.ts": { - "offset": 16600170, + "offset": 17138280, "size": 1730, }, "package.json": { - "offset": 16601900, + "offset": 17140010, "size": 1100, }, "src": { @@ -36269,13 +36293,13 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen "data": { "files": { "trie.ts": { - "offset": 16603000, - "size": 130740, + "offset": 17141110, + "size": 130990, }, }, }, "suffix-trie.ts": { - "offset": 16733730, + "offset": 17272090, "size": 2560, }, }, @@ -36285,7 +36309,7 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen "tldts-core": { "files": { "LICENSE": { - "offset": 16736280, + "offset": 17274650, "size": 1080, }, "dist": { @@ -36293,265 +36317,265 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen "cjs": { "files": { "index.js": { - "offset": 16737360, + "offset": 17275720, "size": 20370, }, "index.js.map": { - "offset": 16757720, + "offset": 17296090, "size": 34550, }, "src": { "files": { "domain-without-suffix.js": { - "offset": 16792260, + "offset": 17330630, "size": 590, }, "domain-without-suffix.js.map": { - "offset": 16792850, + "offset": 17331220, "size": 340, }, "domain.js": { - "offset": 16793190, + "offset": 17331560, "size": 3320, }, "domain.js.map": { - "offset": 16796510, + "offset": 17334870, "size": 1760, }, "extract-hostname.js": { - "offset": 16798260, + "offset": 17336630, "size": 5670, }, "extract-hostname.js.map": { - "offset": 16803930, + "offset": 17342300, "size": 4550, }, "factory.js": { - "offset": 16808470, + "offset": 17346840, "size": 4260, }, "factory.js.map": { - "offset": 16812730, + "offset": 17351090, "size": 2720, }, "is-ip.js": { - "offset": 16815440, + "offset": 17353810, "size": 2220, }, "is-ip.js.map": { - "offset": 16817660, + "offset": 17356030, "size": 2000, }, "is-valid.js": { - "offset": 16819650, + "offset": 17358020, "size": 2560, }, "is-valid.js.map": { - "offset": 16822210, + "offset": 17360580, "size": 1610, }, "lookup": { "files": { "fast-path.js": { - "offset": 16823820, + "offset": 17362180, "size": 2350, }, "fast-path.js.map": { - "offset": 16826160, + "offset": 17364530, "size": 2260, }, "interface.js": { - "offset": 16828420, + "offset": 17366790, "size": 120, }, "interface.js.map": { - "offset": 16828540, + "offset": 17366900, "size": 130, }, }, }, "options.js": { - "offset": 16828660, + "offset": 17367030, "size": 750, }, "options.js.map": { - "offset": 16829410, + "offset": 17367780, "size": 620, }, "subdomain.js": { - "offset": 16830030, + "offset": 17368400, "size": 440, }, "subdomain.js.map": { - "offset": 16830470, + "offset": 17368840, "size": 370, }, }, }, "tsconfig.tsbuildinfo": { - "offset": 16830830, - "size": 40270, + "offset": 17369200, + "size": 40280, }, }, }, "es6": { "files": { "index.js": { - "offset": 16871100, + "offset": 17409480, "size": 220, }, "index.js.map": { - "offset": 16871320, + "offset": 17409700, "size": 260, }, "src": { "files": { "domain-without-suffix.js": { - "offset": 16871570, + "offset": 17409950, "size": 490, }, "domain-without-suffix.js.map": { - "offset": 16872060, + "offset": 17410440, "size": 340, }, "domain.js": { - "offset": 16872390, + "offset": 17410770, "size": 3230, }, "domain.js.map": { - "offset": 16875620, + "offset": 17414000, "size": 1760, }, "extract-hostname.js": { - "offset": 16877370, + "offset": 17415750, "size": 5580, }, "extract-hostname.js.map": { - "offset": 16882940, + "offset": 17421320, "size": 4550, }, "factory.js": { - "offset": 16887480, + "offset": 17425870, "size": 3950, }, "factory.js.map": { - "offset": 16891430, + "offset": 17429810, "size": 2780, }, "is-ip.js": { - "offset": 16894210, + "offset": 17432590, "size": 2140, }, "is-ip.js.map": { - "offset": 16896340, + "offset": 17434720, "size": 1990, }, "is-valid.js": { - "offset": 16898330, + "offset": 17436710, "size": 2460, }, "is-valid.js.map": { - "offset": 16900790, + "offset": 17439170, "size": 1610, }, "lookup": { "files": { "fast-path.js": { - "offset": 16902390, + "offset": 17440780, "size": 2250, }, "fast-path.js.map": { - "offset": 16904640, + "offset": 17443020, "size": 2260, }, "interface.js": { - "offset": 16906900, + "offset": 17445280, "size": 50, }, "interface.js.map": { - "offset": 16906950, + "offset": 17445330, "size": 130, }, }, }, "options.js": { - "offset": 16907070, + "offset": 17445450, "size": 650, }, "options.js.map": { - "offset": 16907710, + "offset": 17446100, "size": 610, }, "subdomain.js": { - "offset": 16908320, + "offset": 17446700, "size": 350, }, "subdomain.js.map": { - "offset": 16908670, + "offset": 17447050, "size": 370, }, }, }, "tsconfig.bundle.tsbuildinfo": { - "offset": 16909040, - "size": 39240, + "offset": 17447420, + "size": 39260, }, }, }, }, }, "index.ts": { - "offset": 16948280, + "offset": 17486670, "size": 300, }, "package.json": { - "offset": 16948570, + "offset": 17486970, "size": 940, }, "src": { "files": { "domain-without-suffix.ts": { - "offset": 16949510, + "offset": 17487900, "size": 460, }, "domain.ts": { - "offset": 16949960, + "offset": 17488360, "size": 3220, }, "extract-hostname.ts": { - "offset": 16953180, + "offset": 17491580, "size": 4820, }, "factory.ts": { - "offset": 16958000, + "offset": 17496390, "size": 5110, }, "is-ip.ts": { - "offset": 16963100, + "offset": 17501500, "size": 2060, }, "is-valid.ts": { - "offset": 16965160, + "offset": 17503560, "size": 2310, }, "lookup": { "files": { "fast-path.ts": { - "offset": 16967470, + "offset": 17505860, "size": 2120, }, "interface.ts": { - "offset": 16969580, + "offset": 17507980, "size": 230, }, }, }, "options.ts": { - "offset": 16969810, + "offset": 17508200, "size": 870, }, "subdomain.ts": { - "offset": 16970670, + "offset": 17509070, "size": 330, }, }, @@ -36561,35 +36585,35 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen "tough-cookie": { "files": { "LICENSE": { - "offset": 16970990, + "offset": 17509390, "size": 1490, }, "dist": { "files": { "index.cjs": { - "offset": 16972480, - "size": 74120, + "offset": 17510880, + "size": 74170, }, "index.cjs.map": { - "offset": 17046590, - "size": 216350, + "offset": 17585040, + "size": 217210, }, "index.d.cts": { - "offset": 17262940, - "size": 83680, + "offset": 17802240, + "size": 80400, }, "index.js": { - "offset": 17346620, - "size": 72480, + "offset": 17882630, + "size": 72520, }, "index.js.map": { - "offset": 17419090, - "size": 216180, + "offset": 17955150, + "size": 217030, }, }, }, "package.json": { - "offset": 17635270, + "offset": 18172180, "size": 1620, }, }, @@ -36597,31 +36621,31 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen "tr46": { "files": { "LICENSE.md": { - "offset": 17636890, + "offset": 18173800, "size": 1080, }, "index.js": { - "offset": 17637960, + "offset": 18174880, "size": 8590, }, "lib": { "files": { "mappingTable.json": { - "offset": 17646550, + "offset": 18183470, "size": 142920, }, "regexes.js": { - "offset": 17789460, + "offset": 18326380, "size": 72470, }, "statusMapping.js": { - "offset": 17861920, + "offset": 18398840, "size": 130, }, }, }, "package.json": { - "offset": 17862050, + "offset": 18398960, "size": 680, }, }, @@ -36629,13 +36653,13 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen "uc.micro": { "files": { "LICENSE.txt": { - "offset": 17862720, + "offset": 18399640, "size": 1080, }, "build": { "files": { "index.cjs.js": { - "offset": 17863800, + "offset": 18400720, "size": 5270, }, }, @@ -36645,7 +36669,7 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen "Cc": { "files": { "regex.mjs": { - "offset": 17869060, + "offset": 18405980, "size": 40, }, }, @@ -36653,7 +36677,7 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen "Cf": { "files": { "regex.mjs": { - "offset": 17869100, + "offset": 18406010, "size": 270, }, }, @@ -36661,7 +36685,7 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen "P": { "files": { "regex.mjs": { - "offset": 17869360, + "offset": 18406280, "size": 2050, }, }, @@ -36669,7 +36693,7 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen "S": { "files": { "regex.mjs": { - "offset": 17871400, + "offset": 18408320, "size": 2560, }, }, @@ -36677,7 +36701,7 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen "Z": { "files": { "regex.mjs": { - "offset": 17873960, + "offset": 18410870, "size": 80, }, }, @@ -36685,11 +36709,11 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen }, }, "index.mjs": { - "offset": 17874030, + "offset": 18410940, "size": 310, }, "package.json": { - "offset": 17874330, + "offset": 18411250, "size": 650, }, "properties": { @@ -36697,7 +36721,7 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen "Any": { "files": { "regex.mjs": { - "offset": 17874980, + "offset": 18411890, "size": 150, }, }, @@ -36709,27 +36733,27 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen "w3c-xmlserializer": { "files": { "LICENSE.md": { - "offset": 17875120, + "offset": 18412040, "size": 1110, }, "lib": { "files": { "attributes.js": { - "offset": 17876230, + "offset": 18413140, "size": 3700, }, "constants.js": { - "offset": 17879920, + "offset": 18416830, "size": 790, }, "serialize.js": { - "offset": 17880710, + "offset": 18417620, "size": 10100, }, }, }, "package.json": { - "offset": 17890810, + "offset": 18427720, "size": 460, }, }, @@ -36737,19 +36761,19 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen "webidl-conversions": { "files": { "LICENSE.md": { - "offset": 17891260, + "offset": 18428180, "size": 1330, }, "lib": { "files": { "index.js": { - "offset": 17892580, + "offset": 18429500, "size": 12230, }, }, }, "package.json": { - "offset": 17904800, + "offset": 18441720, "size": 600, }, }, @@ -36757,43 +36781,43 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen "whatwg-mimetype": { "files": { "LICENSE.txt": { - "offset": 17905400, + "offset": 18442310, "size": 1070, }, "lib": { "files": { "index.js": { - "offset": 17906460, + "offset": 18443380, "size": 120, }, "mime-type-parameters.js": { - "offset": 17906580, + "offset": 18443490, "size": 1440, }, "mime-type.js": { - "offset": 17908010, + "offset": 18444930, "size": 3160, }, "parser.js": { - "offset": 17911170, + "offset": 18448080, "size": 2520, }, "serializer.js": { - "offset": 17913680, + "offset": 18450600, "size": 600, }, "sniff.js": { - "offset": 17914280, + "offset": 18451200, "size": 23890, }, "utils.js": { - "offset": 17938170, + "offset": 18475090, "size": 1410, }, }, }, "package.json": { - "offset": 17939580, + "offset": 18476490, "size": 680, }, }, @@ -36801,71 +36825,71 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen "whatwg-url": { "files": { "LICENSE.txt": { - "offset": 17940250, + "offset": 18477170, "size": 1080, }, "index.js": { - "offset": 17941330, + "offset": 18478250, "size": 1270, }, "lib": { "files": { "Function.js": { - "offset": 17942590, + "offset": 18479510, "size": 1190, }, "URL-impl.js": { - "offset": 17943780, + "offset": 18480700, "size": 5090, }, "URL.js": { - "offset": 17948860, + "offset": 18485780, "size": 15390, }, "URLSearchParams-impl.js": { - "offset": 17964250, + "offset": 18501160, "size": 2970, }, "URLSearchParams.js": { - "offset": 17967220, + "offset": 18504130, "size": 17120, }, "VoidFunction.js": { - "offset": 17984340, + "offset": 18521250, "size": 730, }, "encoding.js": { - "offset": 17985060, + "offset": 18521980, "size": 330, }, "infra.js": { - "offset": 17985390, + "offset": 18522310, "size": 520, }, "percent-encoding.js": { - "offset": 17985910, + "offset": 18522830, "size": 4890, }, "url-state-machine.js": { - "offset": 17990800, + "offset": 18527710, "size": 31850, }, "urlencoded.js": { - "offset": 18022640, + "offset": 18559560, "size": 2280, }, "utils.js": { - "offset": 18024920, + "offset": 18561840, "size": 6770, }, }, }, "package.json": { - "offset": 18031690, + "offset": 18568600, "size": 980, }, "webidl2js-wrapper.js": { - "offset": 18032660, + "offset": 18569580, "size": 170, }, }, @@ -36873,99 +36897,99 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen "ws": { "files": { "LICENSE": { - "offset": 18032830, + "offset": 18569750, "size": 1190, }, "browser.js": { - "offset": 18034020, + "offset": 18570930, "size": 180, }, "index.js": { - "offset": 18034190, - "size": 380, + "offset": 18571110, + "size": 800, }, "lib": { "files": { "buffer-util.js": { - "offset": 18034570, + "offset": 18571900, "size": 3060, }, "constants.js": { - "offset": 18037620, + "offset": 18574960, "size": 510, }, "event-target.js": { - "offset": 18038130, + "offset": 18575460, "size": 7330, }, "extension.js": { - "offset": 18045450, + "offset": 18582780, "size": 6190, }, "limiter.js": { - "offset": 18051630, + "offset": 18588970, "size": 1040, }, "permessage-deflate.js": { - "offset": 18052660, - "size": 14510, + "offset": 18590000, + "size": 14540, }, "receiver.js": { - "offset": 18067170, + "offset": 18604530, "size": 16460, }, "sender.js": { - "offset": 18083630, + "offset": 18620990, "size": 16720, }, "stream.js": { - "offset": 18100350, + "offset": 18637700, "size": 4210, }, "subprotocol.js": { - "offset": 18104550, + "offset": 18641910, "size": 1500, }, "validation.js": { - "offset": 18106050, + "offset": 18643410, "size": 3910, }, "websocket-server.js": { - "offset": 18109950, - "size": 16620, + "offset": 18647310, + "size": 16650, }, "websocket.js": { - "offset": 18126570, - "size": 36740, + "offset": 18663950, + "size": 36730, }, }, }, "package.json": { - "offset": 18163310, - "size": 1280, + "offset": 18700680, + "size": 1310, }, "wrapper.mjs": { - "offset": 18164590, - "size": 350, + "offset": 18701980, + "size": 560, }, }, }, "xml-name-validator": { "files": { "LICENSE.txt": { - "offset": 18164930, + "offset": 18702540, "size": 10180, }, "lib": { "files": { "xml-name-validator.js": { - "offset": 18175100, + "offset": 18712710, "size": 1710, }, }, }, "package.json": { - "offset": 18176800, + "offset": 18714410, "size": 530, }, }, @@ -36973,11 +36997,11 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen "xmlchars": { "files": { "LICENSE": { - "offset": 18177330, + "offset": 18714940, "size": 1090, }, "package.json": { - "offset": 18178410, + "offset": 18716030, "size": 860, }, "xml": { @@ -36985,19 +37009,19 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen "1.0": { "files": { "ed4.js": { - "offset": 18179270, + "offset": 18716890, "size": 5500, }, "ed4.js.map": { - "offset": 18184770, + "offset": 18722380, "size": 1400, }, "ed5.js": { - "offset": 18186160, + "offset": 18723780, "size": 3350, }, "ed5.js.map": { - "offset": 18189510, + "offset": 18727120, "size": 2610, }, }, @@ -37005,11 +37029,11 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen "1.1": { "files": { "ed2.js": { - "offset": 18192110, + "offset": 18729730, "size": 4740, }, "ed2.js.map": { - "offset": 18196850, + "offset": 18734460, "size": 3400, }, }, @@ -37017,11 +37041,11 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen }, }, "xmlchars.js": { - "offset": 18200240, + "offset": 18737850, "size": 6920, }, "xmlchars.js.map": { - "offset": 18207150, + "offset": 18744770, "size": 3080, }, "xmlns": { @@ -37029,11 +37053,11 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen "1.0": { "files": { "ed3.js": { - "offset": 18210230, + "offset": 18747840, "size": 2260, }, "ed3.js.map": { - "offset": 18212480, + "offset": 18750100, "size": 1690, }, }, @@ -37045,7 +37069,7 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen }, }, "package.json": { - "offset": 18217510, + "offset": 18755120, "size": 320, }, }, @@ -37167,11 +37191,11 @@ exports[`node_module collectors > yarn max stack 2`] = ` { "files": { "index.html": { - "offset": 3740280, + "offset": 3745390, "size": 380, }, "index.js": { - "offset": 3740660, + "offset": 3745770, "size": 620, }, "node_modules": { @@ -37344,10 +37368,10 @@ exports[`node_module collectors > yarn max stack 2`] = ` }, "index.js": { "offset": 31210, - "size": 4800, + "size": 4980, }, "package.json": { - "offset": 36010, + "offset": 36190, "size": 1010, }, }, @@ -37355,27 +37379,27 @@ exports[`node_module collectors > yarn max stack 2`] = ` "call-bind": { "files": { ".eslintignore": { - "offset": 37020, + "offset": 37190, "size": 10, }, ".nycrc": { - "offset": 37030, + "offset": 37200, "size": 140, }, "LICENSE": { - "offset": 37170, + "offset": 37340, "size": 1080, }, "callBound.js": { - "offset": 38240, + "offset": 38410, "size": 420, }, "index.js": { - "offset": 38650, + "offset": 38830, "size": 650, }, "package.json": { - "offset": 39290, + "offset": 39470, "size": 1510, }, }, @@ -37383,43 +37407,43 @@ exports[`node_module collectors > yarn max stack 2`] = ` "call-bind-apply-helpers": { "files": { ".nycrc": { - "offset": 40800, + "offset": 40970, "size": 140, }, "LICENSE": { - "offset": 40940, + "offset": 41110, "size": 1080, }, "actualApply.js": { - "offset": 42010, + "offset": 42180, "size": 280, }, "applyBind.js": { - "offset": 42290, + "offset": 42460, "size": 270, }, "functionApply.js": { - "offset": 42550, + "offset": 42730, "size": 100, }, "functionCall.js": { - "offset": 42650, + "offset": 42820, "size": 100, }, "index.js": { - "offset": 42750, + "offset": 42920, "size": 520, }, "package.json": { - "offset": 43260, + "offset": 43430, "size": 1850, }, "reflectApply.js": { - "offset": 45100, + "offset": 45270, "size": 140, }, "tsconfig.json": { - "offset": 45230, + "offset": 45410, "size": 120, }, }, @@ -37427,23 +37451,23 @@ exports[`node_module collectors > yarn max stack 2`] = ` "call-bound": { "files": { ".nycrc": { - "offset": 45350, + "offset": 45520, "size": 140, }, "LICENSE": { - "offset": 45490, + "offset": 45660, "size": 1080, }, "index.js": { - "offset": 46560, + "offset": 46730, "size": 690, }, "package.json": { - "offset": 47240, + "offset": 47420, "size": 1690, }, "tsconfig.json": { - "offset": 48930, + "offset": 49110, "size": 140, }, }, @@ -37451,23 +37475,23 @@ exports[`node_module collectors > yarn max stack 2`] = ` "chalk": { "files": { "index.js": { - "offset": 49070, + "offset": 49240, "size": 6440, }, "index.js.flow": { - "offset": 55510, + "offset": 55680, "size": 1930, }, "license": { - "offset": 57430, + "offset": 57600, "size": 1110, }, "package.json": { - "offset": 58540, + "offset": 58710, "size": 710, }, "templates.js": { - "offset": 59250, + "offset": 59420, "size": 3140, }, }, @@ -37475,23 +37499,23 @@ exports[`node_module collectors > yarn max stack 2`] = ` "color-convert": { "files": { "LICENSE": { - "offset": 62380, + "offset": 62550, "size": 1090, }, "conversions.js": { - "offset": 63470, + "offset": 63640, "size": 16850, }, "index.js": { - "offset": 80320, + "offset": 80490, "size": 1730, }, "package.json": { - "offset": 82040, + "offset": 82220, "size": 430, }, "route.js": { - "offset": 82470, + "offset": 82650, "size": 2230, }, }, @@ -37499,23 +37523,23 @@ exports[`node_module collectors > yarn max stack 2`] = ` "color-name": { "files": { ".eslintrc.json": { - "offset": 84700, + "offset": 84870, "size": 1160, }, "LICENSE": { - "offset": 85860, + "offset": 86030, "size": 1090, }, "index.js": { - "offset": 86940, + "offset": 87120, "size": 4620, }, "package.json": { - "offset": 91560, + "offset": 91730, "size": 350, }, "test.js": { - "offset": 91900, + "offset": 92080, "size": 180, }, }, @@ -37523,19 +37547,19 @@ exports[`node_module collectors > yarn max stack 2`] = ` "concat-map": { "files": { "LICENSE": { - "offset": 92070, + "offset": 92250, "size": 1080, }, "README.markdown": { - "offset": 93150, + "offset": 93320, "size": 1170, }, "index.js": { - "offset": 94310, + "offset": 94490, "size": 350, }, "package.json": { - "offset": 94660, + "offset": 94830, "size": 800, }, }, @@ -37543,35 +37567,35 @@ exports[`node_module collectors > yarn max stack 2`] = ` "cross-spawn": { "files": { "LICENSE": { - "offset": 95450, + "offset": 95620, "size": 1110, }, "index.js": { - "offset": 96550, + "offset": 96730, "size": 1200, }, "lib": { "files": { "enoent.js": { - "offset": 97740, + "offset": 97920, "size": 1480, }, "parse.js": { - "offset": 99220, + "offset": 99400, "size": 4420, }, "util": { "files": { "escape.js": { - "offset": 103640, + "offset": 103810, "size": 1390, }, "readShebang.js": { - "offset": 105020, + "offset": 105200, "size": 740, }, "resolveCommand.js": { - "offset": 105760, + "offset": 105940, "size": 1500, }, }, @@ -37579,7 +37603,7 @@ exports[`node_module collectors > yarn max stack 2`] = ` }, }, "package.json": { - "offset": 107260, + "offset": 107430, "size": 1350, }, }, @@ -37587,23 +37611,23 @@ exports[`node_module collectors > yarn max stack 2`] = ` "data-view-buffer": { "files": { ".nycrc": { - "offset": 108600, + "offset": 108770, "size": 220, }, "LICENSE": { - "offset": 108820, + "offset": 108990, "size": 1080, }, "index.js": { - "offset": 109890, + "offset": 110060, "size": 490, }, "package.json": { - "offset": 110370, + "offset": 110550, "size": 1630, }, "tsconfig.json": { - "offset": 111990, + "offset": 112170, "size": 270, }, }, @@ -37611,23 +37635,23 @@ exports[`node_module collectors > yarn max stack 2`] = ` "data-view-byte-length": { "files": { ".nycrc": { - "offset": 112260, + "offset": 112430, "size": 220, }, "LICENSE": { - "offset": 112470, + "offset": 112650, "size": 1080, }, "index.js": { - "offset": 113550, + "offset": 113720, "size": 500, }, "package.json": { - "offset": 114040, + "offset": 114220, "size": 1660, }, "tsconfig.json": { - "offset": 115700, + "offset": 115870, "size": 250, }, }, @@ -37635,23 +37659,23 @@ exports[`node_module collectors > yarn max stack 2`] = ` "data-view-byte-offset": { "files": { ".nycrc": { - "offset": 115940, + "offset": 116110, "size": 220, }, "LICENSE": { - "offset": 116150, + "offset": 116330, "size": 1080, }, "index.js": { - "offset": 117220, + "offset": 117400, "size": 500, }, "package.json": { - "offset": 117720, + "offset": 117900, "size": 1710, }, "tsconfig.json": { - "offset": 119430, + "offset": 119610, "size": 120, }, }, @@ -37659,23 +37683,23 @@ exports[`node_module collectors > yarn max stack 2`] = ` "define-data-property": { "files": { ".nycrc": { - "offset": 119550, + "offset": 119720, "size": 220, }, "LICENSE": { - "offset": 119760, + "offset": 119940, "size": 1080, }, "index.js": { - "offset": 120830, + "offset": 121010, "size": 2340, }, "package.json": { - "offset": 123170, + "offset": 123340, "size": 2080, }, "tsconfig.json": { - "offset": 125240, + "offset": 125420, "size": 4890, }, }, @@ -37683,23 +37707,23 @@ exports[`node_module collectors > yarn max stack 2`] = ` "define-properties": { "files": { ".editorconfig": { - "offset": 130130, + "offset": 130300, "size": 280, }, ".nycrc": { - "offset": 130400, + "offset": 130580, "size": 140, }, "LICENSE": { - "offset": 130540, + "offset": 130720, "size": 1080, }, "index.js": { - "offset": 131620, + "offset": 131800, "size": 1270, }, "package.json": { - "offset": 132890, + "offset": 133060, "size": 1680, }, }, @@ -37707,27 +37731,27 @@ exports[`node_module collectors > yarn max stack 2`] = ` "dunder-proto": { "files": { ".nycrc": { - "offset": 134560, + "offset": 134740, "size": 220, }, "LICENSE": { - "offset": 134780, + "offset": 134950, "size": 1080, }, "get.js": { - "offset": 135850, + "offset": 136030, "size": 980, }, "package.json": { - "offset": 136830, + "offset": 137010, "size": 1450, }, "set.js": { - "offset": 138280, + "offset": 138460, "size": 1280, }, "tsconfig.json": { - "offset": 139560, + "offset": 139730, "size": 120, }, }, @@ -37735,31 +37759,23 @@ exports[`node_module collectors > yarn max stack 2`] = ` "error-ex": { "files": { "LICENSE": { - "offset": 139670, + "offset": 139850, "size": 1080, }, "index.js": { - "offset": 140750, + "offset": 140920, "size": 2910, }, "package.json": { - "offset": 143660, + "offset": 143830, "size": 590, }, }, }, "es-abstract": { "files": { - ".claude": { - "files": { - "settings.local.json": { - "offset": 144240, - "size": 180, - }, - }, - }, ".editorconfig": { - "offset": 144420, + "offset": 144410, "size": 320, }, ".nycrc": { @@ -37777,7 +37793,7 @@ exports[`node_module collectors > yarn max stack 2`] = ` "size": 1580, }, "AdvanceStringIndex.js": { - "offset": 147810, + "offset": 147820, "size": 1250, }, "ArrayCreate.js": { @@ -37801,7 +37817,7 @@ exports[`node_module collectors > yarn max stack 2`] = ` "size": 580, }, "Canonicalize.js": { - "offset": 155450, + "offset": 155460, "size": 1190, }, "CharacterRange.js": { @@ -37841,7 +37857,7 @@ exports[`node_module collectors > yarn max stack 2`] = ` "size": 950, }, "DateFromTime.js": { - "offset": 165340, + "offset": 165350, "size": 990, }, "Day.js": { @@ -37869,7 +37885,7 @@ exports[`node_module collectors > yarn max stack 2`] = ` "size": 670, }, "DetachArrayBuffer.js": { - "offset": 169240, + "offset": 169250, "size": 1260, }, "EnumerableOwnNames.js": { @@ -37881,7 +37897,7 @@ exports[`node_module collectors > yarn max stack 2`] = ` "size": 540, }, "Get.js": { - "offset": 171410, + "offset": 171420, "size": 570, }, "GetGlobalObject.js": { @@ -37893,7 +37909,7 @@ exports[`node_module collectors > yarn max stack 2`] = ` "size": 760, }, "GetMethod.js": { - "offset": 172930, + "offset": 172940, "size": 690, }, "GetOwnPropertyKeys.js": { @@ -37921,7 +37937,7 @@ exports[`node_module collectors > yarn max stack 2`] = ` "size": 540, }, "HasProperty.js": { - "offset": 183080, + "offset": 183090, "size": 490, }, "HourFromTime.js": { @@ -37929,7 +37945,7 @@ exports[`node_module collectors > yarn max stack 2`] = ` "size": 390, }, "InLeapYear.js": { - "offset": 183950, + "offset": 183960, "size": 470, }, "InstanceofOperator.js": { @@ -37949,11 +37965,11 @@ exports[`node_module collectors > yarn max stack 2`] = ` "size": 2140, }, "Invoke.js": { - "offset": 191270, + "offset": 191280, "size": 680, }, "IsAccessorDescriptor.js": { - "offset": 191940, + "offset": 191950, "size": 560, }, "IsArray.js": { @@ -37966,350 +37982,350 @@ exports[`node_module collectors > yarn max stack 2`] = ` }, "IsCompatiblePropertyDescriptor.js": { "offset": 192730, - "size": 370, + "size": 390, }, "IsConcatSpreadable.js": { - "offset": 193100, + "offset": 193120, "size": 640, }, "IsConstructor.js": { - "offset": 193730, + "offset": 193760, "size": 1150, }, "IsDataDescriptor.js": { - "offset": 194880, + "offset": 194900, "size": 570, }, "IsDetachedBuffer.js": { - "offset": 195440, + "offset": 195460, "size": 740, }, "IsExtensible.js": { - "offset": 196170, + "offset": 196200, "size": 510, }, "IsGenericDescriptor.js": { - "offset": 196680, + "offset": 196700, "size": 660, }, "IsInteger.js": { - "offset": 197330, + "offset": 197360, "size": 210, }, "IsPromise.js": { - "offset": 197540, + "offset": 197560, "size": 490, }, "IsPropertyDescriptor.js": { - "offset": 198020, + "offset": 198050, "size": 320, }, "IsPropertyKey.js": { - "offset": 198340, + "offset": 198360, "size": 230, }, "IsRegExp.js": { - "offset": 198560, + "offset": 198580, "size": 570, }, "IsWordChar.js": { - "offset": 199130, + "offset": 199150, "size": 1090, }, "IteratorClose.js": { - "offset": 200220, + "offset": 200240, "size": 1770, }, "IteratorComplete.js": { - "offset": 201980, + "offset": 202010, "size": 460, }, "IteratorNext.js": { - "offset": 202440, + "offset": 202470, "size": 460, }, "IteratorStep.js": { - "offset": 202890, + "offset": 202920, "size": 350, }, "IteratorValue.js": { - "offset": 203240, + "offset": 203270, "size": 410, }, "MakeDate.js": { - "offset": 203650, + "offset": 203670, "size": 340, }, "MakeDay.js": { - "offset": 203980, + "offset": 204010, "size": 930, }, "MakeTime.js": { - "offset": 204900, + "offset": 204930, "size": 710, }, "MinFromTime.js": { - "offset": 205610, + "offset": 205630, "size": 400, }, "MonthFromTime.js": { - "offset": 206000, + "offset": 206030, "size": 1130, }, "NewPromiseCapability.js": { - "offset": 207130, + "offset": 207160, "size": 1230, }, "NormalCompletion.js": { - "offset": 208360, + "offset": 208380, "size": 240, }, "ObjectCreate.js": { - "offset": 208600, + "offset": 208620, "size": 1330, }, "ObjectDefineProperties.js": { - "offset": 209920, + "offset": 209950, "size": 1440, }, "OrdinaryCreateFromConstructor.js": { - "offset": 211360, + "offset": 211380, "size": 810, }, "OrdinaryDefineOwnProperty.js": { - "offset": 212160, + "offset": 212180, "size": 2180, }, "OrdinaryGetOwnProperty.js": { - "offset": 214340, + "offset": 214360, "size": 1200, }, "OrdinaryHasInstance.js": { - "offset": 215530, + "offset": 215560, "size": 580, }, "OrdinaryHasProperty.js": { - "offset": 216100, + "offset": 216130, "size": 510, }, "QuoteJSONString.js": { - "offset": 216600, + "offset": 216630, "size": 1340, }, "RegExpCreate.js": { - "offset": 217940, + "offset": 217960, "size": 650, }, "RegExpExec.js": { - "offset": 218580, + "offset": 218600, "size": 830, }, "RequireObjectCoercible.js": { - "offset": 219410, + "offset": 219430, "size": 90, }, "SameValue.js": { - "offset": 219490, + "offset": 219520, "size": 320, }, "SameValueZero.js": { - "offset": 219800, + "offset": 219830, "size": 230, }, "SecFromTime.js": { - "offset": 220030, + "offset": 220050, "size": 410, }, "Set.js": { - "offset": 220430, + "offset": 220450, "size": 1230, }, "SetFunctionName.js": { - "offset": 221660, + "offset": 221680, "size": 1290, }, "SetIntegrityLevel.js": { - "offset": 222940, + "offset": 222970, "size": 1840, }, "SetValueInBuffer.js": { - "offset": 224780, + "offset": 224800, "size": 3830, }, "SpeciesConstructor.js": { - "offset": 228610, + "offset": 228630, "size": 850, }, "SplitMatch.js": { - "offset": 229450, + "offset": 229470, "size": 810, }, "StrictEqualityComparison.js": { - "offset": 230250, + "offset": 230280, "size": 320, }, "StringCreate.js": { - "offset": 230570, + "offset": 230590, "size": 1080, }, "StringGetIndexProperty.js": { - "offset": 231640, + "offset": 231670, "size": 1320, }, "SymbolDescriptiveString.js": { - "offset": 232960, + "offset": 232980, "size": 440, }, "TestIntegrityLevel.js": { - "offset": 233390, + "offset": 233410, "size": 1210, }, "TimeClip.js": { - "offset": 234600, + "offset": 234620, "size": 440, }, "TimeFromYear.js": { - "offset": 235040, + "offset": 235060, "size": 270, }, "TimeWithinDay.js": { - "offset": 235300, + "offset": 235320, "size": 250, }, "ToBoolean.js": { - "offset": 235540, + "offset": 235570, "size": 130, }, "ToDateString.js": { - "offset": 235670, + "offset": 235700, "size": 520, }, "ToInt16.js": { - "offset": 236190, + "offset": 236220, "size": 260, }, "ToInt32.js": { - "offset": 236450, + "offset": 236470, "size": 180, }, "ToInt8.js": { - "offset": 236620, + "offset": 236650, "size": 250, }, "ToInteger.js": { - "offset": 236860, + "offset": 236890, "size": 270, }, "ToLength.js": { - "offset": 237130, + "offset": 237160, "size": 410, }, "ToNumber.js": { - "offset": 237530, + "offset": 237560, "size": 1510, }, "ToObject.js": { - "offset": 239040, + "offset": 239060, "size": 130, }, "ToPrimitive.js": { - "offset": 239160, + "offset": 239190, "size": 290, }, "ToPropertyDescriptor.js": { - "offset": 239450, + "offset": 239470, "size": 1460, }, "ToPropertyKey.js": { - "offset": 240900, + "offset": 240920, "size": 400, }, "ToString.js": { - "offset": 241300, + "offset": 241320, "size": 390, }, "ToUint16.js": { - "offset": 241690, + "offset": 241710, "size": 610, }, "ToUint32.js": { - "offset": 242300, + "offset": 242320, "size": 180, }, "ToUint8.js": { - "offset": 242470, + "offset": 242500, "size": 630, }, "ToUint8Clamp.js": { - "offset": 243100, + "offset": 243120, "size": 520, }, "Type.js": { - "offset": 243620, + "offset": 243640, "size": 250, }, "ValidateAndApplyPropertyDescriptor.js": { - "offset": 243860, - "size": 5010, + "offset": 243890, + "size": 5020, }, "ValidateTypedArray.js": { - "offset": 248860, + "offset": 248900, "size": 800, }, "WeekDay.js": { - "offset": 249660, + "offset": 249690, "size": 210, }, "YearFromTime.js": { - "offset": 249860, + "offset": 249900, "size": 400, }, "abs.js": { - "offset": 250260, + "offset": 250300, "size": 170, }, "floor.js": { - "offset": 250430, + "offset": 250460, "size": 240, }, "max.js": { - "offset": 250670, + "offset": 250700, "size": 140, }, "min.js": { - "offset": 250800, + "offset": 250840, "size": 140, }, "modulo.js": { - "offset": 250930, + "offset": 250970, "size": 170, }, "msFromTime.js": { - "offset": 251100, + "offset": 251140, "size": 260, }, "tables": { "files": { "typed-array-objects.js": { - "offset": 251360, + "offset": 251390, "size": 630, }, }, }, "thisBooleanValue.js": { - "offset": 251980, + "offset": 252020, "size": 330, }, "thisNumberValue.js": { - "offset": 252310, + "offset": 252340, "size": 350, }, "thisStringValue.js": { - "offset": 252650, + "offset": 252690, "size": 320, }, "thisTimeValue.js": { - "offset": 252970, + "offset": 253000, "size": 240, }, }, @@ -38317,575 +38333,575 @@ exports[`node_module collectors > yarn max stack 2`] = ` "2016": { "files": { "AbstractEqualityComparison.js": { - "offset": 253200, + "offset": 253240, "size": 1210, }, "AbstractRelationalComparison.js": { - "offset": 254400, + "offset": 254440, "size": 1580, }, "AdvanceStringIndex.js": { - "offset": 255970, + "offset": 256010, "size": 1250, }, "ArrayCreate.js": { - "offset": 257220, + "offset": 257260, "size": 1430, }, "ArraySetLength.js": { - "offset": 258650, + "offset": 258690, "size": 2430, }, "ArraySpeciesCreate.js": { - "offset": 261070, + "offset": 261110, "size": 1370, }, "Call.js": { - "offset": 262440, + "offset": 262480, "size": 610, }, "CanonicalNumericIndexString.js": { - "offset": 263040, + "offset": 263080, "size": 580, }, "Canonicalize.js": { - "offset": 263610, + "offset": 263650, "size": 1190, }, "CharacterRange.js": { - "offset": 264800, + "offset": 264840, "size": 1350, }, "CompletePropertyDescriptor.js": { - "offset": 266140, + "offset": 266180, "size": 1110, }, "CompletionRecord.js": { - "offset": 267250, + "offset": 267290, "size": 1360, }, "CreateDataProperty.js": { - "offset": 268610, + "offset": 268650, "size": 730, }, "CreateDataPropertyOrThrow.js": { - "offset": 269330, + "offset": 269370, "size": 700, }, "CreateHTML.js": { - "offset": 270030, + "offset": 270070, "size": 840, }, "CreateIterResultObject.js": { - "offset": 270870, + "offset": 270910, "size": 350, }, "CreateListFromArrayLike.js": { - "offset": 271220, + "offset": 271260, "size": 1350, }, "CreateMethodProperty.js": { - "offset": 272560, + "offset": 272600, "size": 950, }, "DateFromTime.js": { - "offset": 273500, + "offset": 273540, "size": 990, }, "Day.js": { - "offset": 274490, + "offset": 274530, "size": 240, }, "DayFromYear.js": { - "offset": 274730, + "offset": 274770, "size": 260, }, "DayWithinYear.js": { - "offset": 274980, + "offset": 275020, "size": 290, }, "DaysInYear.js": { - "offset": 275270, + "offset": 275310, "size": 310, }, "DefinePropertyOrThrow.js": { - "offset": 275570, + "offset": 275610, "size": 1170, }, "DeletePropertyOrThrow.js": { - "offset": 276740, + "offset": 276780, "size": 670, }, "DetachArrayBuffer.js": { - "offset": 277400, + "offset": 277440, "size": 1260, }, "EnumerableOwnNames.js": { - "offset": 278660, + "offset": 278700, "size": 380, }, "FromPropertyDescriptor.js": { - "offset": 279040, + "offset": 279080, "size": 540, }, "Get.js": { - "offset": 279570, + "offset": 279610, "size": 570, }, "GetGlobalObject.js": { - "offset": 280140, + "offset": 280180, "size": 200, }, "GetIterator.js": { - "offset": 280340, + "offset": 280380, "size": 760, }, "GetMethod.js": { - "offset": 281090, + "offset": 281130, "size": 690, }, "GetOwnPropertyKeys.js": { - "offset": 281780, + "offset": 281820, "size": 840, }, "GetPrototypeFromConstructor.js": { - "offset": 282610, + "offset": 282650, "size": 1080, }, "GetSubstitution.js": { - "offset": 283690, + "offset": 283730, "size": 3270, }, "GetV.js": { - "offset": 286950, + "offset": 286990, "size": 500, }, "GetValueFromBuffer.js": { - "offset": 287440, + "offset": 287480, "size": 3280, }, "HasOwnProperty.js": { - "offset": 290710, + "offset": 290750, "size": 540, }, "HasProperty.js": { - "offset": 291240, + "offset": 291280, "size": 490, }, "HourFromTime.js": { - "offset": 291730, + "offset": 291770, "size": 390, }, "InLeapYear.js": { - "offset": 292110, + "offset": 292150, "size": 470, }, "InstanceofOperator.js": { - "offset": 292580, + "offset": 292620, "size": 930, }, "IntegerIndexedElementGet.js": { - "offset": 293500, + "offset": 293540, "size": 1850, }, "IntegerIndexedElementSet.js": { - "offset": 295350, + "offset": 295390, "size": 1960, }, "InternalizeJSONProperty.js": { - "offset": 297300, + "offset": 297340, "size": 2140, }, "Invoke.js": { - "offset": 299430, + "offset": 299470, "size": 680, }, "IsAccessorDescriptor.js": { - "offset": 300100, + "offset": 300140, "size": 560, }, "IsArray.js": { - "offset": 300660, + "offset": 300700, "size": 120, }, "IsCallable.js": { - "offset": 300780, + "offset": 300820, "size": 110, }, "IsCompatiblePropertyDescriptor.js": { - "offset": 300890, - "size": 370, + "offset": 300930, + "size": 390, }, "IsConcatSpreadable.js": { - "offset": 301260, + "offset": 301320, "size": 640, }, "IsConstructor.js": { - "offset": 301890, + "offset": 301950, "size": 1150, }, "IsDataDescriptor.js": { - "offset": 303040, + "offset": 303100, "size": 570, }, "IsDetachedBuffer.js": { - "offset": 303600, + "offset": 303660, "size": 740, }, "IsExtensible.js": { - "offset": 304330, + "offset": 304390, "size": 510, }, "IsGenericDescriptor.js": { - "offset": 304840, + "offset": 304900, "size": 660, }, "IsInteger.js": { - "offset": 305490, + "offset": 305550, "size": 210, }, "IsPromise.js": { - "offset": 305700, + "offset": 305760, "size": 490, }, "IsPropertyDescriptor.js": { - "offset": 306180, + "offset": 306250, "size": 320, }, "IsPropertyKey.js": { - "offset": 306500, + "offset": 306560, "size": 230, }, "IsRegExp.js": { - "offset": 306720, + "offset": 306780, "size": 570, }, "IsWordChar.js": { - "offset": 307290, + "offset": 307350, "size": 1090, }, "IterableToArrayLike.js": { - "offset": 308380, + "offset": 308440, "size": 950, }, "IteratorClose.js": { - "offset": 309320, + "offset": 309390, "size": 1770, }, "IteratorComplete.js": { - "offset": 311090, + "offset": 311150, "size": 460, }, "IteratorNext.js": { - "offset": 311550, + "offset": 311610, "size": 460, }, "IteratorStep.js": { - "offset": 312000, + "offset": 312060, "size": 350, }, "IteratorValue.js": { - "offset": 312350, + "offset": 312410, "size": 410, }, "MakeDate.js": { - "offset": 312750, + "offset": 312810, "size": 340, }, "MakeDay.js": { - "offset": 313090, + "offset": 313150, "size": 930, }, "MakeTime.js": { - "offset": 314010, + "offset": 314070, "size": 710, }, "MinFromTime.js": { - "offset": 314710, + "offset": 314770, "size": 400, }, "MonthFromTime.js": { - "offset": 315110, + "offset": 315170, "size": 1130, }, "NewPromiseCapability.js": { - "offset": 316240, + "offset": 316300, "size": 1230, }, "NormalCompletion.js": { - "offset": 317460, + "offset": 317530, "size": 240, }, "ObjectCreate.js": { - "offset": 317700, + "offset": 317760, "size": 1330, }, "ObjectDefineProperties.js": { - "offset": 319030, + "offset": 319090, "size": 1440, }, "OrdinaryCreateFromConstructor.js": { - "offset": 320460, + "offset": 320530, "size": 810, }, "OrdinaryDefineOwnProperty.js": { - "offset": 321260, + "offset": 321330, "size": 2180, }, "OrdinaryGetOwnProperty.js": { - "offset": 323440, + "offset": 323500, "size": 1200, }, "OrdinaryGetPrototypeOf.js": { - "offset": 324640, + "offset": 324700, "size": 500, }, "OrdinaryHasInstance.js": { - "offset": 325130, + "offset": 325190, "size": 580, }, "OrdinaryHasProperty.js": { - "offset": 325700, + "offset": 325760, "size": 510, }, "OrdinarySetPrototypeOf.js": { - "offset": 326200, + "offset": 326260, "size": 1000, }, "QuoteJSONString.js": { - "offset": 327200, + "offset": 327260, "size": 1340, }, "RegExpCreate.js": { - "offset": 328530, + "offset": 328600, "size": 650, }, "RegExpExec.js": { - "offset": 329180, + "offset": 329240, "size": 830, }, "RequireObjectCoercible.js": { - "offset": 330010, + "offset": 330070, "size": 90, }, "SameValue.js": { - "offset": 330090, + "offset": 330150, "size": 320, }, "SameValueNonNumber.js": { - "offset": 330400, + "offset": 330460, "size": 410, }, "SameValueZero.js": { - "offset": 330800, + "offset": 330870, "size": 230, }, "SecFromTime.js": { - "offset": 331030, + "offset": 331090, "size": 410, }, "Set.js": { - "offset": 331430, + "offset": 331490, "size": 1230, }, "SetFunctionName.js": { - "offset": 332650, + "offset": 332720, "size": 1290, }, "SetIntegrityLevel.js": { - "offset": 333940, + "offset": 334000, "size": 1840, }, "SetValueInBuffer.js": { - "offset": 335780, + "offset": 335840, "size": 3830, }, "SpeciesConstructor.js": { - "offset": 339600, + "offset": 339670, "size": 850, }, "SplitMatch.js": { - "offset": 340450, + "offset": 340510, "size": 810, }, "StrictEqualityComparison.js": { - "offset": 341250, + "offset": 341310, "size": 320, }, "StringCreate.js": { - "offset": 341570, + "offset": 341630, "size": 1080, }, "SymbolDescriptiveString.js": { - "offset": 342640, + "offset": 342710, "size": 440, }, "TestIntegrityLevel.js": { - "offset": 343080, + "offset": 343140, "size": 1210, }, "TimeClip.js": { - "offset": 344280, + "offset": 344350, "size": 440, }, "TimeFromYear.js": { - "offset": 344720, + "offset": 344790, "size": 270, }, "TimeWithinDay.js": { - "offset": 344980, + "offset": 345050, "size": 250, }, "ToBoolean.js": { - "offset": 345230, + "offset": 345290, "size": 130, }, "ToDateString.js": { - "offset": 345360, + "offset": 345420, "size": 520, }, "ToInt16.js": { - "offset": 345880, + "offset": 345940, "size": 260, }, "ToInt32.js": { - "offset": 346130, + "offset": 346200, "size": 180, }, "ToInt8.js": { - "offset": 346310, + "offset": 346370, "size": 250, }, "ToInteger.js": { - "offset": 346550, + "offset": 346610, "size": 270, }, "ToLength.js": { - "offset": 346820, + "offset": 346880, "size": 410, }, "ToNumber.js": { - "offset": 347220, + "offset": 347280, "size": 1510, }, "ToObject.js": { - "offset": 348720, + "offset": 348790, "size": 130, }, "ToPrimitive.js": { - "offset": 348850, + "offset": 348910, "size": 290, }, "ToPropertyDescriptor.js": { - "offset": 349130, + "offset": 349200, "size": 1460, }, "ToPropertyKey.js": { - "offset": 350590, + "offset": 350650, "size": 400, }, "ToString.js": { - "offset": 350990, + "offset": 351050, "size": 390, }, "ToUint16.js": { - "offset": 351380, + "offset": 351440, "size": 610, }, "ToUint32.js": { - "offset": 351980, + "offset": 352050, "size": 180, }, "ToUint8.js": { - "offset": 352160, + "offset": 352220, "size": 630, }, "ToUint8Clamp.js": { - "offset": 352780, + "offset": 352850, "size": 520, }, "Type.js": { - "offset": 353300, + "offset": 353370, "size": 250, }, "TypedArrayCreate.js": { - "offset": 353550, + "offset": 353610, "size": 1690, }, "TypedArraySpeciesCreate.js": { - "offset": 355230, + "offset": 355300, "size": 1380, }, "UTF16Decode.js": { - "offset": 356600, + "offset": 356670, "size": 830, }, "UTF16Encoding.js": { - "offset": 357430, + "offset": 357490, "size": 700, }, "ValidateAndApplyPropertyDescriptor.js": { - "offset": 358120, - "size": 5010, + "offset": 358190, + "size": 5020, }, "ValidateTypedArray.js": { - "offset": 363120, + "offset": 363200, "size": 800, }, "WeekDay.js": { - "offset": 363920, + "offset": 363990, "size": 210, }, "YearFromTime.js": { - "offset": 364130, + "offset": 364200, "size": 400, }, "abs.js": { - "offset": 364520, + "offset": 364600, "size": 170, }, "floor.js": { - "offset": 364690, + "offset": 364760, "size": 240, }, "max.js": { - "offset": 364930, + "offset": 365000, "size": 140, }, "min.js": { - "offset": 365060, + "offset": 365140, "size": 140, }, "modulo.js": { - "offset": 365200, + "offset": 365270, "size": 170, }, "msFromTime.js": { - "offset": 365370, + "offset": 365440, "size": 260, }, "tables": { "files": { "typed-array-objects.js": { - "offset": 365620, + "offset": 365690, "size": 630, }, }, }, "thisBooleanValue.js": { - "offset": 366250, + "offset": 366320, "size": 330, }, "thisNumberValue.js": { - "offset": 366570, + "offset": 366640, "size": 350, }, "thisStringValue.js": { - "offset": 366920, + "offset": 366990, "size": 320, }, "thisTimeValue.js": { - "offset": 367230, + "offset": 367310, "size": 240, }, }, @@ -38893,607 +38909,607 @@ exports[`node_module collectors > yarn max stack 2`] = ` "2017": { "files": { "AbstractEqualityComparison.js": { - "offset": 367460, + "offset": 367540, "size": 1210, }, "AbstractRelationalComparison.js": { - "offset": 368670, + "offset": 368740, "size": 1580, }, "AdvanceStringIndex.js": { - "offset": 370240, + "offset": 370320, "size": 1250, }, "ArrayCreate.js": { - "offset": 371480, + "offset": 371560, "size": 1430, }, "ArraySetLength.js": { - "offset": 372910, + "offset": 372990, "size": 2430, }, "ArraySpeciesCreate.js": { - "offset": 375330, + "offset": 375410, "size": 1370, }, "Call.js": { - "offset": 376700, + "offset": 376780, "size": 610, }, "CanonicalNumericIndexString.js": { - "offset": 377310, + "offset": 377380, "size": 580, }, "Canonicalize.js": { - "offset": 377880, + "offset": 377960, "size": 1190, }, "CharacterRange.js": { - "offset": 379060, + "offset": 379140, "size": 1350, }, "CompletePropertyDescriptor.js": { - "offset": 380400, + "offset": 380480, "size": 1110, }, "CompletionRecord.js": { - "offset": 381510, + "offset": 381590, "size": 1360, }, "CreateDataProperty.js": { - "offset": 382870, + "offset": 382950, "size": 730, }, "CreateDataPropertyOrThrow.js": { - "offset": 383590, + "offset": 383670, "size": 700, }, "CreateHTML.js": { - "offset": 384290, + "offset": 384370, "size": 840, }, "CreateIterResultObject.js": { - "offset": 385130, + "offset": 385210, "size": 350, }, "CreateListFromArrayLike.js": { - "offset": 385480, + "offset": 385560, "size": 1350, }, "CreateMethodProperty.js": { - "offset": 386820, + "offset": 386900, "size": 950, }, "DateFromTime.js": { - "offset": 387770, + "offset": 387850, "size": 990, }, "Day.js": { - "offset": 388760, + "offset": 388830, "size": 240, }, "DayFromYear.js": { - "offset": 388990, + "offset": 389070, "size": 260, }, "DayWithinYear.js": { - "offset": 389250, + "offset": 389320, "size": 290, }, "DaysInYear.js": { - "offset": 389530, + "offset": 389610, "size": 310, }, "DefinePropertyOrThrow.js": { - "offset": 389830, + "offset": 389910, "size": 1170, }, "DeletePropertyOrThrow.js": { - "offset": 391000, + "offset": 391080, "size": 670, }, "DetachArrayBuffer.js": { - "offset": 391670, + "offset": 391740, "size": 1390, }, "EnumerableOwnProperties.js": { - "offset": 393050, + "offset": 393130, "size": 1010, }, "FromPropertyDescriptor.js": { - "offset": 394060, + "offset": 394130, "size": 540, }, "Get.js": { - "offset": 394590, + "offset": 394670, "size": 570, }, "GetGlobalObject.js": { - "offset": 395160, + "offset": 395240, "size": 200, }, "GetIterator.js": { - "offset": 395360, + "offset": 395440, "size": 760, }, "GetMethod.js": { - "offset": 396110, + "offset": 396190, "size": 690, }, "GetOwnPropertyKeys.js": { - "offset": 396800, + "offset": 396870, "size": 840, }, "GetPrototypeFromConstructor.js": { - "offset": 397630, + "offset": 397710, "size": 1080, }, "GetSubstitution.js": { - "offset": 398710, + "offset": 398780, "size": 3270, }, "GetV.js": { - "offset": 401970, + "offset": 402040, "size": 500, }, "GetValueFromBuffer.js": { - "offset": 402460, + "offset": 402540, "size": 4390, }, "HasOwnProperty.js": { - "offset": 406850, + "offset": 406930, "size": 540, }, "HasProperty.js": { - "offset": 407380, + "offset": 407460, "size": 490, }, "HourFromTime.js": { - "offset": 407870, + "offset": 407950, "size": 390, }, "InLeapYear.js": { - "offset": 408250, + "offset": 408330, "size": 470, }, "InstanceofOperator.js": { - "offset": 408710, + "offset": 408790, "size": 930, }, "IntegerIndexedElementGet.js": { - "offset": 409640, + "offset": 409720, "size": 1870, }, "IntegerIndexedElementSet.js": { - "offset": 411500, + "offset": 411580, "size": 1970, }, "InternalizeJSONProperty.js": { - "offset": 413470, + "offset": 413550, "size": 2170, }, "Invoke.js": { - "offset": 415640, + "offset": 415720, "size": 680, }, "IsAccessorDescriptor.js": { - "offset": 416310, + "offset": 416390, "size": 560, }, "IsArray.js": { - "offset": 416870, + "offset": 416950, "size": 120, }, "IsCallable.js": { - "offset": 416990, + "offset": 417070, "size": 110, }, "IsCompatiblePropertyDescriptor.js": { - "offset": 417100, - "size": 370, + "offset": 417180, + "size": 390, }, "IsConcatSpreadable.js": { - "offset": 417460, + "offset": 417570, "size": 640, }, "IsConstructor.js": { - "offset": 418100, + "offset": 418200, "size": 1150, }, "IsDataDescriptor.js": { - "offset": 419240, + "offset": 419350, "size": 570, }, "IsDetachedBuffer.js": { - "offset": 419810, + "offset": 419910, "size": 1000, }, "IsExtensible.js": { - "offset": 420800, + "offset": 420900, "size": 510, }, "IsGenericDescriptor.js": { - "offset": 421310, + "offset": 421410, "size": 660, }, "IsInteger.js": { - "offset": 421960, + "offset": 422060, "size": 210, }, "IsPromise.js": { - "offset": 422170, + "offset": 422270, "size": 490, }, "IsPropertyDescriptor.js": { - "offset": 422660, + "offset": 422760, "size": 320, }, "IsPropertyKey.js": { - "offset": 422970, + "offset": 423070, "size": 230, }, "IsRegExp.js": { - "offset": 423190, + "offset": 423290, "size": 570, }, "IsSharedArrayBuffer.js": { - "offset": 423760, + "offset": 423860, "size": 430, }, "IsWordChar.js": { - "offset": 424190, + "offset": 424290, "size": 1370, }, "IterableToList.js": { - "offset": 425550, + "offset": 425650, "size": 530, }, "IteratorClose.js": { - "offset": 426070, + "offset": 426180, "size": 1770, }, "IteratorComplete.js": { - "offset": 427840, + "offset": 427940, "size": 460, }, "IteratorNext.js": { - "offset": 428300, + "offset": 428400, "size": 460, }, "IteratorStep.js": { - "offset": 428750, + "offset": 428850, "size": 350, }, "IteratorValue.js": { - "offset": 429100, + "offset": 429200, "size": 410, }, "MakeDate.js": { - "offset": 429500, + "offset": 429600, "size": 340, }, "MakeDay.js": { - "offset": 429840, + "offset": 429940, "size": 930, }, "MakeTime.js": { - "offset": 430760, + "offset": 430860, "size": 710, }, "MinFromTime.js": { - "offset": 431460, + "offset": 431560, "size": 400, }, "MonthFromTime.js": { - "offset": 431860, + "offset": 431960, "size": 1130, }, "NewPromiseCapability.js": { - "offset": 432990, + "offset": 433090, "size": 1230, }, "NormalCompletion.js": { - "offset": 434220, + "offset": 434320, "size": 240, }, "NumberToRawBytes.js": { - "offset": 434450, + "offset": 434550, "size": 1820, }, "ObjectCreate.js": { - "offset": 436270, + "offset": 436370, "size": 1330, }, "ObjectDefineProperties.js": { - "offset": 437600, + "offset": 437700, "size": 1440, }, "OrdinaryCreateFromConstructor.js": { - "offset": 439030, + "offset": 439140, "size": 810, }, "OrdinaryDefineOwnProperty.js": { - "offset": 439840, + "offset": 439940, "size": 2180, }, "OrdinaryGetOwnProperty.js": { - "offset": 442010, + "offset": 442110, "size": 1200, }, "OrdinaryGetPrototypeOf.js": { - "offset": 443210, + "offset": 443310, "size": 500, }, "OrdinaryHasInstance.js": { - "offset": 443700, + "offset": 443800, "size": 580, }, "OrdinaryHasProperty.js": { - "offset": 444270, + "offset": 444370, "size": 510, }, "OrdinarySetPrototypeOf.js": { - "offset": 444770, + "offset": 444870, "size": 1000, }, "OrdinaryToPrimitive.js": { - "offset": 445770, + "offset": 445870, "size": 1030, }, "QuoteJSONString.js": { - "offset": 446790, + "offset": 446890, "size": 1340, }, "RawBytesToNumber.js": { - "offset": 448130, + "offset": 448230, "size": 2010, }, "RegExpCreate.js": { - "offset": 450130, + "offset": 450230, "size": 650, }, "RegExpExec.js": { - "offset": 450770, + "offset": 450870, "size": 830, }, "RequireObjectCoercible.js": { - "offset": 451600, + "offset": 451700, "size": 90, }, "SameValue.js": { - "offset": 451680, + "offset": 451790, "size": 320, }, "SameValueNonNumber.js": { - "offset": 452000, + "offset": 452100, "size": 410, }, "SameValueZero.js": { - "offset": 452400, + "offset": 452500, "size": 230, }, "SecFromTime.js": { - "offset": 452620, + "offset": 452720, "size": 410, }, "Set.js": { - "offset": 453020, + "offset": 453120, "size": 1230, }, "SetFunctionName.js": { - "offset": 454250, + "offset": 454350, "size": 1290, }, "SetIntegrityLevel.js": { - "offset": 455540, + "offset": 455640, "size": 1840, }, "SetValueInBuffer.js": { - "offset": 457370, + "offset": 457470, "size": 3700, }, "SpeciesConstructor.js": { - "offset": 461070, + "offset": 461170, "size": 850, }, "SplitMatch.js": { - "offset": 461910, + "offset": 462010, "size": 810, }, "StrictEqualityComparison.js": { - "offset": 462710, + "offset": 462820, "size": 320, }, "StringCreate.js": { - "offset": 463030, + "offset": 463130, "size": 1080, }, "StringGetOwnProperty.js": { - "offset": 464110, + "offset": 464210, "size": 1360, }, "SymbolDescriptiveString.js": { - "offset": 465470, + "offset": 465570, "size": 440, }, "TestIntegrityLevel.js": { - "offset": 465900, + "offset": 466000, "size": 1210, }, "TimeClip.js": { - "offset": 467110, + "offset": 467210, "size": 440, }, "TimeFromYear.js": { - "offset": 467550, + "offset": 467650, "size": 270, }, "TimeWithinDay.js": { - "offset": 467810, + "offset": 467910, "size": 250, }, "ToBoolean.js": { - "offset": 468050, + "offset": 468160, "size": 130, }, "ToDateString.js": { - "offset": 468180, + "offset": 468290, "size": 520, }, "ToIndex.js": { - "offset": 468700, + "offset": 468800, "size": 620, }, "ToInt16.js": { - "offset": 469320, + "offset": 469420, "size": 260, }, "ToInt32.js": { - "offset": 469580, + "offset": 469680, "size": 180, }, "ToInt8.js": { - "offset": 469750, + "offset": 469850, "size": 250, }, "ToInteger.js": { - "offset": 469990, + "offset": 470090, "size": 270, }, "ToLength.js": { - "offset": 470260, + "offset": 470360, "size": 410, }, "ToNumber.js": { - "offset": 470670, + "offset": 470770, "size": 1510, }, "ToObject.js": { - "offset": 472170, + "offset": 472270, "size": 130, }, "ToPrimitive.js": { - "offset": 472290, + "offset": 472400, "size": 290, }, "ToPropertyDescriptor.js": { - "offset": 472580, + "offset": 472680, "size": 1460, }, "ToPropertyKey.js": { - "offset": 474030, + "offset": 474130, "size": 400, }, "ToString.js": { - "offset": 474430, + "offset": 474530, "size": 390, }, "ToUint16.js": { - "offset": 474820, + "offset": 474920, "size": 610, }, "ToUint32.js": { - "offset": 475430, + "offset": 475530, "size": 180, }, "ToUint8.js": { - "offset": 475600, + "offset": 475700, "size": 630, }, "ToUint8Clamp.js": { - "offset": 476230, + "offset": 476330, "size": 520, }, "Type.js": { - "offset": 476750, + "offset": 476850, "size": 250, }, "TypedArrayCreate.js": { - "offset": 476990, + "offset": 477090, "size": 1690, }, "TypedArraySpeciesCreate.js": { - "offset": 478680, + "offset": 478780, "size": 1380, }, "UTF16Decode.js": { - "offset": 480050, + "offset": 480150, "size": 830, }, "UTF16Encoding.js": { - "offset": 480870, + "offset": 480970, "size": 700, }, "ValidateAndApplyPropertyDescriptor.js": { - "offset": 481570, - "size": 5010, + "offset": 481670, + "size": 5020, }, "ValidateAtomicAccess.js": { - "offset": 486570, + "offset": 486680, "size": 900, }, "ValidateTypedArray.js": { - "offset": 487470, + "offset": 487580, "size": 800, }, "WeekDay.js": { - "offset": 488260, + "offset": 488370, "size": 210, }, "WordCharacters.js": { - "offset": 488470, + "offset": 488580, "size": 1470, }, "YearFromTime.js": { - "offset": 489940, + "offset": 490050, "size": 400, }, "abs.js": { - "offset": 490340, + "offset": 490450, "size": 170, }, "floor.js": { - "offset": 490500, + "offset": 490610, "size": 240, }, "max.js": { - "offset": 490740, + "offset": 490850, "size": 140, }, "min.js": { - "offset": 490870, + "offset": 490990, "size": 140, }, "modulo.js": { - "offset": 491010, + "offset": 491120, "size": 170, }, "msFromTime.js": { - "offset": 491180, + "offset": 491290, "size": 260, }, "tables": { "files": { "typed-array-objects.js": { - "offset": 491430, + "offset": 491540, "size": 630, }, }, }, "thisBooleanValue.js": { - "offset": 492060, + "offset": 492170, "size": 330, }, "thisNumberValue.js": { - "offset": 492380, + "offset": 492490, "size": 350, }, "thisStringValue.js": { - "offset": 492730, + "offset": 492840, "size": 320, }, "thisTimeValue.js": { - "offset": 493040, + "offset": 493150, "size": 240, }, }, @@ -39501,655 +39517,655 @@ exports[`node_module collectors > yarn max stack 2`] = ` "2018": { "files": { "AbstractEqualityComparison.js": { - "offset": 493270, + "offset": 493390, "size": 1210, }, "AbstractRelationalComparison.js": { - "offset": 494480, + "offset": 494590, "size": 1520, }, "AdvanceStringIndex.js": { - "offset": 495990, + "offset": 496110, "size": 1250, }, "ArrayCreate.js": { - "offset": 497230, + "offset": 497350, "size": 1430, }, "ArraySetLength.js": { - "offset": 498660, + "offset": 498780, "size": 2430, }, "ArraySpeciesCreate.js": { - "offset": 501090, + "offset": 501200, "size": 1370, }, "AsyncIteratorClose.js": { - "offset": 502450, + "offset": 502570, "size": 1810, }, "Call.js": { - "offset": 504260, + "offset": 504380, "size": 610, }, "CanonicalNumericIndexString.js": { - "offset": 504860, + "offset": 504980, "size": 580, }, "Canonicalize.js": { - "offset": 505440, + "offset": 505550, "size": 1190, }, "CharacterRange.js": { - "offset": 506620, + "offset": 506740, "size": 1350, }, "CompletePropertyDescriptor.js": { - "offset": 507960, + "offset": 508080, "size": 1110, }, "CompletionRecord.js": { - "offset": 509070, + "offset": 509190, "size": 1360, }, "CopyDataProperties.js": { - "offset": 510430, + "offset": 510550, "size": 1830, }, "CreateAsyncFromSyncIterator.js": { - "offset": 512260, - "size": 5590, + "offset": 512370, + "size": 5610, }, "CreateDataProperty.js": { - "offset": 517840, + "offset": 517980, "size": 730, }, "CreateDataPropertyOrThrow.js": { - "offset": 518570, + "offset": 518700, "size": 700, }, "CreateHTML.js": { - "offset": 519270, + "offset": 519400, "size": 840, }, "CreateIterResultObject.js": { - "offset": 520100, + "offset": 520240, "size": 350, }, "CreateListFromArrayLike.js": { - "offset": 520450, + "offset": 520590, "size": 1350, }, "CreateMethodProperty.js": { - "offset": 521800, + "offset": 521930, "size": 950, }, "DateFromTime.js": { - "offset": 522740, + "offset": 522880, "size": 990, }, "DateString.js": { - "offset": 523730, + "offset": 523860, "size": 990, }, "Day.js": { - "offset": 524710, + "offset": 524850, "size": 240, }, "DayFromYear.js": { - "offset": 524950, + "offset": 525080, "size": 260, }, "DayWithinYear.js": { - "offset": 525200, + "offset": 525340, "size": 290, }, "DaysInYear.js": { - "offset": 525490, + "offset": 525620, "size": 310, }, "DefinePropertyOrThrow.js": { - "offset": 525790, + "offset": 525920, "size": 1170, }, "DeletePropertyOrThrow.js": { - "offset": 526960, + "offset": 527090, "size": 670, }, "DetachArrayBuffer.js": { - "offset": 527620, + "offset": 527760, "size": 1720, }, "EnumerableOwnPropertyNames.js": { - "offset": 529330, + "offset": 529470, "size": 1010, }, "FromPropertyDescriptor.js": { - "offset": 530340, + "offset": 530480, "size": 540, }, "Get.js": { - "offset": 530880, + "offset": 531010, "size": 570, }, "GetGlobalObject.js": { - "offset": 531440, + "offset": 531580, "size": 200, }, "GetIterator.js": { - "offset": 531640, + "offset": 531780, "size": 760, }, "GetMethod.js": { - "offset": 532400, + "offset": 532530, "size": 690, }, "GetOwnPropertyKeys.js": { - "offset": 533080, + "offset": 533220, "size": 840, }, "GetPrototypeFromConstructor.js": { - "offset": 533910, + "offset": 534050, "size": 1080, }, "GetSubstitution.js": { - "offset": 534990, + "offset": 535130, "size": 4020, }, "GetV.js": { - "offset": 539010, + "offset": 539140, "size": 500, }, "GetValueFromBuffer.js": { - "offset": 539500, + "offset": 539630, "size": 4390, }, "HasOwnProperty.js": { - "offset": 543890, + "offset": 544020, "size": 540, }, "HasProperty.js": { - "offset": 544420, + "offset": 544560, "size": 490, }, "HourFromTime.js": { - "offset": 544910, + "offset": 545040, "size": 390, }, "InLeapYear.js": { - "offset": 545290, + "offset": 545420, "size": 470, }, "InstanceofOperator.js": { - "offset": 545750, + "offset": 545890, "size": 930, }, "IntegerIndexedElementGet.js": { - "offset": 546680, + "offset": 546810, "size": 1870, }, "IntegerIndexedElementSet.js": { - "offset": 548540, + "offset": 548680, "size": 1970, }, "InternalizeJSONProperty.js": { - "offset": 550510, + "offset": 550650, "size": 2180, }, "Invoke.js": { - "offset": 552690, + "offset": 552830, "size": 680, }, "IsAccessorDescriptor.js": { - "offset": 553360, + "offset": 553500, "size": 560, }, "IsArray.js": { - "offset": 553920, + "offset": 554060, "size": 120, }, "IsCallable.js": { - "offset": 554040, + "offset": 554170, "size": 110, }, "IsCompatiblePropertyDescriptor.js": { - "offset": 554150, - "size": 370, + "offset": 554280, + "size": 390, }, "IsConcatSpreadable.js": { - "offset": 554510, + "offset": 554670, "size": 640, }, "IsConstructor.js": { - "offset": 555150, + "offset": 555310, "size": 1150, }, "IsDataDescriptor.js": { - "offset": 556290, + "offset": 556450, "size": 570, }, "IsDetachedBuffer.js": { - "offset": 556850, + "offset": 557010, "size": 1000, }, "IsExtensible.js": { - "offset": 557850, + "offset": 558010, "size": 510, }, "IsGenericDescriptor.js": { - "offset": 558360, + "offset": 558510, "size": 660, }, "IsInteger.js": { - "offset": 559010, + "offset": 559170, "size": 210, }, "IsPromise.js": { - "offset": 559220, + "offset": 559380, "size": 490, }, "IsPropertyKey.js": { - "offset": 559700, + "offset": 559860, "size": 230, }, "IsRegExp.js": { - "offset": 559930, + "offset": 560090, "size": 570, }, "IsSharedArrayBuffer.js": { - "offset": 560500, + "offset": 560660, "size": 430, }, "IsStringPrefix.js": { - "offset": 560920, + "offset": 561080, "size": 860, }, "IsWordChar.js": { - "offset": 561780, + "offset": 561940, "size": 1370, }, "IterableToList.js": { - "offset": 563140, + "offset": 563300, "size": 530, }, "IteratorClose.js": { - "offset": 563670, + "offset": 563820, "size": 1770, }, "IteratorComplete.js": { - "offset": 565430, + "offset": 565590, "size": 460, }, "IteratorNext.js": { - "offset": 565890, + "offset": 566050, "size": 460, }, "IteratorStep.js": { - "offset": 566340, + "offset": 566500, "size": 350, }, "IteratorValue.js": { - "offset": 566690, + "offset": 566850, "size": 410, }, "MakeDate.js": { - "offset": 567090, + "offset": 567250, "size": 340, }, "MakeDay.js": { - "offset": 567430, + "offset": 567590, "size": 930, }, "MakeTime.js": { - "offset": 568350, + "offset": 568510, "size": 710, }, "MinFromTime.js": { - "offset": 569050, + "offset": 569210, "size": 400, }, "MonthFromTime.js": { - "offset": 569450, + "offset": 569610, "size": 1130, }, "NewPromiseCapability.js": { - "offset": 570580, + "offset": 570740, "size": 1230, }, "NormalCompletion.js": { - "offset": 571810, + "offset": 571970, "size": 240, }, "NumberToRawBytes.js": { - "offset": 572040, + "offset": 572200, "size": 1820, }, "NumberToString.js": { - "offset": 573860, + "offset": 574020, "size": 400, }, "ObjectCreate.js": { - "offset": 574260, + "offset": 574420, "size": 1330, }, "ObjectDefineProperties.js": { - "offset": 575590, + "offset": 575750, "size": 1440, }, "OrdinaryCreateFromConstructor.js": { - "offset": 577030, + "offset": 577180, "size": 810, }, "OrdinaryDefineOwnProperty.js": { - "offset": 577830, + "offset": 577990, "size": 2180, }, "OrdinaryGetOwnProperty.js": { - "offset": 580000, + "offset": 580160, "size": 1200, }, "OrdinaryGetPrototypeOf.js": { - "offset": 581200, + "offset": 581360, "size": 500, }, "OrdinaryHasInstance.js": { - "offset": 581690, + "offset": 581850, "size": 580, }, "OrdinaryHasProperty.js": { - "offset": 582260, + "offset": 582420, "size": 510, }, "OrdinarySetPrototypeOf.js": { - "offset": 582760, + "offset": 582920, "size": 1000, }, "OrdinaryToPrimitive.js": { - "offset": 583760, + "offset": 583920, "size": 1030, }, "PromiseResolve.js": { - "offset": 584780, + "offset": 584940, "size": 510, }, "QuoteJSONString.js": { - "offset": 585290, + "offset": 585450, "size": 1010, }, "RawBytesToNumber.js": { - "offset": 586290, + "offset": 586450, "size": 2010, }, "RegExpCreate.js": { - "offset": 588290, + "offset": 588450, "size": 650, }, "RegExpExec.js": { - "offset": 588940, + "offset": 589100, "size": 830, }, "RequireObjectCoercible.js": { - "offset": 589770, + "offset": 589930, "size": 90, }, "SameValue.js": { - "offset": 589850, + "offset": 590010, "size": 320, }, "SameValueNonNumber.js": { - "offset": 590160, + "offset": 590320, "size": 410, }, "SameValueZero.js": { - "offset": 590560, + "offset": 590720, "size": 230, }, "SecFromTime.js": { - "offset": 590790, + "offset": 590950, "size": 410, }, "Set.js": { - "offset": 591190, + "offset": 591350, "size": 1230, }, "SetFunctionLength.js": { - "offset": 592410, + "offset": 592570, "size": 990, }, "SetFunctionName.js": { - "offset": 593400, + "offset": 593560, "size": 1290, }, "SetIntegrityLevel.js": { - "offset": 594690, + "offset": 594850, "size": 1840, }, "SetValueInBuffer.js": { - "offset": 596520, + "offset": 596680, "size": 3700, }, "SpeciesConstructor.js": { - "offset": 600220, + "offset": 600380, "size": 850, }, "SplitMatch.js": { - "offset": 601060, + "offset": 601220, "size": 810, }, "StrictEqualityComparison.js": { - "offset": 601860, + "offset": 602020, "size": 320, }, "StringCreate.js": { - "offset": 602180, + "offset": 602340, "size": 1080, }, "StringGetOwnProperty.js": { - "offset": 603260, + "offset": 603420, "size": 1360, }, "SymbolDescriptiveString.js": { - "offset": 604620, + "offset": 604770, "size": 440, }, "TestIntegrityLevel.js": { - "offset": 605050, + "offset": 605210, "size": 1210, }, "ThrowCompletion.js": { - "offset": 606260, + "offset": 606420, "size": 240, }, "TimeClip.js": { - "offset": 606500, + "offset": 606660, "size": 440, }, "TimeFromYear.js": { - "offset": 606940, + "offset": 607090, "size": 270, }, "TimeString.js": { - "offset": 607200, + "offset": 607360, "size": 740, }, "TimeWithinDay.js": { - "offset": 607930, + "offset": 608090, "size": 250, }, "TimeZoneString.js": { - "offset": 608180, + "offset": 608340, "size": 1650, }, "ToBoolean.js": { - "offset": 609830, + "offset": 609980, "size": 130, }, "ToDateString.js": { - "offset": 609960, + "offset": 610110, "size": 520, }, "ToIndex.js": { - "offset": 610470, + "offset": 610630, "size": 620, }, "ToInt16.js": { - "offset": 611090, + "offset": 611250, "size": 260, }, "ToInt32.js": { - "offset": 611350, + "offset": 611510, "size": 180, }, "ToInt8.js": { - "offset": 611520, + "offset": 611680, "size": 250, }, "ToInteger.js": { - "offset": 611760, + "offset": 611920, "size": 270, }, "ToLength.js": { - "offset": 612030, + "offset": 612190, "size": 410, }, "ToNumber.js": { - "offset": 612440, + "offset": 612600, "size": 1510, }, "ToObject.js": { - "offset": 613940, + "offset": 614100, "size": 130, }, "ToPrimitive.js": { - "offset": 614070, + "offset": 614220, "size": 290, }, "ToPropertyDescriptor.js": { - "offset": 614350, + "offset": 614510, "size": 1460, }, "ToPropertyKey.js": { - "offset": 615800, + "offset": 615960, "size": 400, }, "ToString.js": { - "offset": 616200, + "offset": 616360, "size": 390, }, "ToUint16.js": { - "offset": 616590, + "offset": 616750, "size": 610, }, "ToUint32.js": { - "offset": 617200, + "offset": 617360, "size": 180, }, "ToUint8.js": { - "offset": 617370, + "offset": 617530, "size": 630, }, "ToUint8Clamp.js": { - "offset": 618000, + "offset": 618160, "size": 520, }, "Type.js": { - "offset": 618520, + "offset": 618680, "size": 250, }, "TypedArrayCreate.js": { - "offset": 618760, + "offset": 618920, "size": 1690, }, "TypedArraySpeciesCreate.js": { - "offset": 620450, + "offset": 620610, "size": 1380, }, "UTF16Decode.js": { - "offset": 621820, + "offset": 621980, "size": 830, }, "UTF16Encoding.js": { - "offset": 622640, + "offset": 622800, "size": 700, }, "UnicodeEscape.js": { - "offset": 623340, + "offset": 623500, "size": 790, }, "ValidateAndApplyPropertyDescriptor.js": { - "offset": 624130, - "size": 5010, + "offset": 624290, + "size": 5020, }, "ValidateAtomicAccess.js": { - "offset": 629130, + "offset": 629300, "size": 900, }, "ValidateTypedArray.js": { - "offset": 630030, + "offset": 630200, "size": 800, }, "WeekDay.js": { - "offset": 630820, + "offset": 630990, "size": 210, }, "WordCharacters.js": { - "offset": 631030, + "offset": 631200, "size": 1470, }, "YearFromTime.js": { - "offset": 632500, + "offset": 632670, "size": 400, }, "abs.js": { - "offset": 632900, + "offset": 633060, "size": 170, }, "floor.js": { - "offset": 633060, + "offset": 633230, "size": 240, }, "max.js": { - "offset": 633300, + "offset": 633470, "size": 140, }, "min.js": { - "offset": 633430, + "offset": 633600, "size": 140, }, "modulo.js": { - "offset": 633570, + "offset": 633740, "size": 170, }, "msFromTime.js": { - "offset": 633740, + "offset": 633910, "size": 260, }, "tables": { "files": { "typed-array-objects.js": { - "offset": 633990, + "offset": 634160, "size": 630, }, }, }, "thisBooleanValue.js": { - "offset": 634620, + "offset": 634790, "size": 330, }, "thisNumberValue.js": { - "offset": 634940, + "offset": 635110, "size": 350, }, "thisStringValue.js": { - "offset": 635290, + "offset": 635460, "size": 320, }, "thisSymbolValue.js": { - "offset": 635600, + "offset": 635770, "size": 530, }, "thisTimeValue.js": { - "offset": 636130, + "offset": 636300, "size": 240, }, }, @@ -40157,671 +40173,671 @@ exports[`node_module collectors > yarn max stack 2`] = ` "2019": { "files": { "AbstractEqualityComparison.js": { - "offset": 636360, + "offset": 636530, "size": 1210, }, "AbstractRelationalComparison.js": { - "offset": 637560, + "offset": 637730, "size": 1520, }, "AddEntriesFromIterable.js": { - "offset": 639080, + "offset": 639250, "size": 1420, }, "AdvanceStringIndex.js": { - "offset": 640490, + "offset": 640670, "size": 1250, }, "ArrayCreate.js": { - "offset": 641740, + "offset": 641910, "size": 1430, }, "ArraySetLength.js": { - "offset": 643170, + "offset": 643340, "size": 2430, }, "ArraySpeciesCreate.js": { - "offset": 645590, + "offset": 645760, "size": 1370, }, "AsyncFromSyncIteratorContinuation.js": { - "offset": 646960, + "offset": 647130, "size": 1530, }, "AsyncIteratorClose.js": { - "offset": 648480, + "offset": 648650, "size": 1810, }, "Call.js": { - "offset": 650280, + "offset": 650460, "size": 610, }, "CanonicalNumericIndexString.js": { - "offset": 650890, + "offset": 651060, "size": 580, }, "Canonicalize.js": { - "offset": 651460, + "offset": 651630, "size": 1190, }, "CharacterRange.js": { - "offset": 652650, + "offset": 652820, "size": 1350, }, "CompletePropertyDescriptor.js": { - "offset": 653990, + "offset": 654160, "size": 1110, }, "CompletionRecord.js": { - "offset": 655100, + "offset": 655270, "size": 1360, }, "CopyDataProperties.js": { - "offset": 656450, + "offset": 656630, "size": 1830, }, "CreateAsyncFromSyncIterator.js": { - "offset": 658280, - "size": 4550, + "offset": 658450, + "size": 4570, }, "CreateDataProperty.js": { - "offset": 662830, + "offset": 663020, "size": 730, }, "CreateDataPropertyOrThrow.js": { - "offset": 663550, + "offset": 663740, "size": 700, }, "CreateHTML.js": { - "offset": 664250, + "offset": 664440, "size": 840, }, "CreateIterResultObject.js": { - "offset": 665090, + "offset": 665280, "size": 350, }, "CreateListFromArrayLike.js": { - "offset": 665440, + "offset": 665630, "size": 1350, }, "CreateMethodProperty.js": { - "offset": 666780, + "offset": 666970, "size": 950, }, "DateFromTime.js": { - "offset": 667720, + "offset": 667920, "size": 990, }, "DateString.js": { - "offset": 668710, + "offset": 668910, "size": 990, }, "Day.js": { - "offset": 669700, + "offset": 669890, "size": 240, }, "DayFromYear.js": { - "offset": 669930, + "offset": 670120, "size": 260, }, "DayWithinYear.js": { - "offset": 670190, + "offset": 670380, "size": 290, }, "DaysInYear.js": { - "offset": 670470, + "offset": 670670, "size": 310, }, "DefinePropertyOrThrow.js": { - "offset": 670770, + "offset": 670970, "size": 1170, }, "DeletePropertyOrThrow.js": { - "offset": 671940, + "offset": 672140, "size": 670, }, "DetachArrayBuffer.js": { - "offset": 672610, + "offset": 672800, "size": 1720, }, "EnumerableOwnPropertyNames.js": { - "offset": 674320, + "offset": 674510, "size": 1010, }, "FlattenIntoArray.js": { - "offset": 675320, + "offset": 675520, "size": 1670, }, "FromPropertyDescriptor.js": { - "offset": 676990, + "offset": 677190, "size": 540, }, "Get.js": { - "offset": 677530, + "offset": 677720, "size": 570, }, "GetGlobalObject.js": { - "offset": 678100, + "offset": 678290, "size": 200, }, "GetIterator.js": { - "offset": 678290, + "offset": 678490, "size": 760, }, "GetMethod.js": { - "offset": 679050, + "offset": 679240, "size": 690, }, "GetOwnPropertyKeys.js": { - "offset": 679730, + "offset": 679930, "size": 840, }, "GetPrototypeFromConstructor.js": { - "offset": 680560, + "offset": 680760, "size": 1080, }, "GetSubstitution.js": { - "offset": 681640, + "offset": 681840, "size": 4020, }, "GetV.js": { - "offset": 685660, + "offset": 685850, "size": 500, }, "GetValueFromBuffer.js": { - "offset": 686150, + "offset": 686340, "size": 4290, }, "HasOwnProperty.js": { - "offset": 690430, + "offset": 690630, "size": 540, }, "HasProperty.js": { - "offset": 690970, + "offset": 691160, "size": 490, }, "HourFromTime.js": { - "offset": 691450, + "offset": 691650, "size": 390, }, "InLeapYear.js": { - "offset": 691830, + "offset": 692030, "size": 470, }, "InstanceofOperator.js": { - "offset": 692300, + "offset": 692490, "size": 930, }, "IntegerIndexedElementGet.js": { - "offset": 693220, + "offset": 693420, "size": 1870, }, "IntegerIndexedElementSet.js": { - "offset": 695090, + "offset": 695280, "size": 1970, }, "InternalizeJSONProperty.js": { - "offset": 697060, + "offset": 697250, "size": 2180, }, "Invoke.js": { - "offset": 699240, + "offset": 699430, "size": 680, }, "IsAccessorDescriptor.js": { - "offset": 699910, + "offset": 700100, "size": 560, }, "IsArray.js": { - "offset": 700470, + "offset": 700660, "size": 120, }, "IsCallable.js": { - "offset": 700580, + "offset": 700780, "size": 110, }, "IsCompatiblePropertyDescriptor.js": { - "offset": 700690, - "size": 370, + "offset": 700890, + "size": 390, }, "IsConcatSpreadable.js": { - "offset": 701060, + "offset": 701280, "size": 640, }, "IsConstructor.js": { - "offset": 701690, + "offset": 701910, "size": 1150, }, "IsDataDescriptor.js": { - "offset": 702840, + "offset": 703060, "size": 570, }, "IsDetachedBuffer.js": { - "offset": 703400, + "offset": 703620, "size": 1000, }, "IsExtensible.js": { - "offset": 704400, + "offset": 704610, "size": 510, }, "IsGenericDescriptor.js": { - "offset": 704900, + "offset": 705120, "size": 660, }, "IsInteger.js": { - "offset": 705560, + "offset": 705770, "size": 210, }, "IsPromise.js": { - "offset": 705770, + "offset": 705980, "size": 490, }, "IsPropertyKey.js": { - "offset": 706250, + "offset": 706470, "size": 230, }, "IsRegExp.js": { - "offset": 706470, + "offset": 706690, "size": 570, }, "IsSharedArrayBuffer.js": { - "offset": 707040, + "offset": 707260, "size": 430, }, "IsStringPrefix.js": { - "offset": 707470, + "offset": 707690, "size": 860, }, "IsWordChar.js": { - "offset": 708320, + "offset": 708540, "size": 1370, }, "IterableToList.js": { - "offset": 709690, + "offset": 709910, "size": 530, }, "IteratorClose.js": { - "offset": 710210, + "offset": 710430, "size": 1770, }, "IteratorComplete.js": { - "offset": 711980, + "offset": 712190, "size": 460, }, "IteratorNext.js": { - "offset": 712430, + "offset": 712650, "size": 460, }, "IteratorStep.js": { - "offset": 712890, + "offset": 713110, "size": 350, }, "IteratorValue.js": { - "offset": 713240, + "offset": 713450, "size": 410, }, "MakeDate.js": { - "offset": 713640, + "offset": 713860, "size": 340, }, "MakeDay.js": { - "offset": 713970, + "offset": 714190, "size": 930, }, "MakeTime.js": { - "offset": 714900, + "offset": 715110, "size": 710, }, "MinFromTime.js": { - "offset": 715600, + "offset": 715820, "size": 400, }, "MonthFromTime.js": { - "offset": 716000, + "offset": 716210, "size": 1130, }, "NewPromiseCapability.js": { - "offset": 717130, + "offset": 717340, "size": 1230, }, "NormalCompletion.js": { - "offset": 718350, + "offset": 718570, "size": 240, }, "NumberToRawBytes.js": { - "offset": 718590, + "offset": 718810, "size": 1820, }, "NumberToString.js": { - "offset": 720410, + "offset": 720630, "size": 400, }, "ObjectCreate.js": { - "offset": 720810, + "offset": 721030, "size": 1330, }, "ObjectDefineProperties.js": { - "offset": 722140, + "offset": 722350, "size": 1440, }, "OrdinaryCreateFromConstructor.js": { - "offset": 723570, + "offset": 723790, "size": 810, }, "OrdinaryDefineOwnProperty.js": { - "offset": 724370, + "offset": 724590, "size": 2180, }, "OrdinaryGetOwnProperty.js": { - "offset": 726550, + "offset": 726770, "size": 1200, }, "OrdinaryGetPrototypeOf.js": { - "offset": 727740, + "offset": 727960, "size": 500, }, "OrdinaryHasInstance.js": { - "offset": 728240, + "offset": 728450, "size": 580, }, "OrdinaryHasProperty.js": { - "offset": 728810, + "offset": 729030, "size": 510, }, "OrdinarySetPrototypeOf.js": { - "offset": 729310, + "offset": 729530, "size": 1000, }, "OrdinaryToPrimitive.js": { - "offset": 730310, + "offset": 730520, "size": 1030, }, "PromiseResolve.js": { - "offset": 731330, + "offset": 731550, "size": 510, }, "QuoteJSONString.js": { - "offset": 731840, + "offset": 732050, "size": 1330, }, "RawBytesToNumber.js": { - "offset": 733160, + "offset": 733380, "size": 2010, }, "RegExpCreate.js": { - "offset": 735160, + "offset": 735380, "size": 650, }, "RegExpExec.js": { - "offset": 735800, + "offset": 736020, "size": 830, }, "RequireObjectCoercible.js": { - "offset": 736630, + "offset": 736850, "size": 90, }, "SameValue.js": { - "offset": 736720, + "offset": 736930, "size": 320, }, "SameValueNonNumber.js": { - "offset": 737030, + "offset": 737250, "size": 410, }, "SameValueZero.js": { - "offset": 737430, + "offset": 737650, "size": 230, }, "SecFromTime.js": { - "offset": 737650, + "offset": 737870, "size": 410, }, "Set.js": { - "offset": 738060, + "offset": 738270, "size": 1230, }, "SetFunctionLength.js": { - "offset": 739280, + "offset": 739500, "size": 990, }, "SetFunctionName.js": { - "offset": 740270, + "offset": 740480, "size": 1290, }, "SetIntegrityLevel.js": { - "offset": 741550, + "offset": 741770, "size": 1840, }, "SetValueInBuffer.js": { - "offset": 743390, + "offset": 743610, "size": 3700, }, "SpeciesConstructor.js": { - "offset": 747080, + "offset": 747300, "size": 850, }, "SplitMatch.js": { - "offset": 747930, + "offset": 748140, "size": 810, }, "StrictEqualityComparison.js": { - "offset": 748730, + "offset": 748950, "size": 320, }, "StringCreate.js": { - "offset": 749050, + "offset": 749270, "size": 1080, }, "StringGetOwnProperty.js": { - "offset": 750120, + "offset": 750340, "size": 1360, }, "SymbolDescriptiveString.js": { - "offset": 751480, + "offset": 751700, "size": 440, }, "TestIntegrityLevel.js": { - "offset": 751920, + "offset": 752130, "size": 1210, }, "ThrowCompletion.js": { - "offset": 753120, + "offset": 753340, "size": 240, }, "TimeClip.js": { - "offset": 753360, + "offset": 753580, "size": 440, }, "TimeFromYear.js": { - "offset": 753800, + "offset": 754020, "size": 270, }, "TimeString.js": { - "offset": 754060, + "offset": 754280, "size": 740, }, "TimeWithinDay.js": { - "offset": 754800, + "offset": 755020, "size": 250, }, "TimeZoneString.js": { - "offset": 755050, + "offset": 755260, "size": 1650, }, "ToBoolean.js": { - "offset": 756690, + "offset": 756910, "size": 130, }, "ToDateString.js": { - "offset": 756820, + "offset": 757040, "size": 520, }, "ToIndex.js": { - "offset": 757340, + "offset": 757560, "size": 620, }, "ToInt16.js": { - "offset": 757960, + "offset": 758180, "size": 260, }, "ToInt32.js": { - "offset": 758220, + "offset": 758430, "size": 180, }, "ToInt8.js": { - "offset": 758390, + "offset": 758610, "size": 250, }, "ToInteger.js": { - "offset": 758630, + "offset": 758850, "size": 270, }, "ToLength.js": { - "offset": 758900, + "offset": 759120, "size": 410, }, "ToNumber.js": { - "offset": 759300, + "offset": 759520, "size": 1510, }, "ToObject.js": { - "offset": 760810, + "offset": 761020, "size": 130, }, "ToPrimitive.js": { - "offset": 760930, + "offset": 761150, "size": 290, }, "ToPropertyDescriptor.js": { - "offset": 761210, + "offset": 761430, "size": 1460, }, "ToPropertyKey.js": { - "offset": 762670, + "offset": 762890, "size": 400, }, "ToString.js": { - "offset": 763070, + "offset": 763290, "size": 390, }, "ToUint16.js": { - "offset": 763460, + "offset": 763670, "size": 610, }, "ToUint32.js": { - "offset": 764060, + "offset": 764280, "size": 180, }, "ToUint8.js": { - "offset": 764240, + "offset": 764460, "size": 630, }, "ToUint8Clamp.js": { - "offset": 764870, + "offset": 765080, "size": 520, }, "TrimString.js": { - "offset": 765390, + "offset": 765600, "size": 760, }, "Type.js": { - "offset": 766140, + "offset": 766360, "size": 250, }, "TypedArrayCreate.js": { - "offset": 766390, + "offset": 766600, "size": 1690, }, "TypedArraySpeciesCreate.js": { - "offset": 768070, + "offset": 768290, "size": 1380, }, "UTF16Decode.js": { - "offset": 769440, + "offset": 769660, "size": 830, }, "UTF16Encoding.js": { - "offset": 770260, + "offset": 770480, "size": 700, }, "UnicodeEscape.js": { - "offset": 770960, + "offset": 771180, "size": 790, }, "ValidateAndApplyPropertyDescriptor.js": { - "offset": 771750, - "size": 5010, + "offset": 771970, + "size": 5020, }, "ValidateAtomicAccess.js": { - "offset": 776750, + "offset": 776980, "size": 900, }, "ValidateTypedArray.js": { - "offset": 777650, + "offset": 777880, "size": 800, }, "WeekDay.js": { - "offset": 778450, + "offset": 778670, "size": 210, }, "WordCharacters.js": { - "offset": 778650, + "offset": 778880, "size": 1470, }, "YearFromTime.js": { - "offset": 780120, + "offset": 780350, "size": 400, }, "abs.js": { - "offset": 780520, + "offset": 780750, "size": 170, }, "floor.js": { - "offset": 780680, + "offset": 780910, "size": 240, }, "max.js": { - "offset": 780920, + "offset": 781150, "size": 140, }, "min.js": { - "offset": 781060, + "offset": 781280, "size": 140, }, "modulo.js": { - "offset": 781190, + "offset": 781420, "size": 170, }, "msFromTime.js": { - "offset": 781360, + "offset": 781590, "size": 260, }, "tables": { "files": { "typed-array-objects.js": { - "offset": 781610, + "offset": 781840, "size": 630, }, }, }, "thisBooleanValue.js": { - "offset": 782240, + "offset": 782470, "size": 330, }, "thisNumberValue.js": { - "offset": 782560, + "offset": 782790, "size": 350, }, "thisStringValue.js": { - "offset": 782910, + "offset": 783140, "size": 320, }, "thisSymbolValue.js": { - "offset": 783230, + "offset": 783450, "size": 530, }, "thisTimeValue.js": { - "offset": 783750, + "offset": 783980, "size": 240, }, }, @@ -40829,927 +40845,927 @@ exports[`node_module collectors > yarn max stack 2`] = ` "2020": { "files": { "AbstractEqualityComparison.js": { - "offset": 783980, + "offset": 784210, "size": 1960, }, "AbstractRelationalComparison.js": { - "offset": 785940, + "offset": 786170, "size": 2100, }, "AddEntriesFromIterable.js": { - "offset": 788030, + "offset": 788260, "size": 1420, }, "AdvanceStringIndex.js": { - "offset": 789450, + "offset": 789670, "size": 940, }, "ArrayCreate.js": { - "offset": 790380, + "offset": 790610, "size": 1430, }, "ArraySetLength.js": { - "offset": 791810, + "offset": 792040, "size": 2430, }, "ArraySpeciesCreate.js": { - "offset": 794230, + "offset": 794460, "size": 1370, }, "AsyncFromSyncIteratorContinuation.js": { - "offset": 795600, + "offset": 795830, "size": 1530, }, "AsyncIteratorClose.js": { - "offset": 797120, + "offset": 797350, "size": 1810, }, "BigInt": { "files": { "add.js": { - "offset": 798930, + "offset": 799160, "size": 390, }, "bitwiseAND.js": { - "offset": 799310, + "offset": 799540, "size": 430, }, "bitwiseNOT.js": { - "offset": 799740, + "offset": 799960, "size": 420, }, "bitwiseOR.js": { - "offset": 800150, + "offset": 800380, "size": 430, }, "bitwiseXOR.js": { - "offset": 800580, + "offset": 800810, "size": 430, }, "divide.js": { - "offset": 801000, + "offset": 801230, "size": 600, }, "equal.js": { - "offset": 801600, + "offset": 801830, "size": 390, }, "exponentiate.js": { - "offset": 801990, + "offset": 802210, "size": 860, }, "index.js": { - "offset": 802840, + "offset": 803070, "size": 1280, }, "leftShift.js": { - "offset": 804110, + "offset": 804340, "size": 400, }, "lessThan.js": { - "offset": 804510, + "offset": 804740, "size": 400, }, "multiply.js": { - "offset": 804900, + "offset": 805130, "size": 400, }, "remainder.js": { - "offset": 805290, + "offset": 805520, "size": 680, }, "sameValue.js": { - "offset": 805960, + "offset": 806190, "size": 410, }, "sameValueZero.js": { - "offset": 806360, + "offset": 806590, "size": 410, }, "signedRightShift.js": { - "offset": 806770, + "offset": 807000, "size": 430, }, "subtract.js": { - "offset": 807200, + "offset": 807430, "size": 400, }, "toString.js": { - "offset": 807590, + "offset": 807820, "size": 400, }, "unaryMinus.js": { - "offset": 807990, + "offset": 808210, "size": 480, }, "unsignedRightShift.js": { - "offset": 808460, + "offset": 808690, "size": 440, }, }, }, "BigIntBitwiseOp.js": { - "offset": 808900, + "offset": 809120, "size": 1670, }, "BinaryAnd.js": { - "offset": 810560, + "offset": 810790, "size": 320, }, "BinaryOr.js": { - "offset": 810870, + "offset": 811100, "size": 320, }, "BinaryXor.js": { - "offset": 811190, + "offset": 811420, "size": 320, }, "Call.js": { - "offset": 811500, + "offset": 811730, "size": 610, }, "CanonicalNumericIndexString.js": { - "offset": 812110, + "offset": 812340, "size": 580, }, "Canonicalize.js": { - "offset": 812680, + "offset": 812910, "size": 1190, }, "CharacterRange.js": { - "offset": 813870, + "offset": 814090, "size": 1350, }, "CodePointAt.js": { - "offset": 815210, + "offset": 815440, "size": 1640, }, "CompletePropertyDescriptor.js": { - "offset": 816840, + "offset": 817070, "size": 1110, }, "CompletionRecord.js": { - "offset": 817950, + "offset": 818180, "size": 1360, }, "CopyDataProperties.js": { - "offset": 819310, + "offset": 819540, "size": 1840, }, "CreateAsyncFromSyncIterator.js": { - "offset": 821140, - "size": 4570, + "offset": 821370, + "size": 4590, }, "CreateDataProperty.js": { - "offset": 825710, + "offset": 825960, "size": 730, }, "CreateDataPropertyOrThrow.js": { - "offset": 826440, + "offset": 826680, "size": 700, }, "CreateHTML.js": { - "offset": 827140, + "offset": 827380, "size": 840, }, "CreateIterResultObject.js": { - "offset": 827970, + "offset": 828220, "size": 350, }, "CreateListFromArrayLike.js": { - "offset": 828320, + "offset": 828570, "size": 1500, }, "CreateMethodProperty.js": { - "offset": 829820, + "offset": 830060, "size": 950, }, "CreateRegExpStringIterator.js": { - "offset": 830760, - "size": 3410, + "offset": 831010, + "size": 3420, }, "DateFromTime.js": { - "offset": 834170, + "offset": 834420, "size": 990, }, "DateString.js": { - "offset": 835150, + "offset": 835410, "size": 990, }, "Day.js": { - "offset": 836140, + "offset": 836390, "size": 240, }, "DayFromYear.js": { - "offset": 836370, + "offset": 836630, "size": 260, }, "DayWithinYear.js": { - "offset": 836630, + "offset": 836880, "size": 290, }, "DaysInYear.js": { - "offset": 836910, + "offset": 837170, "size": 310, }, "DefinePropertyOrThrow.js": { - "offset": 837210, + "offset": 837470, "size": 1170, }, "DeletePropertyOrThrow.js": { - "offset": 838380, + "offset": 838640, "size": 670, }, "DetachArrayBuffer.js": { - "offset": 839050, + "offset": 839310, "size": 1720, }, "EnumerableOwnPropertyNames.js": { - "offset": 840760, + "offset": 841020, "size": 1010, }, "FlattenIntoArray.js": { - "offset": 841770, + "offset": 842020, "size": 1680, }, "FromPropertyDescriptor.js": { - "offset": 843450, + "offset": 843700, "size": 540, }, "Get.js": { - "offset": 843980, + "offset": 844240, "size": 570, }, "GetGlobalObject.js": { - "offset": 844550, + "offset": 844810, "size": 200, }, "GetIterator.js": { - "offset": 844750, - "size": 1720, + "offset": 845010, + "size": 1730, }, "GetMethod.js": { - "offset": 846460, + "offset": 846730, "size": 690, }, "GetOwnPropertyKeys.js": { - "offset": 847150, + "offset": 847410, "size": 840, }, "GetPrototypeFromConstructor.js": { - "offset": 847980, + "offset": 848240, "size": 1080, }, "GetSubstitution.js": { - "offset": 849050, + "offset": 849320, "size": 4020, }, "GetV.js": { - "offset": 853070, + "offset": 853340, "size": 500, }, "GetValueFromBuffer.js": { - "offset": 853560, + "offset": 853830, "size": 4530, }, "HasOwnProperty.js": { - "offset": 858090, + "offset": 858350, "size": 540, }, "HasProperty.js": { - "offset": 858620, + "offset": 858890, "size": 490, }, "HourFromTime.js": { - "offset": 859110, + "offset": 859370, "size": 390, }, "InLeapYear.js": { - "offset": 859490, + "offset": 859750, "size": 470, }, "InstanceofOperator.js": { - "offset": 859950, + "offset": 860220, "size": 930, }, "IntegerIndexedElementGet.js": { - "offset": 860880, + "offset": 861140, "size": 1590, }, "IntegerIndexedElementSet.js": { - "offset": 862460, + "offset": 862730, "size": 1890, }, "InternalizeJSONProperty.js": { - "offset": 864340, + "offset": 864610, "size": 2110, }, "Invoke.js": { - "offset": 866450, + "offset": 866710, "size": 680, }, "IsAccessorDescriptor.js": { - "offset": 867120, + "offset": 867390, "size": 560, }, "IsArray.js": { - "offset": 867680, + "offset": 867940, "size": 120, }, "IsBigIntElementType.js": { - "offset": 867800, + "offset": 868060, "size": 200, }, "IsCallable.js": { - "offset": 867990, + "offset": 868260, "size": 110, }, "IsCompatiblePropertyDescriptor.js": { - "offset": 868100, - "size": 370, + "offset": 868360, + "size": 390, }, "IsConcatSpreadable.js": { - "offset": 868460, + "offset": 868750, "size": 640, }, "IsConstructor.js": { - "offset": 869100, + "offset": 869390, "size": 1150, }, "IsDataDescriptor.js": { - "offset": 870240, + "offset": 870530, "size": 570, }, "IsDetachedBuffer.js": { - "offset": 870810, + "offset": 871090, "size": 1000, }, "IsExtensible.js": { - "offset": 871800, + "offset": 872090, "size": 510, }, "IsGenericDescriptor.js": { - "offset": 872310, + "offset": 872600, "size": 660, }, "IsInteger.js": { - "offset": 872960, + "offset": 873250, "size": 210, }, "IsNoTearConfiguration.js": { - "offset": 873170, + "offset": 873460, "size": 470, }, "IsNonNegativeInteger.js": { - "offset": 873640, + "offset": 873930, "size": 240, }, "IsPromise.js": { - "offset": 873870, + "offset": 874160, "size": 490, }, "IsPropertyKey.js": { - "offset": 874360, + "offset": 874650, "size": 230, }, "IsRegExp.js": { - "offset": 874580, + "offset": 874870, "size": 570, }, "IsSharedArrayBuffer.js": { - "offset": 875150, + "offset": 875440, "size": 430, }, "IsStringPrefix.js": { - "offset": 875580, + "offset": 875870, "size": 860, }, "IsUnclampedIntegerElementType.js": { - "offset": 876430, + "offset": 876720, "size": 300, }, "IsUnsignedElementType.js": { - "offset": 876730, + "offset": 877020, "size": 270, }, "IsValidIntegerIndex.js": { - "offset": 877000, + "offset": 877290, "size": 850, }, "IsWordChar.js": { - "offset": 877840, + "offset": 878130, "size": 1370, }, "IterableToList.js": { - "offset": 879210, + "offset": 879500, "size": 530, }, "IteratorClose.js": { - "offset": 879740, + "offset": 880030, "size": 1770, }, "IteratorComplete.js": { - "offset": 881500, + "offset": 881790, "size": 460, }, "IteratorNext.js": { - "offset": 881960, + "offset": 882250, "size": 460, }, "IteratorStep.js": { - "offset": 882420, + "offset": 882700, "size": 350, }, "IteratorValue.js": { - "offset": 882760, + "offset": 883050, "size": 410, }, "LengthOfArrayLike.js": { - "offset": 883170, + "offset": 883460, "size": 470, }, "MakeDate.js": { - "offset": 883630, + "offset": 883920, "size": 340, }, "MakeDay.js": { - "offset": 883960, + "offset": 884250, "size": 930, }, "MakeTime.js": { - "offset": 884880, + "offset": 885170, "size": 710, }, "MinFromTime.js": { - "offset": 885590, + "offset": 885880, "size": 400, }, "MonthFromTime.js": { - "offset": 885980, + "offset": 886270, "size": 1130, }, "NewPromiseCapability.js": { - "offset": 887110, + "offset": 887400, "size": 1230, }, "NormalCompletion.js": { - "offset": 888340, + "offset": 888630, "size": 240, }, "Number": { "files": { "add.js": { - "offset": 888580, + "offset": 888870, "size": 890, }, "bitwiseAND.js": { - "offset": 889460, + "offset": 889750, "size": 430, }, "bitwiseNOT.js": { - "offset": 889890, + "offset": 890180, "size": 500, }, "bitwiseOR.js": { - "offset": 890390, + "offset": 890680, "size": 430, }, "bitwiseXOR.js": { - "offset": 890810, + "offset": 891100, "size": 430, }, "divide.js": { - "offset": 891240, + "offset": 891530, "size": 570, }, "equal.js": { - "offset": 891800, + "offset": 892090, "size": 480, }, "exponentiate.js": { - "offset": 892280, + "offset": 892570, "size": 1740, }, "index.js": { - "offset": 894020, + "offset": 894310, "size": 1280, }, "leftShift.js": { - "offset": 895290, + "offset": 895580, "size": 530, }, "lessThan.js": { - "offset": 895820, + "offset": 896100, "size": 570, }, "multiply.js": { - "offset": 896380, - "size": 770, + "offset": 896670, + "size": 830, }, "remainder.js": { - "offset": 897150, - "size": 970, + "offset": 897490, + "size": 1020, }, "sameValue.js": { - "offset": 898110, + "offset": 898500, "size": 570, }, "sameValueZero.js": { - "offset": 898680, + "offset": 899070, "size": 500, }, "signedRightShift.js": { - "offset": 899180, + "offset": 899570, "size": 540, }, "subtract.js": { - "offset": 899710, + "offset": 900110, "size": 350, }, "toString.js": { - "offset": 900060, + "offset": 900450, "size": 400, }, "unaryMinus.js": { - "offset": 900450, + "offset": 900850, "size": 400, }, "unsignedRightShift.js": { - "offset": 900850, + "offset": 901240, "size": 550, }, }, }, "NumberBitwiseOp.js": { - "offset": 901390, + "offset": 901780, "size": 690, }, "NumberToBigInt.js": { - "offset": 902070, + "offset": 902460, "size": 800, }, "NumericToRawBytes.js": { - "offset": 902860, + "offset": 903250, "size": 2030, }, "ObjectDefineProperties.js": { - "offset": 904880, + "offset": 905280, "size": 1440, }, "OrdinaryCreateFromConstructor.js": { - "offset": 906320, + "offset": 906710, "size": 830, }, "OrdinaryDefineOwnProperty.js": { - "offset": 907140, + "offset": 907540, "size": 2180, }, "OrdinaryGetOwnProperty.js": { - "offset": 909320, + "offset": 909710, "size": 1200, }, "OrdinaryGetPrototypeOf.js": { - "offset": 910510, + "offset": 910910, "size": 500, }, "OrdinaryHasInstance.js": { - "offset": 911010, + "offset": 911400, "size": 580, }, "OrdinaryHasProperty.js": { - "offset": 911580, + "offset": 911970, "size": 510, }, "OrdinaryObjectCreate.js": { - "offset": 912080, + "offset": 912470, "size": 1630, }, "OrdinarySetPrototypeOf.js": { - "offset": 913710, + "offset": 914100, "size": 1000, }, "OrdinaryToPrimitive.js": { - "offset": 914700, + "offset": 915100, "size": 1030, }, "PromiseResolve.js": { - "offset": 915730, + "offset": 916120, "size": 510, }, "QuoteJSONString.js": { - "offset": 916230, + "offset": 916630, "size": 1400, }, "RawBytesToNumeric.js": { - "offset": 917630, + "offset": 918030, "size": 2370, }, "RegExpCreate.js": { - "offset": 920000, + "offset": 920390, "size": 650, }, "RegExpExec.js": { - "offset": 920640, + "offset": 921040, "size": 830, }, "RequireObjectCoercible.js": { - "offset": 921470, + "offset": 921870, "size": 90, }, "SameValue.js": { - "offset": 921560, + "offset": 921950, "size": 320, }, "SameValueNonNumeric.js": { - "offset": 921870, + "offset": 922260, "size": 580, }, "SameValueZero.js": { - "offset": 922440, + "offset": 922830, "size": 230, }, "SecFromTime.js": { - "offset": 922660, + "offset": 923060, "size": 410, }, "Set.js": { - "offset": 923070, + "offset": 923460, "size": 1230, }, "SetFunctionLength.js": { - "offset": 924290, + "offset": 924690, "size": 990, }, "SetFunctionName.js": { - "offset": 925280, + "offset": 925680, "size": 1290, }, "SetIntegrityLevel.js": { - "offset": 926570, + "offset": 926960, "size": 1840, }, "SetValueInBuffer.js": { - "offset": 928410, + "offset": 928800, "size": 3990, }, "SpeciesConstructor.js": { - "offset": 932390, + "offset": 932790, "size": 850, }, "SplitMatch.js": { - "offset": 933240, + "offset": 933630, "size": 810, }, "StrictEqualityComparison.js": { - "offset": 934040, + "offset": 934430, "size": 320, }, "StringCreate.js": { - "offset": 934360, + "offset": 934750, "size": 1080, }, "StringGetOwnProperty.js": { - "offset": 935430, + "offset": 935830, "size": 1360, }, "StringPad.js": { - "offset": 936790, + "offset": 937180, "size": 1210, }, "StringToBigInt.js": { - "offset": 938000, + "offset": 938390, "size": 580, }, "SymbolDescriptiveString.js": { - "offset": 938570, + "offset": 938970, "size": 440, }, "TestIntegrityLevel.js": { - "offset": 939010, + "offset": 939400, "size": 1210, }, "ThrowCompletion.js": { - "offset": 940220, + "offset": 940610, "size": 240, }, "TimeClip.js": { - "offset": 940460, + "offset": 940850, "size": 440, }, "TimeFromYear.js": { - "offset": 940890, + "offset": 941290, "size": 270, }, "TimeString.js": { - "offset": 941160, + "offset": 941550, "size": 740, }, "TimeWithinDay.js": { - "offset": 941890, + "offset": 942280, "size": 250, }, "TimeZoneString.js": { - "offset": 942140, + "offset": 942530, "size": 1650, }, "ToBigInt.js": { - "offset": 943780, + "offset": 944180, "size": 1310, }, "ToBigInt64.js": { - "offset": 945090, + "offset": 945480, "size": 960, }, "ToBigUint64.js": { - "offset": 946040, + "offset": 946430, "size": 710, }, "ToBoolean.js": { - "offset": 946750, + "offset": 947140, "size": 130, }, "ToDateString.js": { - "offset": 946880, + "offset": 947270, "size": 520, }, "ToIndex.js": { - "offset": 947400, + "offset": 947790, "size": 610, }, "ToInt16.js": { - "offset": 948010, + "offset": 948400, "size": 260, }, "ToInt32.js": { - "offset": 948260, + "offset": 948650, "size": 180, }, "ToInt8.js": { - "offset": 948430, + "offset": 948830, "size": 250, }, "ToInteger.js": { - "offset": 948680, + "offset": 949070, "size": 340, }, "ToLength.js": { - "offset": 949010, + "offset": 949400, "size": 410, }, "ToNumber.js": { - "offset": 949410, + "offset": 949800, "size": 1630, }, "ToNumeric.js": { - "offset": 951040, + "offset": 951430, "size": 530, }, "ToObject.js": { - "offset": 951560, + "offset": 951950, "size": 130, }, "ToPrimitive.js": { - "offset": 951680, + "offset": 952080, "size": 290, }, "ToPropertyDescriptor.js": { - "offset": 951970, + "offset": 952360, "size": 1460, }, "ToPropertyKey.js": { - "offset": 953420, + "offset": 953810, "size": 400, }, "ToString.js": { - "offset": 953820, + "offset": 954210, "size": 390, }, "ToUint16.js": { - "offset": 954210, + "offset": 954600, "size": 610, }, "ToUint32.js": { - "offset": 954820, + "offset": 955210, "size": 180, }, "ToUint8.js": { - "offset": 954990, + "offset": 955380, "size": 630, }, "ToUint8Clamp.js": { - "offset": 955620, + "offset": 956010, "size": 520, }, "TrimString.js": { - "offset": 956140, + "offset": 956530, "size": 760, }, "Type.js": { - "offset": 956890, + "offset": 957290, "size": 300, }, "TypedArrayCreate.js": { - "offset": 957190, + "offset": 957580, "size": 1690, }, "TypedArraySpeciesCreate.js": { - "offset": 958880, + "offset": 959270, "size": 1380, }, "UTF16DecodeString.js": { - "offset": 960250, + "offset": 960640, "size": 600, }, "UTF16DecodeSurrogatePair.js": { - "offset": 960840, + "offset": 961230, "size": 780, }, "UTF16Encoding.js": { - "offset": 961610, + "offset": 962010, "size": 700, }, "UnicodeEscape.js": { - "offset": 962310, + "offset": 962700, "size": 790, }, "ValidateAndApplyPropertyDescriptor.js": { - "offset": 963090, - "size": 5010, + "offset": 963490, + "size": 5020, }, "ValidateAtomicAccess.js": { - "offset": 968090, + "offset": 968500, "size": 900, }, "ValidateTypedArray.js": { - "offset": 968990, + "offset": 969400, "size": 800, }, "WeekDay.js": { - "offset": 969790, + "offset": 970190, "size": 210, }, "WordCharacters.js": { - "offset": 970000, + "offset": 970400, "size": 1470, }, "YearFromTime.js": { - "offset": 971460, + "offset": 971870, "size": 400, }, "abs.js": { - "offset": 971860, + "offset": 972260, "size": 220, }, "floor.js": { - "offset": 972080, + "offset": 972480, "size": 290, }, "max.js": { - "offset": 972370, + "offset": 972760, "size": 140, }, "min.js": { - "offset": 972500, + "offset": 972900, "size": 140, }, "modulo.js": { - "offset": 972630, + "offset": 973030, "size": 170, }, "msFromTime.js": { - "offset": 972800, + "offset": 973200, "size": 260, }, "tables": { "files": { "typed-array-objects.js": { - "offset": 973050, + "offset": 973450, "size": 780, }, }, }, "thisBigIntValue.js": { - "offset": 973830, + "offset": 974230, "size": 460, }, "thisBooleanValue.js": { - "offset": 974280, + "offset": 974680, "size": 330, }, "thisNumberValue.js": { - "offset": 974600, + "offset": 975000, "size": 350, }, "thisStringValue.js": { - "offset": 974950, + "offset": 975350, "size": 320, }, "thisSymbolValue.js": { - "offset": 975270, + "offset": 975660, "size": 530, }, "thisTimeValue.js": { - "offset": 975790, + "offset": 976190, "size": 240, }, }, @@ -41757,983 +41773,983 @@ exports[`node_module collectors > yarn max stack 2`] = ` "2021": { "files": { "AbstractEqualityComparison.js": { - "offset": 976020, + "offset": 976420, "size": 1960, }, "AbstractRelationalComparison.js": { - "offset": 977980, + "offset": 978380, "size": 2100, }, "AddEntriesFromIterable.js": { - "offset": 980070, + "offset": 980470, "size": 1420, }, "AddToKeptObjects.js": { - "offset": 981490, + "offset": 981880, "size": 540, }, "AdvanceStringIndex.js": { - "offset": 982020, + "offset": 982420, "size": 940, }, "ApplyStringOrNumericBinaryOperator.js": { - "offset": 982960, + "offset": 983350, "size": 3130, }, "ArrayCreate.js": { - "offset": 986090, + "offset": 986480, "size": 1430, }, "ArraySetLength.js": { - "offset": 987510, + "offset": 987900, "size": 2430, }, "ArraySpeciesCreate.js": { - "offset": 989930, + "offset": 990330, "size": 1370, }, "AsyncFromSyncIteratorContinuation.js": { - "offset": 991300, + "offset": 991700, "size": 1530, }, "AsyncIteratorClose.js": { - "offset": 992820, + "offset": 993220, "size": 1940, }, "BigInt": { "files": { "add.js": { - "offset": 994760, + "offset": 995150, "size": 390, }, "bitwiseAND.js": { - "offset": 995140, + "offset": 995540, "size": 430, }, "bitwiseNOT.js": { - "offset": 995560, + "offset": 995960, "size": 420, }, "bitwiseOR.js": { - "offset": 995980, + "offset": 996380, "size": 430, }, "bitwiseXOR.js": { - "offset": 996410, + "offset": 996800, "size": 430, }, "divide.js": { - "offset": 996830, + "offset": 997230, "size": 600, }, "equal.js": { - "offset": 997430, + "offset": 997830, "size": 390, }, "exponentiate.js": { - "offset": 997810, + "offset": 998210, "size": 860, }, "index.js": { - "offset": 998670, + "offset": 999060, "size": 1280, }, "leftShift.js": { - "offset": 999940, + "offset": 1000340, "size": 400, }, "lessThan.js": { - "offset": 1000340, + "offset": 1000730, "size": 400, }, "multiply.js": { - "offset": 1000730, + "offset": 1001120, "size": 400, }, "remainder.js": { - "offset": 1001120, + "offset": 1001510, "size": 680, }, "sameValue.js": { - "offset": 1001790, + "offset": 1002190, "size": 410, }, "sameValueZero.js": { - "offset": 1002190, + "offset": 1002590, "size": 410, }, "signedRightShift.js": { - "offset": 1002600, + "offset": 1003000, "size": 430, }, "subtract.js": { - "offset": 1003030, + "offset": 1003420, "size": 400, }, "toString.js": { - "offset": 1003420, + "offset": 1003820, "size": 400, }, "unaryMinus.js": { - "offset": 1003810, + "offset": 1004210, "size": 480, }, "unsignedRightShift.js": { - "offset": 1004290, + "offset": 1004690, "size": 440, }, }, }, "BigIntBitwiseOp.js": { - "offset": 1004720, + "offset": 1005120, "size": 1670, }, "BinaryAnd.js": { - "offset": 1006390, + "offset": 1006780, "size": 320, }, "BinaryOr.js": { - "offset": 1006700, + "offset": 1007100, "size": 320, }, "BinaryXor.js": { - "offset": 1007020, + "offset": 1007410, "size": 320, }, "ByteListBitwiseOp.js": { - "offset": 1007330, + "offset": 1007730, "size": 1190, }, "ByteListEqual.js": { - "offset": 1008510, + "offset": 1008910, "size": 860, }, "Call.js": { - "offset": 1009370, + "offset": 1009770, "size": 610, }, "CanonicalNumericIndexString.js": { - "offset": 1009980, + "offset": 1010380, "size": 580, }, "Canonicalize.js": { - "offset": 1010550, + "offset": 1010950, "size": 1190, }, "CharacterRange.js": { - "offset": 1011740, + "offset": 1012130, "size": 1350, }, "ClearKeptObjects.js": { - "offset": 1013080, + "offset": 1013480, "size": 300, }, "CloneArrayBuffer.js": { - "offset": 1013380, + "offset": 1013770, "size": 1900, }, "CodePointAt.js": { - "offset": 1015270, + "offset": 1015670, "size": 1650, }, "CodePointsToString.js": { - "offset": 1016920, + "offset": 1017320, "size": 740, }, "CompletePropertyDescriptor.js": { - "offset": 1017660, + "offset": 1018050, "size": 1110, }, "CompletionRecord.js": { - "offset": 1018770, + "offset": 1019160, "size": 1360, }, "CopyDataProperties.js": { - "offset": 1020120, + "offset": 1020520, "size": 1990, }, "CreateAsyncFromSyncIterator.js": { - "offset": 1022110, - "size": 4570, + "offset": 1022510, + "size": 4590, }, "CreateDataProperty.js": { - "offset": 1026680, + "offset": 1027100, "size": 730, }, "CreateDataPropertyOrThrow.js": { - "offset": 1027400, + "offset": 1027820, "size": 700, }, "CreateHTML.js": { - "offset": 1028100, + "offset": 1028520, "size": 840, }, "CreateIterResultObject.js": { - "offset": 1028940, + "offset": 1029360, "size": 350, }, "CreateListFromArrayLike.js": { - "offset": 1029290, + "offset": 1029710, "size": 1370, }, "CreateMethodProperty.js": { - "offset": 1030660, + "offset": 1031070, "size": 950, }, "CreateRegExpStringIterator.js": { - "offset": 1031600, - "size": 3410, + "offset": 1032020, + "size": 3420, }, "DateFromTime.js": { - "offset": 1035010, + "offset": 1035430, "size": 990, }, "DateString.js": { - "offset": 1035990, + "offset": 1036420, "size": 990, }, "Day.js": { - "offset": 1036980, + "offset": 1037400, "size": 240, }, "DayFromYear.js": { - "offset": 1037210, + "offset": 1037640, "size": 260, }, "DayWithinYear.js": { - "offset": 1037470, + "offset": 1037890, "size": 290, }, "DaysInYear.js": { - "offset": 1037750, + "offset": 1038180, "size": 310, }, "DefinePropertyOrThrow.js": { - "offset": 1038050, + "offset": 1038480, "size": 1170, }, "DeletePropertyOrThrow.js": { - "offset": 1039220, + "offset": 1039650, "size": 670, }, "DetachArrayBuffer.js": { - "offset": 1039890, + "offset": 1040320, "size": 1720, }, "EnumerableOwnPropertyNames.js": { - "offset": 1041600, + "offset": 1042030, "size": 1010, }, "FlattenIntoArray.js": { - "offset": 1042610, + "offset": 1043030, "size": 1680, }, "FromPropertyDescriptor.js": { - "offset": 1044290, + "offset": 1044710, "size": 540, }, "Get.js": { - "offset": 1044820, + "offset": 1045250, "size": 570, }, "GetGlobalObject.js": { - "offset": 1045390, + "offset": 1045820, "size": 200, }, "GetIterator.js": { - "offset": 1045590, - "size": 1720, + "offset": 1046020, + "size": 1730, }, "GetMethod.js": { - "offset": 1047300, + "offset": 1047740, "size": 690, }, "GetOwnPropertyKeys.js": { - "offset": 1047990, + "offset": 1048420, "size": 840, }, "GetPromiseResolve.js": { - "offset": 1048820, + "offset": 1049250, "size": 640, }, "GetPrototypeFromConstructor.js": { - "offset": 1049460, + "offset": 1049890, "size": 1080, }, "GetSubstitution.js": { - "offset": 1050530, + "offset": 1050970, "size": 4040, }, "GetV.js": { - "offset": 1054570, + "offset": 1055010, "size": 500, }, "GetValueFromBuffer.js": { - "offset": 1055060, + "offset": 1055500, "size": 4530, }, "HasOwnProperty.js": { - "offset": 1059590, + "offset": 1060030, "size": 540, }, "HasProperty.js": { - "offset": 1060120, + "offset": 1060560, "size": 490, }, "HourFromTime.js": { - "offset": 1060610, + "offset": 1061050, "size": 390, }, "InLeapYear.js": { - "offset": 1060990, + "offset": 1061430, "size": 470, }, "InstanceofOperator.js": { - "offset": 1061450, + "offset": 1061890, "size": 930, }, "IntegerIndexedElementGet.js": { - "offset": 1062380, + "offset": 1062820, "size": 1250, }, "IntegerIndexedElementSet.js": { - "offset": 1063630, + "offset": 1064060, "size": 1570, }, "InternalizeJSONProperty.js": { - "offset": 1065190, + "offset": 1065630, "size": 2110, }, "Invoke.js": { - "offset": 1067300, + "offset": 1067730, "size": 680, }, "IsAccessorDescriptor.js": { - "offset": 1067970, + "offset": 1068400, "size": 560, }, "IsArray.js": { - "offset": 1068530, + "offset": 1068960, "size": 120, }, "IsBigIntElementType.js": { - "offset": 1068640, + "offset": 1069080, "size": 200, }, "IsCallable.js": { - "offset": 1068840, + "offset": 1069270, "size": 110, }, "IsCompatiblePropertyDescriptor.js": { - "offset": 1068950, - "size": 370, + "offset": 1069380, + "size": 390, }, "IsConcatSpreadable.js": { - "offset": 1069310, + "offset": 1069770, "size": 640, }, "IsConstructor.js": { - "offset": 1069950, + "offset": 1070410, "size": 1150, }, "IsDataDescriptor.js": { - "offset": 1071090, + "offset": 1071550, "size": 570, }, "IsDetachedBuffer.js": { - "offset": 1071650, + "offset": 1072110, "size": 1000, }, "IsExtensible.js": { - "offset": 1072650, + "offset": 1073110, "size": 510, }, "IsGenericDescriptor.js": { - "offset": 1073160, + "offset": 1073610, "size": 660, }, "IsIntegralNumber.js": { - "offset": 1073810, + "offset": 1074270, "size": 220, }, "IsNoTearConfiguration.js": { - "offset": 1074030, + "offset": 1074490, "size": 470, }, "IsPromise.js": { - "offset": 1074490, + "offset": 1074950, "size": 490, }, "IsPropertyKey.js": { - "offset": 1074980, + "offset": 1075440, "size": 230, }, "IsRegExp.js": { - "offset": 1075200, + "offset": 1075660, "size": 570, }, "IsSharedArrayBuffer.js": { - "offset": 1075770, + "offset": 1076230, "size": 430, }, "IsStringPrefix.js": { - "offset": 1076200, + "offset": 1076660, "size": 860, }, "IsUnclampedIntegerElementType.js": { - "offset": 1077050, + "offset": 1077510, "size": 300, }, "IsUnsignedElementType.js": { - "offset": 1077350, + "offset": 1077810, "size": 270, }, "IsValidIntegerIndex.js": { - "offset": 1077620, + "offset": 1078080, "size": 890, }, "IsWordChar.js": { - "offset": 1078500, + "offset": 1078960, "size": 1390, }, "IterableToList.js": { - "offset": 1079880, + "offset": 1080340, "size": 630, }, "IteratorClose.js": { - "offset": 1080510, + "offset": 1080970, "size": 1770, }, "IteratorComplete.js": { - "offset": 1082270, + "offset": 1082730, "size": 460, }, "IteratorNext.js": { - "offset": 1082730, + "offset": 1083190, "size": 460, }, "IteratorStep.js": { - "offset": 1083180, + "offset": 1083640, "size": 350, }, "IteratorValue.js": { - "offset": 1083530, + "offset": 1083990, "size": 410, }, "LengthOfArrayLike.js": { - "offset": 1083940, + "offset": 1084390, "size": 470, }, "MakeDate.js": { - "offset": 1084400, + "offset": 1084860, "size": 340, }, "MakeDay.js": { - "offset": 1084730, + "offset": 1085190, "size": 1020, }, "MakeTime.js": { - "offset": 1085740, + "offset": 1086200, "size": 770, }, "MinFromTime.js": { - "offset": 1086510, + "offset": 1086960, "size": 400, }, "MonthFromTime.js": { - "offset": 1086900, + "offset": 1087360, "size": 1130, }, "NewPromiseCapability.js": { - "offset": 1088030, + "offset": 1088490, "size": 1230, }, "NormalCompletion.js": { - "offset": 1089260, + "offset": 1089720, "size": 240, }, "Number": { "files": { "add.js": { - "offset": 1089500, + "offset": 1089950, "size": 800, }, "bitwiseAND.js": { - "offset": 1090300, + "offset": 1090750, "size": 430, }, "bitwiseNOT.js": { - "offset": 1090720, + "offset": 1091180, "size": 500, }, "bitwiseOR.js": { - "offset": 1091220, + "offset": 1091680, "size": 430, }, "bitwiseXOR.js": { - "offset": 1091650, + "offset": 1092100, "size": 430, }, "divide.js": { - "offset": 1092070, + "offset": 1092530, "size": 570, }, "equal.js": { - "offset": 1092640, + "offset": 1093090, "size": 480, }, "exponentiate.js": { - "offset": 1093110, + "offset": 1093570, "size": 1740, }, "index.js": { - "offset": 1094850, + "offset": 1095310, "size": 1280, }, "leftShift.js": { - "offset": 1096130, + "offset": 1096590, "size": 570, }, "lessThan.js": { - "offset": 1096690, + "offset": 1097150, "size": 570, }, "multiply.js": { - "offset": 1097250, - "size": 770, + "offset": 1097710, + "size": 830, }, "remainder.js": { - "offset": 1098020, - "size": 950, + "offset": 1098540, + "size": 1010, }, "sameValue.js": { - "offset": 1098970, + "offset": 1099540, "size": 570, }, "sameValueZero.js": { - "offset": 1099540, + "offset": 1100110, "size": 500, }, "signedRightShift.js": { - "offset": 1100040, + "offset": 1100600, "size": 580, }, "subtract.js": { - "offset": 1100620, + "offset": 1101180, "size": 460, }, "toString.js": { - "offset": 1101070, + "offset": 1101640, "size": 400, }, "unaryMinus.js": { - "offset": 1101470, + "offset": 1102030, "size": 400, }, "unsignedRightShift.js": { - "offset": 1101860, + "offset": 1102420, "size": 590, }, }, }, "NumberBitwiseOp.js": { - "offset": 1102440, + "offset": 1103000, "size": 690, }, "NumberToBigInt.js": { - "offset": 1103120, + "offset": 1103680, "size": 800, }, "NumericToRawBytes.js": { - "offset": 1103910, + "offset": 1104480, "size": 2030, }, "ObjectDefineProperties.js": { - "offset": 1105940, + "offset": 1106500, "size": 1440, }, "OrdinaryCreateFromConstructor.js": { - "offset": 1107370, + "offset": 1107940, "size": 830, }, "OrdinaryDefineOwnProperty.js": { - "offset": 1108200, + "offset": 1108760, "size": 2180, }, "OrdinaryGetOwnProperty.js": { - "offset": 1110370, + "offset": 1110940, "size": 1200, }, "OrdinaryGetPrototypeOf.js": { - "offset": 1111570, + "offset": 1112130, "size": 500, }, "OrdinaryHasInstance.js": { - "offset": 1112060, + "offset": 1112630, "size": 580, }, "OrdinaryHasProperty.js": { - "offset": 1112630, + "offset": 1113200, "size": 510, }, "OrdinaryObjectCreate.js": { - "offset": 1113140, + "offset": 1113700, "size": 1630, }, "OrdinarySetPrototypeOf.js": { - "offset": 1114760, + "offset": 1115330, "size": 1000, }, "OrdinaryToPrimitive.js": { - "offset": 1115760, + "offset": 1116320, "size": 1030, }, "PromiseResolve.js": { - "offset": 1116780, + "offset": 1117350, "size": 510, }, "QuoteJSONString.js": { - "offset": 1117290, + "offset": 1117850, "size": 1430, }, "RawBytesToNumeric.js": { - "offset": 1118710, + "offset": 1119270, "size": 2370, }, "RegExpCreate.js": { - "offset": 1121080, + "offset": 1121640, "size": 650, }, "RegExpExec.js": { - "offset": 1121720, + "offset": 1122290, "size": 830, }, "RequireObjectCoercible.js": { - "offset": 1122550, + "offset": 1123120, "size": 90, }, "SameValue.js": { - "offset": 1122640, + "offset": 1123200, "size": 320, }, "SameValueNonNumeric.js": { - "offset": 1122950, + "offset": 1123510, "size": 580, }, "SameValueZero.js": { - "offset": 1123520, + "offset": 1124080, "size": 230, }, "SecFromTime.js": { - "offset": 1123740, + "offset": 1124310, "size": 410, }, "Set.js": { - "offset": 1124150, + "offset": 1124710, "size": 1230, }, "SetFunctionLength.js": { - "offset": 1125370, + "offset": 1125930, "size": 1020, }, "SetFunctionName.js": { - "offset": 1126390, + "offset": 1126950, "size": 1290, }, "SetIntegrityLevel.js": { - "offset": 1127680, + "offset": 1128240, "size": 1840, }, "SetTypedArrayFromArrayLike.js": { - "offset": 1129510, + "offset": 1130080, "size": 3100, }, "SetTypedArrayFromTypedArray.js": { - "offset": 1132600, + "offset": 1133170, "size": 5150, }, "SetValueInBuffer.js": { - "offset": 1137750, + "offset": 1138320, "size": 4160, }, "SpeciesConstructor.js": { - "offset": 1141910, + "offset": 1142470, "size": 850, }, "SplitMatch.js": { - "offset": 1142750, + "offset": 1143310, "size": 820, }, "StrictEqualityComparison.js": { - "offset": 1143570, + "offset": 1144130, "size": 320, }, "StringCreate.js": { - "offset": 1143890, + "offset": 1144450, "size": 1080, }, "StringGetOwnProperty.js": { - "offset": 1144960, + "offset": 1145530, "size": 1380, }, "StringIndexOf.js": { - "offset": 1146340, + "offset": 1146900, "size": 1030, }, "StringPad.js": { - "offset": 1147360, + "offset": 1147920, "size": 1210, }, "StringToBigInt.js": { - "offset": 1148570, + "offset": 1149130, "size": 580, }, "StringToCodePoints.js": { - "offset": 1149140, + "offset": 1149710, "size": 600, }, "SymbolDescriptiveString.js": { - "offset": 1149740, + "offset": 1150300, "size": 440, }, "TestIntegrityLevel.js": { - "offset": 1150170, + "offset": 1150730, "size": 1210, }, "ThrowCompletion.js": { - "offset": 1151380, + "offset": 1151940, "size": 240, }, "TimeClip.js": { - "offset": 1151620, + "offset": 1152180, "size": 440, }, "TimeFromYear.js": { - "offset": 1152060, + "offset": 1152620, "size": 270, }, "TimeString.js": { - "offset": 1152320, + "offset": 1152880, "size": 740, }, "TimeWithinDay.js": { - "offset": 1153050, + "offset": 1153620, "size": 250, }, "TimeZoneString.js": { - "offset": 1153300, + "offset": 1153860, "size": 1800, }, "ToBigInt.js": { - "offset": 1155090, + "offset": 1155660, "size": 1310, }, "ToBigInt64.js": { - "offset": 1156400, + "offset": 1156960, "size": 960, }, "ToBigUint64.js": { - "offset": 1157350, + "offset": 1157910, "size": 710, }, "ToBoolean.js": { - "offset": 1158060, + "offset": 1158620, "size": 130, }, "ToDateString.js": { - "offset": 1158190, + "offset": 1158750, "size": 520, }, "ToIndex.js": { - "offset": 1158710, + "offset": 1159270, "size": 640, }, "ToInt16.js": { - "offset": 1159350, + "offset": 1159910, "size": 260, }, "ToInt32.js": { - "offset": 1159600, + "offset": 1160160, "size": 180, }, "ToInt8.js": { - "offset": 1159770, + "offset": 1160340, "size": 250, }, "ToIntegerOrInfinity.js": { - "offset": 1160020, + "offset": 1160580, "size": 620, }, "ToLength.js": { - "offset": 1160630, + "offset": 1161190, "size": 440, }, "ToNumber.js": { - "offset": 1161070, + "offset": 1161630, "size": 1630, }, "ToNumeric.js": { - "offset": 1162690, + "offset": 1163250, "size": 530, }, "ToObject.js": { - "offset": 1163210, + "offset": 1163780, "size": 130, }, "ToPrimitive.js": { - "offset": 1163340, + "offset": 1163900, "size": 290, }, "ToPropertyDescriptor.js": { - "offset": 1163620, + "offset": 1164180, "size": 1460, }, "ToPropertyKey.js": { - "offset": 1165070, + "offset": 1165640, "size": 400, }, "ToString.js": { - "offset": 1165470, + "offset": 1166040, "size": 390, }, "ToUint16.js": { - "offset": 1165860, + "offset": 1166430, "size": 610, }, "ToUint32.js": { - "offset": 1166470, + "offset": 1167030, "size": 180, }, "ToUint8.js": { - "offset": 1166650, + "offset": 1167210, "size": 630, }, "ToUint8Clamp.js": { - "offset": 1167270, + "offset": 1167830, "size": 520, }, "TrimString.js": { - "offset": 1167790, + "offset": 1168350, "size": 760, }, "Type.js": { - "offset": 1168550, + "offset": 1169110, "size": 300, }, "TypedArrayCreate.js": { - "offset": 1168840, + "offset": 1169410, "size": 1690, }, "TypedArraySpeciesCreate.js": { - "offset": 1170530, + "offset": 1171090, "size": 1380, }, "UTF16EncodeCodePoint.js": { - "offset": 1171900, + "offset": 1172460, "size": 710, }, "UTF16SurrogatePairToCodePoint.js": { - "offset": 1172610, + "offset": 1173170, "size": 780, }, "UnicodeEscape.js": { - "offset": 1173390, + "offset": 1173950, "size": 790, }, "ValidateAndApplyPropertyDescriptor.js": { - "offset": 1174170, - "size": 5010, + "offset": 1174730, + "size": 5020, }, "ValidateAtomicAccess.js": { - "offset": 1179170, + "offset": 1179740, "size": 1330, }, "ValidateIntegerTypedArray.js": { - "offset": 1180500, + "offset": 1181070, "size": 1320, }, "ValidateTypedArray.js": { - "offset": 1181810, + "offset": 1182380, "size": 800, }, "WeakRefDeref.js": { - "offset": 1182600, + "offset": 1183180, "size": 570, }, "WeekDay.js": { - "offset": 1183170, + "offset": 1183740, "size": 210, }, "WordCharacters.js": { - "offset": 1183370, + "offset": 1183950, "size": 1470, }, "YearFromTime.js": { - "offset": 1184840, + "offset": 1185410, "size": 400, }, "abs.js": { - "offset": 1185240, + "offset": 1185810, "size": 220, }, "clamp.js": { - "offset": 1185460, + "offset": 1186020, "size": 510, }, "floor.js": { - "offset": 1185960, + "offset": 1186530, "size": 290, }, "max.js": { - "offset": 1186250, + "offset": 1186820, "size": 140, }, "min.js": { - "offset": 1186390, + "offset": 1186950, "size": 140, }, "modulo.js": { - "offset": 1186520, + "offset": 1187090, "size": 170, }, "msFromTime.js": { - "offset": 1186690, + "offset": 1187250, "size": 260, }, "substring.js": { - "offset": 1186940, + "offset": 1187510, "size": 640, }, "tables": { "files": { "typed-array-objects.js": { - "offset": 1187580, + "offset": 1188150, "size": 780, }, }, }, "thisBigIntValue.js": { - "offset": 1188350, + "offset": 1188920, "size": 460, }, "thisBooleanValue.js": { - "offset": 1188810, + "offset": 1189370, "size": 330, }, "thisNumberValue.js": { - "offset": 1189130, + "offset": 1189700, "size": 350, }, "thisStringValue.js": { - "offset": 1189470, + "offset": 1190040, "size": 320, }, "thisSymbolValue.js": { - "offset": 1189790, + "offset": 1190360, "size": 530, }, "thisTimeValue.js": { - "offset": 1190320, + "offset": 1190880, "size": 240, }, }, @@ -42741,1035 +42757,1035 @@ exports[`node_module collectors > yarn max stack 2`] = ` "2022": { "files": { "AddEntriesFromIterable.js": { - "offset": 1190550, + "offset": 1191120, "size": 1420, }, "AddToKeptObjects.js": { - "offset": 1191960, + "offset": 1192530, "size": 540, }, "AdvanceStringIndex.js": { - "offset": 1192500, + "offset": 1193060, "size": 940, }, "ApplyStringOrNumericBinaryOperator.js": { - "offset": 1193430, + "offset": 1194000, "size": 3130, }, "ArrayCreate.js": { - "offset": 1196560, + "offset": 1197130, "size": 1430, }, "ArraySetLength.js": { - "offset": 1197980, + "offset": 1198550, "size": 2430, }, "ArraySpeciesCreate.js": { - "offset": 1200410, + "offset": 1200970, "size": 1370, }, "AsyncFromSyncIteratorContinuation.js": { - "offset": 1201780, + "offset": 1202340, "size": 1530, }, "AsyncIteratorClose.js": { - "offset": 1203300, + "offset": 1203860, "size": 1940, }, "BigInt": { "files": { "add.js": { - "offset": 1205230, + "offset": 1205800, "size": 390, }, "bitwiseAND.js": { - "offset": 1205620, + "offset": 1206180, "size": 430, }, "bitwiseNOT.js": { - "offset": 1206040, + "offset": 1206610, "size": 420, }, "bitwiseOR.js": { - "offset": 1206460, + "offset": 1207030, "size": 430, }, "bitwiseXOR.js": { - "offset": 1206880, + "offset": 1207450, "size": 430, }, "divide.js": { - "offset": 1207310, + "offset": 1207880, "size": 600, }, "equal.js": { - "offset": 1207910, + "offset": 1208470, "size": 390, }, "exponentiate.js": { - "offset": 1208290, + "offset": 1208860, "size": 860, }, "index.js": { - "offset": 1209140, + "offset": 1209710, "size": 1280, }, "leftShift.js": { - "offset": 1210420, + "offset": 1210990, "size": 400, }, "lessThan.js": { - "offset": 1210810, + "offset": 1211380, "size": 400, }, "multiply.js": { - "offset": 1211200, + "offset": 1211770, "size": 400, }, "remainder.js": { - "offset": 1211590, + "offset": 1212160, "size": 680, }, "sameValue.js": { - "offset": 1212270, + "offset": 1212830, "size": 410, }, "sameValueZero.js": { - "offset": 1212670, + "offset": 1213230, "size": 410, }, "signedRightShift.js": { - "offset": 1213080, + "offset": 1213640, "size": 430, }, "subtract.js": { - "offset": 1213500, + "offset": 1214070, "size": 400, }, "toString.js": { - "offset": 1213900, + "offset": 1214460, "size": 400, }, "unaryMinus.js": { - "offset": 1214290, + "offset": 1214860, "size": 480, }, "unsignedRightShift.js": { - "offset": 1214770, + "offset": 1215330, "size": 440, }, }, }, "BigIntBitwiseOp.js": { - "offset": 1215200, + "offset": 1215770, "size": 1670, }, "BinaryAnd.js": { - "offset": 1216860, + "offset": 1217430, "size": 320, }, "BinaryOr.js": { - "offset": 1217180, + "offset": 1217750, "size": 320, }, "BinaryXor.js": { - "offset": 1217490, + "offset": 1218060, "size": 320, }, "ByteListBitwiseOp.js": { - "offset": 1217810, + "offset": 1218380, "size": 1190, }, "ByteListEqual.js": { - "offset": 1218990, + "offset": 1219560, "size": 860, }, "Call.js": { - "offset": 1219850, + "offset": 1220420, "size": 610, }, "CanonicalNumericIndexString.js": { - "offset": 1220460, + "offset": 1221020, "size": 580, }, "Canonicalize.js": { - "offset": 1221030, + "offset": 1221600, "size": 1190, }, "CharacterRange.js": { - "offset": 1222210, + "offset": 1222780, "size": 1350, }, "ClearKeptObjects.js": { - "offset": 1223560, + "offset": 1224120, "size": 300, }, "CloneArrayBuffer.js": { - "offset": 1223850, + "offset": 1224420, "size": 1900, }, "CodePointAt.js": { - "offset": 1225750, + "offset": 1226320, "size": 1650, }, "CodePointsToString.js": { - "offset": 1227400, + "offset": 1227970, "size": 740, }, "CompletePropertyDescriptor.js": { - "offset": 1228130, + "offset": 1228700, "size": 1110, }, "CompletionRecord.js": { - "offset": 1229240, + "offset": 1229810, "size": 1360, }, "CopyDataProperties.js": { - "offset": 1230600, + "offset": 1231170, "size": 1990, }, "CreateAsyncFromSyncIterator.js": { - "offset": 1232590, - "size": 4570, + "offset": 1233150, + "size": 4590, }, "CreateDataProperty.js": { - "offset": 1237160, + "offset": 1237740, "size": 730, }, "CreateDataPropertyOrThrow.js": { - "offset": 1237880, + "offset": 1238470, "size": 700, }, "CreateHTML.js": { - "offset": 1238580, + "offset": 1239170, "size": 840, }, "CreateIterResultObject.js": { - "offset": 1239420, + "offset": 1240000, "size": 350, }, "CreateListFromArrayLike.js": { - "offset": 1239770, + "offset": 1240350, "size": 1370, }, "CreateMethodProperty.js": { - "offset": 1241130, + "offset": 1241720, "size": 950, }, "CreateNonEnumerableDataPropertyOrThrow.js": { - "offset": 1242080, + "offset": 1242660, "size": 760, }, "CreateRegExpStringIterator.js": { - "offset": 1242830, - "size": 3410, + "offset": 1243420, + "size": 3420, }, "DateFromTime.js": { - "offset": 1246240, + "offset": 1246840, "size": 990, }, "DateString.js": { - "offset": 1247230, + "offset": 1247820, "size": 990, }, "Day.js": { - "offset": 1248210, + "offset": 1248810, "size": 240, }, "DayFromYear.js": { - "offset": 1248440, + "offset": 1249040, "size": 260, }, "DayWithinYear.js": { - "offset": 1248700, + "offset": 1249300, "size": 290, }, "DaysInYear.js": { - "offset": 1248990, + "offset": 1249580, "size": 310, }, "DefineMethodProperty.js": { - "offset": 1249290, + "offset": 1249880, "size": 1510, }, "DefinePropertyOrThrow.js": { - "offset": 1250790, + "offset": 1251390, "size": 1170, }, "DeletePropertyOrThrow.js": { - "offset": 1251960, + "offset": 1252560, "size": 670, }, "DetachArrayBuffer.js": { - "offset": 1252630, + "offset": 1253220, "size": 1720, }, "EnumerableOwnPropertyNames.js": { - "offset": 1254340, + "offset": 1254930, "size": 1010, }, "FlattenIntoArray.js": { - "offset": 1255340, + "offset": 1255940, "size": 1680, }, "FromPropertyDescriptor.js": { - "offset": 1257020, + "offset": 1257620, "size": 540, }, "Get.js": { - "offset": 1257560, + "offset": 1258160, "size": 570, }, "GetGlobalObject.js": { - "offset": 1258130, + "offset": 1258730, "size": 200, }, "GetIterator.js": { - "offset": 1258330, - "size": 1720, + "offset": 1258920, + "size": 1730, }, "GetMatchIndexPair.js": { - "offset": 1260040, + "offset": 1260650, "size": 840, }, "GetMatchString.js": { - "offset": 1260880, + "offset": 1261480, "size": 890, }, "GetMethod.js": { - "offset": 1261760, + "offset": 1262370, "size": 690, }, "GetOwnPropertyKeys.js": { - "offset": 1262440, + "offset": 1263050, "size": 840, }, "GetPromiseResolve.js": { - "offset": 1263280, + "offset": 1263880, "size": 640, }, "GetPrototypeFromConstructor.js": { - "offset": 1263910, + "offset": 1264520, "size": 1080, }, "GetStringIndex.js": { - "offset": 1264990, + "offset": 1265600, "size": 760, }, "GetSubstitution.js": { - "offset": 1265750, + "offset": 1266360, "size": 5770, }, "GetV.js": { - "offset": 1271520, + "offset": 1272120, "size": 500, }, "GetValueFromBuffer.js": { - "offset": 1272010, + "offset": 1272610, "size": 4530, }, "HasOwnProperty.js": { - "offset": 1276530, + "offset": 1277140, "size": 540, }, "HasProperty.js": { - "offset": 1277070, + "offset": 1277670, "size": 490, }, "HourFromTime.js": { - "offset": 1277550, + "offset": 1278160, "size": 390, }, "InLeapYear.js": { - "offset": 1277940, + "offset": 1278540, "size": 470, }, "InstallErrorCause.js": { - "offset": 1278400, + "offset": 1279000, "size": 670, }, "InstanceofOperator.js": { - "offset": 1279060, + "offset": 1279670, "size": 930, }, "IntegerIndexedElementGet.js": { - "offset": 1279990, + "offset": 1280590, "size": 1240, }, "IntegerIndexedElementSet.js": { - "offset": 1281220, + "offset": 1281830, "size": 1560, }, "InternalizeJSONProperty.js": { - "offset": 1282770, + "offset": 1283380, "size": 2110, }, "Invoke.js": { - "offset": 1284880, + "offset": 1285490, "size": 680, }, "IsAccessorDescriptor.js": { - "offset": 1285550, + "offset": 1286160, "size": 560, }, "IsArray.js": { - "offset": 1286110, + "offset": 1286710, "size": 120, }, "IsBigIntElementType.js": { - "offset": 1286230, + "offset": 1286830, "size": 200, }, "IsCallable.js": { - "offset": 1286420, + "offset": 1287030, "size": 110, }, "IsCompatiblePropertyDescriptor.js": { - "offset": 1286530, - "size": 370, + "offset": 1287130, + "size": 380, }, "IsConcatSpreadable.js": { - "offset": 1286890, + "offset": 1287510, "size": 640, }, "IsConstructor.js": { - "offset": 1287530, + "offset": 1288150, "size": 1150, }, "IsDataDescriptor.js": { - "offset": 1288670, + "offset": 1289290, "size": 570, }, "IsDetachedBuffer.js": { - "offset": 1289230, + "offset": 1289850, "size": 1000, }, "IsExtensible.js": { - "offset": 1290230, + "offset": 1290850, "size": 510, }, "IsGenericDescriptor.js": { - "offset": 1290730, + "offset": 1291360, "size": 660, }, "IsIntegralNumber.js": { - "offset": 1291390, + "offset": 1292010, "size": 220, }, "IsLessThan.js": { - "offset": 1291600, + "offset": 1292230, "size": 2500, }, "IsLooselyEqual.js": { - "offset": 1294100, + "offset": 1294730, "size": 1800, }, "IsNoTearConfiguration.js": { - "offset": 1295900, + "offset": 1296520, "size": 470, }, "IsPromise.js": { - "offset": 1296370, + "offset": 1296990, "size": 490, }, "IsPropertyKey.js": { - "offset": 1296850, + "offset": 1297480, "size": 230, }, "IsRegExp.js": { - "offset": 1297070, + "offset": 1297700, "size": 570, }, "IsSharedArrayBuffer.js": { - "offset": 1297640, + "offset": 1298270, "size": 430, }, "IsStrictlyEqual.js": { - "offset": 1298070, + "offset": 1298690, "size": 530, }, "IsStringPrefix.js": { - "offset": 1298600, + "offset": 1299220, "size": 470, }, "IsStringWellFormedUnicode.js": { - "offset": 1299060, + "offset": 1299680, "size": 640, }, "IsUnclampedIntegerElementType.js": { - "offset": 1299700, + "offset": 1300320, "size": 300, }, "IsUnsignedElementType.js": { - "offset": 1300000, + "offset": 1300620, "size": 270, }, "IsValidIntegerIndex.js": { - "offset": 1300260, + "offset": 1300890, "size": 890, }, "IsWordChar.js": { - "offset": 1301150, + "offset": 1301770, "size": 1390, }, "IterableToList.js": { - "offset": 1302530, + "offset": 1303150, "size": 630, }, "IteratorClose.js": { - "offset": 1303150, + "offset": 1303780, "size": 1770, }, "IteratorComplete.js": { - "offset": 1304920, + "offset": 1305540, "size": 460, }, "IteratorNext.js": { - "offset": 1305380, + "offset": 1306000, "size": 460, }, "IteratorStep.js": { - "offset": 1305830, + "offset": 1306450, "size": 350, }, "IteratorValue.js": { - "offset": 1306180, + "offset": 1306800, "size": 410, }, "LengthOfArrayLike.js": { - "offset": 1306580, + "offset": 1307210, "size": 470, }, "MakeDate.js": { - "offset": 1307040, + "offset": 1307670, "size": 340, }, "MakeDay.js": { - "offset": 1307380, + "offset": 1308000, "size": 1020, }, "MakeMatchIndicesIndexPairArray.js": { - "offset": 1308390, + "offset": 1309010, "size": 2710, }, "MakeTime.js": { - "offset": 1311100, + "offset": 1311720, "size": 770, }, "MinFromTime.js": { - "offset": 1311860, + "offset": 1312490, "size": 400, }, "MonthFromTime.js": { - "offset": 1312260, + "offset": 1312880, "size": 1130, }, "NewPromiseCapability.js": { - "offset": 1313390, + "offset": 1314010, "size": 1230, }, "NormalCompletion.js": { - "offset": 1314610, + "offset": 1315240, "size": 240, }, "Number": { "files": { "add.js": { - "offset": 1314850, + "offset": 1315480, "size": 800, }, "bitwiseAND.js": { - "offset": 1315650, + "offset": 1316280, "size": 430, }, "bitwiseNOT.js": { - "offset": 1316080, + "offset": 1316700, "size": 500, }, "bitwiseOR.js": { - "offset": 1316580, + "offset": 1317200, "size": 430, }, "bitwiseXOR.js": { - "offset": 1317000, + "offset": 1317630, "size": 430, }, "divide.js": { - "offset": 1317430, + "offset": 1318050, "size": 570, }, "equal.js": { - "offset": 1317990, + "offset": 1318620, "size": 480, }, "exponentiate.js": { - "offset": 1318470, + "offset": 1319090, "size": 1740, }, "index.js": { - "offset": 1320210, + "offset": 1320830, "size": 1280, }, "leftShift.js": { - "offset": 1321480, + "offset": 1322110, "size": 570, }, "lessThan.js": { - "offset": 1322050, + "offset": 1322670, "size": 570, }, "multiply.js": { - "offset": 1322610, - "size": 770, + "offset": 1323230, + "size": 830, }, "remainder.js": { - "offset": 1323380, - "size": 950, + "offset": 1324060, + "size": 1010, }, "sameValue.js": { - "offset": 1324330, + "offset": 1325060, "size": 570, }, "sameValueZero.js": { - "offset": 1324900, + "offset": 1325630, "size": 500, }, "signedRightShift.js": { - "offset": 1325400, + "offset": 1326120, "size": 580, }, "subtract.js": { - "offset": 1325970, + "offset": 1326700, "size": 460, }, "toString.js": { - "offset": 1326430, + "offset": 1327160, "size": 400, }, "unaryMinus.js": { - "offset": 1326820, + "offset": 1327550, "size": 400, }, "unsignedRightShift.js": { - "offset": 1327210, + "offset": 1327940, "size": 590, }, }, }, "NumberBitwiseOp.js": { - "offset": 1327800, + "offset": 1328520, "size": 690, }, "NumberToBigInt.js": { - "offset": 1328480, + "offset": 1329200, "size": 800, }, "NumericToRawBytes.js": { - "offset": 1329270, + "offset": 1330000, "size": 2030, }, "ObjectDefineProperties.js": { - "offset": 1331290, + "offset": 1332020, "size": 1440, }, "OrdinaryCreateFromConstructor.js": { - "offset": 1332730, + "offset": 1333460, "size": 830, }, "OrdinaryDefineOwnProperty.js": { - "offset": 1333550, + "offset": 1334280, "size": 2180, }, "OrdinaryGetOwnProperty.js": { - "offset": 1335730, + "offset": 1336460, "size": 1200, }, "OrdinaryGetPrototypeOf.js": { - "offset": 1336930, + "offset": 1337650, "size": 500, }, "OrdinaryHasInstance.js": { - "offset": 1337420, + "offset": 1338150, "size": 580, }, "OrdinaryHasProperty.js": { - "offset": 1337990, + "offset": 1338720, "size": 510, }, "OrdinaryObjectCreate.js": { - "offset": 1338490, + "offset": 1339220, "size": 1630, }, "OrdinarySetPrototypeOf.js": { - "offset": 1340120, + "offset": 1340850, "size": 1000, }, "OrdinaryToPrimitive.js": { - "offset": 1341120, + "offset": 1341840, "size": 1030, }, "PromiseResolve.js": { - "offset": 1342140, + "offset": 1342870, "size": 510, }, "QuoteJSONString.js": { - "offset": 1342650, + "offset": 1343370, "size": 1430, }, "RawBytesToNumeric.js": { - "offset": 1344070, + "offset": 1344800, "size": 2370, }, "RegExpCreate.js": { - "offset": 1346440, + "offset": 1347160, "size": 650, }, "RegExpExec.js": { - "offset": 1347080, + "offset": 1347810, "size": 830, }, "RegExpHasFlag.js": { - "offset": 1347910, + "offset": 1348640, "size": 1110, }, "RequireObjectCoercible.js": { - "offset": 1349010, + "offset": 1349740, "size": 90, }, "SameValue.js": { - "offset": 1349100, + "offset": 1349820, "size": 320, }, "SameValueNonNumeric.js": { - "offset": 1349410, + "offset": 1350140, "size": 580, }, "SameValueZero.js": { - "offset": 1349980, + "offset": 1350710, "size": 230, }, "SecFromTime.js": { - "offset": 1350200, + "offset": 1350930, "size": 410, }, "Set.js": { - "offset": 1350610, + "offset": 1351330, "size": 1230, }, "SetFunctionLength.js": { - "offset": 1351830, + "offset": 1352560, "size": 1020, }, "SetFunctionName.js": { - "offset": 1352850, + "offset": 1353580, "size": 1290, }, "SetIntegrityLevel.js": { - "offset": 1354140, + "offset": 1354870, "size": 1840, }, "SetTypedArrayFromArrayLike.js": { - "offset": 1355970, + "offset": 1356700, "size": 3110, }, "SetTypedArrayFromTypedArray.js": { - "offset": 1359080, + "offset": 1359810, "size": 5130, }, "SetValueInBuffer.js": { - "offset": 1364200, + "offset": 1364930, "size": 4160, }, "SortIndexedProperties.js": { - "offset": 1368360, + "offset": 1369080, "size": 1600, }, "SpeciesConstructor.js": { - "offset": 1369960, + "offset": 1370680, "size": 850, }, "StringCreate.js": { - "offset": 1370800, + "offset": 1371530, "size": 1080, }, "StringGetOwnProperty.js": { - "offset": 1371870, + "offset": 1372600, "size": 1380, }, "StringIndexOf.js": { - "offset": 1373250, + "offset": 1373970, "size": 1030, }, "StringPad.js": { - "offset": 1374270, + "offset": 1375000, "size": 1210, }, "StringToBigInt.js": { - "offset": 1375480, + "offset": 1376200, "size": 590, }, "StringToCodePoints.js": { - "offset": 1376060, + "offset": 1376790, "size": 600, }, "StringToNumber.js": { - "offset": 1376660, + "offset": 1377390, "size": 1270, }, "SymbolDescriptiveString.js": { - "offset": 1377920, + "offset": 1378650, "size": 440, }, "TestIntegrityLevel.js": { - "offset": 1378350, + "offset": 1379080, "size": 1210, }, "ThrowCompletion.js": { - "offset": 1379560, + "offset": 1380290, "size": 240, }, "TimeClip.js": { - "offset": 1379800, + "offset": 1380530, "size": 440, }, "TimeFromYear.js": { - "offset": 1380240, + "offset": 1380970, "size": 270, }, "TimeString.js": { - "offset": 1380500, + "offset": 1381230, "size": 830, }, "TimeWithinDay.js": { - "offset": 1381320, + "offset": 1382050, "size": 250, }, "TimeZoneString.js": { - "offset": 1381570, + "offset": 1382300, "size": 1590, }, "ToBigInt.js": { - "offset": 1383150, + "offset": 1383880, "size": 1280, }, "ToBigInt64.js": { - "offset": 1384430, + "offset": 1385160, "size": 960, }, "ToBigUint64.js": { - "offset": 1385380, + "offset": 1386110, "size": 710, }, "ToBoolean.js": { - "offset": 1386090, + "offset": 1386820, "size": 130, }, "ToDateString.js": { - "offset": 1386220, + "offset": 1386950, "size": 520, }, "ToIndex.js": { - "offset": 1386740, + "offset": 1387460, "size": 640, }, "ToInt16.js": { - "offset": 1387370, + "offset": 1388100, "size": 260, }, "ToInt32.js": { - "offset": 1387630, + "offset": 1388360, "size": 180, }, "ToInt8.js": { - "offset": 1387800, + "offset": 1388530, "size": 250, }, "ToIntegerOrInfinity.js": { - "offset": 1388040, + "offset": 1388770, "size": 620, }, "ToLength.js": { - "offset": 1388660, + "offset": 1389390, "size": 440, }, "ToNumber.js": { - "offset": 1389090, + "offset": 1389820, "size": 800, }, "ToNumeric.js": { - "offset": 1389890, + "offset": 1390620, "size": 530, }, "ToObject.js": { - "offset": 1390410, + "offset": 1391140, "size": 130, }, "ToPrimitive.js": { - "offset": 1390540, + "offset": 1391270, "size": 290, }, "ToPropertyDescriptor.js": { - "offset": 1390820, + "offset": 1391550, "size": 1460, }, "ToPropertyKey.js": { - "offset": 1392270, + "offset": 1393000, "size": 400, }, "ToString.js": { - "offset": 1392670, + "offset": 1393400, "size": 390, }, "ToUint16.js": { - "offset": 1393060, + "offset": 1393790, "size": 610, }, "ToUint32.js": { - "offset": 1393670, + "offset": 1394400, "size": 180, }, "ToUint8.js": { - "offset": 1393840, + "offset": 1394570, "size": 630, }, "ToUint8Clamp.js": { - "offset": 1394470, + "offset": 1395200, "size": 520, }, "ToZeroPaddedDecimalString.js": { - "offset": 1394990, + "offset": 1395720, "size": 580, }, "TrimString.js": { - "offset": 1395560, + "offset": 1396290, "size": 760, }, "Type.js": { - "offset": 1396320, + "offset": 1397050, "size": 300, }, "TypedArrayCreate.js": { - "offset": 1396620, + "offset": 1397340, "size": 1690, }, "TypedArrayElementSize.js": { - "offset": 1398300, + "offset": 1399030, "size": 720, }, "TypedArrayElementType.js": { - "offset": 1399020, + "offset": 1399750, "size": 650, }, "TypedArraySpeciesCreate.js": { - "offset": 1399670, + "offset": 1400390, "size": 1380, }, "UTF16EncodeCodePoint.js": { - "offset": 1401040, + "offset": 1401760, "size": 710, }, "UTF16SurrogatePairToCodePoint.js": { - "offset": 1401740, + "offset": 1402470, "size": 780, }, "UnicodeEscape.js": { - "offset": 1402520, + "offset": 1403250, "size": 790, }, "ValidateAndApplyPropertyDescriptor.js": { - "offset": 1403300, + "offset": 1404030, "size": 5740, }, "ValidateAtomicAccess.js": { - "offset": 1409040, + "offset": 1409770, "size": 1170, }, "ValidateIntegerTypedArray.js": { - "offset": 1410210, + "offset": 1410940, "size": 1420, }, "ValidateTypedArray.js": { - "offset": 1411630, + "offset": 1412360, "size": 770, }, "WeakRefDeref.js": { - "offset": 1412400, + "offset": 1413120, "size": 570, }, "WeekDay.js": { - "offset": 1412960, + "offset": 1413690, "size": 210, }, "WordCharacters.js": { - "offset": 1413170, + "offset": 1413900, "size": 1470, }, "YearFromTime.js": { - "offset": 1414630, + "offset": 1415360, "size": 400, }, "abs.js": { - "offset": 1415030, + "offset": 1415760, "size": 220, }, "clamp.js": { - "offset": 1415250, + "offset": 1415970, "size": 510, }, "floor.js": { - "offset": 1415760, + "offset": 1416480, "size": 290, }, "max.js": { - "offset": 1416040, + "offset": 1416770, "size": 140, }, "min.js": { - "offset": 1416180, + "offset": 1416900, "size": 140, }, "modulo.js": { - "offset": 1416310, + "offset": 1417030, "size": 170, }, "msFromTime.js": { - "offset": 1416480, + "offset": 1417200, "size": 260, }, "substring.js": { - "offset": 1416730, + "offset": 1417460, "size": 640, }, "tables": { "files": { "typed-array-objects.js": { - "offset": 1417370, + "offset": 1418090, "size": 780, }, }, }, "thisBigIntValue.js": { - "offset": 1418150, + "offset": 1418870, "size": 460, }, "thisBooleanValue.js": { - "offset": 1418600, + "offset": 1419320, "size": 330, }, "thisNumberValue.js": { - "offset": 1418920, + "offset": 1419640, "size": 350, }, "thisStringValue.js": { - "offset": 1419270, + "offset": 1419990, "size": 320, }, "thisSymbolValue.js": { - "offset": 1419580, + "offset": 1420310, "size": 530, }, "thisTimeValue.js": { - "offset": 1420110, + "offset": 1420830, "size": 240, }, }, @@ -43777,1075 +43793,1075 @@ exports[`node_module collectors > yarn max stack 2`] = ` "2023": { "files": { "AddEntriesFromIterable.js": { - "offset": 1420340, + "offset": 1421060, "size": 1430, }, "AddToKeptObjects.js": { - "offset": 1421770, + "offset": 1422490, "size": 540, }, "AdvanceStringIndex.js": { - "offset": 1422300, + "offset": 1423020, "size": 940, }, "ApplyStringOrNumericBinaryOperator.js": { - "offset": 1423230, + "offset": 1423960, "size": 3130, }, "ArrayCreate.js": { - "offset": 1426360, + "offset": 1427090, "size": 1430, }, "ArraySetLength.js": { - "offset": 1427790, + "offset": 1428510, "size": 2430, }, "ArraySpeciesCreate.js": { - "offset": 1430210, + "offset": 1430930, "size": 1370, }, "AsyncFromSyncIteratorContinuation.js": { - "offset": 1431580, + "offset": 1432300, "size": 1530, }, "AsyncIteratorClose.js": { - "offset": 1433100, + "offset": 1433820, "size": 1940, }, "BigInt": { "files": { "add.js": { - "offset": 1435040, + "offset": 1435760, "size": 390, }, "bitwiseAND.js": { - "offset": 1435420, + "offset": 1436140, "size": 430, }, "bitwiseNOT.js": { - "offset": 1435840, + "offset": 1436560, "size": 420, }, "bitwiseOR.js": { - "offset": 1436260, + "offset": 1436980, "size": 430, }, "bitwiseXOR.js": { - "offset": 1436680, + "offset": 1437410, "size": 430, }, "divide.js": { - "offset": 1437110, + "offset": 1437830, "size": 600, }, "equal.js": { - "offset": 1437710, + "offset": 1438430, "size": 390, }, "exponentiate.js": { - "offset": 1438090, + "offset": 1438810, "size": 860, }, "index.js": { - "offset": 1438950, + "offset": 1439670, "size": 1140, }, "leftShift.js": { - "offset": 1440080, + "offset": 1440800, "size": 400, }, "lessThan.js": { - "offset": 1440470, + "offset": 1441190, "size": 400, }, "multiply.js": { - "offset": 1440860, + "offset": 1441580, "size": 400, }, "remainder.js": { - "offset": 1441250, + "offset": 1441980, "size": 680, }, "signedRightShift.js": { - "offset": 1441930, + "offset": 1442650, "size": 430, }, "subtract.js": { - "offset": 1442350, + "offset": 1443080, "size": 400, }, "toString.js": { - "offset": 1442740, + "offset": 1443470, "size": 790, }, "unaryMinus.js": { - "offset": 1443530, + "offset": 1444250, "size": 480, }, "unsignedRightShift.js": { - "offset": 1444000, + "offset": 1444730, "size": 440, }, }, }, "BigIntBitwiseOp.js": { - "offset": 1444440, + "offset": 1445160, "size": 1670, }, "BinaryAnd.js": { - "offset": 1446100, + "offset": 1446820, "size": 320, }, "BinaryOr.js": { - "offset": 1446420, + "offset": 1447140, "size": 320, }, "BinaryXor.js": { - "offset": 1446730, + "offset": 1447450, "size": 320, }, "ByteListBitwiseOp.js": { - "offset": 1447050, + "offset": 1447770, "size": 1190, }, "ByteListEqual.js": { - "offset": 1448230, + "offset": 1448950, "size": 860, }, "Call.js": { - "offset": 1449090, + "offset": 1449810, "size": 610, }, "CanBeHeldWeakly.js": { - "offset": 1449690, + "offset": 1450420, "size": 410, }, "CanonicalNumericIndexString.js": { - "offset": 1450100, + "offset": 1450820, "size": 580, }, "Canonicalize.js": { - "offset": 1450670, + "offset": 1451390, "size": 1240, }, "CharacterRange.js": { - "offset": 1451910, + "offset": 1452630, "size": 1350, }, "ClearKeptObjects.js": { - "offset": 1453250, + "offset": 1453970, "size": 300, }, "CloneArrayBuffer.js": { - "offset": 1453540, + "offset": 1454270, "size": 1900, }, "CodePointAt.js": { - "offset": 1455440, + "offset": 1456160, "size": 1650, }, "CodePointsToString.js": { - "offset": 1457090, + "offset": 1457810, "size": 740, }, "CompareArrayElements.js": { - "offset": 1457830, + "offset": 1458550, "size": 1280, }, "CompareTypedArrayElements.js": { - "offset": 1459100, + "offset": 1459820, "size": 1360, }, "CompletePropertyDescriptor.js": { - "offset": 1460460, + "offset": 1461180, "size": 1110, }, "CompletionRecord.js": { - "offset": 1461570, + "offset": 1462290, "size": 1360, }, "CopyDataProperties.js": { - "offset": 1462930, + "offset": 1463650, "size": 1990, }, "CreateAsyncFromSyncIterator.js": { - "offset": 1464910, - "size": 4540, + "offset": 1465630, + "size": 4560, }, "CreateDataProperty.js": { - "offset": 1469450, + "offset": 1470190, "size": 730, }, "CreateDataPropertyOrThrow.js": { - "offset": 1470170, + "offset": 1470920, "size": 690, }, "CreateHTML.js": { - "offset": 1470860, + "offset": 1471600, "size": 840, }, "CreateIterResultObject.js": { - "offset": 1471690, + "offset": 1472440, "size": 350, }, "CreateListFromArrayLike.js": { - "offset": 1472040, + "offset": 1472790, "size": 1370, }, "CreateMethodProperty.js": { - "offset": 1473410, + "offset": 1474150, "size": 950, }, "CreateNonEnumerableDataPropertyOrThrow.js": { - "offset": 1474360, + "offset": 1475100, "size": 760, }, "CreateRegExpStringIterator.js": { - "offset": 1475110, - "size": 3410, + "offset": 1475850, + "size": 3420, }, "DateFromTime.js": { - "offset": 1478520, + "offset": 1479270, "size": 990, }, "DateString.js": { - "offset": 1479510, + "offset": 1480260, "size": 990, }, "Day.js": { - "offset": 1480490, + "offset": 1481240, "size": 240, }, "DayFromYear.js": { - "offset": 1480720, + "offset": 1481470, "size": 260, }, "DayWithinYear.js": { - "offset": 1480980, + "offset": 1481730, "size": 290, }, "DaysInYear.js": { - "offset": 1481260, + "offset": 1482020, "size": 310, }, "DefaultTimeZone.js": { - "offset": 1481570, + "offset": 1482320, "size": 540, }, "DefineMethodProperty.js": { - "offset": 1482100, + "offset": 1482860, "size": 1510, }, "DefinePropertyOrThrow.js": { - "offset": 1483610, + "offset": 1484360, "size": 1170, }, "DeletePropertyOrThrow.js": { - "offset": 1484780, + "offset": 1485530, "size": 670, }, "DetachArrayBuffer.js": { - "offset": 1485440, + "offset": 1486200, "size": 1720, }, "EnumerableOwnProperties.js": { - "offset": 1487150, + "offset": 1487910, "size": 1010, }, "FindViaPredicate.js": { - "offset": 1488160, + "offset": 1488910, "size": 1420, }, "FlattenIntoArray.js": { - "offset": 1489570, + "offset": 1490330, "size": 1680, }, "FromPropertyDescriptor.js": { - "offset": 1491250, + "offset": 1492010, "size": 540, }, "Get.js": { - "offset": 1491790, + "offset": 1492540, "size": 570, }, "GetGlobalObject.js": { - "offset": 1492360, + "offset": 1493110, "size": 200, }, "GetIterator.js": { - "offset": 1492560, + "offset": 1493310, "size": 1750, }, "GetIteratorFromMethod.js": { - "offset": 1494300, + "offset": 1495050, "size": 750, }, "GetMatchIndexPair.js": { - "offset": 1495040, + "offset": 1495790, "size": 840, }, "GetMatchString.js": { - "offset": 1495870, + "offset": 1496630, "size": 890, }, "GetMethod.js": { - "offset": 1496760, + "offset": 1497510, "size": 690, }, "GetNamedTimeZoneEpochNanoseconds.js": { - "offset": 1497440, + "offset": 1498190, "size": 2430, }, "GetOwnPropertyKeys.js": { - "offset": 1499870, + "offset": 1500620, "size": 840, }, "GetPromiseResolve.js": { - "offset": 1500700, + "offset": 1501450, "size": 640, }, "GetPrototypeFromConstructor.js": { - "offset": 1501340, + "offset": 1502090, "size": 1080, }, "GetStringIndex.js": { - "offset": 1502420, + "offset": 1503170, "size": 760, }, "GetSubstitution.js": { - "offset": 1503180, + "offset": 1503930, "size": 5570, }, "GetUTCEpochNanoseconds.js": { - "offset": 1508740, + "offset": 1509490, "size": 2560, }, "GetV.js": { - "offset": 1511300, + "offset": 1512050, "size": 500, }, "GetValueFromBuffer.js": { - "offset": 1511790, + "offset": 1512540, "size": 4530, }, "HasOwnProperty.js": { - "offset": 1516320, + "offset": 1517070, "size": 540, }, "HasProperty.js": { - "offset": 1516850, + "offset": 1517600, "size": 490, }, "HourFromTime.js": { - "offset": 1517340, + "offset": 1518090, "size": 390, }, "InLeapYear.js": { - "offset": 1517720, + "offset": 1518470, "size": 470, }, "InstallErrorCause.js": { - "offset": 1518180, + "offset": 1518930, "size": 670, }, "InstanceofOperator.js": { - "offset": 1518840, + "offset": 1519590, "size": 930, }, "IntegerIndexedElementGet.js": { - "offset": 1519770, + "offset": 1520520, "size": 1240, }, "IntegerIndexedElementSet.js": { - "offset": 1521000, + "offset": 1521750, "size": 1560, }, "InternalizeJSONProperty.js": { - "offset": 1522560, + "offset": 1523310, "size": 2190, }, "Invoke.js": { - "offset": 1524740, + "offset": 1525490, "size": 680, }, "IsAccessorDescriptor.js": { - "offset": 1525410, + "offset": 1526160, "size": 560, }, "IsArray.js": { - "offset": 1525970, + "offset": 1526720, "size": 120, }, "IsBigIntElementType.js": { - "offset": 1526080, + "offset": 1526840, "size": 200, }, "IsCallable.js": { - "offset": 1526280, + "offset": 1527030, "size": 110, }, "IsCompatiblePropertyDescriptor.js": { - "offset": 1526390, - "size": 370, + "offset": 1527140, + "size": 380, }, "IsConcatSpreadable.js": { - "offset": 1526750, + "offset": 1527520, "size": 640, }, "IsConstructor.js": { - "offset": 1527380, + "offset": 1528150, "size": 1150, }, "IsDataDescriptor.js": { - "offset": 1528530, + "offset": 1529300, "size": 570, }, "IsDetachedBuffer.js": { - "offset": 1529090, + "offset": 1529860, "size": 1000, }, "IsExtensible.js": { - "offset": 1530090, + "offset": 1530860, "size": 510, }, "IsGenericDescriptor.js": { - "offset": 1530590, + "offset": 1531360, "size": 660, }, "IsIntegralNumber.js": { - "offset": 1531250, + "offset": 1532020, "size": 360, }, "IsLessThan.js": { - "offset": 1531600, + "offset": 1532370, "size": 2760, }, "IsLooselyEqual.js": { - "offset": 1534360, + "offset": 1535130, "size": 1800, }, "IsNoTearConfiguration.js": { - "offset": 1536160, + "offset": 1536930, "size": 470, }, "IsPromise.js": { - "offset": 1536620, + "offset": 1537390, "size": 490, }, "IsPropertyKey.js": { - "offset": 1537110, + "offset": 1537880, "size": 230, }, "IsRegExp.js": { - "offset": 1537330, + "offset": 1538100, "size": 570, }, "IsSharedArrayBuffer.js": { - "offset": 1537900, + "offset": 1538670, "size": 430, }, "IsStrictlyEqual.js": { - "offset": 1538330, + "offset": 1539100, "size": 400, }, "IsStringWellFormedUnicode.js": { - "offset": 1538720, + "offset": 1539490, "size": 640, }, "IsTimeZoneOffsetString.js": { - "offset": 1539350, + "offset": 1540120, "size": 690, }, "IsUnclampedIntegerElementType.js": { - "offset": 1540030, + "offset": 1540800, "size": 300, }, "IsUnsignedElementType.js": { - "offset": 1540330, + "offset": 1541100, "size": 270, }, "IsValidIntegerIndex.js": { - "offset": 1540600, + "offset": 1541370, "size": 890, }, "IsWordChar.js": { - "offset": 1541480, + "offset": 1542250, "size": 1170, }, "IteratorClose.js": { - "offset": 1542640, + "offset": 1543410, "size": 2400, }, "IteratorComplete.js": { - "offset": 1545040, + "offset": 1545810, "size": 460, }, "IteratorNext.js": { - "offset": 1545500, + "offset": 1546270, "size": 900, }, "IteratorStep.js": { - "offset": 1546390, + "offset": 1547160, "size": 660, }, "IteratorToList.js": { - "offset": 1547050, + "offset": 1547820, "size": 790, }, "IteratorValue.js": { - "offset": 1547840, + "offset": 1548610, "size": 410, }, "KeyForSymbol.js": { - "offset": 1548250, + "offset": 1549020, "size": 390, }, "LengthOfArrayLike.js": { - "offset": 1548630, + "offset": 1549400, "size": 470, }, "MakeDate.js": { - "offset": 1549090, + "offset": 1549860, "size": 340, }, "MakeDay.js": { - "offset": 1549430, + "offset": 1550200, "size": 1020, }, "MakeMatchIndicesIndexPairArray.js": { - "offset": 1550440, + "offset": 1551210, "size": 2710, }, "MakeTime.js": { - "offset": 1553150, + "offset": 1553920, "size": 770, }, "MinFromTime.js": { - "offset": 1553910, + "offset": 1554680, "size": 400, }, "MonthFromTime.js": { - "offset": 1554310, + "offset": 1555080, "size": 1130, }, "NewPromiseCapability.js": { - "offset": 1555440, + "offset": 1556210, "size": 1230, }, "NormalCompletion.js": { - "offset": 1556660, + "offset": 1557430, "size": 240, }, "Number": { "files": { "add.js": { - "offset": 1556900, + "offset": 1557670, "size": 800, }, "bitwiseAND.js": { - "offset": 1557700, + "offset": 1558470, "size": 430, }, "bitwiseNOT.js": { - "offset": 1558130, + "offset": 1558900, "size": 500, }, "bitwiseOR.js": { - "offset": 1558630, + "offset": 1559400, "size": 430, }, "bitwiseXOR.js": { - "offset": 1559050, + "offset": 1559820, "size": 430, }, "divide.js": { - "offset": 1559480, + "offset": 1560250, "size": 570, }, "equal.js": { - "offset": 1560040, + "offset": 1560810, "size": 480, }, "exponentiate.js": { - "offset": 1560520, + "offset": 1561290, "size": 1740, }, "index.js": { - "offset": 1562260, + "offset": 1563030, "size": 1280, }, "leftShift.js": { - "offset": 1563530, + "offset": 1564300, "size": 570, }, "lessThan.js": { - "offset": 1564100, + "offset": 1564870, "size": 570, }, "multiply.js": { - "offset": 1564660, - "size": 770, + "offset": 1565430, + "size": 830, }, "remainder.js": { - "offset": 1565430, + "offset": 1566250, "size": 1220, }, "sameValue.js": { - "offset": 1566650, + "offset": 1567470, "size": 570, }, "sameValueZero.js": { - "offset": 1567220, + "offset": 1568040, "size": 500, }, "signedRightShift.js": { - "offset": 1567720, + "offset": 1568540, "size": 580, }, "subtract.js": { - "offset": 1568290, + "offset": 1569110, "size": 460, }, "toString.js": { - "offset": 1568750, + "offset": 1569570, "size": 650, }, "unaryMinus.js": { - "offset": 1569390, + "offset": 1570220, "size": 400, }, "unsignedRightShift.js": { - "offset": 1569790, + "offset": 1570610, "size": 590, }, }, }, "NumberBitwiseOp.js": { - "offset": 1570370, + "offset": 1571190, "size": 690, }, "NumberToBigInt.js": { - "offset": 1571050, + "offset": 1571870, "size": 800, }, "NumericToRawBytes.js": { - "offset": 1571840, + "offset": 1572660, "size": 2030, }, "ObjectDefineProperties.js": { - "offset": 1573860, + "offset": 1574690, "size": 1440, }, "OrdinaryCreateFromConstructor.js": { - "offset": 1575300, + "offset": 1576120, "size": 830, }, "OrdinaryDefineOwnProperty.js": { - "offset": 1576120, + "offset": 1576950, "size": 2180, }, "OrdinaryGetOwnProperty.js": { - "offset": 1578300, + "offset": 1579120, "size": 1200, }, "OrdinaryGetPrototypeOf.js": { - "offset": 1579500, + "offset": 1580320, "size": 500, }, "OrdinaryHasInstance.js": { - "offset": 1579990, + "offset": 1580810, "size": 580, }, "OrdinaryHasProperty.js": { - "offset": 1580560, + "offset": 1581380, "size": 510, }, "OrdinaryObjectCreate.js": { - "offset": 1581060, + "offset": 1581880, "size": 1630, }, "OrdinarySetPrototypeOf.js": { - "offset": 1582690, + "offset": 1583510, "size": 1000, }, "OrdinaryToPrimitive.js": { - "offset": 1583690, + "offset": 1584510, "size": 1030, }, "ParseHexOctet.js": { - "offset": 1584710, + "offset": 1585530, "size": 1330, }, "PromiseResolve.js": { - "offset": 1586040, + "offset": 1586860, "size": 510, }, "QuoteJSONString.js": { - "offset": 1586540, + "offset": 1587370, "size": 1430, }, "RawBytesToNumeric.js": { - "offset": 1587970, + "offset": 1588790, "size": 2370, }, "RegExpCreate.js": { - "offset": 1590330, + "offset": 1591160, "size": 650, }, "RegExpExec.js": { - "offset": 1590980, + "offset": 1591800, "size": 830, }, "RegExpHasFlag.js": { - "offset": 1591810, + "offset": 1592630, "size": 1110, }, "RequireObjectCoercible.js": { - "offset": 1592910, + "offset": 1593730, "size": 90, }, "SameValue.js": { - "offset": 1593000, + "offset": 1593820, "size": 320, }, "SameValueNonNumber.js": { - "offset": 1593310, + "offset": 1594130, "size": 540, }, "SameValueZero.js": { - "offset": 1593840, + "offset": 1594660, "size": 230, }, "SecFromTime.js": { - "offset": 1594060, + "offset": 1594890, "size": 410, }, "Set.js": { - "offset": 1594470, + "offset": 1595290, "size": 1230, }, "SetFunctionLength.js": { - "offset": 1595690, + "offset": 1596510, "size": 1020, }, "SetFunctionName.js": { - "offset": 1596710, + "offset": 1597530, "size": 1290, }, "SetIntegrityLevel.js": { - "offset": 1598000, + "offset": 1598820, "size": 1840, }, "SetTypedArrayFromArrayLike.js": { - "offset": 1599830, + "offset": 1600660, "size": 2130, }, "SetTypedArrayFromTypedArray.js": { - "offset": 1601960, + "offset": 1602780, "size": 4990, }, "SetValueInBuffer.js": { - "offset": 1606940, + "offset": 1607760, "size": 4160, }, "SortIndexedProperties.js": { - "offset": 1611090, + "offset": 1611920, "size": 1520, }, "SpeciesConstructor.js": { - "offset": 1612610, + "offset": 1613430, "size": 850, }, "StringCreate.js": { - "offset": 1613450, + "offset": 1614280, "size": 1080, }, "StringGetOwnProperty.js": { - "offset": 1614530, + "offset": 1615350, "size": 1380, }, "StringIndexOf.js": { - "offset": 1615900, + "offset": 1616720, "size": 1030, }, "StringPad.js": { - "offset": 1616930, + "offset": 1617750, "size": 1210, }, "StringToBigInt.js": { - "offset": 1618130, + "offset": 1618950, "size": 590, }, "StringToCodePoints.js": { - "offset": 1618720, + "offset": 1619540, "size": 600, }, "StringToNumber.js": { - "offset": 1619310, + "offset": 1620140, "size": 1270, }, "SymbolDescriptiveString.js": { - "offset": 1620580, + "offset": 1621400, "size": 440, }, "TestIntegrityLevel.js": { - "offset": 1621010, + "offset": 1621830, "size": 1210, }, "ThrowCompletion.js": { - "offset": 1622220, + "offset": 1623040, "size": 240, }, "TimeClip.js": { - "offset": 1622460, + "offset": 1623280, "size": 440, }, "TimeFromYear.js": { - "offset": 1622900, + "offset": 1623720, "size": 270, }, "TimeString.js": { - "offset": 1623160, + "offset": 1623980, "size": 830, }, "TimeWithinDay.js": { - "offset": 1623980, + "offset": 1624800, "size": 250, }, "TimeZoneString.js": { - "offset": 1624230, + "offset": 1625050, "size": 1970, }, "ToBigInt.js": { - "offset": 1626190, + "offset": 1627010, "size": 1280, }, "ToBigInt64.js": { - "offset": 1627460, + "offset": 1628280, "size": 960, }, "ToBigUint64.js": { - "offset": 1628410, + "offset": 1629240, "size": 710, }, "ToBoolean.js": { - "offset": 1629120, + "offset": 1629940, "size": 130, }, "ToDateString.js": { - "offset": 1629250, + "offset": 1630070, "size": 520, }, "ToIndex.js": { - "offset": 1629770, + "offset": 1630590, "size": 640, }, "ToInt16.js": { - "offset": 1630410, + "offset": 1631230, "size": 550, }, "ToInt32.js": { - "offset": 1630950, + "offset": 1631770, "size": 700, }, "ToInt8.js": { - "offset": 1631640, + "offset": 1632460, "size": 500, }, "ToIntegerOrInfinity.js": { - "offset": 1632130, + "offset": 1632960, "size": 480, }, "ToLength.js": { - "offset": 1632610, + "offset": 1633430, "size": 440, }, "ToNumber.js": { - "offset": 1633040, + "offset": 1633860, "size": 800, }, "ToNumeric.js": { - "offset": 1633830, + "offset": 1634660, "size": 530, }, "ToObject.js": { - "offset": 1634360, + "offset": 1635180, "size": 130, }, "ToPrimitive.js": { - "offset": 1634480, + "offset": 1635310, "size": 290, }, "ToPropertyDescriptor.js": { - "offset": 1634770, + "offset": 1635590, "size": 1460, }, "ToPropertyKey.js": { - "offset": 1636220, + "offset": 1637040, "size": 400, }, "ToString.js": { - "offset": 1636620, + "offset": 1637440, "size": 390, }, "ToUint16.js": { - "offset": 1637010, + "offset": 1637830, "size": 590, }, "ToUint32.js": { - "offset": 1637600, + "offset": 1638420, "size": 600, }, "ToUint8.js": { - "offset": 1638190, + "offset": 1639010, "size": 460, }, "ToUint8Clamp.js": { - "offset": 1638640, + "offset": 1639470, "size": 520, }, "ToZeroPaddedDecimalString.js": { - "offset": 1639160, + "offset": 1639990, "size": 580, }, "TrimString.js": { - "offset": 1639740, + "offset": 1640560, "size": 760, }, "Type.js": { - "offset": 1640490, + "offset": 1641310, "size": 300, }, "TypedArrayCreate.js": { - "offset": 1640790, + "offset": 1641610, "size": 1690, }, "TypedArrayCreateSameType.js": { - "offset": 1642480, + "offset": 1643300, "size": 1240, }, "TypedArrayElementSize.js": { - "offset": 1643710, + "offset": 1644530, "size": 720, }, "TypedArrayElementType.js": { - "offset": 1644430, + "offset": 1645250, "size": 650, }, "TypedArraySpeciesCreate.js": { - "offset": 1645070, + "offset": 1645890, "size": 1380, }, "UTF16EncodeCodePoint.js": { - "offset": 1646440, + "offset": 1647270, "size": 710, }, "UTF16SurrogatePairToCodePoint.js": { - "offset": 1647150, + "offset": 1647970, "size": 780, }, "UnicodeEscape.js": { - "offset": 1647930, + "offset": 1648750, "size": 790, }, "ValidateAndApplyPropertyDescriptor.js": { - "offset": 1648710, + "offset": 1649530, "size": 5740, }, "ValidateAtomicAccess.js": { - "offset": 1654450, + "offset": 1655270, "size": 1170, }, "ValidateIntegerTypedArray.js": { - "offset": 1655620, + "offset": 1656440, "size": 1420, }, "ValidateTypedArray.js": { - "offset": 1657030, + "offset": 1657860, "size": 770, }, "WeakRefDeref.js": { - "offset": 1657800, + "offset": 1658620, "size": 570, }, "WeekDay.js": { - "offset": 1658370, + "offset": 1659190, "size": 210, }, "WordCharacters.js": { - "offset": 1658570, + "offset": 1659400, "size": 1620, }, "YearFromTime.js": { - "offset": 1660190, + "offset": 1661020, "size": 400, }, "abs.js": { - "offset": 1660590, + "offset": 1661410, "size": 220, }, "clamp.js": { - "offset": 1660810, + "offset": 1661630, "size": 510, }, "floor.js": { - "offset": 1661320, + "offset": 1662130, "size": 290, }, "max.js": { - "offset": 1661600, + "offset": 1662420, "size": 140, }, "min.js": { - "offset": 1661740, + "offset": 1662550, "size": 140, }, "modulo.js": { - "offset": 1661870, + "offset": 1662690, "size": 170, }, "msFromTime.js": { - "offset": 1662040, + "offset": 1662860, "size": 260, }, "substring.js": { - "offset": 1662290, + "offset": 1663110, "size": 640, }, "tables": { "files": { "typed-array-objects.js": { - "offset": 1662930, + "offset": 1663750, "size": 780, }, }, }, "thisBigIntValue.js": { - "offset": 1663710, + "offset": 1664520, "size": 460, }, "thisBooleanValue.js": { - "offset": 1664160, + "offset": 1664970, "size": 330, }, "thisNumberValue.js": { - "offset": 1664480, + "offset": 1665300, "size": 350, }, "thisStringValue.js": { - "offset": 1664830, + "offset": 1665640, "size": 320, }, "thisSymbolValue.js": { - "offset": 1665140, + "offset": 1665960, "size": 530, }, "thisTimeValue.js": { - "offset": 1665670, + "offset": 1666490, "size": 240, }, "truncate.js": { - "offset": 1665900, + "offset": 1666720, "size": 470, }, }, @@ -44853,1151 +44869,1151 @@ exports[`node_module collectors > yarn max stack 2`] = ` "2024": { "files": { "AddEntriesFromIterable.js": { - "offset": 1666360, + "offset": 1667180, "size": 1430, }, "AddToKeptObjects.js": { - "offset": 1667790, + "offset": 1668600, "size": 540, }, "AddValueToKeyedGroup.js": { - "offset": 1668320, + "offset": 1669140, "size": 1300, }, "AdvanceStringIndex.js": { - "offset": 1669620, + "offset": 1670430, "size": 940, }, "AllCharacters.js": { - "offset": 1670550, + "offset": 1671370, "size": 1140, }, "ApplyStringOrNumericBinaryOperator.js": { - "offset": 1671690, + "offset": 1672500, "size": 3130, }, "ArrayBufferByteLength.js": { - "offset": 1674820, + "offset": 1675630, "size": 1780, }, "ArrayBufferCopyAndDetach.js": { - "offset": 1676590, + "offset": 1677410, "size": 3910, }, "ArrayCreate.js": { - "offset": 1680500, + "offset": 1681310, "size": 1430, }, "ArraySetLength.js": { - "offset": 1681920, + "offset": 1682730, "size": 2430, }, "ArraySpeciesCreate.js": { - "offset": 1684340, + "offset": 1685160, "size": 1370, }, "AsyncFromSyncIteratorContinuation.js": { - "offset": 1685710, + "offset": 1686520, "size": 1530, }, "AsyncIteratorClose.js": { - "offset": 1687230, + "offset": 1688050, "size": 1940, }, "BigInt": { "files": { "add.js": { - "offset": 1689160, + "offset": 1689980, "size": 390, }, "bitwiseAND.js": { - "offset": 1689540, + "offset": 1690360, "size": 430, }, "bitwiseNOT.js": { - "offset": 1689970, + "offset": 1690790, "size": 420, }, "bitwiseOR.js": { - "offset": 1690390, + "offset": 1691200, "size": 430, }, "bitwiseXOR.js": { - "offset": 1690810, + "offset": 1691630, "size": 430, }, "divide.js": { - "offset": 1691240, + "offset": 1692050, "size": 600, }, "equal.js": { - "offset": 1691830, + "offset": 1692650, "size": 390, }, "exponentiate.js": { - "offset": 1692220, + "offset": 1693040, "size": 860, }, "index.js": { - "offset": 1693070, + "offset": 1693890, "size": 1140, }, "leftShift.js": { - "offset": 1694200, + "offset": 1695020, "size": 400, }, "lessThan.js": { - "offset": 1694600, + "offset": 1695410, "size": 400, }, "multiply.js": { - "offset": 1694990, + "offset": 1695810, "size": 400, }, "remainder.js": { - "offset": 1695380, + "offset": 1696200, "size": 680, }, "signedRightShift.js": { - "offset": 1696050, + "offset": 1696870, "size": 430, }, "subtract.js": { - "offset": 1696480, + "offset": 1697300, "size": 400, }, "toString.js": { - "offset": 1696870, + "offset": 1697690, "size": 790, }, "unaryMinus.js": { - "offset": 1697650, + "offset": 1698470, "size": 480, }, "unsignedRightShift.js": { - "offset": 1698130, + "offset": 1698950, "size": 440, }, }, }, "BigIntBitwiseOp.js": { - "offset": 1698560, + "offset": 1699380, "size": 1670, }, "BinaryAnd.js": { - "offset": 1700230, + "offset": 1701040, "size": 320, }, "BinaryOr.js": { - "offset": 1700540, + "offset": 1701360, "size": 320, }, "BinaryXor.js": { - "offset": 1700860, + "offset": 1701670, "size": 320, }, "ByteListBitwiseOp.js": { - "offset": 1701170, + "offset": 1701990, "size": 1190, }, "ByteListEqual.js": { - "offset": 1702360, + "offset": 1703170, "size": 860, }, "Call.js": { - "offset": 1703220, + "offset": 1704030, "size": 610, }, "CanBeHeldWeakly.js": { - "offset": 1703820, + "offset": 1704640, "size": 410, }, "CanonicalNumericIndexString.js": { - "offset": 1704220, + "offset": 1705040, "size": 580, }, "Canonicalize.js": { - "offset": 1704800, + "offset": 1705610, "size": 1240, }, "CharacterComplement.js": { - "offset": 1706030, + "offset": 1706850, "size": 890, }, "CharacterRange.js": { - "offset": 1706920, + "offset": 1707730, "size": 1350, }, "ClearKeptObjects.js": { - "offset": 1708260, + "offset": 1709080, "size": 300, }, "CloneArrayBuffer.js": { - "offset": 1708560, + "offset": 1709370, "size": 1900, }, "CodePointAt.js": { - "offset": 1710450, + "offset": 1711270, "size": 1650, }, "CodePointsToString.js": { - "offset": 1712100, + "offset": 1712920, "size": 740, }, "CompareArrayElements.js": { - "offset": 1712840, + "offset": 1713650, "size": 1280, }, "CompareTypedArrayElements.js": { - "offset": 1714110, + "offset": 1714930, "size": 1360, }, "CompletePropertyDescriptor.js": { - "offset": 1715470, + "offset": 1716290, "size": 1110, }, "CompletionRecord.js": { - "offset": 1716580, + "offset": 1717400, "size": 1360, }, "CopyDataProperties.js": { - "offset": 1717940, + "offset": 1718750, "size": 1990, }, "CreateAsyncFromSyncIterator.js": { - "offset": 1719920, - "size": 4540, + "offset": 1720740, + "size": 4560, }, "CreateDataProperty.js": { - "offset": 1724460, + "offset": 1725290, "size": 730, }, "CreateDataPropertyOrThrow.js": { - "offset": 1725180, + "offset": 1726020, "size": 690, }, "CreateHTML.js": { - "offset": 1725860, + "offset": 1726700, "size": 840, }, "CreateIterResultObject.js": { - "offset": 1726700, + "offset": 1727540, "size": 350, }, "CreateListFromArrayLike.js": { - "offset": 1727050, + "offset": 1727890, "size": 1370, }, "CreateNonEnumerableDataPropertyOrThrow.js": { - "offset": 1728420, + "offset": 1729250, "size": 760, }, "CreateRegExpStringIterator.js": { - "offset": 1729170, - "size": 3430, + "offset": 1730010, + "size": 3440, }, "DateFromTime.js": { - "offset": 1732600, + "offset": 1733440, "size": 990, }, "DateString.js": { - "offset": 1733580, + "offset": 1734430, "size": 990, }, "Day.js": { - "offset": 1734570, + "offset": 1735410, "size": 240, }, "DayFromYear.js": { - "offset": 1734800, + "offset": 1735650, "size": 260, }, "DayWithinYear.js": { - "offset": 1735060, + "offset": 1735900, "size": 290, }, "DaysInYear.js": { - "offset": 1735340, + "offset": 1736190, "size": 310, }, "DefineMethodProperty.js": { - "offset": 1735640, + "offset": 1736490, "size": 1510, }, "DefinePropertyOrThrow.js": { - "offset": 1737150, + "offset": 1737990, "size": 1170, }, "DeletePropertyOrThrow.js": { - "offset": 1738320, + "offset": 1739160, "size": 670, }, "DetachArrayBuffer.js": { - "offset": 1738980, + "offset": 1739830, "size": 1720, }, "EnumerableOwnProperties.js": { - "offset": 1740690, + "offset": 1741540, "size": 1010, }, "FindViaPredicate.js": { - "offset": 1741700, + "offset": 1742540, "size": 1540, }, "FlattenIntoArray.js": { - "offset": 1743230, + "offset": 1744080, "size": 1680, }, "FromPropertyDescriptor.js": { - "offset": 1744910, + "offset": 1745760, "size": 540, }, "Get.js": { - "offset": 1745450, + "offset": 1746290, "size": 570, }, "GetArrayBufferMaxByteLengthOption.js": { - "offset": 1746010, + "offset": 1746860, "size": 540, }, "GetGlobalObject.js": { - "offset": 1746540, + "offset": 1747390, "size": 200, }, "GetIterator.js": { - "offset": 1746740, + "offset": 1747590, "size": 1750, }, "GetIteratorFromMethod.js": { - "offset": 1748480, + "offset": 1749330, "size": 740, }, "GetMatchIndexPair.js": { - "offset": 1749220, + "offset": 1750070, "size": 840, }, "GetMatchString.js": { - "offset": 1750060, + "offset": 1750900, "size": 890, }, "GetMethod.js": { - "offset": 1750940, + "offset": 1751790, "size": 690, }, "GetNamedTimeZoneEpochNanoseconds.js": { - "offset": 1751630, + "offset": 1752470, "size": 2430, }, "GetOwnPropertyKeys.js": { - "offset": 1754050, + "offset": 1754900, "size": 840, }, "GetPromiseResolve.js": { - "offset": 1754880, + "offset": 1755730, "size": 640, }, "GetPrototypeFromConstructor.js": { - "offset": 1755520, + "offset": 1756370, "size": 1080, }, "GetStringIndex.js": { - "offset": 1756600, + "offset": 1757450, "size": 760, }, "GetSubstitution.js": { - "offset": 1757360, + "offset": 1758210, "size": 5980, }, "GetUTCEpochNanoseconds.js": { - "offset": 1763340, + "offset": 1764180, "size": 2560, }, "GetV.js": { - "offset": 1765900, + "offset": 1766740, "size": 500, }, "GetValueFromBuffer.js": { - "offset": 1766390, + "offset": 1767230, "size": 4530, }, "GetViewByteLength.js": { - "offset": 1770920, + "offset": 1771760, "size": 1580, }, "GroupBy.js": { - "offset": 1772490, + "offset": 1773340, "size": 2340, }, "HasEitherUnicodeFlag.js": { - "offset": 1774830, + "offset": 1775680, "size": 520, }, "HasOwnProperty.js": { - "offset": 1775340, + "offset": 1776200, "size": 540, }, "HasProperty.js": { - "offset": 1775880, + "offset": 1776730, "size": 490, }, "HourFromTime.js": { - "offset": 1776360, + "offset": 1777210, "size": 390, }, "InLeapYear.js": { - "offset": 1776750, + "offset": 1777600, "size": 470, }, "InstallErrorCause.js": { - "offset": 1777210, + "offset": 1778060, "size": 670, }, "InstanceofOperator.js": { - "offset": 1777870, + "offset": 1778720, "size": 930, }, "InternalizeJSONProperty.js": { - "offset": 1778800, + "offset": 1779650, "size": 2190, }, "Invoke.js": { - "offset": 1780980, + "offset": 1781830, "size": 680, }, "IsAccessorDescriptor.js": { - "offset": 1781650, + "offset": 1782500, "size": 560, }, "IsArray.js": { - "offset": 1782210, + "offset": 1783060, "size": 120, }, "IsArrayBufferViewOutOfBounds.js": { - "offset": 1782330, + "offset": 1783180, "size": 1050, }, "IsBigIntElementType.js": { - "offset": 1783370, + "offset": 1784220, "size": 200, }, "IsCallable.js": { - "offset": 1783570, + "offset": 1784420, "size": 110, }, "IsCompatiblePropertyDescriptor.js": { - "offset": 1783670, - "size": 370, + "offset": 1784520, + "size": 380, }, "IsConcatSpreadable.js": { - "offset": 1784030, + "offset": 1784900, "size": 640, }, "IsConstructor.js": { - "offset": 1784670, + "offset": 1785540, "size": 1150, }, "IsDataDescriptor.js": { - "offset": 1785810, + "offset": 1786680, "size": 570, }, "IsDetachedBuffer.js": { - "offset": 1786380, + "offset": 1787240, "size": 1000, }, "IsExtensible.js": { - "offset": 1787370, + "offset": 1788240, "size": 510, }, "IsFixedLengthArrayBuffer.js": { - "offset": 1787880, + "offset": 1788750, "size": 960, }, "IsGenericDescriptor.js": { - "offset": 1788830, + "offset": 1789700, "size": 660, }, "IsIntegralNumber.js": { - "offset": 1789490, + "offset": 1790360, "size": 360, }, "IsLessThan.js": { - "offset": 1789840, + "offset": 1790710, "size": 2760, }, "IsLooselyEqual.js": { - "offset": 1792600, + "offset": 1793470, "size": 1800, }, "IsNoTearConfiguration.js": { - "offset": 1794400, + "offset": 1795270, "size": 470, }, "IsPromise.js": { - "offset": 1794870, + "offset": 1795740, "size": 490, }, "IsPropertyKey.js": { - "offset": 1795350, + "offset": 1796220, "size": 230, }, "IsRegExp.js": { - "offset": 1795570, + "offset": 1796440, "size": 570, }, "IsSharedArrayBuffer.js": { - "offset": 1796140, + "offset": 1797010, "size": 430, }, "IsStrictlyEqual.js": { - "offset": 1796570, + "offset": 1797440, "size": 400, }, "IsStringWellFormedUnicode.js": { - "offset": 1796960, + "offset": 1797830, "size": 640, }, "IsTimeZoneOffsetString.js": { - "offset": 1797590, + "offset": 1798460, "size": 690, }, "IsTypedArrayOutOfBounds.js": { - "offset": 1798280, + "offset": 1799150, "size": 1970, }, "IsUnclampedIntegerElementType.js": { - "offset": 1800240, + "offset": 1801110, "size": 300, }, "IsUnsignedElementType.js": { - "offset": 1800540, + "offset": 1801410, "size": 270, }, "IsValidIntegerIndex.js": { - "offset": 1800810, + "offset": 1801670, "size": 1400, }, "IsViewOutOfBounds.js": { - "offset": 1802200, + "offset": 1803070, "size": 1730, }, "IsWordChar.js": { - "offset": 1803930, + "offset": 1804800, "size": 1170, }, "IteratorClose.js": { - "offset": 1805090, + "offset": 1805960, "size": 2390, }, "IteratorComplete.js": { - "offset": 1807480, + "offset": 1808350, "size": 460, }, "IteratorNext.js": { - "offset": 1807940, + "offset": 1808810, "size": 900, }, "IteratorStep.js": { - "offset": 1808830, + "offset": 1809700, "size": 660, }, "IteratorStepValue.js": { - "offset": 1809490, + "offset": 1810360, "size": 1190, }, "IteratorToList.js": { - "offset": 1810680, + "offset": 1811550, "size": 790, }, "IteratorValue.js": { - "offset": 1811460, + "offset": 1812330, "size": 410, }, "KeyForSymbol.js": { - "offset": 1811860, + "offset": 1812730, "size": 390, }, "LengthOfArrayLike.js": { - "offset": 1812250, + "offset": 1813120, "size": 470, }, "MakeDataViewWithBufferWitnessRecord.js": { - "offset": 1812710, + "offset": 1813580, "size": 940, }, "MakeDate.js": { - "offset": 1813650, + "offset": 1814520, "size": 340, }, "MakeDay.js": { - "offset": 1813980, + "offset": 1814850, "size": 1020, }, "MakeFullYear.js": { - "offset": 1814990, + "offset": 1815860, "size": 600, }, "MakeMatchIndicesIndexPairArray.js": { - "offset": 1815590, + "offset": 1816460, "size": 2710, }, "MakeTime.js": { - "offset": 1818300, + "offset": 1819170, "size": 770, }, "MakeTypedArrayWithBufferWitnessRecord.js": { - "offset": 1819070, + "offset": 1819930, "size": 940, }, "MinFromTime.js": { - "offset": 1820000, + "offset": 1820870, "size": 400, }, "MonthFromTime.js": { - "offset": 1820400, + "offset": 1821270, "size": 1130, }, "NewPromiseCapability.js": { - "offset": 1821530, + "offset": 1822400, "size": 1230, }, "NormalCompletion.js": { - "offset": 1822760, + "offset": 1823620, "size": 240, }, "Number": { "files": { "add.js": { - "offset": 1822990, + "offset": 1823860, "size": 800, }, "bitwiseAND.js": { - "offset": 1823790, + "offset": 1824660, "size": 430, }, "bitwiseNOT.js": { - "offset": 1824220, + "offset": 1825090, "size": 500, }, "bitwiseOR.js": { - "offset": 1824720, + "offset": 1825590, "size": 430, }, "bitwiseXOR.js": { - "offset": 1825140, + "offset": 1826010, "size": 430, }, "divide.js": { - "offset": 1825570, + "offset": 1826440, "size": 570, }, "equal.js": { - "offset": 1826130, + "offset": 1827000, "size": 480, }, "exponentiate.js": { - "offset": 1826610, + "offset": 1827480, "size": 1740, }, "index.js": { - "offset": 1828350, + "offset": 1829220, "size": 1280, }, "leftShift.js": { - "offset": 1829630, + "offset": 1830490, "size": 570, }, "lessThan.js": { - "offset": 1830190, + "offset": 1831060, "size": 570, }, "multiply.js": { - "offset": 1830750, - "size": 770, + "offset": 1831620, + "size": 830, }, "remainder.js": { - "offset": 1831520, + "offset": 1832440, "size": 1220, }, "sameValue.js": { - "offset": 1832740, + "offset": 1833660, "size": 570, }, "sameValueZero.js": { - "offset": 1833310, + "offset": 1834230, "size": 500, }, "signedRightShift.js": { - "offset": 1833810, + "offset": 1834730, "size": 580, }, "subtract.js": { - "offset": 1834380, + "offset": 1835300, "size": 460, }, "toString.js": { - "offset": 1834840, + "offset": 1835760, "size": 650, }, "unaryMinus.js": { - "offset": 1835490, + "offset": 1836410, "size": 400, }, "unsignedRightShift.js": { - "offset": 1835880, + "offset": 1836800, "size": 590, }, }, }, "NumberBitwiseOp.js": { - "offset": 1836460, + "offset": 1837380, "size": 690, }, "NumberToBigInt.js": { - "offset": 1837140, + "offset": 1838060, "size": 800, }, "NumericToRawBytes.js": { - "offset": 1837930, + "offset": 1838850, "size": 2030, }, "ObjectDefineProperties.js": { - "offset": 1839960, + "offset": 1840880, "size": 1280, }, "OrdinaryCreateFromConstructor.js": { - "offset": 1841230, + "offset": 1842150, "size": 830, }, "OrdinaryDefineOwnProperty.js": { - "offset": 1842060, + "offset": 1842980, "size": 2180, }, "OrdinaryGetOwnProperty.js": { - "offset": 1844230, + "offset": 1845150, "size": 1200, }, "OrdinaryGetPrototypeOf.js": { - "offset": 1845430, + "offset": 1846350, "size": 500, }, "OrdinaryHasInstance.js": { - "offset": 1845920, + "offset": 1846840, "size": 580, }, "OrdinaryHasProperty.js": { - "offset": 1846490, + "offset": 1847410, "size": 510, }, "OrdinaryObjectCreate.js": { - "offset": 1846990, + "offset": 1847910, "size": 1630, }, "OrdinarySetPrototypeOf.js": { - "offset": 1848620, + "offset": 1849540, "size": 1000, }, "OrdinaryToPrimitive.js": { - "offset": 1849620, + "offset": 1850540, "size": 1030, }, "ParseHexOctet.js": { - "offset": 1850640, + "offset": 1851560, "size": 1330, }, "PromiseResolve.js": { - "offset": 1851970, + "offset": 1852890, "size": 510, }, "QuoteJSONString.js": { - "offset": 1852480, + "offset": 1853400, "size": 1430, }, "RawBytesToNumeric.js": { - "offset": 1853900, + "offset": 1854820, "size": 2340, }, "RegExpCreate.js": { - "offset": 1856240, + "offset": 1857160, "size": 650, }, "RegExpExec.js": { - "offset": 1856880, + "offset": 1857800, "size": 830, }, "RegExpHasFlag.js": { - "offset": 1857710, + "offset": 1858630, "size": 1110, }, "RequireObjectCoercible.js": { - "offset": 1858820, + "offset": 1859740, "size": 90, }, "SameValue.js": { - "offset": 1858900, + "offset": 1859820, "size": 320, }, "SameValueNonNumber.js": { - "offset": 1859210, + "offset": 1860130, "size": 540, }, "SameValueZero.js": { - "offset": 1859740, + "offset": 1860670, "size": 230, }, "SecFromTime.js": { - "offset": 1859970, + "offset": 1860890, "size": 410, }, "Set.js": { - "offset": 1860370, + "offset": 1861290, "size": 1230, }, "SetFunctionLength.js": { - "offset": 1861600, + "offset": 1862520, "size": 1020, }, "SetFunctionName.js": { - "offset": 1862610, + "offset": 1863530, "size": 1290, }, "SetIntegrityLevel.js": { - "offset": 1863900, + "offset": 1864820, "size": 1840, }, "SetTypedArrayFromArrayLike.js": { - "offset": 1865740, + "offset": 1866660, "size": 2200, }, "SetTypedArrayFromTypedArray.js": { - "offset": 1867930, + "offset": 1868850, "size": 5280, }, "SetValueInBuffer.js": { - "offset": 1873210, + "offset": 1874130, "size": 4160, }, "SortIndexedProperties.js": { - "offset": 1877370, + "offset": 1878290, "size": 1520, }, "SpeciesConstructor.js": { - "offset": 1878890, + "offset": 1879810, "size": 850, }, "StringCreate.js": { - "offset": 1879730, + "offset": 1880650, "size": 1080, }, "StringGetOwnProperty.js": { - "offset": 1880810, + "offset": 1881730, "size": 1380, }, "StringIndexOf.js": { - "offset": 1882180, + "offset": 1883100, "size": 1030, }, "StringPad.js": { - "offset": 1883200, + "offset": 1884120, "size": 1570, }, "StringPaddingBuiltinsImpl.js": { - "offset": 1884770, + "offset": 1885690, "size": 880, }, "StringToBigInt.js": { - "offset": 1885650, + "offset": 1886570, "size": 590, }, "StringToCodePoints.js": { - "offset": 1886240, + "offset": 1887160, "size": 600, }, "StringToNumber.js": { - "offset": 1886830, + "offset": 1887750, "size": 1270, }, "SymbolDescriptiveString.js": { - "offset": 1888090, + "offset": 1889010, "size": 440, }, "SystemTimeZoneIdentifier.js": { - "offset": 1888530, + "offset": 1889450, "size": 530, }, "TestIntegrityLevel.js": { - "offset": 1889060, + "offset": 1889980, "size": 1210, }, "ThisBigIntValue.js": { - "offset": 1890260, + "offset": 1891180, "size": 460, }, "ThisBooleanValue.js": { - "offset": 1890720, + "offset": 1891640, "size": 330, }, "ThisNumberValue.js": { - "offset": 1891040, + "offset": 1891960, "size": 320, }, "ThisStringValue.js": { - "offset": 1891360, + "offset": 1892280, "size": 320, }, "ThisSymbolValue.js": { - "offset": 1891680, + "offset": 1892600, "size": 530, }, "ThrowCompletion.js": { - "offset": 1892210, + "offset": 1893130, "size": 240, }, "TimeClip.js": { - "offset": 1892450, + "offset": 1893370, "size": 440, }, "TimeFromYear.js": { - "offset": 1892890, + "offset": 1893810, "size": 270, }, "TimeString.js": { - "offset": 1893150, + "offset": 1894070, "size": 830, }, "TimeWithinDay.js": { - "offset": 1893970, + "offset": 1894890, "size": 250, }, "TimeZoneString.js": { - "offset": 1894220, + "offset": 1895140, "size": 1970, }, "ToBigInt.js": { - "offset": 1896180, + "offset": 1897100, "size": 1280, }, "ToBigInt64.js": { - "offset": 1897450, + "offset": 1898370, "size": 960, }, "ToBigUint64.js": { - "offset": 1898400, + "offset": 1899320, "size": 710, }, "ToBoolean.js": { - "offset": 1899110, + "offset": 1900030, "size": 130, }, "ToDateString.js": { - "offset": 1899240, + "offset": 1900160, "size": 520, }, "ToIndex.js": { - "offset": 1899760, + "offset": 1900680, "size": 540, }, "ToInt16.js": { - "offset": 1900290, + "offset": 1901210, "size": 550, }, "ToInt32.js": { - "offset": 1900830, + "offset": 1901760, "size": 700, }, "ToInt8.js": { - "offset": 1901530, + "offset": 1902450, "size": 500, }, "ToIntegerOrInfinity.js": { - "offset": 1902020, + "offset": 1902940, "size": 480, }, "ToLength.js": { - "offset": 1902490, + "offset": 1903410, "size": 440, }, "ToNumber.js": { - "offset": 1902930, + "offset": 1903850, "size": 800, }, "ToNumeric.js": { - "offset": 1903720, + "offset": 1904640, "size": 530, }, "ToObject.js": { - "offset": 1904240, + "offset": 1905160, "size": 130, }, "ToPrimitive.js": { - "offset": 1904370, + "offset": 1905290, "size": 290, }, "ToPropertyDescriptor.js": { - "offset": 1904650, + "offset": 1905570, "size": 1460, }, "ToPropertyKey.js": { - "offset": 1906100, + "offset": 1907030, "size": 400, }, "ToString.js": { - "offset": 1906500, + "offset": 1907430, "size": 390, }, "ToUint16.js": { - "offset": 1906890, + "offset": 1907810, "size": 590, }, "ToUint32.js": { - "offset": 1907480, + "offset": 1908400, "size": 600, }, "ToUint8.js": { - "offset": 1908070, + "offset": 1908990, "size": 460, }, "ToUint8Clamp.js": { - "offset": 1908530, + "offset": 1909450, "size": 610, }, "ToZeroPaddedDecimalString.js": { - "offset": 1909140, + "offset": 1910060, "size": 580, }, "TrimString.js": { - "offset": 1909710, + "offset": 1910630, "size": 760, }, "Type.js": { - "offset": 1910470, + "offset": 1911390, "size": 300, }, "TypedArrayByteLength.js": { - "offset": 1910760, + "offset": 1911680, "size": 1340, }, "TypedArrayCreateFromConstructor.js": { - "offset": 1912100, + "offset": 1913020, "size": 1950, }, "TypedArrayCreateSameType.js": { - "offset": 1914040, + "offset": 1914970, "size": 1280, }, "TypedArrayElementSize.js": { - "offset": 1915320, + "offset": 1916240, "size": 720, }, "TypedArrayElementType.js": { - "offset": 1916040, + "offset": 1916960, "size": 650, }, "TypedArrayGetElement.js": { - "offset": 1916690, + "offset": 1917610, "size": 1240, }, "TypedArrayLength.js": { - "offset": 1917920, + "offset": 1918840, "size": 1700, }, "TypedArraySetElement.js": { - "offset": 1919610, + "offset": 1920540, "size": 1530, }, "TypedArraySpeciesCreate.js": { - "offset": 1921140, + "offset": 1922060, "size": 1420, }, "UTF16EncodeCodePoint.js": { - "offset": 1922550, + "offset": 1923480, "size": 710, }, "UTF16SurrogatePairToCodePoint.js": { - "offset": 1923260, + "offset": 1924190, "size": 780, }, "UnicodeEscape.js": { - "offset": 1924040, + "offset": 1924960, "size": 790, }, "ValidateAndApplyPropertyDescriptor.js": { - "offset": 1924820, + "offset": 1925750, "size": 5740, }, "ValidateAtomicAccess.js": { - "offset": 1930560, + "offset": 1931480, "size": 1330, }, "ValidateAtomicAccessOnIntegerTypedArray.js": { - "offset": 1931890, + "offset": 1932810, "size": 690, }, "ValidateIntegerTypedArray.js": { - "offset": 1932570, + "offset": 1933500, "size": 1300, }, "ValidateTypedArray.js": { - "offset": 1933860, + "offset": 1934790, "size": 1060, }, "WeakRefDeref.js": { - "offset": 1934920, + "offset": 1935840, "size": 570, }, "WeekDay.js": { - "offset": 1935480, + "offset": 1936410, "size": 210, }, "WordCharacters.js": { - "offset": 1935690, + "offset": 1936610, "size": 1620, }, "YearFromTime.js": { - "offset": 1937310, + "offset": 1938230, "size": 400, }, "abs.js": { - "offset": 1937710, + "offset": 1938630, "size": 220, }, "clamp.js": { - "offset": 1937920, + "offset": 1938840, "size": 510, }, "floor.js": { - "offset": 1938430, + "offset": 1939350, "size": 290, }, "max.js": { - "offset": 1938720, + "offset": 1939640, "size": 140, }, "min.js": { - "offset": 1938850, + "offset": 1939770, "size": 140, }, "modulo.js": { - "offset": 1938990, + "offset": 1939910, "size": 170, }, "msFromTime.js": { - "offset": 1939150, + "offset": 1940070, "size": 260, }, "substring.js": { - "offset": 1939410, + "offset": 1940330, "size": 640, }, "tables": { "files": { "typed-array-objects.js": { - "offset": 1940050, + "offset": 1940970, "size": 780, }, }, }, "truncate.js": { - "offset": 1940820, + "offset": 1941740, "size": 470, }, }, @@ -46005,1219 +46021,1219 @@ exports[`node_module collectors > yarn max stack 2`] = ` "2025": { "files": { "AddEntriesFromIterable.js": { - "offset": 1941280, + "offset": 1942200, "size": 1430, }, "AddToKeptObjects.js": { - "offset": 1942700, + "offset": 1943620, "size": 540, }, "AddValueToKeyedGroup.js": { - "offset": 1943240, + "offset": 1944160, "size": 1300, }, "AdvanceStringIndex.js": { - "offset": 1944530, + "offset": 1945450, "size": 940, }, "AllCharacters.js": { - "offset": 1945470, + "offset": 1946390, "size": 1140, }, "ApplyStringOrNumericBinaryOperator.js": { - "offset": 1946600, + "offset": 1947520, "size": 3140, }, "ArrayBufferByteLength.js": { - "offset": 1949740, + "offset": 1950660, "size": 1780, }, "ArrayBufferCopyAndDetach.js": { - "offset": 1951510, + "offset": 1952430, "size": 3910, }, "ArrayCreate.js": { - "offset": 1955420, + "offset": 1956340, "size": 1430, }, "ArraySetLength.js": { - "offset": 1956840, + "offset": 1957760, "size": 2430, }, "ArraySpeciesCreate.js": { - "offset": 1959260, + "offset": 1960180, "size": 1370, }, "AsyncFromSyncIteratorContinuation.js": { - "offset": 1960630, + "offset": 1961550, "size": 1540, }, "AsyncIteratorClose.js": { - "offset": 1962160, + "offset": 1963080, "size": 1940, }, "BigInt": { "files": { "add.js": { - "offset": 1964100, + "offset": 1965020, "size": 390, }, "bitwiseAND.js": { - "offset": 1964480, + "offset": 1965400, "size": 430, }, "bitwiseNOT.js": { - "offset": 1964900, + "offset": 1965820, "size": 420, }, "bitwiseOR.js": { - "offset": 1965320, + "offset": 1966240, "size": 430, }, "bitwiseXOR.js": { - "offset": 1965740, + "offset": 1966660, "size": 430, }, "divide.js": { - "offset": 1966170, + "offset": 1967090, "size": 600, }, "equal.js": { - "offset": 1966770, + "offset": 1967690, "size": 390, }, "exponentiate.js": { - "offset": 1967150, + "offset": 1968070, "size": 860, }, "index.js": { - "offset": 1968010, + "offset": 1968930, "size": 1140, }, "leftShift.js": { - "offset": 1969140, + "offset": 1970060, "size": 400, }, "lessThan.js": { - "offset": 1969530, + "offset": 1970450, "size": 400, }, "multiply.js": { - "offset": 1969920, + "offset": 1970840, "size": 400, }, "remainder.js": { - "offset": 1970310, + "offset": 1971230, "size": 680, }, "signedRightShift.js": { - "offset": 1970990, + "offset": 1971910, "size": 430, }, "subtract.js": { - "offset": 1971410, + "offset": 1972330, "size": 400, }, "toString.js": { - "offset": 1971810, + "offset": 1972730, "size": 790, }, "unaryMinus.js": { - "offset": 1972590, + "offset": 1973510, "size": 480, }, "unsignedRightShift.js": { - "offset": 1973070, + "offset": 1973990, "size": 440, }, }, }, "BigIntBitwiseOp.js": { - "offset": 1973500, + "offset": 1974420, "size": 1670, }, "BinaryAnd.js": { - "offset": 1975160, + "offset": 1976080, "size": 320, }, "BinaryOr.js": { - "offset": 1975480, + "offset": 1976400, "size": 320, }, "BinaryXor.js": { - "offset": 1975790, + "offset": 1976710, "size": 320, }, "ByteListBitwiseOp.js": { - "offset": 1976110, + "offset": 1977030, "size": 1190, }, "ByteListEqual.js": { - "offset": 1977290, + "offset": 1978210, "size": 860, }, "Call.js": { - "offset": 1978150, + "offset": 1979070, "size": 610, }, "CanBeHeldWeakly.js": { - "offset": 1978750, + "offset": 1979670, "size": 410, }, "CanonicalNumericIndexString.js": { - "offset": 1979160, + "offset": 1980080, "size": 580, }, "Canonicalize.js": { - "offset": 1979730, + "offset": 1980650, "size": 1240, }, "CanonicalizeKeyedCollectionKey.js": { - "offset": 1980970, + "offset": 1981890, "size": 200, }, "CharacterComplement.js": { - "offset": 1981160, + "offset": 1982080, "size": 890, }, "CharacterRange.js": { - "offset": 1982040, + "offset": 1982960, "size": 1200, }, "ClearKeptObjects.js": { - "offset": 1983240, + "offset": 1984160, "size": 300, }, "CloneArrayBuffer.js": { - "offset": 1983540, + "offset": 1984460, "size": 1900, }, "CodePointAt.js": { - "offset": 1985440, + "offset": 1986360, "size": 1650, }, "CodePointsToString.js": { - "offset": 1987090, + "offset": 1988010, "size": 740, }, "CompareArrayElements.js": { - "offset": 1987820, + "offset": 1988740, "size": 1280, }, "CompareTypedArrayElements.js": { - "offset": 1989100, + "offset": 1990020, "size": 1360, }, "CompletePropertyDescriptor.js": { - "offset": 1990450, + "offset": 1991370, "size": 1110, }, "CompletionRecord.js": { - "offset": 1991560, + "offset": 1992480, "size": 1360, }, "CopyDataProperties.js": { - "offset": 1992920, + "offset": 1993840, "size": 1990, }, "CreateAsyncFromSyncIterator.js": { - "offset": 1994910, - "size": 4550, + "offset": 1995830, + "size": 4570, }, "CreateDataProperty.js": { - "offset": 1999450, + "offset": 2000390, "size": 730, }, "CreateDataPropertyOrThrow.js": { - "offset": 2000180, + "offset": 2001120, "size": 690, }, "CreateHTML.js": { - "offset": 2000860, + "offset": 2001800, "size": 840, }, "CreateIteratorFromClosure.js": { - "offset": 2001700, + "offset": 2002640, "size": 2030, }, "CreateIteratorResultObject.js": { - "offset": 2003720, + "offset": 2004660, "size": 360, }, "CreateListFromArrayLike.js": { - "offset": 2004070, + "offset": 2005010, "size": 1280, }, "CreateNonEnumerableDataPropertyOrThrow.js": { - "offset": 2005350, + "offset": 2006290, "size": 760, }, "CreateRegExpStringIterator.js": { - "offset": 2006110, - "size": 3450, + "offset": 2007050, + "size": 3460, }, "DateFromTime.js": { - "offset": 2009550, + "offset": 2010500, "size": 990, }, "DateString.js": { - "offset": 2010540, + "offset": 2011490, "size": 990, }, "Day.js": { - "offset": 2011520, + "offset": 2012470, "size": 240, }, "DayFromYear.js": { - "offset": 2011760, + "offset": 2012710, "size": 260, }, "DayWithinYear.js": { - "offset": 2012010, + "offset": 2012960, "size": 290, }, "DaysInYear.js": { - "offset": 2012300, + "offset": 2013250, "size": 310, }, "DefineMethodProperty.js": { - "offset": 2012600, + "offset": 2013550, "size": 1510, }, "DefinePropertyOrThrow.js": { - "offset": 2014100, + "offset": 2015050, "size": 1170, }, "DeletePropertyOrThrow.js": { - "offset": 2015270, + "offset": 2016220, "size": 670, }, "DetachArrayBuffer.js": { - "offset": 2015940, + "offset": 2016890, "size": 1720, }, "EncodeForRegExpEscape.js": { - "offset": 2017650, + "offset": 2018600, "size": 2100, }, "EnumerableOwnProperties.js": { - "offset": 2019740, + "offset": 2020690, "size": 1010, }, "FindViaPredicate.js": { - "offset": 2020750, + "offset": 2021700, "size": 1540, }, "FlattenIntoArray.js": { - "offset": 2022280, + "offset": 2023230, "size": 1680, }, "FromPropertyDescriptor.js": { - "offset": 2023960, + "offset": 2024910, "size": 540, }, "GeneratorResume.js": { - "offset": 2024500, + "offset": 2025450, "size": 920, }, "GeneratorResumeAbrupt.js": { - "offset": 2025410, + "offset": 2026360, "size": 1970, }, "GeneratorStart.js": { - "offset": 2027380, + "offset": 2028330, "size": 1630, }, "GeneratorValidate.js": { - "offset": 2029000, + "offset": 2029950, "size": 770, }, "Get.js": { - "offset": 2029770, + "offset": 2030720, "size": 570, }, "GetArrayBufferMaxByteLengthOption.js": { - "offset": 2030340, + "offset": 2031290, "size": 540, }, "GetGlobalObject.js": { - "offset": 2030870, + "offset": 2031820, "size": 200, }, "GetIterator.js": { - "offset": 2031060, + "offset": 2032010, "size": 1750, }, "GetIteratorDirect.js": { - "offset": 2032810, + "offset": 2033760, "size": 560, }, "GetIteratorFlattenable.js": { - "offset": 2033360, + "offset": 2034310, "size": 1460, }, "GetIteratorFromMethod.js": { - "offset": 2034810, + "offset": 2035760, "size": 740, }, "GetMatchIndexPair.js": { - "offset": 2035550, + "offset": 2036500, "size": 840, }, "GetMatchString.js": { - "offset": 2036390, + "offset": 2037340, "size": 890, }, "GetMethod.js": { - "offset": 2037270, + "offset": 2038220, "size": 690, }, "GetNamedTimeZoneEpochNanoseconds.js": { - "offset": 2037950, + "offset": 2038900, "size": 2430, }, "GetOwnPropertyKeys.js": { - "offset": 2040380, + "offset": 2041330, "size": 840, }, "GetPromiseResolve.js": { - "offset": 2041210, + "offset": 2042160, "size": 640, }, "GetPrototypeFromConstructor.js": { - "offset": 2041850, + "offset": 2042800, "size": 1080, }, "GetSetRecord.js": { - "offset": 2042930, + "offset": 2043880, "size": 1710, }, "GetStringIndex.js": { - "offset": 2044640, + "offset": 2045590, "size": 760, }, "GetSubstitution.js": { - "offset": 2045400, + "offset": 2046350, "size": 5980, }, "GetUTCEpochNanoseconds.js": { - "offset": 2051370, + "offset": 2052320, "size": 2560, }, "GetV.js": { - "offset": 2053930, + "offset": 2054880, "size": 500, }, "GetValueFromBuffer.js": { - "offset": 2054420, + "offset": 2055370, "size": 4530, }, "GetViewByteLength.js": { - "offset": 2058950, + "offset": 2059900, "size": 1580, }, "GroupBy.js": { - "offset": 2060530, - "size": 2390, + "offset": 2061480, + "size": 2400, }, "HasEitherUnicodeFlag.js": { - "offset": 2062920, + "offset": 2063870, "size": 520, }, "HasOwnProperty.js": { - "offset": 2063430, + "offset": 2064390, "size": 540, }, "HasProperty.js": { - "offset": 2063970, + "offset": 2064920, "size": 490, }, "HourFromTime.js": { - "offset": 2064450, + "offset": 2065410, "size": 390, }, "IfAbruptCloseIterator.js": { - "offset": 2064830, + "offset": 2065790, "size": 580, }, "InLeapYear.js": { - "offset": 2065410, + "offset": 2066370, "size": 470, }, "InstallErrorCause.js": { - "offset": 2065870, + "offset": 2066830, "size": 670, }, "InstanceofOperator.js": { - "offset": 2066530, + "offset": 2067490, "size": 930, }, "InternalizeJSONProperty.js": { - "offset": 2067460, + "offset": 2068420, "size": 2190, }, "Invoke.js": { - "offset": 2069640, + "offset": 2070600, "size": 680, }, "IsAccessorDescriptor.js": { - "offset": 2070310, + "offset": 2071270, "size": 560, }, "IsArray.js": { - "offset": 2070870, + "offset": 2071830, "size": 120, }, "IsArrayBufferViewOutOfBounds.js": { - "offset": 2070990, + "offset": 2071950, "size": 1050, }, "IsBigIntElementType.js": { - "offset": 2072030, + "offset": 2072990, "size": 200, }, "IsCallable.js": { - "offset": 2072230, + "offset": 2073190, "size": 110, }, "IsCompatiblePropertyDescriptor.js": { - "offset": 2072340, - "size": 370, + "offset": 2073290, + "size": 380, }, "IsConcatSpreadable.js": { - "offset": 2072700, + "offset": 2073670, "size": 640, }, "IsConstructor.js": { - "offset": 2073330, + "offset": 2074310, "size": 1150, }, "IsDataDescriptor.js": { - "offset": 2074480, + "offset": 2075450, "size": 570, }, "IsDetachedBuffer.js": { - "offset": 2075040, + "offset": 2076010, "size": 1000, }, "IsExtensible.js": { - "offset": 2076040, + "offset": 2077010, "size": 510, }, "IsFixedLengthArrayBuffer.js": { - "offset": 2076540, + "offset": 2077520, "size": 960, }, "IsGenericDescriptor.js": { - "offset": 2077500, + "offset": 2078470, "size": 660, }, "IsLessThan.js": { - "offset": 2078150, + "offset": 2079130, "size": 2760, }, "IsLooselyEqual.js": { - "offset": 2080910, + "offset": 2081890, "size": 1800, }, "IsNoTearConfiguration.js": { - "offset": 2082710, + "offset": 2083680, "size": 470, }, "IsPromise.js": { - "offset": 2083180, + "offset": 2084150, "size": 490, }, "IsRegExp.js": { - "offset": 2083660, + "offset": 2084640, "size": 570, }, "IsSharedArrayBuffer.js": { - "offset": 2084230, + "offset": 2085210, "size": 430, }, "IsStrictlyEqual.js": { - "offset": 2084660, + "offset": 2085630, "size": 400, }, "IsStringWellFormedUnicode.js": { - "offset": 2085050, + "offset": 2086030, "size": 640, }, "IsTimeZoneOffsetString.js": { - "offset": 2085680, + "offset": 2086660, "size": 690, }, "IsTypedArrayFixedLength.js": { - "offset": 2086370, + "offset": 2087340, "size": 940, }, "IsTypedArrayOutOfBounds.js": { - "offset": 2087300, + "offset": 2088280, "size": 1970, }, "IsUnclampedIntegerElementType.js": { - "offset": 2089270, + "offset": 2090240, "size": 300, }, "IsUnsignedElementType.js": { - "offset": 2089560, + "offset": 2090540, "size": 270, }, "IsValidIntegerIndex.js": { - "offset": 2089830, + "offset": 2090810, "size": 1400, }, "IsViewOutOfBounds.js": { - "offset": 2091220, + "offset": 2092200, "size": 1730, }, "IsWordChar.js": { - "offset": 2092950, + "offset": 2093930, "size": 1170, }, "IteratorClose.js": { - "offset": 2094120, + "offset": 2095090, "size": 2390, }, "IteratorComplete.js": { - "offset": 2096510, + "offset": 2097480, "size": 460, }, "IteratorNext.js": { - "offset": 2096960, + "offset": 2097940, "size": 1160, }, "IteratorStep.js": { - "offset": 2098120, + "offset": 2099100, "size": 1000, }, "IteratorStepValue.js": { - "offset": 2099120, + "offset": 2100100, "size": 870, }, "IteratorToList.js": { - "offset": 2099980, + "offset": 2100960, "size": 790, }, "IteratorValue.js": { - "offset": 2100770, + "offset": 2101740, "size": 410, }, "KeyForSymbol.js": { - "offset": 2101170, + "offset": 2102150, "size": 390, }, "LengthOfArrayLike.js": { - "offset": 2101550, + "offset": 2102530, "size": 470, }, "MakeDataViewWithBufferWitnessRecord.js": { - "offset": 2102020, + "offset": 2102990, "size": 940, }, "MakeDate.js": { - "offset": 2102950, + "offset": 2103930, "size": 340, }, "MakeDay.js": { - "offset": 2103290, + "offset": 2104260, "size": 1020, }, "MakeFullYear.js": { - "offset": 2104300, + "offset": 2105270, "size": 600, }, "MakeMatchIndicesIndexPairArray.js": { - "offset": 2104900, + "offset": 2105870, "size": 2710, }, "MakeTime.js": { - "offset": 2107610, + "offset": 2108580, "size": 770, }, "MakeTypedArrayWithBufferWitnessRecord.js": { - "offset": 2108370, + "offset": 2109350, "size": 940, }, "MinFromTime.js": { - "offset": 2109310, + "offset": 2110280, "size": 400, }, "MonthFromTime.js": { - "offset": 2109700, + "offset": 2110680, "size": 1130, }, "NewPromiseCapability.js": { - "offset": 2110830, + "offset": 2111810, "size": 1230, }, "NormalCompletion.js": { - "offset": 2112060, + "offset": 2113040, "size": 240, }, "Number": { "files": { "add.js": { - "offset": 2112300, + "offset": 2113270, "size": 800, }, "bitwiseAND.js": { - "offset": 2113100, + "offset": 2114070, "size": 430, }, "bitwiseNOT.js": { - "offset": 2113520, + "offset": 2114500, "size": 500, }, "bitwiseOR.js": { - "offset": 2114020, + "offset": 2115000, "size": 430, }, "bitwiseXOR.js": { - "offset": 2114450, + "offset": 2115420, "size": 430, }, "divide.js": { - "offset": 2114870, + "offset": 2115850, "size": 570, }, "equal.js": { - "offset": 2115440, + "offset": 2116410, "size": 480, }, "exponentiate.js": { - "offset": 2115920, + "offset": 2116890, "size": 1740, }, "index.js": { - "offset": 2117660, + "offset": 2118630, "size": 1280, }, "leftShift.js": { - "offset": 2118930, + "offset": 2119910, "size": 570, }, "lessThan.js": { - "offset": 2119490, + "offset": 2120470, "size": 570, }, "multiply.js": { - "offset": 2120060, - "size": 770, + "offset": 2121030, + "size": 830, }, "remainder.js": { - "offset": 2120830, + "offset": 2121850, "size": 1220, }, "sameValue.js": { - "offset": 2122050, + "offset": 2123070, "size": 570, }, "sameValueZero.js": { - "offset": 2122610, + "offset": 2123640, "size": 500, }, "signedRightShift.js": { - "offset": 2123110, + "offset": 2124140, "size": 580, }, "subtract.js": { - "offset": 2123690, + "offset": 2124720, "size": 460, }, "toString.js": { - "offset": 2124150, + "offset": 2125170, "size": 650, }, "unaryMinus.js": { - "offset": 2124790, + "offset": 2125820, "size": 400, }, "unsignedRightShift.js": { - "offset": 2125180, + "offset": 2126210, "size": 590, }, }, }, "NumberBitwiseOp.js": { - "offset": 2125760, + "offset": 2126790, "size": 690, }, "NumberToBigInt.js": { - "offset": 2126440, + "offset": 2127470, "size": 800, }, "NumericToRawBytes.js": { - "offset": 2127240, + "offset": 2128260, "size": 2190, }, "ObjectDefineProperties.js": { - "offset": 2129430, + "offset": 2130450, "size": 1280, }, "OrdinaryCreateFromConstructor.js": { - "offset": 2130700, + "offset": 2131730, "size": 830, }, "OrdinaryDefineOwnProperty.js": { - "offset": 2131530, + "offset": 2132550, "size": 2180, }, "OrdinaryGetOwnProperty.js": { - "offset": 2133700, + "offset": 2134730, "size": 1200, }, "OrdinaryGetPrototypeOf.js": { - "offset": 2134900, + "offset": 2135930, "size": 500, }, "OrdinaryHasInstance.js": { - "offset": 2135390, + "offset": 2136420, "size": 580, }, "OrdinaryHasProperty.js": { - "offset": 2135960, + "offset": 2136990, "size": 510, }, "OrdinaryObjectCreate.js": { - "offset": 2136460, + "offset": 2137490, "size": 1630, }, "OrdinarySetPrototypeOf.js": { - "offset": 2138090, + "offset": 2139120, "size": 1000, }, "OrdinaryToPrimitive.js": { - "offset": 2139090, + "offset": 2140120, "size": 1030, }, "ParseHexOctet.js": { - "offset": 2140110, + "offset": 2141140, "size": 1330, }, "PromiseResolve.js": { - "offset": 2141440, + "offset": 2142470, "size": 510, }, "QuoteJSONString.js": { - "offset": 2141950, + "offset": 2142970, "size": 1430, }, "RawBytesToNumeric.js": { - "offset": 2143370, + "offset": 2144400, "size": 2480, }, "RegExpCreate.js": { - "offset": 2145840, + "offset": 2146870, "size": 650, }, "RegExpExec.js": { - "offset": 2146490, + "offset": 2147510, "size": 830, }, "RegExpHasFlag.js": { - "offset": 2147320, + "offset": 2148340, "size": 1110, }, "RequireObjectCoercible.js": { - "offset": 2148420, + "offset": 2149450, "size": 90, }, "ReturnCompletion.js": { - "offset": 2148500, + "offset": 2149530, "size": 230, }, "SameType.js": { - "offset": 2148730, + "offset": 2149750, "size": 290, }, "SameValue.js": { - "offset": 2149010, + "offset": 2150040, "size": 320, }, "SameValueNonNumber.js": { - "offset": 2149320, + "offset": 2150350, "size": 540, }, "SameValueZero.js": { - "offset": 2149860, + "offset": 2150890, "size": 230, }, "SecFromTime.js": { - "offset": 2150080, + "offset": 2151110, "size": 410, }, "Set.js": { - "offset": 2150480, + "offset": 2151510, "size": 1230, }, "SetDataHas.js": { - "offset": 2151710, + "offset": 2152740, "size": 760, }, "SetDataIndex.js": { - "offset": 2152460, + "offset": 2153490, "size": 860, }, "SetDataSize.js": { - "offset": 2153320, + "offset": 2154350, "size": 690, }, "SetFunctionLength.js": { - "offset": 2154010, + "offset": 2155040, "size": 1020, }, "SetFunctionName.js": { - "offset": 2155030, + "offset": 2156060, "size": 1290, }, "SetIntegrityLevel.js": { - "offset": 2156320, + "offset": 2157340, "size": 1840, }, "SetTypedArrayFromArrayLike.js": { - "offset": 2158150, + "offset": 2159180, "size": 2200, }, "SetTypedArrayFromTypedArray.js": { - "offset": 2160350, + "offset": 2161380, "size": 5280, }, "SetValueInBuffer.js": { - "offset": 2165630, + "offset": 2166660, "size": 4160, }, "SetterThatIgnoresPrototypeProperties.js": { - "offset": 2169790, + "offset": 2170810, "size": 1250, }, "SortIndexedProperties.js": { - "offset": 2171030, + "offset": 2172060, "size": 1520, }, "SpeciesConstructor.js": { - "offset": 2172550, + "offset": 2173580, "size": 850, }, "StringCreate.js": { - "offset": 2173390, + "offset": 2174420, "size": 1080, }, "StringGetOwnProperty.js": { - "offset": 2174470, + "offset": 2175500, "size": 1380, }, "StringIndexOf.js": { - "offset": 2175840, + "offset": 2176870, "size": 1110, }, "StringLastIndexOf.js": { - "offset": 2176950, + "offset": 2177980, "size": 1100, }, "StringPad.js": { - "offset": 2178050, + "offset": 2179070, "size": 1570, }, "StringPaddingBuiltinsImpl.js": { - "offset": 2179610, + "offset": 2180640, "size": 880, }, "StringToBigInt.js": { - "offset": 2180490, + "offset": 2181520, "size": 590, }, "StringToCodePoints.js": { - "offset": 2181080, + "offset": 2182110, "size": 600, }, "StringToNumber.js": { - "offset": 2181670, + "offset": 2182700, "size": 1270, }, "SymbolDescriptiveString.js": { - "offset": 2182930, + "offset": 2183960, "size": 440, }, "SystemTimeZoneIdentifier.js": { - "offset": 2183370, + "offset": 2184400, "size": 530, }, "TestIntegrityLevel.js": { - "offset": 2183900, + "offset": 2184930, "size": 1210, }, "ThisBigIntValue.js": { - "offset": 2185100, + "offset": 2186130, "size": 460, }, "ThisBooleanValue.js": { - "offset": 2185560, + "offset": 2186590, "size": 330, }, "ThisNumberValue.js": { - "offset": 2185880, + "offset": 2186910, "size": 320, }, "ThisStringValue.js": { - "offset": 2186200, + "offset": 2187230, "size": 320, }, "ThisSymbolValue.js": { - "offset": 2186520, + "offset": 2187550, "size": 530, }, "ThrowCompletion.js": { - "offset": 2187050, + "offset": 2188080, "size": 240, }, "TimeClip.js": { - "offset": 2187290, + "offset": 2188320, "size": 440, }, "TimeFromYear.js": { - "offset": 2187730, + "offset": 2188760, "size": 270, }, "TimeString.js": { - "offset": 2187990, + "offset": 2189020, "size": 830, }, "TimeWithinDay.js": { - "offset": 2188810, + "offset": 2189840, "size": 250, }, "TimeZoneString.js": { - "offset": 2189060, + "offset": 2190090, "size": 1970, }, "ToBigInt.js": { - "offset": 2191020, + "offset": 2192050, "size": 1280, }, "ToBigInt64.js": { - "offset": 2192290, + "offset": 2193320, "size": 960, }, "ToBigUint64.js": { - "offset": 2193240, + "offset": 2194270, "size": 710, }, "ToBoolean.js": { - "offset": 2193950, + "offset": 2194980, "size": 130, }, "ToDateString.js": { - "offset": 2194080, + "offset": 2195110, "size": 520, }, "ToIndex.js": { - "offset": 2194600, + "offset": 2195630, "size": 540, }, "ToInt16.js": { - "offset": 2195140, + "offset": 2196160, "size": 550, }, "ToInt32.js": { - "offset": 2195680, + "offset": 2196700, "size": 700, }, "ToInt8.js": { - "offset": 2196370, + "offset": 2197400, "size": 500, }, "ToIntegerOrInfinity.js": { - "offset": 2196860, + "offset": 2197890, "size": 480, }, "ToLength.js": { - "offset": 2197330, + "offset": 2198360, "size": 440, }, "ToNumber.js": { - "offset": 2197770, + "offset": 2198800, "size": 800, }, "ToNumeric.js": { - "offset": 2198560, + "offset": 2199590, "size": 530, }, "ToObject.js": { - "offset": 2199080, + "offset": 2200110, "size": 130, }, "ToPrimitive.js": { - "offset": 2199210, + "offset": 2200240, "size": 290, }, "ToPropertyDescriptor.js": { - "offset": 2199490, + "offset": 2200520, "size": 1460, }, "ToPropertyKey.js": { - "offset": 2200950, + "offset": 2201970, "size": 400, }, "ToString.js": { - "offset": 2201350, + "offset": 2202370, "size": 390, }, "ToUint16.js": { - "offset": 2201740, + "offset": 2202760, "size": 590, }, "ToUint32.js": { - "offset": 2202320, + "offset": 2203350, "size": 600, }, "ToUint8.js": { - "offset": 2202910, + "offset": 2203940, "size": 460, }, "ToUint8Clamp.js": { - "offset": 2203370, + "offset": 2204400, "size": 610, }, "ToZeroPaddedDecimalString.js": { - "offset": 2203980, + "offset": 2205010, "size": 580, }, "TrimString.js": { - "offset": 2204550, + "offset": 2205580, "size": 760, }, "TypedArrayByteLength.js": { - "offset": 2205310, + "offset": 2206340, "size": 1340, }, "TypedArrayCreateFromConstructor.js": { - "offset": 2206650, + "offset": 2207680, "size": 1950, }, "TypedArrayCreateSameType.js": { - "offset": 2208590, + "offset": 2209620, "size": 1280, }, "TypedArrayElementSize.js": { - "offset": 2209870, + "offset": 2210900, "size": 720, }, "TypedArrayElementType.js": { - "offset": 2210590, + "offset": 2211610, "size": 650, }, "TypedArrayGetElement.js": { - "offset": 2211230, + "offset": 2212260, "size": 1240, }, "TypedArrayLength.js": { - "offset": 2212460, + "offset": 2213500, "size": 1700, }, "TypedArraySetElement.js": { - "offset": 2214160, + "offset": 2215190, "size": 1530, }, "TypedArraySpeciesCreate.js": { - "offset": 2215680, + "offset": 2216710, "size": 1420, }, "UTF16EncodeCodePoint.js": { - "offset": 2217100, + "offset": 2218130, "size": 710, }, "UTF16SurrogatePairToCodePoint.js": { - "offset": 2217800, + "offset": 2218840, "size": 780, }, "UnicodeEscape.js": { - "offset": 2218580, + "offset": 2219620, "size": 790, }, "UpdateModifiers.js": { - "offset": 2219370, + "offset": 2220400, "size": 2100, }, "ValidateAndApplyPropertyDescriptor.js": { - "offset": 2221460, + "offset": 2222490, "size": 5740, }, "ValidateAtomicAccess.js": { - "offset": 2227200, + "offset": 2228230, "size": 1330, }, "ValidateAtomicAccessOnIntegerTypedArray.js": { - "offset": 2228520, + "offset": 2229560, "size": 690, }, "ValidateIntegerTypedArray.js": { - "offset": 2229210, + "offset": 2230240, "size": 1300, }, "ValidateTypedArray.js": { - "offset": 2230500, + "offset": 2231530, "size": 1060, }, "WeakRefDeref.js": { - "offset": 2231550, + "offset": 2232590, "size": 570, }, "WeekDay.js": { - "offset": 2232120, + "offset": 2233150, "size": 210, }, "WordCharacters.js": { - "offset": 2232330, + "offset": 2233360, "size": 1620, }, "YearFromTime.js": { - "offset": 2233950, + "offset": 2234980, "size": 400, }, "abs.js": { - "offset": 2234340, + "offset": 2235380, "size": 220, }, "clamp.js": { - "offset": 2234560, + "offset": 2235590, "size": 510, }, "floor.js": { - "offset": 2235070, + "offset": 2236100, "size": 290, }, "max.js": { - "offset": 2235360, + "offset": 2236380, "size": 140, }, "min.js": { - "offset": 2235490, + "offset": 2236520, "size": 140, }, "modulo.js": { - "offset": 2235620, + "offset": 2236650, "size": 170, }, "msFromTime.js": { - "offset": 2235790, + "offset": 2236820, "size": 260, }, "substring.js": { - "offset": 2236040, + "offset": 2237070, "size": 640, }, "tables": { "files": { "typed-array-objects.js": { - "offset": 2236680, + "offset": 2237710, "size": 830, }, }, }, "truncate.js": { - "offset": 2237510, + "offset": 2238540, "size": 470, }, }, @@ -47225,601 +47241,601 @@ exports[`node_module collectors > yarn max stack 2`] = ` "5": { "files": { "AbstractEqualityComparison.js": { - "offset": 2237970, + "offset": 2239000, "size": 1140, }, "AbstractRelationalComparison.js": { - "offset": 2239100, + "offset": 2240130, "size": 1580, }, "Canonicalize.js": { - "offset": 2240670, + "offset": 2241710, "size": 850, }, "CheckObjectCoercible.js": { - "offset": 2241520, + "offset": 2242550, "size": 300, }, "DateFromTime.js": { - "offset": 2241820, + "offset": 2242850, "size": 990, }, "Day.js": { - "offset": 2242810, + "offset": 2243840, "size": 240, }, "DayFromYear.js": { - "offset": 2243040, + "offset": 2244070, "size": 260, }, "DayWithinYear.js": { - "offset": 2243300, + "offset": 2244330, "size": 290, }, "DaysInYear.js": { - "offset": 2243580, + "offset": 2244610, "size": 310, }, "FromPropertyDescriptor.js": { - "offset": 2243880, + "offset": 2244920, "size": 1050, }, "HourFromTime.js": { - "offset": 2244930, + "offset": 2245970, "size": 390, }, "InLeapYear.js": { - "offset": 2245320, + "offset": 2246350, "size": 470, }, "IsAccessorDescriptor.js": { - "offset": 2245780, + "offset": 2246810, "size": 560, }, "IsCallable.js": { - "offset": 2246340, + "offset": 2247370, "size": 110, }, "IsDataDescriptor.js": { - "offset": 2246440, + "offset": 2247480, "size": 570, }, "IsGenericDescriptor.js": { - "offset": 2247000, + "offset": 2248040, "size": 630, }, "IsPropertyDescriptor.js": { - "offset": 2247630, + "offset": 2248660, "size": 320, }, "MakeDate.js": { - "offset": 2247940, + "offset": 2248970, "size": 340, }, "MakeDay.js": { - "offset": 2248280, + "offset": 2249310, "size": 930, }, "MakeTime.js": { - "offset": 2249200, + "offset": 2250230, "size": 710, }, "MinFromTime.js": { - "offset": 2249900, + "offset": 2250930, "size": 400, }, "MonthFromTime.js": { - "offset": 2250300, + "offset": 2251330, "size": 1130, }, "SameValue.js": { - "offset": 2251430, + "offset": 2252460, "size": 320, }, "SecFromTime.js": { - "offset": 2251740, + "offset": 2252770, "size": 410, }, "StrictEqualityComparison.js": { - "offset": 2252140, + "offset": 2253170, "size": 320, }, "TimeClip.js": { - "offset": 2252460, + "offset": 2253490, "size": 440, }, "TimeFromYear.js": { - "offset": 2252900, + "offset": 2253930, "size": 270, }, "TimeWithinDay.js": { - "offset": 2253160, + "offset": 2254190, "size": 250, }, "ToBoolean.js": { - "offset": 2253410, + "offset": 2254440, "size": 130, }, "ToInt32.js": { - "offset": 2253540, + "offset": 2254570, "size": 180, }, "ToInteger.js": { - "offset": 2253710, + "offset": 2254740, "size": 560, }, "ToNumber.js": { - "offset": 2254270, + "offset": 2255300, "size": 930, }, "ToObject.js": { - "offset": 2255200, + "offset": 2256230, "size": 120, }, "ToPrimitive.js": { - "offset": 2255320, + "offset": 2256350, "size": 120, }, "ToPropertyDescriptor.js": { - "offset": 2255430, + "offset": 2256460, "size": 1460, }, "ToString.js": { - "offset": 2256880, + "offset": 2257920, "size": 230, }, "ToUint16.js": { - "offset": 2257110, + "offset": 2258140, "size": 610, }, "ToUint32.js": { - "offset": 2257720, + "offset": 2258750, "size": 180, }, "Type.js": { - "offset": 2257890, + "offset": 2258920, "size": 460, }, "WeekDay.js": { - "offset": 2258350, + "offset": 2259380, "size": 210, }, "YearFromTime.js": { - "offset": 2258550, + "offset": 2259590, "size": 400, }, "abs.js": { - "offset": 2258950, + "offset": 2259980, "size": 170, }, "floor.js": { - "offset": 2259120, + "offset": 2260150, "size": 240, }, "modulo.js": { - "offset": 2259360, + "offset": 2260390, "size": 170, }, "msFromTime.js": { - "offset": 2259520, + "offset": 2260560, "size": 260, }, }, }, "GetIntrinsic.js": { - "offset": 2259780, + "offset": 2260810, "size": 90, }, "LICENSE": { - "offset": 2259870, + "offset": 2260900, "size": 1090, }, "es2015.js": { - "offset": 2260950, + "offset": 2261980, "size": 7050, }, "es2016.js": { - "offset": 2267990, + "offset": 2269020, "size": 7450, }, "es2017.js": { - "offset": 2275440, + "offset": 2276470, "size": 7900, }, "es2018.js": { - "offset": 2283340, + "offset": 2284370, "size": 8540, }, "es2019.js": { - "offset": 2291870, + "offset": 2292900, "size": 8790, }, "es2020.js": { - "offset": 2300660, + "offset": 2301690, "size": 10080, }, "es2021.js": { - "offset": 2310740, + "offset": 2311770, "size": 10950, }, "es2022.js": { - "offset": 2321690, + "offset": 2322720, "size": 11720, }, "es2023.js": { - "offset": 2333400, + "offset": 2334440, "size": 12450, }, "es2024.js": { - "offset": 2345850, + "offset": 2346880, "size": 13790, }, "es2025.js": { - "offset": 2359630, + "offset": 2360670, "size": 14850, }, "es5.js": { - "offset": 2374480, + "offset": 2375510, "size": 2080, }, "es6.js": { - "offset": 2376550, + "offset": 2377580, "size": 60, }, "es7.js": { - "offset": 2376600, + "offset": 2377630, "size": 60, }, "eslint.config.mjs": { - "offset": 2376650, + "offset": 2377690, "size": 2640, }, "helpers": { "files": { "CharSet.js": { - "offset": 2379290, + "offset": 2380320, "size": 3350, }, "DefineOwnProperty.js": { - "offset": 2382640, + "offset": 2383670, "size": 1500, }, "IsArray.js": { - "offset": 2384130, + "offset": 2385170, "size": 340, }, "OwnPropertyKeys.js": { - "offset": 2384470, + "offset": 2385510, "size": 90, }, "assertRecord.js": { - "offset": 2384560, + "offset": 2385590, "size": 1180, }, "assign.js": { - "offset": 2385740, + "offset": 2386770, "size": 470, }, "bytesAsFloat16.js": { - "offset": 2386200, + "offset": 2387230, "size": 1240, }, "bytesAsFloat32.js": { - "offset": 2387430, + "offset": 2388460, "size": 1170, }, "bytesAsFloat64.js": { - "offset": 2388600, + "offset": 2389630, "size": 1510, }, "bytesAsInteger.js": { - "offset": 2390110, + "offset": 2391140, "size": 1000, }, "callBind.js": { - "offset": 2391110, + "offset": 2392140, "size": 90, }, "callBound.js": { - "offset": 2391200, + "offset": 2392230, "size": 90, }, "caseFolding.json": { - "offset": 2391280, + "offset": 2392310, "size": 22350, }, "defaultEndianness.js": { - "offset": 2413630, + "offset": 2414660, "size": 610, }, "every.js": { - "offset": 2414230, + "offset": 2415270, "size": 200, }, "forEach.js": { - "offset": 2414430, + "offset": 2415460, "size": 190, }, "fractionToBinaryString.js": { - "offset": 2414620, + "offset": 2415650, "size": 850, }, "fromPropertyDescriptor.js": { - "offset": 2415460, + "offset": 2416490, "size": 580, }, "getInferredName.js": { - "offset": 2416040, + "offset": 2417070, "size": 120, }, "getIteratorMethod.js": { - "offset": 2416150, + "offset": 2417190, "size": 1200, }, "getOwnPropertyDescriptor.js": { - "offset": 2417350, + "offset": 2418380, "size": 80, }, "getProto.js": { - "offset": 2417430, + "offset": 2418460, "size": 90, }, "getSymbolDescription.js": { - "offset": 2417510, + "offset": 2418550, "size": 100, }, "intToBinaryString.js": { - "offset": 2417610, + "offset": 2418640, "size": 500, }, "integerToNBytes.js": { - "offset": 2418110, + "offset": 2419140, "size": 1090, }, "isAbstractClosure.js": { - "offset": 2419200, + "offset": 2420230, "size": 250, }, "isByteValue.js": { - "offset": 2419440, + "offset": 2420470, "size": 160, }, "isCodePoint.js": { - "offset": 2419590, + "offset": 2420630, "size": 150, }, "isFinite.js": { - "offset": 2419740, + "offset": 2420770, "size": 100, }, "isFullyPopulatedPropertyDescriptor.js": { - "offset": 2419840, + "offset": 2420870, "size": 330, }, "isInteger.js": { - "offset": 2420160, + "offset": 2421190, "size": 100, }, "isLeadingSurrogate.js": { - "offset": 2420260, + "offset": 2421290, "size": 160, }, "isLineTerminator.js": { - "offset": 2420420, + "offset": 2421450, "size": 190, }, "isNaN.js": { - "offset": 2420610, + "offset": 2421640, "size": 90, }, "isNegativeZero.js": { - "offset": 2420690, + "offset": 2421730, "size": 140, }, "isObject.js": { - "offset": 2420820, + "offset": 2421860, "size": 100, }, "isPrefixOf.js": { - "offset": 2420920, + "offset": 2421960, "size": 300, }, "isPrimitive.js": { - "offset": 2421220, + "offset": 2422250, "size": 160, }, "isPropertyKey.js": { - "offset": 2421370, + "offset": 2422400, "size": 140, }, "isSamePropertyDescriptor.js": { - "offset": 2421510, + "offset": 2422540, "size": 390, }, "isSameType.js": { - "offset": 2421900, + "offset": 2422930, "size": 250, }, "isStringOrHole.js": { - "offset": 2422150, + "offset": 2423180, "size": 340, }, "isStringOrUndefined.js": { - "offset": 2422480, + "offset": 2423520, "size": 140, }, "isTrailingSurrogate.js": { - "offset": 2422620, + "offset": 2423650, "size": 160, }, "maxSafeInteger.js": { - "offset": 2422780, + "offset": 2423810, "size": 120, }, "maxValue.js": { - "offset": 2422890, - "size": 80, + "offset": 2423930, + "size": 110, }, "mod.js": { - "offset": 2422970, + "offset": 2424030, "size": 100, }, "modBigInt.js": { - "offset": 2423060, + "offset": 2424130, "size": 190, }, "padTimeComponent.js": { - "offset": 2423250, + "offset": 2424310, "size": 220, }, "records": { "files": { "async-generator-request-record.js": { - "offset": 2423460, + "offset": 2424520, "size": 410, }, "data-view-with-buffer-witness-record.js": { - "offset": 2423870, + "offset": 2424930, "size": 540, }, "iterator-record-2023.js": { - "offset": 2424400, + "offset": 2425470, "size": 220, }, "iterator-record.js": { - "offset": 2424610, + "offset": 2425680, "size": 300, }, "match-record.js": { - "offset": 2424910, - "size": 560, + "offset": 2425980, + "size": 660, }, "promise-capability-record.js": { - "offset": 2425470, + "offset": 2426630, "size": 500, }, "property-descriptor.js": { - "offset": 2425970, + "offset": 2427120, "size": 870, }, "regexp-record.js": { - "offset": 2426830, + "offset": 2427990, "size": 850, }, "set-record.js": { - "offset": 2427680, + "offset": 2428840, "size": 590, }, "typed-array-with-buffer-witness-record.js": { - "offset": 2428270, + "offset": 2429430, "size": 550, }, }, }, "reduce.js": { - "offset": 2428820, + "offset": 2429970, "size": 180, }, "regexTester.js": { - "offset": 2428990, + "offset": 2430140, "size": 100, }, "setProto.js": { - "offset": 2429080, + "offset": 2430230, "size": 90, }, "sign.js": { - "offset": 2429160, + "offset": 2430320, "size": 100, }, "some.js": { - "offset": 2429260, + "offset": 2430410, "size": 200, }, "timeConstants.js": { - "offset": 2429450, + "offset": 2430600, "size": 450, }, "timeValue.js": { - "offset": 2429900, + "offset": 2431050, "size": 160, }, "typedArrayConstructors.js": { - "offset": 2430050, + "offset": 2431210, "size": 840, }, "valueToFloat16Bytes.js": { - "offset": 2430880, + "offset": 2432040, "size": 1780, }, "valueToFloat32Bytes.js": { - "offset": 2432650, + "offset": 2433810, "size": 1650, }, "valueToFloat64Bytes.js": { - "offset": 2434300, - "size": 2990, + "offset": 2435460, + "size": 3080, }, }, }, "index.js": { - "offset": 2437290, + "offset": 2438540, "size": 840, }, "operations": { "files": { "2015.js": { - "offset": 2438120, + "offset": 2439370, "size": 24060, }, "2016.js": { - "offset": 2462180, + "offset": 2463430, "size": 26550, }, "2017.js": { - "offset": 2488720, + "offset": 2489970, "size": 30900, }, "2018.js": { - "offset": 2519620, + "offset": 2520870, "size": 33500, }, "2019.js": { - "offset": 2553110, + "offset": 2554360, "size": 34390, }, "2020.js": { - "offset": 2587500, + "offset": 2588750, "size": 40870, }, "2021.js": { - "offset": 2628370, + "offset": 2629620, "size": 42900, }, "2022.js": { - "offset": 2671260, + "offset": 2672510, "size": 45950, }, "2023.js": { - "offset": 2717210, + "offset": 2718460, "size": 48240, }, "2024.js": { - "offset": 2765440, + "offset": 2766690, "size": 51780, }, "2025.js": { - "offset": 2817220, + "offset": 2818470, "size": 54150, }, "es5.js": { - "offset": 2871370, + "offset": 2872620, "size": 3220, }, }, }, "package.json": { - "offset": 2874580, + "offset": 2875830, "size": 4280, }, }, @@ -47827,23 +47843,23 @@ exports[`node_module collectors > yarn max stack 2`] = ` "es-define-property": { "files": { ".nycrc": { - "offset": 2878850, + "offset": 2880100, "size": 140, }, "LICENSE": { - "offset": 2878990, + "offset": 2880240, "size": 1080, }, "index.js": { - "offset": 2880060, + "offset": 2881310, "size": 290, }, "package.json": { - "offset": 2880350, + "offset": 2881600, "size": 1340, }, "tsconfig.json": { - "offset": 2881690, + "offset": 2882940, "size": 140, }, }, @@ -47851,43 +47867,43 @@ exports[`node_module collectors > yarn max stack 2`] = ` "es-errors": { "files": { "LICENSE": { - "offset": 2881830, + "offset": 2883080, "size": 1080, }, "eval.js": { - "offset": 2882900, + "offset": 2884150, "size": 80, }, "index.js": { - "offset": 2882970, + "offset": 2884220, "size": 70, }, "package.json": { - "offset": 2883040, + "offset": 2884290, "size": 1340, }, "range.js": { - "offset": 2884370, + "offset": 2885620, "size": 80, }, "ref.js": { - "offset": 2884450, + "offset": 2885700, "size": 80, }, "syntax.js": { - "offset": 2884530, + "offset": 2885780, "size": 80, }, "tsconfig.json": { - "offset": 2884610, + "offset": 2885860, "size": 3170, }, "type.js": { - "offset": 2887780, + "offset": 2889030, "size": 80, }, "uri.js": { - "offset": 2887850, + "offset": 2889100, "size": 80, }, }, @@ -47895,31 +47911,31 @@ exports[`node_module collectors > yarn max stack 2`] = ` "es-object-atoms": { "files": { "LICENSE": { - "offset": 2887930, + "offset": 2889180, "size": 1080, }, "RequireObjectCoercible.js": { - "offset": 2889000, + "offset": 2890250, "size": 320, }, "ToObject.js": { - "offset": 2889310, + "offset": 2890560, "size": 250, }, "index.js": { - "offset": 2889560, + "offset": 2890810, "size": 70, }, "isObject.js": { - "offset": 2889630, + "offset": 2890880, "size": 170, }, "package.json": { - "offset": 2889790, + "offset": 2891040, "size": 1430, }, "tsconfig.json": { - "offset": 2891210, + "offset": 2892460, "size": 90, }, }, @@ -47927,23 +47943,23 @@ exports[`node_module collectors > yarn max stack 2`] = ` "es-set-tostringtag": { "files": { ".nycrc": { - "offset": 2891290, + "offset": 2892540, "size": 140, }, "LICENSE": { - "offset": 2891430, + "offset": 2892680, "size": 1080, }, "index.js": { - "offset": 2892510, + "offset": 2893750, "size": 1220, }, "package.json": { - "offset": 2893720, + "offset": 2894970, "size": 1540, }, "tsconfig.json": { - "offset": 2895250, + "offset": 2896500, "size": 120, }, }, @@ -47951,51 +47967,51 @@ exports[`node_module collectors > yarn max stack 2`] = ` "es-to-primitive": { "files": { ".editorconfig": { - "offset": 2895370, + "offset": 2896620, "size": 290, }, ".eslintignore": { - "offset": 2895650, + "offset": 2896900, "size": 10, }, ".nycrc": { - "offset": 2895660, + "offset": 2896910, "size": 140, }, "LICENSE": { - "offset": 2895800, + "offset": 2897050, "size": 1090, }, "es2015.js": { - "offset": 2896880, + "offset": 2898130, "size": 2710, }, "es5.js": { - "offset": 2899590, + "offset": 2900840, "size": 1720, }, "es6.js": { - "offset": 2901310, + "offset": 2902560, "size": 90, }, "helpers": { "files": { "isPrimitive.js": { - "offset": 2901400, + "offset": 2902640, "size": 260, }, }, }, "index.js": { - "offset": 2901650, + "offset": 2902900, "size": 570, }, "package.json": { - "offset": 2902220, + "offset": 2903470, "size": 1720, }, "tsconfig.json": { - "offset": 2903940, + "offset": 2905190, "size": 120, }, }, @@ -48003,15 +48019,15 @@ exports[`node_module collectors > yarn max stack 2`] = ` "escape-string-regexp": { "files": { "index.js": { - "offset": 2904060, + "offset": 2905310, "size": 230, }, "license": { - "offset": 2904280, + "offset": 2905530, "size": 1120, }, "package.json": { - "offset": 2905400, + "offset": 2906650, "size": 590, }, }, @@ -48019,27 +48035,27 @@ exports[`node_module collectors > yarn max stack 2`] = ` "for-each": { "files": { ".editorconfig": { - "offset": 2905990, + "offset": 2907240, "size": 290, }, ".nycrc": { - "offset": 2906270, + "offset": 2907520, "size": 130, }, "LICENSE": { - "offset": 2906400, + "offset": 2907650, "size": 1080, }, "index.js": { - "offset": 2907480, + "offset": 2908730, "size": 2380, }, "package.json": { - "offset": 2909850, + "offset": 2911100, "size": 1150, }, "tsconfig.json": { - "offset": 2911000, + "offset": 2912250, "size": 100, }, }, @@ -48047,23 +48063,23 @@ exports[`node_module collectors > yarn max stack 2`] = ` "function-bind": { "files": { ".nycrc": { - "offset": 2911090, + "offset": 2912340, "size": 220, }, "LICENSE": { - "offset": 2911310, + "offset": 2912560, "size": 1060, }, "implementation.js": { - "offset": 2912360, + "offset": 2913610, "size": 2050, }, "index.js": { - "offset": 2914400, + "offset": 2915650, "size": 130, }, "package.json": { - "offset": 2914530, + "offset": 2915780, "size": 1330, }, }, @@ -48071,47 +48087,47 @@ exports[`node_module collectors > yarn max stack 2`] = ` "function.prototype.name": { "files": { ".editorconfig": { - "offset": 2915860, + "offset": 2917110, "size": 340, }, ".nycrc": { - "offset": 2916190, + "offset": 2917440, "size": 140, }, "LICENSE": { - "offset": 2916330, + "offset": 2917580, "size": 1090, }, "auto.js": { - "offset": 2917410, + "offset": 2918660, "size": 40, }, "helpers": { "files": { "functionsHaveNames.js": { - "offset": 2917450, + "offset": 2918700, "size": 100, }, }, }, "implementation.js": { - "offset": 2917550, + "offset": 2918800, "size": 2050, }, "index.js": { - "offset": 2919600, + "offset": 2920850, "size": 380, }, "package.json": { - "offset": 2919970, + "offset": 2921220, "size": 1930, }, "polyfill.js": { - "offset": 2921890, + "offset": 2923140, "size": 140, }, "shim.js": { - "offset": 2922030, + "offset": 2923280, "size": 920, }, }, @@ -48119,23 +48135,23 @@ exports[`node_module collectors > yarn max stack 2`] = ` "functions-have-names": { "files": { ".editorconfig": { - "offset": 2922940, + "offset": 2924190, "size": 290, }, ".nycrc": { - "offset": 2923230, + "offset": 2924480, "size": 140, }, "LICENSE": { - "offset": 2923370, + "offset": 2924620, "size": 1080, }, "index.js": { - "offset": 2924440, + "offset": 2925690, "size": 780, }, "package.json": { - "offset": 2925210, + "offset": 2926460, "size": 920, }, }, @@ -48143,39 +48159,39 @@ exports[`node_module collectors > yarn max stack 2`] = ` "generator-function": { "files": { ".nycrc": { - "offset": 2926120, + "offset": 2927370, "size": 140, }, "LICENSE.md": { - "offset": 2926260, + "offset": 2927510, "size": 1070, }, "index.d.mts": { - "offset": 2927330, + "offset": 2928580, "size": 100, }, "index.js": { - "offset": 2927430, + "offset": 2928680, "size": 230, }, "index.mjs": { - "offset": 2927660, + "offset": 2928910, "size": 140, }, "legacy.js": { - "offset": 2927790, + "offset": 2929040, "size": 380, }, "package.json": { - "offset": 2928170, + "offset": 2929420, "size": 1650, }, "require.mjs": { - "offset": 2929820, + "offset": 2931060, "size": 140, }, "tsconfig.json": { - "offset": 2929950, + "offset": 2931200, "size": 120, }, }, @@ -48183,19 +48199,19 @@ exports[`node_module collectors > yarn max stack 2`] = ` "get-intrinsic": { "files": { ".nycrc": { - "offset": 2930070, + "offset": 2931320, "size": 140, }, "LICENSE": { - "offset": 2930210, + "offset": 2931460, "size": 1080, }, "index.js": { - "offset": 2931280, + "offset": 2932530, "size": 14440, }, "package.json": { - "offset": 2945720, + "offset": 2946970, "size": 1870, }, }, @@ -48203,31 +48219,31 @@ exports[`node_module collectors > yarn max stack 2`] = ` "get-proto": { "files": { ".nycrc": { - "offset": 2947580, + "offset": 2948830, "size": 140, }, "LICENSE": { - "offset": 2947720, + "offset": 2948970, "size": 1080, }, "Object.getPrototypeOf.js": { - "offset": 2948790, + "offset": 2950040, "size": 160, }, "Reflect.getPrototypeOf.js": { - "offset": 2948950, + "offset": 2950200, "size": 150, }, "index.js": { - "offset": 2949100, + "offset": 2950350, "size": 830, }, "package.json": { - "offset": 2949920, + "offset": 2951170, "size": 1430, }, "tsconfig.json": { - "offset": 2951350, + "offset": 2952590, "size": 120, }, }, @@ -48235,27 +48251,27 @@ exports[`node_module collectors > yarn max stack 2`] = ` "get-symbol-description": { "files": { ".nycrc": { - "offset": 2951460, + "offset": 2952710, "size": 140, }, "LICENSE": { - "offset": 2951600, + "offset": 2952850, "size": 1070, }, "getInferredName.js": { - "offset": 2952670, + "offset": 2953920, "size": 480, }, "index.js": { - "offset": 2953140, + "offset": 2954390, "size": 1570, }, "package.json": { - "offset": 2954710, + "offset": 2955960, "size": 1760, }, "tsconfig.json": { - "offset": 2956460, + "offset": 2957710, "size": 120, }, }, @@ -48263,39 +48279,39 @@ exports[`node_module collectors > yarn max stack 2`] = ` "globalthis": { "files": { ".nycrc": { - "offset": 2956580, + "offset": 2957830, "size": 150, }, "LICENSE": { - "offset": 2956730, + "offset": 2957980, "size": 1090, }, "auto.js": { - "offset": 2957810, + "offset": 2959060, "size": 40, }, "implementation.browser.js": { - "offset": 2957850, + "offset": 2959100, "size": 260, }, "implementation.js": { - "offset": 2958100, + "offset": 2959350, "size": 40, }, "index.js": { - "offset": 2958140, + "offset": 2959390, "size": 410, }, "package.json": { - "offset": 2958550, + "offset": 2959800, "size": 1680, }, "polyfill.js": { - "offset": 2960220, + "offset": 2961470, "size": 260, }, "shim.js": { - "offset": 2960480, + "offset": 2961720, "size": 720, }, }, @@ -48303,23 +48319,23 @@ exports[`node_module collectors > yarn max stack 2`] = ` "gopd": { "files": { "LICENSE": { - "offset": 2961190, + "offset": 2962440, "size": 1080, }, "gOPD.js": { - "offset": 2962260, + "offset": 2963510, "size": 100, }, "index.js": { - "offset": 2962360, + "offset": 2963610, "size": 210, }, "package.json": { - "offset": 2962560, + "offset": 2963810, "size": 1310, }, "tsconfig.json": { - "offset": 2963870, + "offset": 2965120, "size": 120, }, }, @@ -48327,27 +48343,27 @@ exports[`node_module collectors > yarn max stack 2`] = ` "graceful-fs": { "files": { "LICENSE": { - "offset": 2963990, + "offset": 2965240, "size": 800, }, "clone.js": { - "offset": 2964780, + "offset": 2966030, "size": 500, }, "graceful-fs.js": { - "offset": 2965280, + "offset": 2966530, "size": 12680, }, "legacy-streams.js": { - "offset": 2977960, + "offset": 2979210, "size": 2660, }, "package.json": { - "offset": 2980610, + "offset": 2981860, "size": 600, }, "polyfills.js": { - "offset": 2981210, + "offset": 2982460, "size": 10150, }, }, @@ -48355,23 +48371,23 @@ exports[`node_module collectors > yarn max stack 2`] = ` "has-bigints": { "files": { ".nycrc": { - "offset": 2991350, + "offset": 2992600, "size": 140, }, "LICENSE": { - "offset": 2991490, + "offset": 2992740, "size": 1080, }, "index.js": { - "offset": 2992560, + "offset": 2993810, "size": 380, }, "package.json": { - "offset": 2992940, + "offset": 2994190, "size": 1170, }, "tsconfig.json": { - "offset": 2994100, + "offset": 2995350, "size": 130, }, }, @@ -48379,15 +48395,15 @@ exports[`node_module collectors > yarn max stack 2`] = ` "has-flag": { "files": { "index.js": { - "offset": 2994230, + "offset": 2995470, "size": 320, }, "license": { - "offset": 2994550, + "offset": 2995790, "size": 1110, }, "package.json": { - "offset": 2995650, + "offset": 2996900, "size": 410, }, }, @@ -48395,19 +48411,19 @@ exports[`node_module collectors > yarn max stack 2`] = ` "has-property-descriptors": { "files": { ".nycrc": { - "offset": 2996060, + "offset": 2997310, "size": 140, }, "LICENSE": { - "offset": 2996200, + "offset": 2997450, "size": 1070, }, "index.js": { - "offset": 2997270, + "offset": 2998520, "size": 590, }, "package.json": { - "offset": 2997860, + "offset": 2999100, "size": 1330, }, }, @@ -48415,27 +48431,27 @@ exports[`node_module collectors > yarn max stack 2`] = ` "has-proto": { "files": { "LICENSE": { - "offset": 2999180, + "offset": 3000430, "size": 1070, }, "accessor.js": { - "offset": 3000250, + "offset": 3001500, "size": 550, }, "index.js": { - "offset": 3000800, + "offset": 3002050, "size": 300, }, "mutator.js": { - "offset": 3001100, + "offset": 3002350, "size": 540, }, "package.json": { - "offset": 3001630, + "offset": 3002880, "size": 1610, }, "tsconfig.json": { - "offset": 3003240, + "offset": 3004490, "size": 130, }, }, @@ -48443,27 +48459,27 @@ exports[`node_module collectors > yarn max stack 2`] = ` "has-symbols": { "files": { ".nycrc": { - "offset": 3003370, + "offset": 3004620, "size": 140, }, "LICENSE": { - "offset": 3003510, + "offset": 3004760, "size": 1080, }, "index.js": { - "offset": 3004580, + "offset": 3005830, "size": 450, }, "package.json": { - "offset": 3005030, + "offset": 3006280, "size": 1800, }, "shams.js": { - "offset": 3006820, + "offset": 3008070, "size": 1930, }, "tsconfig.json": { - "offset": 3008740, + "offset": 3009990, "size": 150, }, }, @@ -48471,27 +48487,27 @@ exports[`node_module collectors > yarn max stack 2`] = ` "has-tostringtag": { "files": { ".nycrc": { - "offset": 3008880, + "offset": 3010130, "size": 220, }, "LICENSE": { - "offset": 3009100, + "offset": 3010350, "size": 1070, }, "index.js": { - "offset": 3010170, + "offset": 3011420, "size": 200, }, "package.json": { - "offset": 3010360, + "offset": 3011610, "size": 1700, }, "shams.js": { - "offset": 3012060, + "offset": 3013310, "size": 190, }, "tsconfig.json": { - "offset": 3012250, + "offset": 3013500, "size": 3620, }, }, @@ -48499,23 +48515,23 @@ exports[`node_module collectors > yarn max stack 2`] = ` "hasown": { "files": { ".nycrc": { - "offset": 3015860, + "offset": 3017110, "size": 220, }, "LICENSE": { - "offset": 3016080, + "offset": 3017330, "size": 1090, }, "index.js": { - "offset": 3017160, + "offset": 3018410, "size": 210, }, "package.json": { - "offset": 3017370, + "offset": 3018610, "size": 1480, }, "tsconfig.json": { - "offset": 3018840, + "offset": 3020090, "size": 80, }, }, @@ -48523,23 +48539,23 @@ exports[`node_module collectors > yarn max stack 2`] = ` "hosted-git-info": { "files": { "LICENSE": { - "offset": 3018910, + "offset": 3020160, "size": 740, }, "git-host-info.js": { - "offset": 3019650, + "offset": 3020890, "size": 3790, }, "git-host.js": { - "offset": 3023440, + "offset": 3024680, "size": 4640, }, "index.js": { - "offset": 3028070, + "offset": 3029320, "size": 5150, }, "package.json": { - "offset": 3033220, + "offset": 3034470, "size": 620, }, }, @@ -48547,31 +48563,31 @@ exports[`node_module collectors > yarn max stack 2`] = ` "internal-slot": { "files": { ".attw.json": { - "offset": 3033840, + "offset": 3035080, "size": 50, }, ".editorconfig": { - "offset": 3033880, + "offset": 3035130, "size": 290, }, ".nycrc": { - "offset": 3034160, + "offset": 3035410, "size": 140, }, "LICENSE": { - "offset": 3034300, + "offset": 3035550, "size": 1080, }, "index.js": { - "offset": 3035370, + "offset": 3036620, "size": 2050, }, "package.json": { - "offset": 3037420, + "offset": 3038670, "size": 1260, }, "tsconfig.json": { - "offset": 3038680, + "offset": 3039920, "size": 120, }, }, @@ -48579,23 +48595,23 @@ exports[`node_module collectors > yarn max stack 2`] = ` "is-array-buffer": { "files": { ".nycrc": { - "offset": 3038790, + "offset": 3040040, "size": 140, }, "LICENSE": { - "offset": 3038930, + "offset": 3040180, "size": 1090, }, "index.js": { - "offset": 3040010, + "offset": 3041260, "size": 1410, }, "package.json": { - "offset": 3041420, + "offset": 3042670, "size": 1720, }, "tsconfig.json": { - "offset": 3043140, + "offset": 3044390, "size": 130, }, }, @@ -48603,23 +48619,23 @@ exports[`node_module collectors > yarn max stack 2`] = ` "is-arrayish": { "files": { ".editorconfig": { - "offset": 3043270, + "offset": 3044520, "size": 270, }, ".istanbul.yml": { - "offset": 3043530, + "offset": 3044780, "size": 60, }, "LICENSE": { - "offset": 3043590, + "offset": 3044840, "size": 1080, }, "index.js": { - "offset": 3044670, + "offset": 3045920, "size": 210, }, "package.json": { - "offset": 3044870, + "offset": 3046120, "size": 470, }, }, @@ -48627,23 +48643,23 @@ exports[`node_module collectors > yarn max stack 2`] = ` "is-async-function": { "files": { ".nycrc": { - "offset": 3045330, + "offset": 3046580, "size": 140, }, "LICENSE": { - "offset": 3045470, + "offset": 3046720, "size": 1090, }, "index.js": { - "offset": 3046550, + "offset": 3047800, "size": 830, }, "package.json": { - "offset": 3047380, + "offset": 3048630, "size": 2060, }, "tsconfig.json": { - "offset": 3049440, + "offset": 3050690, "size": 160, }, }, @@ -48651,23 +48667,23 @@ exports[`node_module collectors > yarn max stack 2`] = ` "is-bigint": { "files": { ".nycrc": { - "offset": 3049590, + "offset": 3050840, "size": 140, }, "LICENSE": { - "offset": 3049730, + "offset": 3050980, "size": 1080, }, "index.js": { - "offset": 3050800, + "offset": 3052050, "size": 850, }, "package.json": { - "offset": 3051650, + "offset": 3052900, "size": 1400, }, "tsconfig.json": { - "offset": 3053050, + "offset": 3054290, "size": 120, }, }, @@ -48675,27 +48691,27 @@ exports[`node_module collectors > yarn max stack 2`] = ` "is-boolean-object": { "files": { ".editorconfig": { - "offset": 3053160, + "offset": 3054410, "size": 360, }, ".nycrc": { - "offset": 3053510, + "offset": 3054760, "size": 160, }, "LICENSE": { - "offset": 3053670, + "offset": 3054920, "size": 1090, }, "index.js": { - "offset": 3054750, + "offset": 3056000, "size": 720, }, "package.json": { - "offset": 3055460, + "offset": 3056710, "size": 1840, }, "tsconfig.json": { - "offset": 3057300, + "offset": 3058550, "size": 120, }, }, @@ -48703,23 +48719,23 @@ exports[`node_module collectors > yarn max stack 2`] = ` "is-callable": { "files": { ".editorconfig": { - "offset": 3057420, + "offset": 3058670, "size": 460, }, ".nycrc": { - "offset": 3057870, + "offset": 3059120, "size": 140, }, "LICENSE": { - "offset": 3058010, + "offset": 3059260, "size": 1090, }, "index.js": { - "offset": 3059100, + "offset": 3060340, "size": 3230, }, "package.json": { - "offset": 3062320, + "offset": 3063570, "size": 1840, }, }, @@ -48727,23 +48743,23 @@ exports[`node_module collectors > yarn max stack 2`] = ` "is-core-module": { "files": { ".nycrc": { - "offset": 3064160, + "offset": 3065410, "size": 140, }, "LICENSE": { - "offset": 3064300, + "offset": 3065540, "size": 1080, }, "core.json": { - "offset": 3065370, + "offset": 3066620, "size": 5960, }, "index.js": { - "offset": 3071330, + "offset": 3072580, "size": 1770, }, "package.json": { - "offset": 3073090, + "offset": 3074340, "size": 1240, }, }, @@ -48751,27 +48767,27 @@ exports[`node_module collectors > yarn max stack 2`] = ` "is-data-view": { "files": { ".editorconfig": { - "offset": 3074330, + "offset": 3075580, "size": 290, }, ".nycrc": { - "offset": 3074610, + "offset": 3075860, "size": 140, }, "LICENSE": { - "offset": 3074750, + "offset": 3076000, "size": 1070, }, "index.js": { - "offset": 3075820, + "offset": 3077070, "size": 850, }, "package.json": { - "offset": 3076670, + "offset": 3077920, "size": 2070, }, "tsconfig.json": { - "offset": 3078730, + "offset": 3079980, "size": 120, }, }, @@ -48779,27 +48795,27 @@ exports[`node_module collectors > yarn max stack 2`] = ` "is-date-object": { "files": { ".editorconfig": { - "offset": 3078840, + "offset": 3080090, "size": 290, }, ".nycrc": { - "offset": 3079130, + "offset": 3080380, "size": 160, }, "LICENSE": { - "offset": 3079290, + "offset": 3080540, "size": 1090, }, "index.js": { - "offset": 3080370, + "offset": 3081620, "size": 680, }, "package.json": { - "offset": 3081050, + "offset": 3082290, "size": 1900, }, "tsconfig.json": { - "offset": 3082940, + "offset": 3084190, "size": 80, }, }, @@ -48807,23 +48823,23 @@ exports[`node_module collectors > yarn max stack 2`] = ` "is-finalizationregistry": { "files": { ".nycrc": { - "offset": 3083010, + "offset": 3084260, "size": 140, }, "LICENSE": { - "offset": 3083150, + "offset": 3084400, "size": 1070, }, "index.js": { - "offset": 3084220, + "offset": 3085470, "size": 830, }, "package.json": { - "offset": 3085040, + "offset": 3086290, "size": 1590, }, "tsconfig.json": { - "offset": 3086620, + "offset": 3087870, "size": 130, }, }, @@ -48831,27 +48847,27 @@ exports[`node_module collectors > yarn max stack 2`] = ` "is-generator-function": { "files": { ".nvmrc": { - "offset": 3086750, + "offset": 3088000, "size": 10, }, ".nycrc": { - "offset": 3086750, + "offset": 3088000, "size": 140, }, "LICENSE": { - "offset": 3086890, + "offset": 3088140, "size": 1090, }, "index.js": { - "offset": 3087970, + "offset": 3089220, "size": 860, }, "package.json": { - "offset": 3088830, + "offset": 3090080, "size": 1950, }, "tsconfig.json": { - "offset": 3090780, + "offset": 3092030, "size": 130, }, }, @@ -48859,27 +48875,27 @@ exports[`node_module collectors > yarn max stack 2`] = ` "is-map": { "files": { ".editorconfig": { - "offset": 3090910, + "offset": 3092160, "size": 240, }, ".nycrc": { - "offset": 3091140, + "offset": 3092390, "size": 140, }, "LICENSE": { - "offset": 3091280, + "offset": 3092530, "size": 1070, }, "index.js": { - "offset": 3092340, + "offset": 3093590, "size": 1080, }, "package.json": { - "offset": 3093420, + "offset": 3094670, "size": 1410, }, "tsconfig.json": { - "offset": 3094830, + "offset": 3096080, "size": 3620, }, }, @@ -48887,27 +48903,27 @@ exports[`node_module collectors > yarn max stack 2`] = ` "is-negative-zero": { "files": { ".editorconfig": { - "offset": 3098440, + "offset": 3099690, "size": 130, }, ".nycrc": { - "offset": 3098570, + "offset": 3099820, "size": 140, }, "LICENSE": { - "offset": 3098710, + "offset": 3099960, "size": 1090, }, "index.js": { - "offset": 3099790, + "offset": 3101040, "size": 150, }, "package.json": { - "offset": 3099940, + "offset": 3101190, "size": 1600, }, "tsconfig.json": { - "offset": 3101530, + "offset": 3102780, "size": 3620, }, }, @@ -48915,27 +48931,27 @@ exports[`node_module collectors > yarn max stack 2`] = ` "is-number-object": { "files": { ".editorconfig": { - "offset": 3105140, + "offset": 3106390, "size": 330, }, ".nycrc": { - "offset": 3105460, + "offset": 3106710, "size": 160, }, "LICENSE": { - "offset": 3105620, + "offset": 3106870, "size": 1090, }, "index.js": { - "offset": 3106710, + "offset": 3107950, "size": 700, }, "package.json": { - "offset": 3107400, + "offset": 3108650, "size": 1520, }, "tsconfig.json": { - "offset": 3108920, + "offset": 3110170, "size": 120, }, }, @@ -48943,27 +48959,27 @@ exports[`node_module collectors > yarn max stack 2`] = ` "is-regex": { "files": { ".editorconfig": { - "offset": 3109040, + "offset": 3110290, "size": 330, }, ".nycrc": { - "offset": 3109360, + "offset": 3110610, "size": 160, }, "LICENSE": { - "offset": 3109520, + "offset": 3110770, "size": 1090, }, "index.js": { - "offset": 3110600, + "offset": 3111850, "size": 2230, }, "package.json": { - "offset": 3112820, + "offset": 3114070, "size": 1920, }, "tsconfig.json": { - "offset": 3114740, + "offset": 3115990, "size": 120, }, }, @@ -48971,27 +48987,27 @@ exports[`node_module collectors > yarn max stack 2`] = ` "is-set": { "files": { ".editorconfig": { - "offset": 3114850, + "offset": 3116100, "size": 240, }, ".nycrc": { - "offset": 3115080, + "offset": 3116330, "size": 140, }, "LICENSE": { - "offset": 3115220, + "offset": 3116470, "size": 1070, }, "index.js": { - "offset": 3116290, + "offset": 3117540, "size": 1070, }, "package.json": { - "offset": 3117350, + "offset": 3118600, "size": 1300, }, "tsconfig.json": { - "offset": 3118640, + "offset": 3119890, "size": 3620, }, }, @@ -48999,23 +49015,23 @@ exports[`node_module collectors > yarn max stack 2`] = ` "is-shared-array-buffer": { "files": { ".nycrc": { - "offset": 3122250, + "offset": 3123500, "size": 140, }, "LICENSE": { - "offset": 3122390, + "offset": 3123640, "size": 1070, }, "index.js": { - "offset": 3123460, + "offset": 3124710, "size": 680, }, "package.json": { - "offset": 3124130, + "offset": 3125380, "size": 1700, }, "tsconfig.json": { - "offset": 3125830, + "offset": 3127080, "size": 120, }, }, @@ -49023,23 +49039,23 @@ exports[`node_module collectors > yarn max stack 2`] = ` "is-string": { "files": { ".nycrc": { - "offset": 3125940, + "offset": 3127190, "size": 160, }, "LICENSE": { - "offset": 3126100, + "offset": 3127350, "size": 1090, }, "index.js": { - "offset": 3127190, + "offset": 3128430, "size": 1060, }, "package.json": { - "offset": 3128240, + "offset": 3129490, "size": 1780, }, "tsconfig.json": { - "offset": 3130010, + "offset": 3131260, "size": 130, }, }, @@ -49047,27 +49063,27 @@ exports[`node_module collectors > yarn max stack 2`] = ` "is-symbol": { "files": { ".editorconfig": { - "offset": 3130140, + "offset": 3131380, "size": 280, }, ".nycrc": { - "offset": 3130410, + "offset": 3131660, "size": 140, }, "LICENSE": { - "offset": 3130550, + "offset": 3131800, "size": 1090, }, "index.js": { - "offset": 3131630, + "offset": 3132880, "size": 1030, }, "package.json": { - "offset": 3132660, + "offset": 3133910, "size": 1850, }, "tsconfig.json": { - "offset": 3134510, + "offset": 3135760, "size": 120, }, }, @@ -49075,27 +49091,27 @@ exports[`node_module collectors > yarn max stack 2`] = ` "is-typed-array": { "files": { ".editorconfig": { - "offset": 3134620, + "offset": 3135870, "size": 290, }, ".nycrc": { - "offset": 3134910, + "offset": 3136160, "size": 140, }, "LICENSE": { - "offset": 3135050, + "offset": 3136290, "size": 1090, }, "index.js": { - "offset": 3136130, + "offset": 3137380, "size": 180, }, "package.json": { - "offset": 3136310, + "offset": 3137560, "size": 2310, }, "tsconfig.json": { - "offset": 3138610, + "offset": 3139860, "size": 70, }, }, @@ -49103,27 +49119,27 @@ exports[`node_module collectors > yarn max stack 2`] = ` "is-weakmap": { "files": { ".editorconfig": { - "offset": 3138680, + "offset": 3139930, "size": 240, }, ".nycrc": { - "offset": 3138910, + "offset": 3140160, "size": 140, }, "LICENSE": { - "offset": 3139050, + "offset": 3140300, "size": 1070, }, "index.js": { - "offset": 3140120, + "offset": 3141370, "size": 1160, }, "package.json": { - "offset": 3141280, + "offset": 3142530, "size": 1410, }, "tsconfig.json": { - "offset": 3142690, + "offset": 3143930, "size": 3620, }, }, @@ -49131,23 +49147,23 @@ exports[`node_module collectors > yarn max stack 2`] = ` "is-weakref": { "files": { ".nycrc": { - "offset": 3146300, + "offset": 3147550, "size": 140, }, "LICENSE": { - "offset": 3146440, + "offset": 3147680, "size": 1070, }, "index.js": { - "offset": 3147500, + "offset": 3148750, "size": 600, }, "package.json": { - "offset": 3148100, + "offset": 3149350, "size": 1510, }, "tsconfig.json": { - "offset": 3149610, + "offset": 3150860, "size": 130, }, }, @@ -49155,27 +49171,27 @@ exports[`node_module collectors > yarn max stack 2`] = ` "is-weakset": { "files": { ".editorconfig": { - "offset": 3149730, + "offset": 3150980, "size": 230, }, ".nycrc": { - "offset": 3149950, + "offset": 3151200, "size": 140, }, "LICENSE": { - "offset": 3150090, + "offset": 3151340, "size": 1070, }, "index.js": { - "offset": 3151160, + "offset": 3152410, "size": 1260, }, "package.json": { - "offset": 3152410, + "offset": 3153660, "size": 1580, }, "tsconfig.json": { - "offset": 3153990, + "offset": 3155230, "size": 120, }, }, @@ -49183,15 +49199,15 @@ exports[`node_module collectors > yarn max stack 2`] = ` "isarray": { "files": { "LICENSE": { - "offset": 3154100, + "offset": 3155350, "size": 1100, }, "index.js": { - "offset": 3155200, + "offset": 3156450, "size": 140, }, "package.json": { - "offset": 3155330, + "offset": 3156580, "size": 880, }, }, @@ -49199,23 +49215,23 @@ exports[`node_module collectors > yarn max stack 2`] = ` "isexe": { "files": { "LICENSE": { - "offset": 3156210, + "offset": 3157460, "size": 770, }, "index.js": { - "offset": 3156970, + "offset": 3158220, "size": 1200, }, "mode.js": { - "offset": 3158170, + "offset": 3159420, "size": 910, }, "package.json": { - "offset": 3159080, + "offset": 3160320, "size": 520, }, "windows.js": { - "offset": 3159590, + "offset": 3160840, "size": 890, }, }, @@ -49223,15 +49239,15 @@ exports[`node_module collectors > yarn max stack 2`] = ` "json-parse-better-errors": { "files": { "LICENSE.md": { - "offset": 3160480, + "offset": 3161730, "size": 1060, }, "index.js": { - "offset": 3161530, + "offset": 3162780, "size": 1090, }, "package.json": { - "offset": 3162620, + "offset": 3163860, "size": 680, }, }, @@ -49239,15 +49255,15 @@ exports[`node_module collectors > yarn max stack 2`] = ` "load-json-file": { "files": { "index.js": { - "offset": 3163290, + "offset": 3164540, "size": 430, }, "license": { - "offset": 3163710, + "offset": 3164960, "size": 1120, }, "package.json": { - "offset": 3164830, + "offset": 3166080, "size": 550, }, }, @@ -49255,79 +49271,79 @@ exports[`node_module collectors > yarn max stack 2`] = ` "math-intrinsics": { "files": { "LICENSE": { - "offset": 3165370, + "offset": 3166620, "size": 1080, }, "abs.js": { - "offset": 3166440, + "offset": 3167690, "size": 80, }, "constants": { "files": { "maxArrayLength.js": { - "offset": 3166520, + "offset": 3167770, "size": 110, }, "maxSafeInteger.js": { - "offset": 3166630, + "offset": 3167880, "size": 240, }, "maxValue.js": { - "offset": 3166860, + "offset": 3168110, "size": 200, }, }, }, "floor.js": { - "offset": 3167060, + "offset": 3168300, "size": 80, }, "isFinite.js": { - "offset": 3167130, + "offset": 3168380, "size": 270, }, "isInteger.js": { - "offset": 3167390, + "offset": 3168640, "size": 410, }, "isNaN.js": { - "offset": 3167800, + "offset": 3169050, "size": 130, }, "isNegativeZero.js": { - "offset": 3167930, + "offset": 3169170, "size": 150, }, "max.js": { - "offset": 3168070, + "offset": 3169320, "size": 80, }, "min.js": { - "offset": 3168140, + "offset": 3169390, "size": 80, }, "mod.js": { - "offset": 3168210, + "offset": 3169460, "size": 220, }, "package.json": { - "offset": 3168430, + "offset": 3169680, "size": 1940, }, "pow.js": { - "offset": 3170370, + "offset": 3171610, "size": 80, }, "round.js": { - "offset": 3170440, + "offset": 3171690, "size": 80, }, "sign.js": { - "offset": 3170520, + "offset": 3171760, "size": 220, }, "tsconfig.json": { - "offset": 3170730, + "offset": 3171980, "size": 40, }, }, @@ -49335,19 +49351,19 @@ exports[`node_module collectors > yarn max stack 2`] = ` "memorystream": { "files": { "Gruntfile.js": { - "offset": 3170770, + "offset": 3172010, "size": 550, }, "LICENSE": { - "offset": 3171310, + "offset": 3172560, "size": 1060, }, "index.js": { - "offset": 3172370, + "offset": 3173620, "size": 6130, }, "package.json": { - "offset": 3178500, + "offset": 3179750, "size": 750, }, }, @@ -49355,15 +49371,15 @@ exports[`node_module collectors > yarn max stack 2`] = ` "minimatch": { "files": { "LICENSE": { - "offset": 3179240, + "offset": 3180490, "size": 770, }, "minimatch.js": { - "offset": 3180010, + "offset": 3181260, "size": 27460, }, "package.json": { - "offset": 3207470, + "offset": 3208720, "size": 530, }, }, @@ -49371,17 +49387,17 @@ exports[`node_module collectors > yarn max stack 2`] = ` "nice-try": { "files": { "LICENSE": { - "offset": 3208000, + "offset": 3209250, "size": 1080, }, "package.json": { - "offset": 3209080, + "offset": 3210330, "size": 550, }, "src": { "files": { "index.js": { - "offset": 3209620, + "offset": 3210870, "size": 310, }, }, @@ -49391,47 +49407,47 @@ exports[`node_module collectors > yarn max stack 2`] = ` "normalize-package-data": { "files": { "AUTHORS": { - "offset": 3209920, + "offset": 3211170, "size": 160, }, "LICENSE": { - "offset": 3210080, + "offset": 3211330, "size": 1400, }, "lib": { "files": { "extract_description.js": { - "offset": 3211470, + "offset": 3212720, "size": 510, }, "fixer.js": { - "offset": 3211980, + "offset": 3213230, "size": 11810, }, "make_warning.js": { - "offset": 3223780, + "offset": 3225030, "size": 710, }, "normalize.js": { - "offset": 3224490, + "offset": 3225740, "size": 1350, }, "safe_format.js": { - "offset": 3225830, + "offset": 3227080, "size": 250, }, "typos.json": { - "offset": 3226080, + "offset": 3227330, "size": 750, }, "warning_messages.json": { - "offset": 3226830, + "offset": 3228070, "size": 1800, }, }, }, "package.json": { - "offset": 3228620, + "offset": 3229870, "size": 680, }, }, @@ -49439,7 +49455,7 @@ exports[`node_module collectors > yarn max stack 2`] = ` "npm-run-all": { "files": { "LICENSE": { - "offset": 3229300, + "offset": 3230550, "size": 1090, }, "bin": { @@ -49447,15 +49463,15 @@ exports[`node_module collectors > yarn max stack 2`] = ` "common": { "files": { "bootstrap.js": { - "offset": 3230380, + "offset": 3231630, "size": 1490, }, "parse-cli-args.js": { - "offset": 3231860, + "offset": 3233110, "size": 7280, }, "version.js": { - "offset": 3239140, + "offset": 3240390, "size": 690, }, }, @@ -49463,16 +49479,16 @@ exports[`node_module collectors > yarn max stack 2`] = ` "npm-run-all": { "files": { "help.js": { - "offset": 3239830, + "offset": 3241080, "size": 3180, }, "index.js": { "executable": true, - "offset": 3243010, + "offset": 3244260, "size": 400, }, "main.js": { - "offset": 3243400, + "offset": 3244650, "size": 2660, }, }, @@ -49480,16 +49496,16 @@ exports[`node_module collectors > yarn max stack 2`] = ` "run-p": { "files": { "help.js": { - "offset": 3246060, + "offset": 3247310, "size": 2610, }, "index.js": { "executable": true, - "offset": 3248670, + "offset": 3249920, "size": 400, }, "main.js": { - "offset": 3249060, + "offset": 3250310, "size": 2370, }, }, @@ -49497,16 +49513,16 @@ exports[`node_module collectors > yarn max stack 2`] = ` "run-s": { "files": { "help.js": { - "offset": 3251430, + "offset": 3252680, "size": 2200, }, "index.js": { "executable": true, - "offset": 3253620, + "offset": 3254870, "size": 400, }, "main.js": { - "offset": 3254010, + "offset": 3255260, "size": 2240, }, }, @@ -49516,19 +49532,19 @@ exports[`node_module collectors > yarn max stack 2`] = ` "docs": { "files": { "node-api.md": { - "offset": 3256250, + "offset": 3257500, "size": 5070, }, "npm-run-all.md": { - "offset": 3261310, + "offset": 3262560, "size": 7070, }, "run-p.md": { - "offset": 3268370, + "offset": 3269620, "size": 5510, }, "run-s.md": { - "offset": 3273880, + "offset": 3275130, "size": 4890, }, }, @@ -49536,53 +49552,53 @@ exports[`node_module collectors > yarn max stack 2`] = ` "lib": { "files": { "create-header.js": { - "offset": 3278760, + "offset": 3280010, "size": 1760, }, "create-prefix-transform-stream.js": { - "offset": 3280520, + "offset": 3281770, "size": 3210, }, "index.js": { - "offset": 3283720, + "offset": 3284970, "size": 10020, }, "match-tasks.js": { - "offset": 3293740, + "offset": 3294990, "size": 4030, }, "npm-run-all-error.js": { - "offset": 3297760, + "offset": 3299010, "size": 1420, }, "read-package-json.js": { - "offset": 3299180, + "offset": 3300430, "size": 980, }, "run-task.js": { - "offset": 3300160, + "offset": 3301410, "size": 7330, }, "run-tasks.js": { - "offset": 3307490, + "offset": 3308740, "size": 5140, }, "spawn-posix.js": { - "offset": 3312620, + "offset": 3313870, "size": 1850, }, "spawn-win32.js": { - "offset": 3314470, + "offset": 3315720, "size": 1570, }, "spawn.js": { - "offset": 3316030, + "offset": 3317280, "size": 610, }, }, }, "package.json": { - "offset": 3316640, + "offset": 3317890, "size": 1280, }, }, @@ -49590,31 +49606,31 @@ exports[`node_module collectors > yarn max stack 2`] = ` "object-inspect": { "files": { ".nycrc": { - "offset": 3317910, + "offset": 3319160, "size": 240, }, "LICENSE": { - "offset": 3318150, + "offset": 3319400, "size": 1080, }, "index.js": { - "offset": 3319220, + "offset": 3320470, "size": 19060, }, "package-support.json": { - "offset": 3338280, + "offset": 3339530, "size": 370, }, "package.json": { - "offset": 3338640, + "offset": 3339890, "size": 2000, }, "test-core-js.js": { - "offset": 3340630, + "offset": 3341880, "size": 540, }, "util.inspect.js": { - "offset": 3341170, + "offset": 3342420, "size": 50, }, }, @@ -49622,27 +49638,27 @@ exports[`node_module collectors > yarn max stack 2`] = ` "object-keys": { "files": { ".editorconfig": { - "offset": 3341210, + "offset": 3342460, "size": 280, }, "LICENSE": { - "offset": 3341490, + "offset": 3342730, "size": 1080, }, "implementation.js": { - "offset": 3342570, + "offset": 3343810, "size": 3220, }, "index.js": { - "offset": 3345780, + "offset": 3347030, "size": 830, }, "isArguments.js": { - "offset": 3346610, + "offset": 3347860, "size": 430, }, "package.json": { - "offset": 3347030, + "offset": 3348280, "size": 1130, }, }, @@ -49650,51 +49666,51 @@ exports[`node_module collectors > yarn max stack 2`] = ` "object.assign": { "files": { ".editorconfig": { - "offset": 3348150, + "offset": 3349400, "size": 290, }, ".nycrc": { - "offset": 3348440, + "offset": 3349690, "size": 140, }, "LICENSE": { - "offset": 3348580, + "offset": 3349820, "size": 1080, }, "auto.js": { - "offset": 3349660, + "offset": 3350900, "size": 40, }, "dist": { "files": { "browser.js": { - "offset": 3349690, + "offset": 3350940, "size": 41570, }, }, }, "hasSymbols.js": { - "offset": 3391260, + "offset": 3392510, "size": 1620, }, "implementation.js": { - "offset": 3392880, + "offset": 3394130, "size": 1430, }, "index.js": { - "offset": 3394300, + "offset": 3395550, "size": 540, }, "package.json": { - "offset": 3394830, + "offset": 3396080, "size": 1630, }, "polyfill.js": { - "offset": 3396460, + "offset": 3397710, "size": 1300, }, "shim.js": { - "offset": 3397760, + "offset": 3399000, "size": 310, }, }, @@ -49702,23 +49718,23 @@ exports[`node_module collectors > yarn max stack 2`] = ` "own-keys": { "files": { ".nycrc": { - "offset": 3398060, + "offset": 3399310, "size": 140, }, "LICENSE": { - "offset": 3398200, + "offset": 3399450, "size": 1080, }, "index.js": { - "offset": 3399270, + "offset": 3400520, "size": 590, }, "package.json": { - "offset": 3399850, + "offset": 3401100, "size": 1640, }, "tsconfig.json": { - "offset": 3401490, + "offset": 3402740, "size": 130, }, }, @@ -49726,15 +49742,15 @@ exports[`node_module collectors > yarn max stack 2`] = ` "parse-json": { "files": { "index.js": { - "offset": 3401610, + "offset": 3402860, "size": 620, }, "license": { - "offset": 3402230, + "offset": 3403480, "size": 1110, }, "package.json": { - "offset": 3403340, + "offset": 3404590, "size": 550, }, }, @@ -49742,15 +49758,15 @@ exports[`node_module collectors > yarn max stack 2`] = ` "path-key": { "files": { "index.js": { - "offset": 3403880, + "offset": 3405130, "size": 290, }, "license": { - "offset": 3404160, + "offset": 3405410, "size": 1120, }, "package.json": { - "offset": 3405280, + "offset": 3406530, "size": 430, }, }, @@ -49758,15 +49774,15 @@ exports[`node_module collectors > yarn max stack 2`] = ` "path-parse": { "files": { "LICENSE": { - "offset": 3405710, + "offset": 3406960, "size": 1080, }, "index.js": { - "offset": 3406790, + "offset": 3408040, "size": 1900, }, "package.json": { - "offset": 3408680, + "offset": 3409930, "size": 370, }, }, @@ -49774,15 +49790,15 @@ exports[`node_module collectors > yarn max stack 2`] = ` "path-type": { "files": { "index.js": { - "offset": 3409040, + "offset": 3410290, "size": 990, }, "license": { - "offset": 3410030, + "offset": 3411280, "size": 1110, }, "package.json": { - "offset": 3411140, + "offset": 3412390, "size": 470, }, }, @@ -49793,45 +49809,45 @@ exports[`node_module collectors > yarn max stack 2`] = ` "files": { "pidtree.js": { "executable": true, - "offset": 3411610, + "offset": 3412860, "size": 2860, }, }, }, "index.js": { - "offset": 3414470, + "offset": 3415720, "size": 1350, }, "lib": { "files": { "bin.js": { - "offset": 3415820, + "offset": 3417060, "size": 1030, }, "get.js": { - "offset": 3416840, + "offset": 3418090, "size": 730, }, "pidtree.js": { - "offset": 3417560, + "offset": 3418810, "size": 2690, }, "ps.js": { - "offset": 3420250, + "offset": 3421490, "size": 1070, }, "wmic.js": { - "offset": 3421310, + "offset": 3422560, "size": 1180, }, }, }, "license": { - "offset": 3422490, + "offset": 3423740, "size": 1080, }, "package.json": { - "offset": 3423560, + "offset": 3424810, "size": 810, }, }, @@ -49839,15 +49855,15 @@ exports[`node_module collectors > yarn max stack 2`] = ` "pify": { "files": { "index.js": { - "offset": 3424370, + "offset": 3425620, "size": 1810, }, "license": { - "offset": 3426180, + "offset": 3427430, "size": 1110, }, "package.json": { - "offset": 3427290, + "offset": 3428540, "size": 470, }, }, @@ -49855,19 +49871,19 @@ exports[`node_module collectors > yarn max stack 2`] = ` "possible-typed-array-names": { "files": { "LICENSE": { - "offset": 3427750, + "offset": 3429000, "size": 1080, }, "index.js": { - "offset": 3428820, + "offset": 3430070, "size": 270, }, "package.json": { - "offset": 3429080, + "offset": 3430330, "size": 1300, }, "tsconfig.json": { - "offset": 3430370, + "offset": 3431620, "size": 120, }, }, @@ -49875,15 +49891,15 @@ exports[`node_module collectors > yarn max stack 2`] = ` "read-pkg": { "files": { "index.js": { - "offset": 3430490, + "offset": 3431740, "size": 820, }, "license": { - "offset": 3431310, + "offset": 3432560, "size": 1110, }, "package.json": { - "offset": 3432420, + "offset": 3433660, "size": 530, }, }, @@ -49891,35 +49907,35 @@ exports[`node_module collectors > yarn max stack 2`] = ` "reflect.getprototypeof": { "files": { ".nycrc": { - "offset": 3432940, + "offset": 3434190, "size": 140, }, "LICENSE": { - "offset": 3433080, + "offset": 3434320, "size": 1080, }, "auto.js": { - "offset": 3434150, + "offset": 3435400, "size": 40, }, "implementation.js": { - "offset": 3434180, + "offset": 3435430, "size": 1100, }, "index.js": { - "offset": 3435280, + "offset": 3436520, "size": 430, }, "package.json": { - "offset": 3435700, + "offset": 3436950, "size": 1810, }, "polyfill.js": { - "offset": 3437500, + "offset": 3438750, "size": 350, }, "shim.js": { - "offset": 3437850, + "offset": 3439100, "size": 470, }, }, @@ -49927,120 +49943,136 @@ exports[`node_module collectors > yarn max stack 2`] = ` "regexp.prototype.flags": { "files": { ".editorconfig": { - "offset": 3438310, + "offset": 3439560, "size": 280, }, ".nycrc": { - "offset": 3438590, + "offset": 3439840, "size": 140, }, "LICENSE": { - "offset": 3438730, + "offset": 3439980, "size": 1090, }, "auto.js": { - "offset": 3439810, + "offset": 3441060, "size": 40, }, "implementation.js": { - "offset": 3439850, + "offset": 3441090, "size": 710, }, "index.js": { - "offset": 3440560, + "offset": 3441800, "size": 390, }, "package.json": { - "offset": 3440940, + "offset": 3442190, "size": 1920, }, "polyfill.js": { - "offset": 3442860, + "offset": 3444110, "size": 870, }, "shim.js": { - "offset": 3443720, + "offset": 3444970, "size": 780, }, }, }, "resolve": { "files": { + ".claude": { + "files": { + "notes.md": { + "offset": 3445750, + "size": 1220, + }, + "settings.local.json": { + "offset": 3446970, + "size": 790, + }, + }, + }, ".editorconfig": { - "offset": 3444500, - "size": 610, + "offset": 3447750, + "size": 660, }, "LICENSE": { - "offset": 3445110, + "offset": 3448410, "size": 1080, }, "SECURITY.md": { - "offset": 3446180, - "size": 360, + "offset": 3449480, + "size": 390, }, "async.js": { - "offset": 3446540, + "offset": 3449860, "size": 60, }, "bin": { "files": { "resolve": { "executable": true, - "offset": 3446590, + "offset": 3449920, "size": 1540, }, }, }, + "eslint.config.mjs": { + "offset": 3451450, + "size": 1580, + }, "index.js": { - "offset": 3448130, + "offset": 3453030, "size": 180, }, "lib": { "files": { "async.js": { - "offset": 3448300, - "size": 11520, + "offset": 3453200, + "size": 11550, }, "caller.js": { - "offset": 3459820, - "size": 360, + "offset": 3464750, + "size": 410, }, "core.js": { - "offset": 3460170, + "offset": 3465160, "size": 310, }, "core.json": { - "offset": 3460480, + "offset": 3465470, "size": 5960, }, "homedir.js": { - "offset": 3466430, - "size": 810, + "offset": 3471420, + "size": 960, }, "is-core.js": { - "offset": 3467240, + "offset": 3472380, "size": 120, }, "node-modules-paths.js": { - "offset": 3467360, - "size": 1370, + "offset": 3472490, + "size": 1340, }, "normalize-options.js": { - "offset": 3468720, + "offset": 3473830, "size": 350, }, "sync.js": { - "offset": 3469070, - "size": 7150, + "offset": 3474180, + "size": 7170, }, }, }, "package.json": { - "offset": 3476220, - "size": 1320, + "offset": 3481350, + "size": 1400, }, "sync.js": { - "offset": 3477530, + "offset": 3482740, "size": 60, }, }, @@ -50048,23 +50080,23 @@ exports[`node_module collectors > yarn max stack 2`] = ` "safe-array-concat": { "files": { ".nycrc": { - "offset": 3477590, + "offset": 3482800, "size": 220, }, "LICENSE": { - "offset": 3477800, + "offset": 3483020, "size": 1080, }, "index.js": { - "offset": 3478880, + "offset": 3484090, "size": 1880, }, "package.json": { - "offset": 3480750, + "offset": 3485960, "size": 1720, }, "tsconfig.json": { - "offset": 3482460, + "offset": 3487680, "size": 130, }, }, @@ -50072,23 +50104,23 @@ exports[`node_module collectors > yarn max stack 2`] = ` "safe-push-apply": { "files": { ".nycrc": { - "offset": 3482590, + "offset": 3487800, "size": 220, }, "LICENSE": { - "offset": 3482810, + "offset": 3488020, "size": 1080, }, "index.js": { - "offset": 3483880, + "offset": 3489090, "size": 390, }, "package.json": { - "offset": 3484260, + "offset": 3489470, "size": 1460, }, "tsconfig.json": { - "offset": 3485720, + "offset": 3490930, "size": 130, }, }, @@ -50096,23 +50128,23 @@ exports[`node_module collectors > yarn max stack 2`] = ` "safe-regex-test": { "files": { ".nycrc": { - "offset": 3485840, + "offset": 3491050, "size": 220, }, "LICENSE": { - "offset": 3486060, + "offset": 3491270, "size": 1080, }, "index.js": { - "offset": 3487130, + "offset": 3492340, "size": 410, }, "package.json": { - "offset": 3487530, + "offset": 3492740, "size": 1590, }, "tsconfig.json": { - "offset": 3489110, + "offset": 3494330, "size": 120, }, }, @@ -50120,28 +50152,28 @@ exports[`node_module collectors > yarn max stack 2`] = ` "semver": { "files": { "LICENSE": { - "offset": 3489230, + "offset": 3494440, "size": 770, }, "bin": { "files": { "semver": { "executable": true, - "offset": 3490000, + "offset": 3495210, "size": 4420, }, }, }, "package.json": { - "offset": 3494420, + "offset": 3499630, "size": 670, }, "range.bnf": { - "offset": 3495080, + "offset": 3500290, "size": 620, }, "semver.js": { - "offset": 3495700, + "offset": 3500910, "size": 40820, }, }, @@ -50149,27 +50181,27 @@ exports[`node_module collectors > yarn max stack 2`] = ` "set-function-length": { "files": { ".nycrc": { - "offset": 3536510, + "offset": 3541720, "size": 220, }, "LICENSE": { - "offset": 3536730, + "offset": 3541940, "size": 1090, }, "env.js": { - "offset": 3537810, + "offset": 3543020, "size": 870, }, "index.js": { - "offset": 3538680, + "offset": 3543890, "size": 1280, }, "package.json": { - "offset": 3539950, + "offset": 3545160, "size": 1960, }, "tsconfig.json": { - "offset": 3541910, + "offset": 3547120, "size": 120, }, }, @@ -50177,19 +50209,19 @@ exports[`node_module collectors > yarn max stack 2`] = ` "set-function-name": { "files": { "LICENSE": { - "offset": 3542020, + "offset": 3547230, "size": 1090, }, "index.js": { - "offset": 3543100, + "offset": 3548320, "size": 750, }, "package.json": { - "offset": 3543850, + "offset": 3549060, "size": 2130, }, "tsconfig.json": { - "offset": 3545980, + "offset": 3551190, "size": 4890, }, }, @@ -50197,31 +50229,31 @@ exports[`node_module collectors > yarn max stack 2`] = ` "set-proto": { "files": { ".nycrc": { - "offset": 3550860, + "offset": 3556070, "size": 140, }, "LICENSE": { - "offset": 3551000, + "offset": 3556210, "size": 1080, }, "Object.setPrototypeOf.js": { - "offset": 3552070, + "offset": 3557280, "size": 160, }, "Reflect.setPrototypeOf.js": { - "offset": 3552230, + "offset": 3557440, "size": 150, }, "index.js": { - "offset": 3552380, + "offset": 3557590, "size": 740, }, "package.json": { - "offset": 3553110, + "offset": 3558320, "size": 1460, }, "tsconfig.json": { - "offset": 3554560, + "offset": 3559780, "size": 120, }, }, @@ -50229,15 +50261,15 @@ exports[`node_module collectors > yarn max stack 2`] = ` "shebang-command": { "files": { "index.js": { - "offset": 3554680, + "offset": 3559890, "size": 350, }, "license": { - "offset": 3555030, + "offset": 3560240, "size": 1130, }, "package.json": { - "offset": 3556150, + "offset": 3561360, "size": 480, }, }, @@ -50245,15 +50277,15 @@ exports[`node_module collectors > yarn max stack 2`] = ` "shebang-regex": { "files": { "index.js": { - "offset": 3556630, + "offset": 3561840, "size": 40, }, "license": { - "offset": 3556670, + "offset": 3561880, "size": 1120, }, "package.json": { - "offset": 3557790, + "offset": 3563000, "size": 420, }, }, @@ -50261,36 +50293,36 @@ exports[`node_module collectors > yarn max stack 2`] = ` "shell-quote": { "files": { ".nycrc": { - "offset": 3558210, + "offset": 3563420, "size": 230, }, "LICENSE": { - "offset": 3558440, + "offset": 3563650, "size": 1110, }, "index.js": { - "offset": 3559550, + "offset": 3564760, "size": 90, }, "package.json": { - "offset": 3559630, + "offset": 3564840, "size": 1200, }, "parse.js": { - "offset": 3560830, + "offset": 3566040, "size": 5190, }, "print.py": { "executable": true, - "offset": 3566020, + "offset": 3571230, "size": 60, }, "quote.js": { - "offset": 3566070, + "offset": 3571280, "size": 500, }, "security.md": { - "offset": 3566570, + "offset": 3571780, "size": 300, }, }, @@ -50298,27 +50330,27 @@ exports[`node_module collectors > yarn max stack 2`] = ` "side-channel": { "files": { ".editorconfig": { - "offset": 3566860, + "offset": 3572070, "size": 150, }, ".nycrc": { - "offset": 3567010, + "offset": 3572220, "size": 220, }, "LICENSE": { - "offset": 3567220, + "offset": 3572430, "size": 1080, }, "index.js": { - "offset": 3568290, + "offset": 3573500, "size": 1190, }, "package.json": { - "offset": 3569480, + "offset": 3574690, "size": 1570, }, "tsconfig.json": { - "offset": 3571050, + "offset": 3576260, "size": 120, }, }, @@ -50326,27 +50358,27 @@ exports[`node_module collectors > yarn max stack 2`] = ` "side-channel-list": { "files": { ".editorconfig": { - "offset": 3571160, + "offset": 3576370, "size": 150, }, ".nycrc": { - "offset": 3571310, + "offset": 3576520, "size": 220, }, "LICENSE": { - "offset": 3571520, + "offset": 3576730, "size": 1080, }, "index.js": { - "offset": 3572590, - "size": 3400, + "offset": 3577800, + "size": 3290, }, "package.json": { - "offset": 3575980, - "size": 1490, + "offset": 3581090, + "size": 1500, }, "tsconfig.json": { - "offset": 3577470, + "offset": 3582580, "size": 120, }, }, @@ -50354,27 +50386,27 @@ exports[`node_module collectors > yarn max stack 2`] = ` "side-channel-map": { "files": { ".editorconfig": { - "offset": 3577590, + "offset": 3582700, "size": 150, }, ".nycrc": { - "offset": 3577740, + "offset": 3582850, "size": 220, }, "LICENSE": { - "offset": 3577950, + "offset": 3583060, "size": 1080, }, "index.js": { - "offset": 3579020, + "offset": 3584130, "size": 1990, }, "package.json": { - "offset": 3581000, + "offset": 3586110, "size": 1580, }, "tsconfig.json": { - "offset": 3582580, + "offset": 3587690, "size": 120, }, }, @@ -50382,27 +50414,27 @@ exports[`node_module collectors > yarn max stack 2`] = ` "side-channel-weakmap": { "files": { ".editorconfig": { - "offset": 3582700, + "offset": 3587810, "size": 150, }, ".nycrc": { - "offset": 3582840, + "offset": 3587950, "size": 220, }, "LICENSE": { - "offset": 3583060, + "offset": 3588170, "size": 1080, }, "index.js": { - "offset": 3584130, + "offset": 3589240, "size": 2710, }, "package.json": { - "offset": 3586840, + "offset": 3591950, "size": 1650, }, "tsconfig.json": { - "offset": 3588480, + "offset": 3593590, "size": 120, }, }, @@ -50410,15 +50442,15 @@ exports[`node_module collectors > yarn max stack 2`] = ` "spdx-correct": { "files": { "LICENSE": { - "offset": 3588600, + "offset": 3593710, "size": 11360, }, "index.js": { - "offset": 3599960, + "offset": 3605070, "size": 10760, }, "package.json": { - "offset": 3610710, + "offset": 3615820, "size": 490, }, }, @@ -50426,15 +50458,15 @@ exports[`node_module collectors > yarn max stack 2`] = ` "spdx-exceptions": { "files": { "deprecated.json": { - "offset": 3611190, + "offset": 3616300, "size": 40, }, "index.json": { - "offset": 3611220, + "offset": 3616330, "size": 1740, }, "package.json": { - "offset": 3612950, + "offset": 3618060, "size": 290, }, }, @@ -50442,27 +50474,27 @@ exports[`node_module collectors > yarn max stack 2`] = ` "spdx-expression-parse": { "files": { "AUTHORS": { - "offset": 3613240, + "offset": 3618350, "size": 210, }, "LICENSE": { - "offset": 3613440, + "offset": 3618550, "size": 1120, }, "index.js": { - "offset": 3614550, + "offset": 3619660, "size": 150, }, "package.json": { - "offset": 3614700, + "offset": 3619810, "size": 560, }, "parse.js": { - "offset": 3615250, + "offset": 3620360, "size": 2910, }, "scan.js": { - "offset": 3618150, + "offset": 3623260, "size": 2760, }, }, @@ -50470,15 +50502,15 @@ exports[`node_module collectors > yarn max stack 2`] = ` "spdx-license-ids": { "files": { "deprecated.json": { - "offset": 3620900, + "offset": 3626010, "size": 520, }, "index.json": { - "offset": 3621420, + "offset": 3626530, "size": 11290, }, "package.json": { - "offset": 3632700, + "offset": 3637810, "size": 310, }, }, @@ -50486,23 +50518,23 @@ exports[`node_module collectors > yarn max stack 2`] = ` "stop-iteration-iterator": { "files": { ".nycrc": { - "offset": 3633000, + "offset": 3638110, "size": 220, }, "LICENSE": { - "offset": 3633220, + "offset": 3638330, "size": 1080, }, "index.js": { - "offset": 3634290, + "offset": 3639400, "size": 1310, }, "package.json": { - "offset": 3635600, + "offset": 3640710, "size": 1420, }, "tsconfig.json": { - "offset": 3637010, + "offset": 3642120, "size": 70, }, }, @@ -50510,39 +50542,39 @@ exports[`node_module collectors > yarn max stack 2`] = ` "string.prototype.padend": { "files": { ".editorconfig": { - "offset": 3637080, + "offset": 3642190, "size": 290, }, ".nycrc": { - "offset": 3637360, + "offset": 3642470, "size": 140, }, "LICENSE": { - "offset": 3637500, + "offset": 3642610, "size": 1090, }, "auto.js": { - "offset": 3638590, + "offset": 3643700, "size": 40, }, "implementation.js": { - "offset": 3638620, + "offset": 3643730, "size": 1110, }, "index.js": { - "offset": 3639730, + "offset": 3644840, "size": 660, }, "package.json": { - "offset": 3640390, + "offset": 3645500, "size": 1700, }, "polyfill.js": { - "offset": 3642080, + "offset": 3647190, "size": 210, }, "shim.js": { - "offset": 3642290, + "offset": 3647400, "size": 340, }, }, @@ -50550,39 +50582,39 @@ exports[`node_module collectors > yarn max stack 2`] = ` "string.prototype.trim": { "files": { ".editorconfig": { - "offset": 3642630, + "offset": 3647740, "size": 290, }, ".nycrc": { - "offset": 3642910, + "offset": 3648020, "size": 140, }, "LICENSE": { - "offset": 3643050, + "offset": 3648160, "size": 1090, }, "auto.js": { - "offset": 3644130, + "offset": 3649240, "size": 40, }, "implementation.js": { - "offset": 3644170, + "offset": 3649280, "size": 1180, }, "index.js": { - "offset": 3645340, + "offset": 3650450, "size": 580, }, "package.json": { - "offset": 3645910, + "offset": 3651020, "size": 1870, }, "polyfill.js": { - "offset": 3647780, + "offset": 3652890, "size": 550, }, "shim.js": { - "offset": 3648320, + "offset": 3653430, "size": 500, }, }, @@ -50590,39 +50622,39 @@ exports[`node_module collectors > yarn max stack 2`] = ` "string.prototype.trimend": { "files": { ".editorconfig": { - "offset": 3648820, + "offset": 3653930, "size": 290, }, ".nycrc": { - "offset": 3649100, + "offset": 3654210, "size": 140, }, "LICENSE": { - "offset": 3649240, + "offset": 3654350, "size": 1080, }, "auto.js": { - "offset": 3650320, + "offset": 3655430, "size": 40, }, "implementation.js": { - "offset": 3650350, + "offset": 3655460, "size": 640, }, "index.js": { - "offset": 3650990, + "offset": 3656100, "size": 580, }, "package.json": { - "offset": 3651560, + "offset": 3656670, "size": 1250, }, "polyfill.js": { - "offset": 3652810, + "offset": 3657920, "size": 460, }, "shim.js": { - "offset": 3653260, + "offset": 3658370, "size": 330, }, }, @@ -50630,39 +50662,39 @@ exports[`node_module collectors > yarn max stack 2`] = ` "string.prototype.trimstart": { "files": { ".editorconfig": { - "offset": 3653590, + "offset": 3658700, "size": 290, }, ".nycrc": { - "offset": 3653880, + "offset": 3658990, "size": 140, }, "LICENSE": { - "offset": 3654020, + "offset": 3659130, "size": 1080, }, "auto.js": { - "offset": 3655090, + "offset": 3660200, "size": 40, }, "implementation.js": { - "offset": 3655130, + "offset": 3660240, "size": 650, }, "index.js": { - "offset": 3655780, + "offset": 3660890, "size": 580, }, "package.json": { - "offset": 3656350, + "offset": 3661460, "size": 1220, }, "polyfill.js": { - "offset": 3657570, + "offset": 3662680, "size": 470, }, "shim.js": { - "offset": 3658030, + "offset": 3663140, "size": 340, }, }, @@ -50670,15 +50702,15 @@ exports[`node_module collectors > yarn max stack 2`] = ` "strip-bom": { "files": { "index.js": { - "offset": 3658370, + "offset": 3663480, "size": 320, }, "license": { - "offset": 3658690, + "offset": 3663800, "size": 1120, }, "package.json": { - "offset": 3659800, + "offset": 3664910, "size": 430, }, }, @@ -50686,19 +50718,19 @@ exports[`node_module collectors > yarn max stack 2`] = ` "supports-color": { "files": { "browser.js": { - "offset": 3660230, + "offset": 3665340, "size": 70, }, "index.js": { - "offset": 3660290, + "offset": 3665400, "size": 2780, }, "license": { - "offset": 3663070, + "offset": 3668180, "size": 1110, }, "package.json": { - "offset": 3664170, + "offset": 3669280, "size": 560, }, }, @@ -50706,23 +50738,23 @@ exports[`node_module collectors > yarn max stack 2`] = ` "supports-preserve-symlinks-flag": { "files": { ".nycrc": { - "offset": 3664730, + "offset": 3669840, "size": 140, }, "LICENSE": { - "offset": 3664870, + "offset": 3669980, "size": 1070, }, "browser.js": { - "offset": 3665940, + "offset": 3671050, "size": 40, }, "index.js": { - "offset": 3665970, + "offset": 3671080, "size": 300, }, "package.json": { - "offset": 3666270, + "offset": 3671380, "size": 1270, }, }, @@ -50730,23 +50762,23 @@ exports[`node_module collectors > yarn max stack 2`] = ` "typed-array-buffer": { "files": { ".nycrc": { - "offset": 3667530, + "offset": 3672640, "size": 220, }, "LICENSE": { - "offset": 3667750, + "offset": 3672860, "size": 1080, }, "index.js": { - "offset": 3668820, + "offset": 3673930, "size": 600, }, "package.json": { - "offset": 3669410, + "offset": 3674520, "size": 1600, }, "tsconfig.json": { - "offset": 3671000, + "offset": 3676110, "size": 120, }, }, @@ -50754,23 +50786,23 @@ exports[`node_module collectors > yarn max stack 2`] = ` "typed-array-byte-length": { "files": { ".nycrc": { - "offset": 3671120, + "offset": 3676230, "size": 220, }, "LICENSE": { - "offset": 3671340, + "offset": 3676450, "size": 1070, }, "index.js": { - "offset": 3672400, + "offset": 3677510, "size": 2750, }, "package.json": { - "offset": 3675150, + "offset": 3680260, "size": 2020, }, "tsconfig.json": { - "offset": 3677160, + "offset": 3682270, "size": 120, }, }, @@ -50778,23 +50810,23 @@ exports[`node_module collectors > yarn max stack 2`] = ` "typed-array-byte-offset": { "files": { ".nycrc": { - "offset": 3677280, + "offset": 3682390, "size": 220, }, "LICENSE": { - "offset": 3677500, + "offset": 3682610, "size": 1070, }, "index.js": { - "offset": 3678560, + "offset": 3683670, "size": 2490, }, "package.json": { - "offset": 3681050, + "offset": 3686160, "size": 2130, }, "tsconfig.json": { - "offset": 3683170, + "offset": 3688280, "size": 150, }, }, @@ -50802,23 +50834,23 @@ exports[`node_module collectors > yarn max stack 2`] = ` "typed-array-length": { "files": { ".nycrc": { - "offset": 3683320, + "offset": 3688430, "size": 220, }, "LICENSE": { - "offset": 3683530, + "offset": 3688640, "size": 1070, }, "index.js": { - "offset": 3684600, + "offset": 3689710, "size": 2950, }, "package.json": { - "offset": 3687540, + "offset": 3692650, "size": 2000, }, "tsconfig.json": { - "offset": 3689540, + "offset": 3694650, "size": 150, }, }, @@ -50826,27 +50858,27 @@ exports[`node_module collectors > yarn max stack 2`] = ` "unbox-primitive": { "files": { ".editorconfig": { - "offset": 3689690, + "offset": 3694800, "size": 290, }, ".nycrc": { - "offset": 3689970, + "offset": 3695080, "size": 220, }, "LICENSE": { - "offset": 3690190, + "offset": 3695300, "size": 1080, }, "index.js": { - "offset": 3691260, + "offset": 3696370, "size": 1540, }, "package.json": { - "offset": 3692790, + "offset": 3697900, "size": 1540, }, "tsconfig.json": { - "offset": 3694330, + "offset": 3699440, "size": 70, }, }, @@ -50854,15 +50886,15 @@ exports[`node_module collectors > yarn max stack 2`] = ` "validate-npm-package-license": { "files": { "LICENSE": { - "offset": 3694400, + "offset": 3699510, "size": 11360, }, "index.js": { - "offset": 3705760, + "offset": 3710870, "size": 1930, }, "package.json": { - "offset": 3707680, + "offset": 3712790, "size": 520, }, }, @@ -50870,24 +50902,24 @@ exports[`node_module collectors > yarn max stack 2`] = ` "which": { "files": { "LICENSE": { - "offset": 3708200, + "offset": 3713310, "size": 770, }, "bin": { "files": { "which": { "executable": true, - "offset": 3708970, + "offset": 3714080, "size": 990, }, }, }, "package.json": { - "offset": 3709950, + "offset": 3715060, "size": 570, }, "which.js": { - "offset": 3710520, + "offset": 3715630, "size": 3190, }, }, @@ -50895,27 +50927,27 @@ exports[`node_module collectors > yarn max stack 2`] = ` "which-boxed-primitive": { "files": { ".editorconfig": { - "offset": 3713700, + "offset": 3718810, "size": 290, }, ".nycrc": { - "offset": 3713990, + "offset": 3719100, "size": 220, }, "LICENSE": { - "offset": 3714200, + "offset": 3719310, "size": 1080, }, "index.js": { - "offset": 3715270, + "offset": 3720380, "size": 720, }, "package.json": { - "offset": 3715990, + "offset": 3721100, "size": 1540, }, "tsconfig.json": { - "offset": 3717530, + "offset": 3722640, "size": 120, }, }, @@ -50923,23 +50955,23 @@ exports[`node_module collectors > yarn max stack 2`] = ` "which-builtin-type": { "files": { ".nycrc": { - "offset": 3717640, + "offset": 3722750, "size": 140, }, "LICENSE": { - "offset": 3717780, + "offset": 3722890, "size": 1080, }, "index.js": { - "offset": 3718850, + "offset": 3723960, "size": 3960, }, "package.json": { - "offset": 3722800, + "offset": 3727910, "size": 2570, }, "tsconfig.json": { - "offset": 3725370, + "offset": 3730480, "size": 130, }, }, @@ -50947,23 +50979,23 @@ exports[`node_module collectors > yarn max stack 2`] = ` "which-collection": { "files": { ".nycrc": { - "offset": 3725490, + "offset": 3730600, "size": 220, }, "LICENSE": { - "offset": 3725700, + "offset": 3730810, "size": 1070, }, "index.js": { - "offset": 3726770, + "offset": 3731880, "size": 510, }, "package.json": { - "offset": 3727280, + "offset": 3732390, "size": 1620, }, "tsconfig.json": { - "offset": 3728900, + "offset": 3734010, "size": 3620, }, }, @@ -50971,27 +51003,27 @@ exports[`node_module collectors > yarn max stack 2`] = ` "which-typed-array": { "files": { ".editorconfig": { - "offset": 3732510, + "offset": 3737620, "size": 290, }, ".nycrc": { - "offset": 3732790, + "offset": 3737900, "size": 220, }, "LICENSE": { - "offset": 3733010, + "offset": 3738120, "size": 1090, }, "index.js": { - "offset": 3734090, + "offset": 3739200, "size": 3770, }, "package.json": { - "offset": 3737860, + "offset": 3742970, "size": 2310, }, "tsconfig.json": { - "offset": 3740160, + "offset": 3745270, "size": 130, }, }, @@ -50999,7 +51031,7 @@ exports[`node_module collectors > yarn max stack 2`] = ` }, }, "package.json": { - "offset": 3741280, + "offset": 3746390, "size": 370, }, }, @@ -51016,11 +51048,11 @@ exports[`node_module collectors > yarn ms 2`] = ` { "files": { "index.html": { - "offset": 51032890, + "offset": 50820540, "size": 380, }, "index.js": { - "offset": 51033270, + "offset": 50820920, "size": 620, }, "node_modules": { @@ -51041,637 +51073,577 @@ exports[`node_module collectors > yarn ms 2`] = ` "files": { "context.js": { "offset": 11360, - "size": 4190, + "size": 2330, }, "context.js.map": { - "offset": 15550, - "size": 4620, + "offset": 13690, + "size": 3990, }, "diag.js": { - "offset": 20170, - "size": 5140, + "offset": 17680, + "size": 3420, }, "diag.js.map": { - "offset": 25310, - "size": 6720, + "offset": 21090, + "size": 6180, }, "metrics.js": { - "offset": 32020, - "size": 2270, + "offset": 27270, + "size": 1520, }, "metrics.js.map": { - "offset": 34280, - "size": 3370, + "offset": 28780, + "size": 2800, }, "propagation.js": { - "offset": 37650, - "size": 3760, + "offset": 31570, + "size": 2830, }, "propagation.js.map": { - "offset": 41400, - "size": 5440, + "offset": 34400, + "size": 4900, }, "trace.js": { - "offset": 46840, - "size": 3050, + "offset": 39300, + "size": 2340, }, "trace.js.map": { - "offset": 49880, - "size": 4710, + "offset": 41640, + "size": 4160, }, }, }, "baggage": { "files": { "context-helpers.js": { - "offset": 54590, - "size": 1830, + "offset": 45800, + "size": 1310, }, "context-helpers.js.map": { - "offset": 56420, - "size": 2820, + "offset": 47100, + "size": 2280, }, "internal": { "files": { "baggage-impl.js": { - "offset": 59230, - "size": 3510, + "offset": 49380, + "size": 1090, }, "baggage-impl.js.map": { - "offset": 62740, - "size": 3410, + "offset": 50470, + "size": 2550, }, "symbol.js": { - "offset": 66150, - "size": 780, + "offset": 53020, + "size": 260, }, "symbol.js.map": { - "offset": 66920, - "size": 1020, + "offset": 53280, + "size": 470, }, }, }, "types.js": { - "offset": 67940, - "size": 650, + "offset": 53750, + "size": 130, }, "types.js.map": { - "offset": 68590, - "size": 3390, + "offset": 53880, + "size": 2380, }, "utils.js": { - "offset": 71970, - "size": 1640, + "offset": 56250, + "size": 1080, }, "utils.js.map": { - "offset": 73600, - "size": 2500, + "offset": 57330, + "size": 1970, }, }, }, "common": { "files": { "Attributes.js": { - "offset": 76100, - "size": 660, + "offset": 59290, + "size": 140, }, "Attributes.js.map": { - "offset": 76760, - "size": 1400, + "offset": 59420, + "size": 900, }, "Exception.js": { - "offset": 78160, - "size": 660, + "offset": 60320, + "size": 140, }, "Exception.js.map": { - "offset": 78810, - "size": 1390, + "offset": 60450, + "size": 860, }, "Time.js": { - "offset": 80200, + "offset": 61310, "size": 50, }, "Time.js.map": { - "offset": 80240, - "size": 1830, + "offset": 61350, + "size": 1330, }, }, }, "context": { "files": { "NoopContextManager.js": { - "offset": 84100, - "size": 2390, + "offset": 63700, + "size": 500, }, "NoopContextManager.js.map": { - "offset": 86490, - "size": 1940, + "offset": 64190, + "size": 1270, }, "context.js": { - "offset": 88420, - "size": 2230, + "offset": 65460, + "size": 1670, }, "context.js.map": { - "offset": 90640, - "size": 4110, + "offset": 67120, + "size": 3620, }, "types.js": { - "offset": 94750, - "size": 650, + "offset": 70730, + "size": 130, }, "types.js.map": { - "offset": 95400, - "size": 2540, + "offset": 70860, + "size": 2040, }, }, }, "context-api.js": { - "offset": 82060, - "size": 880, + "offset": 62680, + "size": 380, }, "context-api.js.map": { - "offset": 82940, - "size": 1170, + "offset": 63060, + "size": 640, }, "diag": { "files": { "ComponentLogger.js": { - "offset": 100370, - "size": 3730, + "offset": 74310, + "size": 1360, }, "ComponentLogger.js.map": { - "offset": 104100, - "size": 3580, + "offset": 75670, + "size": 2710, }, "consoleLogger.js": { - "offset": 107670, - "size": 2320, + "offset": 78370, + "size": 2550, }, "consoleLogger.js.map": { - "offset": 109990, - "size": 4670, + "offset": 80910, + "size": 5680, }, "internal": { "files": { "logLevelLogger.js": { - "offset": 114650, - "size": 1550, + "offset": 86590, + "size": 1030, }, "logLevelLogger.js.map": { - "offset": 116200, - "size": 2660, + "offset": 87620, + "size": 2150, }, "noopLogger.js": { - "offset": 118860, - "size": 1040, + "offset": 89760, + "size": 520, }, "noopLogger.js.map": { - "offset": 119890, - "size": 1440, + "offset": 90270, + "size": 900, }, }, }, "types.js": { - "offset": 121330, - "size": 1870, + "offset": 91170, + "size": 1350, }, "types.js.map": { - "offset": 123200, - "size": 5300, + "offset": 92520, + "size": 4850, }, }, }, "diag-api.js": { - "offset": 97930, - "size": 1080, + "offset": 72900, + "size": 580, }, "diag-api.js.map": { - "offset": 99000, - "size": 1370, + "offset": 73470, + "size": 840, }, "experimental": { "files": { "index.js": { - "offset": 128500, - "size": 710, + "offset": 97360, + "size": 300, }, "index.js.map": { - "offset": 129200, - "size": 980, + "offset": 97660, + "size": 570, }, "trace": { "files": { "SugaredOptions.js": { - "offset": 130170, - "size": 660, + "offset": 98220, + "size": 140, }, "SugaredOptions.js.map": { - "offset": 130830, - "size": 1270, + "offset": 98360, + "size": 720, }, "SugaredTracer.js": { - "offset": 132090, - "size": 2870, + "offset": 99080, + "size": 2610, }, "SugaredTracer.js.map": { - "offset": 134960, - "size": 9420, + "offset": 101690, + "size": 8890, }, }, }, }, }, "index.js": { - "offset": 144370, - "size": 2260, + "offset": 110580, + "size": 1760, }, "index.js.map": { - "offset": 146630, - "size": 5410, + "offset": 112340, + "size": 5160, }, "internal": { "files": { "global-utils.js": { - "offset": 152030, - "size": 2570, + "offset": 117490, + "size": 2170, }, "global-utils.js.map": { - "offset": 154600, - "size": 4900, + "offset": 119660, + "size": 4840, }, "semver.js": { - "offset": 159500, - "size": 5010, + "offset": 124490, + "size": 4490, }, "semver.js.map": { - "offset": 164500, - "size": 7270, + "offset": 128980, + "size": 6720, }, }, }, "metrics": { "files": { "Meter.js": { - "offset": 173820, - "size": 650, + "offset": 136720, + "size": 130, }, "Meter.js.map": { - "offset": 174470, - "size": 6210, + "offset": 136850, + "size": 5710, }, "MeterProvider.js": { - "offset": 180670, - "size": 660, + "offset": 142550, + "size": 140, }, "MeterProvider.js.map": { - "offset": 181330, - "size": 1450, + "offset": 142690, + "size": 930, }, "Metric.js": { - "offset": 182770, - "size": 890, + "offset": 143620, + "size": 390, }, "Metric.js.map": { - "offset": 183660, - "size": 5400, + "offset": 144000, + "size": 6650, }, "NoopMeter.js": { - "offset": 189050, - "size": 7010, + "offset": 150640, + "size": 3070, }, "NoopMeter.js.map": { - "offset": 196050, - "size": 7050, + "offset": 153710, + "size": 6080, }, "NoopMeterProvider.js": { - "offset": 203090, - "size": 1150, + "offset": 159780, + "size": 470, }, "NoopMeterProvider.js.map": { - "offset": 204240, - "size": 1560, - }, - "ObservableResult.js": { - "offset": 205790, - "size": 670, - }, - "ObservableResult.js.map": { - "offset": 206450, - "size": 2340, + "offset": 160240, + "size": 990, }, }, }, "metrics-api.js": { - "offset": 171770, - "size": 880, + "offset": 135700, + "size": 390, }, "metrics-api.js.map": { - "offset": 172650, - "size": 1170, - }, - "platform": { - "files": { - "browser": { - "files": { - "globalThis.js": { - "offset": 208790, - "size": 1380, - }, - "globalThis.js.map": { - "offset": 210160, - "size": 1890, - }, - "index.js": { - "offset": 212050, - "size": 670, - }, - "index.js.map": { - "offset": 212720, - "size": 850, - }, - }, - }, - "index.js": { - "offset": 213570, - "size": 670, - }, - "index.js.map": { - "offset": 214230, - "size": 840, - }, - "node": { - "files": { - "globalThis.js": { - "offset": 215060, - "size": 860, - }, - "globalThis.js.map": { - "offset": 215920, - "size": 1150, - }, - "index.js": { - "offset": 217060, - "size": 670, - }, - "index.js.map": { - "offset": 217730, - "size": 850, - }, - }, - }, - }, + "offset": 136080, + "size": 650, }, "propagation": { "files": { "NoopTextMapPropagator.js": { - "offset": 220680, - "size": 1290, + "offset": 162310, + "size": 500, }, "NoopTextMapPropagator.js.map": { - "offset": 221960, - "size": 1630, + "offset": 162800, + "size": 1050, }, "TextMapPropagator.js": { - "offset": 223590, - "size": 1150, + "offset": 163850, + "size": 650, }, "TextMapPropagator.js.map": { - "offset": 224740, - "size": 4980, + "offset": 164500, + "size": 4770, }, }, }, "propagation-api.js": { - "offset": 218580, - "size": 910, + "offset": 161230, + "size": 410, }, "propagation-api.js.map": { - "offset": 219480, - "size": 1200, + "offset": 161630, + "size": 680, }, "trace": { "files": { "NonRecordingSpan.js": { - "offset": 231730, - "size": 2490, + "offset": 170270, + "size": 1380, }, "NonRecordingSpan.js.map": { - "offset": 234220, - "size": 3440, + "offset": 171640, + "size": 2900, }, "NoopTracer.js": { - "offset": 237660, - "size": 2770, + "offset": 174540, + "size": 2180, }, "NoopTracer.js.map": { - "offset": 240420, - "size": 5260, + "offset": 176720, + "size": 4900, }, "NoopTracerProvider.js": { - "offset": 245680, - "size": 1140, + "offset": 181610, + "size": 450, }, "NoopTracerProvider.js.map": { - "offset": 246820, - "size": 1560, + "offset": 182060, + "size": 1000, }, "ProxyTracer.js": { - "offset": 248380, - "size": 1950, + "offset": 183060, + "size": 1270, }, "ProxyTracer.js.map": { - "offset": 250330, - "size": 3540, + "offset": 184320, + "size": 3290, }, "ProxyTracerProvider.js": { - "offset": 253860, - "size": 2200, + "offset": 187610, + "size": 1460, }, "ProxyTracerProvider.js.map": { - "offset": 256060, - "size": 2990, + "offset": 189060, + "size": 2490, }, "Sampler.js": { - "offset": 259040, - "size": 660, + "offset": 191550, + "size": 140, }, "Sampler.js.map": { - "offset": 259690, - "size": 2350, + "offset": 191680, + "size": 1850, }, "SamplingResult.js": { - "offset": 262030, - "size": 1540, + "offset": 193520, + "size": 1030, }, "SamplingResult.js.map": { - "offset": 263560, - "size": 2700, + "offset": 194550, + "size": 2200, }, "SpanOptions.js": { - "offset": 266260, - "size": 660, + "offset": 196750, + "size": 140, }, "SpanOptions.js.map": { - "offset": 266910, - "size": 1480, + "offset": 196890, + "size": 980, }, "attributes.js": { - "offset": 268390, - "size": 660, + "offset": 197860, + "size": 140, }, "attributes.js.map": { - "offset": 269050, - "size": 1080, + "offset": 197990, + "size": 570, }, "context-utils.js": { - "offset": 270120, - "size": 2170, + "offset": 198560, + "size": 1650, }, "context-utils.js.map": { - "offset": 272280, - "size": 3510, + "offset": 200200, + "size": 2970, }, "internal": { "files": { "tracestate-impl.js": { - "offset": 275780, - "size": 4160, + "offset": 203170, + "size": 3430, }, "tracestate-impl.js.map": { - "offset": 279940, - "size": 6490, + "offset": 206600, + "size": 6150, }, "tracestate-validators.js": { - "offset": 286430, - "size": 1850, + "offset": 212740, + "size": 1320, }, "tracestate-validators.js.map": { - "offset": 288280, - "size": 2610, + "offset": 214060, + "size": 2070, }, "utils.js": { - "offset": 290880, - "size": 790, + "offset": 216120, + "size": 300, }, "utils.js.map": { - "offset": 291670, - "size": 1150, + "offset": 216410, + "size": 650, }, }, }, "invalid-span-constants.js": { - "offset": 292820, - "size": 950, + "offset": 217050, + "size": 500, }, "invalid-span-constants.js.map": { - "offset": 293760, - "size": 1420, + "offset": 217550, + "size": 1000, }, "link.js": { - "offset": 295180, - "size": 650, + "offset": 218550, + "size": 130, }, "link.js.map": { - "offset": 295830, - "size": 2030, + "offset": 218680, + "size": 1520, }, "span.js": { - "offset": 297860, - "size": 650, + "offset": 220190, + "size": 130, }, "span.js.map": { - "offset": 298510, - "size": 5320, + "offset": 220320, + "size": 5180, }, "span_context.js": { - "offset": 303820, - "size": 660, + "offset": 225490, + "size": 140, }, "span_context.js.map": { - "offset": 304480, - "size": 2850, + "offset": 225630, + "size": 2330, }, "span_kind.js": { - "offset": 307320, - "size": 1750, + "offset": 227950, + "size": 1260, }, "span_kind.js.map": { - "offset": 309070, - "size": 1890, + "offset": 229200, + "size": 1380, }, "spancontext-utils.js": { - "offset": 310950, - "size": 1670, + "offset": 230580, + "size": 2050, }, "spancontext-utils.js.map": { - "offset": 312620, - "size": 2650, + "offset": 232620, + "size": 4690, }, "status.js": { - "offset": 315260, - "size": 590, + "offset": 237310, + "size": 690, }, "status.js.map": { - "offset": 315850, - "size": 1450, + "offset": 237990, + "size": 980, }, "trace_flags.js": { - "offset": 317290, - "size": 940, + "offset": 238970, + "size": 450, }, "trace_flags.js.map": { - "offset": 318230, - "size": 1110, + "offset": 239410, + "size": 600, }, "trace_state.js": { - "offset": 319330, - "size": 660, + "offset": 240000, + "size": 140, }, "trace_state.js.map": { - "offset": 319990, - "size": 2390, + "offset": 240130, + "size": 1870, }, "tracer.js": { - "offset": 322370, - "size": 660, + "offset": 242000, + "size": 130, }, "tracer.js.map": { - "offset": 323020, - "size": 3430, + "offset": 242130, + "size": 2920, }, "tracer_options.js": { - "offset": 326440, - "size": 660, + "offset": 245040, + "size": 140, }, "tracer_options.js.map": { - "offset": 327100, - "size": 1010, + "offset": 245170, + "size": 490, }, "tracer_provider.js": { - "offset": 328110, - "size": 660, + "offset": 245660, + "size": 140, }, "tracer_provider.js.map": { - "offset": 328770, - "size": 1610, + "offset": 245800, + "size": 1090, }, }, }, "trace-api.js": { - "offset": 229720, - "size": 870, + "offset": 169260, + "size": 380, }, "trace-api.js.map": { - "offset": 230580, - "size": 1150, + "offset": 169630, + "size": 640, }, "version.js": { - "offset": 330370, - "size": 740, + "offset": 246880, + "size": 220, }, "version.js.map": { - "offset": 331100, - "size": 930, + "offset": 247100, + "size": 390, }, }, }, @@ -51680,638 +51652,578 @@ exports[`node_module collectors > yarn ms 2`] = ` "api": { "files": { "context.js": { - "offset": 332030, - "size": 2840, + "offset": 247480, + "size": 2330, }, "context.js.map": { - "offset": 334860, - "size": 4510, + "offset": 249810, + "size": 3990, }, "diag.js": { - "offset": 339370, - "size": 3920, + "offset": 253790, + "size": 3420, }, "diag.js.map": { - "offset": 343290, - "size": 6670, + "offset": 257210, + "size": 6180, }, "metrics.js": { - "offset": 349950, - "size": 2040, + "offset": 263380, + "size": 1520, }, "metrics.js.map": { - "offset": 351980, - "size": 3340, + "offset": 264900, + "size": 2800, }, "propagation.js": { - "offset": 355320, - "size": 3340, + "offset": 267690, + "size": 2830, }, "propagation.js.map": { - "offset": 358650, - "size": 5360, + "offset": 270520, + "size": 4900, }, "trace.js": { - "offset": 364010, - "size": 2840, + "offset": 275420, + "size": 2340, }, "trace.js.map": { - "offset": 366840, - "size": 4680, + "offset": 277750, + "size": 4160, }, }, }, "baggage": { "files": { "context-helpers.js": { - "offset": 371520, - "size": 1830, + "offset": 281910, + "size": 1310, }, "context-helpers.js.map": { - "offset": 373350, - "size": 2820, + "offset": 283220, + "size": 2280, }, "internal": { "files": { "baggage-impl.js": { - "offset": 376160, - "size": 1640, + "offset": 285500, + "size": 1090, }, "baggage-impl.js.map": { - "offset": 377800, - "size": 3210, + "offset": 286590, + "size": 2550, }, "symbol.js": { - "offset": 381000, - "size": 790, + "offset": 289130, + "size": 260, }, "symbol.js.map": { - "offset": 381780, - "size": 1020, + "offset": 289390, + "size": 470, }, }, }, "types.js": { - "offset": 382800, - "size": 650, + "offset": 289860, + "size": 130, }, "types.js.map": { - "offset": 383450, - "size": 3390, + "offset": 289990, + "size": 2380, }, "utils.js": { - "offset": 386830, - "size": 1590, + "offset": 292360, + "size": 1080, }, "utils.js.map": { - "offset": 388410, - "size": 2490, + "offset": 293440, + "size": 1970, }, }, }, "common": { "files": { "Attributes.js": { - "offset": 390900, - "size": 660, + "offset": 295400, + "size": 140, }, "Attributes.js.map": { - "offset": 391550, - "size": 1400, + "offset": 295540, + "size": 900, }, "Exception.js": { - "offset": 392950, - "size": 660, + "offset": 296430, + "size": 140, }, "Exception.js.map": { - "offset": 393610, - "size": 1390, + "offset": 296570, + "size": 860, }, "Time.js": { - "offset": 394990, + "offset": 297420, "size": 50, }, "Time.js.map": { - "offset": 395040, - "size": 1830, + "offset": 297470, + "size": 1330, }, }, }, "context": { "files": { "NoopContextManager.js": { - "offset": 398900, - "size": 1020, + "offset": 299810, + "size": 500, }, "NoopContextManager.js.map": { - "offset": 399920, - "size": 1810, + "offset": 300310, + "size": 1270, }, "context.js": { - "offset": 401730, - "size": 2140, + "offset": 301580, + "size": 1670, }, "context.js.map": { - "offset": 403860, - "size": 4100, + "offset": 303240, + "size": 3620, }, "types.js": { - "offset": 407960, - "size": 650, + "offset": 306850, + "size": 130, }, "types.js.map": { - "offset": 408610, - "size": 2540, + "offset": 306980, + "size": 2040, }, }, }, "context-api.js": { - "offset": 396860, - "size": 890, + "offset": 298800, + "size": 380, }, "context-api.js.map": { - "offset": 397740, - "size": 1170, + "offset": 299180, + "size": 640, }, "diag": { "files": { "ComponentLogger.js": { - "offset": 413590, - "size": 1900, + "offset": 310430, + "size": 1360, }, "ComponentLogger.js.map": { - "offset": 415480, - "size": 3320, + "offset": 311790, + "size": 2710, }, "consoleLogger.js": { - "offset": 418800, - "size": 2070, + "offset": 314490, + "size": 2550, }, "consoleLogger.js.map": { - "offset": 420860, - "size": 4620, + "offset": 317030, + "size": 5680, }, "internal": { "files": { "logLevelLogger.js": { - "offset": 425480, - "size": 1550, + "offset": 322710, + "size": 1030, }, "logLevelLogger.js.map": { - "offset": 427030, - "size": 2660, + "offset": 323730, + "size": 2150, }, "noopLogger.js": { - "offset": 429680, - "size": 1040, + "offset": 325880, + "size": 520, }, "noopLogger.js.map": { - "offset": 430720, - "size": 1440, + "offset": 326390, + "size": 900, }, }, }, "types.js": { - "offset": 432150, - "size": 1870, + "offset": 327280, + "size": 1350, }, "types.js.map": { - "offset": 434020, - "size": 5300, + "offset": 328630, + "size": 4850, }, }, }, "diag-api.js": { - "offset": 411140, - "size": 1080, + "offset": 309020, + "size": 580, }, "diag-api.js.map": { - "offset": 412220, - "size": 1370, + "offset": 309590, + "size": 840, }, "experimental": { "files": { "index.js": { - "offset": 439320, - "size": 710, + "offset": 333480, + "size": 300, }, "index.js.map": { - "offset": 440030, - "size": 980, + "offset": 333780, + "size": 570, }, "trace": { "files": { "SugaredOptions.js": { - "offset": 441000, - "size": 660, + "offset": 334340, + "size": 140, }, "SugaredOptions.js.map": { - "offset": 441660, - "size": 1270, + "offset": 334480, + "size": 720, }, "SugaredTracer.js": { - "offset": 442920, - "size": 2600, + "offset": 335200, + "size": 2610, }, "SugaredTracer.js.map": { - "offset": 445510, - "size": 9370, + "offset": 337810, + "size": 8890, }, }, }, }, }, "index.js": { - "offset": 454880, - "size": 2210, + "offset": 346700, + "size": 1760, }, "index.js.map": { - "offset": 457090, - "size": 5390, + "offset": 348450, + "size": 5160, }, "internal": { "files": { "global-utils.js": { - "offset": 462470, - "size": 2500, + "offset": 353610, + "size": 2170, }, "global-utils.js.map": { - "offset": 464970, - "size": 4900, + "offset": 355780, + "size": 4840, }, "semver.js": { - "offset": 469860, - "size": 5010, + "offset": 360610, + "size": 4490, }, "semver.js.map": { - "offset": 474870, - "size": 7270, + "offset": 365090, + "size": 6720, }, }, }, "metrics": { "files": { "Meter.js": { - "offset": 484180, - "size": 650, + "offset": 372840, + "size": 130, }, "Meter.js.map": { - "offset": 484830, - "size": 6210, + "offset": 372970, + "size": 5710, }, "MeterProvider.js": { - "offset": 491030, - "size": 660, + "offset": 378670, + "size": 140, }, "MeterProvider.js.map": { - "offset": 491690, - "size": 1450, + "offset": 378810, + "size": 930, }, "Metric.js": { - "offset": 493140, - "size": 890, + "offset": 379730, + "size": 390, }, "Metric.js.map": { - "offset": 494020, - "size": 5400, + "offset": 380120, + "size": 6650, }, "NoopMeter.js": { - "offset": 499410, - "size": 3570, + "offset": 386760, + "size": 3070, }, "NoopMeter.js.map": { - "offset": 502970, - "size": 6590, + "offset": 389820, + "size": 6080, }, "NoopMeterProvider.js": { - "offset": 509560, - "size": 990, + "offset": 395900, + "size": 470, }, "NoopMeterProvider.js.map": { - "offset": 510540, - "size": 1530, - }, - "ObservableResult.js": { - "offset": 512070, - "size": 670, - }, - "ObservableResult.js.map": { - "offset": 512730, - "size": 2340, + "offset": 396360, + "size": 990, }, }, }, "metrics-api.js": { - "offset": 482130, - "size": 890, + "offset": 371810, + "size": 390, }, "metrics-api.js.map": { - "offset": 483020, - "size": 1170, - }, - "platform": { - "files": { - "browser": { - "files": { - "globalThis.js": { - "offset": 515060, - "size": 1380, - }, - "globalThis.js.map": { - "offset": 516440, - "size": 1890, - }, - "index.js": { - "offset": 518320, - "size": 670, - }, - "index.js.map": { - "offset": 518990, - "size": 850, - }, - }, - }, - "index.js": { - "offset": 519840, - "size": 670, - }, - "index.js.map": { - "offset": 520500, - "size": 840, - }, - "node": { - "files": { - "globalThis.js": { - "offset": 521340, - "size": 860, - }, - "globalThis.js.map": { - "offset": 522200, - "size": 1150, - }, - "index.js": { - "offset": 523340, - "size": 670, - }, - "index.js.map": { - "offset": 524010, - "size": 850, - }, - }, - }, - }, + "offset": 372200, + "size": 650, }, "propagation": { "files": { "NoopTextMapPropagator.js": { - "offset": 526960, - "size": 1020, + "offset": 398420, + "size": 500, }, "NoopTextMapPropagator.js.map": { - "offset": 527970, - "size": 1590, + "offset": 398920, + "size": 1050, }, "TextMapPropagator.js": { - "offset": 529550, - "size": 1130, + "offset": 399960, + "size": 650, }, "TextMapPropagator.js.map": { - "offset": 530680, - "size": 4980, + "offset": 400610, + "size": 4770, }, }, }, "propagation-api.js": { - "offset": 524860, - "size": 910, + "offset": 397340, + "size": 410, }, "propagation-api.js.map": { - "offset": 525760, - "size": 1200, + "offset": 397750, + "size": 680, }, "trace": { "files": { "NonRecordingSpan.js": { - "offset": 537670, - "size": 1900, + "offset": 406380, + "size": 1380, }, "NonRecordingSpan.js.map": { - "offset": 539570, - "size": 3350, + "offset": 407750, + "size": 2900, }, "NoopTracer.js": { - "offset": 542910, - "size": 2560, + "offset": 410650, + "size": 2180, }, "NoopTracer.js.map": { - "offset": 545470, - "size": 5200, + "offset": 412830, + "size": 4900, }, "NoopTracerProvider.js": { - "offset": 550670, - "size": 970, + "offset": 417730, + "size": 450, }, "NoopTracerProvider.js.map": { - "offset": 551640, - "size": 1540, + "offset": 418180, + "size": 1000, }, "ProxyTracer.js": { - "offset": 553170, - "size": 1770, + "offset": 419180, + "size": 1270, }, "ProxyTracer.js.map": { - "offset": 554940, - "size": 3510, + "offset": 420440, + "size": 3290, }, "ProxyTracerProvider.js": { - "offset": 558440, - "size": 1900, + "offset": 423730, + "size": 1460, }, "ProxyTracerProvider.js.map": { - "offset": 560340, - "size": 2930, + "offset": 425180, + "size": 2490, }, "Sampler.js": { - "offset": 563270, - "size": 660, + "offset": 427670, + "size": 140, }, "Sampler.js.map": { - "offset": 563920, - "size": 2350, + "offset": 427800, + "size": 1850, }, "SamplingResult.js": { - "offset": 566260, - "size": 1540, + "offset": 429640, + "size": 1030, }, "SamplingResult.js.map": { - "offset": 567790, - "size": 2700, + "offset": 430670, + "size": 2200, }, "SpanOptions.js": { - "offset": 570480, - "size": 660, + "offset": 432870, + "size": 140, }, "SpanOptions.js.map": { - "offset": 571140, - "size": 1480, + "offset": 433000, + "size": 980, }, "attributes.js": { - "offset": 572620, - "size": 660, + "offset": 433970, + "size": 140, }, "attributes.js.map": { - "offset": 573270, - "size": 1080, + "offset": 434110, + "size": 570, }, "context-utils.js": { - "offset": 574350, - "size": 2170, + "offset": 434680, + "size": 1650, }, "context-utils.js.map": { - "offset": 576510, - "size": 3510, + "offset": 436320, + "size": 2970, }, "internal": { "files": { "tracestate-impl.js": { - "offset": 580010, - "size": 3780, + "offset": 439290, + "size": 3430, }, "tracestate-impl.js.map": { - "offset": 583790, - "size": 6450, + "offset": 442720, + "size": 6150, }, "tracestate-validators.js": { - "offset": 590240, - "size": 1840, + "offset": 448860, + "size": 1320, }, "tracestate-validators.js.map": { - "offset": 592070, - "size": 2610, + "offset": 450180, + "size": 2070, }, "utils.js": { - "offset": 594680, - "size": 790, + "offset": 452240, + "size": 300, }, "utils.js.map": { - "offset": 595470, - "size": 1150, + "offset": 452530, + "size": 650, }, }, }, "invalid-span-constants.js": { - "offset": 596620, - "size": 950, + "offset": 453170, + "size": 500, }, "invalid-span-constants.js.map": { - "offset": 597570, - "size": 1420, + "offset": 453670, + "size": 1000, }, "link.js": { - "offset": 598990, - "size": 650, + "offset": 454670, + "size": 130, }, "link.js.map": { - "offset": 599630, - "size": 2030, + "offset": 454800, + "size": 1520, }, "span.js": { - "offset": 601660, - "size": 650, + "offset": 456310, + "size": 130, }, "span.js.map": { - "offset": 602310, - "size": 5320, + "offset": 456440, + "size": 5180, }, "span_context.js": { - "offset": 607620, - "size": 660, + "offset": 461610, + "size": 140, }, "span_context.js.map": { - "offset": 608280, - "size": 2850, + "offset": 461750, + "size": 2330, }, "span_kind.js": { - "offset": 611120, - "size": 1750, + "offset": 464070, + "size": 1260, }, "span_kind.js.map": { - "offset": 612870, - "size": 1890, + "offset": 465320, + "size": 1380, }, "spancontext-utils.js": { - "offset": 614750, - "size": 1670, + "offset": 466690, + "size": 2050, }, "spancontext-utils.js.map": { - "offset": 616420, - "size": 2650, + "offset": 468740, + "size": 4690, }, "status.js": { - "offset": 619070, - "size": 590, + "offset": 473420, + "size": 690, }, "status.js.map": { - "offset": 619650, - "size": 1450, + "offset": 474110, + "size": 980, }, "trace_flags.js": { - "offset": 621100, - "size": 940, + "offset": 475080, + "size": 450, }, "trace_flags.js.map": { - "offset": 622040, - "size": 1110, + "offset": 475520, + "size": 600, }, "trace_state.js": { - "offset": 623140, - "size": 660, + "offset": 476120, + "size": 140, }, "trace_state.js.map": { - "offset": 623790, - "size": 2390, + "offset": 476250, + "size": 1870, }, "tracer.js": { - "offset": 626170, - "size": 660, + "offset": 478110, + "size": 130, }, "tracer.js.map": { - "offset": 626830, - "size": 3430, + "offset": 478240, + "size": 2920, }, "tracer_options.js": { - "offset": 630250, - "size": 660, + "offset": 481150, + "size": 140, }, "tracer_options.js.map": { - "offset": 630910, - "size": 1010, + "offset": 481290, + "size": 490, }, "tracer_provider.js": { - "offset": 631910, - "size": 660, + "offset": 481770, + "size": 140, }, "tracer_provider.js.map": { - "offset": 632570, - "size": 1610, + "offset": 481910, + "size": 1090, }, }, }, "trace-api.js": { - "offset": 535650, - "size": 870, + "offset": 405380, + "size": 380, }, "trace-api.js.map": { - "offset": 536520, - "size": 1150, + "offset": 405750, + "size": 640, }, "version.js": { - "offset": 634180, - "size": 740, + "offset": 483000, + "size": 220, }, "version.js.map": { - "offset": 634910, - "size": 930, + "offset": 483210, + "size": 390, }, }, }, @@ -52320,653 +52232,593 @@ exports[`node_module collectors > yarn ms 2`] = ` "api": { "files": { "context.js": { - "offset": 635840, - "size": 3040, + "offset": 483600, + "size": 2530, }, "context.js.map": { - "offset": 638870, - "size": 4430, + "offset": 486130, + "size": 3910, }, "diag.js": { - "offset": 643290, - "size": 4140, + "offset": 490030, + "size": 3640, }, "diag.js.map": { - "offset": 647430, - "size": 6560, + "offset": 493660, + "size": 6070, }, "metrics.js": { - "offset": 653990, - "size": 2240, + "offset": 499730, + "size": 1710, }, "metrics.js.map": { - "offset": 656220, - "size": 3250, + "offset": 501440, + "size": 2720, }, "propagation.js": { - "offset": 659470, - "size": 3610, + "offset": 504150, + "size": 3100, }, "propagation.js.map": { - "offset": 663070, - "size": 5140, + "offset": 507250, + "size": 4680, }, "trace.js": { - "offset": 668210, - "size": 3120, + "offset": 511930, + "size": 2620, }, "trace.js.map": { - "offset": 671320, - "size": 4480, + "offset": 514540, + "size": 3960, }, }, }, "baggage": { "files": { "context-helpers.js": { - "offset": 675790, - "size": 2150, + "offset": 518500, + "size": 1630, }, "context-helpers.js.map": { - "offset": 677940, - "size": 2800, + "offset": 520130, + "size": 2260, }, "internal": { "files": { "baggage-impl.js": { - "offset": 680730, - "size": 1770, + "offset": 522380, + "size": 1230, }, "baggage-impl.js.map": { - "offset": 682500, - "size": 3220, + "offset": 523610, + "size": 2560, }, "symbol.js": { - "offset": 685720, - "size": 900, + "offset": 526160, + "size": 380, }, "symbol.js.map": { - "offset": 686620, - "size": 1010, + "offset": 526540, + "size": 470, }, }, }, "types.js": { - "offset": 687630, - "size": 720, + "offset": 527000, + "size": 200, }, "types.js.map": { - "offset": 688340, - "size": 3390, + "offset": 527190, + "size": 2380, }, "utils.js": { - "offset": 691720, - "size": 1850, + "offset": 529570, + "size": 1350, }, "utils.js.map": { - "offset": 693570, - "size": 2420, + "offset": 530910, + "size": 1900, }, }, }, "common": { "files": { "Attributes.js": { - "offset": 695990, - "size": 730, + "offset": 532800, + "size": 200, }, "Attributes.js.map": { - "offset": 696710, - "size": 1400, + "offset": 533000, + "size": 900, }, "Exception.js": { - "offset": 698110, - "size": 720, + "offset": 533900, + "size": 200, }, "Exception.js.map": { - "offset": 698830, - "size": 1390, + "offset": 534100, + "size": 860, }, "Time.js": { - "offset": 700220, + "offset": 534960, "size": 110, }, "Time.js.map": { - "offset": 700330, - "size": 1830, + "offset": 535070, + "size": 1330, }, }, }, "context": { "files": { "NoopContextManager.js": { - "offset": 704270, - "size": 1180, + "offset": 537490, + "size": 660, }, "NoopContextManager.js.map": { - "offset": 705440, - "size": 1800, + "offset": 538140, + "size": 1260, }, "context.js": { - "offset": 707240, - "size": 2310, + "offset": 539400, + "size": 1830, }, "context.js.map": { - "offset": 709540, - "size": 4100, + "offset": 541230, + "size": 3620, }, "types.js": { - "offset": 713640, - "size": 720, + "offset": 544840, + "size": 200, }, "types.js.map": { - "offset": 714360, - "size": 2540, + "offset": 545030, + "size": 2040, }, }, }, "context-api.js": { - "offset": 702150, - "size": 990, + "offset": 536390, + "size": 490, }, "context-api.js.map": { - "offset": 703140, - "size": 1130, + "offset": 536880, + "size": 610, }, "diag": { "files": { "ComponentLogger.js": { - "offset": 719400, - "size": 2080, + "offset": 548550, + "size": 1540, }, "ComponentLogger.js.map": { - "offset": 721480, - "size": 3310, + "offset": 550090, + "size": 2700, }, "consoleLogger.js": { - "offset": 724780, - "size": 2220, + "offset": 552780, + "size": 2750, }, "consoleLogger.js.map": { - "offset": 727000, - "size": 4630, + "offset": 555530, + "size": 5680, }, "internal": { "files": { "logLevelLogger.js": { - "offset": 731630, - "size": 1800, + "offset": 561210, + "size": 1270, }, "logLevelLogger.js.map": { - "offset": 733420, - "size": 2650, + "offset": 562480, + "size": 2140, }, "noopLogger.js": { - "offset": 736070, - "size": 1200, + "offset": 564610, + "size": 680, }, "noopLogger.js.map": { - "offset": 737260, - "size": 1450, + "offset": 565290, + "size": 910, }, }, }, "types.js": { - "offset": 738710, - "size": 2010, + "offset": 566190, + "size": 1490, }, "types.js.map": { - "offset": 740710, - "size": 5310, + "offset": 567670, + "size": 4860, }, }, }, "diag-api.js": { - "offset": 716890, - "size": 1180, + "offset": 547070, + "size": 680, }, "diag-api.js.map": { - "offset": 718070, - "size": 1330, + "offset": 547750, + "size": 810, }, "experimental": { "files": { "index.js": { - "offset": 746010, - "size": 1090, + "offset": 572520, + "size": 680, }, "index.js.map": { - "offset": 747100, - "size": 980, + "offset": 573200, + "size": 570, }, "trace": { "files": { "SugaredOptions.js": { - "offset": 748070, - "size": 730, + "offset": 573770, + "size": 210, }, "SugaredOptions.js.map": { - "offset": 748800, - "size": 1270, + "offset": 573970, + "size": 730, }, "SugaredTracer.js": { - "offset": 750060, + "offset": 574690, "size": 2770, }, "SugaredTracer.js.map": { - "offset": 752830, - "size": 9350, + "offset": 577460, + "size": 8870, }, }, }, }, }, "index.js": { - "offset": 762180, - "size": 6440, + "offset": 586320, + "size": 5990, }, "index.js.map": { - "offset": 768620, - "size": 5270, + "offset": 592310, + "size": 5040, }, "internal": { "files": { "global-utils.js": { - "offset": 773880, - "size": 2840, + "offset": 597350, + "size": 2500, }, "global-utils.js.map": { - "offset": 776720, - "size": 4860, + "offset": 599840, + "size": 4820, }, "semver.js": { - "offset": 781570, - "size": 5210, + "offset": 604660, + "size": 4690, }, "semver.js.map": { - "offset": 786780, - "size": 7240, + "offset": 609350, + "size": 6700, }, }, }, "metrics": { "files": { "Meter.js": { - "offset": 796140, - "size": 720, + "offset": 617140, + "size": 200, }, "Meter.js.map": { - "offset": 796850, - "size": 6210, + "offset": 617340, + "size": 5710, }, "MeterProvider.js": { - "offset": 803060, - "size": 730, + "offset": 623040, + "size": 210, }, "MeterProvider.js.map": { - "offset": 803780, - "size": 1450, + "offset": 623240, + "size": 930, }, "Metric.js": { - "offset": 805230, - "size": 1010, + "offset": 624170, + "size": 510, }, "Metric.js.map": { - "offset": 806230, - "size": 5400, + "offset": 624680, + "size": 6650, }, "NoopMeter.js": { - "offset": 811630, - "size": 4780, + "offset": 631330, + "size": 4280, }, "NoopMeter.js.map": { - "offset": 816410, - "size": 6590, + "offset": 635600, + "size": 6080, }, "NoopMeterProvider.js": { - "offset": 822990, - "size": 1180, + "offset": 641670, + "size": 660, }, "NoopMeterProvider.js.map": { - "offset": 824170, - "size": 1500, - }, - "ObservableResult.js": { - "offset": 825660, - "size": 730, - }, - "ObservableResult.js.map": { - "offset": 826390, - "size": 2340, + "offset": 642330, + "size": 960, }, }, }, "metrics-api.js": { - "offset": 794020, - "size": 990, + "offset": 616040, + "size": 500, }, "metrics-api.js.map": { - "offset": 795010, - "size": 1130, - }, - "platform": { - "files": { - "browser": { - "files": { - "globalThis.js": { - "offset": 828730, - "size": 1480, - }, - "globalThis.js.map": { - "offset": 830210, - "size": 1880, - }, - "index.js": { - "offset": 832080, - "size": 1280, - }, - "index.js.map": { - "offset": 833360, - "size": 860, - }, - }, - }, - "index.js": { - "offset": 834210, - "size": 1270, - }, - "index.js.map": { - "offset": 835480, - "size": 840, - }, - "node": { - "files": { - "globalThis.js": { - "offset": 836320, - "size": 970, - }, - "globalThis.js.map": { - "offset": 837280, - "size": 1140, - }, - "index.js": { - "offset": 838420, - "size": 1280, - }, - "index.js.map": { - "offset": 839690, - "size": 860, - }, - }, - }, - }, + "offset": 616530, + "size": 610, }, "propagation": { "files": { "NoopTextMapPropagator.js": { - "offset": 842720, - "size": 1190, + "offset": 644450, + "size": 660, }, "NoopTextMapPropagator.js.map": { - "offset": 843910, - "size": 1600, + "offset": 645110, + "size": 1060, }, "TextMapPropagator.js": { - "offset": 845500, - "size": 1260, + "offset": 646160, + "size": 790, }, "TextMapPropagator.js.map": { - "offset": 846750, - "size": 4970, + "offset": 646950, + "size": 4750, }, }, }, "propagation-api.js": { - "offset": 840550, - "size": 1030, + "offset": 643290, + "size": 530, }, "propagation-api.js.map": { - "offset": 841570, - "size": 1160, + "offset": 643810, + "size": 640, }, "trace": { "files": { "NonRecordingSpan.js": { - "offset": 853810, - "size": 2080, + "offset": 652770, + "size": 1560, }, "NonRecordingSpan.js.map": { - "offset": 855880, - "size": 3330, + "offset": 654320, + "size": 2880, }, "NoopTracer.js": { - "offset": 859200, - "size": 2830, + "offset": 657200, + "size": 2450, }, "NoopTracer.js.map": { - "offset": 862020, - "size": 5100, + "offset": 659640, + "size": 4800, }, "NoopTracerProvider.js": { - "offset": 867120, - "size": 1150, + "offset": 664430, + "size": 630, }, "NoopTracerProvider.js.map": { - "offset": 868260, - "size": 1520, + "offset": 665050, + "size": 990, }, "ProxyTracer.js": { - "offset": 869770, - "size": 1920, + "offset": 666040, + "size": 1420, }, "ProxyTracer.js.map": { - "offset": 871690, - "size": 3490, + "offset": 667450, + "size": 3270, }, "ProxyTracerProvider.js": { - "offset": 875180, - "size": 2100, + "offset": 670720, + "size": 1660, }, "ProxyTracerProvider.js.map": { - "offset": 877270, - "size": 2890, + "offset": 672370, + "size": 2440, }, "Sampler.js": { - "offset": 880160, - "size": 720, + "offset": 674810, + "size": 200, }, "Sampler.js.map": { - "offset": 880870, - "size": 2350, + "offset": 675010, + "size": 1850, }, "SamplingResult.js": { - "offset": 883220, - "size": 1680, + "offset": 676850, + "size": 1170, }, "SamplingResult.js.map": { - "offset": 884890, - "size": 2700, + "offset": 678020, + "size": 2210, }, "SpanOptions.js": { - "offset": 887590, - "size": 730, + "offset": 680230, + "size": 210, }, "SpanOptions.js.map": { - "offset": 888310, - "size": 1480, + "offset": 680430, + "size": 980, }, "attributes.js": { - "offset": 889790, - "size": 730, + "offset": 681400, + "size": 200, }, "attributes.js.map": { - "offset": 890510, - "size": 1080, + "offset": 681600, + "size": 570, }, "context-utils.js": { - "offset": 891590, - "size": 2590, + "offset": 682170, + "size": 2070, }, "context-utils.js.map": { - "offset": 894170, - "size": 3460, + "offset": 684230, + "size": 2930, }, "internal": { "files": { "tracestate-impl.js": { - "offset": 897630, - "size": 3980, + "offset": 687160, + "size": 3630, }, "tracestate-impl.js.map": { - "offset": 901610, - "size": 6430, + "offset": 690790, + "size": 6130, }, "tracestate-validators.js": { - "offset": 908040, - "size": 2030, + "offset": 696920, + "size": 1510, }, "tracestate-validators.js.map": { - "offset": 910070, - "size": 2630, + "offset": 698420, + "size": 2080, }, "utils.js": { - "offset": 912690, - "size": 970, + "offset": 700500, + "size": 470, }, "utils.js.map": { - "offset": 913650, - "size": 1130, + "offset": 700960, + "size": 630, }, }, }, "invalid-span-constants.js": { - "offset": 914780, - "size": 1140, + "offset": 701590, + "size": 690, }, "invalid-span-constants.js.map": { - "offset": 915910, - "size": 1370, + "offset": 702270, + "size": 950, }, "link.js": { - "offset": 917280, - "size": 720, + "offset": 703220, + "size": 200, }, "link.js.map": { - "offset": 918000, - "size": 2040, + "offset": 703410, + "size": 1520, }, "span.js": { - "offset": 920030, - "size": 720, + "offset": 704930, + "size": 200, }, "span.js.map": { - "offset": 920740, - "size": 5320, + "offset": 705120, + "size": 5180, }, "span_context.js": { - "offset": 926050, - "size": 730, + "offset": 710290, + "size": 210, }, "span_context.js.map": { - "offset": 926780, - "size": 2850, + "offset": 710500, + "size": 2330, }, "span_kind.js": { - "offset": 929620, - "size": 1880, + "offset": 712820, + "size": 1380, }, "span_kind.js.map": { - "offset": 931490, - "size": 1890, + "offset": 714190, + "size": 1390, }, "spancontext-utils.js": { - "offset": 933380, - "size": 2070, + "offset": 715570, + "size": 2450, }, "spancontext-utils.js.map": { - "offset": 935450, - "size": 2610, + "offset": 718020, + "size": 4650, }, "status.js": { - "offset": 938060, - "size": 720, + "offset": 722660, + "size": 830, }, "status.js.map": { - "offset": 938780, - "size": 1450, + "offset": 723490, + "size": 980, }, "trace_flags.js": { - "offset": 940220, - "size": 1070, + "offset": 724460, + "size": 570, }, "trace_flags.js.map": { - "offset": 941290, - "size": 1110, + "offset": 725030, + "size": 600, }, "trace_state.js": { - "offset": 942400, - "size": 730, + "offset": 725630, + "size": 210, }, "trace_state.js.map": { - "offset": 943120, - "size": 2390, + "offset": 725830, + "size": 1870, }, "tracer.js": { - "offset": 945500, - "size": 720, + "offset": 727690, + "size": 200, }, "tracer.js.map": { - "offset": 946220, - "size": 3430, + "offset": 727890, + "size": 2920, }, "tracer_options.js": { - "offset": 949640, - "size": 730, + "offset": 730800, + "size": 210, }, "tracer_options.js.map": { - "offset": 950370, - "size": 1010, + "offset": 731010, + "size": 490, }, "tracer_provider.js": { - "offset": 951380, - "size": 730, + "offset": 731490, + "size": 210, }, "tracer_provider.js.map": { - "offset": 952100, - "size": 1610, + "offset": 731690, + "size": 1090, }, }, }, "trace-api.js": { - "offset": 851720, - "size": 980, + "offset": 651700, + "size": 480, }, "trace-api.js.map": { - "offset": 852690, - "size": 1120, + "offset": 652170, + "size": 600, }, "version.js": { - "offset": 953710, - "size": 840, + "offset": 732780, + "size": 320, }, "version.js.map": { - "offset": 954540, - "size": 930, + "offset": 733090, + "size": 380, }, }, }, }, }, "package.json": { - "offset": 955460, - "size": 2390, + "offset": 733470, + "size": 1970, }, }, }, "api-logs": { "files": { "LICENSE": { - "offset": 957850, + "offset": 735430, "size": 11360, }, "build": { @@ -52974,65 +52826,65 @@ exports[`node_module collectors > yarn ms 2`] = ` "esm": { "files": { "NoopLogger.js": { - "offset": 969200, + "offset": 746790, "size": 880, }, "NoopLogger.js.map": { - "offset": 970080, + "offset": 747670, "size": 1160, }, "NoopLoggerProvider.js": { - "offset": 971240, + "offset": 748820, "size": 1050, }, "NoopLoggerProvider.js.map": { - "offset": 972280, + "offset": 749870, "size": 1540, }, "ProxyLogger.js": { - "offset": 973810, + "offset": 751400, "size": 1730, }, "ProxyLogger.js.map": { - "offset": 975530, + "offset": 753120, "size": 2870, }, "ProxyLoggerProvider.js": { - "offset": 978400, + "offset": 755990, "size": 1760, }, "ProxyLoggerProvider.js.map": { - "offset": 980150, + "offset": 757740, "size": 2540, }, "api": { "files": { "logs.js": { - "offset": 982690, + "offset": 760270, "size": 2470, }, "logs.js.map": { - "offset": 985150, + "offset": 762740, "size": 3800, }, }, }, "index.js": { - "offset": 988950, + "offset": 766540, "size": 1020, }, "index.js.map": { - "offset": 989960, + "offset": 767550, "size": 1760, }, "internal": { "files": { "global-utils.js": { - "offset": 991720, + "offset": 769310, "size": 1880, }, "global-utils.js.map": { - "offset": 993600, + "offset": 771190, "size": 2680, }, }, @@ -53042,47 +52894,47 @@ exports[`node_module collectors > yarn ms 2`] = ` "browser": { "files": { "globalThis.js": { - "offset": 996280, + "offset": 773860, "size": 1400, }, "globalThis.js.map": { - "offset": 997680, + "offset": 775260, "size": 1950, }, "index.js": { - "offset": 999620, + "offset": 777210, "size": 690, }, "index.js.map": { - "offset": 1000310, + "offset": 777890, "size": 890, }, }, }, "index.js": { - "offset": 1001190, + "offset": 778780, "size": 680, }, "index.js.map": { - "offset": 1001870, + "offset": 779460, "size": 870, }, "node": { "files": { "globalThis.js": { - "offset": 1002730, + "offset": 780320, "size": 860, }, "globalThis.js.map": { - "offset": 1003590, + "offset": 781180, "size": 1150, }, "index.js": { - "offset": 1004740, + "offset": 782320, "size": 690, }, "index.js.map": { - "offset": 1005420, + "offset": 783010, "size": 890, }, }, @@ -53092,53 +52944,53 @@ exports[`node_module collectors > yarn ms 2`] = ` "types": { "files": { "AnyValue.js": { - "offset": 1006300, + "offset": 783890, "size": 660, }, "AnyValue.js.map": { - "offset": 1006950, + "offset": 784540, "size": 1360, }, "LogRecord.js": { - "offset": 1008310, + "offset": 785900, "size": 2270, }, "LogRecord.js.map": { - "offset": 1010580, + "offset": 788160, "size": 2580, }, "Logger.js": { - "offset": 1013150, + "offset": 790740, "size": 660, }, "Logger.js.map": { - "offset": 1013800, + "offset": 791390, "size": 1020, }, "LoggerOptions.js": { - "offset": 1014820, + "offset": 792400, "size": 60, }, "LoggerOptions.js.map": { - "offset": 1014870, + "offset": 792460, "size": 1300, }, "LoggerProvider.js": { - "offset": 1016160, + "offset": 793750, "size": 660, }, "LoggerProvider.js.map": { - "offset": 1016820, + "offset": 794410, "size": 1500, }, }, }, "version.js": { - "offset": 1018320, + "offset": 795900, "size": 740, }, "version.js.map": { - "offset": 1019050, + "offset": 796640, "size": 930, }, }, @@ -53146,65 +52998,65 @@ exports[`node_module collectors > yarn ms 2`] = ` "esnext": { "files": { "NoopLogger.js": { - "offset": 1019980, + "offset": 797570, "size": 750, }, "NoopLogger.js.map": { - "offset": 1020720, + "offset": 798310, "size": 1130, }, "NoopLoggerProvider.js": { - "offset": 1021840, + "offset": 799430, "size": 880, }, "NoopLoggerProvider.js.map": { - "offset": 1022720, + "offset": 800300, "size": 1510, }, "ProxyLogger.js": { - "offset": 1024220, + "offset": 801810, "size": 1580, }, "ProxyLogger.js.map": { - "offset": 1025790, + "offset": 803380, "size": 2850, }, "ProxyLoggerProvider.js": { - "offset": 1028630, + "offset": 806220, "size": 1450, }, "ProxyLoggerProvider.js.map": { - "offset": 1030080, + "offset": 807670, "size": 2490, }, "api": { "files": { "logs.js": { - "offset": 1032570, + "offset": 810150, "size": 2260, }, "logs.js.map": { - "offset": 1034820, + "offset": 812410, "size": 3770, }, }, }, "index.js": { - "offset": 1038590, + "offset": 816180, "size": 1020, }, "index.js.map": { - "offset": 1039610, + "offset": 817190, "size": 1760, }, "internal": { "files": { "global-utils.js": { - "offset": 1041360, + "offset": 818950, "size": 1860, }, "global-utils.js.map": { - "offset": 1043220, + "offset": 820810, "size": 2680, }, }, @@ -53214,47 +53066,47 @@ exports[`node_module collectors > yarn ms 2`] = ` "browser": { "files": { "globalThis.js": { - "offset": 1045890, + "offset": 823480, "size": 1410, }, "globalThis.js.map": { - "offset": 1047290, + "offset": 824880, "size": 1950, }, "index.js": { - "offset": 1049240, + "offset": 826830, "size": 690, }, "index.js.map": { - "offset": 1049920, + "offset": 827510, "size": 890, }, }, }, "index.js": { - "offset": 1050810, + "offset": 828390, "size": 680, }, "index.js.map": { - "offset": 1051480, + "offset": 829070, "size": 870, }, "node": { "files": { "globalThis.js": { - "offset": 1052350, + "offset": 829940, "size": 860, }, "globalThis.js.map": { - "offset": 1053210, + "offset": 830800, "size": 1150, }, "index.js": { - "offset": 1054350, + "offset": 831940, "size": 690, }, "index.js.map": { - "offset": 1055040, + "offset": 832620, "size": 890, }, }, @@ -53264,53 +53116,53 @@ exports[`node_module collectors > yarn ms 2`] = ` "types": { "files": { "AnyValue.js": { - "offset": 1055920, + "offset": 833510, "size": 660, }, "AnyValue.js.map": { - "offset": 1056570, + "offset": 834160, "size": 1360, }, "LogRecord.js": { - "offset": 1057930, + "offset": 835520, "size": 2270, }, "LogRecord.js.map": { - "offset": 1060190, + "offset": 837780, "size": 2580, }, "Logger.js": { - "offset": 1062770, + "offset": 840350, "size": 660, }, "Logger.js.map": { - "offset": 1063420, + "offset": 841000, "size": 1020, }, "LoggerOptions.js": { - "offset": 1064430, + "offset": 842020, "size": 60, }, "LoggerOptions.js.map": { - "offset": 1064480, + "offset": 842070, "size": 1300, }, "LoggerProvider.js": { - "offset": 1065780, + "offset": 843370, "size": 660, }, "LoggerProvider.js.map": { - "offset": 1066440, + "offset": 844030, "size": 1500, }, }, }, "version.js": { - "offset": 1067930, + "offset": 845520, "size": 740, }, "version.js.map": { - "offset": 1068670, + "offset": 846260, "size": 930, }, }, @@ -53318,65 +53170,65 @@ exports[`node_module collectors > yarn ms 2`] = ` "src": { "files": { "NoopLogger.js": { - "offset": 1069600, + "offset": 847180, "size": 900, }, "NoopLogger.js.map": { - "offset": 1070490, + "offset": 848080, "size": 1130, }, "NoopLoggerProvider.js": { - "offset": 1071610, + "offset": 849200, "size": 1080, }, "NoopLoggerProvider.js.map": { - "offset": 1072680, + "offset": 850270, "size": 1480, }, "ProxyLogger.js": { - "offset": 1074160, + "offset": 851740, "size": 1730, }, "ProxyLogger.js.map": { - "offset": 1075880, + "offset": 853470, "size": 2830, }, "ProxyLoggerProvider.js": { - "offset": 1078710, + "offset": 856290, "size": 1650, }, "ProxyLoggerProvider.js.map": { - "offset": 1080350, + "offset": 857940, "size": 2440, }, "api": { "files": { "logs.js": { - "offset": 1082790, + "offset": 860380, "size": 2570, }, "logs.js.map": { - "offset": 1085360, + "offset": 862940, "size": 3670, }, }, }, "index.js": { - "offset": 1089020, + "offset": 866600, "size": 2210, }, "index.js.map": { - "offset": 1091220, + "offset": 868810, "size": 1710, }, "internal": { "files": { "global-utils.js": { - "offset": 1092930, + "offset": 870520, "size": 2080, }, "global-utils.js.map": { - "offset": 1095010, + "offset": 872600, "size": 2630, }, }, @@ -53386,47 +53238,47 @@ exports[`node_module collectors > yarn ms 2`] = ` "browser": { "files": { "globalThis.js": { - "offset": 1097630, + "offset": 875220, "size": 1510, }, "globalThis.js.map": { - "offset": 1099140, + "offset": 876730, "size": 1940, }, "index.js": { - "offset": 1101080, + "offset": 878670, "size": 920, }, "index.js.map": { - "offset": 1101990, + "offset": 879580, "size": 890, }, }, }, "index.js": { - "offset": 1102870, + "offset": 880460, "size": 900, }, "index.js.map": { - "offset": 1103770, + "offset": 881360, "size": 870, }, "node": { "files": { "globalThis.js": { - "offset": 1104630, + "offset": 882220, "size": 970, }, "globalThis.js.map": { - "offset": 1105590, + "offset": 883180, "size": 1140, }, "index.js": { - "offset": 1106730, + "offset": 884320, "size": 920, }, "index.js.map": { - "offset": 1107650, + "offset": 885230, "size": 880, }, }, @@ -53436,53 +53288,53 @@ exports[`node_module collectors > yarn ms 2`] = ` "types": { "files": { "AnyValue.js": { - "offset": 1108520, + "offset": 886110, "size": 720, }, "AnyValue.js.map": { - "offset": 1109240, + "offset": 886830, "size": 1360, }, "LogRecord.js": { - "offset": 1110600, + "offset": 888190, "size": 2410, }, "LogRecord.js.map": { - "offset": 1113000, + "offset": 890590, "size": 2580, }, "Logger.js": { - "offset": 1115580, + "offset": 893170, "size": 720, }, "Logger.js.map": { - "offset": 1116300, + "offset": 893880, "size": 1020, }, "LoggerOptions.js": { - "offset": 1117310, + "offset": 894900, "size": 120, }, "LoggerOptions.js.map": { - "offset": 1117430, + "offset": 895020, "size": 1300, }, "LoggerProvider.js": { - "offset": 1118730, + "offset": 896310, "size": 730, }, "LoggerProvider.js.map": { - "offset": 1119450, + "offset": 897040, "size": 1500, }, }, }, "version.js": { - "offset": 1120950, + "offset": 898530, "size": 840, }, "version.js.map": { - "offset": 1121780, + "offset": 899370, "size": 930, }, }, @@ -53490,7 +53342,7 @@ exports[`node_module collectors > yarn ms 2`] = ` }, }, "package.json": { - "offset": 1122700, + "offset": 900290, "size": 1810, }, }, @@ -53498,7 +53350,7 @@ exports[`node_module collectors > yarn ms 2`] = ` "context-async-hooks": { "files": { "LICENSE": { - "offset": 1124510, + "offset": 902090, "size": 11360, }, "build": { @@ -53506,43 +53358,43 @@ exports[`node_module collectors > yarn ms 2`] = ` "src": { "files": { "AbstractAsyncHooksContextManager.js": { - "offset": 1135860, + "offset": 913450, "size": 7560, }, "AbstractAsyncHooksContextManager.js.map": { - "offset": 1143420, + "offset": 921000, "size": 12010, }, "AsyncHooksContextManager.js": { - "offset": 1155420, + "offset": 933010, "size": 3760, }, "AsyncHooksContextManager.js.map": { - "offset": 1159180, + "offset": 936770, "size": 5780, }, "AsyncLocalStorageContextManager.js": { - "offset": 1164960, + "offset": 942550, "size": 1740, }, "AsyncLocalStorageContextManager.js.map": { - "offset": 1166690, + "offset": 944280, "size": 2460, }, "index.js": { - "offset": 1169150, + "offset": 946740, "size": 1310, }, "index.js.map": { - "offset": 1170460, + "offset": 948050, "size": 1010, }, "version.js": { - "offset": 1171470, + "offset": 949060, "size": 840, }, "version.js.map": { - "offset": 1172300, + "offset": 949890, "size": 930, }, }, @@ -53550,7 +53402,7 @@ exports[`node_module collectors > yarn ms 2`] = ` }, }, "package.json": { - "offset": 1173220, + "offset": 950810, "size": 1020, }, }, @@ -53558,7 +53410,7 @@ exports[`node_module collectors > yarn ms 2`] = ` "core": { "files": { "LICENSE": { - "offset": 1174240, + "offset": 951830, "size": 11360, }, "build": { @@ -53566,41 +53418,41 @@ exports[`node_module collectors > yarn ms 2`] = ` "esm": { "files": { "ExportResult.js": { - "offset": 1185600, + "offset": 963190, "size": 890, }, "ExportResult.js.map": { - "offset": 1186490, + "offset": 964080, "size": 1050, }, "baggage": { "files": { "constants.js": { - "offset": 1187540, + "offset": 965120, "size": 1220, }, "constants.js.map": { - "offset": 1188750, + "offset": 966340, "size": 1750, }, "propagation": { "files": { "W3CBaggagePropagator.js": { - "offset": 1190500, + "offset": 968090, "size": 3080, }, "W3CBaggagePropagator.js.map": { - "offset": 1193580, + "offset": 971170, "size": 4920, }, }, }, "utils.js": { - "offset": 1198500, + "offset": 976090, "size": 3660, }, "utils.js.map": { - "offset": 1202160, + "offset": 979750, "size": 5640, }, }, @@ -53608,87 +53460,87 @@ exports[`node_module collectors > yarn ms 2`] = ` "common": { "files": { "anchored-clock.js": { - "offset": 1207790, + "offset": 985380, "size": 2660, }, "anchored-clock.js.map": { - "offset": 1210450, + "offset": 988040, "size": 3430, }, "attributes.js": { - "offset": 1213870, + "offset": 991460, "size": 4190, }, "attributes.js.map": { - "offset": 1218050, + "offset": 995640, "size": 4320, }, "global-error-handler.js": { - "offset": 1222370, + "offset": 999960, "size": 1170, }, "global-error-handler.js.map": { - "offset": 1223540, + "offset": 1001120, "size": 1770, }, "hex-to-binary.js": { - "offset": 1225300, + "offset": 1002890, "size": 1230, }, "hex-to-binary.js.map": { - "offset": 1226520, + "offset": 1004110, "size": 2160, }, "logging-error-handler.js": { - "offset": 1228680, + "offset": 1006270, "size": 1870, }, "logging-error-handler.js.map": { - "offset": 1230540, + "offset": 1008130, "size": 3010, }, "time.js": { - "offset": 1233550, + "offset": 1011140, "size": 4650, }, "time.js.map": { - "offset": 1238200, + "offset": 1015780, "size": 8750, }, "types.js": { - "offset": 1246940, + "offset": 1024530, "size": 650, }, "types.js.map": { - "offset": 1247590, + "offset": 1025180, "size": 2440, }, }, }, "index.js": { - "offset": 1250030, + "offset": 1027610, "size": 3260, }, "index.js.map": { - "offset": 1253280, + "offset": 1030870, "size": 5640, }, "internal": { "files": { "exporter.js": { - "offset": 1258920, + "offset": 1036510, "size": 1220, }, "exporter.js.map": { - "offset": 1260130, + "offset": 1037720, "size": 1960, }, "validators.js": { - "offset": 1262090, + "offset": 1039670, "size": 1840, }, "validators.js.map": { - "offset": 1263920, + "offset": 1041510, "size": 2580, }, }, @@ -53698,143 +53550,143 @@ exports[`node_module collectors > yarn ms 2`] = ` "browser": { "files": { "RandomIdGenerator.js": { - "offset": 1266500, + "offset": 1044090, "size": 1310, }, "RandomIdGenerator.js.map": { - "offset": 1267800, + "offset": 1045390, "size": 2750, }, "environment.js": { - "offset": 1270550, + "offset": 1048140, "size": 1050, }, "environment.js.map": { - "offset": 1271590, + "offset": 1049180, "size": 1720, }, "globalThis.js": { - "offset": 1273310, + "offset": 1050900, "size": 1380, }, "globalThis.js.map": { - "offset": 1274680, + "offset": 1052270, "size": 1910, }, "hex-to-base64.js": { - "offset": 1276590, + "offset": 1054170, "size": 1730, }, "hex-to-base64.js.map": { - "offset": 1278310, + "offset": 1055900, "size": 1190, }, "index.js": { - "offset": 1279500, + "offset": 1057090, "size": 980, }, "index.js.map": { - "offset": 1280480, + "offset": 1058060, "size": 1450, }, "performance.js": { - "offset": 1281930, + "offset": 1059510, "size": 690, }, "performance.js.map": { - "offset": 1282610, + "offset": 1060200, "size": 900, }, "sdk-info.js": { - "offset": 1283510, + "offset": 1061090, "size": 1250, }, "sdk-info.js.map": { - "offset": 1284750, + "offset": 1062340, "size": 1700, }, "timer-util.js": { - "offset": 1286450, + "offset": 1064040, "size": 690, }, "timer-util.js.map": { - "offset": 1287130, + "offset": 1064720, "size": 900, }, }, }, "index.js": { - "offset": 1288030, + "offset": 1065620, "size": 780, }, "index.js.map": { - "offset": 1288810, + "offset": 1066400, "size": 1070, }, "node": { "files": { "RandomIdGenerator.js": { - "offset": 1289880, + "offset": 1067460, "size": 2250, }, "RandomIdGenerator.js.map": { - "offset": 1292130, + "offset": 1069710, "size": 3200, }, "environment.js": { - "offset": 1295320, + "offset": 1072900, "size": 1000, }, "environment.js.map": { - "offset": 1296320, + "offset": 1073900, "size": 1600, }, "globalThis.js": { - "offset": 1297920, + "offset": 1075500, "size": 860, }, "globalThis.js.map": { - "offset": 1298770, + "offset": 1076360, "size": 1150, }, "hex-to-base64.js": { - "offset": 1299920, + "offset": 1077510, "size": 810, }, "hex-to-base64.js.map": { - "offset": 1300730, + "offset": 1078310, "size": 1170, }, "index.js": { - "offset": 1301890, + "offset": 1079480, "size": 980, }, "index.js.map": { - "offset": 1302870, + "offset": 1080460, "size": 1450, }, "performance.js": { - "offset": 1304310, + "offset": 1081900, "size": 730, }, "performance.js.map": { - "offset": 1305040, + "offset": 1082630, "size": 980, }, "sdk-info.js": { - "offset": 1306020, + "offset": 1083610, "size": 1250, }, "sdk-info.js.map": { - "offset": 1307260, + "offset": 1084850, "size": 1700, }, "timer-util.js": { - "offset": 1308960, + "offset": 1086540, "size": 710, }, "timer-util.js.map": { - "offset": 1309660, + "offset": 1087250, "size": 960, }, }, @@ -53844,11 +53696,11 @@ exports[`node_module collectors > yarn ms 2`] = ` "propagation": { "files": { "composite.js": { - "offset": 1310610, + "offset": 1088200, "size": 4180, }, "composite.js.map": { - "offset": 1314790, + "offset": 1092380, "size": 5160, }, }, @@ -53856,79 +53708,79 @@ exports[`node_module collectors > yarn ms 2`] = ` "trace": { "files": { "IdGenerator.js": { - "offset": 1319940, + "offset": 1097530, "size": 660, }, "IdGenerator.js.map": { - "offset": 1320600, + "offset": 1098190, "size": 1200, }, "TraceState.js": { - "offset": 1321790, + "offset": 1099380, "size": 4100, }, "TraceState.js.map": { - "offset": 1325890, + "offset": 1103480, "size": 6450, }, "W3CTraceContextPropagator.js": { - "offset": 1332340, + "offset": 1109930, "size": 4660, }, "W3CTraceContextPropagator.js.map": { - "offset": 1337000, + "offset": 1114590, "size": 7250, }, "rpc-metadata.js": { - "offset": 1344250, + "offset": 1121840, "size": 1190, }, "rpc-metadata.js.map": { - "offset": 1345430, + "offset": 1123020, "size": 2120, }, "sampler": { "files": { "AlwaysOffSampler.js": { - "offset": 1347540, + "offset": 1125130, "size": 1230, }, "AlwaysOffSampler.js.map": { - "offset": 1348770, + "offset": 1126360, "size": 1490, }, "AlwaysOnSampler.js": { - "offset": 1350260, + "offset": 1127850, "size": 1230, }, "AlwaysOnSampler.js.map": { - "offset": 1351480, + "offset": 1129070, "size": 1500, }, "ParentBasedSampler.js": { - "offset": 1352980, + "offset": 1130570, "size": 3540, }, "ParentBasedSampler.js.map": { - "offset": 1356520, + "offset": 1134110, "size": 6580, }, "TraceIdRatioBasedSampler.js": { - "offset": 1363090, + "offset": 1140680, "size": 2300, }, "TraceIdRatioBasedSampler.js.map": { - "offset": 1365390, + "offset": 1142970, "size": 3480, }, }, }, "suppress-tracing.js": { - "offset": 1368860, + "offset": 1146450, "size": 1120, }, "suppress-tracing.js.map": { - "offset": 1369970, + "offset": 1147560, "size": 1750, }, }, @@ -53936,85 +53788,85 @@ exports[`node_module collectors > yarn ms 2`] = ` "utils": { "files": { "callback.js": { - "offset": 1371720, + "offset": 1149310, "size": 3080, }, "callback.js.map": { - "offset": 1374800, + "offset": 1152390, "size": 2770, }, "environment.js": { - "offset": 1377560, + "offset": 1155150, "size": 9200, }, "environment.js.map": { - "offset": 1386760, + "offset": 1164350, "size": 17860, }, "lodash.merge.js": { - "offset": 1404620, + "offset": 1182210, "size": 4690, }, "lodash.merge.js.map": { - "offset": 1409310, + "offset": 1186890, "size": 7220, }, "merge.js": { - "offset": 1416520, + "offset": 1194110, "size": 5100, }, "merge.js.map": { - "offset": 1421610, + "offset": 1199200, "size": 9320, }, "promise.js": { - "offset": 1430930, + "offset": 1208510, "size": 1310, }, "promise.js.map": { - "offset": 1432230, + "offset": 1209820, "size": 1700, }, "sampling.js": { - "offset": 1433920, + "offset": 1211510, "size": 1160, }, "sampling.js.map": { - "offset": 1435080, + "offset": 1212670, "size": 1280, }, "timeout.js": { - "offset": 1436350, + "offset": 1213940, "size": 2990, }, "timeout.js.map": { - "offset": 1439340, + "offset": 1216930, "size": 3070, }, "url.js": { - "offset": 1442410, + "offset": 1220000, "size": 2140, }, "url.js.map": { - "offset": 1444540, + "offset": 1222130, "size": 1910, }, "wrap.js": { - "offset": 1446440, + "offset": 1224030, "size": 930, }, "wrap.js.map": { - "offset": 1447370, + "offset": 1224960, "size": 1420, }, }, }, "version.js": { - "offset": 1448780, + "offset": 1226370, "size": 740, }, "version.js.map": { - "offset": 1449510, + "offset": 1227100, "size": 930, }, }, @@ -54022,41 +53874,41 @@ exports[`node_module collectors > yarn ms 2`] = ` "esnext": { "files": { "ExportResult.js": { - "offset": 1450440, + "offset": 1228030, "size": 890, }, "ExportResult.js.map": { - "offset": 1451330, + "offset": 1228920, "size": 1050, }, "baggage": { "files": { "constants.js": { - "offset": 1452380, + "offset": 1229960, "size": 1240, }, "constants.js.map": { - "offset": 1453610, + "offset": 1231200, "size": 1750, }, "propagation": { "files": { "W3CBaggagePropagator.js": { - "offset": 1455360, + "offset": 1232940, "size": 2820, }, "W3CBaggagePropagator.js.map": { - "offset": 1458170, + "offset": 1235760, "size": 4890, }, }, }, "utils.js": { - "offset": 1463060, + "offset": 1240650, "size": 3070, }, "utils.js.map": { - "offset": 1466120, + "offset": 1243710, "size": 5620, }, }, @@ -54064,87 +53916,87 @@ exports[`node_module collectors > yarn ms 2`] = ` "common": { "files": { "anchored-clock.js": { - "offset": 1471740, + "offset": 1249330, "size": 2540, }, "anchored-clock.js.map": { - "offset": 1474270, + "offset": 1251860, "size": 3410, }, "attributes.js": { - "offset": 1477680, + "offset": 1255270, "size": 2400, }, "attributes.js.map": { - "offset": 1480080, + "offset": 1257670, "size": 4190, }, "global-error-handler.js": { - "offset": 1484260, + "offset": 1261850, "size": 1170, }, "global-error-handler.js.map": { - "offset": 1485430, + "offset": 1263020, "size": 1770, }, "hex-to-binary.js": { - "offset": 1487200, + "offset": 1264780, "size": 1230, }, "hex-to-binary.js.map": { - "offset": 1488420, + "offset": 1266010, "size": 2160, }, "logging-error-handler.js": { - "offset": 1490580, + "offset": 1268170, "size": 1860, }, "logging-error-handler.js.map": { - "offset": 1492430, + "offset": 1270020, "size": 3020, }, "time.js": { - "offset": 1495450, + "offset": 1273040, "size": 4680, }, "time.js.map": { - "offset": 1500120, + "offset": 1277710, "size": 8750, }, "types.js": { - "offset": 1508870, + "offset": 1286460, "size": 650, }, "types.js.map": { - "offset": 1509520, + "offset": 1287110, "size": 2440, }, }, }, "index.js": { - "offset": 1511950, + "offset": 1289540, "size": 3180, }, "index.js.map": { - "offset": 1515130, + "offset": 1292720, "size": 5610, }, "internal": { "files": { "exporter.js": { - "offset": 1520740, + "offset": 1298330, "size": 1200, }, "exporter.js.map": { - "offset": 1521930, + "offset": 1299520, "size": 1990, }, "validators.js": { - "offset": 1523910, + "offset": 1301500, "size": 1830, }, "validators.js.map": { - "offset": 1525740, + "offset": 1303320, "size": 2580, }, }, @@ -54154,143 +54006,143 @@ exports[`node_module collectors > yarn ms 2`] = ` "browser": { "files": { "RandomIdGenerator.js": { - "offset": 1528310, + "offset": 1305900, "size": 1210, }, "RandomIdGenerator.js.map": { - "offset": 1529520, + "offset": 1307110, "size": 2740, }, "environment.js": { - "offset": 1532260, + "offset": 1309850, "size": 1050, }, "environment.js.map": { - "offset": 1533300, + "offset": 1310890, "size": 1720, }, "globalThis.js": { - "offset": 1535020, + "offset": 1312610, "size": 1380, }, "globalThis.js.map": { - "offset": 1536390, + "offset": 1313980, "size": 1910, }, "hex-to-base64.js": { - "offset": 1538300, + "offset": 1315890, "size": 810, }, "hex-to-base64.js.map": { - "offset": 1539110, + "offset": 1316700, "size": 1160, }, "index.js": { - "offset": 1540270, + "offset": 1317860, "size": 980, }, "index.js.map": { - "offset": 1541250, + "offset": 1318830, "size": 1450, }, "performance.js": { - "offset": 1542700, + "offset": 1320280, "size": 690, }, "performance.js.map": { - "offset": 1543380, + "offset": 1320970, "size": 900, }, "sdk-info.js": { - "offset": 1544280, + "offset": 1321870, "size": 1220, }, "sdk-info.js.map": { - "offset": 1545490, + "offset": 1323080, "size": 1730, }, "timer-util.js": { - "offset": 1547210, + "offset": 1324800, "size": 690, }, "timer-util.js.map": { - "offset": 1547900, + "offset": 1325480, "size": 900, }, }, }, "index.js": { - "offset": 1548800, + "offset": 1326380, "size": 780, }, "index.js.map": { - "offset": 1549570, + "offset": 1327160, "size": 1070, }, "node": { "files": { "RandomIdGenerator.js": { - "offset": 1550640, + "offset": 1328230, "size": 2150, }, "RandomIdGenerator.js.map": { - "offset": 1552790, + "offset": 1330380, "size": 3180, }, "environment.js": { - "offset": 1555960, + "offset": 1333550, "size": 1010, }, "environment.js.map": { - "offset": 1556960, + "offset": 1334550, "size": 1600, }, "globalThis.js": { - "offset": 1558560, + "offset": 1336150, "size": 860, }, "globalThis.js.map": { - "offset": 1559420, + "offset": 1337010, "size": 1150, }, "hex-to-base64.js": { - "offset": 1560570, + "offset": 1338150, "size": 810, }, "hex-to-base64.js.map": { - "offset": 1561370, + "offset": 1338960, "size": 1170, }, "index.js": { - "offset": 1562540, + "offset": 1340120, "size": 980, }, "index.js.map": { - "offset": 1563520, + "offset": 1341100, "size": 1450, }, "performance.js": { - "offset": 1564960, + "offset": 1342550, "size": 730, }, "performance.js.map": { - "offset": 1565690, + "offset": 1343280, "size": 980, }, "sdk-info.js": { - "offset": 1566670, + "offset": 1344260, "size": 1220, }, "sdk-info.js.map": { - "offset": 1567880, + "offset": 1345470, "size": 1720, }, "timer-util.js": { - "offset": 1569600, + "offset": 1347190, "size": 710, }, "timer-util.js.map": { - "offset": 1570300, + "offset": 1347890, "size": 960, }, }, @@ -54300,11 +54152,11 @@ exports[`node_module collectors > yarn ms 2`] = ` "propagation": { "files": { "composite.js": { - "offset": 1571250, + "offset": 1348840, "size": 3000, }, "composite.js.map": { - "offset": 1574250, + "offset": 1351840, "size": 5050, }, }, @@ -54312,79 +54164,79 @@ exports[`node_module collectors > yarn ms 2`] = ` "trace": { "files": { "IdGenerator.js": { - "offset": 1579300, + "offset": 1356890, "size": 660, }, "IdGenerator.js.map": { - "offset": 1579950, + "offset": 1357540, "size": 1200, }, "TraceState.js": { - "offset": 1581150, + "offset": 1358730, "size": 3770, }, "TraceState.js.map": { - "offset": 1584910, + "offset": 1362500, "size": 6410, }, "W3CTraceContextPropagator.js": { - "offset": 1591320, + "offset": 1368900, "size": 4370, }, "W3CTraceContextPropagator.js.map": { - "offset": 1595680, + "offset": 1373270, "size": 7220, }, "rpc-metadata.js": { - "offset": 1602890, + "offset": 1380480, "size": 1190, }, "rpc-metadata.js.map": { - "offset": 1604080, + "offset": 1381670, "size": 2120, }, "sampler": { "files": { "AlwaysOffSampler.js": { - "offset": 1606190, + "offset": 1383780, "size": 1030, }, "AlwaysOffSampler.js.map": { - "offset": 1607220, + "offset": 1384800, "size": 1460, }, "AlwaysOnSampler.js": { - "offset": 1608670, + "offset": 1386260, "size": 1030, }, "AlwaysOnSampler.js.map": { - "offset": 1609700, + "offset": 1387290, "size": 1460, }, "ParentBasedSampler.js": { - "offset": 1611160, + "offset": 1388750, "size": 3330, }, "ParentBasedSampler.js.map": { - "offset": 1614490, + "offset": 1392070, "size": 6550, }, "TraceIdRatioBasedSampler.js": { - "offset": 1621040, + "offset": 1398620, "size": 1940, }, "TraceIdRatioBasedSampler.js.map": { - "offset": 1622980, + "offset": 1400560, "size": 3420, }, }, }, "suppress-tracing.js": { - "offset": 1626390, + "offset": 1403980, "size": 1120, }, "suppress-tracing.js.map": { - "offset": 1627510, + "offset": 1405100, "size": 1750, }, }, @@ -54392,85 +54244,85 @@ exports[`node_module collectors > yarn ms 2`] = ` "utils": { "files": { "callback.js": { - "offset": 1629250, + "offset": 1406840, "size": 1550, }, "callback.js.map": { - "offset": 1630800, + "offset": 1408390, "size": 2610, }, "environment.js": { - "offset": 1633400, + "offset": 1410990, "size": 9110, }, "environment.js.map": { - "offset": 1642510, + "offset": 1420100, "size": 17810, }, "lodash.merge.js": { - "offset": 1660320, + "offset": 1437910, "size": 4720, }, "lodash.merge.js.map": { - "offset": 1665040, + "offset": 1442630, "size": 7220, }, "merge.js": { - "offset": 1672250, + "offset": 1449840, "size": 4970, }, "merge.js.map": { - "offset": 1677220, + "offset": 1454810, "size": 9260, }, "promise.js": { - "offset": 1686470, + "offset": 1464060, "size": 1000, }, "promise.js.map": { - "offset": 1687470, + "offset": 1465060, "size": 1660, }, "sampling.js": { - "offset": 1689130, + "offset": 1466720, "size": 1160, }, "sampling.js.map": { - "offset": 1690280, + "offset": 1467870, "size": 1280, }, "timeout.js": { - "offset": 1691550, + "offset": 1469140, "size": 2040, }, "timeout.js.map": { - "offset": 1693590, + "offset": 1471180, "size": 3040, }, "url.js": { - "offset": 1696630, + "offset": 1474210, "size": 1210, }, "url.js.map": { - "offset": 1697830, + "offset": 1475420, "size": 1850, }, "wrap.js": { - "offset": 1699680, + "offset": 1477270, "size": 930, }, "wrap.js.map": { - "offset": 1700600, + "offset": 1478190, "size": 1420, }, }, }, "version.js": { - "offset": 1702010, + "offset": 1479600, "size": 740, }, "version.js.map": { - "offset": 1702750, + "offset": 1480340, "size": 930, }, }, @@ -54478,41 +54330,41 @@ exports[`node_module collectors > yarn ms 2`] = ` "src": { "files": { "ExportResult.js": { - "offset": 1703680, + "offset": 1481260, "size": 1030, }, "ExportResult.js.map": { - "offset": 1704700, + "offset": 1482290, "size": 1060, }, "baggage": { "files": { "constants.js": { - "offset": 1705760, + "offset": 1483350, "size": 1540, }, "constants.js.map": { - "offset": 1707290, + "offset": 1484880, "size": 1680, }, "propagation": { "files": { "W3CBaggagePropagator.js": { - "offset": 1708970, + "offset": 1486560, "size": 3010, }, "W3CBaggagePropagator.js.map": { - "offset": 1711980, + "offset": 1489560, "size": 4750, }, }, }, "utils.js": { - "offset": 1716720, + "offset": 1494310, "size": 3400, }, "utils.js.map": { - "offset": 1720110, + "offset": 1497700, "size": 5560, }, }, @@ -54520,87 +54372,87 @@ exports[`node_module collectors > yarn ms 2`] = ` "common": { "files": { "anchored-clock.js": { - "offset": 1725670, + "offset": 1503260, "size": 2680, }, "anchored-clock.js.map": { - "offset": 1728340, + "offset": 1505930, "size": 3420, }, "attributes.js": { - "offset": 1731760, + "offset": 1509350, "size": 2700, }, "attributes.js.map": { - "offset": 1734450, + "offset": 1512040, "size": 4190, }, "global-error-handler.js": { - "offset": 1738630, + "offset": 1516220, "size": 1440, }, "global-error-handler.js.map": { - "offset": 1740070, + "offset": 1517660, "size": 1760, }, "hex-to-binary.js": { - "offset": 1741820, + "offset": 1519410, "size": 1370, }, "hex-to-binary.js.map": { - "offset": 1743190, + "offset": 1520770, "size": 2170, }, "logging-error-handler.js": { - "offset": 1745350, + "offset": 1522940, "size": 2030, }, "logging-error-handler.js.map": { - "offset": 1747370, + "offset": 1524960, "size": 3000, }, "time.js": { - "offset": 1750370, + "offset": 1527960, "size": 5520, }, "time.js.map": { - "offset": 1755890, + "offset": 1533480, "size": 8800, }, "types.js": { - "offset": 1764690, + "offset": 1542280, "size": 720, }, "types.js.map": { - "offset": 1765400, + "offset": 1542990, "size": 2440, }, }, }, "index.js": { - "offset": 1767840, + "offset": 1545430, "size": 12710, }, "index.js.map": { - "offset": 1780550, + "offset": 1558140, "size": 5750, }, "internal": { "files": { "exporter.js": { - "offset": 1786300, + "offset": 1563880, "size": 1360, }, "exporter.js.map": { - "offset": 1787650, + "offset": 1565240, "size": 1940, }, "validators.js": { - "offset": 1789590, + "offset": 1567180, "size": 2020, }, "validators.js.map": { - "offset": 1791600, + "offset": 1569190, "size": 2600, }, }, @@ -54610,143 +54462,143 @@ exports[`node_module collectors > yarn ms 2`] = ` "browser": { "files": { "RandomIdGenerator.js": { - "offset": 1794200, + "offset": 1571790, "size": 1370, }, "RandomIdGenerator.js.map": { - "offset": 1795560, + "offset": 1573150, "size": 2750, }, "environment.js": { - "offset": 1798300, + "offset": 1575890, "size": 1300, }, "environment.js.map": { - "offset": 1799600, + "offset": 1577190, "size": 1680, }, "globalThis.js": { - "offset": 1801280, + "offset": 1578860, "size": 1480, }, "globalThis.js.map": { - "offset": 1802750, + "offset": 1580340, "size": 1900, }, "hex-to-base64.js": { - "offset": 1804650, + "offset": 1582240, "size": 970, }, "hex-to-base64.js.map": { - "offset": 1805620, + "offset": 1583210, "size": 1150, }, "index.js": { - "offset": 1806770, + "offset": 1584350, "size": 2260, }, "index.js.map": { - "offset": 1809020, + "offset": 1586610, "size": 1420, }, "performance.js": { - "offset": 1810440, + "offset": 1588030, "size": 800, }, "performance.js.map": { - "offset": 1811230, + "offset": 1588820, "size": 890, }, "sdk-info.js": { - "offset": 1812120, + "offset": 1589710, "size": 1300, }, "sdk-info.js.map": { - "offset": 1813410, + "offset": 1591000, "size": 1610, }, "timer-util.js": { - "offset": 1815020, + "offset": 1592600, "size": 820, }, "timer-util.js.map": { - "offset": 1815830, + "offset": 1593420, "size": 920, }, }, }, "index.js": { - "offset": 1816740, + "offset": 1594330, "size": 1910, }, "index.js.map": { - "offset": 1818650, + "offset": 1596230, "size": 1140, }, "node": { "files": { "RandomIdGenerator.js": { - "offset": 1819790, + "offset": 1597370, "size": 2310, }, "RandomIdGenerator.js.map": { - "offset": 1822090, + "offset": 1599680, "size": 3190, }, "environment.js": { - "offset": 1825270, + "offset": 1602860, "size": 1230, }, "environment.js.map": { - "offset": 1826500, + "offset": 1604090, "size": 1590, }, "globalThis.js": { - "offset": 1828080, + "offset": 1605670, "size": 970, }, "globalThis.js.map": { - "offset": 1829040, + "offset": 1606630, "size": 1140, }, "hex-to-base64.js": { - "offset": 1830180, + "offset": 1607770, "size": 970, }, "hex-to-base64.js.map": { - "offset": 1831150, + "offset": 1608740, "size": 1150, }, "index.js": { - "offset": 1832300, + "offset": 1609880, "size": 2260, }, "index.js.map": { - "offset": 1834550, + "offset": 1612140, "size": 1420, }, "performance.js": { - "offset": 1835970, + "offset": 1613560, "size": 850, }, "performance.js.map": { - "offset": 1836820, + "offset": 1614400, "size": 950, }, "sdk-info.js": { - "offset": 1837760, + "offset": 1615350, "size": 1300, }, "sdk-info.js.map": { - "offset": 1839050, + "offset": 1616640, "size": 1600, }, "timer-util.js": { - "offset": 1840650, + "offset": 1618240, "size": 840, }, "timer-util.js.map": { - "offset": 1841480, + "offset": 1619070, "size": 970, }, }, @@ -54756,11 +54608,11 @@ exports[`node_module collectors > yarn ms 2`] = ` "propagation": { "files": { "composite.js": { - "offset": 1842450, + "offset": 1620040, "size": 3170, }, "composite.js.map": { - "offset": 1845620, + "offset": 1623200, "size": 5030, }, }, @@ -54768,79 +54620,79 @@ exports[`node_module collectors > yarn ms 2`] = ` "trace": { "files": { "IdGenerator.js": { - "offset": 1850640, + "offset": 1628230, "size": 730, }, "IdGenerator.js.map": { - "offset": 1851370, + "offset": 1628950, "size": 1200, }, "TraceState.js": { - "offset": 1852560, + "offset": 1630150, "size": 3930, }, "TraceState.js.map": { - "offset": 1856480, + "offset": 1634070, "size": 6390, }, "W3CTraceContextPropagator.js": { - "offset": 1862870, + "offset": 1640450, "size": 4750, }, "W3CTraceContextPropagator.js.map": { - "offset": 1867610, + "offset": 1645200, "size": 7110, }, "rpc-metadata.js": { - "offset": 1874720, + "offset": 1652310, "size": 1500, }, "rpc-metadata.js.map": { - "offset": 1876210, + "offset": 1653800, "size": 2120, }, "sampler": { "files": { "AlwaysOffSampler.js": { - "offset": 1878320, + "offset": 1655910, "size": 1170, }, "AlwaysOffSampler.js.map": { - "offset": 1879490, + "offset": 1657080, "size": 1430, }, "AlwaysOnSampler.js": { - "offset": 1880920, + "offset": 1658510, "size": 1180, }, "AlwaysOnSampler.js.map": { - "offset": 1882090, + "offset": 1659680, "size": 1440, }, "ParentBasedSampler.js": { - "offset": 1883530, + "offset": 1661120, "size": 3620, }, "ParentBasedSampler.js.map": { - "offset": 1887140, + "offset": 1664730, "size": 6430, }, "TraceIdRatioBasedSampler.js": { - "offset": 1893570, + "offset": 1671160, "size": 2110, }, "TraceIdRatioBasedSampler.js.map": { - "offset": 1895680, + "offset": 1673270, "size": 3400, }, }, }, "suppress-tracing.js": { - "offset": 1899070, + "offset": 1676660, "size": 1410, }, "suppress-tracing.js.map": { - "offset": 1900480, + "offset": 1678060, "size": 1750, }, }, @@ -54848,85 +54700,85 @@ exports[`node_module collectors > yarn ms 2`] = ` "utils": { "files": { "callback.js": { - "offset": 1902220, + "offset": 1679810, "size": 1710, }, "callback.js.map": { - "offset": 1903920, + "offset": 1681510, "size": 2590, }, "environment.js": { - "offset": 1906510, + "offset": 1684100, "size": 9580, }, "environment.js.map": { - "offset": 1916080, + "offset": 1693670, "size": 17720, }, "lodash.merge.js": { - "offset": 1933800, + "offset": 1711390, "size": 4860, }, "lodash.merge.js.map": { - "offset": 1938660, + "offset": 1716250, "size": 7230, }, "merge.js": { - "offset": 1945880, + "offset": 1723470, "size": 5130, }, "merge.js.map": { - "offset": 1951010, + "offset": 1728600, "size": 9250, }, "promise.js": { - "offset": 1960260, + "offset": 1737850, "size": 1130, }, "promise.js.map": { - "offset": 1961380, + "offset": 1738970, "size": 1670, }, "sampling.js": { - "offset": 1963050, + "offset": 1740640, "size": 1310, }, "sampling.js.map": { - "offset": 1964350, + "offset": 1741940, "size": 1280, }, "timeout.js": { - "offset": 1965630, + "offset": 1743220, "size": 2240, }, "timeout.js.map": { - "offset": 1967870, + "offset": 1745460, "size": 3060, }, "url.js": { - "offset": 1970920, + "offset": 1748510, "size": 1390, }, "url.js.map": { - "offset": 1972310, + "offset": 1749890, "size": 1870, }, "wrap.js": { - "offset": 1974170, + "offset": 1751760, "size": 1060, }, "wrap.js.map": { - "offset": 1975220, + "offset": 1752810, "size": 1430, }, }, }, "version.js": { - "offset": 1976650, + "offset": 1754230, "size": 840, }, "version.js.map": { - "offset": 1977480, + "offset": 1755070, "size": 930, }, }, @@ -54940,7 +54792,7 @@ exports[`node_module collectors > yarn ms 2`] = ` "semantic-conventions": { "files": { "LICENSE": { - "offset": 1980450, + "offset": 1758030, "size": 11360, }, "build": { @@ -54948,45 +54800,45 @@ exports[`node_module collectors > yarn ms 2`] = ` "esm": { "files": { "experimental_attributes.js": { - "offset": 1991800, + "offset": 1769390, "size": 290170, }, "experimental_attributes.js.map": { - "offset": 2281970, + "offset": 2059560, "size": 369690, }, "experimental_metrics.js": { - "offset": 2651660, + "offset": 2429250, "size": 65740, }, "experimental_metrics.js.map": { - "offset": 2717400, + "offset": 2494980, "size": 79630, }, "index-incubating.js": { - "offset": 2797030, + "offset": 2574610, "size": 940, }, "index-incubating.js.map": { - "offset": 2797960, + "offset": 2575550, "size": 1210, }, "index.js": { - "offset": 2799170, + "offset": 2576750, "size": 1010, }, "index.js.map": { - "offset": 2800180, + "offset": 2577760, "size": 1290, }, "internal": { "files": { "utils.js": { - "offset": 2801460, + "offset": 2579050, "size": 1260, }, "utils.js.map": { - "offset": 2802710, + "offset": 2580300, "size": 1860, }, }, @@ -54994,65 +54846,65 @@ exports[`node_module collectors > yarn ms 2`] = ` "resource": { "files": { "SemanticResourceAttributes.js": { - "offset": 2804570, + "offset": 2582160, "size": 66280, }, "SemanticResourceAttributes.js.map": { - "offset": 2870850, + "offset": 2648440, "size": 106200, }, "index.js": { - "offset": 2977040, + "offset": 2754630, "size": 860, }, "index.js.map": { - "offset": 2977900, + "offset": 2755490, "size": 1050, }, }, }, "stable_attributes.js": { - "offset": 2978950, + "offset": 2756540, "size": 29260, }, "stable_attributes.js.map": { - "offset": 3008210, + "offset": 2785800, "size": 38280, }, "stable_metrics.js": { - "offset": 3046480, + "offset": 2824070, "size": 7680, }, "stable_metrics.js.map": { - "offset": 3054150, + "offset": 2831740, "size": 10240, }, "trace": { "files": { "SemanticAttributes.js": { - "offset": 3064390, + "offset": 2841980, "size": 141700, }, "SemanticAttributes.js.map": { - "offset": 3206090, + "offset": 2983680, "size": 215320, }, "index.js": { - "offset": 3421400, + "offset": 3198990, "size": 860, }, "index.js.map": { - "offset": 3422250, + "offset": 3199840, "size": 1040, }, }, }, "version.js": { - "offset": 3423290, + "offset": 3200880, "size": 740, }, "version.js.map": { - "offset": 3424020, + "offset": 3201610, "size": 930, }, }, @@ -55060,45 +54912,45 @@ exports[`node_module collectors > yarn ms 2`] = ` "esnext": { "files": { "experimental_attributes.js": { - "offset": 3424950, + "offset": 3202540, "size": 291920, }, "experimental_attributes.js.map": { - "offset": 3716860, + "offset": 3494450, "size": 369670, }, "experimental_metrics.js": { - "offset": 4086530, + "offset": 3864120, "size": 66080, }, "experimental_metrics.js.map": { - "offset": 4152600, + "offset": 3930190, "size": 79630, }, "index-incubating.js": { - "offset": 4232230, + "offset": 4009820, "size": 940, }, "index-incubating.js.map": { - "offset": 4233170, + "offset": 4010760, "size": 1210, }, "index.js": { - "offset": 4234370, + "offset": 4011960, "size": 1010, }, "index.js.map": { - "offset": 4235380, + "offset": 4012970, "size": 1290, }, "internal": { "files": { "utils.js": { - "offset": 4236670, + "offset": 4014260, "size": 1260, }, "utils.js.map": { - "offset": 4237930, + "offset": 4015510, "size": 1860, }, }, @@ -55106,65 +54958,65 @@ exports[`node_module collectors > yarn ms 2`] = ` "resource": { "files": { "SemanticResourceAttributes.js": { - "offset": 4239780, + "offset": 4017370, "size": 66820, }, "SemanticResourceAttributes.js.map": { - "offset": 4306600, + "offset": 4084190, "size": 106200, }, "index.js": { - "offset": 4412800, + "offset": 4190380, "size": 860, }, "index.js.map": { - "offset": 4413660, + "offset": 4191240, "size": 1050, }, }, }, "stable_attributes.js": { - "offset": 4414700, + "offset": 4192290, "size": 29450, }, "stable_attributes.js.map": { - "offset": 4444140, + "offset": 4221730, "size": 38270, }, "stable_metrics.js": { - "offset": 4482410, + "offset": 4260000, "size": 7740, }, "stable_metrics.js.map": { - "offset": 4490150, + "offset": 4267740, "size": 10240, }, "trace": { "files": { "SemanticAttributes.js": { - "offset": 4500380, + "offset": 4277970, "size": 142770, }, "SemanticAttributes.js.map": { - "offset": 4643150, + "offset": 4420730, "size": 215320, }, "index.js": { - "offset": 4858460, + "offset": 4636050, "size": 860, }, "index.js.map": { - "offset": 4859310, + "offset": 4636900, "size": 1040, }, }, }, "version.js": { - "offset": 4860350, + "offset": 4637940, "size": 740, }, "version.js.map": { - "offset": 4861090, + "offset": 4638670, "size": 930, }, }, @@ -55172,45 +55024,45 @@ exports[`node_module collectors > yarn ms 2`] = ` "src": { "files": { "experimental_attributes.js": { - "offset": 4862010, + "offset": 4639600, "size": 326160, }, "experimental_attributes.js.map": { - "offset": 5188170, + "offset": 4965760, "size": 360270, }, "experimental_metrics.js": { - "offset": 5548440, + "offset": 5326020, "size": 72350, }, "experimental_metrics.js.map": { - "offset": 5620780, + "offset": 5398370, "size": 77960, }, "index-incubating.js": { - "offset": 5698740, + "offset": 5476330, "size": 1600, }, "index-incubating.js.map": { - "offset": 5700340, + "offset": 5477920, "size": 1180, }, "index.js": { - "offset": 5701510, + "offset": 5479100, "size": 1680, }, "index.js.map": { - "offset": 5703180, + "offset": 5480770, "size": 1270, }, "internal": { "files": { "utils.js": { - "offset": 5704450, + "offset": 5482030, "size": 1410, }, "utils.js.map": { - "offset": 5705850, + "offset": 5483430, "size": 1870, }, }, @@ -55218,65 +55070,65 @@ exports[`node_module collectors > yarn ms 2`] = ` "resource": { "files": { "SemanticResourceAttributes.js": { - "offset": 5707710, + "offset": 5485300, "size": 71670, }, "SemanticResourceAttributes.js.map": { - "offset": 5779380, + "offset": 5556970, "size": 104820, }, "index.js": { - "offset": 5884200, + "offset": 5661790, "size": 1470, }, "index.js.map": { - "offset": 5885670, + "offset": 5663260, "size": 1050, }, }, }, "stable_attributes.js": { - "offset": 5886720, + "offset": 5664310, "size": 33570, }, "stable_attributes.js.map": { - "offset": 5920290, + "offset": 5697870, "size": 37230, }, "stable_metrics.js": { - "offset": 5957510, + "offset": 5735100, "size": 9060, }, "stable_metrics.js.map": { - "offset": 5966560, + "offset": 5744150, "size": 9930, }, "trace": { "files": { "SemanticAttributes.js": { - "offset": 5976490, + "offset": 5754080, "size": 152600, }, "SemanticAttributes.js.map": { - "offset": 6129080, + "offset": 5906670, "size": 212640, }, "index.js": { - "offset": 6341720, + "offset": 6119310, "size": 1460, }, "index.js.map": { - "offset": 6343180, + "offset": 6120770, "size": 1040, }, }, }, "version.js": { - "offset": 6344220, + "offset": 6121800, "size": 840, }, "version.js.map": { - "offset": 6345050, + "offset": 6122640, "size": 930, }, }, @@ -55284,7 +55136,7 @@ exports[`node_module collectors > yarn ms 2`] = ` }, }, "package.json": { - "offset": 6345970, + "offset": 6123560, "size": 1960, }, }, @@ -55294,7 +55146,7 @@ exports[`node_module collectors > yarn ms 2`] = ` }, }, "package.json": { - "offset": 1978400, + "offset": 1755990, "size": 2050, }, }, @@ -55302,7 +55154,7 @@ exports[`node_module collectors > yarn ms 2`] = ` "instrumentation": { "files": { "LICENSE": { - "offset": 6347930, + "offset": 6125520, "size": 11360, }, "build": { @@ -55310,51 +55162,51 @@ exports[`node_module collectors > yarn ms 2`] = ` "esm": { "files": { "autoLoader.js": { - "offset": 6359290, + "offset": 6136870, "size": 1630, }, "autoLoader.js.map": { - "offset": 6360910, + "offset": 6138500, "size": 2430, }, "autoLoaderUtils.js": { - "offset": 6363340, + "offset": 6140930, "size": 1930, }, "autoLoaderUtils.js.map": { - "offset": 6365270, + "offset": 6142850, "size": 3080, }, "index.js": { - "offset": 6368340, + "offset": 6145920, "size": 1020, }, "index.js.map": { - "offset": 6369350, + "offset": 6146940, "size": 1670, }, "instrumentation.js": { - "offset": 6371020, + "offset": 6148610, "size": 6210, }, "instrumentation.js.map": { - "offset": 6377220, + "offset": 6154810, "size": 8580, }, "instrumentationNodeModuleDefinition.js": { - "offset": 6385800, + "offset": 6163380, "size": 1270, }, "instrumentationNodeModuleDefinition.js.map": { - "offset": 6387060, + "offset": 6164650, "size": 1810, }, "instrumentationNodeModuleFile.js": { - "offset": 6388870, + "offset": 6166450, "size": 1250, }, "instrumentationNodeModuleFile.js.map": { - "offset": 6390120, + "offset": 6167700, "size": 1750, }, "platform": { @@ -55362,79 +55214,79 @@ exports[`node_module collectors > yarn ms 2`] = ` "browser": { "files": { "index.js": { - "offset": 6391870, + "offset": 6169450, "size": 750, }, "index.js.map": { - "offset": 6392610, + "offset": 6170200, "size": 1000, }, "instrumentation.js": { - "offset": 6393600, + "offset": 6171190, "size": 2030, }, "instrumentation.js.map": { - "offset": 6395630, + "offset": 6173210, "size": 1840, }, "noop-normalize.js": { - "offset": 6397460, + "offset": 6175050, "size": 1410, }, "noop-normalize.js.map": { - "offset": 6398870, + "offset": 6176460, "size": 1780, }, }, }, "index.js": { - "offset": 6400650, + "offset": 6178230, "size": 700, }, "index.js.map": { - "offset": 6401340, + "offset": 6178930, "size": 900, }, "node": { "files": { "ModuleNameTrie.js": { - "offset": 6402240, + "offset": 6179830, "size": 5570, }, "ModuleNameTrie.js.map": { - "offset": 6407810, + "offset": 6185390, "size": 5350, }, "RequireInTheMiddleSingleton.js": { - "offset": 6413150, + "offset": 6190740, "size": 5430, }, "RequireInTheMiddleSingleton.js.map": { - "offset": 6418580, + "offset": 6196170, "size": 6180, }, "index.js": { - "offset": 6424760, + "offset": 6202350, "size": 740, }, "index.js.map": { - "offset": 6425500, + "offset": 6203080, "size": 980, }, "instrumentation.js": { - "offset": 6426480, + "offset": 6204060, "size": 16080, }, "instrumentation.js.map": { - "offset": 6442550, + "offset": 6220140, "size": 20750, }, "normalize.js": { - "offset": 6463290, + "offset": 6240880, "size": 680, }, "normalize.js.map": { - "offset": 6463970, + "offset": 6241560, "size": 880, }, }, @@ -55442,35 +55294,35 @@ exports[`node_module collectors > yarn ms 2`] = ` }, }, "types.js": { - "offset": 6464850, + "offset": 6242440, "size": 650, }, "types.js.map": { - "offset": 6465500, + "offset": 6243090, "size": 6630, }, "types_internal.js": { - "offset": 6472120, + "offset": 6249710, "size": 660, }, "types_internal.js.map": { - "offset": 6472780, + "offset": 6250370, "size": 1260, }, "utils.js": { - "offset": 6474040, + "offset": 6251630, "size": 5330, }, "utils.js.map": { - "offset": 6479360, + "offset": 6256950, "size": 3680, }, "version.js": { - "offset": 6483040, + "offset": 6260620, "size": 740, }, "version.js.map": { - "offset": 6483770, + "offset": 6261360, "size": 930, }, }, @@ -55478,51 +55330,51 @@ exports[`node_module collectors > yarn ms 2`] = ` "esnext": { "files": { "autoLoader.js": { - "offset": 6484700, + "offset": 6262290, "size": 1630, }, "autoLoader.js.map": { - "offset": 6486330, + "offset": 6263910, "size": 2440, }, "autoLoaderUtils.js": { - "offset": 6488770, + "offset": 6266350, "size": 1910, }, "autoLoaderUtils.js.map": { - "offset": 6490670, + "offset": 6268260, "size": 3060, }, "index.js": { - "offset": 6493730, + "offset": 6271320, "size": 1020, }, "index.js.map": { - "offset": 6494750, + "offset": 6272340, "size": 1670, }, "instrumentation.js": { - "offset": 6496420, + "offset": 6274010, "size": 4860, }, "instrumentation.js.map": { - "offset": 6501270, + "offset": 6278860, "size": 8460, }, "instrumentationNodeModuleDefinition.js": { - "offset": 6509720, + "offset": 6287310, "size": 1110, }, "instrumentationNodeModuleDefinition.js.map": { - "offset": 6510830, + "offset": 6288420, "size": 1800, }, "instrumentationNodeModuleFile.js": { - "offset": 6512630, + "offset": 6290220, "size": 1120, }, "instrumentationNodeModuleFile.js.map": { - "offset": 6513750, + "offset": 6291330, "size": 1750, }, "platform": { @@ -55530,79 +55382,79 @@ exports[`node_module collectors > yarn ms 2`] = ` "browser": { "files": { "index.js": { - "offset": 6515490, + "offset": 6293070, "size": 750, }, "index.js.map": { - "offset": 6516230, + "offset": 6293820, "size": 1000, }, "instrumentation.js": { - "offset": 6517220, + "offset": 6294810, "size": 1070, }, "instrumentation.js.map": { - "offset": 6518280, + "offset": 6295870, "size": 1800, }, "noop-normalize.js": { - "offset": 6520080, + "offset": 6297670, "size": 1410, }, "noop-normalize.js.map": { - "offset": 6521480, + "offset": 6299070, "size": 1780, }, }, }, "index.js": { - "offset": 6523260, + "offset": 6300850, "size": 700, }, "index.js.map": { - "offset": 6523960, + "offset": 6301550, "size": 900, }, "node": { "files": { "ModuleNameTrie.js": { - "offset": 6524860, + "offset": 6302440, "size": 2950, }, "ModuleNameTrie.js.map": { - "offset": 6527800, + "offset": 6305390, "size": 5130, }, "RequireInTheMiddleSingleton.js": { - "offset": 6532920, + "offset": 6310510, "size": 4140, }, "RequireInTheMiddleSingleton.js.map": { - "offset": 6537060, + "offset": 6314640, "size": 6110, }, "index.js": { - "offset": 6543160, + "offset": 6320750, "size": 740, }, "index.js.map": { - "offset": 6543900, + "offset": 6321480, "size": 980, }, "instrumentation.js": { - "offset": 6544880, + "offset": 6322460, "size": 11680, }, "instrumentation.js.map": { - "offset": 6556550, + "offset": 6334140, "size": 20460, }, "normalize.js": { - "offset": 6577000, + "offset": 6354590, "size": 680, }, "normalize.js.map": { - "offset": 6577680, + "offset": 6355270, "size": 880, }, }, @@ -55610,35 +55462,35 @@ exports[`node_module collectors > yarn ms 2`] = ` }, }, "types.js": { - "offset": 6578560, + "offset": 6356150, "size": 650, }, "types.js.map": { - "offset": 6579210, + "offset": 6356800, "size": 6630, }, "types_internal.js": { - "offset": 6585830, + "offset": 6363420, "size": 660, }, "types_internal.js.map": { - "offset": 6586490, + "offset": 6364080, "size": 1260, }, "utils.js": { - "offset": 6587750, + "offset": 6365340, "size": 2250, }, "utils.js.map": { - "offset": 6590000, + "offset": 6367590, "size": 3710, }, "version.js": { - "offset": 6593700, + "offset": 6371290, "size": 740, }, "version.js.map": { - "offset": 6594430, + "offset": 6372020, "size": 930, }, }, @@ -55646,51 +55498,51 @@ exports[`node_module collectors > yarn ms 2`] = ` "src": { "files": { "autoLoader.js": { - "offset": 6595360, + "offset": 6372950, "size": 1840, }, "autoLoader.js.map": { - "offset": 6597200, + "offset": 6374790, "size": 2350, }, "autoLoaderUtils.js": { - "offset": 6599550, + "offset": 6377140, "size": 2170, }, "autoLoaderUtils.js.map": { - "offset": 6601710, + "offset": 6379300, "size": 3080, }, "index.js": { - "offset": 6604790, + "offset": 6382380, "size": 2340, }, "index.js.map": { - "offset": 6607120, + "offset": 6384710, "size": 1660, }, "instrumentation.js": { - "offset": 6608770, + "offset": 6386360, "size": 5050, }, "instrumentation.js.map": { - "offset": 6613820, + "offset": 6391410, "size": 8370, }, "instrumentationNodeModuleDefinition.js": { - "offset": 6622180, + "offset": 6399770, "size": 1320, }, "instrumentationNodeModuleDefinition.js.map": { - "offset": 6623500, + "offset": 6401080, "size": 1810, }, "instrumentationNodeModuleFile.js": { - "offset": 6625300, + "offset": 6402890, "size": 1320, }, "instrumentationNodeModuleFile.js.map": { - "offset": 6626620, + "offset": 6404210, "size": 1730, }, "platform": { @@ -55698,79 +55550,79 @@ exports[`node_module collectors > yarn ms 2`] = ` "browser": { "files": { "index.js": { - "offset": 6628340, + "offset": 6405930, "size": 1150, }, "index.js.map": { - "offset": 6629490, + "offset": 6407080, "size": 980, }, "instrumentation.js": { - "offset": 6630470, + "offset": 6408060, "size": 1240, }, "instrumentation.js.map": { - "offset": 6631710, + "offset": 6409290, "size": 1780, }, "noop-normalize.js": { - "offset": 6633480, + "offset": 6411070, "size": 1550, }, "noop-normalize.js.map": { - "offset": 6635020, + "offset": 6412610, "size": 1760, }, }, }, "index.js": { - "offset": 6636780, + "offset": 6414370, "size": 1060, }, "index.js.map": { - "offset": 6637840, + "offset": 6415420, "size": 910, }, "node": { "files": { "ModuleNameTrie.js": { - "offset": 6638740, + "offset": 6416330, "size": 3130, }, "ModuleNameTrie.js.map": { - "offset": 6641870, + "offset": 6419460, "size": 5130, }, "RequireInTheMiddleSingleton.js": { - "offset": 6646990, + "offset": 6424580, "size": 4400, }, "RequireInTheMiddleSingleton.js.map": { - "offset": 6651390, + "offset": 6428980, "size": 6030, }, "index.js": { - "offset": 6657410, + "offset": 6435000, "size": 1140, }, "index.js.map": { - "offset": 6658540, + "offset": 6436130, "size": 970, }, "instrumentation.js": { - "offset": 6659510, + "offset": 6437100, "size": 12030, }, "instrumentation.js.map": { - "offset": 6671530, + "offset": 6449120, "size": 20140, }, "normalize.js": { - "offset": 6691670, + "offset": 6469260, "size": 900, }, "normalize.js.map": { - "offset": 6692560, + "offset": 6470150, "size": 880, }, }, @@ -55778,35 +55630,35 @@ exports[`node_module collectors > yarn ms 2`] = ` }, }, "types.js": { - "offset": 6693440, + "offset": 6471030, "size": 720, }, "types.js.map": { - "offset": 6694160, + "offset": 6471740, "size": 6630, }, "types_internal.js": { - "offset": 6700780, + "offset": 6478370, "size": 730, }, "types_internal.js.map": { - "offset": 6701500, + "offset": 6479090, "size": 1270, }, "utils.js": { - "offset": 6702770, + "offset": 6480350, "size": 2560, }, "utils.js.map": { - "offset": 6705330, + "offset": 6482910, "size": 3730, }, "version.js": { - "offset": 6709050, + "offset": 6486640, "size": 840, }, "version.js.map": { - "offset": 6709880, + "offset": 6487470, "size": 930, }, }, @@ -55814,11 +55666,11 @@ exports[`node_module collectors > yarn ms 2`] = ` }, }, "hook.mjs": { - "offset": 6710800, + "offset": 6488390, "size": 1010, }, "package.json": { - "offset": 6711810, + "offset": 6489400, "size": 2520, }, }, @@ -55826,7 +55678,7 @@ exports[`node_module collectors > yarn ms 2`] = ` "instrumentation-amqplib": { "files": { "LICENSE": { - "offset": 6714330, + "offset": 6491910, "size": 11360, }, "build": { @@ -55834,43 +55686,43 @@ exports[`node_module collectors > yarn ms 2`] = ` "src": { "files": { "amqplib.js": { - "offset": 6725680, + "offset": 6503270, "size": 23410, }, "amqplib.js.map": { - "offset": 6749080, + "offset": 6526670, "size": 40020, }, "index.js": { - "offset": 6789100, + "offset": 6566690, "size": 1320, }, "index.js.map": { - "offset": 6790420, + "offset": 6568010, "size": 870, }, "types.js": { - "offset": 6791290, + "offset": 6568870, "size": 790, }, "types.js.map": { - "offset": 6792070, + "offset": 6569660, "size": 6300, }, "utils.js": { - "offset": 6798370, + "offset": 6575960, "size": 6710, }, "utils.js.map": { - "offset": 6805080, + "offset": 6582670, "size": 10960, }, "version.js": { - "offset": 6816030, + "offset": 6593620, "size": 940, }, "version.js.map": { - "offset": 6816970, + "offset": 6594550, "size": 1040, }, }, @@ -55878,7 +55730,7 @@ exports[`node_module collectors > yarn ms 2`] = ` }, }, "package.json": { - "offset": 6818000, + "offset": 6595590, "size": 1360, }, }, @@ -55886,7 +55738,7 @@ exports[`node_module collectors > yarn ms 2`] = ` "instrumentation-connect": { "files": { "LICENSE": { - "offset": 6819360, + "offset": 6596950, "size": 11360, }, "build": { @@ -55896,53 +55748,53 @@ exports[`node_module collectors > yarn ms 2`] = ` "enums": { "files": { "AttributeNames.js": { - "offset": 6830720, + "offset": 6608300, "size": 1480, }, "AttributeNames.js.map": { - "offset": 6832200, + "offset": 6609780, "size": 1460, }, }, }, "index.js": { - "offset": 6833650, + "offset": 6611240, "size": 1340, }, "index.js.map": { - "offset": 6834990, + "offset": 6612580, "size": 890, }, "instrumentation.js": { - "offset": 6835880, + "offset": 6613470, "size": 6870, }, "instrumentation.js.map": { - "offset": 6842750, + "offset": 6620340, "size": 12080, }, "internal-types.js": { - "offset": 6854820, + "offset": 6632410, "size": 870, }, "internal-types.js.map": { - "offset": 6855690, + "offset": 6633280, "size": 1340, }, "utils.js": { - "offset": 6857020, + "offset": 6634610, "size": 2270, }, "utils.js.map": { - "offset": 6859290, + "offset": 6636870, "size": 3110, }, "version.js": { - "offset": 6862390, + "offset": 6639980, "size": 940, }, "version.js.map": { - "offset": 6863330, + "offset": 6640920, "size": 1040, }, }, @@ -55950,7 +55802,7 @@ exports[`node_module collectors > yarn ms 2`] = ` }, }, "package.json": { - "offset": 6864360, + "offset": 6641950, "size": 1320, }, }, @@ -55958,7 +55810,7 @@ exports[`node_module collectors > yarn ms 2`] = ` "instrumentation-dataloader": { "files": { "LICENSE": { - "offset": 6865670, + "offset": 6643260, "size": 11360, }, "build": { @@ -55966,35 +55818,35 @@ exports[`node_module collectors > yarn ms 2`] = ` "src": { "files": { "index.js": { - "offset": 6877030, + "offset": 6654620, "size": 1330, }, "index.js.map": { - "offset": 6878360, + "offset": 6655940, "size": 880, }, "instrumentation.js": { - "offset": 6879230, + "offset": 6656820, "size": 7140, }, "instrumentation.js.map": { - "offset": 6886370, + "offset": 6663960, "size": 12920, }, "types.js": { - "offset": 6899290, + "offset": 6676870, "size": 720, }, "types.js.map": { - "offset": 6900000, + "offset": 6677590, "size": 1150, }, "version.js": { - "offset": 6901150, + "offset": 6678740, "size": 940, }, "version.js.map": { - "offset": 6902090, + "offset": 6679680, "size": 1040, }, }, @@ -56002,7 +55854,7 @@ exports[`node_module collectors > yarn ms 2`] = ` }, }, "package.json": { - "offset": 6903120, + "offset": 6680710, "size": 1220, }, }, @@ -56010,7 +55862,7 @@ exports[`node_module collectors > yarn ms 2`] = ` "instrumentation-express": { "files": { "LICENSE": { - "offset": 6904340, + "offset": 6681930, "size": 11360, }, "build": { @@ -56020,69 +55872,69 @@ exports[`node_module collectors > yarn ms 2`] = ` "enums": { "files": { "AttributeNames.js": { - "offset": 6915700, + "offset": 6693280, "size": 1000, }, "AttributeNames.js.map": { - "offset": 6916690, + "offset": 6694280, "size": 1020, }, "ExpressLayerType.js": { - "offset": 6917710, + "offset": 6695300, "size": 1060, }, "ExpressLayerType.js.map": { - "offset": 6918760, + "offset": 6696350, "size": 1080, }, }, }, "index.js": { - "offset": 6919840, + "offset": 6697430, "size": 1450, }, "index.js.map": { - "offset": 6921280, + "offset": 6698870, "size": 990, }, "instrumentation.js": { - "offset": 6922270, + "offset": 6699850, "size": 12490, }, "instrumentation.js.map": { - "offset": 6934750, + "offset": 6712340, "size": 19150, }, "internal-types.js": { - "offset": 6953900, + "offset": 6731490, "size": 1720, }, "internal-types.js.map": { - "offset": 6955620, + "offset": 6733200, "size": 2810, }, "types.js": { - "offset": 6958420, + "offset": 6736010, "size": 720, }, "types.js.map": { - "offset": 6959140, + "offset": 6736720, "size": 2570, }, "utils.js": { - "offset": 6961700, + "offset": 6739290, "size": 6790, }, "utils.js.map": { - "offset": 6968480, + "offset": 6746070, "size": 9850, }, "version.js": { - "offset": 6978330, + "offset": 6755910, "size": 940, }, "version.js.map": { - "offset": 6979260, + "offset": 6756850, "size": 1040, }, }, @@ -56090,7 +55942,7 @@ exports[`node_module collectors > yarn ms 2`] = ` }, }, "package.json": { - "offset": 6980300, + "offset": 6757880, "size": 1460, }, }, @@ -56098,7 +55950,7 @@ exports[`node_module collectors > yarn ms 2`] = ` "instrumentation-fastify": { "files": { "LICENSE": { - "offset": 6981760, + "offset": 6759340, "size": 11360, }, "build": { @@ -56106,71 +55958,71 @@ exports[`node_module collectors > yarn ms 2`] = ` "src": { "files": { "constants.js": { - "offset": 6993110, + "offset": 6770700, "size": 1340, }, "constants.js.map": { - "offset": 6994450, + "offset": 6772040, "size": 1610, }, "enums": { "files": { "AttributeNames.js": { - "offset": 6996060, + "offset": 6773640, "size": 1580, }, "AttributeNames.js.map": { - "offset": 6997630, + "offset": 6775220, "size": 1560, }, }, }, "index.js": { - "offset": 6999190, + "offset": 6776770, "size": 1390, }, "index.js.map": { - "offset": 7000570, + "offset": 6778160, "size": 930, }, "instrumentation.js": { - "offset": 7001500, + "offset": 6779090, "size": 8970, }, "instrumentation.js.map": { - "offset": 7010470, + "offset": 6788050, "size": 15260, }, "internal-types.js": { - "offset": 7025720, + "offset": 6803310, "size": 770, }, "internal-types.js.map": { - "offset": 7026490, + "offset": 6804080, "size": 1120, }, "types.js": { - "offset": 7027610, + "offset": 6805190, "size": 720, }, "types.js.map": { - "offset": 7028320, + "offset": 6805910, "size": 1560, }, "utils.js": { - "offset": 7029870, + "offset": 6807460, "size": 3180, }, "utils.js.map": { - "offset": 7033040, + "offset": 6810630, "size": 5880, }, "version.js": { - "offset": 7038920, + "offset": 6816510, "size": 940, }, "version.js.map": { - "offset": 7039860, + "offset": 6817450, "size": 1040, }, }, @@ -56178,7 +56030,7 @@ exports[`node_module collectors > yarn ms 2`] = ` }, }, "package.json": { - "offset": 7040890, + "offset": 6818480, "size": 1550, }, }, @@ -56186,7 +56038,7 @@ exports[`node_module collectors > yarn ms 2`] = ` "instrumentation-fs": { "files": { "LICENSE": { - "offset": 7042440, + "offset": 6820030, "size": 11360, }, "build": { @@ -56194,51 +56046,51 @@ exports[`node_module collectors > yarn ms 2`] = ` "src": { "files": { "constants.js": { - "offset": 7053790, + "offset": 6831380, "size": 3610, }, "constants.js.map": { - "offset": 7057400, + "offset": 6834990, "size": 5200, }, "index.js": { - "offset": 7062600, + "offset": 6840180, "size": 1330, }, "index.js.map": { - "offset": 7063920, + "offset": 6841510, "size": 880, }, "instrumentation.js": { - "offset": 7064800, + "offset": 6842380, "size": 15020, }, "instrumentation.js.map": { - "offset": 7079820, + "offset": 6857400, "size": 25600, }, "types.js": { - "offset": 7105410, + "offset": 6883000, "size": 110, }, "types.js.map": { - "offset": 7105520, + "offset": 6883110, "size": 2290, }, "utils.js": { - "offset": 7107810, + "offset": 6885400, "size": 1040, }, "utils.js.map": { - "offset": 7108840, + "offset": 6886430, "size": 2720, }, "version.js": { - "offset": 7111550, + "offset": 6889140, "size": 940, }, "version.js.map": { - "offset": 7112490, + "offset": 6890070, "size": 1030, }, }, @@ -56246,7 +56098,7 @@ exports[`node_module collectors > yarn ms 2`] = ` }, }, "package.json": { - "offset": 7113520, + "offset": 6891100, "size": 1290, }, }, @@ -56254,7 +56106,7 @@ exports[`node_module collectors > yarn ms 2`] = ` "instrumentation-generic-pool": { "files": { "LICENSE": { - "offset": 7114800, + "offset": 6892380, "size": 11360, }, "build": { @@ -56262,27 +56114,27 @@ exports[`node_module collectors > yarn ms 2`] = ` "src": { "files": { "index.js": { - "offset": 7126150, + "offset": 6903740, "size": 1290, }, "index.js.map": { - "offset": 7127430, + "offset": 6905020, "size": 840, }, "instrumentation.js": { - "offset": 7128270, + "offset": 6905860, "size": 5280, }, "instrumentation.js.map": { - "offset": 7133540, + "offset": 6911130, "size": 9100, }, "version.js": { - "offset": 7142640, + "offset": 6920230, "size": 950, }, "version.js.map": { - "offset": 7143580, + "offset": 6921170, "size": 1040, }, }, @@ -56290,7 +56142,7 @@ exports[`node_module collectors > yarn ms 2`] = ` }, }, "package.json": { - "offset": 7144620, + "offset": 6922210, "size": 1320, }, }, @@ -56298,7 +56150,7 @@ exports[`node_module collectors > yarn ms 2`] = ` "instrumentation-graphql": { "files": { "LICENSE": { - "offset": 7145940, + "offset": 6923530, "size": 11360, }, "build": { @@ -56306,79 +56158,79 @@ exports[`node_module collectors > yarn ms 2`] = ` "src": { "files": { "enum.js": { - "offset": 7157300, + "offset": 6934890, "size": 2340, }, "enum.js.map": { - "offset": 7159630, + "offset": 6937220, "size": 2350, }, "enums": { "files": { "AttributeNames.js": { - "offset": 7161980, + "offset": 6939570, "size": 1370, }, "AttributeNames.js.map": { - "offset": 7163340, + "offset": 6940930, "size": 1390, }, }, }, "index.js": { - "offset": 7164730, + "offset": 6942320, "size": 1330, }, "index.js.map": { - "offset": 7166060, + "offset": 6943640, "size": 880, }, "instrumentation.js": { - "offset": 7166930, + "offset": 6944520, "size": 13220, }, "instrumentation.js.map": { - "offset": 7180140, + "offset": 6957730, "size": 24510, }, "internal-types.js": { - "offset": 7204650, + "offset": 6982240, "size": 890, }, "internal-types.js.map": { - "offset": 7205540, + "offset": 6983130, "size": 3890, }, "symbols.js": { - "offset": 7209420, + "offset": 6987010, "size": 940, }, "symbols.js.map": { - "offset": 7210360, + "offset": 6987940, "size": 1070, }, "types.js": { - "offset": 7211420, + "offset": 6989010, "size": 720, }, "types.js.map": { - "offset": 7212140, + "offset": 6989730, "size": 3400, }, "utils.js": { - "offset": 7215540, + "offset": 6993130, "size": 12560, }, "utils.js.map": { - "offset": 7228090, + "offset": 7005680, "size": 23450, }, "version.js": { - "offset": 7251530, + "offset": 7029120, "size": 940, }, "version.js.map": { - "offset": 7252470, + "offset": 7030060, "size": 1040, }, }, @@ -56386,7 +56238,7 @@ exports[`node_module collectors > yarn ms 2`] = ` }, }, "package.json": { - "offset": 7253500, + "offset": 7031090, "size": 1200, }, }, @@ -56394,7 +56246,7 @@ exports[`node_module collectors > yarn ms 2`] = ` "instrumentation-hapi": { "files": { "LICENSE": { - "offset": 7254700, + "offset": 7032290, "size": 11360, }, "build": { @@ -56404,53 +56256,53 @@ exports[`node_module collectors > yarn ms 2`] = ` "enums": { "files": { "AttributeNames.js": { - "offset": 7266060, + "offset": 7043650, "size": 1040, }, "AttributeNames.js.map": { - "offset": 7267100, + "offset": 7044690, "size": 1070, }, }, }, "index.js": { - "offset": 7268170, + "offset": 7045750, "size": 1340, }, "index.js.map": { - "offset": 7269510, + "offset": 7047090, "size": 890, }, "instrumentation.js": { - "offset": 7270400, + "offset": 7047980, "size": 14840, }, "instrumentation.js.map": { - "offset": 7285240, + "offset": 7062820, "size": 24410, }, "internal-types.js": { - "offset": 7309640, + "offset": 7087230, "size": 1520, }, "internal-types.js.map": { - "offset": 7311160, + "offset": 7088740, "size": 2680, }, "utils.js": { - "offset": 7313830, + "offset": 7091420, "size": 4220, }, "utils.js.map": { - "offset": 7318050, + "offset": 7095640, "size": 6430, }, "version.js": { - "offset": 7324480, + "offset": 7102060, "size": 940, }, "version.js.map": { - "offset": 7325410, + "offset": 7103000, "size": 1040, }, }, @@ -56458,7 +56310,7 @@ exports[`node_module collectors > yarn ms 2`] = ` }, }, "package.json": { - "offset": 7326440, + "offset": 7104030, "size": 1400, }, }, @@ -56466,7 +56318,7 @@ exports[`node_module collectors > yarn ms 2`] = ` "instrumentation-http": { "files": { "LICENSE": { - "offset": 7327840, + "offset": 7105420, "size": 11360, }, "build": { @@ -56476,61 +56328,61 @@ exports[`node_module collectors > yarn ms 2`] = ` "enums": { "files": { "AttributeNames.js": { - "offset": 7339190, + "offset": 7116780, "size": 1210, }, "AttributeNames.js.map": { - "offset": 7340400, + "offset": 7117980, "size": 1250, }, }, }, "http.js": { - "offset": 7341640, + "offset": 7119230, "size": 32710, }, "http.js.map": { - "offset": 7374350, + "offset": 7151940, "size": 56430, }, "index.js": { - "offset": 7430780, + "offset": 7208370, "size": 920, }, "index.js.map": { - "offset": 7431700, + "offset": 7209290, "size": 1190, }, "internal-types.js": { - "offset": 7432890, + "offset": 7210480, "size": 730, }, "internal-types.js.map": { - "offset": 7433610, + "offset": 7211200, "size": 2320, }, "types.js": { - "offset": 7435930, + "offset": 7213520, "size": 110, }, "types.js.map": { - "offset": 7436040, + "offset": 7213630, "size": 3920, }, "utils.js": { - "offset": 7439950, + "offset": 7217540, "size": 34800, }, "utils.js.map": { - "offset": 7474750, + "offset": 7252340, "size": 54550, }, "version.js": { - "offset": 7529300, + "offset": 7306890, "size": 840, }, "version.js.map": { - "offset": 7530130, + "offset": 7307720, "size": 930, }, }, @@ -56544,7 +56396,7 @@ exports[`node_module collectors > yarn ms 2`] = ` "core": { "files": { "LICENSE": { - "offset": 7532830, + "offset": 7310410, "size": 11360, }, "build": { @@ -56552,41 +56404,41 @@ exports[`node_module collectors > yarn ms 2`] = ` "esm": { "files": { "ExportResult.js": { - "offset": 7544180, + "offset": 7321770, "size": 890, }, "ExportResult.js.map": { - "offset": 7545070, + "offset": 7322660, "size": 1050, }, "baggage": { "files": { "constants.js": { - "offset": 7546120, + "offset": 7323710, "size": 1220, }, "constants.js.map": { - "offset": 7547340, + "offset": 7324920, "size": 1750, }, "propagation": { "files": { "W3CBaggagePropagator.js": { - "offset": 7549080, + "offset": 7326670, "size": 3080, }, "W3CBaggagePropagator.js.map": { - "offset": 7552160, + "offset": 7329750, "size": 4920, }, }, }, "utils.js": { - "offset": 7557080, + "offset": 7334670, "size": 3660, }, "utils.js.map": { - "offset": 7560740, + "offset": 7338330, "size": 5640, }, }, @@ -56594,87 +56446,87 @@ exports[`node_module collectors > yarn ms 2`] = ` "common": { "files": { "anchored-clock.js": { - "offset": 7566380, + "offset": 7343960, "size": 2660, }, "anchored-clock.js.map": { - "offset": 7569030, + "offset": 7346620, "size": 3430, }, "attributes.js": { - "offset": 7572450, + "offset": 7350040, "size": 4190, }, "attributes.js.map": { - "offset": 7576640, + "offset": 7354220, "size": 4320, }, "global-error-handler.js": { - "offset": 7580950, + "offset": 7358540, "size": 1170, }, "global-error-handler.js.map": { - "offset": 7582120, + "offset": 7359710, "size": 1770, }, "hex-to-binary.js": { - "offset": 7583880, + "offset": 7361470, "size": 1230, }, "hex-to-binary.js.map": { - "offset": 7585110, + "offset": 7362690, "size": 2160, }, "logging-error-handler.js": { - "offset": 7587260, + "offset": 7364850, "size": 1870, }, "logging-error-handler.js.map": { - "offset": 7589130, + "offset": 7366710, "size": 3010, }, "time.js": { - "offset": 7592130, + "offset": 7369720, "size": 4650, }, "time.js.map": { - "offset": 7596780, + "offset": 7374370, "size": 8750, }, "types.js": { - "offset": 7605520, + "offset": 7383110, "size": 650, }, "types.js.map": { - "offset": 7606170, + "offset": 7383760, "size": 2440, }, }, }, "index.js": { - "offset": 7608610, + "offset": 7386200, "size": 3260, }, "index.js.map": { - "offset": 7611860, + "offset": 7389450, "size": 5640, }, "internal": { "files": { "exporter.js": { - "offset": 7617500, + "offset": 7395090, "size": 1220, }, "exporter.js.map": { - "offset": 7618710, + "offset": 7396300, "size": 1960, }, "validators.js": { - "offset": 7620670, + "offset": 7398260, "size": 1840, }, "validators.js.map": { - "offset": 7622510, + "offset": 7400090, "size": 2580, }, }, @@ -56684,143 +56536,143 @@ exports[`node_module collectors > yarn ms 2`] = ` "browser": { "files": { "RandomIdGenerator.js": { - "offset": 7625080, + "offset": 7402670, "size": 1310, }, "RandomIdGenerator.js.map": { - "offset": 7626390, + "offset": 7403970, "size": 2750, }, "environment.js": { - "offset": 7629130, + "offset": 7406720, "size": 1050, }, "environment.js.map": { - "offset": 7630170, + "offset": 7407760, "size": 1720, }, "globalThis.js": { - "offset": 7631890, + "offset": 7409480, "size": 1380, }, "globalThis.js.map": { - "offset": 7633260, + "offset": 7410850, "size": 1910, }, "hex-to-base64.js": { - "offset": 7635170, + "offset": 7412760, "size": 1730, }, "hex-to-base64.js.map": { - "offset": 7636890, + "offset": 7414480, "size": 1190, }, "index.js": { - "offset": 7638080, + "offset": 7415670, "size": 980, }, "index.js.map": { - "offset": 7639060, + "offset": 7416650, "size": 1450, }, "performance.js": { - "offset": 7640510, + "offset": 7418100, "size": 690, }, "performance.js.map": { - "offset": 7641190, + "offset": 7418780, "size": 900, }, "sdk-info.js": { - "offset": 7642090, + "offset": 7419680, "size": 1250, }, "sdk-info.js.map": { - "offset": 7643330, + "offset": 7420920, "size": 1700, }, "timer-util.js": { - "offset": 7645030, + "offset": 7422620, "size": 690, }, "timer-util.js.map": { - "offset": 7645710, + "offset": 7423300, "size": 900, }, }, }, "index.js": { - "offset": 7646610, + "offset": 7424200, "size": 780, }, "index.js.map": { - "offset": 7647390, + "offset": 7424980, "size": 1070, }, "node": { "files": { "RandomIdGenerator.js": { - "offset": 7648460, + "offset": 7426050, "size": 2250, }, "RandomIdGenerator.js.map": { - "offset": 7650710, + "offset": 7428300, "size": 3200, }, "environment.js": { - "offset": 7653900, + "offset": 7431490, "size": 1000, }, "environment.js.map": { - "offset": 7654900, + "offset": 7432490, "size": 1600, }, "globalThis.js": { - "offset": 7656500, + "offset": 7434090, "size": 860, }, "globalThis.js.map": { - "offset": 7657350, + "offset": 7434940, "size": 1150, }, "hex-to-base64.js": { - "offset": 7658500, + "offset": 7436090, "size": 810, }, "hex-to-base64.js.map": { - "offset": 7659310, + "offset": 7436900, "size": 1170, }, "index.js": { - "offset": 7660470, + "offset": 7438060, "size": 980, }, "index.js.map": { - "offset": 7661450, + "offset": 7439040, "size": 1450, }, "performance.js": { - "offset": 7662900, + "offset": 7440480, "size": 730, }, "performance.js.map": { - "offset": 7663620, + "offset": 7441210, "size": 980, }, "sdk-info.js": { - "offset": 7664600, + "offset": 7442190, "size": 1250, }, "sdk-info.js.map": { - "offset": 7665840, + "offset": 7443430, "size": 1700, }, "timer-util.js": { - "offset": 7667540, + "offset": 7445130, "size": 710, }, "timer-util.js.map": { - "offset": 7668240, + "offset": 7445830, "size": 960, }, }, @@ -56830,11 +56682,11 @@ exports[`node_module collectors > yarn ms 2`] = ` "propagation": { "files": { "composite.js": { - "offset": 7669190, + "offset": 7446780, "size": 4180, }, "composite.js.map": { - "offset": 7673370, + "offset": 7450960, "size": 5160, }, }, @@ -56842,79 +56694,79 @@ exports[`node_module collectors > yarn ms 2`] = ` "trace": { "files": { "IdGenerator.js": { - "offset": 7678520, + "offset": 7456110, "size": 660, }, "IdGenerator.js.map": { - "offset": 7679180, + "offset": 7456770, "size": 1200, }, "TraceState.js": { - "offset": 7680370, + "offset": 7457960, "size": 4100, }, "TraceState.js.map": { - "offset": 7684470, + "offset": 7462060, "size": 6450, }, "W3CTraceContextPropagator.js": { - "offset": 7690920, + "offset": 7468510, "size": 4660, }, "W3CTraceContextPropagator.js.map": { - "offset": 7695580, + "offset": 7473170, "size": 7250, }, "rpc-metadata.js": { - "offset": 7702830, + "offset": 7480420, "size": 1190, }, "rpc-metadata.js.map": { - "offset": 7704010, + "offset": 7481600, "size": 2120, }, "sampler": { "files": { "AlwaysOffSampler.js": { - "offset": 7706130, + "offset": 7483710, "size": 1230, }, "AlwaysOffSampler.js.map": { - "offset": 7707350, + "offset": 7484940, "size": 1490, }, "AlwaysOnSampler.js": { - "offset": 7708840, + "offset": 7486430, "size": 1230, }, "AlwaysOnSampler.js.map": { - "offset": 7710070, + "offset": 7487650, "size": 1500, }, "ParentBasedSampler.js": { - "offset": 7711560, + "offset": 7489150, "size": 3540, }, "ParentBasedSampler.js.map": { - "offset": 7715100, + "offset": 7492690, "size": 6580, }, "TraceIdRatioBasedSampler.js": { - "offset": 7721670, + "offset": 7499260, "size": 2300, }, "TraceIdRatioBasedSampler.js.map": { - "offset": 7723970, + "offset": 7501560, "size": 3480, }, }, }, "suppress-tracing.js": { - "offset": 7727440, + "offset": 7505030, "size": 1120, }, "suppress-tracing.js.map": { - "offset": 7728560, + "offset": 7506140, "size": 1750, }, }, @@ -56922,85 +56774,85 @@ exports[`node_module collectors > yarn ms 2`] = ` "utils": { "files": { "callback.js": { - "offset": 7730300, + "offset": 7507890, "size": 3080, }, "callback.js.map": { - "offset": 7733380, + "offset": 7510970, "size": 2770, }, "environment.js": { - "offset": 7736140, + "offset": 7513730, "size": 9200, }, "environment.js.map": { - "offset": 7745340, + "offset": 7522930, "size": 17860, }, "lodash.merge.js": { - "offset": 7763200, + "offset": 7540790, "size": 4690, }, "lodash.merge.js.map": { - "offset": 7767890, + "offset": 7545480, "size": 7220, }, "merge.js": { - "offset": 7775100, + "offset": 7552690, "size": 5100, }, "merge.js.map": { - "offset": 7780190, + "offset": 7557780, "size": 9320, }, "promise.js": { - "offset": 7789510, + "offset": 7567100, "size": 1310, }, "promise.js.map": { - "offset": 7790810, + "offset": 7568400, "size": 1700, }, "sampling.js": { - "offset": 7792510, + "offset": 7570090, "size": 1160, }, "sampling.js.map": { - "offset": 7793660, + "offset": 7571250, "size": 1280, }, "timeout.js": { - "offset": 7794930, + "offset": 7572520, "size": 2990, }, "timeout.js.map": { - "offset": 7797920, + "offset": 7575510, "size": 3070, }, "url.js": { - "offset": 7800990, + "offset": 7578580, "size": 2140, }, "url.js.map": { - "offset": 7803120, + "offset": 7580710, "size": 1910, }, "wrap.js": { - "offset": 7805030, + "offset": 7582610, "size": 930, }, "wrap.js.map": { - "offset": 7805950, + "offset": 7583540, "size": 1420, }, }, }, "version.js": { - "offset": 7807360, + "offset": 7584950, "size": 740, }, "version.js.map": { - "offset": 7808090, + "offset": 7585680, "size": 930, }, }, @@ -57008,41 +56860,41 @@ exports[`node_module collectors > yarn ms 2`] = ` "esnext": { "files": { "ExportResult.js": { - "offset": 7809020, + "offset": 7586610, "size": 890, }, "ExportResult.js.map": { - "offset": 7809910, + "offset": 7587500, "size": 1050, }, "baggage": { "files": { "constants.js": { - "offset": 7810960, + "offset": 7588550, "size": 1240, }, "constants.js.map": { - "offset": 7812190, + "offset": 7589780, "size": 1750, }, "propagation": { "files": { "W3CBaggagePropagator.js": { - "offset": 7813940, + "offset": 7591530, "size": 2820, }, "W3CBaggagePropagator.js.map": { - "offset": 7816750, + "offset": 7594340, "size": 4890, }, }, }, "utils.js": { - "offset": 7821640, + "offset": 7599230, "size": 3070, }, "utils.js.map": { - "offset": 7824700, + "offset": 7602290, "size": 5620, }, }, @@ -57050,87 +56902,87 @@ exports[`node_module collectors > yarn ms 2`] = ` "common": { "files": { "anchored-clock.js": { - "offset": 7830320, + "offset": 7607910, "size": 2540, }, "anchored-clock.js.map": { - "offset": 7832860, + "offset": 7610440, "size": 3410, }, "attributes.js": { - "offset": 7836260, + "offset": 7613850, "size": 2400, }, "attributes.js.map": { - "offset": 7838660, + "offset": 7616250, "size": 4190, }, "global-error-handler.js": { - "offset": 7842850, + "offset": 7620430, "size": 1170, }, "global-error-handler.js.map": { - "offset": 7844010, + "offset": 7621600, "size": 1770, }, "hex-to-binary.js": { - "offset": 7845780, + "offset": 7623370, "size": 1230, }, "hex-to-binary.js.map": { - "offset": 7847000, + "offset": 7624590, "size": 2160, }, "logging-error-handler.js": { - "offset": 7849160, + "offset": 7626750, "size": 1860, }, "logging-error-handler.js.map": { - "offset": 7851020, + "offset": 7628600, "size": 3020, }, "time.js": { - "offset": 7854040, + "offset": 7631620, "size": 4680, }, "time.js.map": { - "offset": 7858710, + "offset": 7636290, "size": 8750, }, "types.js": { - "offset": 7867450, + "offset": 7645040, "size": 650, }, "types.js.map": { - "offset": 7868100, + "offset": 7645690, "size": 2440, }, }, }, "index.js": { - "offset": 7870540, + "offset": 7648120, "size": 3180, }, "index.js.map": { - "offset": 7873710, + "offset": 7651300, "size": 5610, }, "internal": { "files": { "exporter.js": { - "offset": 7879320, + "offset": 7656910, "size": 1200, }, "exporter.js.map": { - "offset": 7880510, + "offset": 7658100, "size": 1990, }, "validators.js": { - "offset": 7882490, + "offset": 7660080, "size": 1830, }, "validators.js.map": { - "offset": 7884320, + "offset": 7661910, "size": 2580, }, }, @@ -57140,143 +56992,143 @@ exports[`node_module collectors > yarn ms 2`] = ` "browser": { "files": { "RandomIdGenerator.js": { - "offset": 7886900, + "offset": 7664480, "size": 1210, }, "RandomIdGenerator.js.map": { - "offset": 7888100, + "offset": 7665690, "size": 2740, }, "environment.js": { - "offset": 7890840, + "offset": 7668430, "size": 1050, }, "environment.js.map": { - "offset": 7891880, + "offset": 7669470, "size": 1720, }, "globalThis.js": { - "offset": 7893600, + "offset": 7671190, "size": 1380, }, "globalThis.js.map": { - "offset": 7894980, + "offset": 7672560, "size": 1910, }, "hex-to-base64.js": { - "offset": 7896880, + "offset": 7674470, "size": 810, }, "hex-to-base64.js.map": { - "offset": 7897690, + "offset": 7675280, "size": 1160, }, "index.js": { - "offset": 7898850, + "offset": 7676440, "size": 980, }, "index.js.map": { - "offset": 7899830, + "offset": 7677420, "size": 1450, }, "performance.js": { - "offset": 7901280, + "offset": 7678870, "size": 690, }, "performance.js.map": { - "offset": 7901970, + "offset": 7679550, "size": 900, }, "sdk-info.js": { - "offset": 7902860, + "offset": 7680450, "size": 1220, }, "sdk-info.js.map": { - "offset": 7904070, + "offset": 7681660, "size": 1730, }, "timer-util.js": { - "offset": 7905790, + "offset": 7683380, "size": 690, }, "timer-util.js.map": { - "offset": 7906480, + "offset": 7684070, "size": 900, }, }, }, "index.js": { - "offset": 7907380, + "offset": 7684970, "size": 780, }, "index.js.map": { - "offset": 7908160, + "offset": 7685740, "size": 1070, }, "node": { "files": { "RandomIdGenerator.js": { - "offset": 7909220, + "offset": 7686810, "size": 2150, }, "RandomIdGenerator.js.map": { - "offset": 7911370, + "offset": 7688960, "size": 3180, }, "environment.js": { - "offset": 7914540, + "offset": 7692130, "size": 1010, }, "environment.js.map": { - "offset": 7915540, + "offset": 7693130, "size": 1600, }, "globalThis.js": { - "offset": 7917140, + "offset": 7694730, "size": 860, }, "globalThis.js.map": { - "offset": 7918000, + "offset": 7695590, "size": 1150, }, "hex-to-base64.js": { - "offset": 7919150, + "offset": 7696740, "size": 810, }, "hex-to-base64.js.map": { - "offset": 7919960, + "offset": 7697540, "size": 1170, }, "index.js": { - "offset": 7921120, + "offset": 7698710, "size": 980, }, "index.js.map": { - "offset": 7922100, + "offset": 7699690, "size": 1450, }, "performance.js": { - "offset": 7923540, + "offset": 7701130, "size": 730, }, "performance.js.map": { - "offset": 7924270, + "offset": 7701860, "size": 980, }, "sdk-info.js": { - "offset": 7925250, + "offset": 7702840, "size": 1220, }, "sdk-info.js.map": { - "offset": 7926460, + "offset": 7704050, "size": 1720, }, "timer-util.js": { - "offset": 7928180, + "offset": 7705770, "size": 710, }, "timer-util.js.map": { - "offset": 7928880, + "offset": 7706470, "size": 960, }, }, @@ -57286,11 +57138,11 @@ exports[`node_module collectors > yarn ms 2`] = ` "propagation": { "files": { "composite.js": { - "offset": 7929840, + "offset": 7707420, "size": 3000, }, "composite.js.map": { - "offset": 7932830, + "offset": 7710420, "size": 5050, }, }, @@ -57298,79 +57150,79 @@ exports[`node_module collectors > yarn ms 2`] = ` "trace": { "files": { "IdGenerator.js": { - "offset": 7937880, + "offset": 7715470, "size": 660, }, "IdGenerator.js.map": { - "offset": 7938540, + "offset": 7716120, "size": 1200, }, "TraceState.js": { - "offset": 7939730, + "offset": 7717320, "size": 3770, }, "TraceState.js.map": { - "offset": 7943490, + "offset": 7721080, "size": 6410, }, "W3CTraceContextPropagator.js": { - "offset": 7949900, + "offset": 7727490, "size": 4370, }, "W3CTraceContextPropagator.js.map": { - "offset": 7954260, + "offset": 7731850, "size": 7220, }, "rpc-metadata.js": { - "offset": 7961480, + "offset": 7739060, "size": 1190, }, "rpc-metadata.js.map": { - "offset": 7962660, + "offset": 7740250, "size": 2120, }, "sampler": { "files": { "AlwaysOffSampler.js": { - "offset": 7964770, + "offset": 7742360, "size": 1030, }, "AlwaysOffSampler.js.map": { - "offset": 7965800, + "offset": 7743390, "size": 1460, }, "AlwaysOnSampler.js": { - "offset": 7967250, + "offset": 7744840, "size": 1030, }, "AlwaysOnSampler.js.map": { - "offset": 7968280, + "offset": 7745870, "size": 1460, }, "ParentBasedSampler.js": { - "offset": 7969740, + "offset": 7747330, "size": 3330, }, "ParentBasedSampler.js.map": { - "offset": 7973070, + "offset": 7750660, "size": 6550, }, "TraceIdRatioBasedSampler.js": { - "offset": 7979620, + "offset": 7757210, "size": 1940, }, "TraceIdRatioBasedSampler.js.map": { - "offset": 7981560, + "offset": 7759150, "size": 3420, }, }, }, "suppress-tracing.js": { - "offset": 7984980, + "offset": 7762560, "size": 1120, }, "suppress-tracing.js.map": { - "offset": 7986090, + "offset": 7763680, "size": 1750, }, }, @@ -57378,85 +57230,85 @@ exports[`node_module collectors > yarn ms 2`] = ` "utils": { "files": { "callback.js": { - "offset": 7987840, + "offset": 7765420, "size": 1550, }, "callback.js.map": { - "offset": 7989380, + "offset": 7766970, "size": 2610, }, "environment.js": { - "offset": 7991980, + "offset": 7769570, "size": 9110, }, "environment.js.map": { - "offset": 8001090, + "offset": 7778680, "size": 17810, }, "lodash.merge.js": { - "offset": 8018900, + "offset": 7796490, "size": 4720, }, "lodash.merge.js.map": { - "offset": 8023620, + "offset": 7801210, "size": 7220, }, "merge.js": { - "offset": 8030830, + "offset": 7808420, "size": 4970, }, "merge.js.map": { - "offset": 8035800, + "offset": 7813390, "size": 9260, }, "promise.js": { - "offset": 8045060, + "offset": 7822640, "size": 1000, }, "promise.js.map": { - "offset": 8046050, + "offset": 7823640, "size": 1660, }, "sampling.js": { - "offset": 8047710, + "offset": 7825300, "size": 1160, }, "sampling.js.map": { - "offset": 8048870, + "offset": 7826450, "size": 1280, }, "timeout.js": { - "offset": 8050140, + "offset": 7827720, "size": 2040, }, "timeout.js.map": { - "offset": 8052180, + "offset": 7829760, "size": 3040, }, "url.js": { - "offset": 8055210, + "offset": 7832800, "size": 1210, }, "url.js.map": { - "offset": 8056410, + "offset": 7834000, "size": 1850, }, "wrap.js": { - "offset": 8058260, + "offset": 7835850, "size": 930, }, "wrap.js.map": { - "offset": 8059180, + "offset": 7836770, "size": 1420, }, }, }, "version.js": { - "offset": 8060590, + "offset": 7838180, "size": 740, }, "version.js.map": { - "offset": 8061330, + "offset": 7838920, "size": 930, }, }, @@ -57464,41 +57316,41 @@ exports[`node_module collectors > yarn ms 2`] = ` "src": { "files": { "ExportResult.js": { - "offset": 8062260, + "offset": 7839850, "size": 1030, }, "ExportResult.js.map": { - "offset": 8063290, + "offset": 7840870, "size": 1060, }, "baggage": { "files": { "constants.js": { - "offset": 8064340, + "offset": 7841930, "size": 1540, }, "constants.js.map": { - "offset": 8065870, + "offset": 7843460, "size": 1680, }, "propagation": { "files": { "W3CBaggagePropagator.js": { - "offset": 8067550, + "offset": 7845140, "size": 3010, }, "W3CBaggagePropagator.js.map": { - "offset": 8070560, + "offset": 7848150, "size": 4750, }, }, }, "utils.js": { - "offset": 8075300, + "offset": 7852890, "size": 3400, }, "utils.js.map": { - "offset": 8078700, + "offset": 7856280, "size": 5560, }, }, @@ -57506,87 +57358,87 @@ exports[`node_module collectors > yarn ms 2`] = ` "common": { "files": { "anchored-clock.js": { - "offset": 8084250, + "offset": 7861840, "size": 2680, }, "anchored-clock.js.map": { - "offset": 8086920, + "offset": 7864510, "size": 3420, }, "attributes.js": { - "offset": 8090340, + "offset": 7867930, "size": 2700, }, "attributes.js.map": { - "offset": 8093030, + "offset": 7870620, "size": 4190, }, "global-error-handler.js": { - "offset": 8097210, + "offset": 7874800, "size": 1440, }, "global-error-handler.js.map": { - "offset": 8098650, + "offset": 7876240, "size": 1760, }, "hex-to-binary.js": { - "offset": 8100410, + "offset": 7877990, "size": 1370, }, "hex-to-binary.js.map": { - "offset": 8101770, + "offset": 7879360, "size": 2170, }, "logging-error-handler.js": { - "offset": 8103930, + "offset": 7881520, "size": 2030, }, "logging-error-handler.js.map": { - "offset": 8105960, + "offset": 7883540, "size": 3000, }, "time.js": { - "offset": 8108960, + "offset": 7886540, "size": 5520, }, "time.js.map": { - "offset": 8114470, + "offset": 7892060, "size": 8800, }, "types.js": { - "offset": 8123270, + "offset": 7900860, "size": 720, }, "types.js.map": { - "offset": 8123990, + "offset": 7901570, "size": 2440, }, }, }, "index.js": { - "offset": 8126420, + "offset": 7904010, "size": 12710, }, "index.js.map": { - "offset": 8139130, + "offset": 7916720, "size": 5750, }, "internal": { "files": { "exporter.js": { - "offset": 8144880, + "offset": 7922470, "size": 1360, }, "exporter.js.map": { - "offset": 8146230, + "offset": 7923820, "size": 1940, }, "validators.js": { - "offset": 8148170, + "offset": 7925760, "size": 2020, }, "validators.js.map": { - "offset": 8150190, + "offset": 7927770, "size": 2600, }, }, @@ -57596,143 +57448,143 @@ exports[`node_module collectors > yarn ms 2`] = ` "browser": { "files": { "RandomIdGenerator.js": { - "offset": 8152780, + "offset": 7930370, "size": 1370, }, "RandomIdGenerator.js.map": { - "offset": 8154140, + "offset": 7931730, "size": 2750, }, "environment.js": { - "offset": 8156890, + "offset": 7934470, "size": 1300, }, "environment.js.map": { - "offset": 8158190, + "offset": 7935770, "size": 1680, }, "globalThis.js": { - "offset": 8159860, + "offset": 7937450, "size": 1480, }, "globalThis.js.map": { - "offset": 8161340, + "offset": 7938920, "size": 1900, }, "hex-to-base64.js": { - "offset": 8163230, + "offset": 7940820, "size": 970, }, "hex-to-base64.js.map": { - "offset": 8164200, + "offset": 7941790, "size": 1150, }, "index.js": { - "offset": 8165350, + "offset": 7942940, "size": 2260, }, "index.js.map": { - "offset": 8167610, + "offset": 7945190, "size": 1420, }, "performance.js": { - "offset": 8169020, + "offset": 7946610, "size": 800, }, "performance.js.map": { - "offset": 8169820, + "offset": 7947400, "size": 890, }, "sdk-info.js": { - "offset": 8170700, + "offset": 7948290, "size": 1300, }, "sdk-info.js.map": { - "offset": 8172000, + "offset": 7949580, "size": 1610, }, "timer-util.js": { - "offset": 8173600, + "offset": 7951190, "size": 820, }, "timer-util.js.map": { - "offset": 8174410, + "offset": 7952000, "size": 920, }, }, }, "index.js": { - "offset": 8175330, + "offset": 7952910, "size": 1910, }, "index.js.map": { - "offset": 8177230, + "offset": 7954820, "size": 1140, }, "node": { "files": { "RandomIdGenerator.js": { - "offset": 8178370, + "offset": 7955960, "size": 2310, }, "RandomIdGenerator.js.map": { - "offset": 8180670, + "offset": 7958260, "size": 3190, }, "environment.js": { - "offset": 8183850, + "offset": 7961440, "size": 1230, }, "environment.js.map": { - "offset": 8185080, + "offset": 7962670, "size": 1590, }, "globalThis.js": { - "offset": 8186660, + "offset": 7964250, "size": 970, }, "globalThis.js.map": { - "offset": 8187620, + "offset": 7965210, "size": 1140, }, "hex-to-base64.js": { - "offset": 8188760, + "offset": 7966350, "size": 970, }, "hex-to-base64.js.map": { - "offset": 8189730, + "offset": 7967320, "size": 1150, }, "index.js": { - "offset": 8190880, + "offset": 7968470, "size": 2260, }, "index.js.map": { - "offset": 8193140, + "offset": 7970720, "size": 1420, }, "performance.js": { - "offset": 8194550, + "offset": 7972140, "size": 850, }, "performance.js.map": { - "offset": 8195400, + "offset": 7972990, "size": 950, }, "sdk-info.js": { - "offset": 8196340, + "offset": 7973930, "size": 1300, }, "sdk-info.js.map": { - "offset": 8197630, + "offset": 7975220, "size": 1600, }, "timer-util.js": { - "offset": 8199230, + "offset": 7976820, "size": 840, }, "timer-util.js.map": { - "offset": 8200060, + "offset": 7977650, "size": 970, }, }, @@ -57742,11 +57594,11 @@ exports[`node_module collectors > yarn ms 2`] = ` "propagation": { "files": { "composite.js": { - "offset": 8201030, + "offset": 7978620, "size": 3170, }, "composite.js.map": { - "offset": 8204200, + "offset": 7981790, "size": 5030, }, }, @@ -57754,79 +57606,79 @@ exports[`node_module collectors > yarn ms 2`] = ` "trace": { "files": { "IdGenerator.js": { - "offset": 8209230, + "offset": 7986810, "size": 730, }, "IdGenerator.js.map": { - "offset": 8209950, + "offset": 7987540, "size": 1200, }, "TraceState.js": { - "offset": 8211140, + "offset": 7988730, "size": 3930, }, "TraceState.js.map": { - "offset": 8215060, + "offset": 7992650, "size": 6390, }, "W3CTraceContextPropagator.js": { - "offset": 8221450, + "offset": 7999040, "size": 4750, }, "W3CTraceContextPropagator.js.map": { - "offset": 8226190, + "offset": 8003780, "size": 7110, }, "rpc-metadata.js": { - "offset": 8233300, + "offset": 8010890, "size": 1500, }, "rpc-metadata.js.map": { - "offset": 8234790, + "offset": 8012380, "size": 2120, }, "sampler": { "files": { "AlwaysOffSampler.js": { - "offset": 8236900, + "offset": 8014490, "size": 1170, }, "AlwaysOffSampler.js.map": { - "offset": 8238070, + "offset": 8015660, "size": 1430, }, "AlwaysOnSampler.js": { - "offset": 8239500, + "offset": 8017090, "size": 1180, }, "AlwaysOnSampler.js.map": { - "offset": 8240680, + "offset": 8018260, "size": 1440, }, "ParentBasedSampler.js": { - "offset": 8242110, + "offset": 8019700, "size": 3620, }, "ParentBasedSampler.js.map": { - "offset": 8245720, + "offset": 8023310, "size": 6430, }, "TraceIdRatioBasedSampler.js": { - "offset": 8252150, + "offset": 8029740, "size": 2110, }, "TraceIdRatioBasedSampler.js.map": { - "offset": 8254260, + "offset": 8031850, "size": 3400, }, }, }, "suppress-tracing.js": { - "offset": 8257650, + "offset": 8035240, "size": 1410, }, "suppress-tracing.js.map": { - "offset": 8259060, + "offset": 8036650, "size": 1750, }, }, @@ -57834,85 +57686,85 @@ exports[`node_module collectors > yarn ms 2`] = ` "utils": { "files": { "callback.js": { - "offset": 8260800, + "offset": 8038390, "size": 1710, }, "callback.js.map": { - "offset": 8262500, + "offset": 8040090, "size": 2590, }, "environment.js": { - "offset": 8265090, + "offset": 8042680, "size": 9580, }, "environment.js.map": { - "offset": 8274660, + "offset": 8052250, "size": 17720, }, "lodash.merge.js": { - "offset": 8292380, + "offset": 8069970, "size": 4860, }, "lodash.merge.js.map": { - "offset": 8297240, + "offset": 8074830, "size": 7230, }, "merge.js": { - "offset": 8304470, + "offset": 8082050, "size": 5130, }, "merge.js.map": { - "offset": 8309590, + "offset": 8087180, "size": 9250, }, "promise.js": { - "offset": 8318840, + "offset": 8096430, "size": 1130, }, "promise.js.map": { - "offset": 8319960, + "offset": 8097550, "size": 1670, }, "sampling.js": { - "offset": 8321630, + "offset": 8099220, "size": 1310, }, "sampling.js.map": { - "offset": 8322930, + "offset": 8100520, "size": 1280, }, "timeout.js": { - "offset": 8324210, + "offset": 8101800, "size": 2240, }, "timeout.js.map": { - "offset": 8326450, + "offset": 8104040, "size": 3060, }, "url.js": { - "offset": 8329500, + "offset": 8107090, "size": 1390, }, "url.js.map": { - "offset": 8330890, + "offset": 8108480, "size": 1870, }, "wrap.js": { - "offset": 8332750, + "offset": 8110340, "size": 1060, }, "wrap.js.map": { - "offset": 8333810, + "offset": 8111390, "size": 1430, }, }, }, "version.js": { - "offset": 8335230, + "offset": 8112820, "size": 840, }, "version.js.map": { - "offset": 8336060, + "offset": 8113650, "size": 930, }, }, @@ -57920,7 +57772,7 @@ exports[`node_module collectors > yarn ms 2`] = ` }, }, "package.json": { - "offset": 8336980, + "offset": 8114570, "size": 2050, }, }, @@ -57928,7 +57780,7 @@ exports[`node_module collectors > yarn ms 2`] = ` "semantic-conventions": { "files": { "LICENSE": { - "offset": 8339030, + "offset": 8116620, "size": 11360, }, "build": { @@ -57936,45 +57788,45 @@ exports[`node_module collectors > yarn ms 2`] = ` "esm": { "files": { "experimental_attributes.js": { - "offset": 8350380, + "offset": 8127970, "size": 290170, }, "experimental_attributes.js.map": { - "offset": 8640550, + "offset": 8418140, "size": 369690, }, "experimental_metrics.js": { - "offset": 9010240, + "offset": 8787830, "size": 65740, }, "experimental_metrics.js.map": { - "offset": 9075980, + "offset": 8853570, "size": 79630, }, "index-incubating.js": { - "offset": 9155610, + "offset": 8933200, "size": 940, }, "index-incubating.js.map": { - "offset": 9156540, + "offset": 8934130, "size": 1210, }, "index.js": { - "offset": 9157750, + "offset": 8935340, "size": 1010, }, "index.js.map": { - "offset": 9158760, + "offset": 8936350, "size": 1290, }, "internal": { "files": { "utils.js": { - "offset": 9160040, + "offset": 8937630, "size": 1260, }, "utils.js.map": { - "offset": 9161300, + "offset": 8938880, "size": 1860, }, }, @@ -57982,65 +57834,65 @@ exports[`node_module collectors > yarn ms 2`] = ` "resource": { "files": { "SemanticResourceAttributes.js": { - "offset": 9163150, + "offset": 8940740, "size": 66280, }, "SemanticResourceAttributes.js.map": { - "offset": 9229430, + "offset": 9007020, "size": 106200, }, "index.js": { - "offset": 9335620, + "offset": 9113210, "size": 860, }, "index.js.map": { - "offset": 9336480, + "offset": 9114070, "size": 1050, }, }, }, "stable_attributes.js": { - "offset": 9337530, + "offset": 9115120, "size": 29260, }, "stable_attributes.js.map": { - "offset": 9366790, + "offset": 9144380, "size": 38280, }, "stable_metrics.js": { - "offset": 9405060, + "offset": 9182650, "size": 7680, }, "stable_metrics.js.map": { - "offset": 9412740, + "offset": 9190320, "size": 10240, }, "trace": { "files": { "SemanticAttributes.js": { - "offset": 9422970, + "offset": 9200560, "size": 141700, }, "SemanticAttributes.js.map": { - "offset": 9564670, + "offset": 9342260, "size": 215320, }, "index.js": { - "offset": 9779980, + "offset": 9557570, "size": 860, }, "index.js.map": { - "offset": 9780840, + "offset": 9558420, "size": 1040, }, }, }, "version.js": { - "offset": 9781870, + "offset": 9559460, "size": 740, }, "version.js.map": { - "offset": 9782610, + "offset": 9560190, "size": 930, }, }, @@ -58048,45 +57900,45 @@ exports[`node_module collectors > yarn ms 2`] = ` "esnext": { "files": { "experimental_attributes.js": { - "offset": 9783540, + "offset": 9561120, "size": 291920, }, "experimental_attributes.js.map": { - "offset": 10075450, + "offset": 9853030, "size": 369670, }, "experimental_metrics.js": { - "offset": 10445110, + "offset": 10222700, "size": 66080, }, "experimental_metrics.js.map": { - "offset": 10511190, + "offset": 10288770, "size": 79630, }, "index-incubating.js": { - "offset": 10590820, + "offset": 10368400, "size": 940, }, "index-incubating.js.map": { - "offset": 10591750, + "offset": 10369340, "size": 1210, }, "index.js": { - "offset": 10592950, + "offset": 10370540, "size": 1010, }, "index.js.map": { - "offset": 10593960, + "offset": 10371550, "size": 1290, }, "internal": { "files": { "utils.js": { - "offset": 10595250, + "offset": 10372840, "size": 1260, }, "utils.js.map": { - "offset": 10596510, + "offset": 10374100, "size": 1860, }, }, @@ -58094,65 +57946,65 @@ exports[`node_module collectors > yarn ms 2`] = ` "resource": { "files": { "SemanticResourceAttributes.js": { - "offset": 10598370, + "offset": 10375950, "size": 66820, }, "SemanticResourceAttributes.js.map": { - "offset": 10665180, + "offset": 10442770, "size": 106200, }, "index.js": { - "offset": 10771380, + "offset": 10548970, "size": 860, }, "index.js.map": { - "offset": 10772240, + "offset": 10549830, "size": 1050, }, }, }, "stable_attributes.js": { - "offset": 10773290, + "offset": 10550870, "size": 29450, }, "stable_attributes.js.map": { - "offset": 10802730, + "offset": 10580310, "size": 38270, }, "stable_metrics.js": { - "offset": 10840990, + "offset": 10618580, "size": 7740, }, "stable_metrics.js.map": { - "offset": 10848730, + "offset": 10626320, "size": 10240, }, "trace": { "files": { "SemanticAttributes.js": { - "offset": 10858970, + "offset": 10636550, "size": 142770, }, "SemanticAttributes.js.map": { - "offset": 11001730, + "offset": 10779320, "size": 215320, }, "index.js": { - "offset": 11217040, + "offset": 10994630, "size": 860, }, "index.js.map": { - "offset": 11217900, + "offset": 10995480, "size": 1040, }, }, }, "version.js": { - "offset": 11218930, + "offset": 10996520, "size": 740, }, "version.js.map": { - "offset": 11219670, + "offset": 10997260, "size": 930, }, }, @@ -58160,45 +58012,45 @@ exports[`node_module collectors > yarn ms 2`] = ` "src": { "files": { "experimental_attributes.js": { - "offset": 11220600, + "offset": 10998180, "size": 326160, }, "experimental_attributes.js.map": { - "offset": 11546760, + "offset": 11324340, "size": 360270, }, "experimental_metrics.js": { - "offset": 11907020, + "offset": 11684610, "size": 72350, }, "experimental_metrics.js.map": { - "offset": 11979370, + "offset": 11756950, "size": 77960, }, "index-incubating.js": { - "offset": 12057320, + "offset": 11834910, "size": 1600, }, "index-incubating.js.map": { - "offset": 12058920, + "offset": 11836510, "size": 1180, }, "index.js": { - "offset": 12060090, + "offset": 11837680, "size": 1680, }, "index.js.map": { - "offset": 12061770, + "offset": 11839350, "size": 1270, }, "internal": { "files": { "utils.js": { - "offset": 12063030, + "offset": 11840620, "size": 1410, }, "utils.js.map": { - "offset": 12064430, + "offset": 11842020, "size": 1870, }, }, @@ -58206,65 +58058,65 @@ exports[`node_module collectors > yarn ms 2`] = ` "resource": { "files": { "SemanticResourceAttributes.js": { - "offset": 12066300, + "offset": 11843880, "size": 71670, }, "SemanticResourceAttributes.js.map": { - "offset": 12137960, + "offset": 11915550, "size": 104820, }, "index.js": { - "offset": 12242780, + "offset": 12020370, "size": 1470, }, "index.js.map": { - "offset": 12244250, + "offset": 12021840, "size": 1050, }, }, }, "stable_attributes.js": { - "offset": 12245300, + "offset": 12022890, "size": 33570, }, "stable_attributes.js.map": { - "offset": 12278870, + "offset": 12056460, "size": 37230, }, "stable_metrics.js": { - "offset": 12316090, + "offset": 12093680, "size": 9060, }, "stable_metrics.js.map": { - "offset": 12325140, + "offset": 12102730, "size": 9930, }, "trace": { "files": { "SemanticAttributes.js": { - "offset": 12335070, + "offset": 12112660, "size": 152600, }, "SemanticAttributes.js.map": { - "offset": 12487670, + "offset": 12265250, "size": 212640, }, "index.js": { - "offset": 12700300, + "offset": 12477890, "size": 1460, }, "index.js.map": { - "offset": 12701760, + "offset": 12479350, "size": 1040, }, }, }, "version.js": { - "offset": 12702800, + "offset": 12480390, "size": 840, }, "version.js.map": { - "offset": 12703630, + "offset": 12481220, "size": 930, }, }, @@ -58272,7 +58124,7 @@ exports[`node_module collectors > yarn ms 2`] = ` }, }, "package.json": { - "offset": 12704550, + "offset": 12482140, "size": 1960, }, }, @@ -58282,7 +58134,7 @@ exports[`node_module collectors > yarn ms 2`] = ` }, }, "package.json": { - "offset": 7531050, + "offset": 7308640, "size": 1780, }, }, @@ -58290,7 +58142,7 @@ exports[`node_module collectors > yarn ms 2`] = ` "instrumentation-ioredis": { "files": { "LICENSE": { - "offset": 12706510, + "offset": 12484100, "size": 11360, }, "build": { @@ -58298,51 +58150,51 @@ exports[`node_module collectors > yarn ms 2`] = ` "src": { "files": { "index.js": { - "offset": 12717870, + "offset": 12495460, "size": 1330, }, "index.js.map": { - "offset": 12719190, + "offset": 12496780, "size": 880, }, "instrumentation.js": { - "offset": 12720070, + "offset": 12497650, "size": 7800, }, "instrumentation.js.map": { - "offset": 12727860, + "offset": 12505450, "size": 12370, }, "internal-types.js": { - "offset": 12740230, + "offset": 12517820, "size": 120, }, "internal-types.js.map": { - "offset": 12740350, + "offset": 12517930, "size": 1240, }, "types.js": { - "offset": 12741580, + "offset": 12519170, "size": 720, }, "types.js.map": { - "offset": 12742300, + "offset": 12519880, "size": 3090, }, "utils.js": { - "offset": 12745380, + "offset": 12522970, "size": 1040, }, "utils.js.map": { - "offset": 12746420, + "offset": 12524000, "size": 1410, }, "version.js": { - "offset": 12747820, + "offset": 12525410, "size": 940, }, "version.js.map": { - "offset": 12748760, + "offset": 12526350, "size": 1040, }, }, @@ -58350,7 +58202,7 @@ exports[`node_module collectors > yarn ms 2`] = ` }, }, "package.json": { - "offset": 12749790, + "offset": 12527380, "size": 1520, }, }, @@ -58358,7 +58210,7 @@ exports[`node_module collectors > yarn ms 2`] = ` "instrumentation-kafkajs": { "files": { "LICENSE": { - "offset": 12751310, + "offset": 12528890, "size": 11360, }, "build": { @@ -58366,43 +58218,43 @@ exports[`node_module collectors > yarn ms 2`] = ` "src": { "files": { "index.js": { - "offset": 12762660, + "offset": 12540250, "size": 1340, }, "index.js.map": { - "offset": 12764000, + "offset": 12541580, "size": 890, }, "instrumentation.js": { - "offset": 12764880, + "offset": 12542470, "size": 11340, }, "instrumentation.js.map": { - "offset": 12776220, + "offset": 12553800, "size": 20240, }, "propagator.js": { - "offset": 12796450, + "offset": 12574040, "size": 840, }, "propagator.js.map": { - "offset": 12797290, + "offset": 12574880, "size": 1950, }, "types.js": { - "offset": 12799230, + "offset": 12576820, "size": 110, }, "types.js.map": { - "offset": 12799340, + "offset": 12576930, "size": 1810, }, "version.js": { - "offset": 12801150, + "offset": 12578740, "size": 940, }, "version.js.map": { - "offset": 12802090, + "offset": 12579680, "size": 1040, }, }, @@ -58410,7 +58262,7 @@ exports[`node_module collectors > yarn ms 2`] = ` }, }, "package.json": { - "offset": 12803120, + "offset": 12580710, "size": 1250, }, }, @@ -58418,7 +58270,7 @@ exports[`node_module collectors > yarn ms 2`] = ` "instrumentation-knex": { "files": { "LICENSE": { - "offset": 12804370, + "offset": 12581950, "size": 11360, }, "build": { @@ -58426,51 +58278,51 @@ exports[`node_module collectors > yarn ms 2`] = ` "src": { "files": { "constants.js": { - "offset": 12815720, + "offset": 12593310, "size": 1090, }, "constants.js.map": { - "offset": 12816810, + "offset": 12594400, "size": 1270, }, "index.js": { - "offset": 12818070, + "offset": 12595660, "size": 1330, }, "index.js.map": { - "offset": 12819400, + "offset": 12596990, "size": 880, }, "instrumentation.js": { - "offset": 12820270, + "offset": 12597860, "size": 8330, }, "instrumentation.js.map": { - "offset": 12828600, + "offset": 12606190, "size": 13140, }, "types.js": { - "offset": 12841730, + "offset": 12619320, "size": 110, }, "types.js.map": { - "offset": 12841840, + "offset": 12619430, "size": 1130, }, "utils.js": { - "offset": 12842970, + "offset": 12620560, "size": 3040, }, "utils.js.map": { - "offset": 12846010, + "offset": 12623600, "size": 4810, }, "version.js": { - "offset": 12850810, + "offset": 12628400, "size": 940, }, "version.js.map": { - "offset": 12851740, + "offset": 12629330, "size": 1040, }, }, @@ -58478,7 +58330,7 @@ exports[`node_module collectors > yarn ms 2`] = ` }, }, "package.json": { - "offset": 12852780, + "offset": 12630360, "size": 1260, }, }, @@ -58486,7 +58338,7 @@ exports[`node_module collectors > yarn ms 2`] = ` "instrumentation-koa": { "files": { "LICENSE": { - "offset": 12854030, + "offset": 12631620, "size": 11360, }, "build": { @@ -58496,61 +58348,61 @@ exports[`node_module collectors > yarn ms 2`] = ` "enums": { "files": { "AttributeNames.js": { - "offset": 12865390, + "offset": 12642980, "size": 980, }, "AttributeNames.js.map": { - "offset": 12866360, + "offset": 12643950, "size": 1010, }, }, }, "index.js": { - "offset": 12867370, + "offset": 12644960, "size": 1390, }, "index.js.map": { - "offset": 12868750, + "offset": 12646340, "size": 930, }, "instrumentation.js": { - "offset": 12869680, + "offset": 12647270, "size": 7150, }, "instrumentation.js.map": { - "offset": 12876830, + "offset": 12654420, "size": 11230, }, "internal-types.js": { - "offset": 12888050, + "offset": 12665640, "size": 370, }, "internal-types.js.map": { - "offset": 12888410, + "offset": 12666000, "size": 1480, }, "types.js": { - "offset": 12889890, + "offset": 12667480, "size": 350, }, "types.js.map": { - "offset": 12890230, + "offset": 12667820, "size": 3200, }, "utils.js": { - "offset": 12893430, + "offset": 12671010, "size": 2540, }, "utils.js.map": { - "offset": 12895960, + "offset": 12673550, "size": 3270, }, "version.js": { - "offset": 12899230, + "offset": 12676820, "size": 940, }, "version.js.map": { - "offset": 12900160, + "offset": 12677750, "size": 1030, }, }, @@ -58558,7 +58410,7 @@ exports[`node_module collectors > yarn ms 2`] = ` }, }, "package.json": { - "offset": 12901190, + "offset": 12678780, "size": 1580, }, }, @@ -58566,7 +58418,7 @@ exports[`node_module collectors > yarn ms 2`] = ` "instrumentation-lru-memoizer": { "files": { "LICENSE": { - "offset": 12902770, + "offset": 12680360, "size": 11360, }, "build": { @@ -58574,27 +58426,27 @@ exports[`node_module collectors > yarn ms 2`] = ` "src": { "files": { "index.js": { - "offset": 12914130, + "offset": 12691720, "size": 1290, }, "index.js.map": { - "offset": 12915410, + "offset": 12693000, "size": 840, }, "instrumentation.js": { - "offset": 12916250, + "offset": 12693830, "size": 2960, }, "instrumentation.js.map": { - "offset": 12919200, + "offset": 12696780, "size": 3920, }, "version.js": { - "offset": 12923110, + "offset": 12700700, "size": 950, }, "version.js.map": { - "offset": 12924050, + "offset": 12701640, "size": 1040, }, }, @@ -58602,7 +58454,7 @@ exports[`node_module collectors > yarn ms 2`] = ` }, }, "package.json": { - "offset": 12925090, + "offset": 12702680, "size": 1210, }, }, @@ -58610,7 +58462,7 @@ exports[`node_module collectors > yarn ms 2`] = ` "instrumentation-mongodb": { "files": { "LICENSE": { - "offset": 12926300, + "offset": 12703890, "size": 11360, }, "build": { @@ -58618,43 +58470,43 @@ exports[`node_module collectors > yarn ms 2`] = ` "src": { "files": { "index.js": { - "offset": 12937660, + "offset": 12715240, "size": 1330, }, "index.js.map": { - "offset": 12938980, + "offset": 12716570, "size": 880, }, "instrumentation.js": { - "offset": 12939850, + "offset": 12717440, "size": 31840, }, "instrumentation.js.map": { - "offset": 12971690, + "offset": 12749280, "size": 54160, }, "internal-types.js": { - "offset": 13025850, + "offset": 12803440, "size": 1230, }, "internal-types.js.map": { - "offset": 13027070, + "offset": 12804660, "size": 7210, }, "types.js": { - "offset": 13034280, + "offset": 12811870, "size": 1170, }, "types.js.map": { - "offset": 13035440, + "offset": 12813030, "size": 2600, }, "version.js": { - "offset": 13038030, + "offset": 12815620, "size": 940, }, "version.js.map": { - "offset": 13038970, + "offset": 12816560, "size": 1040, }, }, @@ -58662,7 +58514,7 @@ exports[`node_module collectors > yarn ms 2`] = ` }, }, "package.json": { - "offset": 13040000, + "offset": 12817590, "size": 1410, }, }, @@ -58670,7 +58522,7 @@ exports[`node_module collectors > yarn ms 2`] = ` "instrumentation-mongoose": { "files": { "LICENSE": { - "offset": 13041410, + "offset": 12818990, "size": 11360, }, "build": { @@ -58678,43 +58530,43 @@ exports[`node_module collectors > yarn ms 2`] = ` "src": { "files": { "index.js": { - "offset": 13052760, + "offset": 12830350, "size": 1320, }, "index.js.map": { - "offset": 13054080, + "offset": 12831670, "size": 870, }, "mongoose.js": { - "offset": 13054950, + "offset": 12832530, "size": 11450, }, "mongoose.js.map": { - "offset": 13066390, + "offset": 12843980, "size": 20530, }, "types.js": { - "offset": 13086920, + "offset": 12864500, "size": 110, }, "types.js.map": { - "offset": 13087030, + "offset": 12864610, "size": 2310, }, "utils.js": { - "offset": 13089330, + "offset": 12866910, "size": 3350, }, "utils.js.map": { - "offset": 13092670, + "offset": 12870260, "size": 5740, }, "version.js": { - "offset": 13098400, + "offset": 12875990, "size": 940, }, "version.js.map": { - "offset": 13099340, + "offset": 12876930, "size": 1040, }, }, @@ -58722,7 +58574,7 @@ exports[`node_module collectors > yarn ms 2`] = ` }, }, "package.json": { - "offset": 13100380, + "offset": 12877960, "size": 1320, }, }, @@ -58730,7 +58582,7 @@ exports[`node_module collectors > yarn ms 2`] = ` "instrumentation-mysql": { "files": { "LICENSE": { - "offset": 13101690, + "offset": 12879280, "size": 11360, }, "build": { @@ -58738,51 +58590,51 @@ exports[`node_module collectors > yarn ms 2`] = ` "src": { "files": { "AttributeNames.js": { - "offset": 13113040, + "offset": 12890630, "size": 1010, }, "AttributeNames.js.map": { - "offset": 13114050, + "offset": 12891640, "size": 1050, }, "index.js": { - "offset": 13115090, + "offset": 12892680, "size": 1330, }, "index.js.map": { - "offset": 13116420, + "offset": 12894000, "size": 880, }, "instrumentation.js": { - "offset": 13117290, + "offset": 12894880, "size": 12640, }, "instrumentation.js.map": { - "offset": 13129920, + "offset": 12907510, "size": 22520, }, "types.js": { - "offset": 13152440, + "offset": 12930020, "size": 720, }, "types.js.map": { - "offset": 13153150, + "offset": 12930740, "size": 1120, }, "utils.js": { - "offset": 13154270, + "offset": 12931860, "size": 4410, }, "utils.js.map": { - "offset": 13158670, + "offset": 12936260, "size": 7150, }, "version.js": { - "offset": 13165820, + "offset": 12943400, "size": 940, }, "version.js.map": { - "offset": 13166750, + "offset": 12944340, "size": 1040, }, }, @@ -58790,7 +58642,7 @@ exports[`node_module collectors > yarn ms 2`] = ` }, }, "package.json": { - "offset": 13167780, + "offset": 12945370, "size": 1370, }, }, @@ -58798,7 +58650,7 @@ exports[`node_module collectors > yarn ms 2`] = ` "instrumentation-mysql2": { "files": { "LICENSE": { - "offset": 13169150, + "offset": 12946740, "size": 11360, }, "build": { @@ -58806,43 +58658,43 @@ exports[`node_module collectors > yarn ms 2`] = ` "src": { "files": { "index.js": { - "offset": 13180510, + "offset": 12958100, "size": 1330, }, "index.js.map": { - "offset": 13181830, + "offset": 12959420, "size": 880, }, "instrumentation.js": { - "offset": 13182710, + "offset": 12960300, "size": 6540, }, "instrumentation.js.map": { - "offset": 13189240, + "offset": 12966830, "size": 10750, }, "types.js": { - "offset": 13199990, + "offset": 12977580, "size": 720, }, "types.js.map": { - "offset": 13200700, + "offset": 12978290, "size": 1670, }, "utils.js": { - "offset": 13202370, + "offset": 12979960, "size": 4960, }, "utils.js.map": { - "offset": 13207330, + "offset": 12984910, "size": 7990, }, "version.js": { - "offset": 13215320, + "offset": 12992900, "size": 940, }, "version.js.map": { - "offset": 13216250, + "offset": 12993840, "size": 1040, }, }, @@ -58850,7 +58702,7 @@ exports[`node_module collectors > yarn ms 2`] = ` }, }, "package.json": { - "offset": 13217280, + "offset": 12994870, "size": 1380, }, }, @@ -58858,7 +58710,7 @@ exports[`node_module collectors > yarn ms 2`] = ` "instrumentation-nestjs-core": { "files": { "LICENSE": { - "offset": 13218660, + "offset": 12996250, "size": 11360, }, "build": { @@ -58868,53 +58720,53 @@ exports[`node_module collectors > yarn ms 2`] = ` "enums": { "files": { "AttributeNames.js": { - "offset": 13230020, + "offset": 13007610, "size": 1290, }, "AttributeNames.js.map": { - "offset": 13231310, + "offset": 13008890, "size": 1320, }, "NestType.js": { - "offset": 13232620, + "offset": 13010210, "size": 990, }, "NestType.js.map": { - "offset": 13233610, + "offset": 13011200, "size": 1060, }, "index.js": { - "offset": 13234670, + "offset": 13012260, "size": 1110, }, "index.js.map": { - "offset": 13235780, + "offset": 13013370, "size": 950, }, }, }, "index.js": { - "offset": 13236730, + "offset": 13014320, "size": 1340, }, "index.js.map": { - "offset": 13238070, + "offset": 13015650, "size": 890, }, "instrumentation.js": { - "offset": 13238960, + "offset": 13016540, "size": 7660, }, "instrumentation.js.map": { - "offset": 13246610, + "offset": 13024200, "size": 13610, }, "version.js": { - "offset": 13260220, + "offset": 13037810, "size": 950, }, "version.js.map": { - "offset": 13261160, + "offset": 13038750, "size": 1040, }, }, @@ -58922,7 +58774,7 @@ exports[`node_module collectors > yarn ms 2`] = ` }, }, "package.json": { - "offset": 13262200, + "offset": 13039790, "size": 1490, }, }, @@ -58930,7 +58782,7 @@ exports[`node_module collectors > yarn ms 2`] = ` "instrumentation-pg": { "files": { "LICENSE": { - "offset": 13263690, + "offset": 13041280, "size": 11360, }, "build": { @@ -58940,69 +58792,69 @@ exports[`node_module collectors > yarn ms 2`] = ` "enums": { "files": { "AttributeNames.js": { - "offset": 13275050, + "offset": 13052630, "size": 1220, }, "AttributeNames.js.map": { - "offset": 13276260, + "offset": 13053850, "size": 1260, }, "SpanNames.js": { - "offset": 13277510, + "offset": 13055100, "size": 1040, }, "SpanNames.js.map": { - "offset": 13278550, + "offset": 13056130, "size": 1120, }, }, }, "index.js": { - "offset": 13279660, + "offset": 13057250, "size": 1390, }, "index.js.map": { - "offset": 13281040, + "offset": 13058630, "size": 930, }, "instrumentation.js": { - "offset": 13281970, + "offset": 13059560, "size": 19540, }, "instrumentation.js.map": { - "offset": 13301510, + "offset": 13079090, "size": 30940, }, "internal-types.js": { - "offset": 13332440, + "offset": 13110030, "size": 860, }, "internal-types.js.map": { - "offset": 13333300, + "offset": 13110890, "size": 2940, }, "types.js": { - "offset": 13336240, + "offset": 13113820, "size": 720, }, "types.js.map": { - "offset": 13336950, + "offset": 13114540, "size": 2660, }, "utils.js": { - "offset": 13339600, + "offset": 13117190, "size": 12170, }, "utils.js.map": { - "offset": 13351770, + "offset": 13129360, "size": 19040, }, "version.js": { - "offset": 13370800, + "offset": 13148390, "size": 940, }, "version.js.map": { - "offset": 13371730, + "offset": 13149320, "size": 1030, }, }, @@ -59016,7 +58868,7 @@ exports[`node_module collectors > yarn ms 2`] = ` "semantic-conventions": { "files": { "LICENSE": { - "offset": 13374370, + "offset": 13151960, "size": 11360, }, "build": { @@ -59024,45 +58876,45 @@ exports[`node_module collectors > yarn ms 2`] = ` "esm": { "files": { "experimental_attributes.js": { - "offset": 13385730, + "offset": 13163320, "size": 263610, }, "experimental_attributes.js.map": { - "offset": 13649340, + "offset": 13426930, "size": 334760, }, "experimental_metrics.js": { - "offset": 13984090, + "offset": 13761680, "size": 49140, }, "experimental_metrics.js.map": { - "offset": 14033230, + "offset": 13810820, "size": 59970, }, "index-incubating.js": { - "offset": 14093190, + "offset": 13870780, "size": 940, }, "index-incubating.js.map": { - "offset": 14094130, + "offset": 13871720, "size": 1210, }, "index.js": { - "offset": 14095330, + "offset": 13872920, "size": 1010, }, "index.js.map": { - "offset": 14096340, + "offset": 13873930, "size": 1290, }, "internal": { "files": { "utils.js": { - "offset": 14097630, + "offset": 13875220, "size": 1260, }, "utils.js.map": { - "offset": 14098880, + "offset": 13876470, "size": 1860, }, }, @@ -59070,65 +58922,65 @@ exports[`node_module collectors > yarn ms 2`] = ` "resource": { "files": { "SemanticResourceAttributes.js": { - "offset": 14100740, + "offset": 13878330, "size": 49110, }, "SemanticResourceAttributes.js.map": { - "offset": 14149840, + "offset": 13927430, "size": 89020, }, "index.js": { - "offset": 14238860, + "offset": 14016450, "size": 860, }, "index.js.map": { - "offset": 14239720, + "offset": 14017310, "size": 1050, }, }, }, "stable_attributes.js": { - "offset": 14240770, + "offset": 14018350, "size": 29400, }, "stable_attributes.js.map": { - "offset": 14270160, + "offset": 14047750, "size": 38430, }, "stable_metrics.js": { - "offset": 14308590, + "offset": 14086180, "size": 7680, }, "stable_metrics.js.map": { - "offset": 14316260, + "offset": 14093850, "size": 10220, }, "trace": { "files": { "SemanticAttributes.js": { - "offset": 14326470, + "offset": 14104060, "size": 106050, }, "SemanticAttributes.js.map": { - "offset": 14432510, + "offset": 14210100, "size": 179660, }, "index.js": { - "offset": 14612170, + "offset": 14389760, "size": 860, }, "index.js.map": { - "offset": 14613030, + "offset": 14390610, "size": 1040, }, }, }, "version.js": { - "offset": 14614060, + "offset": 14391650, "size": 740, }, "version.js.map": { - "offset": 14614800, + "offset": 14392380, "size": 930, }, }, @@ -59136,45 +58988,45 @@ exports[`node_module collectors > yarn ms 2`] = ` "esnext": { "files": { "experimental_attributes.js": { - "offset": 14615720, + "offset": 14393310, "size": 265170, }, "experimental_attributes.js.map": { - "offset": 14880890, + "offset": 14658480, "size": 334740, }, "experimental_metrics.js": { - "offset": 15215620, + "offset": 14993210, "size": 49410, }, "experimental_metrics.js.map": { - "offset": 15265030, + "offset": 15042610, "size": 59970, }, "index-incubating.js": { - "offset": 15324990, + "offset": 15102580, "size": 940, }, "index-incubating.js.map": { - "offset": 15325920, + "offset": 15103510, "size": 1210, }, "index.js": { - "offset": 15327130, + "offset": 15104720, "size": 1010, }, "index.js.map": { - "offset": 15328140, + "offset": 15105730, "size": 1290, }, "internal": { "files": { "utils.js": { - "offset": 15329420, + "offset": 15107010, "size": 1260, }, "utils.js.map": { - "offset": 15330680, + "offset": 15108270, "size": 1860, }, }, @@ -59182,65 +59034,65 @@ exports[`node_module collectors > yarn ms 2`] = ` "resource": { "files": { "SemanticResourceAttributes.js": { - "offset": 15332540, + "offset": 15110130, "size": 49650, }, "SemanticResourceAttributes.js.map": { - "offset": 15382180, + "offset": 15159770, "size": 89020, }, "index.js": { - "offset": 15471200, + "offset": 15248790, "size": 860, }, "index.js.map": { - "offset": 15472060, + "offset": 15249650, "size": 1050, }, }, }, "stable_attributes.js": { - "offset": 15473110, + "offset": 15250700, "size": 29580, }, "stable_attributes.js.map": { - "offset": 15502690, + "offset": 15280280, "size": 38430, }, "stable_metrics.js": { - "offset": 15541110, + "offset": 15318700, "size": 7740, }, "stable_metrics.js.map": { - "offset": 15548840, + "offset": 15326430, "size": 10220, }, "trace": { "files": { "SemanticAttributes.js": { - "offset": 15559060, + "offset": 15336640, "size": 107110, }, "SemanticAttributes.js.map": { - "offset": 15666160, + "offset": 15443750, "size": 179660, }, "index.js": { - "offset": 15845820, + "offset": 15623410, "size": 860, }, "index.js.map": { - "offset": 15846670, + "offset": 15624260, "size": 1040, }, }, }, "version.js": { - "offset": 15847710, + "offset": 15625300, "size": 740, }, "version.js.map": { - "offset": 15848440, + "offset": 15626030, "size": 930, }, }, @@ -59248,45 +59100,45 @@ exports[`node_module collectors > yarn ms 2`] = ` "src": { "files": { "experimental_attributes.js": { - "offset": 15849370, + "offset": 15626960, "size": 296290, }, "experimental_attributes.js.map": { - "offset": 16145660, + "offset": 15923250, "size": 326260, }, "experimental_metrics.js": { - "offset": 16471920, + "offset": 16249510, "size": 54410, }, "experimental_metrics.js.map": { - "offset": 16526320, + "offset": 16303910, "size": 58640, }, "index-incubating.js": { - "offset": 16584960, + "offset": 16362550, "size": 1600, }, "index-incubating.js.map": { - "offset": 16586560, + "offset": 16364140, "size": 1180, }, "index.js": { - "offset": 16587730, + "offset": 16365320, "size": 1680, }, "index.js.map": { - "offset": 16589400, + "offset": 16366990, "size": 1270, }, "internal": { "files": { "utils.js": { - "offset": 16590670, + "offset": 16368250, "size": 1410, }, "utils.js.map": { - "offset": 16592070, + "offset": 16369660, "size": 1870, }, }, @@ -59294,65 +59146,65 @@ exports[`node_module collectors > yarn ms 2`] = ` "resource": { "files": { "SemanticResourceAttributes.js": { - "offset": 16593940, + "offset": 16371520, "size": 54490, }, "SemanticResourceAttributes.js.map": { - "offset": 16648430, + "offset": 16426010, "size": 87650, }, "index.js": { - "offset": 16736070, + "offset": 16513660, "size": 1470, }, "index.js.map": { - "offset": 16737540, + "offset": 16515120, "size": 1050, }, }, }, "stable_attributes.js": { - "offset": 16738590, + "offset": 16516170, "size": 33710, }, "stable_attributes.js.map": { - "offset": 16772290, + "offset": 16549880, "size": 37380, }, "stable_metrics.js": { - "offset": 16809670, + "offset": 16587260, "size": 9060, }, "stable_metrics.js.map": { - "offset": 16818720, + "offset": 16596310, "size": 9910, }, "trace": { "files": { "SemanticAttributes.js": { - "offset": 16828630, + "offset": 16606210, "size": 116940, }, "SemanticAttributes.js.map": { - "offset": 16945560, + "offset": 16723150, "size": 176980, }, "index.js": { - "offset": 17122540, + "offset": 16900130, "size": 1460, }, "index.js.map": { - "offset": 17124000, + "offset": 16901590, "size": 1040, }, }, }, "version.js": { - "offset": 17125040, + "offset": 16902630, "size": 840, }, "version.js.map": { - "offset": 17125870, + "offset": 16903460, "size": 930, }, }, @@ -59360,7 +59212,7 @@ exports[`node_module collectors > yarn ms 2`] = ` }, }, "package.json": { - "offset": 17126800, + "offset": 16904380, "size": 1990, }, }, @@ -59373,12 +59225,12 @@ exports[`node_module collectors > yarn ms 2`] = ` "files": { "LICENSE": { "executable": true, - "offset": 17128780, + "offset": 16906360, "size": 1150, }, "package.json": { "executable": true, - "offset": 17129920, + "offset": 16907510, "size": 620, }, }, @@ -59388,7 +59240,7 @@ exports[`node_module collectors > yarn ms 2`] = ` }, }, "package.json": { - "offset": 13372760, + "offset": 13150350, "size": 1610, }, }, @@ -59396,7 +59248,7 @@ exports[`node_module collectors > yarn ms 2`] = ` "instrumentation-redis-4": { "files": { "LICENSE": { - "offset": 17130530, + "offset": 16908120, "size": 11360, }, "build": { @@ -59404,51 +59256,51 @@ exports[`node_module collectors > yarn ms 2`] = ` "src": { "files": { "index.js": { - "offset": 17141890, + "offset": 16919470, "size": 1330, }, "index.js.map": { - "offset": 17143210, + "offset": 16920800, "size": 880, }, "instrumentation.js": { - "offset": 17144080, + "offset": 16921670, "size": 17840, }, "instrumentation.js.map": { - "offset": 17161920, + "offset": 16939510, "size": 27520, }, "internal-types.js": { - "offset": 17189440, + "offset": 16967020, "size": 730, }, "internal-types.js.map": { - "offset": 17190160, + "offset": 16967750, "size": 1050, }, "types.js": { - "offset": 17191200, + "offset": 16968790, "size": 720, }, "types.js.map": { - "offset": 17191920, + "offset": 16969510, "size": 2440, }, "utils.js": { - "offset": 17194350, + "offset": 16971940, "size": 1700, }, "utils.js.map": { - "offset": 17196040, + "offset": 16973630, "size": 2950, }, "version.js": { - "offset": 17198990, + "offset": 16976580, "size": 940, }, "version.js.map": { - "offset": 17199930, + "offset": 16977520, "size": 1040, }, }, @@ -59456,7 +59308,7 @@ exports[`node_module collectors > yarn ms 2`] = ` }, }, "package.json": { - "offset": 17200970, + "offset": 16978550, "size": 1440, }, }, @@ -59464,7 +59316,7 @@ exports[`node_module collectors > yarn ms 2`] = ` "instrumentation-tedious": { "files": { "LICENSE": { - "offset": 17202400, + "offset": 16979990, "size": 11360, }, "build": { @@ -59472,43 +59324,43 @@ exports[`node_module collectors > yarn ms 2`] = ` "src": { "files": { "index.js": { - "offset": 17213760, + "offset": 16991350, "size": 1330, }, "index.js.map": { - "offset": 17215080, + "offset": 16992670, "size": 880, }, "instrumentation.js": { - "offset": 17215960, + "offset": 16993550, "size": 8420, }, "instrumentation.js.map": { - "offset": 17224370, + "offset": 17001960, "size": 13210, }, "types.js": { - "offset": 17237580, + "offset": 17015170, "size": 720, }, "types.js.map": { - "offset": 17238300, + "offset": 17015890, "size": 920, }, "utils.js": { - "offset": 17239220, + "offset": 17016810, "size": 1780, }, "utils.js.map": { - "offset": 17240990, + "offset": 17018580, "size": 2560, }, "version.js": { - "offset": 17243540, + "offset": 17021130, "size": 940, }, "version.js.map": { - "offset": 17244480, + "offset": 17022060, "size": 1040, }, }, @@ -59516,7 +59368,7 @@ exports[`node_module collectors > yarn ms 2`] = ` }, }, "package.json": { - "offset": 17245510, + "offset": 17023100, "size": 1340, }, }, @@ -59524,7 +59376,7 @@ exports[`node_module collectors > yarn ms 2`] = ` "instrumentation-undici": { "files": { "LICENSE": { - "offset": 17246850, + "offset": 17024440, "size": 11360, }, "build": { @@ -59534,53 +59386,53 @@ exports[`node_module collectors > yarn ms 2`] = ` "enums": { "files": { "SemanticAttributes.js": { - "offset": 17258210, + "offset": 17035800, "size": 8520, }, "SemanticAttributes.js.map": { - "offset": 17266730, + "offset": 17044310, "size": 9280, }, }, }, "index.js": { - "offset": 17276000, + "offset": 17053590, "size": 1320, }, "index.js.map": { - "offset": 17277310, + "offset": 17054900, "size": 870, }, "internal-types.js": { - "offset": 17278180, + "offset": 17055770, "size": 730, }, "internal-types.js.map": { - "offset": 17278900, + "offset": 17056490, "size": 1400, }, "types.js": { - "offset": 17280300, + "offset": 17057880, "size": 110, }, "types.js.map": { - "offset": 17280410, + "offset": 17057990, "size": 3110, }, "undici.js": { - "offset": 17283510, + "offset": 17061100, "size": 18140, }, "undici.js.map": { - "offset": 17301650, + "offset": 17079240, "size": 29650, }, "version.js": { - "offset": 17331290, + "offset": 17108880, "size": 940, }, "version.js.map": { - "offset": 17332230, + "offset": 17109810, "size": 1040, }, }, @@ -59588,7 +59440,7 @@ exports[`node_module collectors > yarn ms 2`] = ` }, }, "package.json": { - "offset": 17333260, + "offset": 17110850, "size": 1290, }, }, @@ -59596,7 +59448,7 @@ exports[`node_module collectors > yarn ms 2`] = ` "redis-common": { "files": { "LICENSE": { - "offset": 17334540, + "offset": 17112130, "size": 11360, }, "build": { @@ -59604,11 +59456,11 @@ exports[`node_module collectors > yarn ms 2`] = ` "src": { "files": { "index.js": { - "offset": 17345900, + "offset": 17123480, "size": 2760, }, "index.js.map": { - "offset": 17348650, + "offset": 17126240, "size": 3740, }, }, @@ -59616,11 +59468,11 @@ exports[`node_module collectors > yarn ms 2`] = ` "test": { "files": { "redis-common.test.js": { - "offset": 17352380, + "offset": 17129970, "size": 1830, }, "redis-common.test.js.map": { - "offset": 17354210, + "offset": 17131800, "size": 2620, }, }, @@ -59628,7 +59480,7 @@ exports[`node_module collectors > yarn ms 2`] = ` }, }, "package.json": { - "offset": 17356830, + "offset": 17134420, "size": 790, }, }, @@ -59636,7 +59488,7 @@ exports[`node_module collectors > yarn ms 2`] = ` "resources": { "files": { "LICENSE": { - "offset": 17357620, + "offset": 17135210, "size": 11360, }, "build": { @@ -59644,93 +59496,93 @@ exports[`node_module collectors > yarn ms 2`] = ` "esm": { "files": { "IResource.js": { - "offset": 17368970, + "offset": 17146560, "size": 660, }, "IResource.js.map": { - "offset": 17369630, + "offset": 17147220, "size": 2090, }, "Resource.js": { - "offset": 17371710, + "offset": 17149300, "size": 9000, }, "Resource.js.map": { - "offset": 17380700, + "offset": 17158290, "size": 7870, }, "config.js": { - "offset": 17388570, + "offset": 17166160, "size": 660, }, "config.js.map": { - "offset": 17389220, + "offset": 17166810, "size": 1040, }, "detect-resources.js": { - "offset": 17390250, + "offset": 17167840, "size": 8520, }, "detect-resources.js.map": { - "offset": 17398770, + "offset": 17176360, "size": 7180, }, "detectors": { "files": { "BrowserDetector.js": { - "offset": 17405940, + "offset": 17183530, "size": 1110, }, "BrowserDetector.js.map": { - "offset": 17407050, + "offset": 17184640, "size": 1610, }, "BrowserDetectorSync.js": { - "offset": 17408650, + "offset": 17186240, "size": 3280, }, "BrowserDetectorSync.js.map": { - "offset": 17411920, + "offset": 17189510, "size": 3970, }, "EnvDetector.js": { - "offset": 17415890, + "offset": 17193480, "size": 1400, }, "EnvDetector.js.map": { - "offset": 17417280, + "offset": 17194870, "size": 1910, }, "EnvDetectorSync.js": { - "offset": 17419190, + "offset": 17196780, "size": 7280, }, "EnvDetectorSync.js.map": { - "offset": 17426470, + "offset": 17204050, "size": 8570, }, "NoopDetector.js": { - "offset": 17435030, + "offset": 17212610, "size": 1010, }, "NoopDetector.js.map": { - "offset": 17436030, + "offset": 17213620, "size": 1380, }, "NoopDetectorSync.js": { - "offset": 17437410, + "offset": 17214990, "size": 1000, }, "NoopDetectorSync.js.map": { - "offset": 17438400, + "offset": 17215990, "size": 1340, }, "index.js": { - "offset": 17439730, + "offset": 17217320, "size": 1010, }, "index.js.map": { - "offset": 17440740, + "offset": 17218330, "size": 1470, }, "platform": { @@ -59738,211 +59590,211 @@ exports[`node_module collectors > yarn ms 2`] = ` "browser": { "files": { "HostDetector.js": { - "offset": 17442210, + "offset": 17219800, "size": 740, }, "HostDetector.js.map": { - "offset": 17442950, + "offset": 17220530, "size": 1010, }, "HostDetectorSync.js": { - "offset": 17443950, + "offset": 17221540, "size": 760, }, "HostDetectorSync.js.map": { - "offset": 17444710, + "offset": 17222300, "size": 1040, }, "OSDetector.js": { - "offset": 17445750, + "offset": 17223330, "size": 740, }, "OSDetector.js.map": { - "offset": 17446480, + "offset": 17224070, "size": 1000, }, "OSDetectorSync.js": { - "offset": 17447480, + "offset": 17225070, "size": 760, }, "OSDetectorSync.js.map": { - "offset": 17448230, + "offset": 17225820, "size": 1030, }, "ProcessDetector.js": { - "offset": 17449260, + "offset": 17226850, "size": 750, }, "ProcessDetector.js.map": { - "offset": 17450000, + "offset": 17227590, "size": 1020, }, "ProcessDetectorSync.js": { - "offset": 17451020, + "offset": 17228610, "size": 760, }, "ProcessDetectorSync.js.map": { - "offset": 17451770, + "offset": 17229360, "size": 1030, }, "ServiceInstanceIdDetectorSync.js": { - "offset": 17452800, + "offset": 17230390, "size": 810, }, "ServiceInstanceIdDetectorSync.js.map": { - "offset": 17453610, + "offset": 17231190, "size": 1120, }, "index.js": { - "offset": 17454720, + "offset": 17232310, "size": 1030, }, "index.js.map": { - "offset": 17455750, + "offset": 17233340, "size": 1520, }, }, }, "index.js": { - "offset": 17457260, + "offset": 17234850, "size": 800, }, "index.js.map": { - "offset": 17458060, + "offset": 17235650, "size": 1090, }, "node": { "files": { "HostDetector.js": { - "offset": 17459140, + "offset": 17236730, "size": 1150, }, "HostDetector.js.map": { - "offset": 17460290, + "offset": 17237880, "size": 1700, }, "HostDetectorSync.js": { - "offset": 17461990, + "offset": 17239570, "size": 1930, }, "HostDetectorSync.js.map": { - "offset": 17463910, + "offset": 17241500, "size": 2930, }, "OSDetector.js": { - "offset": 17466840, + "offset": 17244430, "size": 1120, }, "OSDetector.js.map": { - "offset": 17467960, + "offset": 17245550, "size": 1670, }, "OSDetectorSync.js": { - "offset": 17469620, + "offset": 17247210, "size": 1490, }, "OSDetectorSync.js.map": { - "offset": 17471110, + "offset": 17248700, "size": 2210, }, "ProcessDetector.js": { - "offset": 17473310, + "offset": 17250900, "size": 1180, }, "ProcessDetector.js.map": { - "offset": 17474490, + "offset": 17252080, "size": 1720, }, "ProcessDetectorSync.js": { - "offset": 17476200, + "offset": 17253790, "size": 3490, }, "ProcessDetectorSync.js.map": { - "offset": 17479690, + "offset": 17257270, "size": 3960, }, "ServiceInstanceIdDetectorSync.js": { - "offset": 17483640, + "offset": 17261230, "size": 1460, }, "ServiceInstanceIdDetectorSync.js.map": { - "offset": 17485100, + "offset": 17262680, "size": 2060, }, "index.js": { - "offset": 17487150, + "offset": 17264730, "size": 1030, }, "index.js.map": { - "offset": 17488180, + "offset": 17265760, "size": 1520, }, "machine-id": { "files": { "execAsync.js": { - "offset": 17489690, + "offset": 17267280, "size": 780, }, "execAsync.js.map": { - "offset": 17490470, + "offset": 17268060, "size": 1130, }, "getMachineId-bsd.js": { - "offset": 17491590, + "offset": 17269180, "size": 4460, }, "getMachineId-bsd.js.map": { - "offset": 17496040, + "offset": 17273630, "size": 2010, }, "getMachineId-darwin.js": { - "offset": 17498050, + "offset": 17275640, "size": 4430, }, "getMachineId-darwin.js.map": { - "offset": 17502470, + "offset": 17280060, "size": 2140, }, "getMachineId-linux.js": { - "offset": 17504610, + "offset": 17282190, "size": 5550, }, "getMachineId-linux.js.map": { - "offset": 17510150, + "offset": 17287740, "size": 1810, }, "getMachineId-unsupported.js": { - "offset": 17511950, + "offset": 17289540, "size": 3450, }, "getMachineId-unsupported.js.map": { - "offset": 17515400, + "offset": 17292990, "size": 1230, }, "getMachineId-win.js": { - "offset": 17516620, + "offset": 17294210, "size": 4590, }, "getMachineId-win.js.map": { - "offset": 17521210, + "offset": 17298790, "size": 2300, }, "getMachineId.js": { - "offset": 17523500, + "offset": 17301090, "size": 1270, }, "getMachineId.js.map": { - "offset": 17524760, + "offset": 17302350, "size": 1940, }, }, }, "utils.js": { - "offset": 17526700, + "offset": 17304290, "size": 1600, }, "utils.js.map": { - "offset": 17528290, + "offset": 17305880, "size": 2180, }, }, @@ -59952,11 +59804,11 @@ exports[`node_module collectors > yarn ms 2`] = ` }, }, "index.js": { - "offset": 17530470, + "offset": 17308060, "size": 1030, }, "index.js.map": { - "offset": 17531500, + "offset": 17309090, "size": 1670, }, "platform": { @@ -59964,47 +59816,47 @@ exports[`node_module collectors > yarn ms 2`] = ` "browser": { "files": { "default-service-name.js": { - "offset": 17533160, + "offset": 17310750, "size": 730, }, "default-service-name.js.map": { - "offset": 17533890, + "offset": 17311480, "size": 970, }, "index.js": { - "offset": 17534850, + "offset": 17312440, "size": 700, }, "index.js.map": { - "offset": 17535550, + "offset": 17313140, "size": 910, }, }, }, "index.js": { - "offset": 17536460, + "offset": 17314040, "size": 690, }, "index.js.map": { - "offset": 17537140, + "offset": 17314730, "size": 880, }, "node": { "files": { "default-service-name.js": { - "offset": 17538020, + "offset": 17315600, "size": 750, }, "default-service-name.js.map": { - "offset": 17538760, + "offset": 17316350, "size": 1000, }, "index.js": { - "offset": 17539750, + "offset": 17317340, "size": 700, }, "index.js.map": { - "offset": 17540450, + "offset": 17318040, "size": 900, }, }, @@ -60012,27 +59864,27 @@ exports[`node_module collectors > yarn ms 2`] = ` }, }, "types.js": { - "offset": 17541350, + "offset": 17318940, "size": 650, }, "types.js.map": { - "offset": 17542000, + "offset": 17319590, "size": 1620, }, "utils.js": { - "offset": 17543620, + "offset": 17321210, "size": 780, }, "utils.js.map": { - "offset": 17544400, + "offset": 17321980, "size": 1110, }, "version.js": { - "offset": 17545500, + "offset": 17323090, "size": 740, }, "version.js.map": { - "offset": 17546230, + "offset": 17323820, "size": 930, }, }, @@ -60040,93 +59892,93 @@ exports[`node_module collectors > yarn ms 2`] = ` "esnext": { "files": { "IResource.js": { - "offset": 17547160, + "offset": 17324750, "size": 660, }, "IResource.js.map": { - "offset": 17547820, + "offset": 17325410, "size": 2090, }, "Resource.js": { - "offset": 17549900, + "offset": 17327490, "size": 4760, }, "Resource.js.map": { - "offset": 17554660, + "offset": 17332240, "size": 7750, }, "config.js": { - "offset": 17562400, + "offset": 17339990, "size": 660, }, "config.js.map": { - "offset": 17563050, + "offset": 17340640, "size": 1040, }, "detect-resources.js": { - "offset": 17564080, + "offset": 17341670, "size": 4260, }, "detect-resources.js.map": { - "offset": 17568330, + "offset": 17345920, "size": 7180, }, "detectors": { "files": { "BrowserDetector.js": { - "offset": 17575510, + "offset": 17353100, "size": 970, }, "BrowserDetector.js.map": { - "offset": 17576480, + "offset": 17354070, "size": 1570, }, "BrowserDetectorSync.js": { - "offset": 17578050, + "offset": 17355630, "size": 2670, }, "BrowserDetectorSync.js.map": { - "offset": 17580710, + "offset": 17358300, "size": 3940, }, "EnvDetector.js": { - "offset": 17584640, + "offset": 17362230, "size": 1280, }, "EnvDetector.js.map": { - "offset": 17585920, + "offset": 17363500, "size": 1880, }, "EnvDetectorSync.js": { - "offset": 17587790, + "offset": 17365380, "size": 5470, }, "EnvDetectorSync.js.map": { - "offset": 17593250, + "offset": 17370840, "size": 8430, }, "NoopDetector.js": { - "offset": 17601680, + "offset": 17379270, "size": 860, }, "NoopDetector.js.map": { - "offset": 17602540, + "offset": 17380120, "size": 1350, }, "NoopDetectorSync.js": { - "offset": 17603880, + "offset": 17381470, "size": 840, }, "NoopDetectorSync.js.map": { - "offset": 17604710, + "offset": 17382300, "size": 1310, }, "index.js": { - "offset": 17606020, + "offset": 17383600, "size": 1010, }, "index.js.map": { - "offset": 17607030, + "offset": 17384610, "size": 1470, }, "platform": { @@ -60134,211 +59986,211 @@ exports[`node_module collectors > yarn ms 2`] = ` "browser": { "files": { "HostDetector.js": { - "offset": 17608490, + "offset": 17386080, "size": 740, }, "HostDetector.js.map": { - "offset": 17609230, + "offset": 17386820, "size": 1010, }, "HostDetectorSync.js": { - "offset": 17610240, + "offset": 17387830, "size": 760, }, "HostDetectorSync.js.map": { - "offset": 17611000, + "offset": 17388590, "size": 1040, }, "OSDetector.js": { - "offset": 17612030, + "offset": 17389620, "size": 740, }, "OSDetector.js.map": { - "offset": 17612770, + "offset": 17390360, "size": 1000, }, "OSDetectorSync.js": { - "offset": 17613770, + "offset": 17391360, "size": 760, }, "OSDetectorSync.js.map": { - "offset": 17614520, + "offset": 17392110, "size": 1030, }, "ProcessDetector.js": { - "offset": 17615550, + "offset": 17393140, "size": 750, }, "ProcessDetector.js.map": { - "offset": 17616300, + "offset": 17393890, "size": 1020, }, "ProcessDetectorSync.js": { - "offset": 17617310, + "offset": 17394900, "size": 760, }, "ProcessDetectorSync.js.map": { - "offset": 17618070, + "offset": 17395650, "size": 1030, }, "ServiceInstanceIdDetectorSync.js": { - "offset": 17619090, + "offset": 17396680, "size": 810, }, "ServiceInstanceIdDetectorSync.js.map": { - "offset": 17619900, + "offset": 17397490, "size": 1120, }, "index.js": { - "offset": 17621020, + "offset": 17398610, "size": 1030, }, "index.js.map": { - "offset": 17622050, + "offset": 17399640, "size": 1520, }, }, }, "index.js": { - "offset": 17623560, + "offset": 17401150, "size": 800, }, "index.js.map": { - "offset": 17624360, + "offset": 17401940, "size": 1090, }, "node": { "files": { "HostDetector.js": { - "offset": 17625440, + "offset": 17403030, "size": 1030, }, "HostDetector.js.map": { - "offset": 17626460, + "offset": 17404050, "size": 1660, }, "HostDetectorSync.js": { - "offset": 17628120, + "offset": 17405710, "size": 1710, }, "HostDetectorSync.js.map": { - "offset": 17629830, + "offset": 17407420, "size": 2910, }, "OSDetector.js": { - "offset": 17632740, + "offset": 17410330, "size": 1000, }, "OSDetector.js.map": { - "offset": 17633740, + "offset": 17411320, "size": 1630, }, "OSDetectorSync.js": { - "offset": 17635360, + "offset": 17412950, "size": 1330, }, "OSDetectorSync.js.map": { - "offset": 17636690, + "offset": 17414270, "size": 2190, }, "ProcessDetector.js": { - "offset": 17638870, + "offset": 17416460, "size": 1040, }, "ProcessDetector.js.map": { - "offset": 17639910, + "offset": 17417500, "size": 1680, }, "ProcessDetectorSync.js": { - "offset": 17641590, + "offset": 17419170, "size": 2400, }, "ProcessDetectorSync.js.map": { - "offset": 17643980, + "offset": 17421570, "size": 3960, }, "ServiceInstanceIdDetectorSync.js": { - "offset": 17647930, + "offset": 17425520, "size": 1250, }, "ServiceInstanceIdDetectorSync.js.map": { - "offset": 17649180, + "offset": 17426770, "size": 2030, }, "index.js": { - "offset": 17651210, + "offset": 17428800, "size": 1030, }, "index.js.map": { - "offset": 17652240, + "offset": 17429830, "size": 1520, }, "machine-id": { "files": { "execAsync.js": { - "offset": 17653750, + "offset": 17431340, "size": 790, }, "execAsync.js.map": { - "offset": 17654530, + "offset": 17432120, "size": 1130, }, "getMachineId-bsd.js": { - "offset": 17655660, + "offset": 17433240, "size": 1230, }, "getMachineId-bsd.js.map": { - "offset": 17656880, + "offset": 17434470, "size": 2030, }, "getMachineId-darwin.js": { - "offset": 17658910, + "offset": 17436500, "size": 1280, }, "getMachineId-darwin.js.map": { - "offset": 17660180, + "offset": 17437770, "size": 2120, }, "getMachineId-linux.js": { - "offset": 17662300, + "offset": 17439890, "size": 1120, }, "getMachineId-linux.js.map": { - "offset": 17663410, + "offset": 17441000, "size": 1770, }, "getMachineId-unsupported.js": { - "offset": 17665180, + "offset": 17442770, "size": 830, }, "getMachineId-unsupported.js.map": { - "offset": 17666010, + "offset": 17443590, "size": 1200, }, "getMachineId-win.js": { - "offset": 17667200, + "offset": 17444790, "size": 1410, }, "getMachineId-win.js.map": { - "offset": 17668610, + "offset": 17446190, "size": 2310, }, "getMachineId.js": { - "offset": 17670910, + "offset": 17448500, "size": 1220, }, "getMachineId.js.map": { - "offset": 17672120, + "offset": 17449710, "size": 1960, }, }, }, "utils.js": { - "offset": 17674070, + "offset": 17451660, "size": 1590, }, "utils.js.map": { - "offset": 17675660, + "offset": 17453250, "size": 2200, }, }, @@ -60348,11 +60200,11 @@ exports[`node_module collectors > yarn ms 2`] = ` }, }, "index.js": { - "offset": 17677860, + "offset": 17455450, "size": 1030, }, "index.js.map": { - "offset": 17678890, + "offset": 17456480, "size": 1670, }, "platform": { @@ -60360,47 +60212,47 @@ exports[`node_module collectors > yarn ms 2`] = ` "browser": { "files": { "default-service-name.js": { - "offset": 17680550, + "offset": 17458140, "size": 730, }, "default-service-name.js.map": { - "offset": 17681280, + "offset": 17458870, "size": 970, }, "index.js": { - "offset": 17682240, + "offset": 17459830, "size": 700, }, "index.js.map": { - "offset": 17682940, + "offset": 17460530, "size": 910, }, }, }, "index.js": { - "offset": 17683850, + "offset": 17461430, "size": 690, }, "index.js.map": { - "offset": 17684530, + "offset": 17462120, "size": 880, }, "node": { "files": { "default-service-name.js": { - "offset": 17685410, + "offset": 17462990, "size": 750, }, "default-service-name.js.map": { - "offset": 17686150, + "offset": 17463740, "size": 1000, }, "index.js": { - "offset": 17687150, + "offset": 17464730, "size": 700, }, "index.js.map": { - "offset": 17687850, + "offset": 17465430, "size": 900, }, }, @@ -60408,27 +60260,27 @@ exports[`node_module collectors > yarn ms 2`] = ` }, }, "types.js": { - "offset": 17688750, + "offset": 17466330, "size": 650, }, "types.js.map": { - "offset": 17689400, + "offset": 17466980, "size": 1620, }, "utils.js": { - "offset": 17691020, + "offset": 17468600, "size": 770, }, "utils.js.map": { - "offset": 17691790, + "offset": 17469370, "size": 1120, }, "version.js": { - "offset": 17692900, + "offset": 17470490, "size": 740, }, "version.js.map": { - "offset": 17693640, + "offset": 17471230, "size": 930, }, }, @@ -60436,93 +60288,93 @@ exports[`node_module collectors > yarn ms 2`] = ` "src": { "files": { "IResource.js": { - "offset": 17694570, + "offset": 17472150, "size": 720, }, "IResource.js.map": { - "offset": 17695290, + "offset": 17472870, "size": 2090, }, "Resource.js": { - "offset": 17697370, + "offset": 17474960, "size": 4990, }, "Resource.js.map": { - "offset": 17702350, + "offset": 17479940, "size": 7600, }, "config.js": { - "offset": 17709950, + "offset": 17487540, "size": 720, }, "config.js.map": { - "offset": 17710660, + "offset": 17488250, "size": 1040, }, "detect-resources.js": { - "offset": 17711700, + "offset": 17489280, "size": 4580, }, "detect-resources.js.map": { - "offset": 17716270, + "offset": 17493860, "size": 7140, }, "detectors": { "files": { "BrowserDetector.js": { - "offset": 17723410, + "offset": 17501000, "size": 1100, }, "BrowserDetector.js.map": { - "offset": 17724510, + "offset": 17502100, "size": 1530, }, "BrowserDetectorSync.js": { - "offset": 17726040, + "offset": 17503630, "size": 2830, }, "BrowserDetectorSync.js.map": { - "offset": 17728860, + "offset": 17506450, "size": 3810, }, "EnvDetector.js": { - "offset": 17732670, + "offset": 17510260, "size": 1400, }, "EnvDetector.js.map": { - "offset": 17734070, + "offset": 17511660, "size": 1840, }, "EnvDetectorSync.js": { - "offset": 17735900, + "offset": 17513490, "size": 5630, }, "EnvDetectorSync.js.map": { - "offset": 17741530, + "offset": 17519120, "size": 8310, }, "NoopDetector.js": { - "offset": 17749840, + "offset": 17527420, "size": 1040, }, "NoopDetector.js.map": { - "offset": 17750870, + "offset": 17528460, "size": 1320, }, "NoopDetectorSync.js": { - "offset": 17752180, + "offset": 17529770, "size": 1020, }, "NoopDetectorSync.js.map": { - "offset": 17753200, + "offset": 17530790, "size": 1280, }, "index.js": { - "offset": 17754480, + "offset": 17532070, "size": 2760, }, "index.js.map": { - "offset": 17757230, + "offset": 17534820, "size": 1500, }, "platform": { @@ -60530,211 +60382,211 @@ exports[`node_module collectors > yarn ms 2`] = ` "browser": { "files": { "HostDetector.js": { - "offset": 17758730, + "offset": 17536320, "size": 860, }, "HostDetector.js.map": { - "offset": 17759590, + "offset": 17537180, "size": 970, }, "HostDetectorSync.js": { - "offset": 17760560, + "offset": 17538150, "size": 890, }, "HostDetectorSync.js.map": { - "offset": 17761450, + "offset": 17539040, "size": 1000, }, "OSDetector.js": { - "offset": 17762450, + "offset": 17540030, "size": 860, }, "OSDetector.js.map": { - "offset": 17763300, + "offset": 17540890, "size": 970, }, "OSDetectorSync.js": { - "offset": 17764260, + "offset": 17541850, "size": 890, }, "OSDetectorSync.js.map": { - "offset": 17765150, + "offset": 17542730, "size": 990, }, "ProcessDetector.js": { - "offset": 17766140, + "offset": 17543720, "size": 870, }, "ProcessDetector.js.map": { - "offset": 17767000, + "offset": 17544590, "size": 980, }, "ProcessDetectorSync.js": { - "offset": 17767980, + "offset": 17545570, "size": 890, }, "ProcessDetectorSync.js.map": { - "offset": 17768860, + "offset": 17546450, "size": 1000, }, "ServiceInstanceIdDetectorSync.js": { - "offset": 17769860, + "offset": 17547450, "size": 960, }, "ServiceInstanceIdDetectorSync.js.map": { - "offset": 17770810, + "offset": 17548400, "size": 1080, }, "index.js": { - "offset": 17771880, + "offset": 17549470, "size": 2310, }, "index.js.map": { - "offset": 17774190, + "offset": 17551780, "size": 1470, }, }, }, "index.js": { - "offset": 17775650, + "offset": 17553240, "size": 1850, }, "index.js.map": { - "offset": 17777500, + "offset": 17555090, "size": 1150, }, "node": { "files": { "HostDetector.js": { - "offset": 17778650, + "offset": 17556240, "size": 1150, }, "HostDetector.js.map": { - "offset": 17779790, + "offset": 17557380, "size": 1620, }, "HostDetectorSync.js": { - "offset": 17781410, + "offset": 17559000, "size": 1900, }, "HostDetectorSync.js.map": { - "offset": 17783310, + "offset": 17560900, "size": 2740, }, "OSDetector.js": { - "offset": 17786050, + "offset": 17563640, "size": 1120, }, "OSDetector.js.map": { - "offset": 17787170, + "offset": 17564760, "size": 1600, }, "OSDetectorSync.js": { - "offset": 17788760, + "offset": 17566350, "size": 1490, }, "OSDetectorSync.js.map": { - "offset": 17790240, + "offset": 17567830, "size": 2060, }, "ProcessDetector.js": { - "offset": 17792290, + "offset": 17569880, "size": 1170, }, "ProcessDetector.js.map": { - "offset": 17793460, + "offset": 17571050, "size": 1640, }, "ProcessDetectorSync.js": { - "offset": 17795100, + "offset": 17572690, "size": 2460, }, "ProcessDetectorSync.js.map": { - "offset": 17797560, + "offset": 17575150, "size": 3730, }, "ServiceInstanceIdDetectorSync.js": { - "offset": 17801290, + "offset": 17578870, "size": 1420, }, "ServiceInstanceIdDetectorSync.js.map": { - "offset": 17802700, + "offset": 17580280, "size": 1940, }, "index.js": { - "offset": 17804630, + "offset": 17582220, "size": 2310, }, "index.js.map": { - "offset": 17806940, + "offset": 17584530, "size": 1460, }, "machine-id": { "files": { "execAsync.js": { - "offset": 17808400, + "offset": 17585990, "size": 890, }, "execAsync.js.map": { - "offset": 17809280, + "offset": 17586870, "size": 1070, }, "getMachineId-bsd.js": { - "offset": 17810350, + "offset": 17587940, "size": 1410, }, "getMachineId-bsd.js.map": { - "offset": 17811750, + "offset": 17589340, "size": 1950, }, "getMachineId-darwin.js": { - "offset": 17813690, + "offset": 17591280, "size": 1450, }, "getMachineId-darwin.js.map": { - "offset": 17815130, + "offset": 17592720, "size": 2070, }, "getMachineId-linux.js": { - "offset": 17817200, + "offset": 17594790, "size": 1270, }, "getMachineId-linux.js.map": { - "offset": 17818460, + "offset": 17596050, "size": 1710, }, "getMachineId-unsupported.js": { - "offset": 17820170, + "offset": 17597760, "size": 970, }, "getMachineId-unsupported.js.map": { - "offset": 17821140, + "offset": 17598730, "size": 1170, }, "getMachineId-win.js": { - "offset": 17822310, + "offset": 17599900, "size": 1580, }, "getMachineId-win.js.map": { - "offset": 17823880, + "offset": 17601470, "size": 2240, }, "getMachineId.js": { - "offset": 17826110, + "offset": 17603700, "size": 1500, }, "getMachineId.js.map": { - "offset": 17827610, + "offset": 17605200, "size": 1930, }, }, }, "utils.js": { - "offset": 17829540, + "offset": 17607130, "size": 1790, }, "utils.js.map": { - "offset": 17831320, + "offset": 17608910, "size": 2230, }, }, @@ -60744,11 +60596,11 @@ exports[`node_module collectors > yarn ms 2`] = ` }, }, "index.js": { - "offset": 17833550, + "offset": 17611140, "size": 3300, }, "index.js.map": { - "offset": 17836850, + "offset": 17614430, "size": 1760, }, "platform": { @@ -60756,47 +60608,47 @@ exports[`node_module collectors > yarn ms 2`] = ` "browser": { "files": { "default-service-name.js": { - "offset": 17838610, + "offset": 17616190, "size": 890, }, "default-service-name.js.map": { - "offset": 17839490, + "offset": 17617070, "size": 980, }, "index.js": { - "offset": 17840460, + "offset": 17618050, "size": 970, }, "index.js.map": { - "offset": 17841430, + "offset": 17619010, "size": 900, }, }, }, "index.js": { - "offset": 17842320, + "offset": 17619910, "size": 920, }, "index.js.map": { - "offset": 17843240, + "offset": 17620830, "size": 880, }, "node": { "files": { "default-service-name.js": { - "offset": 17844110, + "offset": 17621700, "size": 900, }, "default-service-name.js.map": { - "offset": 17845010, + "offset": 17622600, "size": 1010, }, "index.js": { - "offset": 17846020, + "offset": 17623610, "size": 970, }, "index.js.map": { - "offset": 17846990, + "offset": 17624570, "size": 900, }, }, @@ -60804,27 +60656,27 @@ exports[`node_module collectors > yarn ms 2`] = ` }, }, "types.js": { - "offset": 17847880, + "offset": 17625470, "size": 720, }, "types.js.map": { - "offset": 17848600, + "offset": 17626190, "size": 1620, }, "utils.js": { - "offset": 17850220, + "offset": 17627810, "size": 920, }, "utils.js.map": { - "offset": 17851130, + "offset": 17628720, "size": 1140, }, "version.js": { - "offset": 17852260, + "offset": 17629850, "size": 840, }, "version.js.map": { - "offset": 17853090, + "offset": 17630680, "size": 930, }, }, @@ -60838,7 +60690,7 @@ exports[`node_module collectors > yarn ms 2`] = ` "semantic-conventions": { "files": { "LICENSE": { - "offset": 17856560, + "offset": 17634150, "size": 11360, }, "build": { @@ -60846,45 +60698,45 @@ exports[`node_module collectors > yarn ms 2`] = ` "esm": { "files": { "experimental_attributes.js": { - "offset": 17867920, + "offset": 17645500, "size": 290170, }, "experimental_attributes.js.map": { - "offset": 18158080, + "offset": 17935670, "size": 369690, }, "experimental_metrics.js": { - "offset": 18527770, + "offset": 18305360, "size": 65740, }, "experimental_metrics.js.map": { - "offset": 18593510, + "offset": 18371100, "size": 79630, }, "index-incubating.js": { - "offset": 18673140, + "offset": 18450730, "size": 940, }, "index-incubating.js.map": { - "offset": 18674070, + "offset": 18451660, "size": 1210, }, "index.js": { - "offset": 18675280, + "offset": 18452870, "size": 1010, }, "index.js.map": { - "offset": 18676290, + "offset": 18453880, "size": 1290, }, "internal": { "files": { "utils.js": { - "offset": 18677570, + "offset": 18455160, "size": 1260, }, "utils.js.map": { - "offset": 18678830, + "offset": 18456420, "size": 1860, }, }, @@ -60892,65 +60744,65 @@ exports[`node_module collectors > yarn ms 2`] = ` "resource": { "files": { "SemanticResourceAttributes.js": { - "offset": 18680690, + "offset": 18458270, "size": 66280, }, "SemanticResourceAttributes.js.map": { - "offset": 18746960, + "offset": 18524550, "size": 106200, }, "index.js": { - "offset": 18853160, + "offset": 18630740, "size": 860, }, "index.js.map": { - "offset": 18854020, + "offset": 18631600, "size": 1050, }, }, }, "stable_attributes.js": { - "offset": 18855060, + "offset": 18632650, "size": 29260, }, "stable_attributes.js.map": { - "offset": 18884320, + "offset": 18661910, "size": 38280, }, "stable_metrics.js": { - "offset": 18922590, + "offset": 18700180, "size": 7680, }, "stable_metrics.js.map": { - "offset": 18930270, + "offset": 18707860, "size": 10240, }, "trace": { "files": { "SemanticAttributes.js": { - "offset": 18940500, + "offset": 18718090, "size": 141700, }, "SemanticAttributes.js.map": { - "offset": 19082200, + "offset": 18859790, "size": 215320, }, "index.js": { - "offset": 19297520, + "offset": 19075100, "size": 860, }, "index.js.map": { - "offset": 19298370, + "offset": 19075960, "size": 1040, }, }, }, "version.js": { - "offset": 19299400, + "offset": 19076990, "size": 740, }, "version.js.map": { - "offset": 19300140, + "offset": 19077730, "size": 930, }, }, @@ -60958,45 +60810,45 @@ exports[`node_module collectors > yarn ms 2`] = ` "esnext": { "files": { "experimental_attributes.js": { - "offset": 19301070, + "offset": 19078650, "size": 291920, }, "experimental_attributes.js.map": { - "offset": 19592980, + "offset": 19370570, "size": 369670, }, "experimental_metrics.js": { - "offset": 19962640, + "offset": 19740230, "size": 66080, }, "experimental_metrics.js.map": { - "offset": 20028720, + "offset": 19806300, "size": 79630, }, "index-incubating.js": { - "offset": 20108350, + "offset": 19885930, "size": 940, }, "index-incubating.js.map": { - "offset": 20109280, + "offset": 19886870, "size": 1210, }, "index.js": { - "offset": 20110490, + "offset": 19888070, "size": 1010, }, "index.js.map": { - "offset": 20111500, + "offset": 19889080, "size": 1290, }, "internal": { "files": { "utils.js": { - "offset": 20112780, + "offset": 19890370, "size": 1260, }, "utils.js.map": { - "offset": 20114040, + "offset": 19891630, "size": 1860, }, }, @@ -61004,65 +60856,65 @@ exports[`node_module collectors > yarn ms 2`] = ` "resource": { "files": { "SemanticResourceAttributes.js": { - "offset": 20115900, + "offset": 19893480, "size": 66820, }, "SemanticResourceAttributes.js.map": { - "offset": 20182720, + "offset": 19960300, "size": 106200, }, "index.js": { - "offset": 20288910, + "offset": 20066500, "size": 860, }, "index.js.map": { - "offset": 20289770, + "offset": 20067360, "size": 1050, }, }, }, "stable_attributes.js": { - "offset": 20290820, + "offset": 20068400, "size": 29450, }, "stable_attributes.js.map": { - "offset": 20320260, + "offset": 20097850, "size": 38270, }, "stable_metrics.js": { - "offset": 20358520, + "offset": 20136110, "size": 7740, }, "stable_metrics.js.map": { - "offset": 20366260, + "offset": 20143850, "size": 10240, }, "trace": { "files": { "SemanticAttributes.js": { - "offset": 20376500, + "offset": 20154090, "size": 142770, }, "SemanticAttributes.js.map": { - "offset": 20519260, + "offset": 20296850, "size": 215320, }, "index.js": { - "offset": 20734570, + "offset": 20512160, "size": 860, }, "index.js.map": { - "offset": 20735430, + "offset": 20513010, "size": 1040, }, }, }, "version.js": { - "offset": 20736460, + "offset": 20514050, "size": 740, }, "version.js.map": { - "offset": 20737200, + "offset": 20514790, "size": 930, }, }, @@ -61070,45 +60922,45 @@ exports[`node_module collectors > yarn ms 2`] = ` "src": { "files": { "experimental_attributes.js": { - "offset": 20738130, + "offset": 20515720, "size": 326160, }, "experimental_attributes.js.map": { - "offset": 21064290, + "offset": 20841870, "size": 360270, }, "experimental_metrics.js": { - "offset": 21424550, + "offset": 21202140, "size": 72350, }, "experimental_metrics.js.map": { - "offset": 21496900, + "offset": 21274490, "size": 77960, }, "index-incubating.js": { - "offset": 21574850, + "offset": 21352440, "size": 1600, }, "index-incubating.js.map": { - "offset": 21576450, + "offset": 21354040, "size": 1180, }, "index.js": { - "offset": 21577630, + "offset": 21355210, "size": 1680, }, "index.js.map": { - "offset": 21579300, + "offset": 21356880, "size": 1270, }, "internal": { "files": { "utils.js": { - "offset": 21580560, + "offset": 21358150, "size": 1410, }, "utils.js.map": { - "offset": 21581960, + "offset": 21359550, "size": 1870, }, }, @@ -61116,65 +60968,65 @@ exports[`node_module collectors > yarn ms 2`] = ` "resource": { "files": { "SemanticResourceAttributes.js": { - "offset": 21583830, + "offset": 21361420, "size": 71670, }, "SemanticResourceAttributes.js.map": { - "offset": 21655490, + "offset": 21433080, "size": 104820, }, "index.js": { - "offset": 21760310, + "offset": 21537900, "size": 1470, }, "index.js.map": { - "offset": 21761780, + "offset": 21539370, "size": 1050, }, }, }, "stable_attributes.js": { - "offset": 21762830, + "offset": 21540420, "size": 33570, }, "stable_attributes.js.map": { - "offset": 21796400, + "offset": 21573990, "size": 37230, }, "stable_metrics.js": { - "offset": 21833620, + "offset": 21611210, "size": 9060, }, "stable_metrics.js.map": { - "offset": 21842680, + "offset": 21620260, "size": 9930, }, "trace": { "files": { "SemanticAttributes.js": { - "offset": 21852600, + "offset": 21630190, "size": 152600, }, "SemanticAttributes.js.map": { - "offset": 22005200, + "offset": 21782780, "size": 212640, }, "index.js": { - "offset": 22217830, + "offset": 21995420, "size": 1460, }, "index.js.map": { - "offset": 22219290, + "offset": 21996880, "size": 1040, }, }, }, "version.js": { - "offset": 22220330, + "offset": 21997920, "size": 840, }, "version.js.map": { - "offset": 22221160, + "offset": 21998750, "size": 930, }, }, @@ -61182,7 +61034,7 @@ exports[`node_module collectors > yarn ms 2`] = ` }, }, "package.json": { - "offset": 22222080, + "offset": 21999670, "size": 1960, }, }, @@ -61192,7 +61044,7 @@ exports[`node_module collectors > yarn ms 2`] = ` }, }, "package.json": { - "offset": 17854020, + "offset": 17631600, "size": 2550, }, }, @@ -61200,7 +61052,7 @@ exports[`node_module collectors > yarn ms 2`] = ` "sdk-trace-base": { "files": { "LICENSE": { - "offset": 22224040, + "offset": 22001630, "size": 11360, }, "build": { @@ -61208,151 +61060,151 @@ exports[`node_module collectors > yarn ms 2`] = ` "esm": { "files": { "BasicTracerProvider.js": { - "offset": 22235400, + "offset": 22012990, "size": 10650, }, "BasicTracerProvider.js.map": { - "offset": 22246040, + "offset": 22023630, "size": 15280, }, "IdGenerator.js": { - "offset": 22261310, + "offset": 22038900, "size": 660, }, "IdGenerator.js.map": { - "offset": 22261970, + "offset": 22039560, "size": 1100, }, "MultiSpanProcessor.js": { - "offset": 22263070, + "offset": 22040660, "size": 4350, }, "MultiSpanProcessor.js.map": { - "offset": 22267420, + "offset": 22045000, "size": 3880, }, "Sampler.js": { - "offset": 22271290, + "offset": 22048880, "size": 1450, }, "Sampler.js.map": { - "offset": 22272730, + "offset": 22050320, "size": 3790, }, "Span.js": { - "offset": 22276520, + "offset": 22054100, "size": 14830, }, "Span.js.map": { - "offset": 22291340, + "offset": 22068930, "size": 21040, }, "SpanProcessor.js": { - "offset": 22312380, + "offset": 22089960, "size": 660, }, "SpanProcessor.js.map": { - "offset": 22313030, + "offset": 22090620, "size": 1800, }, "TimedEvent.js": { - "offset": 22314830, + "offset": 22092420, "size": 660, }, "TimedEvent.js.map": { - "offset": 22315490, + "offset": 22093070, "size": 1240, }, "Tracer.js": { - "offset": 22316720, + "offset": 22094310, "size": 5910, }, "Tracer.js.map": { - "offset": 22322620, + "offset": 22100210, "size": 12280, }, "config.js": { - "offset": 22334900, + "offset": 22112490, "size": 4710, }, "config.js.map": { - "offset": 22339600, + "offset": 22117190, "size": 7130, }, "enums.js": { - "offset": 22346730, + "offset": 22124310, "size": 710, }, "enums.js.map": { - "offset": 22347440, + "offset": 22125020, "size": 910, }, "export": { "files": { "BatchSpanProcessorBase.js": { - "offset": 22348340, + "offset": 22125930, "size": 9360, }, "BatchSpanProcessorBase.js.map": { - "offset": 22357700, + "offset": 22135290, "size": 14310, }, "ConsoleSpanExporter.js": { - "offset": 22372000, + "offset": 22149590, "size": 3960, }, "ConsoleSpanExporter.js.map": { - "offset": 22375960, + "offset": 22153550, "size": 4470, }, "InMemorySpanExporter.js": { - "offset": 22380420, + "offset": 22158010, "size": 3170, }, "InMemorySpanExporter.js.map": { - "offset": 22383590, + "offset": 22161170, "size": 3130, }, "NoopSpanProcessor.js": { - "offset": 22386710, + "offset": 22164300, "size": 1190, }, "NoopSpanProcessor.js.map": { - "offset": 22387900, + "offset": 22165490, "size": 1600, }, "ReadableSpan.js": { - "offset": 22389500, + "offset": 22167090, "size": 660, }, "ReadableSpan.js.map": { - "offset": 22390160, + "offset": 22167740, "size": 1730, }, "SimpleSpanProcessor.js": { - "offset": 22391880, + "offset": 22169470, "size": 6890, }, "SimpleSpanProcessor.js.map": { - "offset": 22398760, + "offset": 22176350, "size": 5850, }, "SpanExporter.js": { - "offset": 22404610, + "offset": 22182190, "size": 660, }, "SpanExporter.js.map": { - "offset": 22405260, + "offset": 22182850, "size": 1540, }, }, }, "index.js": { - "offset": 22406790, + "offset": 22184380, "size": 1440, }, "index.js.map": { - "offset": 22408230, + "offset": 22185820, "size": 2670, }, "platform": { @@ -61360,71 +61212,71 @@ exports[`node_module collectors > yarn ms 2`] = ` "browser": { "files": { "RandomIdGenerator.js": { - "offset": 22410900, + "offset": 22188490, "size": 1830, }, "RandomIdGenerator.js.map": { - "offset": 22412720, + "offset": 22190310, "size": 2670, }, "export": { "files": { "BatchSpanProcessor.js": { - "offset": 22415390, + "offset": 22192970, "size": 3380, }, "BatchSpanProcessor.js.map": { - "offset": 22418760, + "offset": 22196350, "size": 3940, }, }, }, "index.js": { - "offset": 22422700, + "offset": 22200290, "size": 770, }, "index.js.map": { - "offset": 22423460, + "offset": 22201050, "size": 1020, }, }, }, "index.js": { - "offset": 22424480, + "offset": 22202060, "size": 710, }, "index.js.map": { - "offset": 22425180, + "offset": 22202770, "size": 910, }, "node": { "files": { "RandomIdGenerator.js": { - "offset": 22426090, + "offset": 22203670, "size": 2170, }, "RandomIdGenerator.js.map": { - "offset": 22428250, + "offset": 22205840, "size": 3090, }, "export": { "files": { "BatchSpanProcessor.js": { - "offset": 22431340, + "offset": 22208930, "size": 1870, }, "BatchSpanProcessor.js.map": { - "offset": 22433200, + "offset": 22210790, "size": 1260, }, }, }, "index.js": { - "offset": 22434460, + "offset": 22212040, "size": 770, }, "index.js.map": { - "offset": 22435220, + "offset": 22212810, "size": 1010, }, }, @@ -61434,61 +61286,61 @@ exports[`node_module collectors > yarn ms 2`] = ` "sampler": { "files": { "AlwaysOffSampler.js": { - "offset": 22436230, + "offset": 22213820, "size": 1140, }, "AlwaysOffSampler.js.map": { - "offset": 22437360, + "offset": 22214950, "size": 1390, }, "AlwaysOnSampler.js": { - "offset": 22438750, + "offset": 22216340, "size": 1140, }, "AlwaysOnSampler.js.map": { - "offset": 22439890, + "offset": 22217480, "size": 1400, }, "ParentBasedSampler.js": { - "offset": 22441280, + "offset": 22218870, "size": 3450, }, "ParentBasedSampler.js.map": { - "offset": 22444730, + "offset": 22222320, "size": 6500, }, "TraceIdRatioBasedSampler.js": { - "offset": 22451220, + "offset": 22228810, "size": 2250, }, "TraceIdRatioBasedSampler.js.map": { - "offset": 22453470, + "offset": 22231050, "size": 3440, }, }, }, "types.js": { - "offset": 22456900, + "offset": 22234480, "size": 650, }, "types.js.map": { - "offset": 22457550, + "offset": 22235130, "size": 4490, }, "utility.js": { - "offset": 22462040, + "offset": 22239620, "size": 3260, }, "utility.js.map": { - "offset": 22465290, + "offset": 22242880, "size": 4530, }, "version.js": { - "offset": 22469810, + "offset": 22247400, "size": 740, }, "version.js.map": { - "offset": 22470550, + "offset": 22248140, "size": 930, }, }, @@ -61496,151 +61348,151 @@ exports[`node_module collectors > yarn ms 2`] = ` "esnext": { "files": { "BasicTracerProvider.js": { - "offset": 22471480, + "offset": 22249060, "size": 8880, }, "BasicTracerProvider.js.map": { - "offset": 22480350, + "offset": 22257940, "size": 15140, }, "IdGenerator.js": { - "offset": 22495490, + "offset": 22273080, "size": 660, }, "IdGenerator.js.map": { - "offset": 22496150, + "offset": 22273730, "size": 1100, }, "MultiSpanProcessor.js": { - "offset": 22497240, + "offset": 22274830, "size": 2110, }, "MultiSpanProcessor.js.map": { - "offset": 22499350, + "offset": 22276940, "size": 3690, }, "Sampler.js": { - "offset": 22503030, + "offset": 22280620, "size": 1450, }, "Sampler.js.map": { - "offset": 22504480, + "offset": 22282070, "size": 3790, }, "Span.js": { - "offset": 22508260, + "offset": 22285850, "size": 11360, }, "Span.js.map": { - "offset": 22519610, + "offset": 22297200, "size": 20730, }, "SpanProcessor.js": { - "offset": 22540330, + "offset": 22317920, "size": 660, }, "SpanProcessor.js.map": { - "offset": 22540990, + "offset": 22318580, "size": 1800, }, "TimedEvent.js": { - "offset": 22542790, + "offset": 22320380, "size": 660, }, "TimedEvent.js.map": { - "offset": 22543440, + "offset": 22321030, "size": 1240, }, "Tracer.js": { - "offset": 22544680, + "offset": 22322260, "size": 5590, }, "Tracer.js.map": { - "offset": 22550260, + "offset": 22327850, "size": 12190, }, "config.js": { - "offset": 22562440, + "offset": 22340030, "size": 4630, }, "config.js.map": { - "offset": 22567070, + "offset": 22344660, "size": 7110, }, "enums.js": { - "offset": 22574170, + "offset": 22351760, "size": 720, }, "enums.js.map": { - "offset": 22574880, + "offset": 22352470, "size": 910, }, "export": { "files": { "BatchSpanProcessorBase.js": { - "offset": 22575790, + "offset": 22353380, "size": 8480, }, "BatchSpanProcessorBase.js.map": { - "offset": 22584260, + "offset": 22361850, "size": 14290, }, "ConsoleSpanExporter.js": { - "offset": 22598550, + "offset": 22376140, "size": 2720, }, "ConsoleSpanExporter.js.map": { - "offset": 22601260, + "offset": 22378850, "size": 4350, }, "InMemorySpanExporter.js": { - "offset": 22605610, + "offset": 22383200, "size": 1890, }, "InMemorySpanExporter.js.map": { - "offset": 22607490, + "offset": 22385080, "size": 3050, }, "NoopSpanProcessor.js": { - "offset": 22610540, + "offset": 22388120, "size": 910, }, "NoopSpanProcessor.js.map": { - "offset": 22611440, + "offset": 22389020, "size": 1560, }, "ReadableSpan.js": { - "offset": 22612990, + "offset": 22390580, "size": 660, }, "ReadableSpan.js.map": { - "offset": 22613650, + "offset": 22391230, "size": 1730, }, "SimpleSpanProcessor.js": { - "offset": 22615370, + "offset": 22392960, "size": 3340, }, "SimpleSpanProcessor.js.map": { - "offset": 22618700, + "offset": 22396290, "size": 5710, }, "SpanExporter.js": { - "offset": 22624410, + "offset": 22401990, "size": 660, }, "SpanExporter.js.map": { - "offset": 22625060, + "offset": 22402650, "size": 1540, }, }, }, "index.js": { - "offset": 22626590, + "offset": 22404180, "size": 1440, }, "index.js.map": { - "offset": 22628030, + "offset": 22405620, "size": 2670, }, "platform": { @@ -61648,71 +61500,71 @@ exports[`node_module collectors > yarn ms 2`] = ` "browser": { "files": { "RandomIdGenerator.js": { - "offset": 22630700, + "offset": 22408290, "size": 1730, }, "RandomIdGenerator.js.map": { - "offset": 22632430, + "offset": 22410020, "size": 2660, }, "export": { "files": { "BatchSpanProcessor.js": { - "offset": 22635080, + "offset": 22412670, "size": 2280, }, "BatchSpanProcessor.js.map": { - "offset": 22637360, + "offset": 22414950, "size": 3900, }, }, }, "index.js": { - "offset": 22641260, + "offset": 22418850, "size": 770, }, "index.js.map": { - "offset": 22642020, + "offset": 22419610, "size": 1020, }, }, }, "index.js": { - "offset": 22643030, + "offset": 22420620, "size": 710, }, "index.js.map": { - "offset": 22643740, + "offset": 22421330, "size": 910, }, "node": { "files": { "RandomIdGenerator.js": { - "offset": 22644640, + "offset": 22422230, "size": 2070, }, "RandomIdGenerator.js.map": { - "offset": 22646710, + "offset": 22424300, "size": 3070, }, "export": { "files": { "BatchSpanProcessor.js": { - "offset": 22649780, + "offset": 22427360, "size": 830, }, "BatchSpanProcessor.js.map": { - "offset": 22650600, + "offset": 22428190, "size": 1190, }, }, }, "index.js": { - "offset": 22651790, + "offset": 22429370, "size": 770, }, "index.js.map": { - "offset": 22652550, + "offset": 22430140, "size": 1010, }, }, @@ -61722,61 +61574,61 @@ exports[`node_module collectors > yarn ms 2`] = ` "sampler": { "files": { "AlwaysOffSampler.js": { - "offset": 22653560, + "offset": 22431150, "size": 940, }, "AlwaysOffSampler.js.map": { - "offset": 22654490, + "offset": 22432080, "size": 1360, }, "AlwaysOnSampler.js": { - "offset": 22655840, + "offset": 22433430, "size": 940, }, "AlwaysOnSampler.js.map": { - "offset": 22656780, + "offset": 22434370, "size": 1360, }, "ParentBasedSampler.js": { - "offset": 22658140, + "offset": 22435730, "size": 3240, }, "ParentBasedSampler.js.map": { - "offset": 22661380, + "offset": 22438970, "size": 6480, }, "TraceIdRatioBasedSampler.js": { - "offset": 22667850, + "offset": 22445440, "size": 1890, }, "TraceIdRatioBasedSampler.js.map": { - "offset": 22669740, + "offset": 22447320, "size": 3380, }, }, }, "types.js": { - "offset": 22673110, + "offset": 22450700, "size": 650, }, "types.js.map": { - "offset": 22673760, + "offset": 22451350, "size": 4490, }, "utility.js": { - "offset": 22678250, + "offset": 22455840, "size": 3260, }, "utility.js.map": { - "offset": 22681500, + "offset": 22459090, "size": 4520, }, "version.js": { - "offset": 22686020, + "offset": 22463610, "size": 740, }, "version.js.map": { - "offset": 22686760, + "offset": 22464340, "size": 930, }, }, @@ -61784,151 +61636,151 @@ exports[`node_module collectors > yarn ms 2`] = ` "src": { "files": { "BasicTracerProvider.js": { - "offset": 22687690, + "offset": 22465270, "size": 9200, }, "BasicTracerProvider.js.map": { - "offset": 22696880, + "offset": 22474470, "size": 14830, }, "IdGenerator.js": { - "offset": 22711710, + "offset": 22489300, "size": 730, }, "IdGenerator.js.map": { - "offset": 22712440, + "offset": 22490020, "size": 1100, }, "MultiSpanProcessor.js": { - "offset": 22713540, + "offset": 22491120, "size": 2270, }, "MultiSpanProcessor.js.map": { - "offset": 22715800, + "offset": 22493390, "size": 3670, }, "Sampler.js": { - "offset": 22719460, + "offset": 22497050, "size": 1590, }, "Sampler.js.map": { - "offset": 22721050, + "offset": 22498640, "size": 3790, }, "Span.js": { - "offset": 22724840, + "offset": 22502430, "size": 11660, }, "Span.js.map": { - "offset": 22736490, + "offset": 22514080, "size": 20560, }, "SpanProcessor.js": { - "offset": 22757050, + "offset": 22534640, "size": 730, }, "SpanProcessor.js.map": { - "offset": 22757770, + "offset": 22535360, "size": 1800, }, "TimedEvent.js": { - "offset": 22759570, + "offset": 22537160, "size": 730, }, "TimedEvent.js.map": { - "offset": 22760290, + "offset": 22537880, "size": 1240, }, "Tracer.js": { - "offset": 22761520, + "offset": 22539110, "size": 5750, }, "Tracer.js.map": { - "offset": 22767270, + "offset": 22544860, "size": 12070, }, "config.js": { - "offset": 22779340, + "offset": 22556920, "size": 5160, }, "config.js.map": { - "offset": 22784490, + "offset": 22562080, "size": 6940, }, "enums.js": { - "offset": 22791420, + "offset": 22569010, "size": 830, }, "enums.js.map": { - "offset": 22792250, + "offset": 22569830, "size": 900, }, "export": { "files": { "BatchSpanProcessorBase.js": { - "offset": 22793140, + "offset": 22570730, "size": 8660, }, "BatchSpanProcessorBase.js.map": { - "offset": 22801790, + "offset": 22579380, "size": 14190, }, "ConsoleSpanExporter.js": { - "offset": 22815980, + "offset": 22593570, "size": 2880, }, "ConsoleSpanExporter.js.map": { - "offset": 22818850, + "offset": 22596440, "size": 4330, }, "InMemorySpanExporter.js": { - "offset": 22823180, + "offset": 22600760, "size": 2050, }, "InMemorySpanExporter.js.map": { - "offset": 22825230, + "offset": 22602810, "size": 3030, }, "NoopSpanProcessor.js": { - "offset": 22828250, + "offset": 22605840, "size": 1060, }, "NoopSpanProcessor.js.map": { - "offset": 22829300, + "offset": 22606890, "size": 1570, }, "ReadableSpan.js": { - "offset": 22830860, + "offset": 22608450, "size": 730, }, "ReadableSpan.js.map": { - "offset": 22831590, + "offset": 22609180, "size": 1730, }, "SimpleSpanProcessor.js": { - "offset": 22833310, + "offset": 22610900, "size": 3500, }, "SimpleSpanProcessor.js.map": { - "offset": 22836810, + "offset": 22614390, "size": 5640, }, "SpanExporter.js": { - "offset": 22842440, + "offset": 22620030, "size": 730, }, "SpanExporter.js.map": { - "offset": 22843160, + "offset": 22620750, "size": 1540, }, }, }, "index.js": { - "offset": 22844700, + "offset": 22622290, "size": 3980, }, "index.js.map": { - "offset": 22848670, + "offset": 22626260, "size": 2600, }, "platform": { @@ -61936,71 +61788,71 @@ exports[`node_module collectors > yarn ms 2`] = ` "browser": { "files": { "RandomIdGenerator.js": { - "offset": 22851260, + "offset": 22628850, "size": 1890, }, "RandomIdGenerator.js.map": { - "offset": 22853150, + "offset": 22630730, "size": 2670, }, "export": { "files": { "BatchSpanProcessor.js": { - "offset": 22855810, + "offset": 22633400, "size": 2480, }, "BatchSpanProcessor.js.map": { - "offset": 22858280, + "offset": 22635870, "size": 3860, }, }, }, "index.js": { - "offset": 22862140, + "offset": 22639730, "size": 1200, }, "index.js.map": { - "offset": 22863330, + "offset": 22640920, "size": 1000, }, }, }, "index.js": { - "offset": 22864330, + "offset": 22641920, "size": 1080, }, "index.js.map": { - "offset": 22865410, + "offset": 22643000, "size": 920, }, "node": { "files": { "RandomIdGenerator.js": { - "offset": 22866320, + "offset": 22643910, "size": 2220, }, "RandomIdGenerator.js.map": { - "offset": 22868540, + "offset": 22646130, "size": 3080, }, "export": { "files": { "BatchSpanProcessor.js": { - "offset": 22871620, + "offset": 22649210, "size": 1010, }, "BatchSpanProcessor.js.map": { - "offset": 22872620, + "offset": 22650210, "size": 1170, }, }, }, "index.js": { - "offset": 22873790, + "offset": 22651380, "size": 1200, }, "index.js.map": { - "offset": 22874980, + "offset": 22652570, "size": 1000, }, }, @@ -62010,61 +61862,61 @@ exports[`node_module collectors > yarn ms 2`] = ` "sampler": { "files": { "AlwaysOffSampler.js": { - "offset": 22875980, + "offset": 22653570, "size": 1090, }, "AlwaysOffSampler.js.map": { - "offset": 22877070, + "offset": 22654660, "size": 1330, }, "AlwaysOnSampler.js": { - "offset": 22878400, + "offset": 22655990, "size": 1100, }, "AlwaysOnSampler.js.map": { - "offset": 22879490, + "offset": 22657080, "size": 1340, }, "ParentBasedSampler.js": { - "offset": 22880820, + "offset": 22658410, "size": 3490, }, "ParentBasedSampler.js.map": { - "offset": 22884310, + "offset": 22661900, "size": 6360, }, "TraceIdRatioBasedSampler.js": { - "offset": 22890670, + "offset": 22668250, "size": 2080, }, "TraceIdRatioBasedSampler.js.map": { - "offset": 22892740, + "offset": 22670330, "size": 3330, }, }, }, "types.js": { - "offset": 22896070, + "offset": 22673660, "size": 720, }, "types.js.map": { - "offset": 22896790, + "offset": 22674380, "size": 4490, }, "utility.js": { - "offset": 22901280, + "offset": 22678870, "size": 3400, }, "utility.js.map": { - "offset": 22904680, + "offset": 22682260, "size": 4460, }, "version.js": { - "offset": 22909130, + "offset": 22686720, "size": 840, }, "version.js.map": { - "offset": 22909960, + "offset": 22687550, "size": 930, }, }, @@ -62078,7 +61930,7 @@ exports[`node_module collectors > yarn ms 2`] = ` "semantic-conventions": { "files": { "LICENSE": { - "offset": 22912990, + "offset": 22690580, "size": 11360, }, "build": { @@ -62086,45 +61938,45 @@ exports[`node_module collectors > yarn ms 2`] = ` "esm": { "files": { "experimental_attributes.js": { - "offset": 22924350, + "offset": 22701940, "size": 290170, }, "experimental_attributes.js.map": { - "offset": 23214520, + "offset": 22992110, "size": 369690, }, "experimental_metrics.js": { - "offset": 23584210, + "offset": 23361800, "size": 65740, }, "experimental_metrics.js.map": { - "offset": 23649950, + "offset": 23427530, "size": 79630, }, "index-incubating.js": { - "offset": 23729580, + "offset": 23507160, "size": 940, }, "index-incubating.js.map": { - "offset": 23730510, + "offset": 23508100, "size": 1210, }, "index.js": { - "offset": 23731710, + "offset": 23509300, "size": 1010, }, "index.js.map": { - "offset": 23732720, + "offset": 23510310, "size": 1290, }, "internal": { "files": { "utils.js": { - "offset": 23734010, + "offset": 23511600, "size": 1260, }, "utils.js.map": { - "offset": 23735260, + "offset": 23512850, "size": 1860, }, }, @@ -62132,65 +61984,65 @@ exports[`node_module collectors > yarn ms 2`] = ` "resource": { "files": { "SemanticResourceAttributes.js": { - "offset": 23737120, + "offset": 23514710, "size": 66280, }, "SemanticResourceAttributes.js.map": { - "offset": 23803400, + "offset": 23580990, "size": 106200, }, "index.js": { - "offset": 23909590, + "offset": 23687180, "size": 860, }, "index.js.map": { - "offset": 23910450, + "offset": 23688040, "size": 1050, }, }, }, "stable_attributes.js": { - "offset": 23911500, + "offset": 23689090, "size": 29260, }, "stable_attributes.js.map": { - "offset": 23940760, + "offset": 23718340, "size": 38280, }, "stable_metrics.js": { - "offset": 23979030, + "offset": 23756620, "size": 7680, }, "stable_metrics.js.map": { - "offset": 23986700, + "offset": 23764290, "size": 10240, }, "trace": { "files": { "SemanticAttributes.js": { - "offset": 23996940, + "offset": 23774530, "size": 141700, }, "SemanticAttributes.js.map": { - "offset": 24138640, + "offset": 23916220, "size": 215320, }, "index.js": { - "offset": 24353950, + "offset": 24131540, "size": 860, }, "index.js.map": { - "offset": 24354800, + "offset": 24132390, "size": 1040, }, }, }, "version.js": { - "offset": 24355840, + "offset": 24133430, "size": 740, }, "version.js.map": { - "offset": 24356570, + "offset": 24134160, "size": 930, }, }, @@ -62198,45 +62050,45 @@ exports[`node_module collectors > yarn ms 2`] = ` "esnext": { "files": { "experimental_attributes.js": { - "offset": 24357500, + "offset": 24135090, "size": 291920, }, "experimental_attributes.js.map": { - "offset": 24649410, + "offset": 24427000, "size": 369670, }, "experimental_metrics.js": { - "offset": 25019080, + "offset": 24796670, "size": 66080, }, "experimental_metrics.js.map": { - "offset": 25085150, + "offset": 24862740, "size": 79630, }, "index-incubating.js": { - "offset": 25164780, + "offset": 24942370, "size": 940, }, "index-incubating.js.map": { - "offset": 25165720, + "offset": 24943300, "size": 1210, }, "index.js": { - "offset": 25166920, + "offset": 24944510, "size": 1010, }, "index.js.map": { - "offset": 25167930, + "offset": 24945520, "size": 1290, }, "internal": { "files": { "utils.js": { - "offset": 25169220, + "offset": 24946810, "size": 1260, }, "utils.js.map": { - "offset": 25170470, + "offset": 24948060, "size": 1860, }, }, @@ -62244,65 +62096,65 @@ exports[`node_module collectors > yarn ms 2`] = ` "resource": { "files": { "SemanticResourceAttributes.js": { - "offset": 25172330, + "offset": 24949920, "size": 66820, }, "SemanticResourceAttributes.js.map": { - "offset": 25239150, + "offset": 25016740, "size": 106200, }, "index.js": { - "offset": 25345340, + "offset": 25122930, "size": 860, }, "index.js.map": { - "offset": 25346200, + "offset": 25123790, "size": 1050, }, }, }, "stable_attributes.js": { - "offset": 25347250, + "offset": 25124840, "size": 29450, }, "stable_attributes.js.map": { - "offset": 25376690, + "offset": 25154280, "size": 38270, }, "stable_metrics.js": { - "offset": 25414960, + "offset": 25192550, "size": 7740, }, "stable_metrics.js.map": { - "offset": 25422700, + "offset": 25200290, "size": 10240, }, "trace": { "files": { "SemanticAttributes.js": { - "offset": 25432930, + "offset": 25210520, "size": 142770, }, "SemanticAttributes.js.map": { - "offset": 25575700, + "offset": 25353280, "size": 215320, }, "index.js": { - "offset": 25791010, + "offset": 25568600, "size": 860, }, "index.js.map": { - "offset": 25791860, + "offset": 25569450, "size": 1040, }, }, }, "version.js": { - "offset": 25792900, + "offset": 25570490, "size": 740, }, "version.js.map": { - "offset": 25793630, + "offset": 25571220, "size": 930, }, }, @@ -62310,45 +62162,45 @@ exports[`node_module collectors > yarn ms 2`] = ` "src": { "files": { "experimental_attributes.js": { - "offset": 25794560, + "offset": 25572150, "size": 326160, }, "experimental_attributes.js.map": { - "offset": 26120720, + "offset": 25898310, "size": 360270, }, "experimental_metrics.js": { - "offset": 26480990, + "offset": 26258570, "size": 72350, }, "experimental_metrics.js.map": { - "offset": 26553330, + "offset": 26330920, "size": 77960, }, "index-incubating.js": { - "offset": 26631290, + "offset": 26408880, "size": 1600, }, "index-incubating.js.map": { - "offset": 26632880, + "offset": 26410470, "size": 1180, }, "index.js": { - "offset": 26634060, + "offset": 26411650, "size": 1680, }, "index.js.map": { - "offset": 26635730, + "offset": 26413320, "size": 1270, }, "internal": { "files": { "utils.js": { - "offset": 26636990, + "offset": 26414580, "size": 1410, }, "utils.js.map": { - "offset": 26638400, + "offset": 26415980, "size": 1870, }, }, @@ -62356,65 +62208,65 @@ exports[`node_module collectors > yarn ms 2`] = ` "resource": { "files": { "SemanticResourceAttributes.js": { - "offset": 26640260, + "offset": 26417850, "size": 71670, }, "SemanticResourceAttributes.js.map": { - "offset": 26711930, + "offset": 26489520, "size": 104820, }, "index.js": { - "offset": 26816750, + "offset": 26594340, "size": 1470, }, "index.js.map": { - "offset": 26818220, + "offset": 26595800, "size": 1050, }, }, }, "stable_attributes.js": { - "offset": 26819270, + "offset": 26596850, "size": 33570, }, "stable_attributes.js.map": { - "offset": 26852830, + "offset": 26630420, "size": 37230, }, "stable_metrics.js": { - "offset": 26890060, + "offset": 26667640, "size": 9060, }, "stable_metrics.js.map": { - "offset": 26899110, + "offset": 26676700, "size": 9930, }, "trace": { "files": { "SemanticAttributes.js": { - "offset": 26909040, + "offset": 26686630, "size": 152600, }, "SemanticAttributes.js.map": { - "offset": 27061630, + "offset": 26839220, "size": 212640, }, "index.js": { - "offset": 27274270, + "offset": 27051860, "size": 1460, }, "index.js.map": { - "offset": 27275730, + "offset": 27053310, "size": 1040, }, }, }, "version.js": { - "offset": 27276770, + "offset": 27054350, "size": 840, }, "version.js.map": { - "offset": 27277600, + "offset": 27055190, "size": 930, }, }, @@ -62422,7 +62274,7 @@ exports[`node_module collectors > yarn ms 2`] = ` }, }, "package.json": { - "offset": 27278520, + "offset": 27056110, "size": 1960, }, }, @@ -62432,7 +62284,7 @@ exports[`node_module collectors > yarn ms 2`] = ` }, }, "package.json": { - "offset": 22910880, + "offset": 22688470, "size": 2110, }, }, @@ -62440,7 +62292,7 @@ exports[`node_module collectors > yarn ms 2`] = ` "semantic-conventions": { "files": { "LICENSE": { - "offset": 27280480, + "offset": 27058070, "size": 11360, }, "build": { @@ -62448,53 +62300,53 @@ exports[`node_module collectors > yarn ms 2`] = ` "esm": { "files": { "experimental_attributes.js": { - "offset": 27291830, + "offset": 27069420, "size": 656910, }, "experimental_attributes.js.map": { - "offset": 27948740, + "offset": 27726330, "size": 797940, }, "experimental_events.js": { - "offset": 28746680, + "offset": 28524270, "size": 14650, }, "experimental_events.js.map": { - "offset": 28761320, + "offset": 28538910, "size": 16670, }, "experimental_metrics.js": { - "offset": 28777990, + "offset": 28555580, "size": 200190, }, "experimental_metrics.js.map": { - "offset": 28978180, + "offset": 28755770, "size": 235980, }, "index-incubating.js": { - "offset": 29214150, + "offset": 28991740, "size": 1010, }, "index-incubating.js.map": { - "offset": 29215160, + "offset": 28992740, "size": 1330, }, "index.js": { - "offset": 29216480, + "offset": 28994070, "size": 1050, }, "index.js.map": { - "offset": 29217520, + "offset": 28995110, "size": 1350, }, "internal": { "files": { "utils.js": { - "offset": 29218870, + "offset": 28996450, "size": 1260, }, "utils.js.map": { - "offset": 29220120, + "offset": 28997710, "size": 1860, }, }, @@ -62502,73 +62354,73 @@ exports[`node_module collectors > yarn ms 2`] = ` "resource": { "files": { "SemanticResourceAttributes.js": { - "offset": 29221980, + "offset": 28999570, "size": 66820, }, "SemanticResourceAttributes.js.map": { - "offset": 29288800, + "offset": 29066390, "size": 106200, }, "index.js": { - "offset": 29394990, + "offset": 29172580, "size": 860, }, "index.js.map": { - "offset": 29395850, + "offset": 29173440, "size": 1050, }, }, }, "stable_attributes.js": { - "offset": 29396900, + "offset": 29174490, "size": 49080, }, "stable_attributes.js.map": { - "offset": 29445980, + "offset": 29223570, "size": 60480, }, "stable_events.js": { - "offset": 29506460, + "offset": 29284050, "size": 1080, }, "stable_events.js.map": { - "offset": 29507530, + "offset": 29285120, "size": 1330, }, "stable_metrics.js": { - "offset": 29508860, + "offset": 29286450, "size": 15970, }, "stable_metrics.js.map": { - "offset": 29524830, + "offset": 29302420, "size": 19990, }, "trace": { "files": { "SemanticAttributes.js": { - "offset": 29544820, + "offset": 29322400, "size": 142770, }, "SemanticAttributes.js.map": { - "offset": 29687580, + "offset": 29465170, "size": 215320, }, "index.js": { - "offset": 29902890, + "offset": 29680480, "size": 860, }, "index.js.map": { - "offset": 29903740, + "offset": 29681330, "size": 1040, }, }, }, "version.js": { - "offset": 29904780, + "offset": 29682370, "size": 740, }, "version.js.map": { - "offset": 29905520, + "offset": 29683100, "size": 930, }, }, @@ -62576,53 +62428,53 @@ exports[`node_module collectors > yarn ms 2`] = ` "esnext": { "files": { "experimental_attributes.js": { - "offset": 29906450, + "offset": 29684030, "size": 656910, }, "experimental_attributes.js.map": { - "offset": 30563350, + "offset": 30340940, "size": 797940, }, "experimental_events.js": { - "offset": 31361290, + "offset": 31138880, "size": 14650, }, "experimental_events.js.map": { - "offset": 31375930, + "offset": 31153520, "size": 16670, }, "experimental_metrics.js": { - "offset": 31392600, + "offset": 31170190, "size": 200190, }, "experimental_metrics.js.map": { - "offset": 31592790, + "offset": 31370380, "size": 235980, }, "index-incubating.js": { - "offset": 31828760, + "offset": 31606350, "size": 1010, }, "index-incubating.js.map": { - "offset": 31829770, + "offset": 31607350, "size": 1330, }, "index.js": { - "offset": 31831090, + "offset": 31608680, "size": 1050, }, "index.js.map": { - "offset": 31832130, + "offset": 31609720, "size": 1350, }, "internal": { "files": { "utils.js": { - "offset": 31833480, + "offset": 31611070, "size": 1260, }, "utils.js.map": { - "offset": 31834730, + "offset": 31612320, "size": 1860, }, }, @@ -62630,73 +62482,73 @@ exports[`node_module collectors > yarn ms 2`] = ` "resource": { "files": { "SemanticResourceAttributes.js": { - "offset": 31836590, + "offset": 31614180, "size": 66820, }, "SemanticResourceAttributes.js.map": { - "offset": 31903410, + "offset": 31681000, "size": 106200, }, "index.js": { - "offset": 32009600, + "offset": 31787190, "size": 860, }, "index.js.map": { - "offset": 32010460, + "offset": 31788050, "size": 1050, }, }, }, "stable_attributes.js": { - "offset": 32011510, + "offset": 31789100, "size": 49080, }, "stable_attributes.js.map": { - "offset": 32060590, + "offset": 31838180, "size": 60480, }, "stable_events.js": { - "offset": 32121070, + "offset": 31898660, "size": 1080, }, "stable_events.js.map": { - "offset": 32122150, + "offset": 31899730, "size": 1330, }, "stable_metrics.js": { - "offset": 32123470, + "offset": 31901060, "size": 15970, }, "stable_metrics.js.map": { - "offset": 32139440, + "offset": 31917030, "size": 19990, }, "trace": { "files": { "SemanticAttributes.js": { - "offset": 32159430, + "offset": 31937010, "size": 142770, }, "SemanticAttributes.js.map": { - "offset": 32302190, + "offset": 32079780, "size": 215320, }, "index.js": { - "offset": 32517500, + "offset": 32295090, "size": 860, }, "index.js.map": { - "offset": 32518360, + "offset": 32295940, "size": 1040, }, }, }, "version.js": { - "offset": 32519390, + "offset": 32296980, "size": 740, }, "version.js.map": { - "offset": 32520130, + "offset": 32297720, "size": 930, }, }, @@ -62704,53 +62556,53 @@ exports[`node_module collectors > yarn ms 2`] = ` "src": { "files": { "experimental_attributes.js": { - "offset": 32521060, + "offset": 32298640, "size": 723100, }, "experimental_attributes.js.map": { - "offset": 33244150, + "offset": 33021740, "size": 781890, }, "experimental_events.js": { - "offset": 34026040, + "offset": 33803630, "size": 15470, }, "experimental_events.js.map": { - "offset": 34041510, + "offset": 33819090, "size": 16440, }, "experimental_metrics.js": { - "offset": 34057950, + "offset": 33835530, "size": 218240, }, "experimental_metrics.js.map": { - "offset": 34276180, + "offset": 34053770, "size": 231520, }, "index-incubating.js": { - "offset": 34507690, + "offset": 34285280, "size": 1880, }, "index-incubating.js.map": { - "offset": 34509560, + "offset": 34287150, "size": 1290, }, "index.js": { - "offset": 34510840, + "offset": 34288430, "size": 1890, }, "index.js.map": { - "offset": 34512730, + "offset": 34290320, "size": 1320, }, "internal": { "files": { "utils.js": { - "offset": 34514050, + "offset": 34291630, "size": 1410, }, "utils.js.map": { - "offset": 34515450, + "offset": 34293040, "size": 1870, }, }, @@ -62758,73 +62610,73 @@ exports[`node_module collectors > yarn ms 2`] = ` "resource": { "files": { "SemanticResourceAttributes.js": { - "offset": 34517320, + "offset": 34294900, "size": 71670, }, "SemanticResourceAttributes.js.map": { - "offset": 34588980, + "offset": 34366570, "size": 104820, }, "index.js": { - "offset": 34693800, + "offset": 34471390, "size": 1640, }, "index.js.map": { - "offset": 34695440, + "offset": 34473020, "size": 1060, }, }, }, "stable_attributes.js": { - "offset": 34696490, + "offset": 34474080, "size": 54100, }, "stable_attributes.js.map": { - "offset": 34750590, + "offset": 34528180, "size": 59170, }, "stable_events.js": { - "offset": 34809750, + "offset": 34587340, "size": 1180, }, "stable_events.js.map": { - "offset": 34810930, + "offset": 34588520, "size": 1330, }, "stable_metrics.js": { - "offset": 34812250, + "offset": 34589840, "size": 18130, }, "stable_metrics.js.map": { - "offset": 34830380, + "offset": 34607970, "size": 19480, }, "trace": { "files": { "SemanticAttributes.js": { - "offset": 34849860, + "offset": 34627450, "size": 152600, }, "SemanticAttributes.js.map": { - "offset": 35002450, + "offset": 34780040, "size": 212640, }, "index.js": { - "offset": 35215090, + "offset": 34992670, "size": 1630, }, "index.js.map": { - "offset": 35216710, + "offset": 34994300, "size": 1050, }, }, }, "version.js": { - "offset": 35217760, + "offset": 34995340, "size": 840, }, "version.js.map": { - "offset": 35218590, + "offset": 34996180, "size": 930, }, }, @@ -62832,7 +62684,7 @@ exports[`node_module collectors > yarn ms 2`] = ` }, }, "package.json": { - "offset": 35219510, + "offset": 34997100, "size": 1750, }, }, @@ -62840,7 +62692,7 @@ exports[`node_module collectors > yarn ms 2`] = ` "sql-common": { "files": { "LICENSE": { - "offset": 35221250, + "offset": 34998840, "size": 11360, }, "build": { @@ -62848,11 +62700,11 @@ exports[`node_module collectors > yarn ms 2`] = ` "src": { "files": { "index.js": { - "offset": 35232610, + "offset": 35010200, "size": 3070, }, "index.js.map": { - "offset": 35235670, + "offset": 35013260, "size": 4700, }, }, @@ -62860,11 +62712,11 @@ exports[`node_module collectors > yarn ms 2`] = ` "test": { "files": { "sql-common.test.js": { - "offset": 35240370, + "offset": 35017950, "size": 3940, }, "sql-common.test.js.map": { - "offset": 35244300, + "offset": 35021890, "size": 6050, }, }, @@ -62872,7 +62724,7 @@ exports[`node_module collectors > yarn ms 2`] = ` }, }, "package.json": { - "offset": 35250350, + "offset": 35027940, "size": 940, }, }, @@ -62884,49 +62736,49 @@ exports[`node_module collectors > yarn ms 2`] = ` "instrumentation": { "files": { "LICENSE": { - "offset": 35251290, + "offset": 35028880, "size": 11360, }, "dist": { "files": { "ActiveTracingHelper.js": { - "offset": 35262640, + "offset": 35040230, "size": 1140, }, "PrismaInstrumentation.js": { - "offset": 35263780, + "offset": 35041360, "size": 1270, }, "chunk-5J6RGI77.js": { - "offset": 35265040, + "offset": 35042630, "size": 2700, }, "chunk-FTA5RKYX.js": { - "offset": 35267730, + "offset": 35045320, "size": 1170, }, "chunk-KSVJP65B.js": { - "offset": 35268900, + "offset": 35046490, "size": 2700, }, "chunk-O7OBHTYQ.js": { - "offset": 35271590, + "offset": 35049180, "size": 4010, }, "chunk-PVBRMQBZ.js": { - "offset": 35275600, + "offset": 35053190, "size": 1970, }, "chunk-YIAJHTIL.js": { - "offset": 35277560, + "offset": 35055150, "size": 1970, }, "constants.js": { - "offset": 35279530, + "offset": 35057120, "size": 1230, }, "index.js": { - "offset": 35280760, + "offset": 35058350, "size": 1220, }, }, @@ -62938,7 +62790,7 @@ exports[`node_module collectors > yarn ms 2`] = ` "api-logs": { "files": { "LICENSE": { - "offset": 35282840, + "offset": 35060430, "size": 11360, }, "build": { @@ -62946,49 +62798,49 @@ exports[`node_module collectors > yarn ms 2`] = ` "esm": { "files": { "NoopLogger.js": { - "offset": 35294200, + "offset": 35071790, "size": 880, }, "NoopLogger.js.map": { - "offset": 35295080, + "offset": 35072670, "size": 1160, }, "NoopLoggerProvider.js": { - "offset": 35296230, + "offset": 35073820, "size": 1050, }, "NoopLoggerProvider.js.map": { - "offset": 35297270, + "offset": 35074860, "size": 1540, }, "api": { "files": { "logs.js": { - "offset": 35298810, + "offset": 35076400, "size": 2220, }, "logs.js.map": { - "offset": 35301020, + "offset": 35078610, "size": 3360, }, }, }, "index.js": { - "offset": 35304380, + "offset": 35081960, "size": 910, }, "index.js.map": { - "offset": 35305280, + "offset": 35082870, "size": 1570, }, "internal": { "files": { "global-utils.js": { - "offset": 35306850, + "offset": 35084440, "size": 1880, }, "global-utils.js.map": { - "offset": 35308730, + "offset": 35086310, "size": 2680, }, }, @@ -62998,47 +62850,47 @@ exports[`node_module collectors > yarn ms 2`] = ` "browser": { "files": { "globalThis.js": { - "offset": 35311410, + "offset": 35088990, "size": 1400, }, "globalThis.js.map": { - "offset": 35312810, + "offset": 35090390, "size": 1930, }, "index.js": { - "offset": 35314730, + "offset": 35092320, "size": 690, }, "index.js.map": { - "offset": 35315410, + "offset": 35093000, "size": 890, }, }, }, "index.js": { - "offset": 35316300, + "offset": 35093880, "size": 680, }, "index.js.map": { - "offset": 35316970, + "offset": 35094560, "size": 870, }, "node": { "files": { "globalThis.js": { - "offset": 35317840, + "offset": 35095430, "size": 860, }, "globalThis.js.map": { - "offset": 35318700, + "offset": 35096280, "size": 1150, }, "index.js": { - "offset": 35319840, + "offset": 35097430, "size": 690, }, "index.js.map": { - "offset": 35320520, + "offset": 35098110, "size": 890, }, }, @@ -63048,53 +62900,53 @@ exports[`node_module collectors > yarn ms 2`] = ` "types": { "files": { "AnyValue.js": { - "offset": 35321410, + "offset": 35098990, "size": 660, }, "AnyValue.js.map": { - "offset": 35322060, + "offset": 35099650, "size": 1360, }, "LogRecord.js": { - "offset": 35323420, + "offset": 35101000, "size": 2270, }, "LogRecord.js.map": { - "offset": 35325680, + "offset": 35103270, "size": 2580, }, "Logger.js": { - "offset": 35328250, + "offset": 35105840, "size": 660, }, "Logger.js.map": { - "offset": 35328900, + "offset": 35106490, "size": 1020, }, "LoggerOptions.js": { - "offset": 35329920, + "offset": 35107510, "size": 60, }, "LoggerOptions.js.map": { - "offset": 35329970, + "offset": 35107560, "size": 1300, }, "LoggerProvider.js": { - "offset": 35331270, + "offset": 35108860, "size": 660, }, "LoggerProvider.js.map": { - "offset": 35331930, + "offset": 35109510, "size": 1500, }, }, }, "version.js": { - "offset": 35333420, + "offset": 35111010, "size": 740, }, "version.js.map": { - "offset": 35334150, + "offset": 35111740, "size": 930, }, }, @@ -63102,49 +62954,49 @@ exports[`node_module collectors > yarn ms 2`] = ` "esnext": { "files": { "NoopLogger.js": { - "offset": 35335080, + "offset": 35112670, "size": 750, }, "NoopLogger.js.map": { - "offset": 35335820, + "offset": 35113410, "size": 1130, }, "NoopLoggerProvider.js": { - "offset": 35336950, + "offset": 35114530, "size": 880, }, "NoopLoggerProvider.js.map": { - "offset": 35337820, + "offset": 35115410, "size": 1510, }, "api": { "files": { "logs.js": { - "offset": 35339320, + "offset": 35116910, "size": 2000, }, "logs.js.map": { - "offset": 35341320, + "offset": 35118910, "size": 3330, }, }, }, "index.js": { - "offset": 35344650, + "offset": 35122240, "size": 910, }, "index.js.map": { - "offset": 35345560, + "offset": 35123150, "size": 1570, }, "internal": { "files": { "global-utils.js": { - "offset": 35347130, + "offset": 35124710, "size": 1860, }, "global-utils.js.map": { - "offset": 35348980, + "offset": 35126570, "size": 2680, }, }, @@ -63154,47 +63006,47 @@ exports[`node_module collectors > yarn ms 2`] = ` "browser": { "files": { "globalThis.js": { - "offset": 35351650, + "offset": 35129240, "size": 1410, }, "globalThis.js.map": { - "offset": 35353050, + "offset": 35130640, "size": 1930, }, "index.js": { - "offset": 35354980, + "offset": 35132570, "size": 690, }, "index.js.map": { - "offset": 35355660, + "offset": 35133250, "size": 890, }, }, }, "index.js": { - "offset": 35356540, + "offset": 35134130, "size": 680, }, "index.js.map": { - "offset": 35357220, + "offset": 35134810, "size": 870, }, "node": { "files": { "globalThis.js": { - "offset": 35358090, + "offset": 35135680, "size": 860, }, "globalThis.js.map": { - "offset": 35358950, + "offset": 35136540, "size": 1150, }, "index.js": { - "offset": 35360090, + "offset": 35137680, "size": 690, }, "index.js.map": { - "offset": 35360780, + "offset": 35138360, "size": 890, }, }, @@ -63204,53 +63056,53 @@ exports[`node_module collectors > yarn ms 2`] = ` "types": { "files": { "AnyValue.js": { - "offset": 35361660, + "offset": 35139240, "size": 660, }, "AnyValue.js.map": { - "offset": 35362310, + "offset": 35139900, "size": 1360, }, "LogRecord.js": { - "offset": 35363670, + "offset": 35141250, "size": 2270, }, "LogRecord.js.map": { - "offset": 35365930, + "offset": 35143520, "size": 2580, }, "Logger.js": { - "offset": 35368500, + "offset": 35146090, "size": 660, }, "Logger.js.map": { - "offset": 35369160, + "offset": 35146740, "size": 1020, }, "LoggerOptions.js": { - "offset": 35370170, + "offset": 35147760, "size": 60, }, "LoggerOptions.js.map": { - "offset": 35370220, + "offset": 35147810, "size": 1300, }, "LoggerProvider.js": { - "offset": 35371520, + "offset": 35149110, "size": 660, }, "LoggerProvider.js.map": { - "offset": 35372180, + "offset": 35149770, "size": 1500, }, }, }, "version.js": { - "offset": 35373670, + "offset": 35151260, "size": 740, }, "version.js.map": { - "offset": 35374410, + "offset": 35151990, "size": 930, }, }, @@ -63258,49 +63110,49 @@ exports[`node_module collectors > yarn ms 2`] = ` "src": { "files": { "NoopLogger.js": { - "offset": 35375340, + "offset": 35152920, "size": 900, }, "NoopLogger.js.map": { - "offset": 35376230, + "offset": 35153810, "size": 1130, }, "NoopLoggerProvider.js": { - "offset": 35377350, + "offset": 35154940, "size": 1080, }, "NoopLoggerProvider.js.map": { - "offset": 35378420, + "offset": 35156010, "size": 1480, }, "api": { "files": { "logs.js": { - "offset": 35379900, + "offset": 35157480, "size": 2290, }, "logs.js.map": { - "offset": 35382180, + "offset": 35159770, "size": 3260, }, }, }, "index.js": { - "offset": 35385440, + "offset": 35163020, "size": 1780, }, "index.js.map": { - "offset": 35387210, + "offset": 35164800, "size": 1530, }, "internal": { "files": { "global-utils.js": { - "offset": 35388740, + "offset": 35166330, "size": 2080, }, "global-utils.js.map": { - "offset": 35390810, + "offset": 35168400, "size": 2630, }, }, @@ -63310,47 +63162,47 @@ exports[`node_module collectors > yarn ms 2`] = ` "browser": { "files": { "globalThis.js": { - "offset": 35393440, + "offset": 35171030, "size": 1510, }, "globalThis.js.map": { - "offset": 35394940, + "offset": 35172530, "size": 1920, }, "index.js": { - "offset": 35396860, + "offset": 35174450, "size": 920, }, "index.js.map": { - "offset": 35397770, + "offset": 35175360, "size": 890, }, }, }, "index.js": { - "offset": 35398650, + "offset": 35176240, "size": 900, }, "index.js.map": { - "offset": 35399550, + "offset": 35177140, "size": 870, }, "node": { "files": { "globalThis.js": { - "offset": 35400410, + "offset": 35178000, "size": 970, }, "globalThis.js.map": { - "offset": 35401370, + "offset": 35178960, "size": 1140, }, "index.js": { - "offset": 35402510, + "offset": 35180100, "size": 920, }, "index.js.map": { - "offset": 35403430, + "offset": 35181010, "size": 880, }, }, @@ -63360,53 +63212,53 @@ exports[`node_module collectors > yarn ms 2`] = ` "types": { "files": { "AnyValue.js": { - "offset": 35404300, + "offset": 35181890, "size": 720, }, "AnyValue.js.map": { - "offset": 35405020, + "offset": 35182610, "size": 1360, }, "LogRecord.js": { - "offset": 35406380, + "offset": 35183970, "size": 2410, }, "LogRecord.js.map": { - "offset": 35408780, + "offset": 35186370, "size": 2580, }, "Logger.js": { - "offset": 35411360, + "offset": 35188950, "size": 720, }, "Logger.js.map": { - "offset": 35412080, + "offset": 35189670, "size": 1020, }, "LoggerOptions.js": { - "offset": 35413090, + "offset": 35190680, "size": 120, }, "LoggerOptions.js.map": { - "offset": 35413210, + "offset": 35190800, "size": 1300, }, "LoggerProvider.js": { - "offset": 35414510, + "offset": 35192100, "size": 730, }, "LoggerProvider.js.map": { - "offset": 35415230, + "offset": 35192820, "size": 1500, }, }, }, "version.js": { - "offset": 35416730, + "offset": 35194320, "size": 840, }, "version.js.map": { - "offset": 35417560, + "offset": 35195150, "size": 930, }, }, @@ -63414,7 +63266,7 @@ exports[`node_module collectors > yarn ms 2`] = ` }, }, "package.json": { - "offset": 35418480, + "offset": 35196070, "size": 1830, }, }, @@ -63422,7 +63274,7 @@ exports[`node_module collectors > yarn ms 2`] = ` "instrumentation": { "files": { "LICENSE": { - "offset": 35420310, + "offset": 35197900, "size": 11360, }, "build": { @@ -63430,51 +63282,51 @@ exports[`node_module collectors > yarn ms 2`] = ` "esm": { "files": { "autoLoader.js": { - "offset": 35431670, + "offset": 35209250, "size": 1630, }, "autoLoader.js.map": { - "offset": 35433290, + "offset": 35210880, "size": 2430, }, "autoLoaderUtils.js": { - "offset": 35435720, + "offset": 35213310, "size": 1930, }, "autoLoaderUtils.js.map": { - "offset": 35437650, + "offset": 35215230, "size": 3080, }, "index.js": { - "offset": 35440720, + "offset": 35218310, "size": 1020, }, "index.js.map": { - "offset": 35441730, + "offset": 35219320, "size": 1670, }, "instrumentation.js": { - "offset": 35443400, + "offset": 35220990, "size": 6210, }, "instrumentation.js.map": { - "offset": 35449610, + "offset": 35227190, "size": 8580, }, "instrumentationNodeModuleDefinition.js": { - "offset": 35458180, + "offset": 35235770, "size": 1270, }, "instrumentationNodeModuleDefinition.js.map": { - "offset": 35459440, + "offset": 35237030, "size": 1810, }, "instrumentationNodeModuleFile.js": { - "offset": 35461250, + "offset": 35238840, "size": 1250, }, "instrumentationNodeModuleFile.js.map": { - "offset": 35462500, + "offset": 35240080, "size": 1750, }, "platform": { @@ -63482,79 +63334,79 @@ exports[`node_module collectors > yarn ms 2`] = ` "browser": { "files": { "index.js": { - "offset": 35464250, + "offset": 35241830, "size": 750, }, "index.js.map": { - "offset": 35464990, + "offset": 35242580, "size": 1000, }, "instrumentation.js": { - "offset": 35465980, + "offset": 35243570, "size": 2030, }, "instrumentation.js.map": { - "offset": 35468010, + "offset": 35245590, "size": 1840, }, "noop-normalize.js": { - "offset": 35469840, + "offset": 35247430, "size": 1410, }, "noop-normalize.js.map": { - "offset": 35471250, + "offset": 35248840, "size": 1780, }, }, }, "index.js": { - "offset": 35473030, + "offset": 35250620, "size": 700, }, "index.js.map": { - "offset": 35473720, + "offset": 35251310, "size": 900, }, "node": { "files": { "ModuleNameTrie.js": { - "offset": 35474620, + "offset": 35252210, "size": 5570, }, "ModuleNameTrie.js.map": { - "offset": 35480190, + "offset": 35257770, "size": 5350, }, "RequireInTheMiddleSingleton.js": { - "offset": 35485540, + "offset": 35263120, "size": 5430, }, "RequireInTheMiddleSingleton.js.map": { - "offset": 35490960, + "offset": 35268550, "size": 6180, }, "index.js": { - "offset": 35497140, + "offset": 35274730, "size": 740, }, "index.js.map": { - "offset": 35497880, + "offset": 35275470, "size": 980, }, "instrumentation.js": { - "offset": 35498860, + "offset": 35276440, "size": 15860, }, "instrumentation.js.map": { - "offset": 35514710, + "offset": 35292300, "size": 20370, }, "normalize.js": { - "offset": 35535080, + "offset": 35312660, "size": 680, }, "normalize.js.map": { - "offset": 35535750, + "offset": 35313340, "size": 880, }, }, @@ -63562,35 +63414,35 @@ exports[`node_module collectors > yarn ms 2`] = ` }, }, "types.js": { - "offset": 35536630, + "offset": 35314220, "size": 650, }, "types.js.map": { - "offset": 35537280, + "offset": 35314870, "size": 6630, }, "types_internal.js": { - "offset": 35543900, + "offset": 35321490, "size": 660, }, "types_internal.js.map": { - "offset": 35544560, + "offset": 35322150, "size": 1260, }, "utils.js": { - "offset": 35545820, + "offset": 35323410, "size": 5330, }, "utils.js.map": { - "offset": 35551140, + "offset": 35328730, "size": 3680, }, "version.js": { - "offset": 35554820, + "offset": 35332410, "size": 740, }, "version.js.map": { - "offset": 35555550, + "offset": 35333140, "size": 930, }, }, @@ -63598,51 +63450,51 @@ exports[`node_module collectors > yarn ms 2`] = ` "esnext": { "files": { "autoLoader.js": { - "offset": 35556480, + "offset": 35334070, "size": 1630, }, "autoLoader.js.map": { - "offset": 35558110, + "offset": 35335700, "size": 2440, }, "autoLoaderUtils.js": { - "offset": 35560550, + "offset": 35338130, "size": 1910, }, "autoLoaderUtils.js.map": { - "offset": 35562450, + "offset": 35340040, "size": 3060, }, "index.js": { - "offset": 35565510, + "offset": 35343100, "size": 1020, }, "index.js.map": { - "offset": 35566530, + "offset": 35344120, "size": 1670, }, "instrumentation.js": { - "offset": 35568200, + "offset": 35345790, "size": 4860, }, "instrumentation.js.map": { - "offset": 35573050, + "offset": 35350640, "size": 8460, }, "instrumentationNodeModuleDefinition.js": { - "offset": 35581500, + "offset": 35359090, "size": 1110, }, "instrumentationNodeModuleDefinition.js.map": { - "offset": 35582610, + "offset": 35360200, "size": 1800, }, "instrumentationNodeModuleFile.js": { - "offset": 35584410, + "offset": 35362000, "size": 1120, }, "instrumentationNodeModuleFile.js.map": { - "offset": 35585530, + "offset": 35363110, "size": 1750, }, "platform": { @@ -63650,79 +63502,79 @@ exports[`node_module collectors > yarn ms 2`] = ` "browser": { "files": { "index.js": { - "offset": 35587270, + "offset": 35364860, "size": 750, }, "index.js.map": { - "offset": 35588010, + "offset": 35365600, "size": 1000, }, "instrumentation.js": { - "offset": 35589000, + "offset": 35366590, "size": 1070, }, "instrumentation.js.map": { - "offset": 35590060, + "offset": 35367650, "size": 1800, }, "noop-normalize.js": { - "offset": 35591860, + "offset": 35369450, "size": 1410, }, "noop-normalize.js.map": { - "offset": 35593260, + "offset": 35370850, "size": 1780, }, }, }, "index.js": { - "offset": 35595040, + "offset": 35372630, "size": 700, }, "index.js.map": { - "offset": 35595740, + "offset": 35373330, "size": 900, }, "node": { "files": { "ModuleNameTrie.js": { - "offset": 35596640, + "offset": 35374230, "size": 2950, }, "ModuleNameTrie.js.map": { - "offset": 35599580, + "offset": 35377170, "size": 5130, }, "RequireInTheMiddleSingleton.js": { - "offset": 35604700, + "offset": 35382290, "size": 4140, }, "RequireInTheMiddleSingleton.js.map": { - "offset": 35608840, + "offset": 35386430, "size": 6110, }, "index.js": { - "offset": 35614940, + "offset": 35392530, "size": 740, }, "index.js.map": { - "offset": 35615680, + "offset": 35393270, "size": 980, }, "instrumentation.js": { - "offset": 35616660, + "offset": 35394240, "size": 11460, }, "instrumentation.js.map": { - "offset": 35628110, + "offset": 35405700, "size": 20080, }, "normalize.js": { - "offset": 35648180, + "offset": 35425770, "size": 680, }, "normalize.js.map": { - "offset": 35648860, + "offset": 35426450, "size": 880, }, }, @@ -63730,35 +63582,35 @@ exports[`node_module collectors > yarn ms 2`] = ` }, }, "types.js": { - "offset": 35649740, + "offset": 35427320, "size": 650, }, "types.js.map": { - "offset": 35650390, + "offset": 35427970, "size": 6630, }, "types_internal.js": { - "offset": 35657010, + "offset": 35434600, "size": 660, }, "types_internal.js.map": { - "offset": 35657670, + "offset": 35435260, "size": 1260, }, "utils.js": { - "offset": 35658930, + "offset": 35436520, "size": 2250, }, "utils.js.map": { - "offset": 35661180, + "offset": 35438770, "size": 3710, }, "version.js": { - "offset": 35664880, + "offset": 35442470, "size": 740, }, "version.js.map": { - "offset": 35665610, + "offset": 35443200, "size": 930, }, }, @@ -63766,51 +63618,51 @@ exports[`node_module collectors > yarn ms 2`] = ` "src": { "files": { "autoLoader.js": { - "offset": 35666540, + "offset": 35444130, "size": 1840, }, "autoLoader.js.map": { - "offset": 35668380, + "offset": 35445970, "size": 2350, }, "autoLoaderUtils.js": { - "offset": 35670730, + "offset": 35448320, "size": 2170, }, "autoLoaderUtils.js.map": { - "offset": 35672890, + "offset": 35450480, "size": 3080, }, "index.js": { - "offset": 35675970, + "offset": 35453550, "size": 2340, }, "index.js.map": { - "offset": 35678300, + "offset": 35455890, "size": 1660, }, "instrumentation.js": { - "offset": 35679950, + "offset": 35457540, "size": 5050, }, "instrumentation.js.map": { - "offset": 35685000, + "offset": 35462590, "size": 8370, }, "instrumentationNodeModuleDefinition.js": { - "offset": 35693360, + "offset": 35470950, "size": 1320, }, "instrumentationNodeModuleDefinition.js.map": { - "offset": 35694680, + "offset": 35472260, "size": 1810, }, "instrumentationNodeModuleFile.js": { - "offset": 35696480, + "offset": 35474070, "size": 1320, }, "instrumentationNodeModuleFile.js.map": { - "offset": 35697800, + "offset": 35475390, "size": 1730, }, "platform": { @@ -63818,79 +63670,79 @@ exports[`node_module collectors > yarn ms 2`] = ` "browser": { "files": { "index.js": { - "offset": 35699520, + "offset": 35477110, "size": 1150, }, "index.js.map": { - "offset": 35700670, + "offset": 35478260, "size": 980, }, "instrumentation.js": { - "offset": 35701650, + "offset": 35479240, "size": 1240, }, "instrumentation.js.map": { - "offset": 35702880, + "offset": 35480470, "size": 1780, }, "noop-normalize.js": { - "offset": 35704660, + "offset": 35482250, "size": 1550, }, "noop-normalize.js.map": { - "offset": 35706200, + "offset": 35483790, "size": 1760, }, }, }, "index.js": { - "offset": 35707960, + "offset": 35485550, "size": 1060, }, "index.js.map": { - "offset": 35709020, + "offset": 35486600, "size": 910, }, "node": { "files": { "ModuleNameTrie.js": { - "offset": 35709920, + "offset": 35487510, "size": 3130, }, "ModuleNameTrie.js.map": { - "offset": 35713050, + "offset": 35490640, "size": 5130, }, "RequireInTheMiddleSingleton.js": { - "offset": 35718170, + "offset": 35495760, "size": 4400, }, "RequireInTheMiddleSingleton.js.map": { - "offset": 35722570, + "offset": 35500160, "size": 6030, }, "index.js": { - "offset": 35728590, + "offset": 35506180, "size": 1140, }, "index.js.map": { - "offset": 35729720, + "offset": 35507310, "size": 970, }, "instrumentation.js": { - "offset": 35730690, + "offset": 35508280, "size": 11800, }, "instrumentation.js.map": { - "offset": 35742490, + "offset": 35520080, "size": 19760, }, "normalize.js": { - "offset": 35762250, + "offset": 35539840, "size": 900, }, "normalize.js.map": { - "offset": 35763140, + "offset": 35540730, "size": 880, }, }, @@ -63898,35 +63750,35 @@ exports[`node_module collectors > yarn ms 2`] = ` }, }, "types.js": { - "offset": 35764020, + "offset": 35541610, "size": 720, }, "types.js.map": { - "offset": 35764730, + "offset": 35542320, "size": 6630, }, "types_internal.js": { - "offset": 35771360, + "offset": 35548940, "size": 730, }, "types_internal.js.map": { - "offset": 35772080, + "offset": 35549670, "size": 1270, }, "utils.js": { - "offset": 35773340, + "offset": 35550930, "size": 2560, }, "utils.js.map": { - "offset": 35775900, + "offset": 35553490, "size": 3730, }, "version.js": { - "offset": 35779630, + "offset": 35557210, "size": 840, }, "version.js.map": { - "offset": 35780460, + "offset": 35558050, "size": 930, }, }, @@ -63934,11 +63786,11 @@ exports[`node_module collectors > yarn ms 2`] = ` }, }, "hook.mjs": { - "offset": 35781380, + "offset": 35558970, "size": 1010, }, "package.json": { - "offset": 35782390, + "offset": 35559980, "size": 2540, }, }, @@ -63948,7 +63800,7 @@ exports[`node_module collectors > yarn ms 2`] = ` }, }, "package.json": { - "offset": 35281970, + "offset": 35059560, "size": 880, }, }, @@ -63960,7 +63812,7 @@ exports[`node_module collectors > yarn ms 2`] = ` "browser": { "files": { "LICENSE": { - "offset": 41194080, + "offset": 40971670, "size": 1100, }, "build": { @@ -63970,113 +63822,113 @@ exports[`node_module collectors > yarn ms 2`] = ` "cjs": { "files": { "client.js": { - "offset": 41195180, + "offset": 40972770, "size": 2630, }, "client.js.map": { - "offset": 41197810, + "offset": 40975400, "size": 6530, }, "debug-build.js": { - "offset": 41204340, + "offset": 40981930, "size": 530, }, "debug-build.js.map": { - "offset": 41204870, + "offset": 40982460, "size": 610, }, "eventbuilder.js": { - "offset": 41205470, + "offset": 40983060, "size": 12040, }, "eventbuilder.js.map": { - "offset": 41217510, + "offset": 40995100, "size": 21900, }, "feedbackAsync.js": { - "offset": 41239410, + "offset": 41017000, "size": 570, }, "feedbackAsync.js.map": { - "offset": 41239970, + "offset": 41017560, "size": 650, }, "feedbackSync.js": { - "offset": 41240620, + "offset": 41018210, "size": 500, }, "feedbackSync.js.map": { - "offset": 41241120, + "offset": 41018710, "size": 750, }, "helpers.js": { - "offset": 41241860, + "offset": 41019450, "size": 4710, }, "helpers.js.map": { - "offset": 41246570, + "offset": 41024160, "size": 8090, }, "index.js": { - "offset": 41254660, + "offset": 41032250, "size": 9010, }, "index.js.map": { - "offset": 41263660, + "offset": 41041250, "size": 250, }, "integrations": { "files": { "breadcrumbs.js": { - "offset": 41263910, + "offset": 41041500, "size": 8620, }, "breadcrumbs.js.map": { - "offset": 41272520, + "offset": 41050110, "size": 17840, }, "browserapierrors.js": { - "offset": 41290360, + "offset": 41067950, "size": 7890, }, "browserapierrors.js.map": { - "offset": 41298250, + "offset": 41075840, "size": 14280, }, "browsersession.js": { - "offset": 41312520, + "offset": 41090110, "size": 1790, }, "browsersession.js.map": { - "offset": 41314310, + "offset": 41091900, "size": 2540, }, "contextlines.js": { - "offset": 41316850, + "offset": 41094440, "size": 2510, }, "contextlines.js.map": { - "offset": 41319350, + "offset": 41096940, "size": 4840, }, "featureFlags": { "files": { "featureFlagsIntegration.js": { - "offset": 41324190, + "offset": 41101770, "size": 1540, }, "featureFlagsIntegration.js.map": { - "offset": 41325720, + "offset": 41103310, "size": 2420, }, "launchdarkly": { "files": { "integration.js": { - "offset": 41328140, + "offset": 41105730, "size": 1850, }, "integration.js.map": { - "offset": 41329990, + "offset": 41107570, "size": 2810, }, }, @@ -64084,11 +63936,11 @@ exports[`node_module collectors > yarn ms 2`] = ` "openfeature": { "files": { "integration.js": { - "offset": 41332790, + "offset": 41110380, "size": 1000, }, "integration.js.map": { - "offset": 41333790, + "offset": 41111370, "size": 2240, }, }, @@ -64096,11 +63948,11 @@ exports[`node_module collectors > yarn ms 2`] = ` "unleash": { "files": { "integration.js": { - "offset": 41336020, + "offset": 41113610, "size": 2470, }, "integration.js.map": { - "offset": 41338480, + "offset": 41116070, "size": 4150, }, }, @@ -64108,131 +63960,131 @@ exports[`node_module collectors > yarn ms 2`] = ` }, }, "globalhandlers.js": { - "offset": 41342630, + "offset": 41120210, "size": 5240, }, "globalhandlers.js.map": { - "offset": 41347860, + "offset": 41125450, "size": 10440, }, "httpclient.js": { - "offset": 41358290, + "offset": 41135880, "size": 9630, }, "httpclient.js.map": { - "offset": 41367920, + "offset": 41145500, "size": 19990, }, "httpcontext.js": { - "offset": 41387900, + "offset": 41165490, "size": 1260, }, "httpcontext.js.map": { - "offset": 41389160, + "offset": 41166740, "size": 2140, }, "linkederrors.js": { - "offset": 41391290, + "offset": 41168880, "size": 1100, }, "linkederrors.js.map": { - "offset": 41392380, + "offset": 41169970, "size": 2020, }, "reportingobserver.js": { - "offset": 41394400, + "offset": 41171990, "size": 2210, }, "reportingobserver.js.map": { - "offset": 41396600, + "offset": 41174190, "size": 5650, }, "spotlight.js": { - "offset": 41402250, + "offset": 41179830, "size": 2710, }, "spotlight.js.map": { - "offset": 41404950, + "offset": 41182540, "size": 4980, }, }, }, "metrics.js": { - "offset": 41409930, + "offset": 41187520, "size": 2310, }, "metrics.js.map": { - "offset": 41412240, + "offset": 41189830, "size": 4010, }, "profiling": { "files": { "integration.js": { - "offset": 41416250, + "offset": 41193840, "size": 3140, }, "integration.js.map": { - "offset": 41419380, + "offset": 41196970, "size": 5750, }, "startProfileForSpan.js": { - "offset": 41425130, + "offset": 41202720, "size": 4590, }, "startProfileForSpan.js.map": { - "offset": 41429710, + "offset": 41207300, "size": 8180, }, "utils.js": { - "offset": 41437890, + "offset": 41215470, "size": 17960, }, "utils.js.map": { - "offset": 41455840, + "offset": 41233430, "size": 30750, }, }, }, "sdk.js": { - "offset": 41486580, + "offset": 41264170, "size": 8660, }, "sdk.js.map": { - "offset": 41495230, + "offset": 41272820, "size": 15170, }, "stack-parsers.js": { - "offset": 41510400, + "offset": 41287990, "size": 7220, }, "stack-parsers.js.map": { - "offset": 41517620, + "offset": 41295200, "size": 13750, }, "tracing": { "files": { "backgroundtab.js": { - "offset": 41531360, + "offset": 41308950, "size": 1630, }, "backgroundtab.js.map": { - "offset": 41532990, + "offset": 41310570, "size": 2590, }, "browserTracingIntegration.js": { - "offset": 41535570, + "offset": 41313160, "size": 13020, }, "browserTracingIntegration.js.map": { - "offset": 41548580, + "offset": 41326170, "size": 26340, }, "request.js": { - "offset": 41574920, + "offset": 41352510, "size": 12740, }, "request.js.map": { - "offset": 41587660, + "offset": 41365250, "size": 26630, }, }, @@ -64240,47 +64092,47 @@ exports[`node_module collectors > yarn ms 2`] = ` "transports": { "files": { "fetch.js": { - "offset": 41614280, + "offset": 41391870, "size": 2810, }, "fetch.js.map": { - "offset": 41617090, + "offset": 41394680, "size": 4630, }, "offline.js": { - "offset": 41621720, + "offset": 41399300, "size": 4820, }, "offline.js.map": { - "offset": 41626530, + "offset": 41404120, "size": 9830, }, }, }, "userfeedback.js": { - "offset": 41636360, + "offset": 41413950, "size": 940, }, "userfeedback.js.map": { - "offset": 41637290, + "offset": 41414880, "size": 2110, }, "utils": { "files": { "featureFlags.js": { - "offset": 41639400, + "offset": 41416990, "size": 3040, }, "featureFlags.js.map": { - "offset": 41642440, + "offset": 41420030, "size": 4810, }, "lazyLoadIntegration.js": { - "offset": 41647250, + "offset": 41424840, "size": 3430, }, "lazyLoadIntegration.js.map": { - "offset": 41650670, + "offset": 41428260, "size": 6310, }, }, @@ -64290,113 +64142,113 @@ exports[`node_module collectors > yarn ms 2`] = ` "esm": { "files": { "client.js": { - "offset": 41656980, + "offset": 41434560, "size": 2530, }, "client.js.map": { - "offset": 41659510, + "offset": 41437090, "size": 6370, }, "debug-build.js": { - "offset": 41665870, + "offset": 41443460, "size": 460, }, "debug-build.js.map": { - "offset": 41666320, + "offset": 41443910, "size": 610, }, "eventbuilder.js": { - "offset": 41666930, + "offset": 41444520, "size": 11940, }, "eventbuilder.js.map": { - "offset": 41678860, + "offset": 41456450, "size": 21630, }, "feedbackAsync.js": { - "offset": 41700490, + "offset": 41478070, "size": 440, }, "feedbackAsync.js.map": { - "offset": 41700930, + "offset": 41478510, "size": 600, }, "feedbackSync.js": { - "offset": 41701520, + "offset": 41479110, "size": 460, }, "feedbackSync.js.map": { - "offset": 41701970, + "offset": 41479560, "size": 660, }, "helpers.js": { - "offset": 41702630, + "offset": 41480220, "size": 4680, }, "helpers.js.map": { - "offset": 41707300, + "offset": 41484890, "size": 7920, }, "index.js": { - "offset": 41715210, + "offset": 41492800, "size": 4010, }, "index.js.map": { - "offset": 41719220, + "offset": 41496810, "size": 130, }, "integrations": { "files": { "breadcrumbs.js": { - "offset": 41719340, + "offset": 41496930, "size": 8680, }, "breadcrumbs.js.map": { - "offset": 41728020, + "offset": 41505610, "size": 17370, }, "browserapierrors.js": { - "offset": 41745390, + "offset": 41522970, "size": 7710, }, "browserapierrors.js.map": { - "offset": 41753090, + "offset": 41530680, "size": 14160, }, "browsersession.js": { - "offset": 41767250, + "offset": 41544840, "size": 1710, }, "browsersession.js.map": { - "offset": 41768950, + "offset": 41546540, "size": 2410, }, "contextlines.js": { - "offset": 41771360, + "offset": 41548950, "size": 2430, }, "contextlines.js.map": { - "offset": 41773790, + "offset": 41551380, "size": 4750, }, "featureFlags": { "files": { "featureFlagsIntegration.js": { - "offset": 41778540, + "offset": 41556120, "size": 1470, }, "featureFlagsIntegration.js.map": { - "offset": 41780000, + "offset": 41557590, "size": 2350, }, "launchdarkly": { "files": { "integration.js": { - "offset": 41782340, + "offset": 41559930, "size": 1730, }, "integration.js.map": { - "offset": 41784070, + "offset": 41561660, "size": 2730, }, }, @@ -64404,11 +64256,11 @@ exports[`node_module collectors > yarn ms 2`] = ` "openfeature": { "files": { "integration.js": { - "offset": 41786800, + "offset": 41564390, "size": 880, }, "integration.js.map": { - "offset": 41787670, + "offset": 41565260, "size": 2170, }, }, @@ -64416,11 +64268,11 @@ exports[`node_module collectors > yarn ms 2`] = ` "unleash": { "files": { "integration.js": { - "offset": 41789830, + "offset": 41567420, "size": 2390, }, "integration.js.map": { - "offset": 41792220, + "offset": 41569810, "size": 4040, }, }, @@ -64428,135 +64280,135 @@ exports[`node_module collectors > yarn ms 2`] = ` }, }, "globalhandlers.js": { - "offset": 41796260, + "offset": 41573840, "size": 5240, }, "globalhandlers.js.map": { - "offset": 41801490, + "offset": 41579070, "size": 10140, }, "httpclient.js": { - "offset": 41811630, + "offset": 41589210, "size": 9620, }, "httpclient.js.map": { - "offset": 41821250, + "offset": 41598830, "size": 19730, }, "httpcontext.js": { - "offset": 41840970, + "offset": 41618560, "size": 1120, }, "httpcontext.js.map": { - "offset": 41842090, + "offset": 41619680, "size": 2100, }, "linkederrors.js": { - "offset": 41844190, + "offset": 41621770, "size": 1040, }, "linkederrors.js.map": { - "offset": 41845220, + "offset": 41622810, "size": 1940, }, "reportingobserver.js": { - "offset": 41847160, + "offset": 41624750, "size": 2170, }, "reportingobserver.js.map": { - "offset": 41849330, + "offset": 41626920, "size": 5540, }, "spotlight.js": { - "offset": 41854860, + "offset": 41632450, "size": 2560, }, "spotlight.js.map": { - "offset": 41857420, + "offset": 41635010, "size": 4880, }, }, }, "metrics.js": { - "offset": 41862290, + "offset": 41639880, "size": 2240, }, "metrics.js.map": { - "offset": 41864530, + "offset": 41642120, "size": 3980, }, "package.json": { - "offset": 41868510, + "offset": 41646100, "size": 60, }, "profiling": { "files": { "integration.js": { - "offset": 41868570, + "offset": 41646150, "size": 3110, }, "integration.js.map": { - "offset": 41871670, + "offset": 41649260, "size": 5440, }, "startProfileForSpan.js": { - "offset": 41877110, + "offset": 41654700, "size": 4490, }, "startProfileForSpan.js.map": { - "offset": 41881600, + "offset": 41659190, "size": 7960, }, "utils.js": { - "offset": 41889550, + "offset": 41667140, "size": 17190, }, "utils.js.map": { - "offset": 41906730, + "offset": 41684320, "size": 30480, }, }, }, "sdk.js": { - "offset": 41937210, + "offset": 41714800, "size": 8430, }, "sdk.js.map": { - "offset": 41945640, + "offset": 41723220, "size": 14600, }, "stack-parsers.js": { - "offset": 41960230, + "offset": 41737820, "size": 6930, }, "stack-parsers.js.map": { - "offset": 41967160, + "offset": 41744750, "size": 13700, }, "tracing": { "files": { "backgroundtab.js": { - "offset": 41980850, + "offset": 41758440, "size": 1510, }, "backgroundtab.js.map": { - "offset": 41982350, + "offset": 41759940, "size": 2470, }, "browserTracingIntegration.js": { - "offset": 41984820, + "offset": 41762410, "size": 13030, }, "browserTracingIntegration.js.map": { - "offset": 41997850, + "offset": 41775430, "size": 25440, }, "request.js": { - "offset": 42023290, + "offset": 41800870, "size": 12760, }, "request.js.map": { - "offset": 42036040, + "offset": 41813630, "size": 26140, }, }, @@ -64564,47 +64416,47 @@ exports[`node_module collectors > yarn ms 2`] = ` "transports": { "files": { "fetch.js": { - "offset": 42062180, + "offset": 41839760, "size": 2740, }, "fetch.js.map": { - "offset": 42064910, + "offset": 41842500, "size": 4530, }, "offline.js": { - "offset": 42069440, + "offset": 41847030, "size": 4680, }, "offline.js.map": { - "offset": 42074120, + "offset": 41851710, "size": 9730, }, }, }, "userfeedback.js": { - "offset": 42083840, + "offset": 41861430, "size": 860, }, "userfeedback.js.map": { - "offset": 42084700, + "offset": 41862290, "size": 2080, }, "utils": { "files": { "featureFlags.js": { - "offset": 42086770, + "offset": 41864360, "size": 2860, }, "featureFlags.js.map": { - "offset": 42089630, + "offset": 41867220, "size": 4760, }, "lazyLoadIntegration.js": { - "offset": 42094390, + "offset": 41871980, "size": 3310, }, "lazyLoadIntegration.js.map": { - "offset": 42097690, + "offset": 41875280, "size": 6260, }, }, @@ -64614,109 +64466,109 @@ exports[`node_module collectors > yarn ms 2`] = ` "types": { "files": { "client.d.ts.map": { - "offset": 42103950, + "offset": 41881540, "size": 1160, }, "debug-build.d.ts.map": { - "offset": 42105110, + "offset": 41882700, "size": 170, }, "eventbuilder.d.ts.map": { - "offset": 42105280, + "offset": 41882870, "size": 1100, }, "exports.d.ts.map": { - "offset": 42106380, + "offset": 41883960, "size": 1660, }, "feedbackAsync.d.ts.map": { - "offset": 42108030, + "offset": 41885620, "size": 180, }, "feedbackSync.d.ts.map": { - "offset": 42108210, + "offset": 41885800, "size": 180, }, "helpers.d.ts.map": { - "offset": 42108390, + "offset": 41885980, "size": 600, }, "index.bundle.base.d.ts.map": { - "offset": 42108990, + "offset": 41886570, "size": 160, }, "index.bundle.d.ts.map": { - "offset": 42109140, + "offset": 41886730, "size": 370, }, "index.bundle.feedback.d.ts.map": { - "offset": 42109510, + "offset": 41887100, "size": 500, }, "index.bundle.replay.d.ts.map": { - "offset": 42110010, + "offset": 41887600, "size": 400, }, "index.bundle.tracing.d.ts.map": { - "offset": 42110410, + "offset": 41888000, "size": 540, }, "index.bundle.tracing.replay.d.ts.map": { - "offset": 42110940, + "offset": 41888530, "size": 570, }, "index.bundle.tracing.replay.feedback.d.ts.map": { - "offset": 42111510, + "offset": 41889090, "size": 640, }, "index.d.ts.map": { - "offset": 42112140, + "offset": 41889730, "size": 1700, }, "integrations": { "files": { "breadcrumbs.d.ts.map": { - "offset": 42115600, + "offset": 41893190, "size": 440, }, "browserapierrors.d.ts.map": { - "offset": 42116040, + "offset": 41893630, "size": 370, }, "browserprofiling.d.ts.map": { - "offset": 42116410, + "offset": 41893990, "size": 200, }, "browsersession.d.ts.map": { - "offset": 42116600, + "offset": 41894180, "size": 200, }, "contextlines.d.ts.map": { - "offset": 42116790, + "offset": 41894380, "size": 450, }, "featureFlags": { "files": { "featureFlagsIntegration.d.ts.map": { - "offset": 42117230, + "offset": 41894820, "size": 410, }, "index.d.ts.map": { - "offset": 42117640, + "offset": 41895230, "size": 210, }, "launchdarkly": { "files": { "index.d.ts.map": { - "offset": 42117850, + "offset": 41895430, "size": 220, }, "integration.d.ts.map": { - "offset": 42118060, + "offset": 41895650, "size": 330, }, "types.d.ts.map": { - "offset": 42118380, + "offset": 41895970, "size": 540, }, }, @@ -64724,15 +64576,15 @@ exports[`node_module collectors > yarn ms 2`] = ` "openfeature": { "files": { "index.d.ts.map": { - "offset": 42118920, + "offset": 41896510, "size": 210, }, "integration.d.ts.map": { - "offset": 42119130, + "offset": 41896720, "size": 590, }, "types.d.ts.map": { - "offset": 42119720, + "offset": 41897300, "size": 3220, }, }, @@ -64740,15 +64592,15 @@ exports[`node_module collectors > yarn ms 2`] = ` "unleash": { "files": { "index.d.ts.map": { - "offset": 42122930, + "offset": 41900520, "size": 200, }, "integration.d.ts.map": { - "offset": 42123130, + "offset": 41900720, "size": 300, }, "types.d.ts.map": { - "offset": 42123420, + "offset": 41901010, "size": 720, }, }, @@ -64756,27 +64608,27 @@ exports[`node_module collectors > yarn ms 2`] = ` }, }, "globalhandlers.d.ts.map": { - "offset": 42124140, + "offset": 41901720, "size": 290, }, "httpclient.d.ts.map": { - "offset": 42124420, + "offset": 41902010, "size": 430, }, "httpcontext.d.ts.map": { - "offset": 42124840, + "offset": 41902430, "size": 190, }, "linkederrors.d.ts.map": { - "offset": 42125030, + "offset": 41902610, "size": 270, }, "reportingobserver.d.ts.map": { - "offset": 42125300, + "offset": 41902880, "size": 310, }, "spotlight.d.ts.map": { - "offset": 42125600, + "offset": 41903190, "size": 420, }, }, @@ -64784,47 +64636,47 @@ exports[`node_module collectors > yarn ms 2`] = ` "integrations-bundle": { "files": { "index.captureconsole.d.ts.map": { - "offset": 42113830, + "offset": 41891420, "size": 210, }, "index.debug.d.ts.map": { - "offset": 42114040, + "offset": 41891630, "size": 240, }, "index.dedupe.d.ts.map": { - "offset": 42114270, + "offset": 41891860, "size": 190, }, "index.extraerrordata.d.ts.map": { - "offset": 42114460, + "offset": 41892040, "size": 210, }, "index.feedback.d.ts.map": { - "offset": 42114660, + "offset": 41892250, "size": 340, }, "index.modulemetadata.d.ts.map": { - "offset": 42115000, + "offset": 41892580, "size": 210, }, "index.rewriteframes.d.ts.map": { - "offset": 42115200, + "offset": 41892790, "size": 210, }, "index.sessiontiming.d.ts.map": { - "offset": 42115400, + "offset": 41892990, "size": 210, }, }, }, "metrics.d.ts.map": { - "offset": 42126010, + "offset": 41903600, "size": 210, }, "pluggable-exports-bundle": { "files": { "index.multiplexedtransport.d.ts.map": { - "offset": 42126220, + "offset": 41903810, "size": 230, }, }, @@ -64832,43 +64684,43 @@ exports[`node_module collectors > yarn ms 2`] = ` "profiling": { "files": { "integration.d.ts.map": { - "offset": 42126450, + "offset": 41904030, "size": 170, }, "jsSelfProfiling.d.ts.map": { - "offset": 42126610, + "offset": 41904200, "size": 1230, }, "startProfileForSpan.d.ts.map": { - "offset": 42127840, + "offset": 41905430, "size": 270, }, "utils.d.ts.map": { - "offset": 42128100, + "offset": 41905690, "size": 1690, }, }, }, "sdk.d.ts.map": { - "offset": 42129790, + "offset": 41907380, "size": 1420, }, "stack-parsers.d.ts.map": { - "offset": 42131210, + "offset": 41908800, "size": 440, }, "tracing": { "files": { "backgroundtab.d.ts.map": { - "offset": 42131650, + "offset": 41909240, "size": 190, }, "browserTracingIntegration.d.ts.map": { - "offset": 42131830, + "offset": 41909420, "size": 1570, }, "request.d.ts.map": { - "offset": 42133400, + "offset": 41910990, "size": 1200, }, }, @@ -64876,31 +64728,31 @@ exports[`node_module collectors > yarn ms 2`] = ` "transports": { "files": { "fetch.d.ts.map": { - "offset": 42134600, + "offset": 41912180, "size": 390, }, "offline.d.ts.map": { - "offset": 42134980, + "offset": 41912560, "size": 1130, }, "types.d.ts.map": { - "offset": 42136100, + "offset": 41913690, "size": 340, }, }, }, "userfeedback.d.ts.map": { - "offset": 42136440, + "offset": 41914030, "size": 430, }, "utils": { "files": { "featureFlags.d.ts.map": { - "offset": 42136870, + "offset": 41914460, "size": 570, }, "lazyLoadIntegration.d.ts.map": { - "offset": 42137430, + "offset": 41915020, "size": 370, }, }, @@ -64912,7 +64764,7 @@ exports[`node_module collectors > yarn ms 2`] = ` }, }, "package.json": { - "offset": 42137800, + "offset": 41915380, "size": 1430, }, }, @@ -64920,7 +64772,7 @@ exports[`node_module collectors > yarn ms 2`] = ` "core": { "files": { "LICENSE": { - "offset": 42139230, + "offset": 41916810, "size": 1100, }, "build": { @@ -64928,505 +64780,505 @@ exports[`node_module collectors > yarn ms 2`] = ` "cjs": { "files": { "api.js": { - "offset": 42140320, + "offset": 41917910, "size": 2580, }, "api.js.map": { - "offset": 42142900, + "offset": 41920490, "size": 5200, }, "asyncContext": { "files": { "index.js": { - "offset": 42148100, + "offset": 41925680, "size": 1000, }, "index.js.map": { - "offset": 42149090, + "offset": 41926680, "size": 1610, }, "stackStrategy.js": { - "offset": 42150700, + "offset": 41928290, "size": 3790, }, "stackStrategy.js.map": { - "offset": 42154490, + "offset": 41932080, "size": 7650, }, }, }, "baseclient.js": { - "offset": 42162140, + "offset": 41939720, "size": 26510, }, "baseclient.js.map": { - "offset": 42188640, + "offset": 41966230, "size": 51810, }, "breadcrumbs.js": { - "offset": 42240450, + "offset": 42018030, "size": 1420, }, "breadcrumbs.js.map": { - "offset": 42241860, + "offset": 42019450, "size": 2390, }, "carrier.js": { - "offset": 42244250, + "offset": 42021840, "size": 1490, }, "carrier.js.map": { - "offset": 42245730, + "offset": 42023320, "size": 2800, }, "checkin.js": { - "offset": 42248530, + "offset": 42026120, "size": 1090, }, "checkin.js.map": { - "offset": 42249620, + "offset": 42027210, "size": 2380, }, "constants.js": { - "offset": 42252000, + "offset": 42029580, "size": 200, }, "constants.js.map": { - "offset": 42252190, + "offset": 42029780, "size": 200, }, "currentScopes.js": { - "offset": 42252390, + "offset": 42029980, "size": 3900, }, "currentScopes.js.map": { - "offset": 42256290, + "offset": 42033880, "size": 7260, }, "debug-build.js": { - "offset": 42263540, + "offset": 42041130, "size": 530, }, "debug-build.js.map": { - "offset": 42264070, + "offset": 42041660, "size": 610, }, "defaultScopes.js": { - "offset": 42264680, + "offset": 42042260, "size": 660, }, "defaultScopes.js.map": { - "offset": 42265330, + "offset": 42042920, "size": 880, }, "envelope.js": { - "offset": 42266210, + "offset": 42043790, "size": 4560, }, "envelope.js.map": { - "offset": 42270760, + "offset": 42048350, "size": 9230, }, "eventProcessors.js": { - "offset": 42279990, + "offset": 42057570, "size": 1310, }, "eventProcessors.js.map": { - "offset": 42281290, + "offset": 42058880, "size": 2430, }, "exports.js": { - "offset": 42283720, + "offset": 42061310, "size": 11920, }, "exports.js.map": { - "offset": 42295640, + "offset": 42073220, "size": 18040, }, "feedback.js": { - "offset": 42313670, + "offset": 42091260, "size": 1010, }, "feedback.js.map": { - "offset": 42314680, + "offset": 42092270, "size": 2010, }, "fetch.js": { - "offset": 42316690, + "offset": 42094270, "size": 8470, }, "fetch.js.map": { - "offset": 42325150, + "offset": 42102740, "size": 15440, }, "getCurrentHubShim.js": { - "offset": 42340590, + "offset": 42118180, "size": 2870, }, "getCurrentHubShim.js.map": { - "offset": 42343460, + "offset": 42121050, "size": 4540, }, "index.js": { - "offset": 42348000, + "offset": 42125590, "size": 26120, }, "index.js.map": { - "offset": 42374120, + "offset": 42151710, "size": 540, }, "integration.js": { - "offset": 42374650, + "offset": 42152240, "size": 6000, }, "integration.js.map": { - "offset": 42380650, + "offset": 42158240, "size": 10220, }, "integrations": { "files": { "captureconsole.js": { - "offset": 42390870, + "offset": 42168460, "size": 2400, }, "captureconsole.js.map": { - "offset": 42393260, + "offset": 42170850, "size": 4930, }, "debug.js": { - "offset": 42398190, + "offset": 42175770, "size": 1640, }, "debug.js.map": { - "offset": 42399820, + "offset": 42177410, "size": 3140, }, "dedupe.js": { - "offset": 42402950, + "offset": 42180540, "size": 5150, }, "dedupe.js.map": { - "offset": 42408100, + "offset": 42185680, "size": 9190, }, "extraerrordata.js": { - "offset": 42417280, + "offset": 42194870, "size": 3940, }, "extraerrordata.js.map": { - "offset": 42421210, + "offset": 42198800, "size": 7460, }, "functiontostring.js": { - "offset": 42428670, + "offset": 42206260, "size": 1690, }, "functiontostring.js.map": { - "offset": 42430360, + "offset": 42207950, "size": 2730, }, "inboundfilters.js": { - "offset": 42433080, + "offset": 42210670, "size": 8090, }, "inboundfilters.js.map": { - "offset": 42441170, + "offset": 42218750, "size": 14750, }, "linkederrors.js": { - "offset": 42455910, + "offset": 42233500, "size": 1050, }, "linkederrors.js.map": { - "offset": 42456960, + "offset": 42234550, "size": 1900, }, "metadata.js": { - "offset": 42458850, + "offset": 42236440, "size": 1680, }, "metadata.js.map": { - "offset": 42460520, + "offset": 42238110, "size": 2680, }, "requestdata.js": { - "offset": 42463200, + "offset": 42240790, "size": 4240, }, "requestdata.js.map": { - "offset": 42467430, + "offset": 42245020, "size": 8090, }, "rewriteframes.js": { - "offset": 42475520, + "offset": 42253110, "size": 3250, }, "rewriteframes.js.map": { - "offset": 42478770, + "offset": 42256350, "size": 8080, }, "sessiontiming.js": { - "offset": 42486840, + "offset": 42264430, "size": 1250, }, "sessiontiming.js.map": { - "offset": 42488080, + "offset": 42265670, "size": 1930, }, "third-party-errors-filter.js": { - "offset": 42490010, + "offset": 42267590, "size": 3260, }, "third-party-errors-filter.js.map": { - "offset": 42493260, + "offset": 42270850, "size": 7460, }, "zoderrors.js": { - "offset": 42500710, + "offset": 42278300, "size": 2740, }, "zoderrors.js.map": { - "offset": 42503450, + "offset": 42281040, "size": 5930, }, }, }, "metadata.js": { - "offset": 42509380, + "offset": 42286970, "size": 3140, }, "metadata.js.map": { - "offset": 42512520, + "offset": 42290100, "size": 5010, }, "metrics": { "files": { "aggregator.js": { - "offset": 42517520, + "offset": 42295110, "size": 6260, }, "aggregator.js.map": { - "offset": 42523770, + "offset": 42301360, "size": 10620, }, "browser-aggregator.js": { - "offset": 42534390, + "offset": 42311980, "size": 3130, }, "browser-aggregator.js.map": { - "offset": 42537520, + "offset": 42315110, "size": 5830, }, "constants.js": { - "offset": 42543340, + "offset": 42320930, "size": 1090, }, "constants.js.map": { - "offset": 42544430, + "offset": 42322020, "size": 1100, }, "envelope.js": { - "offset": 42545530, + "offset": 42323110, "size": 1760, }, "envelope.js.map": { - "offset": 42547280, + "offset": 42324870, "size": 3360, }, "exports-default.js": { - "offset": 42550630, + "offset": 42328220, "size": 2770, }, "exports-default.js.map": { - "offset": 42553400, + "offset": 42330990, "size": 4720, }, "exports.js": { - "offset": 42558110, + "offset": 42335700, "size": 5550, }, "exports.js.map": { - "offset": 42563660, + "offset": 42341250, "size": 10210, }, "instance.js": { - "offset": 42573860, + "offset": 42351450, "size": 2390, }, "instance.js.map": { - "offset": 42576250, + "offset": 42353830, "size": 5320, }, "metric-summary.js": { - "offset": 42581560, + "offset": 42359150, "size": 1740, }, "metric-summary.js.map": { - "offset": 42583300, + "offset": 42360880, "size": 4010, }, "utils.js": { - "offset": 42587310, + "offset": 42364890, "size": 3320, }, "utils.js.map": { - "offset": 42590630, + "offset": 42368210, "size": 6470, }, }, }, "profiling.js": { - "offset": 42597090, + "offset": 42374680, "size": 2380, }, "profiling.js.map": { - "offset": 42599460, + "offset": 42377050, "size": 3860, }, "scope.js": { - "offset": 42603320, + "offset": 42380910, "size": 13390, }, "scope.js.map": { - "offset": 42616710, + "offset": 42394290, "size": 26880, }, "sdk.js": { - "offset": 42643580, + "offset": 42421170, "size": 1460, }, "sdk.js.map": { - "offset": 42645040, + "offset": 42422620, "size": 2360, }, "semanticAttributes.js": { - "offset": 42647390, + "offset": 42424980, "size": 3230, }, "semanticAttributes.js.map": { - "offset": 42650610, + "offset": 42428200, "size": 2690, }, "server-runtime-client.js": { - "offset": 42653300, + "offset": 42430880, "size": 9310, }, "server-runtime-client.js.map": { - "offset": 42662610, + "offset": 42440190, "size": 15830, }, "session.js": { - "offset": 42678430, + "offset": 42456010, "size": 5430, }, "session.js.map": { - "offset": 42683850, + "offset": 42461440, "size": 9380, }, "sessionflusher.js": { - "offset": 42693220, + "offset": 42470810, "size": 4360, }, "sessionflusher.js.map": { - "offset": 42697580, + "offset": 42475170, "size": 7670, }, "tracing": { "files": { "dynamicSamplingContext.js": { - "offset": 42705250, + "offset": 42482840, "size": 4470, }, "dynamicSamplingContext.js.map": { - "offset": 42709710, + "offset": 42487300, "size": 7400, }, "errors.js": { - "offset": 42717110, + "offset": 42494700, "size": 1630, }, "errors.js.map": { - "offset": 42718740, + "offset": 42496330, "size": 2510, }, "hubextensions.js": { - "offset": 42721250, + "offset": 42498840, "size": 500, }, "hubextensions.js.map": { - "offset": 42721740, + "offset": 42499330, "size": 620, }, "idleSpan.js": { - "offset": 42722360, + "offset": 42499940, "size": 10700, }, "idleSpan.js.map": { - "offset": 42733050, + "offset": 42510640, "size": 20360, }, "logSpans.js": { - "offset": 42753400, + "offset": 42530990, "size": 1880, }, "logSpans.js.map": { - "offset": 42755280, + "offset": 42532870, "size": 3700, }, "measurement.js": { - "offset": 42758970, + "offset": 42536560, "size": 1690, }, "measurement.js.map": { - "offset": 42760660, + "offset": 42538250, "size": 2970, }, "sampling.js": { - "offset": 42763630, + "offset": 42541220, "size": 3480, }, "sampling.js.map": { - "offset": 42767100, + "offset": 42544690, "size": 5250, }, "sentryNonRecordingSpan.js": { - "offset": 42772350, + "offset": 42549930, "size": 1970, }, "sentryNonRecordingSpan.js.map": { - "offset": 42774310, + "offset": 42551900, "size": 3800, }, "sentrySpan.js": { - "offset": 42778110, + "offset": 42555700, "size": 12630, }, "sentrySpan.js.map": { - "offset": 42790730, + "offset": 42568320, "size": 23100, }, "spanstatus.js": { - "offset": 42813820, + "offset": 42591410, "size": 2500, }, "spanstatus.js.map": { - "offset": 42816320, + "offset": 42593900, "size": 4220, }, "trace.js": { - "offset": 42820530, + "offset": 42598120, "size": 15220, }, "trace.js.map": { - "offset": 42835740, + "offset": 42613330, "size": 25620, }, "utils.js": { - "offset": 42861360, + "offset": 42638950, "size": 1020, }, "utils.js.map": { - "offset": 42862380, + "offset": 42639960, "size": 1770, }, }, @@ -65434,143 +65286,143 @@ exports[`node_module collectors > yarn ms 2`] = ` "transports": { "files": { "base.js": { - "offset": 42864140, + "offset": 42641730, "size": 3480, }, "base.js.map": { - "offset": 42867620, + "offset": 42645210, "size": 6680, }, "multiplexed.js": { - "offset": 42874290, + "offset": 42651880, "size": 3860, }, "multiplexed.js.map": { - "offset": 42878150, + "offset": 42655740, "size": 8680, }, "offline.js": { - "offset": 42886820, + "offset": 42664410, "size": 4480, }, "offline.js.map": { - "offset": 42891300, + "offset": 42668890, "size": 9190, }, }, }, "trpc.js": { - "offset": 42900480, + "offset": 42678070, "size": 2810, }, "trpc.js.map": { - "offset": 42903290, + "offset": 42680880, "size": 5100, }, "utils": { "files": { "applyScopeDataToEvent.js": { - "offset": 43435960, + "offset": 43213540, "size": 5410, }, "applyScopeDataToEvent.js.map": { - "offset": 43441360, + "offset": 43218950, "size": 10930, }, "handleCallbackErrors.js": { - "offset": 43452290, + "offset": 43229870, "size": 1800, }, "handleCallbackErrors.js.map": { - "offset": 43454080, + "offset": 43231670, "size": 2920, }, "hasTracingEnabled.js": { - "offset": 43457000, + "offset": 43234590, "size": 870, }, "hasTracingEnabled.js.map": { - "offset": 43457870, + "offset": 43235450, "size": 1450, }, "isSentryRequestUrl.js": { - "offset": 43459310, + "offset": 43236900, "size": 780, }, "isSentryRequestUrl.js.map": { - "offset": 43460090, + "offset": 43237680, "size": 1730, }, "merge.js": { - "offset": 43461820, + "offset": 43239400, "size": 1100, }, "merge.js.map": { - "offset": 43462910, + "offset": 43240500, "size": 1810, }, "meta.js": { - "offset": 43464710, + "offset": 43242300, "size": 830, }, "meta.js.map": { - "offset": 43465540, + "offset": 43243130, "size": 1190, }, "parameterize.js": { - "offset": 43466720, + "offset": 43244310, "size": 1010, }, "parameterize.js.map": { - "offset": 43467720, + "offset": 43245310, "size": 1550, }, "parseSampleRate.js": { - "offset": 43469260, + "offset": 43246850, "size": 1130, }, "parseSampleRate.js.map": { - "offset": 43470380, + "offset": 43247970, "size": 1750, }, "prepareEvent.js": { - "offset": 43472130, + "offset": 43249720, "size": 11860, }, "prepareEvent.js.map": { - "offset": 43483980, + "offset": 43261570, "size": 20820, }, "sdkMetadata.js": { - "offset": 43504800, + "offset": 43282390, "size": 1160, }, "sdkMetadata.js.map": { - "offset": 43505950, + "offset": 43283540, "size": 1820, }, "spanOnScope.js": { - "offset": 43507770, + "offset": 43285360, "size": 900, }, "spanOnScope.js.map": { - "offset": 43508670, + "offset": 43286250, "size": 1490, }, "spanUtils.js": { - "offset": 43510160, + "offset": 43287740, "size": 10880, }, "spanUtils.js.map": { - "offset": 43521030, + "offset": 43298620, "size": 17950, }, "traceData.js": { - "offset": 43538970, + "offset": 43316560, "size": 2760, }, "traceData.js.map": { - "offset": 43541730, + "offset": 43319320, "size": 4240, }, }, @@ -65578,463 +65430,463 @@ exports[`node_module collectors > yarn ms 2`] = ` "utils-hoist": { "files": { "aggregate-errors.js": { - "offset": 42908380, + "offset": 42685970, "size": 4590, }, "aggregate-errors.js.map": { - "offset": 42912970, + "offset": 42690560, "size": 8440, }, "anr.js": { - "offset": 42921410, + "offset": 42699000, "size": 1980, }, "anr.js.map": { - "offset": 42923390, + "offset": 42700980, "size": 4050, }, "array.js": { - "offset": 42927430, + "offset": 42705020, "size": 540, }, "array.js.map": { - "offset": 42927970, + "offset": 42705560, "size": 1120, }, "baggage.js": { - "offset": 42929080, + "offset": 42706670, "size": 5990, }, "baggage.js.map": { - "offset": 42935070, + "offset": 42712660, "size": 9350, }, "breadcrumb-log-level.js": { - "offset": 42944420, + "offset": 42722000, "size": 650, }, "breadcrumb-log-level.js.map": { - "offset": 42945060, + "offset": 42722650, "size": 1020, }, "browser.js": { - "offset": 42946080, + "offset": 42723670, "size": 6000, }, "browser.js.map": { - "offset": 42952080, + "offset": 42729670, "size": 10560, }, "buildPolyfills": { "files": { "_asyncNullishCoalesce.js": { - "offset": 42962640, + "offset": 42740230, "size": 2460, }, "_asyncNullishCoalesce.js.map": { - "offset": 42965100, + "offset": 42742690, "size": 2900, }, "_asyncOptionalChain.js": { - "offset": 42967990, + "offset": 42745580, "size": 2210, }, "_asyncOptionalChain.js.map": { - "offset": 42970200, + "offset": 42747790, "size": 4690, }, "_asyncOptionalChainDelete.js": { - "offset": 42974890, + "offset": 42752480, "size": 2920, }, "_asyncOptionalChainDelete.js.map": { - "offset": 42977810, + "offset": 42755390, "size": 3430, }, "_nullishCoalesce.js": { - "offset": 42981230, + "offset": 42758820, "size": 2330, }, "_nullishCoalesce.js.map": { - "offset": 42983550, + "offset": 42761140, "size": 2760, }, "_optionalChain.js": { - "offset": 42986310, + "offset": 42763900, "size": 2080, }, "_optionalChain.js.map": { - "offset": 42988390, + "offset": 42765970, "size": 4530, }, "_optionalChainDelete.js": { - "offset": 42992910, + "offset": 42770500, "size": 2930, }, "_optionalChainDelete.js.map": { - "offset": 42995840, + "offset": 42773420, "size": 3390, }, }, }, "cache.js": { - "offset": 42999220, + "offset": 42776810, "size": 1740, }, "cache.js.map": { - "offset": 43000960, + "offset": 42778540, "size": 3290, }, "clientreport.js": { - "offset": 43004240, + "offset": 42781830, "size": 730, }, "clientreport.js.map": { - "offset": 43004970, + "offset": 42782560, "size": 1350, }, "cookie.js": { - "offset": 43006310, + "offset": 42783900, "size": 2560, }, "cookie.js.map": { - "offset": 43008870, + "offset": 42786460, "size": 4060, }, "debug-build.js": { - "offset": 43012920, + "offset": 42790510, "size": 530, }, "debug-build.js.map": { - "offset": 43013450, + "offset": 42791040, "size": 620, }, "debug-ids.js": { - "offset": 43014070, + "offset": 42791660, "size": 2180, }, "debug-ids.js.map": { - "offset": 43016250, + "offset": 42793840, "size": 4260, }, "dsn.js": { - "offset": 43020500, + "offset": 42798090, "size": 3720, }, "dsn.js.map": { - "offset": 43024220, + "offset": 42801810, "size": 7390, }, "env.js": { - "offset": 43031610, + "offset": 42809200, "size": 1700, }, "env.js.map": { - "offset": 43033300, + "offset": 42810890, "size": 2080, }, "envelope.js": { - "offset": 43035370, + "offset": 42812960, "size": 7590, }, "envelope.js.map": { - "offset": 43042960, + "offset": 42820540, "size": 13960, }, "error.js": { - "offset": 43056910, + "offset": 42834500, "size": 840, }, "error.js.map": { - "offset": 43057740, + "offset": 42835330, "size": 1370, }, "eventbuilder.js": { - "offset": 43059100, + "offset": 42836690, "size": 5160, }, "eventbuilder.js.map": { - "offset": 43064250, + "offset": 42841840, "size": 10580, }, "instrument": { "files": { "console.js": { - "offset": 43074830, + "offset": 42852410, "size": 1370, }, "console.js.map": { - "offset": 43076190, + "offset": 42853780, "size": 2570, }, "fetch.js": { - "offset": 43078760, + "offset": 42856350, "size": 7210, }, "fetch.js.map": { - "offset": 43085970, + "offset": 42863550, "size": 12490, }, "globalError.js": { - "offset": 43098450, + "offset": 42876040, "size": 1450, }, "globalError.js.map": { - "offset": 43099900, + "offset": 42877490, "size": 2490, }, "globalUnhandledRejection.js": { - "offset": 43102380, + "offset": 42879970, "size": 1560, }, "globalUnhandledRejection.js.map": { - "offset": 43103940, + "offset": 42881520, "size": 2450, }, "handlers.js": { - "offset": 43106380, + "offset": 42883960, "size": 1760, }, "handlers.js.map": { - "offset": 43108130, + "offset": 42885720, "size": 3450, }, }, }, "is.js": { - "offset": 43111580, + "offset": 42889170, "size": 5600, }, "is.js.map": { - "offset": 43117170, + "offset": 42894760, "size": 8660, }, "isBrowser.js": { - "offset": 43125830, + "offset": 42903420, "size": 690, }, "isBrowser.js.map": { - "offset": 43126510, + "offset": 42904100, "size": 1110, }, "logger.js": { - "offset": 43127620, + "offset": 42905200, "size": 2380, }, "logger.js.map": { - "offset": 43129990, + "offset": 42907580, "size": 4630, }, "lru.js": { - "offset": 43134620, + "offset": 42912210, "size": 1560, }, "lru.js.map": { - "offset": 43136180, + "offset": 42913770, "size": 3200, }, "memo.js": { - "offset": 43139370, + "offset": 42916960, "size": 1250, }, "memo.js.map": { - "offset": 43140620, + "offset": 42918210, "size": 2480, }, "misc.js": { - "offset": 43143090, + "offset": 42920680, "size": 8840, }, "misc.js.map": { - "offset": 43151920, + "offset": 42929510, "size": 14600, }, "node-stack-trace.js": { - "offset": 43166520, + "offset": 42944110, "size": 4090, }, "node-stack-trace.js.map": { - "offset": 43170610, + "offset": 42948190, "size": 8830, }, "node.js": { - "offset": 43179430, + "offset": 42957020, "size": 2500, }, "node.js.map": { - "offset": 43181920, + "offset": 42959510, "size": 3470, }, "normalize.js": { - "offset": 43185380, + "offset": 42962970, "size": 10640, }, "normalize.js.map": { - "offset": 43196010, + "offset": 42973600, "size": 17280, }, "object.js": { - "offset": 43213280, + "offset": 42990870, "size": 10230, }, "object.js.map": { - "offset": 43223510, + "offset": 43001100, "size": 17220, }, "path.js": { - "offset": 43240720, + "offset": 43018310, "size": 5910, }, "path.js.map": { - "offset": 43246630, + "offset": 43024220, "size": 11010, }, "promisebuffer.js": { - "offset": 43257640, + "offset": 43035220, "size": 3630, }, "promisebuffer.js.map": { - "offset": 43261260, + "offset": 43038850, "size": 5990, }, "propagationContext.js": { - "offset": 43267250, + "offset": 43044830, "size": 760, }, "propagationContext.js.map": { - "offset": 43268000, + "offset": 43045590, "size": 1100, }, "ratelimit.js": { - "offset": 43269100, + "offset": 43046680, "size": 3910, }, "ratelimit.js.map": { - "offset": 43273010, + "offset": 43050590, "size": 6380, }, "requestdata.js": { - "offset": 43279380, + "offset": 43056970, "size": 16610, }, "requestdata.js.map": { - "offset": 43295990, + "offset": 43073580, "size": 29780, }, "severity.js": { - "offset": 43325760, + "offset": 43103350, "size": 860, }, "severity.js.map": { - "offset": 43326620, + "offset": 43104210, "size": 1260, }, "stacktrace.js": { - "offset": 43327870, + "offset": 43105460, "size": 5590, }, "stacktrace.js.map": { - "offset": 43333460, + "offset": 43111050, "size": 9090, }, "string.js": { - "offset": 43342550, + "offset": 43120140, "size": 4180, }, "string.js.map": { - "offset": 43346730, + "offset": 43124310, "size": 7030, }, "supports.js": { - "offset": 43353750, + "offset": 43131340, "size": 4620, }, "supports.js.map": { - "offset": 43358360, + "offset": 43135950, "size": 7080, }, "syncpromise.js": { - "offset": 43365440, + "offset": 43143030, "size": 4380, }, "syncpromise.js.map": { - "offset": 43369810, + "offset": 43147400, "size": 9120, }, "time.js": { - "offset": 43378930, + "offset": 43156520, "size": 5860, }, "time.js.map": { - "offset": 43384790, + "offset": 43162370, "size": 8140, }, "tracing.js": { - "offset": 43392920, + "offset": 43170510, "size": 2680, }, "tracing.js.map": { - "offset": 43395590, + "offset": 43173180, "size": 4440, }, "url.js": { - "offset": 43400030, + "offset": 43177620, "size": 2540, }, "url.js.map": { - "offset": 43402570, + "offset": 43180160, "size": 4110, }, "vendor": { "files": { "escapeStringForRegex.js": { - "offset": 43406670, + "offset": 43184260, "size": 2200, }, "escapeStringForRegex.js.map": { - "offset": 43408870, + "offset": 43186460, "size": 2560, }, "getIpAddress.js": { - "offset": 43411420, + "offset": 43189010, "size": 4970, }, "getIpAddress.js.map": { - "offset": 43416390, + "offset": 43193980, "size": 7060, }, "supportsHistory.js": { - "offset": 43423440, + "offset": 43201030, "size": 1110, }, "supportsHistory.js.map": { - "offset": 43424550, + "offset": 43202130, "size": 2780, }, }, }, "vercelWaitUntil.js": { - "offset": 43427320, + "offset": 43204910, "size": 780, }, "vercelWaitUntil.js.map": { - "offset": 43428090, + "offset": 43205680, "size": 1350, }, "version.js": { - "offset": 43429430, + "offset": 43207020, "size": 220, }, "version.js.map": { - "offset": 43429650, + "offset": 43207240, "size": 380, }, "worldwide.js": { - "offset": 43430030, + "offset": 43207620, "size": 1210, }, "worldwide.js.map": { - "offset": 43431230, + "offset": 43208820, "size": 4730, }, }, @@ -66044,509 +65896,509 @@ exports[`node_module collectors > yarn ms 2`] = ` "esm": { "files": { "api.js": { - "offset": 43545960, + "offset": 43323550, "size": 2450, }, "api.js.map": { - "offset": 43548400, + "offset": 43325990, "size": 5160, }, "asyncContext": { "files": { "index.js": { - "offset": 43553560, + "offset": 43331150, "size": 870, }, "index.js.map": { - "offset": 43554430, + "offset": 43332020, "size": 1530, }, "stackStrategy.js": { - "offset": 43555950, + "offset": 43333540, "size": 3670, }, "stackStrategy.js.map": { - "offset": 43559620, + "offset": 43337210, "size": 7520, }, }, }, "baseclient.js": { - "offset": 43567140, + "offset": 43344730, "size": 26170, }, "baseclient.js.map": { - "offset": 43593300, + "offset": 43370890, "size": 51000, }, "breadcrumbs.js": { - "offset": 43644300, + "offset": 43421890, "size": 1340, }, "breadcrumbs.js.map": { - "offset": 43645640, + "offset": 43423230, "size": 2310, }, "carrier.js": { - "offset": 43647940, + "offset": 43425530, "size": 1340, }, "carrier.js.map": { - "offset": 43649280, + "offset": 43426870, "size": 2760, }, "checkin.js": { - "offset": 43652040, + "offset": 43429630, "size": 1000, }, "checkin.js.map": { - "offset": 43653040, + "offset": 43430630, "size": 2320, }, "constants.js": { - "offset": 43655350, + "offset": 43432940, "size": 120, }, "constants.js.map": { - "offset": 43655460, + "offset": 43433050, "size": 200, }, "currentScopes.js": { - "offset": 43655660, + "offset": 43433250, "size": 3610, }, "currentScopes.js.map": { - "offset": 43659270, + "offset": 43436850, "size": 7140, }, "debug-build.js": { - "offset": 43666400, + "offset": 43443990, "size": 460, }, "debug-build.js.map": { - "offset": 43666850, + "offset": 43444440, "size": 610, }, "defaultScopes.js": { - "offset": 43667450, + "offset": 43445040, "size": 510, }, "defaultScopes.js.map": { - "offset": 43667960, + "offset": 43445550, "size": 850, }, "envelope.js": { - "offset": 43668810, + "offset": 43446400, "size": 4410, }, "envelope.js.map": { - "offset": 43673210, + "offset": 43450800, "size": 9000, }, "eventProcessors.js": { - "offset": 43682210, + "offset": 43459800, "size": 1190, }, "eventProcessors.js.map": { - "offset": 43683400, + "offset": 43460990, "size": 2380, }, "exports.js": { - "offset": 43685780, + "offset": 43463360, "size": 11040, }, "exports.js.map": { - "offset": 43696810, + "offset": 43474400, "size": 17690, }, "feedback.js": { - "offset": 43714500, + "offset": 43492090, "size": 920, }, "feedback.js.map": { - "offset": 43715410, + "offset": 43493000, "size": 1960, }, "fetch.js": { - "offset": 43717360, + "offset": 43494950, "size": 8260, }, "fetch.js.map": { - "offset": 43725620, + "offset": 43503200, "size": 15160, }, "getCurrentHubShim.js": { - "offset": 43740770, + "offset": 43518360, "size": 2500, }, "getCurrentHubShim.js.map": { - "offset": 43743270, + "offset": 43520860, "size": 4310, }, "index.js": { - "offset": 43747580, + "offset": 43525160, "size": 11800, }, "index.js.map": { - "offset": 43759370, + "offset": 43536960, "size": 210, }, "integration.js": { - "offset": 43759580, + "offset": 43537170, "size": 5670, }, "integration.js.map": { - "offset": 43765250, + "offset": 43542830, "size": 10170, }, "integrations": { "files": { "captureconsole.js": { - "offset": 43775410, + "offset": 43553000, "size": 2280, }, "captureconsole.js.map": { - "offset": 43777690, + "offset": 43555270, "size": 4710, }, "debug.js": { - "offset": 43782390, + "offset": 43559980, "size": 1550, }, "debug.js.map": { - "offset": 43783930, + "offset": 43561520, "size": 3100, }, "dedupe.js": { - "offset": 43787030, + "offset": 43564610, "size": 5000, }, "dedupe.js.map": { - "offset": 43792020, + "offset": 43569610, "size": 9120, }, "extraerrordata.js": { - "offset": 43801130, + "offset": 43578720, "size": 3820, }, "extraerrordata.js.map": { - "offset": 43804950, + "offset": 43582540, "size": 7330, }, "functiontostring.js": { - "offset": 43812270, + "offset": 43589860, "size": 1580, }, "functiontostring.js.map": { - "offset": 43813850, + "offset": 43591430, "size": 2670, }, "inboundfilters.js": { - "offset": 43816510, + "offset": 43594100, "size": 7830, }, "inboundfilters.js.map": { - "offset": 43824340, + "offset": 43601930, "size": 14630, }, "linkederrors.js": { - "offset": 43838960, + "offset": 43616550, "size": 940, }, "linkederrors.js.map": { - "offset": 43839900, + "offset": 43617490, "size": 1820, }, "metadata.js": { - "offset": 43841720, + "offset": 43619300, "size": 1610, }, "metadata.js.map": { - "offset": 43843320, + "offset": 43620910, "size": 2560, }, "requestdata.js": { - "offset": 43845870, + "offset": 43623460, "size": 4170, }, "requestdata.js.map": { - "offset": 43850030, + "offset": 43627620, "size": 8010, }, "rewriteframes.js": { - "offset": 43858040, + "offset": 43635630, "size": 3110, }, "rewriteframes.js.map": { - "offset": 43861150, + "offset": 43638730, "size": 8010, }, "sessiontiming.js": { - "offset": 43869160, + "offset": 43646740, "size": 1150, }, "sessiontiming.js.map": { - "offset": 43870310, + "offset": 43647890, "size": 1880, }, "third-party-errors-filter.js": { - "offset": 43872180, + "offset": 43649770, "size": 3170, }, "third-party-errors-filter.js.map": { - "offset": 43875350, + "offset": 43652940, "size": 7320, }, "zoderrors.js": { - "offset": 43882670, + "offset": 43660260, "size": 2620, }, "zoderrors.js.map": { - "offset": 43885280, + "offset": 43662870, "size": 5890, }, }, }, "metadata.js": { - "offset": 43891160, + "offset": 43668750, "size": 2960, }, "metadata.js.map": { - "offset": 43894110, + "offset": 43671700, "size": 4990, }, "metrics": { "files": { "aggregator.js": { - "offset": 43899100, + "offset": 43676680, "size": 6210, }, "aggregator.js.map": { - "offset": 43905300, + "offset": 43682890, "size": 10390, }, "browser-aggregator.js": { - "offset": 43915680, + "offset": 43693270, "size": 3100, }, "browser-aggregator.js.map": { - "offset": 43918780, + "offset": 43696370, "size": 5600, }, "constants.js": { - "offset": 43924380, + "offset": 43701970, "size": 820, }, "constants.js.map": { - "offset": 43925200, + "offset": 43702790, "size": 1090, }, "envelope.js": { - "offset": 43926290, + "offset": 43703880, "size": 1640, }, "envelope.js.map": { - "offset": 43927920, + "offset": 43705510, "size": 3270, }, "exports-default.js": { - "offset": 43931190, + "offset": 43708780, "size": 2570, }, "exports-default.js.map": { - "offset": 43933760, + "offset": 43711340, "size": 4690, }, "exports.js": { - "offset": 43938440, + "offset": 43716030, "size": 5450, }, "exports.js.map": { - "offset": 43943880, + "offset": 43721470, "size": 9940, }, "instance.js": { - "offset": 43953810, + "offset": 43731400, "size": 2250, }, "instance.js.map": { - "offset": 43956060, + "offset": 43733640, "size": 5210, }, "metric-summary.js": { - "offset": 43961260, + "offset": 43738850, "size": 1610, }, "metric-summary.js.map": { - "offset": 43962870, + "offset": 43740460, "size": 3990, }, "utils.js": { - "offset": 43966860, + "offset": 43744450, "size": 3120, }, "utils.js.map": { - "offset": 43969980, + "offset": 43747560, "size": 6440, }, }, }, "package.json": { - "offset": 43976410, + "offset": 43754000, "size": 60, }, "profiling.js": { - "offset": 43976470, + "offset": 43754060, "size": 2170, }, "profiling.js.map": { - "offset": 43978630, + "offset": 43756220, "size": 3800, }, "scope.js": { - "offset": 43982430, + "offset": 43760020, "size": 13200, }, "scope.js.map": { - "offset": 43995630, + "offset": 43773210, "size": 26700, }, "sdk.js": { - "offset": 44022320, + "offset": 43799910, "size": 1320, }, "sdk.js.map": { - "offset": 44023640, + "offset": 43801220, "size": 2290, }, "semanticAttributes.js": { - "offset": 44025920, + "offset": 43803510, "size": 2490, }, "semanticAttributes.js.map": { - "offset": 44028400, + "offset": 43805990, "size": 2670, }, "server-runtime-client.js": { - "offset": 44031070, + "offset": 43808660, "size": 9100, }, "server-runtime-client.js.map": { - "offset": 44040170, + "offset": 43817760, "size": 15420, }, "session.js": { - "offset": 44055590, + "offset": 43833170, "size": 5300, }, "session.js.map": { - "offset": 44060880, + "offset": 43838470, "size": 9320, }, "sessionflusher.js": { - "offset": 44070190, + "offset": 43847780, "size": 4280, }, "sessionflusher.js.map": { - "offset": 44074460, + "offset": 43852050, "size": 7630, }, "tracing": { "files": { "dynamicSamplingContext.js": { - "offset": 44082090, + "offset": 43859680, "size": 4280, }, "dynamicSamplingContext.js.map": { - "offset": 44086360, + "offset": 43863950, "size": 7080, }, "errors.js": { - "offset": 44093440, + "offset": 43871030, "size": 1520, }, "errors.js.map": { - "offset": 44094950, + "offset": 43872540, "size": 2340, }, "hubextensions.js": { - "offset": 44097290, + "offset": 43874870, "size": 430, }, "hubextensions.js.map": { - "offset": 44097710, + "offset": 43875300, "size": 580, }, "idleSpan.js": { - "offset": 44098290, + "offset": 43875880, "size": 10390, }, "idleSpan.js.map": { - "offset": 44108670, + "offset": 43886260, "size": 19980, }, "logSpans.js": { - "offset": 44128650, + "offset": 43906230, "size": 1710, }, "logSpans.js.map": { - "offset": 44130350, + "offset": 43907940, "size": 3610, }, "measurement.js": { - "offset": 44133960, + "offset": 43911550, "size": 1550, }, "measurement.js.map": { - "offset": 44135500, + "offset": 43913090, "size": 2820, }, "sampling.js": { - "offset": 44138310, + "offset": 43915900, "size": 3300, }, "sampling.js.map": { - "offset": 44141610, + "offset": 43919200, "size": 5150, }, "sentryNonRecordingSpan.js": { - "offset": 44146760, + "offset": 43924350, "size": 1860, }, "sentryNonRecordingSpan.js.map": { - "offset": 44148610, + "offset": 43926200, "size": 3740, }, "sentrySpan.js": { - "offset": 44152350, + "offset": 43929930, "size": 12340, }, "sentrySpan.js.map": { - "offset": 44164690, + "offset": 43942270, "size": 22350, }, "spanstatus.js": { - "offset": 44187030, + "offset": 43964620, "size": 2300, }, "spanstatus.js.map": { - "offset": 44189330, + "offset": 43966910, "size": 4210, }, "trace.js": { - "offset": 44193530, + "offset": 43971120, "size": 14510, }, "trace.js.map": { - "offset": 44208040, + "offset": 43985630, "size": 24930, }, "utils.js": { - "offset": 44232970, + "offset": 44010550, "size": 900, }, "utils.js.map": { - "offset": 44233870, + "offset": 44011450, "size": 1740, }, }, @@ -66554,143 +66406,143 @@ exports[`node_module collectors > yarn ms 2`] = ` "transports": { "files": { "base.js": { - "offset": 44235600, + "offset": 44013190, "size": 3310, }, "base.js.map": { - "offset": 44238900, + "offset": 44016490, "size": 6420, }, "multiplexed.js": { - "offset": 44245320, + "offset": 44022910, "size": 3770, }, "multiplexed.js.map": { - "offset": 44249090, + "offset": 44026680, "size": 8550, }, "offline.js": { - "offset": 44257630, + "offset": 44035220, "size": 4320, }, "offline.js.map": { - "offset": 44261950, + "offset": 44039540, "size": 9090, }, }, }, "trpc.js": { - "offset": 44271030, + "offset": 44048620, "size": 2680, }, "trpc.js.map": { - "offset": 44273700, + "offset": 44051290, "size": 4940, }, "utils": { "files": { "applyScopeDataToEvent.js": { - "offset": 44795320, + "offset": 44572910, "size": 5220, }, "applyScopeDataToEvent.js.map": { - "offset": 44800540, + "offset": 44578120, "size": 10810, }, "handleCallbackErrors.js": { - "offset": 44811340, + "offset": 44588930, "size": 1720, }, "handleCallbackErrors.js.map": { - "offset": 44813060, + "offset": 44590640, "size": 2910, }, "hasTracingEnabled.js": { - "offset": 44815960, + "offset": 44593550, "size": 770, }, "hasTracingEnabled.js.map": { - "offset": 44816720, + "offset": 44594310, "size": 1440, }, "isSentryRequestUrl.js": { - "offset": 44818150, + "offset": 44595740, "size": 700, }, "isSentryRequestUrl.js.map": { - "offset": 44818850, + "offset": 44596440, "size": 1730, }, "merge.js": { - "offset": 44820570, + "offset": 44598160, "size": 1030, }, "merge.js.map": { - "offset": 44821600, + "offset": 44599190, "size": 1810, }, "meta.js": { - "offset": 44823400, + "offset": 44600990, "size": 740, }, "meta.js.map": { - "offset": 44824140, + "offset": 44601720, "size": 1170, }, "parameterize.js": { - "offset": 44825300, + "offset": 44602890, "size": 930, }, "parameterize.js.map": { - "offset": 44826220, + "offset": 44603810, "size": 1550, }, "parseSampleRate.js": { - "offset": 44827770, + "offset": 44605350, "size": 1030, }, "parseSampleRate.js.map": { - "offset": 44828790, + "offset": 44606380, "size": 1720, }, "prepareEvent.js": { - "offset": 44830510, + "offset": 44608100, "size": 11500, }, "prepareEvent.js.map": { - "offset": 44842000, + "offset": 44619590, "size": 20530, }, "sdkMetadata.js": { - "offset": 44862530, + "offset": 44640120, "size": 1070, }, "sdkMetadata.js.map": { - "offset": 44863590, + "offset": 44641180, "size": 1800, }, "spanOnScope.js": { - "offset": 44865390, + "offset": 44642980, "size": 800, }, "spanOnScope.js.map": { - "offset": 44866190, + "offset": 44643780, "size": 1460, }, "spanUtils.js": { - "offset": 44867650, + "offset": 44645240, "size": 10370, }, "spanUtils.js.map": { - "offset": 44878010, + "offset": 44655600, "size": 17440, }, "traceData.js": { - "offset": 44895450, + "offset": 44673040, "size": 2680, }, "traceData.js.map": { - "offset": 44898130, + "offset": 44675720, "size": 3900, }, }, @@ -66698,463 +66550,463 @@ exports[`node_module collectors > yarn ms 2`] = ` "utils-hoist": { "files": { "aggregate-errors.js": { - "offset": 44278640, + "offset": 44056230, "size": 4500, }, "aggregate-errors.js.map": { - "offset": 44283130, + "offset": 44060720, "size": 8410, }, "anr.js": { - "offset": 44291540, + "offset": 44069130, "size": 1850, }, "anr.js.map": { - "offset": 44293390, + "offset": 44070980, "size": 3990, }, "array.js": { - "offset": 44297370, + "offset": 44074960, "size": 470, }, "array.js.map": { - "offset": 44297840, + "offset": 44075430, "size": 1120, }, "baggage.js": { - "offset": 44298950, + "offset": 44076540, "size": 5650, }, "baggage.js.map": { - "offset": 44304590, + "offset": 44082180, "size": 9300, }, "breadcrumb-log-level.js": { - "offset": 44313890, + "offset": 44091480, "size": 550, }, "breadcrumb-log-level.js.map": { - "offset": 44314430, + "offset": 44092020, "size": 1020, }, "browser.js": { - "offset": 44315450, + "offset": 44093040, "size": 5840, }, "browser.js.map": { - "offset": 44321290, + "offset": 44098870, "size": 10530, }, "buildPolyfills": { "files": { "_asyncNullishCoalesce.js": { - "offset": 44331810, + "offset": 44109400, "size": 2360, }, "_asyncNullishCoalesce.js.map": { - "offset": 44334170, + "offset": 44111760, "size": 2880, }, "_asyncOptionalChain.js": { - "offset": 44337040, + "offset": 44114630, "size": 2130, }, "_asyncOptionalChain.js.map": { - "offset": 44339170, + "offset": 44116760, "size": 4690, }, "_asyncOptionalChainDelete.js": { - "offset": 44343850, + "offset": 44121440, "size": 2810, }, "_asyncOptionalChainDelete.js.map": { - "offset": 44346660, + "offset": 44124250, "size": 3400, }, "_nullishCoalesce.js": { - "offset": 44350060, + "offset": 44127650, "size": 2250, }, "_nullishCoalesce.js.map": { - "offset": 44352300, + "offset": 44129890, "size": 2760, }, "_optionalChain.js": { - "offset": 44355060, + "offset": 44132640, "size": 2000, }, "_optionalChain.js.map": { - "offset": 44357060, + "offset": 44134640, "size": 4530, }, "_optionalChainDelete.js": { - "offset": 44361580, + "offset": 44139170, "size": 2830, }, "_optionalChainDelete.js.map": { - "offset": 44364400, + "offset": 44141990, "size": 3370, }, }, }, "cache.js": { - "offset": 44367770, + "offset": 44145360, "size": 1660, }, "cache.js.map": { - "offset": 44369430, + "offset": 44147020, "size": 3290, }, "clientreport.js": { - "offset": 44372710, + "offset": 44150300, "size": 650, }, "clientreport.js.map": { - "offset": 44373360, + "offset": 44150940, "size": 1300, }, "cookie.js": { - "offset": 44374650, + "offset": 44152240, "size": 2490, }, "cookie.js.map": { - "offset": 44377140, + "offset": 44154720, "size": 4050, }, "debug-build.js": { - "offset": 44381190, + "offset": 44158770, "size": 460, }, "debug-build.js.map": { - "offset": 44381640, + "offset": 44159230, "size": 620, }, "debug-ids.js": { - "offset": 44382260, + "offset": 44159840, "size": 2050, }, "debug-ids.js.map": { - "offset": 44384300, + "offset": 44161890, "size": 4240, }, "dsn.js": { - "offset": 44388540, + "offset": 44166130, "size": 3580, }, "dsn.js.map": { - "offset": 44392110, + "offset": 44169700, "size": 7340, }, "env.js": { - "offset": 44399450, + "offset": 44177030, "size": 1590, }, "env.js.map": { - "offset": 44401040, + "offset": 44178620, "size": 2080, }, "envelope.js": { - "offset": 44403110, + "offset": 44180690, "size": 7090, }, "envelope.js.map": { - "offset": 44410190, + "offset": 44187780, "size": 13860, }, "error.js": { - "offset": 44424050, + "offset": 44201640, "size": 760, }, "error.js.map": { - "offset": 44424810, + "offset": 44202400, "size": 1360, }, "eventbuilder.js": { - "offset": 44426170, + "offset": 44203760, "size": 5070, }, "eventbuilder.js.map": { - "offset": 44431230, + "offset": 44208820, "size": 10400, }, "instrument": { "files": { "console.js": { - "offset": 44441620, + "offset": 44219210, "size": 1240, }, "console.js.map": { - "offset": 44442860, + "offset": 44220450, "size": 2440, }, "fetch.js": { - "offset": 44445300, + "offset": 44222890, "size": 6990, }, "fetch.js.map": { - "offset": 44452290, + "offset": 44229880, "size": 12310, }, "globalError.js": { - "offset": 44464590, + "offset": 44242180, "size": 1330, }, "globalError.js.map": { - "offset": 44465920, + "offset": 44243510, "size": 2410, }, "globalUnhandledRejection.js": { - "offset": 44468330, + "offset": 44245920, "size": 1420, }, "globalUnhandledRejection.js.map": { - "offset": 44469750, + "offset": 44247330, "size": 2370, }, "handlers.js": { - "offset": 44472110, + "offset": 44249700, "size": 1550, }, "handlers.js.map": { - "offset": 44473660, + "offset": 44251250, "size": 3400, }, }, }, "is.js": { - "offset": 44477060, + "offset": 44254640, "size": 5210, }, "is.js.map": { - "offset": 44482260, + "offset": 44259840, "size": 8650, }, "isBrowser.js": { - "offset": 44490900, + "offset": 44268490, "size": 600, }, "isBrowser.js.map": { - "offset": 44491500, + "offset": 44269090, "size": 1080, }, "logger.js": { - "offset": 44492570, + "offset": 44270160, "size": 2200, }, "logger.js.map": { - "offset": 44494760, + "offset": 44272350, "size": 4570, }, "lru.js": { - "offset": 44499330, + "offset": 44276920, "size": 1490, }, "lru.js.map": { - "offset": 44500820, + "offset": 44278410, "size": 3190, }, "memo.js": { - "offset": 44504010, + "offset": 44281600, "size": 1180, }, "memo.js.map": { - "offset": 44505180, + "offset": 44282770, "size": 2470, }, "misc.js": { - "offset": 44507650, + "offset": 44285240, "size": 8550, }, "misc.js.map": { - "offset": 44516200, + "offset": 44293790, "size": 14530, }, "node-stack-trace.js": { - "offset": 44530730, + "offset": 44308320, "size": 3960, }, "node-stack-trace.js.map": { - "offset": 44534690, + "offset": 44312270, "size": 8800, }, "node.js": { - "offset": 44543480, + "offset": 44321070, "size": 2380, }, "node.js.map": { - "offset": 44545860, + "offset": 44323450, "size": 3440, }, "normalize.js": { - "offset": 44549300, + "offset": 44326890, "size": 10520, }, "normalize.js.map": { - "offset": 44559820, + "offset": 44337410, "size": 17160, }, "object.js": { - "offset": 44576980, + "offset": 44354570, "size": 9920, }, "object.js.map": { - "offset": 44586900, + "offset": 44364490, "size": 17060, }, "path.js": { - "offset": 44603960, + "offset": 44381550, "size": 5730, }, "path.js.map": { - "offset": 44609680, + "offset": 44387270, "size": 11000, }, "promisebuffer.js": { - "offset": 44620680, + "offset": 44398270, "size": 3550, }, "promisebuffer.js.map": { - "offset": 44624220, + "offset": 44401810, "size": 5910, }, "propagationContext.js": { - "offset": 44630130, + "offset": 44407720, "size": 610, }, "propagationContext.js.map": { - "offset": 44630730, + "offset": 44408320, "size": 1090, }, "ratelimit.js": { - "offset": 44631820, + "offset": 44409410, "size": 3720, }, "ratelimit.js.map": { - "offset": 44635540, + "offset": 44413130, "size": 6370, }, "requestdata.js": { - "offset": 44641900, + "offset": 44419490, "size": 16160, }, "requestdata.js.map": { - "offset": 44658050, + "offset": 44435640, "size": 29570, }, "severity.js": { - "offset": 44687620, + "offset": 44465210, "size": 740, }, "severity.js.map": { - "offset": 44688360, + "offset": 44465950, "size": 1250, }, "stacktrace.js": { - "offset": 44689610, + "offset": 44467200, "size": 5350, }, "stacktrace.js.map": { - "offset": 44694950, + "offset": 44472540, "size": 9090, }, "string.js": { - "offset": 44704030, + "offset": 44481620, "size": 4030, }, "string.js.map": { - "offset": 44708060, + "offset": 44485650, "size": 6980, }, "supports.js": { - "offset": 44715030, + "offset": 44492620, "size": 4300, }, "supports.js.map": { - "offset": 44719320, + "offset": 44496910, "size": 7030, }, "syncpromise.js": { - "offset": 44726350, + "offset": 44503940, "size": 4250, }, "syncpromise.js.map": { - "offset": 44730600, + "offset": 44508180, "size": 9110, }, "time.js": { - "offset": 44739700, + "offset": 44517290, "size": 5670, }, "time.js.map": { - "offset": 44745370, + "offset": 44522960, "size": 8080, }, "tracing.js": { - "offset": 44753440, + "offset": 44531030, "size": 2420, }, "tracing.js.map": { - "offset": 44755860, + "offset": 44533440, "size": 4340, }, "url.js": { - "offset": 44760190, + "offset": 44537780, "size": 2370, }, "url.js.map": { - "offset": 44762560, + "offset": 44540150, "size": 4100, }, "vendor": { "files": { "escapeStringForRegex.js": { - "offset": 44766660, + "offset": 44544240, "size": 2120, }, "escapeStringForRegex.js.map": { - "offset": 44768770, + "offset": 44546360, "size": 2560, }, "getIpAddress.js": { - "offset": 44771320, + "offset": 44548910, "size": 4860, }, "getIpAddress.js.map": { - "offset": 44776180, + "offset": 44553770, "size": 7060, }, "supportsHistory.js": { - "offset": 44783230, + "offset": 44560820, "size": 1020, }, "supportsHistory.js.map": { - "offset": 44784250, + "offset": 44561830, "size": 2760, }, }, }, "vercelWaitUntil.js": { - "offset": 44787000, + "offset": 44564590, "size": 690, }, "vercelWaitUntil.js.map": { - "offset": 44787690, + "offset": 44565270, "size": 1330, }, "version.js": { - "offset": 44789010, + "offset": 44566600, "size": 140, }, "version.js.map": { - "offset": 44789150, + "offset": 44566740, "size": 380, }, "worldwide.js": { - "offset": 44789530, + "offset": 44567120, "size": 1090, }, "worldwide.js.map": { - "offset": 44790620, + "offset": 44568200, "size": 4710, }, }, @@ -67164,277 +67016,277 @@ exports[`node_module collectors > yarn ms 2`] = ` "types": { "files": { "api.d.ts.map": { - "offset": 44902020, + "offset": 44679610, "size": 510, }, "asyncContext": { "files": { "index.d.ts.map": { - "offset": 44902530, + "offset": 44680120, "size": 370, }, "stackStrategy.d.ts.map": { - "offset": 44902890, + "offset": 44680480, "size": 850, }, "types.d.ts.map": { - "offset": 44903740, + "offset": 44681330, "size": 1330, }, }, }, "baseclient.d.ts.map": { - "offset": 44905060, + "offset": 44682650, "size": 7090, }, "breadcrumbs.d.ts.map": { - "offset": 44912140, + "offset": 44689730, "size": 270, }, "carrier.d.ts.map": { - "offset": 44912410, + "offset": 44690000, "size": 970, }, "checkin.d.ts.map": { - "offset": 44913370, + "offset": 44690960, "size": 400, }, "constants.d.ts.map": { - "offset": 44913760, + "offset": 44691350, "size": 150, }, "currentScopes.d.ts.map": { - "offset": 44913910, + "offset": 44691500, "size": 950, }, "debug-build.d.ts.map": { - "offset": 44914850, + "offset": 44692440, "size": 170, }, "defaultScopes.d.ts.map": { - "offset": 44915020, + "offset": 44692600, "size": 270, }, "envelope.d.ts.map": { - "offset": 44915280, + "offset": 44692870, "size": 910, }, "eventProcessors.d.ts.map": { - "offset": 44916190, + "offset": 44693780, "size": 370, }, "exports.d.ts.map": { - "offset": 44916550, + "offset": 44694140, "size": 2010, }, "featureFlags.d.ts.map": { - "offset": 44918560, + "offset": 44696140, "size": 230, }, "feedback.d.ts.map": { - "offset": 44918780, + "offset": 44696370, "size": 320, }, "fetch.d.ts.map": { - "offset": 44919100, + "offset": 44696690, "size": 1020, }, "getCurrentHubShim.d.ts.map": { - "offset": 44920120, + "offset": 44697700, "size": 280, }, "index.d.ts.map": { - "offset": 44920390, + "offset": 44697980, "size": 3450, }, "integration.d.ts.map": { - "offset": 44923840, + "offset": 44701430, "size": 940, }, "integrations": { "files": { "captureconsole.d.ts.map": { - "offset": 44924780, + "offset": 44702370, "size": 300, }, "debug.d.ts.map": { - "offset": 44925070, + "offset": 44702660, "size": 290, }, "dedupe.d.ts.map": { - "offset": 44925350, + "offset": 44702940, "size": 320, }, "extraerrordata.d.ts.map": { - "offset": 44925660, + "offset": 44703250, "size": 280, }, "functiontostring.d.ts.map": { - "offset": 44925940, + "offset": 44703530, "size": 200, }, "inboundfilters.d.ts.map": { - "offset": 44926140, + "offset": 44703720, "size": 480, }, "linkederrors.d.ts.map": { - "offset": 44926610, + "offset": 44704200, "size": 260, }, "metadata.d.ts.map": { - "offset": 44926870, + "offset": 44704460, "size": 180, }, "requestdata.d.ts.map": { - "offset": 44927050, + "offset": 44704640, "size": 640, }, "rewriteframes.d.ts.map": { - "offset": 44927690, + "offset": 44705280, "size": 650, }, "sessiontiming.d.ts.map": { - "offset": 44928330, + "offset": 44705920, "size": 190, }, "third-party-errors-filter.d.ts.map": { - "offset": 44928520, + "offset": 44706110, "size": 370, }, "zoderrors.d.ts.map": { - "offset": 44928880, + "offset": 44706470, "size": 420, }, }, }, "metadata.d.ts.map": { - "offset": 44929300, + "offset": 44706890, "size": 430, }, "metrics": { "files": { "aggregator.d.ts.map": { - "offset": 44929720, + "offset": 44707310, "size": 850, }, "browser-aggregator.d.ts.map": { - "offset": 44930570, + "offset": 44708160, "size": 730, }, "constants.d.ts.map": { - "offset": 44931300, + "offset": 44708890, "size": 390, }, "envelope.d.ts.map": { - "offset": 44931680, + "offset": 44709270, "size": 490, }, "exports-default.d.ts.map": { - "offset": 44932170, + "offset": 44709750, "size": 390, }, "exports.d.ts.map": { - "offset": 44932550, + "offset": 44710140, "size": 1230, }, "instance.d.ts.map": { - "offset": 44933770, + "offset": 44711360, "size": 1240, }, "metric-summary.d.ts.map": { - "offset": 44935010, + "offset": 44712600, "size": 670, }, "types.d.ts.map": { - "offset": 44935680, + "offset": 44713270, "size": 410, }, "utils.d.ts.map": { - "offset": 44936090, + "offset": 44713680, "size": 790, }, }, }, "profiling.d.ts.map": { - "offset": 44936870, + "offset": 44714460, "size": 200, }, "scope.d.ts.map": { - "offset": 44937070, + "offset": 44714660, "size": 3720, }, "sdk.d.ts.map": { - "offset": 44940780, + "offset": 44718370, "size": 500, }, "semanticAttributes.d.ts.map": { - "offset": 44941280, + "offset": 44718860, "size": 780, }, "server-runtime-client.d.ts.map": { - "offset": 44942050, + "offset": 44719640, "size": 1820, }, "session.d.ts.map": { - "offset": 44943860, + "offset": 44721450, "size": 510, }, "sessionflusher.d.ts.map": { - "offset": 44944360, + "offset": 44721950, "size": 730, }, "tracing": { "files": { "dynamicSamplingContext.d.ts.map": { - "offset": 44945090, + "offset": 44722680, "size": 710, }, "errors.d.ts.map": { - "offset": 44945800, + "offset": 44723380, "size": 220, }, "hubextensions.d.ts.map": { - "offset": 44946010, + "offset": 44723600, "size": 180, }, "idleSpan.d.ts.map": { - "offset": 44946190, + "offset": 44723780, "size": 590, }, "index.d.ts.map": { - "offset": 44946780, + "offset": 44724360, "size": 860, }, "logSpans.d.ts.map": { - "offset": 44947630, + "offset": 44725210, "size": 300, }, "measurement.d.ts.map": { - "offset": 44947930, + "offset": 44725510, "size": 410, }, "sampling.d.ts.map": { - "offset": 44948330, + "offset": 44725920, "size": 370, }, "sentryNonRecordingSpan.d.ts.map": { - "offset": 44948690, + "offset": 44726280, "size": 1080, }, "sentrySpan.d.ts.map": { - "offset": 44949770, + "offset": 44727360, "size": 1770, }, "spanstatus.d.ts.map": { - "offset": 44951530, + "offset": 44729120, "size": 440, }, "trace.d.ts.map": { - "offset": 44951970, + "offset": 44729560, "size": 1070, }, "utils.d.ts.map": { - "offset": 44953030, + "offset": 44730620, "size": 460, }, }, @@ -67442,263 +67294,263 @@ exports[`node_module collectors > yarn ms 2`] = ` "transports": { "files": { "base.d.ts.map": { - "offset": 44953490, + "offset": 44731080, "size": 420, }, "multiplexed.d.ts.map": { - "offset": 44953910, + "offset": 44731500, "size": 800, }, "offline.d.ts.map": { - "offset": 44954710, + "offset": 44732300, "size": 930, }, }, }, "trpc.d.ts.map": { - "offset": 44955640, + "offset": 44733230, "size": 550, }, "types-hoist": { "files": { "attachment.d.ts.map": { - "offset": 44956180, + "offset": 44733770, "size": 450, }, "breadcrumb.d.ts.map": { - "offset": 44956620, + "offset": 44734210, "size": 1310, }, "browseroptions.d.ts.map": { - "offset": 44957930, + "offset": 44735520, "size": 370, }, "checkin.d.ts.map": { - "offset": 44958290, + "offset": 44735880, "size": 2070, }, "client.d.ts.map": { - "offset": 44960360, + "offset": 44737950, "size": 6770, }, "clientreport.d.ts.map": { - "offset": 44967130, + "offset": 44744710, "size": 510, }, "context.d.ts.map": { - "offset": 44967640, + "offset": 44745220, "size": 4140, }, "csp.d.ts.map": { - "offset": 44971770, + "offset": 44749350, "size": 660, }, "datacategory.d.ts.map": { - "offset": 44972420, + "offset": 44750010, "size": 310, }, "debugMeta.d.ts.map": { - "offset": 44972720, + "offset": 44750310, "size": 720, }, "dsn.d.ts.map": { - "offset": 44973430, + "offset": 44751020, "size": 570, }, "envelope.d.ts.map": { - "offset": 44973990, + "offset": 44751580, "size": 5090, }, "error.d.ts.map": { - "offset": 44979080, + "offset": 44756670, "size": 210, }, "event.d.ts.map": { - "offset": 44979290, + "offset": 44756880, "size": 3130, }, "eventprocessor.d.ts.map": { - "offset": 44982420, + "offset": 44760000, "size": 380, }, "exception.d.ts.map": { - "offset": 44982790, + "offset": 44760370, "size": 450, }, "extra.d.ts.map": { - "offset": 44983230, + "offset": 44760820, "size": 220, }, "feedback": { "files": { "config.d.ts.map": { - "offset": 44983440, + "offset": 44761030, "size": 2010, }, "form.d.ts.map": { - "offset": 44985450, + "offset": 44763040, "size": 340, }, "index.d.ts.map": { - "offset": 44985780, + "offset": 44763370, "size": 1640, }, "sendFeedback.d.ts.map": { - "offset": 44987420, + "offset": 44765010, "size": 1280, }, "theme.d.ts.map": { - "offset": 44988690, + "offset": 44766280, "size": 500, }, }, }, "hub.d.ts.map": { - "offset": 44989190, + "offset": 44766780, "size": 2180, }, "index.d.ts.map": { - "offset": 44991370, + "offset": 44768950, "size": 3910, }, "instrument.d.ts.map": { - "offset": 44995270, + "offset": 44772860, "size": 2090, }, "integration.d.ts.map": { - "offset": 44997360, + "offset": 44774950, "size": 990, }, "measurement.d.ts.map": { - "offset": 44998340, + "offset": 44775930, "size": 800, }, "mechanism.d.ts.map": { - "offset": 44999140, + "offset": 44776730, "size": 560, }, "metrics.d.ts.map": { - "offset": 44999700, + "offset": 44777290, "size": 2030, }, "misc.d.ts.map": { - "offset": 45001720, + "offset": 44779310, "size": 1280, }, "opentelemetry.d.ts.map": { - "offset": 45002990, + "offset": 44780580, "size": 220, }, "options.d.ts.map": { - "offset": 45003210, + "offset": 44780800, "size": 3380, }, "package.d.ts.map": { - "offset": 45006580, + "offset": 44784170, "size": 330, }, "parameterize.d.ts.map": { - "offset": 45006910, + "offset": 44784490, "size": 260, }, "polymorphics.d.ts.map": { - "offset": 45007160, + "offset": 44784750, "size": 1740, }, "profiling.d.ts.map": { - "offset": 45008890, + "offset": 44786480, "size": 3700, }, "replay.d.ts.map": { - "offset": 45012590, + "offset": 44790180, "size": 550, }, "request.d.ts.map": { - "offset": 45013130, + "offset": 44790720, "size": 850, }, "runtime.d.ts.map": { - "offset": 45013980, + "offset": 44791570, "size": 230, }, "samplingcontext.d.ts.map": { - "offset": 45014200, + "offset": 44791790, "size": 800, }, "scope.d.ts.map": { - "offset": 45014990, + "offset": 44792580, "size": 4050, }, "sdkinfo.d.ts.map": { - "offset": 45019040, + "offset": 44796630, "size": 330, }, "sdkmetadata.d.ts.map": { - "offset": 45019370, + "offset": 44796960, "size": 240, }, "session.d.ts.map": { - "offset": 45019600, + "offset": 44797190, "size": 1850, }, "severity.d.ts.map": { - "offset": 45021450, + "offset": 44799040, "size": 220, }, "span.d.ts.map": { - "offset": 45021660, + "offset": 44799250, "size": 3920, }, "spanStatus.d.ts.map": { - "offset": 45025580, + "offset": 44803160, "size": 890, }, "stackframe.d.ts.map": { - "offset": 45026460, + "offset": 44804050, "size": 720, }, "stacktrace.d.ts.map": { - "offset": 45027180, + "offset": 44804760, "size": 550, }, "startSpanOptions.d.ts.map": { - "offset": 45027720, + "offset": 44805310, "size": 730, }, "thread.d.ts.map": { - "offset": 45028450, + "offset": 44806040, "size": 360, }, "timedEvent.d.ts.map": { - "offset": 45028810, + "offset": 44806400, "size": 300, }, "tracing.d.ts.map": { - "offset": 45029110, + "offset": 44806690, "size": 610, }, "transaction.d.ts.map": { - "offset": 45029720, + "offset": 44807300, "size": 510, }, "transport.d.ts.map": { - "offset": 45030220, + "offset": 44807810, "size": 970, }, "user.d.ts.map": { - "offset": 45031190, + "offset": 44808780, "size": 480, }, "view-hierarchy.d.ts.map": { - "offset": 45031670, + "offset": 44809250, "size": 640, }, "webfetchapi.d.ts.map": { - "offset": 45032300, + "offset": 44809890, "size": 710, }, "wrappedfunction.d.ts.map": { - "offset": 45033010, + "offset": 44810600, "size": 350, }, }, @@ -67706,55 +67558,55 @@ exports[`node_module collectors > yarn ms 2`] = ` "utils": { "files": { "applyScopeDataToEvent.d.ts.map": { - "offset": 45070120, + "offset": 44847700, "size": 740, }, "handleCallbackErrors.d.ts.map": { - "offset": 45070850, + "offset": 44848440, "size": 340, }, "hasTracingEnabled.d.ts.map": { - "offset": 45071190, + "offset": 44848770, "size": 320, }, "isSentryRequestUrl.d.ts.map": { - "offset": 45071500, + "offset": 44849090, "size": 290, }, "merge.d.ts.map": { - "offset": 45071790, + "offset": 44849380, "size": 230, }, "meta.d.ts.map": { - "offset": 45072020, + "offset": 44849610, "size": 180, }, "parameterize.d.ts.map": { - "offset": 45072200, + "offset": 44849790, "size": 290, }, "parseSampleRate.d.ts.map": { - "offset": 45072480, + "offset": 44850070, "size": 220, }, "prepareEvent.d.ts.map": { - "offset": 45072700, + "offset": 44850280, "size": 1020, }, "sdkMetadata.d.ts.map": { - "offset": 45073710, + "offset": 44851300, "size": 310, }, "spanOnScope.d.ts.map": { - "offset": 45074020, + "offset": 44851600, "size": 490, }, "spanUtils.d.ts.map": { - "offset": 45074500, + "offset": 44852090, "size": 2000, }, "traceData.d.ts.map": { - "offset": 45076500, + "offset": 44854080, "size": 290, }, }, @@ -67762,251 +67614,251 @@ exports[`node_module collectors > yarn ms 2`] = ` "utils-hoist": { "files": { "aggregate-errors.d.ts.map": { - "offset": 45033360, + "offset": 44810950, "size": 460, }, "anr.d.ts.map": { - "offset": 45033820, + "offset": 44811410, "size": 910, }, "array.d.ts.map": { - "offset": 45034730, + "offset": 44812320, "size": 310, }, "baggage.d.ts.map": { - "offset": 45035030, + "offset": 44812620, "size": 760, }, "breadcrumb-log-level.d.ts.map": { - "offset": 45035790, + "offset": 44813370, "size": 290, }, "browser.d.ts.map": { - "offset": 45036070, + "offset": 44813660, "size": 540, }, "buildPolyfills": { "files": { "_asyncNullishCoalesce.d.ts.map": { - "offset": 45036600, + "offset": 44814190, "size": 290, }, "_asyncOptionalChain.d.ts.map": { - "offset": 45036890, + "offset": 44814480, "size": 270, }, "_asyncOptionalChainDelete.d.ts.map": { - "offset": 45037150, + "offset": 44814740, "size": 280, }, "_nullishCoalesce.d.ts.map": { - "offset": 45037430, + "offset": 44815020, "size": 270, }, "_optionalChain.d.ts.map": { - "offset": 45037690, + "offset": 44815280, "size": 240, }, "_optionalChainDelete.d.ts.map": { - "offset": 45037930, + "offset": 44815510, "size": 250, }, "index.d.ts.map": { - "offset": 45038180, + "offset": 44815760, "size": 410, }, "types.d.ts.map": { - "offset": 45038580, + "offset": 44816170, "size": 460, }, }, }, "cache.d.ts.map": { - "offset": 45039040, + "offset": 44816620, "size": 470, }, "clientreport.d.ts.map": { - "offset": 45039500, + "offset": 44817090, "size": 340, }, "cookie.d.ts.map": { - "offset": 45039840, + "offset": 44817430, "size": 260, }, "debug-build.d.ts.map": { - "offset": 45040090, + "offset": 44817680, "size": 180, }, "debug-ids.d.ts.map": { - "offset": 45040270, + "offset": 44817850, "size": 390, }, "dsn.d.ts.map": { - "offset": 45040650, + "offset": 44818240, "size": 420, }, "env.d.ts.map": { - "offset": 45041070, + "offset": 44818660, "size": 270, }, "envelope.d.ts.map": { - "offset": 45041340, + "offset": 44818930, "size": 1540, }, "error.d.ts.map": { - "offset": 45042870, + "offset": 44820460, "size": 350, }, "eventbuilder.d.ts.map": { - "offset": 45043220, + "offset": 44820800, "size": 740, }, "index.d.ts.map": { - "offset": 45043950, + "offset": 44821540, "size": 4020, }, "instrument": { "files": { "console.d.ts.map": { - "offset": 45047970, + "offset": 44825550, "size": 290, }, "fetch.d.ts.map": { - "offset": 45048250, + "offset": 44825840, "size": 540, }, "globalError.d.ts.map": { - "offset": 45048780, + "offset": 44826370, "size": 300, }, "globalUnhandledRejection.d.ts.map": { - "offset": 45049080, + "offset": 44826670, "size": 320, }, "handlers.d.ts.map": { - "offset": 45049400, + "offset": 44826990, "size": 640, }, }, }, "is.d.ts.map": { - "offset": 45050030, + "offset": 44827620, "size": 1360, }, "isBrowser.d.ts.map": { - "offset": 45051390, + "offset": 44828970, "size": 180, }, "logger.d.ts.map": { - "offset": 45051560, + "offset": 44829150, "size": 720, }, "lru.d.ts.map": { - "offset": 45052280, + "offset": 44829870, "size": 640, }, "memo.d.ts.map": { - "offset": 45052920, + "offset": 44830500, "size": 280, }, "misc.d.ts.map": { - "offset": 45053190, + "offset": 44830780, "size": 1090, }, "node-stack-trace.d.ts.map": { - "offset": 45054280, + "offset": 44831870, "size": 520, }, "node.d.ts.map": { - "offset": 45054800, + "offset": 44832390, "size": 360, }, "normalize.d.ts.map": { - "offset": 45055160, + "offset": 44832750, "size": 510, }, "object.d.ts.map": { - "offset": 45055660, + "offset": 44833250, "size": 1430, }, "path.d.ts.map": { - "offset": 45057090, + "offset": 44834680, "size": 640, }, "promisebuffer.d.ts.map": { - "offset": 45057720, + "offset": 44835310, "size": 480, }, "propagationContext.d.ts.map": { - "offset": 45058190, + "offset": 44835780, "size": 340, }, "ratelimit.d.ts.map": { - "offset": 45058530, + "offset": 44836120, "size": 710, }, "requestdata.d.ts.map": { - "offset": 45059230, + "offset": 44836820, "size": 2380, }, "severity.d.ts.map": { - "offset": 45061600, + "offset": 44839190, "size": 300, }, "stacktrace.d.ts.map": { - "offset": 45061900, + "offset": 44839490, "size": 650, }, "string.d.ts.map": { - "offset": 45062540, + "offset": 44840130, "size": 720, }, "supports.d.ts.map": { - "offset": 45063250, + "offset": 44840840, "size": 580, }, "syncpromise.d.ts.map": { - "offset": 45063830, + "offset": 44841420, "size": 1500, }, "time.d.ts.map": { - "offset": 45065330, + "offset": 44842920, "size": 330, }, "tracing.d.ts.map": { - "offset": 45065660, + "offset": 44843240, "size": 580, }, "url.d.ts.map": { - "offset": 45066230, + "offset": 44843820, "size": 610, }, "vendor": { "files": { "escapeStringForRegex.d.ts.map": { - "offset": 45066840, + "offset": 44844430, "size": 240, }, "getIpAddress.d.ts.map": { - "offset": 45067070, + "offset": 44844660, "size": 330, }, "supportsHistory.d.ts.map": { - "offset": 45067400, + "offset": 44844990, "size": 200, }, }, }, "vercelWaitUntil.d.ts.map": { - "offset": 45067600, + "offset": 44845190, "size": 230, }, "version.d.ts.map": { - "offset": 45067820, + "offset": 44845410, "size": 160, }, "worldwide.d.ts.map": { - "offset": 45067980, + "offset": 44845560, "size": 2140, }, }, @@ -68016,7 +67868,7 @@ exports[`node_module collectors > yarn ms 2`] = ` }, }, "package.json": { - "offset": 45076780, + "offset": 44854370, "size": 1220, }, }, @@ -68024,45 +67876,45 @@ exports[`node_module collectors > yarn ms 2`] = ` "electron": { "files": { "LICENSE": { - "offset": 45077990, + "offset": 44855580, "size": 1130, }, "common": { "files": { "envelope.d.ts.map": { - "offset": 45079120, + "offset": 44856700, "size": 320, }, "envelope.js": { - "offset": 45079430, + "offset": 44857020, "size": 1020, }, "envelope.js.map": { - "offset": 45080440, + "offset": 44858030, "size": 1990, }, "ipc.d.ts.map": { - "offset": 45082430, + "offset": 44860020, "size": 1660, }, "ipc.js": { - "offset": 45084090, + "offset": 44861680, "size": 2130, }, "ipc.js.map": { - "offset": 45086220, + "offset": 44863800, "size": 4210, }, "scope.d.ts.map": { - "offset": 45090420, + "offset": 44868010, "size": 330, }, "scope.js": { - "offset": 45090740, + "offset": 44868330, "size": 1140, }, "scope.js.map": { - "offset": 45091880, + "offset": 44869470, "size": 2130, }, }, @@ -68072,299 +67924,299 @@ exports[`node_module collectors > yarn ms 2`] = ` "common": { "files": { "envelope.d.ts.map": { - "offset": 45094000, + "offset": 44871590, "size": 320, }, "envelope.js": { - "offset": 45094320, + "offset": 44871910, "size": 1010, }, "envelope.js.map": { - "offset": 45095320, + "offset": 44872910, "size": 1970, }, "ipc.d.ts.map": { - "offset": 45097290, + "offset": 44874880, "size": 1660, }, "ipc.js": { - "offset": 45098950, + "offset": 44876540, "size": 2000, }, "ipc.js.map": { - "offset": 45100950, + "offset": 44878530, "size": 4180, }, "scope.d.ts.map": { - "offset": 45105120, + "offset": 44882700, "size": 330, }, "scope.js": { - "offset": 45105440, + "offset": 44883030, "size": 1120, }, "scope.js.map": { - "offset": 45106560, + "offset": 44884150, "size": 2040, }, }, }, "index.d.ts.map": { - "offset": 45108600, + "offset": 44886180, "size": 130, }, "index.js": { - "offset": 45108720, + "offset": 44886310, "size": 390, }, "index.js.map": { - "offset": 45109100, + "offset": 44886690, "size": 530, }, "main": { "files": { "anr.d.ts.map": { - "offset": 45109630, + "offset": 44887220, "size": 290, }, "anr.js": { - "offset": 45109920, + "offset": 44887510, "size": 4750, }, "anr.js.map": { - "offset": 45114660, + "offset": 44892250, "size": 8860, }, "context.d.ts.map": { - "offset": 45123510, + "offset": 44901100, "size": 470, }, "context.js": { - "offset": 45123980, + "offset": 44901560, "size": 1240, }, "context.js.map": { - "offset": 45125210, + "offset": 44902800, "size": 2250, }, "electron-normalize.d.ts.map": { - "offset": 45127460, + "offset": 44905050, "size": 680, }, "electron-normalize.js": { - "offset": 45128130, + "offset": 44905720, "size": 2330, }, "electron-normalize.js.map": { - "offset": 45130460, + "offset": 44908050, "size": 4100, }, "index.d.ts.map": { - "offset": 45134560, + "offset": 44912150, "size": 2760, }, "index.js": { - "offset": 45137310, + "offset": 44914900, "size": 3980, }, "index.js.map": { - "offset": 45141280, + "offset": 44918870, "size": 110, }, "integrations": { "files": { "additional-context.d.ts.map": { - "offset": 45141390, + "offset": 44918980, "size": 260, }, "additional-context.js": { - "offset": 45141640, + "offset": 44919230, "size": 1630, }, "additional-context.js.map": { - "offset": 45143270, + "offset": 44920860, "size": 2970, }, "anr.d.ts.map": { - "offset": 45146240, + "offset": 44923830, "size": 360, }, "anr.js": { - "offset": 45146600, + "offset": 44924190, "size": 1220, }, "anr.js.map": { - "offset": 45147820, + "offset": 44925410, "size": 2190, }, "browser-window-session.d.ts.map": { - "offset": 45150000, + "offset": 44927590, "size": 290, }, "browser-window-session.js": { - "offset": 45150280, + "offset": 44927870, "size": 3210, }, "browser-window-session.js.map": { - "offset": 45153490, + "offset": 44931080, "size": 5210, }, "child-process.d.ts.map": { - "offset": 45158700, + "offset": 44936290, "size": 490, }, "child-process.js": { - "offset": 45159180, + "offset": 44936770, "size": 3580, }, "child-process.js.map": { - "offset": 45162750, + "offset": 44940340, "size": 6350, }, "electron-breadcrumbs.d.ts.map": { - "offset": 45169100, + "offset": 44946690, "size": 800, }, "electron-breadcrumbs.js": { - "offset": 45169890, + "offset": 44947480, "size": 4290, }, "electron-breadcrumbs.js.map": { - "offset": 45174180, + "offset": 44951760, "size": 9330, }, "electron-context.d.ts.map": { - "offset": 45183500, + "offset": 44961090, "size": 190, }, "electron-context.js": { - "offset": 45183680, + "offset": 44961270, "size": 3220, }, "electron-context.js.map": { - "offset": 45186900, + "offset": 44964490, "size": 4880, }, "electron-minidump.d.ts.map": { - "offset": 45191780, + "offset": 44969370, "size": 280, }, "electron-minidump.js": { - "offset": 45192050, + "offset": 44969640, "size": 7140, }, "electron-minidump.js.map": { - "offset": 45199190, + "offset": 44976780, "size": 11560, }, "main-process-session.d.ts.map": { - "offset": 45210750, + "offset": 44988340, "size": 280, }, "main-process-session.js": { - "offset": 45211030, + "offset": 44988610, "size": 510, }, "main-process-session.js.map": { - "offset": 45211530, + "offset": 44989120, "size": 960, }, "net-breadcrumbs.d.ts.map": { - "offset": 45212490, + "offset": 44990080, "size": 400, }, "net-breadcrumbs.js": { - "offset": 45212890, + "offset": 44990480, "size": 7790, }, "net-breadcrumbs.js.map": { - "offset": 45220670, + "offset": 44998260, "size": 14190, }, "normalize-paths.d.ts.map": { - "offset": 45234860, + "offset": 45012440, "size": 190, }, "normalize-paths.js": { - "offset": 45235040, + "offset": 45012620, "size": 440, }, "normalize-paths.js.map": { - "offset": 45235470, + "offset": 45013060, "size": 690, }, "onuncaughtexception.d.ts.map": { - "offset": 45236160, + "offset": 45013750, "size": 210, }, "onuncaughtexception.js": { - "offset": 45236360, + "offset": 45013950, "size": 2050, }, "onuncaughtexception.js.map": { - "offset": 45238410, + "offset": 45016000, "size": 3060, }, "preload-injection.d.ts.map": { - "offset": 45241460, + "offset": 45019050, "size": 200, }, "preload-injection.js": { - "offset": 45241660, + "offset": 45019250, "size": 2170, }, "preload-injection.js.map": { - "offset": 45243830, + "offset": 45021420, "size": 3280, }, "renderer-profiling.d.ts.map": { - "offset": 45247100, + "offset": 45024690, "size": 340, }, "renderer-profiling.js": { - "offset": 45247440, + "offset": 45025030, "size": 3780, }, "renderer-profiling.js.map": { - "offset": 45251220, + "offset": 45028810, "size": 6010, }, "screenshots.d.ts.map": { - "offset": 45257230, + "offset": 45034820, "size": 190, }, "screenshots.js": { - "offset": 45257410, + "offset": 45035000, "size": 1690, }, "screenshots.js.map": { - "offset": 45259100, + "offset": 45036690, "size": 2610, }, "sentry-minidump": { "files": { "index.d.ts.map": { - "offset": 45261710, + "offset": 45039290, "size": 260, }, "index.js": { - "offset": 45261970, + "offset": 45039550, "size": 8720, }, "index.js.map": { - "offset": 45270680, + "offset": 45048260, "size": 13490, }, "minidump-loader.d.ts.map": { - "offset": 45284160, + "offset": 45061750, "size": 590, }, "minidump-loader.js": { - "offset": 45284750, + "offset": 45062330, "size": 9010, }, "minidump-loader.js.map": { - "offset": 45293750, + "offset": 45071340, "size": 14730, }, }, @@ -68372,191 +68224,191 @@ exports[`node_module collectors > yarn ms 2`] = ` }, }, "ipc.d.ts.map": { - "offset": 45308470, + "offset": 45086060, "size": 220, }, "ipc.js": { - "offset": 45308690, + "offset": 45086280, "size": 9160, }, "ipc.js.map": { - "offset": 45317840, + "offset": 45095430, "size": 16600, }, "merge.d.ts.map": { - "offset": 45334440, + "offset": 45112030, "size": 240, }, "merge.js": { - "offset": 45334680, + "offset": 45112260, "size": 1280, }, "merge.js.map": { - "offset": 45335950, + "offset": 45113540, "size": 2010, }, "mutex.d.ts.map": { - "offset": 45337950, + "offset": 45115540, "size": 520, }, "mutex.js": { - "offset": 45338470, + "offset": 45116060, "size": 2010, }, "mutex.js.map": { - "offset": 45340480, + "offset": 45118070, "size": 4870, }, "normalize.d.ts.map": { - "offset": 45345340, + "offset": 45122930, "size": 450, }, "normalize.js": { - "offset": 45345790, + "offset": 45123380, "size": 3310, }, "normalize.js.map": { - "offset": 45349090, + "offset": 45126680, "size": 5860, }, "renderers.d.ts.map": { - "offset": 45354950, + "offset": 45132540, "size": 360, }, "renderers.js": { - "offset": 45355310, + "offset": 45132890, "size": 1550, }, "renderers.js.map": { - "offset": 45356860, + "offset": 45134440, "size": 3030, }, "sdk.d.ts.map": { - "offset": 45359880, + "offset": 45137470, "size": 1000, }, "sdk.js": { - "offset": 45360880, + "offset": 45138470, "size": 5390, }, "sdk.js.map": { - "offset": 45366260, + "offset": 45143850, "size": 9760, }, "sessions.d.ts.map": { - "offset": 45376020, + "offset": 45153600, "size": 820, }, "sessions.js": { - "offset": 45376830, + "offset": 45154420, "size": 8070, }, "sessions.js.map": { - "offset": 45384890, + "offset": 45162480, "size": 13580, }, "stack-parse.d.ts.map": { - "offset": 45398470, + "offset": 45176060, "size": 210, }, "stack-parse.js": { - "offset": 45398670, + "offset": 45176260, "size": 430, }, "stack-parse.js.map": { - "offset": 45399090, + "offset": 45176680, "size": 630, }, "store.d.ts.map": { - "offset": 45399720, + "offset": 45177310, "size": 1110, }, "store.js": { - "offset": 45400820, + "offset": 45178410, "size": 4690, }, "store.js.map": { - "offset": 45405510, + "offset": 45183100, "size": 7580, }, "transports": { "files": { "electron-net.d.ts.map": { - "offset": 45413080, + "offset": 45190670, "size": 500, }, "electron-net.js": { - "offset": 45413580, + "offset": 45191170, "size": 3250, }, "electron-net.js.map": { - "offset": 45416830, + "offset": 45194420, "size": 6020, }, "electron-offline-net.d.ts.map": { - "offset": 45422850, + "offset": 45200430, "size": 680, }, "electron-offline-net.js": { - "offset": 45423520, + "offset": 45201110, "size": 1790, }, "electron-offline-net.js.map": { - "offset": 45425310, + "offset": 45202900, "size": 3570, }, "offline-store.d.ts.map": { - "offset": 45428870, + "offset": 45206460, "size": 410, }, "offline-store.js": { - "offset": 45429280, + "offset": 45206870, "size": 3530, }, "offline-store.js.map": { - "offset": 45432810, + "offset": 45210390, "size": 7080, }, }, }, "utility-processes.d.ts.map": { - "offset": 45439880, + "offset": 45217470, "size": 190, }, "utility-processes.js": { - "offset": 45440060, + "offset": 45217650, "size": 3940, }, "utility-processes.js.map": { - "offset": 45444000, + "offset": 45221590, "size": 6100, }, "version.d.ts.map": { - "offset": 45450090, + "offset": 45227680, "size": 150, }, "version.js": { - "offset": 45450240, + "offset": 45227820, "size": 100, }, "version.js.map": { - "offset": 45450330, + "offset": 45227910, "size": 190, }, }, }, "package.json": { - "offset": 45450510, + "offset": 45228100, "size": 20, }, "preload": { "files": { "index.js": { - "offset": 45450530, + "offset": 45228110, "size": 2670, }, "index.js.map": { - "offset": 45453190, + "offset": 45230780, "size": 6160, }, }, @@ -68564,103 +68416,103 @@ exports[`node_module collectors > yarn ms 2`] = ` "renderer": { "files": { "anr.d.ts.map": { - "offset": 45459340, + "offset": 45236930, "size": 240, }, "anr.js": { - "offset": 45459580, + "offset": 45237170, "size": 700, }, "anr.js.map": { - "offset": 45460280, + "offset": 45237870, "size": 1480, }, "index.d.ts.map": { - "offset": 45461760, + "offset": 45239350, "size": 1780, }, "index.js": { - "offset": 45463540, + "offset": 45241130, "size": 2480, }, "index.js.map": { - "offset": 45466010, + "offset": 45243600, "size": 100, }, "integrations": { "files": { "scope-to-main.d.ts.map": { - "offset": 45466100, + "offset": 45243690, "size": 200, }, "scope-to-main.js": { - "offset": 45466300, + "offset": 45243880, "size": 700, }, "scope-to-main.js.map": { - "offset": 45466990, + "offset": 45244580, "size": 1130, }, }, }, "ipc.d.ts.map": { - "offset": 45468110, + "offset": 45245700, "size": 200, }, "ipc.js": { - "offset": 45468310, + "offset": 45245900, "size": 3290, }, "ipc.js.map": { - "offset": 45471590, + "offset": 45249180, "size": 5160, }, "metrics.d.ts.map": { - "offset": 45476750, + "offset": 45254340, "size": 1040, }, "metrics.js": { - "offset": 45477780, + "offset": 45255370, "size": 2430, }, "metrics.js.map": { - "offset": 45480210, + "offset": 45257800, "size": 5080, }, "sdk.d.ts.map": { - "offset": 45485280, + "offset": 45262870, "size": 760, }, "sdk.js": { - "offset": 45486040, + "offset": 45263630, "size": 2850, }, "sdk.js.map": { - "offset": 45488880, + "offset": 45266470, "size": 5180, }, "stack-parse.d.ts.map": { - "offset": 45494060, + "offset": 45271650, "size": 220, }, "stack-parse.js": { - "offset": 45494280, + "offset": 45271870, "size": 1120, }, "stack-parse.js.map": { - "offset": 45495390, + "offset": 45272980, "size": 1940, }, "transport.d.ts.map": { - "offset": 45497320, + "offset": 45274910, "size": 250, }, "transport.js": { - "offset": 45497570, + "offset": 45275160, "size": 580, }, "transport.js.map": { - "offset": 45498140, + "offset": 45275730, "size": 1070, }, }, @@ -68668,39 +68520,39 @@ exports[`node_module collectors > yarn ms 2`] = ` "utility": { "files": { "index.d.ts.map": { - "offset": 45499210, + "offset": 45276800, "size": 1950, }, "index.js": { - "offset": 45501160, + "offset": 45278750, "size": 2650, }, "index.js.map": { - "offset": 45503810, + "offset": 45281400, "size": 100, }, "sdk.d.ts.map": { - "offset": 45503900, + "offset": 45281490, "size": 360, }, "sdk.js": { - "offset": 45504260, + "offset": 45281850, "size": 2410, }, "sdk.js.map": { - "offset": 45506670, + "offset": 45284260, "size": 3650, }, "transport.d.ts.map": { - "offset": 45510310, + "offset": 45287900, "size": 250, }, "transport.js": { - "offset": 45510560, + "offset": 45288150, "size": 2430, }, "transport.js.map": { - "offset": 45512990, + "offset": 45290580, "size": 3940, }, }, @@ -68708,261 +68560,261 @@ exports[`node_module collectors > yarn ms 2`] = ` }, }, "index.d.ts.map": { - "offset": 45516930, + "offset": 45294520, "size": 120, }, "index.js": { - "offset": 45517050, + "offset": 45294640, "size": 390, }, "index.js.map": { - "offset": 45517440, + "offset": 45295020, "size": 540, }, "main": { "files": { "anr.d.ts.map": { - "offset": 45517970, + "offset": 45295560, "size": 290, }, "anr.js": { - "offset": 45518250, + "offset": 45295840, "size": 4720, }, "anr.js.map": { - "offset": 45522960, + "offset": 45300550, "size": 9030, }, "context.d.ts.map": { - "offset": 45531980, + "offset": 45309570, "size": 460, }, "context.js": { - "offset": 45532440, + "offset": 45310030, "size": 1410, }, "context.js.map": { - "offset": 45533850, + "offset": 45311440, "size": 2280, }, "electron-normalize.d.ts.map": { - "offset": 45536130, + "offset": 45313720, "size": 680, }, "electron-normalize.js": { - "offset": 45536810, + "offset": 45314390, "size": 2500, }, "electron-normalize.js.map": { - "offset": 45539300, + "offset": 45316890, "size": 4160, }, "index.d.ts.map": { - "offset": 45543460, + "offset": 45321050, "size": 2750, }, "index.js": { - "offset": 45546210, + "offset": 45323800, "size": 9470, }, "index.js.map": { - "offset": 45555680, + "offset": 45333270, "size": 260, }, "integrations": { "files": { "additional-context.d.ts.map": { - "offset": 45555940, + "offset": 45333530, "size": 250, }, "additional-context.js": { - "offset": 45556190, + "offset": 45333780, "size": 1670, }, "additional-context.js.map": { - "offset": 45557850, + "offset": 45335440, "size": 3010, }, "anr.d.ts.map": { - "offset": 45560850, + "offset": 45338440, "size": 360, }, "anr.js": { - "offset": 45561210, + "offset": 45338800, "size": 1260, }, "anr.js.map": { - "offset": 45562460, + "offset": 45340050, "size": 2260, }, "browser-window-session.d.ts.map": { - "offset": 45564720, + "offset": 45342310, "size": 280, }, "browser-window-session.js": { - "offset": 45565000, + "offset": 45342590, "size": 3240, }, "browser-window-session.js.map": { - "offset": 45568230, + "offset": 45345820, "size": 5310, }, "child-process.d.ts.map": { - "offset": 45573540, + "offset": 45351130, "size": 480, }, "child-process.js": { - "offset": 45574020, + "offset": 45351600, "size": 3630, }, "child-process.js.map": { - "offset": 45577640, + "offset": 45355230, "size": 6440, }, "electron-breadcrumbs.d.ts.map": { - "offset": 45584080, + "offset": 45361660, "size": 790, }, "electron-breadcrumbs.js": { - "offset": 45584870, + "offset": 45362450, "size": 4350, }, "electron-breadcrumbs.js.map": { - "offset": 45589210, + "offset": 45366800, "size": 9470, }, "electron-context.d.ts.map": { - "offset": 45598680, + "offset": 45376270, "size": 190, }, "electron-context.js": { - "offset": 45598860, + "offset": 45376450, "size": 3270, }, "electron-context.js.map": { - "offset": 45602120, + "offset": 45379710, "size": 4980, }, "electron-minidump.d.ts.map": { - "offset": 45607090, + "offset": 45384680, "size": 280, }, "electron-minidump.js": { - "offset": 45607370, + "offset": 45384950, "size": 7250, }, "electron-minidump.js.map": { - "offset": 45614610, + "offset": 45392200, "size": 11920, }, "main-process-session.d.ts.map": { - "offset": 45626530, + "offset": 45404120, "size": 280, }, "main-process-session.js": { - "offset": 45626800, + "offset": 45404390, "size": 530, }, "main-process-session.js.map": { - "offset": 45627330, + "offset": 45404920, "size": 1020, }, "net-breadcrumbs.d.ts.map": { - "offset": 45628350, + "offset": 45405930, "size": 400, }, "net-breadcrumbs.js": { - "offset": 45628740, + "offset": 45406330, "size": 7820, }, "net-breadcrumbs.js.map": { - "offset": 45636560, + "offset": 45414140, "size": 14690, }, "normalize-paths.d.ts.map": { - "offset": 45651240, + "offset": 45428830, "size": 180, }, "normalize-paths.js": { - "offset": 45651420, + "offset": 45429010, "size": 480, }, "normalize-paths.js.map": { - "offset": 45651890, + "offset": 45429480, "size": 740, }, "onuncaughtexception.d.ts.map": { - "offset": 45652630, + "offset": 45430220, "size": 200, }, "onuncaughtexception.js": { - "offset": 45652830, + "offset": 45430420, "size": 2070, }, "onuncaughtexception.js.map": { - "offset": 45654900, + "offset": 45432490, "size": 3110, }, "preload-injection.d.ts.map": { - "offset": 45658000, + "offset": 45435590, "size": 200, }, "preload-injection.js": { - "offset": 45658200, + "offset": 45435790, "size": 2580, }, "preload-injection.js.map": { - "offset": 45660770, + "offset": 45438360, "size": 3380, }, "renderer-profiling.d.ts.map": { - "offset": 45664140, + "offset": 45441730, "size": 340, }, "renderer-profiling.js": { - "offset": 45664480, + "offset": 45442070, "size": 3830, }, "renderer-profiling.js.map": { - "offset": 45668300, + "offset": 45445890, "size": 6140, }, "screenshots.d.ts.map": { - "offset": 45674440, + "offset": 45452030, "size": 190, }, "screenshots.js": { - "offset": 45674620, + "offset": 45452210, "size": 1710, }, "screenshots.js.map": { - "offset": 45676330, + "offset": 45453910, "size": 2660, }, "sentry-minidump": { "files": { "index.d.ts.map": { - "offset": 45678980, + "offset": 45456570, "size": 260, }, "index.js": { - "offset": 45679240, + "offset": 45456830, "size": 8750, }, "index.js.map": { - "offset": 45687990, + "offset": 45465580, "size": 13940, }, "minidump-loader.d.ts.map": { - "offset": 45701920, + "offset": 45479510, "size": 590, }, "minidump-loader.js": { - "offset": 45702510, + "offset": 45480100, "size": 9230, }, "minidump-loader.js.map": { - "offset": 45711730, + "offset": 45489320, "size": 14830, }, }, @@ -68970,191 +68822,191 @@ exports[`node_module collectors > yarn ms 2`] = ` }, }, "ipc.d.ts.map": { - "offset": 45726560, + "offset": 45504140, "size": 220, }, "ipc.js": { - "offset": 45726770, + "offset": 45504360, "size": 9320, }, "ipc.js.map": { - "offset": 45736090, + "offset": 45513680, "size": 17020, }, "merge.d.ts.map": { - "offset": 45753110, + "offset": 45530700, "size": 240, }, "merge.js": { - "offset": 45753340, + "offset": 45530930, "size": 1290, }, "merge.js.map": { - "offset": 45754630, + "offset": 45532220, "size": 2010, }, "mutex.d.ts.map": { - "offset": 45756640, + "offset": 45534220, "size": 520, }, "mutex.js": { - "offset": 45757150, + "offset": 45534740, "size": 2020, }, "mutex.js.map": { - "offset": 45759170, + "offset": 45536750, "size": 4870, }, "normalize.d.ts.map": { - "offset": 45764030, + "offset": 45541620, "size": 440, }, "normalize.js": { - "offset": 45764470, + "offset": 45542060, "size": 3370, }, "normalize.js.map": { - "offset": 45767840, + "offset": 45545430, "size": 5980, }, "renderers.d.ts.map": { - "offset": 45773820, + "offset": 45551410, "size": 350, }, "renderers.js": { - "offset": 45774170, + "offset": 45551760, "size": 1630, }, "renderers.js.map": { - "offset": 45775790, + "offset": 45553380, "size": 3060, }, "sdk.d.ts.map": { - "offset": 45778840, + "offset": 45556430, "size": 1000, }, "sdk.js": { - "offset": 45779840, + "offset": 45557430, "size": 5220, }, "sdk.js.map": { - "offset": 45785060, + "offset": 45562650, "size": 10730, }, "sessions.d.ts.map": { - "offset": 45795780, + "offset": 45573370, "size": 810, }, "sessions.js": { - "offset": 45796590, + "offset": 45574180, "size": 8450, }, "sessions.js.map": { - "offset": 45805040, + "offset": 45582630, "size": 13770, }, "stack-parse.d.ts.map": { - "offset": 45818810, + "offset": 45596400, "size": 200, }, "stack-parse.js": { - "offset": 45819010, + "offset": 45596600, "size": 420, }, "stack-parse.js.map": { - "offset": 45819420, + "offset": 45597010, "size": 710, }, "store.d.ts.map": { - "offset": 45820130, + "offset": 45597720, "size": 1100, }, "store.js": { - "offset": 45821230, + "offset": 45598820, "size": 4750, }, "store.js.map": { - "offset": 45825980, + "offset": 45603570, "size": 7630, }, "transports": { "files": { "electron-net.d.ts.map": { - "offset": 45833600, + "offset": 45611190, "size": 500, }, "electron-net.js": { - "offset": 45834100, + "offset": 45611690, "size": 3340, }, "electron-net.js.map": { - "offset": 45837430, + "offset": 45615020, "size": 6110, }, "electron-offline-net.d.ts.map": { - "offset": 45843540, + "offset": 45621130, "size": 680, }, "electron-offline-net.js": { - "offset": 45844210, + "offset": 45621800, "size": 1820, }, "electron-offline-net.js.map": { - "offset": 45846030, + "offset": 45623620, "size": 3640, }, "offline-store.d.ts.map": { - "offset": 45849660, + "offset": 45627250, "size": 410, }, "offline-store.js": { - "offset": 45850070, + "offset": 45627660, "size": 3580, }, "offline-store.js.map": { - "offset": 45853640, + "offset": 45631230, "size": 7180, }, }, }, "utility-processes.d.ts.map": { - "offset": 45860810, + "offset": 45638400, "size": 180, }, "utility-processes.js": { - "offset": 45860990, + "offset": 45638580, "size": 4260, }, "utility-processes.js.map": { - "offset": 45865250, + "offset": 45642840, "size": 6280, }, "version.d.ts.map": { - "offset": 45871530, + "offset": 45649110, "size": 150, }, "version.js": { - "offset": 45871670, + "offset": 45649260, "size": 110, }, "version.js.map": { - "offset": 45871770, + "offset": 45649360, "size": 190, }, }, }, "package.json": { - "offset": 45871950, + "offset": 45649540, "size": 2070, }, "preload": { "files": { "index.js": { - "offset": 45874010, + "offset": 45651600, "size": 2730, }, "index.js.map": { - "offset": 45876740, + "offset": 45654330, "size": 6200, }, }, @@ -69162,103 +69014,103 @@ exports[`node_module collectors > yarn ms 2`] = ` "renderer": { "files": { "anr.d.ts.map": { - "offset": 45882930, + "offset": 45660520, "size": 240, }, "anr.js": { - "offset": 45883160, + "offset": 45660750, "size": 730, }, "anr.js.map": { - "offset": 45883890, + "offset": 45661480, "size": 1500, }, "index.d.ts.map": { - "offset": 45885390, + "offset": 45662980, "size": 1780, }, "index.js": { - "offset": 45887170, + "offset": 45664760, "size": 6560, }, "index.js.map": { - "offset": 45893730, + "offset": 45671310, "size": 210, }, "integrations": { "files": { "scope-to-main.d.ts.map": { - "offset": 45893930, + "offset": 45671520, "size": 190, }, "scope-to-main.js": { - "offset": 45894120, + "offset": 45671710, "size": 710, }, "scope-to-main.js.map": { - "offset": 45894820, + "offset": 45672410, "size": 1200, }, }, }, "ipc.d.ts.map": { - "offset": 45896020, + "offset": 45673600, "size": 200, }, "ipc.js": { - "offset": 45896210, + "offset": 45673800, "size": 3280, }, "ipc.js.map": { - "offset": 45899490, + "offset": 45677080, "size": 5240, }, "metrics.d.ts.map": { - "offset": 45904730, + "offset": 45682320, "size": 1030, }, "metrics.js": { - "offset": 45905760, + "offset": 45683350, "size": 2440, }, "metrics.js.map": { - "offset": 45908200, + "offset": 45685780, "size": 5090, }, "sdk.d.ts.map": { - "offset": 45913280, + "offset": 45690870, "size": 760, }, "sdk.js": { - "offset": 45914030, + "offset": 45691620, "size": 2820, }, "sdk.js.map": { - "offset": 45916850, + "offset": 45694440, "size": 5310, }, "stack-parse.d.ts.map": { - "offset": 45922150, + "offset": 45699740, "size": 220, }, "stack-parse.js": { - "offset": 45922370, + "offset": 45699950, "size": 1090, }, "stack-parse.js.map": { - "offset": 45923450, + "offset": 45701040, "size": 2040, }, "transport.d.ts.map": { - "offset": 45925490, + "offset": 45703080, "size": 250, }, "transport.js": { - "offset": 45925730, + "offset": 45703320, "size": 600, }, "transport.js.map": { - "offset": 45926330, + "offset": 45703910, "size": 1110, }, }, @@ -69266,39 +69118,39 @@ exports[`node_module collectors > yarn ms 2`] = ` "utility": { "files": { "index.d.ts.map": { - "offset": 45927430, + "offset": 45705020, "size": 1950, }, "index.js": { - "offset": 45929380, + "offset": 45706970, "size": 7010, }, "index.js.map": { - "offset": 45936380, + "offset": 45713970, "size": 230, }, "sdk.d.ts.map": { - "offset": 45936610, + "offset": 45714190, "size": 360, }, "sdk.js": { - "offset": 45936960, + "offset": 45714550, "size": 2170, }, "sdk.js.map": { - "offset": 45939120, + "offset": 45716710, "size": 4130, }, "transport.d.ts.map": { - "offset": 45943240, + "offset": 45720830, "size": 250, }, "transport.js": { - "offset": 45943490, + "offset": 45721080, "size": 2440, }, "transport.js.map": { - "offset": 45945930, + "offset": 45723520, "size": 4000, }, }, @@ -69308,7 +69160,7 @@ exports[`node_module collectors > yarn ms 2`] = ` "node": { "files": { "LICENSE": { - "offset": 45949930, + "offset": 45727510, "size": 1100, }, "build": { @@ -69318,69 +69170,69 @@ exports[`node_module collectors > yarn ms 2`] = ` "cron": { "files": { "common.js": { - "offset": 45951020, + "offset": 45728610, "size": 1160, }, "common.js.map": { - "offset": 45952180, + "offset": 45729770, "size": 2860, }, "cron.js": { - "offset": 45955040, + "offset": 45732630, "size": 3100, }, "cron.js.map": { - "offset": 45958130, + "offset": 45735720, "size": 6960, }, "index.js": { - "offset": 45965090, + "offset": 45742680, "size": 500, }, "index.js.map": { - "offset": 45965580, + "offset": 45743170, "size": 600, }, "node-cron.js": { - "offset": 45966170, + "offset": 45743760, "size": 2250, }, "node-cron.js.map": { - "offset": 45968420, + "offset": 45746010, "size": 8160, }, "node-schedule.js": { - "offset": 45976570, + "offset": 45754160, "size": 2230, }, "node-schedule.js.map": { - "offset": 45978800, + "offset": 45756380, "size": 8700, }, }, }, "debug-build.js": { - "offset": 45987490, + "offset": 45765080, "size": 530, }, "debug-build.js.map": { - "offset": 45988020, + "offset": 45765610, "size": 610, }, "index.js": { - "offset": 45988620, + "offset": 45766210, "size": 10200, }, "index.js.map": { - "offset": 45998820, + "offset": 45776410, "size": 280, }, "init.js": { - "offset": 45999100, + "offset": 45776690, "size": 380, }, "init.js.map": { - "offset": 45999480, + "offset": 45777070, "size": 510, }, "integrations": { @@ -69388,81 +69240,81 @@ exports[`node_module collectors > yarn ms 2`] = ` "anr": { "files": { "index.js": { - "offset": 45999980, + "offset": 45777570, "size": 52930, }, "index.js.map": { - "offset": 46052900, + "offset": 45830490, "size": 259750, }, }, }, "childProcess.js": { - "offset": 46312650, + "offset": 46090240, "size": 3040, }, "childProcess.js.map": { - "offset": 46315680, + "offset": 46093270, "size": 5640, }, "console.js": { - "offset": 46321320, + "offset": 46098910, "size": 910, }, "console.js.map": { - "offset": 46322220, + "offset": 46099810, "size": 1760, }, "context.js": { - "offset": 46323980, + "offset": 46101570, "size": 15700, }, "context.js.map": { - "offset": 46339670, + "offset": 46117260, "size": 70240, }, "contextlines.js": { - "offset": 46409900, + "offset": 46187490, "size": 14370, }, "contextlines.js.map": { - "offset": 46424270, + "offset": 46201850, "size": 63200, }, "fs.js": { - "offset": 46487460, + "offset": 46265050, "size": 4620, }, "fs.js.map": { - "offset": 46492080, + "offset": 46269660, "size": 8650, }, "http": { "files": { "SentryHttpInstrumentation.js": { - "offset": 46500720, + "offset": 46278310, "size": 13890, }, "SentryHttpInstrumentation.js.map": { - "offset": 46514610, + "offset": 46292200, "size": 26000, }, "index.js": { - "offset": 46540600, + "offset": 46318190, "size": 6170, }, "index.js.map": { - "offset": 46546760, + "offset": 46324350, "size": 29770, }, "vendor": { "files": { "getRequestInfo.js": { - "offset": 46576530, + "offset": 46354120, "size": 4040, }, "getRequestInfo.js.map": { - "offset": 46580570, + "offset": 46358150, "size": 8890, }, }, @@ -69472,305 +69324,305 @@ exports[`node_module collectors > yarn ms 2`] = ` "local-variables": { "files": { "common.js": { - "offset": 46589450, + "offset": 46367040, "size": 1780, }, "common.js.map": { - "offset": 46591220, + "offset": 46368810, "size": 4590, }, "index.js": { - "offset": 46595810, + "offset": 46373390, "size": 580, }, "index.js.map": { - "offset": 46596380, + "offset": 46373970, "size": 940, }, "local-variables-async.js": { - "offset": 46597310, + "offset": 46374900, "size": 9370, }, "local-variables-async.js.map": { - "offset": 46606680, + "offset": 46384270, "size": 42400, }, "local-variables-sync.js": { - "offset": 46649080, + "offset": 46426660, "size": 13250, }, "local-variables-sync.js.map": { - "offset": 46662320, + "offset": 46439910, "size": 54360, }, }, }, "modules.js": { - "offset": 46716680, + "offset": 46494260, "size": 2480, }, "modules.js.map": { - "offset": 46719160, + "offset": 46496740, "size": 4890, }, "node-fetch.js": { - "offset": 46724040, + "offset": 46501630, "size": 4150, }, "node-fetch.js.map": { - "offset": 46728180, + "offset": 46505770, "size": 17480, }, "onuncaughtexception.js": { - "offset": 46745650, + "offset": 46523240, "size": 5900, }, "onuncaughtexception.js.map": { - "offset": 46751550, + "offset": 46529140, "size": 9940, }, "onunhandledrejection.js": { - "offset": 46761480, + "offset": 46539070, "size": 2350, }, "onunhandledrejection.js.map": { - "offset": 46763820, + "offset": 46541410, "size": 4490, }, "spotlight.js": { - "offset": 46768310, + "offset": 46545900, "size": 2990, }, "spotlight.js.map": { - "offset": 46771300, + "offset": 46548890, "size": 5920, }, "tracing": { "files": { "amqplib.js": { - "offset": 46777220, + "offset": 46554810, "size": 1510, }, "amqplib.js.map": { - "offset": 46778730, + "offset": 46556320, "size": 2340, }, "connect.js": { - "offset": 46781060, + "offset": 46558650, "size": 3190, }, "connect.js.map": { - "offset": 46784250, + "offset": 46561840, "size": 5160, }, "dataloader.js": { - "offset": 46789410, + "offset": 46567000, "size": 2360, }, "dataloader.js.map": { - "offset": 46791770, + "offset": 46569350, "size": 9270, }, "express.js": { - "offset": 46801030, + "offset": 46578620, "size": 6490, }, "express.js.map": { - "offset": 46807510, + "offset": 46585100, "size": 27920, }, "fastify.js": { - "offset": 46835420, + "offset": 46613010, "size": 4580, }, "fastify.js.map": { - "offset": 46840000, + "offset": 46617590, "size": 20580, }, "genericPool.js": { - "offset": 46860580, + "offset": 46638170, "size": 1840, }, "genericPool.js.map": { - "offset": 46862420, + "offset": 46640010, "size": 2780, }, "graphql.js": { - "offset": 46865200, + "offset": 46642790, "size": 3580, }, "graphql.js.map": { - "offset": 46868770, + "offset": 46646360, "size": 6550, }, "hapi": { "files": { "index.js": { - "offset": 46875320, + "offset": 46652900, "size": 4240, }, "index.js.map": { - "offset": 46879550, + "offset": 46657140, "size": 17820, }, }, }, "index.js": { - "offset": 46897360, + "offset": 46674950, "size": 3140, }, "index.js.map": { - "offset": 46900500, + "offset": 46678090, "size": 5230, }, "kafka.js": { - "offset": 46905730, + "offset": 46683320, "size": 1480, }, "kafka.js.map": { - "offset": 46907200, + "offset": 46684790, "size": 2160, }, "knex.js": { - "offset": 46909360, + "offset": 46686950, "size": 1510, }, "knex.js.map": { - "offset": 46910870, + "offset": 46688460, "size": 2430, }, "koa.js": { - "offset": 46913290, + "offset": 46690880, "size": 3820, }, "koa.js.map": { - "offset": 46917110, + "offset": 46694700, "size": 15170, }, "lrumemoizer.js": { - "offset": 46932270, + "offset": 46709860, "size": 1280, }, "lrumemoizer.js.map": { - "offset": 46933550, + "offset": 46711140, "size": 1750, }, "mongo.js": { - "offset": 46935290, + "offset": 46712880, "size": 2580, }, "mongo.js.map": { - "offset": 46937870, + "offset": 46715460, "size": 4580, }, "mongoose.js": { - "offset": 46942450, + "offset": 46720040, "size": 1420, }, "mongoose.js.map": { - "offset": 46943860, + "offset": 46721450, "size": 2030, }, "mysql.js": { - "offset": 46945890, + "offset": 46723470, "size": 1170, }, "mysql.js.map": { - "offset": 46947050, + "offset": 46724640, "size": 1660, }, "mysql2.js": { - "offset": 46948700, + "offset": 46726290, "size": 1370, }, "mysql2.js.map": { - "offset": 46950070, + "offset": 46727660, "size": 1990, }, "nest": { "files": { "helpers.js": { - "offset": 46952060, + "offset": 46729650, "size": 2920, }, "helpers.js.map": { - "offset": 46954970, + "offset": 46732560, "size": 12390, }, "nest.js": { - "offset": 46967360, + "offset": 46744940, "size": 5750, }, "nest.js.map": { - "offset": 46973100, + "offset": 46750690, "size": 24900, }, "sentry-nest-event-instrumentation.js": { - "offset": 46997990, + "offset": 46775580, "size": 4230, }, "sentry-nest-event-instrumentation.js.map": { - "offset": 47002220, + "offset": 46779810, "size": 7270, }, "sentry-nest-instrumentation.js": { - "offset": 47009490, + "offset": 46787080, "size": 11770, }, "sentry-nest-instrumentation.js.map": { - "offset": 47021250, + "offset": 46798840, "size": 44530, }, }, }, "postgres.js": { - "offset": 47065780, + "offset": 46843370, "size": 1410, }, "postgres.js.map": { - "offset": 47067180, + "offset": 46844770, "size": 2050, }, "prisma.js": { - "offset": 47069230, + "offset": 46846820, "size": 3950, }, "prisma.js.map": { - "offset": 47073180, + "offset": 46850770, "size": 17540, }, "redis.js": { - "offset": 47090720, + "offset": 46868300, "size": 4020, }, "redis.js.map": { - "offset": 47094730, + "offset": 46872320, "size": 18400, }, "tedious.js": { - "offset": 47113130, + "offset": 46890720, "size": 2070, }, "tedious.js.map": { - "offset": 47115190, + "offset": 46892780, "size": 8440, }, "vercelai": { "files": { "index.js": { - "offset": 47123630, + "offset": 46901220, "size": 7150, }, "index.js.map": { - "offset": 47130770, + "offset": 46908360, "size": 27580, }, "instrumentation.js": { - "offset": 47158350, + "offset": 46935940, "size": 2320, }, "instrumentation.js.map": { - "offset": 47160670, + "offset": 46938250, "size": 4420, }, }, @@ -69780,65 +69632,65 @@ exports[`node_module collectors > yarn ms 2`] = ` }, }, "nodeVersion.js": { - "offset": 47165080, + "offset": 46942670, "size": 320, }, "nodeVersion.js.map": { - "offset": 47165400, + "offset": 46942990, "size": 450, }, "otel": { "files": { "contextManager.js": { - "offset": 47165840, + "offset": 46943430, "size": 790, }, "contextManager.js.map": { - "offset": 47166630, + "offset": 46944220, "size": 920, }, "instrument.js": { - "offset": 47167540, + "offset": 46945130, "size": 1040, }, "instrument.js.map": { - "offset": 47168570, + "offset": 46946160, "size": 1800, }, }, }, "preload.js": { - "offset": 47170360, + "offset": 46947950, "size": 1020, }, "preload.js.map": { - "offset": 47171380, + "offset": 46948970, "size": 1480, }, "proxy": { "files": { "base.js": { - "offset": 47172850, + "offset": 46950440, "size": 4140, }, "base.js.map": { - "offset": 47176990, + "offset": 46954580, "size": 19110, }, "index.js": { - "offset": 47196100, + "offset": 46973690, "size": 5790, }, "index.js.map": { - "offset": 47201880, + "offset": 46979470, "size": 27640, }, "parse-proxy-response.js": { - "offset": 47229520, + "offset": 47007110, "size": 3110, }, "parse-proxy-response.js.map": { - "offset": 47232620, + "offset": 47010210, "size": 7930, }, }, @@ -69846,35 +69698,35 @@ exports[`node_module collectors > yarn ms 2`] = ` "sdk": { "files": { "api.js": { - "offset": 47240550, + "offset": 47018130, "size": 6090, }, "api.js.map": { - "offset": 47246630, + "offset": 47024220, "size": 8740, }, "client.js": { - "offset": 47255370, + "offset": 47032960, "size": 4690, }, "client.js.map": { - "offset": 47260050, + "offset": 47037640, "size": 20270, }, "index.js": { - "offset": 47280320, + "offset": 47057900, "size": 10870, }, "index.js.map": { - "offset": 47291180, + "offset": 47068770, "size": 18910, }, "initOtel.js": { - "offset": 47310090, + "offset": 47087680, "size": 7330, }, "initOtel.js.map": { - "offset": 47317420, + "offset": 47095010, "size": 30570, }, }, @@ -69882,11 +69734,11 @@ exports[`node_module collectors > yarn ms 2`] = ` "transports": { "files": { "http.js": { - "offset": 47347990, + "offset": 47125580, "size": 5060, }, "http.js.map": { - "offset": 47353050, + "offset": 47130630, "size": 21490, }, }, @@ -69894,83 +69746,83 @@ exports[`node_module collectors > yarn ms 2`] = ` "utils": { "files": { "addOriginToSpan.js": { - "offset": 47374530, + "offset": 47152120, "size": 350, }, "addOriginToSpan.js.map": { - "offset": 47374870, + "offset": 47152460, "size": 640, }, "commonjs.js": { - "offset": 47375500, + "offset": 47153090, "size": 220, }, "commonjs.js.map": { - "offset": 47375710, + "offset": 47153300, "size": 310, }, "createMissingInstrumentationContext.js": { - "offset": 47376020, + "offset": 47153600, "size": 380, }, "createMissingInstrumentationContext.js.map": { - "offset": 47376390, + "offset": 47153980, "size": 570, }, "debug.js": { - "offset": 47376950, + "offset": 47154540, "size": 600, }, "debug.js.map": { - "offset": 47377550, + "offset": 47155140, "size": 960, }, "ensureIsWrapped.js": { - "offset": 47378500, + "offset": 47156090, "size": 1630, }, "ensureIsWrapped.js.map": { - "offset": 47380130, + "offset": 47157720, "size": 5390, }, "envToBool.js": { - "offset": 47385510, + "offset": 47163100, "size": 1190, }, "envToBool.js.map": { - "offset": 47386700, + "offset": 47164290, "size": 2200, }, "errorhandling.js": { - "offset": 47388900, + "offset": 47166490, "size": 1190, }, "errorhandling.js.map": { - "offset": 47390080, + "offset": 47167670, "size": 2180, }, "getRequestUrl.js": { - "offset": 47392260, + "offset": 47169840, "size": 800, }, "getRequestUrl.js.map": { - "offset": 47393050, + "offset": 47170640, "size": 1420, }, "module.js": { - "offset": 47394460, + "offset": 47172050, "size": 1880, }, "module.js.map": { - "offset": 47396340, + "offset": 47173930, "size": 3500, }, "redisCache.js": { - "offset": 47399830, + "offset": 47177420, "size": 3660, }, "redisCache.js.map": { - "offset": 47403490, + "offset": 47181080, "size": 7040, }, }, @@ -69982,69 +69834,69 @@ exports[`node_module collectors > yarn ms 2`] = ` "cron": { "files": { "common.js": { - "offset": 47410530, + "offset": 47188120, "size": 1080, }, "common.js.map": { - "offset": 47411610, + "offset": 47189190, "size": 2860, }, "cron.js": { - "offset": 47414460, + "offset": 47192050, "size": 3020, }, "cron.js.map": { - "offset": 47417480, + "offset": 47195070, "size": 6900, }, "index.js": { - "offset": 47424370, + "offset": 47201960, "size": 360, }, "index.js.map": { - "offset": 47424730, + "offset": 47202320, "size": 520, }, "node-cron.js": { - "offset": 47425250, + "offset": 47202840, "size": 2180, }, "node-cron.js.map": { - "offset": 47427430, + "offset": 47205010, "size": 7970, }, "node-schedule.js": { - "offset": 47435390, + "offset": 47212980, "size": 2140, }, "node-schedule.js.map": { - "offset": 47437530, + "offset": 47215120, "size": 8580, }, }, }, "debug-build.js": { - "offset": 47446100, + "offset": 47223690, "size": 460, }, "debug-build.js.map": { - "offset": 47446560, + "offset": 47224140, "size": 610, }, "index.js": { - "offset": 47447160, + "offset": 47224750, "size": 4920, }, "index.js.map": { - "offset": 47452080, + "offset": 47229660, "size": 140, }, "init.js": { - "offset": 47452210, + "offset": 47229800, "size": 380, }, "init.js.map": { - "offset": 47452580, + "offset": 47230170, "size": 500, }, "integrations": { @@ -70052,85 +69904,85 @@ exports[`node_module collectors > yarn ms 2`] = ` "anr": { "files": { "index.js": { - "offset": 47453080, + "offset": 47230660, "size": 52770, }, "index.js.map": { - "offset": 47505840, + "offset": 47283430, "size": 258830, }, "worker-script.js": { - "offset": 47764660, + "offset": 47542250, "size": 34320, }, }, }, "childProcess.js": { - "offset": 47798980, + "offset": 47576560, "size": 2910, }, "childProcess.js.map": { - "offset": 47801880, + "offset": 47579470, "size": 5600, }, "console.js": { - "offset": 47807480, + "offset": 47585070, "size": 900, }, "console.js.map": { - "offset": 47808380, + "offset": 47585960, "size": 1630, }, "context.js": { - "offset": 47810000, + "offset": 47587590, "size": 15460, }, "context.js.map": { - "offset": 47825460, + "offset": 47603040, "size": 69820, }, "contextlines.js": { - "offset": 47895270, + "offset": 47672860, "size": 14070, }, "contextlines.js.map": { - "offset": 47909340, + "offset": 47686930, "size": 62670, }, "fs.js": { - "offset": 47972000, + "offset": 47749590, "size": 4590, }, "fs.js.map": { - "offset": 47976580, + "offset": 47754170, "size": 8510, }, "http": { "files": { "SentryHttpInstrumentation.js": { - "offset": 47985090, + "offset": 47762680, "size": 13870, }, "SentryHttpInstrumentation.js.map": { - "offset": 47998960, + "offset": 47776550, "size": 25650, }, "index.js": { - "offset": 48024600, + "offset": 47802190, "size": 5920, }, "index.js.map": { - "offset": 48030510, + "offset": 47808100, "size": 28860, }, "vendor": { "files": { "getRequestInfo.js": { - "offset": 48059370, + "offset": 47836960, "size": 3960, }, "getRequestInfo.js.map": { - "offset": 48063330, + "offset": 47840920, "size": 8880, }, }, @@ -70140,309 +69992,309 @@ exports[`node_module collectors > yarn ms 2`] = ` "local-variables": { "files": { "common.js": { - "offset": 48072210, + "offset": 47849800, "size": 1610, }, "common.js.map": { - "offset": 48073820, + "offset": 47851400, "size": 4590, }, "index.js": { - "offset": 48078400, + "offset": 47855990, "size": 460, }, "index.js.map": { - "offset": 48078850, + "offset": 47856440, "size": 850, }, "local-variables-async.js": { - "offset": 48079700, + "offset": 47857290, "size": 9200, }, "local-variables-async.js.map": { - "offset": 48088900, + "offset": 47866490, "size": 41830, }, "local-variables-sync.js": { - "offset": 48130720, + "offset": 47908310, "size": 13080, }, "local-variables-sync.js.map": { - "offset": 48143800, + "offset": 47921390, "size": 53870, }, "worker-script.js": { - "offset": 48197660, + "offset": 47975250, "size": 3670, }, }, }, "modules.js": { - "offset": 48201330, + "offset": 47978920, "size": 2370, }, "modules.js.map": { - "offset": 48203700, + "offset": 47981290, "size": 4780, }, "node-fetch.js": { - "offset": 48208470, + "offset": 47986060, "size": 4150, }, "node-fetch.js.map": { - "offset": 48212620, + "offset": 47990200, "size": 16610, }, "onuncaughtexception.js": { - "offset": 48229220, + "offset": 48006810, "size": 5770, }, "onuncaughtexception.js.map": { - "offset": 48234990, + "offset": 48012580, "size": 9830, }, "onunhandledrejection.js": { - "offset": 48244810, + "offset": 48022400, "size": 2240, }, "onunhandledrejection.js.map": { - "offset": 48247050, + "offset": 48024640, "size": 4400, }, "spotlight.js": { - "offset": 48251440, + "offset": 48029030, "size": 2860, }, "spotlight.js.map": { - "offset": 48254300, + "offset": 48031880, "size": 5870, }, "tracing": { "files": { "amqplib.js": { - "offset": 48260160, + "offset": 48037740, "size": 1350, }, "amqplib.js.map": { - "offset": 48261500, + "offset": 48039090, "size": 2240, }, "connect.js": { - "offset": 48263740, + "offset": 48041330, "size": 3090, }, "connect.js.map": { - "offset": 48266820, + "offset": 48044410, "size": 4950, }, "dataloader.js": { - "offset": 48271770, + "offset": 48049360, "size": 2280, }, "dataloader.js.map": { - "offset": 48274050, + "offset": 48051640, "size": 8950, }, "express.js": { - "offset": 48282990, + "offset": 48060580, "size": 6310, }, "express.js.map": { - "offset": 48289300, + "offset": 48066890, "size": 27090, }, "fastify.js": { - "offset": 48316390, + "offset": 48093980, "size": 4490, }, "fastify.js.map": { - "offset": 48320870, + "offset": 48098460, "size": 20050, }, "genericPool.js": { - "offset": 48340920, + "offset": 48118510, "size": 1740, }, "genericPool.js.map": { - "offset": 48342660, + "offset": 48120240, "size": 2650, }, "graphql.js": { - "offset": 48345300, + "offset": 48122890, "size": 3420, }, "graphql.js.map": { - "offset": 48348720, + "offset": 48126300, "size": 6370, }, "hapi": { "files": { "index.js": { - "offset": 48355080, + "offset": 48132670, "size": 4150, }, "index.js.map": { - "offset": 48359230, + "offset": 48136820, "size": 16870, }, }, }, "index.js": { - "offset": 48376090, + "offset": 48153680, "size": 3250, }, "index.js.map": { - "offset": 48379340, + "offset": 48156920, "size": 4390, }, "kafka.js": { - "offset": 48383720, + "offset": 48161310, "size": 1320, }, "kafka.js.map": { - "offset": 48385040, + "offset": 48162630, "size": 2070, }, "knex.js": { - "offset": 48387110, + "offset": 48164690, "size": 1430, }, "knex.js.map": { - "offset": 48388530, + "offset": 48166120, "size": 2300, }, "koa.js": { - "offset": 48390830, + "offset": 48168420, "size": 3710, }, "koa.js.map": { - "offset": 48394540, + "offset": 48172130, "size": 14490, }, "lrumemoizer.js": { - "offset": 48409030, + "offset": 48186620, "size": 1140, }, "lrumemoizer.js.map": { - "offset": 48410170, + "offset": 48187760, "size": 1670, }, "mongo.js": { - "offset": 48411830, + "offset": 48189420, "size": 2400, }, "mongo.js.map": { - "offset": 48414230, + "offset": 48191820, "size": 4490, }, "mongoose.js": { - "offset": 48418710, + "offset": 48196300, "size": 1270, }, "mongoose.js.map": { - "offset": 48419980, + "offset": 48197570, "size": 1930, }, "mysql.js": { - "offset": 48421910, + "offset": 48199500, "size": 1040, }, "mysql.js.map": { - "offset": 48422950, + "offset": 48200540, "size": 1580, }, "mysql2.js": { - "offset": 48424530, + "offset": 48202120, "size": 1230, }, "mysql2.js.map": { - "offset": 48425760, + "offset": 48203350, "size": 1900, }, "nest": { "files": { "helpers.js": { - "offset": 48427650, + "offset": 48205240, "size": 2790, }, "helpers.js.map": { - "offset": 48430430, + "offset": 48208020, "size": 12070, }, "nest.js": { - "offset": 48442500, + "offset": 48220080, "size": 5610, }, "nest.js.map": { - "offset": 48448110, + "offset": 48225690, "size": 23270, }, "sentry-nest-event-instrumentation.js": { - "offset": 48471370, + "offset": 48248950, "size": 4180, }, "sentry-nest-event-instrumentation.js.map": { - "offset": 48475540, + "offset": 48253130, "size": 7090, }, "sentry-nest-instrumentation.js": { - "offset": 48482620, + "offset": 48260210, "size": 11660, }, "sentry-nest-instrumentation.js.map": { - "offset": 48494280, + "offset": 48271870, "size": 42550, }, }, }, "postgres.js": { - "offset": 48536830, + "offset": 48314420, "size": 1270, }, "postgres.js.map": { - "offset": 48538100, + "offset": 48315680, "size": 1960, }, "prisma.js": { - "offset": 48540050, + "offset": 48317640, "size": 3880, }, "prisma.js.map": { - "offset": 48543930, + "offset": 48321520, "size": 17310, }, "redis.js": { - "offset": 48561240, + "offset": 48338820, "size": 4030, }, "redis.js.map": { - "offset": 48565270, + "offset": 48342850, "size": 16940, }, "tedious.js": { - "offset": 48582200, + "offset": 48359790, "size": 1970, }, "tedious.js.map": { - "offset": 48584170, + "offset": 48361760, "size": 7970, }, "vercelai": { "files": { "index.js": { - "offset": 48592140, + "offset": 48369730, "size": 7000, }, "index.js.map": { - "offset": 48599130, + "offset": 48376720, "size": 26610, }, "instrumentation.js": { - "offset": 48625740, + "offset": 48403320, "size": 2250, }, "instrumentation.js.map": { - "offset": 48627980, + "offset": 48405570, "size": 4320, }, }, @@ -70452,69 +70304,69 @@ exports[`node_module collectors > yarn ms 2`] = ` }, }, "nodeVersion.js": { - "offset": 48632290, + "offset": 48409880, "size": 220, }, "nodeVersion.js.map": { - "offset": 48632510, + "offset": 48410100, "size": 430, }, "otel": { "files": { "contextManager.js": { - "offset": 48632940, + "offset": 48410530, "size": 700, }, "contextManager.js.map": { - "offset": 48633640, + "offset": 48411220, "size": 850, }, "instrument.js": { - "offset": 48634480, + "offset": 48412070, "size": 910, }, "instrument.js.map": { - "offset": 48635390, + "offset": 48412980, "size": 1740, }, }, }, "package.json": { - "offset": 48637130, + "offset": 48414720, "size": 60, }, "preload.js": { - "offset": 48637180, + "offset": 48414770, "size": 1010, }, "preload.js.map": { - "offset": 48638190, + "offset": 48415780, "size": 1440, }, "proxy": { "files": { "base.js": { - "offset": 48639620, + "offset": 48417210, "size": 4070, }, "base.js.map": { - "offset": 48643690, + "offset": 48421270, "size": 19110, }, "index.js": { - "offset": 48662790, + "offset": 48440380, "size": 5670, }, "index.js.map": { - "offset": 48668450, + "offset": 48446040, "size": 27430, }, "parse-proxy-response.js": { - "offset": 48695870, + "offset": 48473460, "size": 3020, }, "parse-proxy-response.js.map": { - "offset": 48698890, + "offset": 48476480, "size": 7920, }, }, @@ -70522,35 +70374,35 @@ exports[`node_module collectors > yarn ms 2`] = ` "sdk": { "files": { "api.js": { - "offset": 48706810, + "offset": 48484390, "size": 6010, }, "api.js.map": { - "offset": 48712810, + "offset": 48490400, "size": 8650, }, "client.js": { - "offset": 48721460, + "offset": 48499040, "size": 4580, }, "client.js.map": { - "offset": 48726040, + "offset": 48503620, "size": 19720, }, "index.js": { - "offset": 48745750, + "offset": 48523330, "size": 10890, }, "index.js.map": { - "offset": 48756630, + "offset": 48534220, "size": 17870, }, "initOtel.js": { - "offset": 48774490, + "offset": 48552080, "size": 6470, }, "initOtel.js.map": { - "offset": 48780950, + "offset": 48558540, "size": 26710, }, }, @@ -70558,11 +70410,11 @@ exports[`node_module collectors > yarn ms 2`] = ` "transports": { "files": { "http.js": { - "offset": 48807660, + "offset": 48585240, "size": 4970, }, "http.js.map": { - "offset": 48812620, + "offset": 48590210, "size": 21020, }, }, @@ -70570,83 +70422,83 @@ exports[`node_module collectors > yarn ms 2`] = ` "utils": { "files": { "addOriginToSpan.js": { - "offset": 48833640, + "offset": 48611220, "size": 290, }, "addOriginToSpan.js.map": { - "offset": 48833920, + "offset": 48611510, "size": 600, }, "commonjs.js": { - "offset": 48834520, + "offset": 48612100, "size": 150, }, "commonjs.js.map": { - "offset": 48834660, + "offset": 48612250, "size": 310, }, "createMissingInstrumentationContext.js": { - "offset": 48834960, + "offset": 48612550, "size": 270, }, "createMissingInstrumentationContext.js.map": { - "offset": 48835220, + "offset": 48612810, "size": 560, }, "debug.js": { - "offset": 48835770, + "offset": 48613360, "size": 520, }, "debug.js.map": { - "offset": 48836290, + "offset": 48613880, "size": 960, }, "ensureIsWrapped.js": { - "offset": 48837240, + "offset": 48614830, "size": 1530, }, "ensureIsWrapped.js.map": { - "offset": 48838770, + "offset": 48616360, "size": 4810, }, "envToBool.js": { - "offset": 48843580, + "offset": 48621160, "size": 1070, }, "envToBool.js.map": { - "offset": 48844640, + "offset": 48622230, "size": 2200, }, "errorhandling.js": { - "offset": 48846830, + "offset": 48624420, "size": 1080, }, "errorhandling.js.map": { - "offset": 48847910, + "offset": 48625500, "size": 2110, }, "getRequestUrl.js": { - "offset": 48850010, + "offset": 48627600, "size": 720, }, "getRequestUrl.js.map": { - "offset": 48850730, + "offset": 48628320, "size": 1420, }, "module.js": { - "offset": 48852140, + "offset": 48629730, "size": 1760, }, "module.js.map": { - "offset": 48853900, + "offset": 48631490, "size": 3470, }, "redisCache.js": { - "offset": 48857370, + "offset": 48634960, "size": 3420, }, "redisCache.js.map": { - "offset": 48860780, + "offset": 48638370, "size": 7030, }, }, @@ -70654,11 +70506,11 @@ exports[`node_module collectors > yarn ms 2`] = ` }, }, "import-hook.mjs": { - "offset": 48867810, + "offset": 48645400, "size": 160, }, "loader-hook.mjs": { - "offset": 48867970, + "offset": 48645560, "size": 100, }, "types": { @@ -70666,37 +70518,37 @@ exports[`node_module collectors > yarn ms 2`] = ` "cron": { "files": { "common.d.ts.map": { - "offset": 48868060, + "offset": 48645650, "size": 190, }, "cron.d.ts.map": { - "offset": 48868250, + "offset": 48645840, "size": 1660, }, "index.d.ts.map": { - "offset": 48869900, + "offset": 48647490, "size": 290, }, "node-cron.d.ts.map": { - "offset": 48870190, + "offset": 48647780, "size": 450, }, "node-schedule.d.ts.map": { - "offset": 48870630, + "offset": 48648220, "size": 430, }, }, }, "debug-build.d.ts.map": { - "offset": 48871050, + "offset": 48648640, "size": 170, }, "index.d.ts.map": { - "offset": 48871220, + "offset": 48648800, "size": 3460, }, "init.d.ts.map": { - "offset": 48874670, + "offset": 48652260, "size": 110, }, "integrations": { @@ -70704,53 +70556,53 @@ exports[`node_module collectors > yarn ms 2`] = ` "anr": { "files": { "common.d.ts.map": { - "offset": 48874770, + "offset": 48652360, "size": 800, }, "index.d.ts.map": { - "offset": 48875570, + "offset": 48653160, "size": 650, }, "worker.d.ts.map": { - "offset": 48876220, + "offset": 48653800, "size": 140, }, }, }, "childProcess.d.ts.map": { - "offset": 48876350, + "offset": 48653940, "size": 300, }, "console.d.ts.map": { - "offset": 48876640, + "offset": 48654230, "size": 180, }, "context.d.ts.map": { - "offset": 48876810, + "offset": 48654400, "size": 750, }, "contextlines.d.ts.map": { - "offset": 48877560, + "offset": 48655140, "size": 660, }, "fs.d.ts.map": { - "offset": 48878210, + "offset": 48655800, "size": 200, }, "http": { "files": { "SentryHttpInstrumentation.d.ts.map": { - "offset": 48878410, + "offset": 48656000, "size": 850, }, "index.d.ts.map": { - "offset": 48879250, + "offset": 48656840, "size": 1390, }, "vendor": { "files": { "getRequestInfo.d.ts.map": { - "offset": 48880640, + "offset": 48658230, "size": 460, }, }, @@ -70760,177 +70612,177 @@ exports[`node_module collectors > yarn ms 2`] = ` "local-variables": { "files": { "common.d.ts.map": { - "offset": 48881090, + "offset": 48658680, "size": 1150, }, "index.d.ts.map": { - "offset": 48882240, + "offset": 48659830, "size": 290, }, "local-variables-async.d.ts.map": { - "offset": 48882530, + "offset": 48660110, "size": 310, }, "local-variables-sync.d.ts.map": { - "offset": 48882830, + "offset": 48660420, "size": 1360, }, "worker.d.ts.map": { - "offset": 48884180, + "offset": 48661770, "size": 150, }, }, }, "modules.d.ts.map": { - "offset": 48884330, + "offset": 48661910, "size": 180, }, "node-fetch.d.ts.map": { - "offset": 48884500, + "offset": 48662090, "size": 310, }, "onuncaughtexception.d.ts.map": { - "offset": 48884800, + "offset": 48662390, "size": 620, }, "onunhandledrejection.d.ts.map": { - "offset": 48885410, + "offset": 48663000, "size": 510, }, "spotlight.d.ts.map": { - "offset": 48885920, + "offset": 48663500, "size": 420, }, "tracing": { "files": { "amqplib.d.ts.map": { - "offset": 48886330, + "offset": 48663920, "size": 230, }, "connect.d.ts.map": { - "offset": 48886560, + "offset": 48664150, "size": 390, }, "dataloader.d.ts.map": { - "offset": 48886950, + "offset": 48664540, "size": 240, }, "express.d.ts.map": { - "offset": 48887190, + "offset": 48664770, "size": 1160, }, "fastify.d.ts.map": { - "offset": 48888340, + "offset": 48665930, "size": 530, }, "genericPool.d.ts.map": { - "offset": 48888860, + "offset": 48666450, "size": 240, }, "graphql.d.ts.map": { - "offset": 48889100, + "offset": 48666690, "size": 400, }, "hapi": { "files": { "index.d.ts.map": { - "offset": 48889490, + "offset": 48667080, "size": 450, }, "types.d.ts.map": { - "offset": 48889940, + "offset": 48667530, "size": 6030, }, }, }, "index.d.ts.map": { - "offset": 48895960, + "offset": 48673550, "size": 370, }, "kafka.d.ts.map": { - "offset": 48896330, + "offset": 48673920, "size": 220, }, "knex.d.ts.map": { - "offset": 48896550, + "offset": 48674140, "size": 220, }, "koa.d.ts.map": { - "offset": 48896770, + "offset": 48674360, "size": 350, }, "lrumemoizer.d.ts.map": { - "offset": 48897110, + "offset": 48674700, "size": 240, }, "mongo.d.ts.map": { - "offset": 48897350, + "offset": 48674930, "size": 320, }, "mongoose.d.ts.map": { - "offset": 48897660, + "offset": 48675250, "size": 230, }, "mysql.d.ts.map": { - "offset": 48897890, + "offset": 48675480, "size": 230, }, "mysql2.d.ts.map": { - "offset": 48898110, + "offset": 48675700, "size": 230, }, "nest": { "files": { "helpers.d.ts.map": { - "offset": 48898340, + "offset": 48675920, "size": 850, }, "nest.d.ts.map": { - "offset": 48899180, + "offset": 48676770, "size": 390, }, "sentry-nest-event-instrumentation.d.ts.map": { - "offset": 48899570, + "offset": 48677150, "size": 540, }, "sentry-nest-instrumentation.d.ts.map": { - "offset": 48900100, + "offset": 48677690, "size": 600, }, "types.d.ts.map": { - "offset": 48900700, + "offset": 48678290, "size": 2270, }, }, }, "postgres.d.ts.map": { - "offset": 48902960, + "offset": 48680550, "size": 230, }, "prisma.d.ts.map": { - "offset": 48903190, + "offset": 48680780, "size": 320, }, "redis.d.ts.map": { - "offset": 48903500, + "offset": 48681090, "size": 310, }, "tedious.d.ts.map": { - "offset": 48903800, + "offset": 48681390, "size": 230, }, "vercelai": { "files": { "index.d.ts.map": { - "offset": 48904030, + "offset": 48681620, "size": 260, }, "instrumentation.d.ts.map": { - "offset": 48904290, + "offset": 48681880, "size": 450, }, "types.d.ts.map": { - "offset": 48904740, + "offset": 48682330, "size": 660, }, }, @@ -70940,41 +70792,41 @@ exports[`node_module collectors > yarn ms 2`] = ` }, }, "nodeVersion.d.ts.map": { - "offset": 48905390, + "offset": 48682980, "size": 220, }, "otel": { "files": { "contextManager.d.ts.map": { - "offset": 48905600, + "offset": 48683190, "size": 230, }, "instrument.d.ts.map": { - "offset": 48905830, + "offset": 48683420, "size": 470, }, }, }, "preload.d.ts.map": { - "offset": 48906290, + "offset": 48683880, "size": 120, }, "proxy": { "files": { "base.d.ts.map": { - "offset": 48906400, + "offset": 48683990, "size": 1400, }, "helpers.d.ts.map": { - "offset": 48907800, + "offset": 48685390, "size": 630, }, "index.d.ts.map": { - "offset": 48908430, + "offset": 48686020, "size": 1440, }, "parse-proxy-response.d.ts.map": { - "offset": 48909860, + "offset": 48687450, "size": 510, }, }, @@ -70982,23 +70834,23 @@ exports[`node_module collectors > yarn ms 2`] = ` "sdk": { "files": { "api.d.ts.map": { - "offset": 48910370, + "offset": 48687960, "size": 290, }, "client.d.ts.map": { - "offset": 48910660, + "offset": 48688240, "size": 960, }, "index.d.ts.map": { - "offset": 48911620, + "offset": 48689200, "size": 600, }, "initOtel.d.ts.map": { - "offset": 48912210, + "offset": 48689790, "size": 930, }, "scope.d.ts.map": { - "offset": 48913130, + "offset": 48690720, "size": 230, }, }, @@ -71006,71 +70858,71 @@ exports[`node_module collectors > yarn ms 2`] = ` "transports": { "files": { "http-module.d.ts.map": { - "offset": 48913350, + "offset": 48690940, "size": 850, }, "http.d.ts.map": { - "offset": 48914200, + "offset": 48691780, "size": 630, }, "index.d.ts.map": { - "offset": 48914820, + "offset": 48692410, "size": 210, }, }, }, "types.d.ts.map": { - "offset": 48915020, + "offset": 48692610, "size": 1770, }, "utils": { "files": { "addOriginToSpan.d.ts.map": { - "offset": 48916790, + "offset": 48694370, "size": 320, }, "commonjs.d.ts.map": { - "offset": 48917100, + "offset": 48694690, "size": 170, }, "createMissingInstrumentationContext.d.ts.map": { - "offset": 48917270, + "offset": 48694860, "size": 280, }, "debug.d.ts.map": { - "offset": 48917540, + "offset": 48695130, "size": 180, }, "ensureIsWrapped.d.ts.map": { - "offset": 48917720, + "offset": 48695300, "size": 270, }, "entry-point.d.ts.map": { - "offset": 48917980, + "offset": 48695570, "size": 540, }, "envToBool.d.ts.map": { - "offset": 48918510, + "offset": 48696100, "size": 620, }, "errorhandling.d.ts.map": { - "offset": 48919130, + "offset": 48696710, "size": 200, }, "getRequestUrl.d.ts.map": { - "offset": 48919320, + "offset": 48696910, "size": 250, }, "module.d.ts.map": { - "offset": 48919570, + "offset": 48697160, "size": 260, }, "prepareEvent.d.ts.map": { - "offset": 48919820, + "offset": 48697410, "size": 500, }, "redisCache.d.ts.map": { - "offset": 48920320, + "offset": 48697900, "size": 760, }, }, @@ -71080,7 +70932,7 @@ exports[`node_module collectors > yarn ms 2`] = ` }, }, "package.json": { - "offset": 48921070, + "offset": 48698660, "size": 3480, }, }, @@ -71088,7 +70940,7 @@ exports[`node_module collectors > yarn ms 2`] = ` "opentelemetry": { "files": { "LICENSE": { - "offset": 48924550, + "offset": 48702130, "size": 1100, }, "build": { @@ -71096,11 +70948,11 @@ exports[`node_module collectors > yarn ms 2`] = ` "cjs": { "files": { "index.js": { - "offset": 48925640, + "offset": 48703230, "size": 83200, }, "index.js.map": { - "offset": 49008840, + "offset": 48786430, "size": 395070, }, }, @@ -71108,15 +70960,15 @@ exports[`node_module collectors > yarn ms 2`] = ` "esm": { "files": { "index.js": { - "offset": 49403900, + "offset": 49181490, "size": 82160, }, "index.js.map": { - "offset": 49486060, + "offset": 49263650, "size": 385510, }, "package.json": { - "offset": 49871560, + "offset": 49649150, "size": 60, }, }, @@ -71124,137 +70976,137 @@ exports[`node_module collectors > yarn ms 2`] = ` "types": { "files": { "asyncContextStrategy.d.ts.map": { - "offset": 49871620, + "offset": 49649210, "size": 190, }, "constants.d.ts.map": { - "offset": 49871800, + "offset": 49649390, "size": 420, }, "contextManager.d.ts.map": { - "offset": 49872220, + "offset": 49649810, "size": 320, }, "custom": { "files": { "client.d.ts.map": { - "offset": 49872540, + "offset": 49650120, "size": 490, }, }, }, "debug-build.d.ts.map": { - "offset": 49873020, + "offset": 49650610, "size": 170, }, "index.d.ts.map": { - "offset": 49873190, + "offset": 49650770, "size": 1310, }, "instrumentation.d.ts.map": { - "offset": 49874490, + "offset": 49652080, "size": 260, }, "propagator.d.ts.map": { - "offset": 49874750, + "offset": 49652330, "size": 1310, }, "sampler.d.ts.map": { - "offset": 49876050, + "offset": 49653640, "size": 840, }, "semanticAttributes.d.ts.map": { - "offset": 49876880, + "offset": 49654470, "size": 220, }, "setupEventContextTrace.d.ts.map": { - "offset": 49877100, + "offset": 49654690, "size": 260, }, "spanExporter.d.ts.map": { - "offset": 49877350, + "offset": 49654940, "size": 700, }, "spanProcessor.d.ts.map": { - "offset": 49878050, + "offset": 49655640, "size": 620, }, "trace.d.ts.map": { - "offset": 49878660, + "offset": 49656250, "size": 1100, }, "types.d.ts.map": { - "offset": 49879750, + "offset": 49657340, "size": 630, }, "utils": { "files": { "addOriginToSpan.d.ts.map": { - "offset": 49880380, + "offset": 49657970, "size": 320, }, "contextData.d.ts.map": { - "offset": 49880690, + "offset": 49658280, "size": 600, }, "enhanceDscWithOpenTelemetryRootSpanName.d.ts.map": { - "offset": 49881290, + "offset": 49658880, "size": 300, }, "generateSpanContextForPropagationContext.d.ts.map": { - "offset": 49881580, + "offset": 49659170, "size": 360, }, "getActiveSpan.d.ts.map": { - "offset": 49881940, + "offset": 49659530, "size": 240, }, "getRequestSpanData.d.ts.map": { - "offset": 49882170, + "offset": 49659760, "size": 380, }, "getSamplingDecision.d.ts.map": { - "offset": 49882550, + "offset": 49660140, "size": 280, }, "getSpanKind.d.ts.map": { - "offset": 49882820, + "offset": 49660410, "size": 290, }, "getTraceData.d.ts.map": { - "offset": 49883110, + "offset": 49660690, "size": 300, }, "groupSpansWithParents.d.ts.map": { - "offset": 49883400, + "offset": 49660990, "size": 510, }, "isSentryRequest.d.ts.map": { - "offset": 49883900, + "offset": 49661490, "size": 250, }, "makeTraceState.d.ts.map": { - "offset": 49884150, + "offset": 49661740, "size": 390, }, "mapStatus.d.ts.map": { - "offset": 49884540, + "offset": 49662130, "size": 290, }, "parseSpanDescription.d.ts.map": { - "offset": 49884820, + "offset": 49662410, "size": 1340, }, "setupCheck.d.ts.map": { - "offset": 49886160, + "offset": 49663740, "size": 370, }, "spanTypes.d.ts.map": { - "offset": 49886520, + "offset": 49664110, "size": 1100, }, "suppressTracing.d.ts.map": { - "offset": 49887620, + "offset": 49665210, "size": 220, }, }, @@ -71264,7 +71116,7 @@ exports[`node_module collectors > yarn ms 2`] = ` }, }, "package.json": { - "offset": 49887830, + "offset": 49665420, "size": 1640, }, }, @@ -71276,7 +71128,7 @@ exports[`node_module collectors > yarn ms 2`] = ` "browser-utils": { "files": { "LICENSE": { - "offset": 35784920, + "offset": 35562510, "size": 1100, }, "build": { @@ -71284,53 +71136,53 @@ exports[`node_module collectors > yarn ms 2`] = ` "cjs": { "files": { "debug-build.js": { - "offset": 35786020, + "offset": 35563610, "size": 530, }, "debug-build.js.map": { - "offset": 35786550, + "offset": 35564140, "size": 610, }, "getNativeImplementation.js": { - "offset": 35787150, + "offset": 35564740, "size": 4450, }, "getNativeImplementation.js.map": { - "offset": 35791600, + "offset": 35569190, "size": 6680, }, "index.js": { - "offset": 35798280, + "offset": 35575870, "size": 2070, }, "index.js.map": { - "offset": 35800340, + "offset": 35577930, "size": 130, }, "instrument": { "files": { "dom.js": { - "offset": 35800460, + "offset": 35578050, "size": 8730, }, "dom.js.map": { - "offset": 35809180, + "offset": 35586770, "size": 14800, }, "history.js": { - "offset": 35823980, + "offset": 35601570, "size": 2320, }, "history.js.map": { - "offset": 35826300, + "offset": 35603890, "size": 4050, }, "xhr.js": { - "offset": 35830350, + "offset": 35607940, "size": 5970, }, "xhr.js.map": { - "offset": 35836310, + "offset": 35613900, "size": 9970, }, }, @@ -71338,205 +71190,205 @@ exports[`node_module collectors > yarn ms 2`] = ` "metrics": { "files": { "browserMetrics.js": { - "offset": 35846270, + "offset": 35623860, "size": 22180, }, "browserMetrics.js.map": { - "offset": 35868450, + "offset": 35646040, "size": 41550, }, "cls.js": { - "offset": 35910000, + "offset": 35687580, "size": 3890, }, "cls.js.map": { - "offset": 35913880, + "offset": 35691470, "size": 7450, }, "inp.js": { - "offset": 35921320, + "offset": 35698910, "size": 4770, }, "inp.js.map": { - "offset": 35926090, + "offset": 35703680, "size": 9310, }, "instrument.js": { - "offset": 35935400, + "offset": 35712990, "size": 6530, }, "instrument.js.map": { - "offset": 35941930, + "offset": 35719520, "size": 15240, }, "utils.js": { - "offset": 35957170, + "offset": 35734750, "size": 4150, }, "utils.js.map": { - "offset": 35961310, + "offset": 35738900, "size": 6920, }, "web-vitals": { "files": { "getCLS.js": { - "offset": 35968230, + "offset": 35745810, "size": 4630, }, "getCLS.js.map": { - "offset": 35972850, + "offset": 35750440, "size": 6610, }, "getFID.js": { - "offset": 35979450, + "offset": 35757040, "size": 2710, }, "getFID.js.map": { - "offset": 35982150, + "offset": 35759740, "size": 4110, }, "getINP.js": { - "offset": 35986260, + "offset": 35763850, "size": 5290, }, "getINP.js.map": { - "offset": 35991550, + "offset": 35769140, "size": 7220, }, "getLCP.js": { - "offset": 35998760, + "offset": 35776350, "size": 4500, }, "getLCP.js.map": { - "offset": 36003260, + "offset": 35780840, "size": 6520, }, "lib": { "files": { "bindReporter.js": { - "offset": 36009770, + "offset": 35787360, "size": 1110, }, "bindReporter.js.map": { - "offset": 36010880, + "offset": 35788470, "size": 2920, }, "generateUniqueID.js": { - "offset": 36013800, + "offset": 35791380, "size": 1040, }, "generateUniqueID.js.map": { - "offset": 36014830, + "offset": 35792410, "size": 1370, }, "getActivationStart.js": { - "offset": 36016200, + "offset": 35793780, "size": 980, }, "getActivationStart.js.map": { - "offset": 36017170, + "offset": 35794760, "size": 1240, }, "getNavigationEntry.js": { - "offset": 36018400, + "offset": 35795990, "size": 1890, }, "getNavigationEntry.js.map": { - "offset": 36020290, + "offset": 35797880, "size": 2460, }, "getVisibilityWatcher.js": { - "offset": 36022750, + "offset": 35800340, "size": 3320, }, "getVisibilityWatcher.js.map": { - "offset": 36026070, + "offset": 35803650, "size": 4550, }, "initMetric.js": { - "offset": 36030620, + "offset": 35808200, "size": 1850, }, "initMetric.js.map": { - "offset": 36032470, + "offset": 35810050, "size": 2970, }, "interactions.js": { - "offset": 36035430, + "offset": 35813010, "size": 5200, }, "interactions.js.map": { - "offset": 36040620, + "offset": 35818210, "size": 7630, }, "observe.js": { - "offset": 36048240, + "offset": 35825830, "size": 1890, }, "observe.js.map": { - "offset": 36050130, + "offset": 35827720, "size": 3490, }, "onHidden.js": { - "offset": 36053620, + "offset": 35831210, "size": 2110, }, "onHidden.js.map": { - "offset": 36055730, + "offset": 35833310, "size": 2800, }, "polyfills": { "files": { "interactionCountPolyfill.js": { - "offset": 36058520, + "offset": 35836110, "size": 1930, }, "interactionCountPolyfill.js.map": { - "offset": 36060450, + "offset": 35838030, "size": 3050, }, }, }, "runOnce.js": { - "offset": 36063490, + "offset": 35841080, "size": 860, }, "runOnce.js.map": { - "offset": 36064350, + "offset": 35841940, "size": 1190, }, "whenActivated.js": { - "offset": 36065530, + "offset": 35843120, "size": 1000, }, "whenActivated.js.map": { - "offset": 36066530, + "offset": 35844120, "size": 1340, }, "whenIdle.js": { - "offset": 36067870, + "offset": 35845460, "size": 1520, }, "whenIdle.js.map": { - "offset": 36069380, + "offset": 35846970, "size": 2110, }, }, }, "onFCP.js": { - "offset": 36071490, + "offset": 35849070, "size": 2730, }, "onFCP.js.map": { - "offset": 36074210, + "offset": 35851800, "size": 3970, }, "onTTFB.js": { - "offset": 36078170, + "offset": 35855760, "size": 3390, }, "onTTFB.js.map": { - "offset": 36081560, + "offset": 35859150, "size": 4710, }, }, @@ -71544,11 +71396,11 @@ exports[`node_module collectors > yarn ms 2`] = ` }, }, "types.js": { - "offset": 36086260, + "offset": 35863850, "size": 200, }, "types.js.map": { - "offset": 36086460, + "offset": 35864050, "size": 460, }, }, @@ -71556,53 +71408,53 @@ exports[`node_module collectors > yarn ms 2`] = ` "esm": { "files": { "debug-build.js": { - "offset": 36086920, + "offset": 35864510, "size": 460, }, "debug-build.js.map": { - "offset": 36087370, + "offset": 35864960, "size": 610, }, "getNativeImplementation.js": { - "offset": 36087970, + "offset": 35865560, "size": 4270, }, "getNativeImplementation.js.map": { - "offset": 36092240, + "offset": 35869830, "size": 6620, }, "index.js": { - "offset": 36098850, + "offset": 35876440, "size": 890, }, "index.js.map": { - "offset": 36099740, + "offset": 35877330, "size": 100, }, "instrument": { "files": { "dom.js": { - "offset": 36099840, + "offset": 35877420, "size": 8610, }, "dom.js.map": { - "offset": 36108440, + "offset": 35886030, "size": 14690, }, "history.js": { - "offset": 36123120, + "offset": 35900710, "size": 2230, }, "history.js.map": { - "offset": 36125340, + "offset": 35902930, "size": 3950, }, "xhr.js": { - "offset": 36129290, + "offset": 35906880, "size": 5830, }, "xhr.js.map": { - "offset": 36135110, + "offset": 35912700, "size": 9860, }, }, @@ -71610,205 +71462,205 @@ exports[`node_module collectors > yarn ms 2`] = ` "metrics": { "files": { "browserMetrics.js": { - "offset": 36144970, + "offset": 35922560, "size": 21760, }, "browserMetrics.js.map": { - "offset": 36166730, + "offset": 35944320, "size": 40950, }, "cls.js": { - "offset": 36207680, + "offset": 35985260, "size": 4060, }, "cls.js.map": { - "offset": 36211730, + "offset": 35989320, "size": 6980, }, "inp.js": { - "offset": 36218710, + "offset": 35996300, "size": 4950, }, "inp.js.map": { - "offset": 36223650, + "offset": 36001240, "size": 8790, }, "instrument.js": { - "offset": 36232440, + "offset": 36010030, "size": 6150, }, "instrument.js.map": { - "offset": 36238580, + "offset": 36016170, "size": 15130, }, "utils.js": { - "offset": 36253710, + "offset": 36031300, "size": 3960, }, "utils.js.map": { - "offset": 36257670, + "offset": 36035250, "size": 6810, }, "web-vitals": { "files": { "getCLS.js": { - "offset": 36264470, + "offset": 36042060, "size": 4480, }, "getCLS.js.map": { - "offset": 36268940, + "offset": 36046530, "size": 6530, }, "getFID.js": { - "offset": 36275470, + "offset": 36053060, "size": 2520, }, "getFID.js.map": { - "offset": 36277990, + "offset": 36055570, "size": 4000, }, "getINP.js": { - "offset": 36281980, + "offset": 36059570, "size": 5130, }, "getINP.js.map": { - "offset": 36287110, + "offset": 36064700, "size": 6990, }, "getLCP.js": { - "offset": 36294100, + "offset": 36071690, "size": 4280, }, "getLCP.js.map": { - "offset": 36298370, + "offset": 36075960, "size": 6370, }, "lib": { "files": { "bindReporter.js": { - "offset": 36304730, + "offset": 36082320, "size": 1030, }, "bindReporter.js.map": { - "offset": 36305760, + "offset": 36083350, "size": 2920, }, "generateUniqueID.js": { - "offset": 36308680, + "offset": 36086270, "size": 960, }, "generateUniqueID.js.map": { - "offset": 36309630, + "offset": 36087220, "size": 1370, }, "getActivationStart.js": { - "offset": 36311000, + "offset": 36088590, "size": 880, }, "getActivationStart.js.map": { - "offset": 36311870, + "offset": 36089460, "size": 1210, }, "getNavigationEntry.js": { - "offset": 36313080, + "offset": 36090670, "size": 1790, }, "getNavigationEntry.js.map": { - "offset": 36314870, + "offset": 36092450, "size": 2450, }, "getVisibilityWatcher.js": { - "offset": 36317310, + "offset": 36094900, "size": 3210, }, "getVisibilityWatcher.js.map": { - "offset": 36320520, + "offset": 36098110, "size": 4540, }, "initMetric.js": { - "offset": 36325060, + "offset": 36102650, "size": 1700, }, "initMetric.js.map": { - "offset": 36326750, + "offset": 36104340, "size": 2890, }, "interactions.js": { - "offset": 36329630, + "offset": 36107220, "size": 4900, }, "interactions.js.map": { - "offset": 36334530, + "offset": 36112120, "size": 7600, }, "observe.js": { - "offset": 36342120, + "offset": 36119710, "size": 1820, }, "observe.js.map": { - "offset": 36343940, + "offset": 36121530, "size": 3490, }, "onHidden.js": { - "offset": 36347430, + "offset": 36125010, "size": 2020, }, "onHidden.js.map": { - "offset": 36349440, + "offset": 36127030, "size": 2780, }, "polyfills": { "files": { "interactionCountPolyfill.js": { - "offset": 36352220, + "offset": 36129810, "size": 1800, }, "interactionCountPolyfill.js.map": { - "offset": 36354020, + "offset": 36131610, "size": 3040, }, }, }, "runOnce.js": { - "offset": 36357060, + "offset": 36134640, "size": 790, }, "runOnce.js.map": { - "offset": 36357840, + "offset": 36135430, "size": 1190, }, "whenActivated.js": { - "offset": 36359020, + "offset": 36136610, "size": 910, }, "whenActivated.js.map": { - "offset": 36359930, + "offset": 36137520, "size": 1330, }, "whenIdle.js": { - "offset": 36361260, + "offset": 36138840, "size": 1400, }, "whenIdle.js.map": { - "offset": 36362660, + "offset": 36140240, "size": 2070, }, }, }, "onFCP.js": { - "offset": 36364720, + "offset": 36142310, "size": 2540, }, "onFCP.js.map": { - "offset": 36367260, + "offset": 36144840, "size": 3860, }, "onTTFB.js": { - "offset": 36371110, + "offset": 36148700, "size": 3190, }, "onTTFB.js.map": { - "offset": 36374300, + "offset": 36151890, "size": 4600, }, }, @@ -71816,15 +71668,15 @@ exports[`node_module collectors > yarn ms 2`] = ` }, }, "package.json": { - "offset": 36378900, + "offset": 36156480, "size": 60, }, "types.js": { - "offset": 36378950, + "offset": 36156540, "size": 130, }, "types.js.map": { - "offset": 36379080, + "offset": 36156670, "size": 450, }, }, @@ -71832,29 +71684,29 @@ exports[`node_module collectors > yarn ms 2`] = ` "types": { "files": { "debug-build.d.ts.map": { - "offset": 36379520, + "offset": 36157110, "size": 170, }, "getNativeImplementation.d.ts.map": { - "offset": 36379680, + "offset": 36157270, "size": 790, }, "index.d.ts.map": { - "offset": 36380470, + "offset": 36158060, "size": 570, }, "instrument": { "files": { "dom.d.ts.map": { - "offset": 36381040, + "offset": 36158620, "size": 310, }, "history.d.ts.map": { - "offset": 36381340, + "offset": 36158930, "size": 270, }, "xhr.d.ts.map": { - "offset": 36381610, + "offset": 36159200, "size": 350, }, }, @@ -71862,149 +71714,149 @@ exports[`node_module collectors > yarn ms 2`] = ` "metrics": { "files": { "browserMetrics.d.ts.map": { - "offset": 36381950, + "offset": 36159540, "size": 1010, }, "cls.d.ts.map": { - "offset": 36382960, + "offset": 36160540, "size": 170, }, "inp.d.ts.map": { - "offset": 36383120, + "offset": 36160710, "size": 240, }, "instrument.d.ts.map": { - "offset": 36383360, + "offset": 36160950, "size": 2490, }, "utils.d.ts.map": { - "offset": 36385850, + "offset": 36163440, "size": 780, }, "web-vitals": { "files": { "getCLS.d.ts.map": { - "offset": 36386630, + "offset": 36164220, "size": 350, }, "getFID.d.ts.map": { - "offset": 36386980, + "offset": 36164570, "size": 340, }, "getINP.d.ts.map": { - "offset": 36387310, + "offset": 36164900, "size": 360, }, "getLCP.d.ts.map": { - "offset": 36387660, + "offset": 36165250, "size": 340, }, "lib": { "files": { "bindReporter.d.ts.map": { - "offset": 36388000, + "offset": 36165590, "size": 300, }, "generateUniqueID.d.ts.map": { - "offset": 36388300, + "offset": 36165890, "size": 210, }, "getActivationStart.d.ts.map": { - "offset": 36388510, + "offset": 36166090, "size": 210, }, "getNavigationEntry.d.ts.map": { - "offset": 36388710, + "offset": 36166300, "size": 220, }, "getVisibilityWatcher.d.ts.map": { - "offset": 36388930, + "offset": 36166520, "size": 210, }, "initMetric.d.ts.map": { - "offset": 36389130, + "offset": 36166720, "size": 220, }, "interactions.d.ts.map": { - "offset": 36389340, + "offset": 36166930, "size": 660, }, "observe.d.ts.map": { - "offset": 36390000, + "offset": 36167590, "size": 560, }, "onHidden.d.ts.map": { - "offset": 36390560, + "offset": 36168150, "size": 260, }, "polyfills": { "files": { "interactionCountPolyfill.d.ts.map": { - "offset": 36390820, + "offset": 36168400, "size": 370, }, }, }, "runOnce.d.ts.map": { - "offset": 36391180, + "offset": 36168770, "size": 190, }, "whenActivated.d.ts.map": { - "offset": 36391370, + "offset": 36168960, "size": 210, }, "whenIdle.d.ts.map": { - "offset": 36391570, + "offset": 36169160, "size": 210, }, }, }, "onFCP.d.ts.map": { - "offset": 36391780, + "offset": 36169370, "size": 330, }, "onTTFB.d.ts.map": { - "offset": 36392110, + "offset": 36169700, "size": 350, }, "types": { "files": { "base.d.ts.map": { - "offset": 36393870, + "offset": 36171460, "size": 1480, }, "cls.d.ts.map": { - "offset": 36395350, + "offset": 36172940, "size": 690, }, "fcp.d.ts.map": { - "offset": 36396040, + "offset": 36173620, "size": 620, }, "fid.d.ts.map": { - "offset": 36396650, + "offset": 36174240, "size": 610, }, "inp.d.ts.map": { - "offset": 36397260, + "offset": 36174840, "size": 910, }, "lcp.d.ts.map": { - "offset": 36398160, + "offset": 36175750, "size": 790, }, "polyfills.d.ts.map": { - "offset": 36398950, + "offset": 36176540, "size": 290, }, "ttfb.d.ts.map": { - "offset": 36399230, + "offset": 36176820, "size": 650, }, }, }, "types.d.ts.map": { - "offset": 36392450, + "offset": 36170040, "size": 1420, }, }, @@ -72012,7 +71864,7 @@ exports[`node_module collectors > yarn ms 2`] = ` }, }, "types.d.ts.map": { - "offset": 36399880, + "offset": 36177470, "size": 140, }, }, @@ -72020,7 +71872,7 @@ exports[`node_module collectors > yarn ms 2`] = ` }, }, "package.json": { - "offset": 36400020, + "offset": 36177610, "size": 1140, }, }, @@ -72028,7 +71880,7 @@ exports[`node_module collectors > yarn ms 2`] = ` "feedback": { "files": { "LICENSE": { - "offset": 36401160, + "offset": 36178740, "size": 1100, }, "build": { @@ -72038,11 +71890,11 @@ exports[`node_module collectors > yarn ms 2`] = ` "cjs": { "files": { "index.js": { - "offset": 36402250, + "offset": 36179840, "size": 78170, }, "index.js.map": { - "offset": 36480420, + "offset": 36258010, "size": 175760, }, }, @@ -72050,15 +71902,15 @@ exports[`node_module collectors > yarn ms 2`] = ` "esm": { "files": { "index.js": { - "offset": 36656180, + "offset": 36433770, "size": 78020, }, "index.js.map": { - "offset": 36734200, + "offset": 36511790, "size": 175580, }, "package.json": { - "offset": 36909770, + "offset": 36687360, "size": 60, }, }, @@ -72068,7 +71920,7 @@ exports[`node_module collectors > yarn ms 2`] = ` "constants": { "files": { "index.d.ts.map": { - "offset": 36909830, + "offset": 36687410, "size": 830, }, }, @@ -72076,65 +71928,65 @@ exports[`node_module collectors > yarn ms 2`] = ` "core": { "files": { "TestClient.d.ts.map": { - "offset": 36910650, + "offset": 36688240, "size": 690, }, "components": { "files": { "Actor.css.d.ts.map": { - "offset": 36911340, + "offset": 36688920, "size": 220, }, "Actor.d.ts.map": { - "offset": 36911550, + "offset": 36689140, "size": 560, }, "Actor.test.d.ts.map": { - "offset": 36912100, + "offset": 36689690, "size": 150, }, "FeedbackIcon.d.ts.map": { - "offset": 36912240, + "offset": 36689830, "size": 190, }, }, }, "createMainStyles.d.ts.map": { - "offset": 36912430, + "offset": 36690020, "size": 300, }, "getFeedback.d.ts.map": { - "offset": 36912730, + "offset": 36690320, "size": 310, }, "getFeedback.test.d.ts.map": { - "offset": 36913030, + "offset": 36690620, "size": 140, }, "integration.d.ts.map": { - "offset": 36913170, + "offset": 36690760, "size": 850, }, "mockSdk.d.ts.map": { - "offset": 36914020, + "offset": 36691610, "size": 340, }, "sendFeedback.d.ts.map": { - "offset": 36914350, + "offset": 36691940, "size": 230, }, "sendFeedback.test.d.ts.map": { - "offset": 36914580, + "offset": 36692170, "size": 150, }, "types.d.ts.map": { - "offset": 36914720, + "offset": 36692310, "size": 500, }, }, }, "index.d.ts.map": { - "offset": 36915220, + "offset": 36692810, "size": 330, }, "modal": { @@ -72142,33 +71994,33 @@ exports[`node_module collectors > yarn ms 2`] = ` "components": { "files": { "Dialog.css.d.ts.map": { - "offset": 36915550, + "offset": 36693140, "size": 220, }, "Dialog.d.ts.map": { - "offset": 36915760, + "offset": 36693350, "size": 560, }, "DialogHeader.d.ts.map": { - "offset": 36916320, + "offset": 36693910, "size": 360, }, "Form.d.ts.map": { - "offset": 36916680, + "offset": 36694270, "size": 800, }, "SentryLogo.d.ts.map": { - "offset": 36917480, + "offset": 36695070, "size": 190, }, "SuccessIcon.d.ts.map": { - "offset": 36917670, + "offset": 36695260, "size": 190, }, }, }, "integration.d.ts.map": { - "offset": 36917860, + "offset": 36695440, "size": 230, }, }, @@ -72178,25 +72030,25 @@ exports[`node_module collectors > yarn ms 2`] = ` "components": { "files": { "CropCorner.d.ts.map": { - "offset": 36918080, + "offset": 36695670, "size": 410, }, "ScreenshotEditor.d.ts.map": { - "offset": 36918490, + "offset": 36696070, "size": 720, }, "ScreenshotInput.css.d.ts.map": { - "offset": 36919200, + "offset": 36696790, "size": 240, }, "useTakeScreenshot.d.ts.map": { - "offset": 36919440, + "offset": 36697030, "size": 620, }, }, }, "integration.d.ts.map": { - "offset": 36920060, + "offset": 36697650, "size": 230, }, }, @@ -72204,23 +72056,23 @@ exports[`node_module collectors > yarn ms 2`] = ` "util": { "files": { "debug-build.d.ts.map": { - "offset": 36920280, + "offset": 36697870, "size": 180, }, "isScreenshotSupported.d.ts.map": { - "offset": 36920450, + "offset": 36698040, "size": 210, }, "mergeOptions.d.ts.map": { - "offset": 36920660, + "offset": 36698250, "size": 330, }, "setAttributesNS.d.ts.map": { - "offset": 36920980, + "offset": 36698570, "size": 270, }, "validate.d.ts.map": { - "offset": 36921250, + "offset": 36698840, "size": 390, }, }, @@ -72232,7 +72084,7 @@ exports[`node_module collectors > yarn ms 2`] = ` }, }, "package.json": { - "offset": 36921630, + "offset": 36699220, "size": 1220, }, }, @@ -72240,7 +72092,7 @@ exports[`node_module collectors > yarn ms 2`] = ` "replay": { "files": { "LICENSE": { - "offset": 36922840, + "offset": 36700430, "size": 1100, }, "build": { @@ -72250,11 +72102,11 @@ exports[`node_module collectors > yarn ms 2`] = ` "cjs": { "files": { "index.js": { - "offset": 36923940, + "offset": 36701530, "size": 321040, }, "index.js.map": { - "offset": 37244980, + "offset": 37022570, "size": 1526840, }, }, @@ -72262,15 +72114,15 @@ exports[`node_module collectors > yarn ms 2`] = ` "esm": { "files": { "index.js": { - "offset": 38771820, + "offset": 38549400, "size": 321380, }, "index.js.map": { - "offset": 39093190, + "offset": 38870780, "size": 1523230, }, "package.json": { - "offset": 40616420, + "offset": 40394010, "size": 60, }, }, @@ -72278,91 +72130,91 @@ exports[`node_module collectors > yarn ms 2`] = ` "types": { "files": { "constants.d.ts.map": { - "offset": 40616470, + "offset": 40394060, "size": 890, }, "coreHandlers": { "files": { "handleAfterSendEvent.d.ts.map": { - "offset": 40617350, + "offset": 40394940, "size": 410, }, "handleBeforeSendEvent.d.ts.map": { - "offset": 40617760, + "offset": 40395350, "size": 380, }, "handleBreadcrumbs.d.ts.map": { - "offset": 40618140, + "offset": 40395730, "size": 620, }, "handleClick.d.ts.map": { - "offset": 40618750, + "offset": 40396340, "size": 1500, }, "handleDom.d.ts.map": { - "offset": 40620250, + "offset": 40397840, "size": 500, }, "handleGlobalEvent.d.ts.map": { - "offset": 40620750, + "offset": 40398330, "size": 380, }, "handleHistory.d.ts.map": { - "offset": 40621120, + "offset": 40398710, "size": 340, }, "handleKeyboardEvent.d.ts.map": { - "offset": 40621450, + "offset": 40399040, "size": 420, }, "handleNetworkBreadcrumbs.d.ts.map": { - "offset": 40621860, + "offset": 40399450, "size": 530, }, "performanceObserver.d.ts.map": { - "offset": 40622390, + "offset": 40399980, "size": 280, }, "util": { "files": { "addBreadcrumbEvent.d.ts.map": { - "offset": 40622660, + "offset": 40400250, "size": 340, }, "addFeedbackBreadcrumb.d.ts.map": { - "offset": 40623000, + "offset": 40400590, "size": 350, }, "addNetworkBreadcrumb.d.ts.map": { - "offset": 40623350, + "offset": 40400930, "size": 360, }, "domUtils.d.ts.map": { - "offset": 40623700, + "offset": 40401290, "size": 500, }, "fetchUtils.d.ts.map": { - "offset": 40624190, + "offset": 40401780, "size": 890, }, "getAttributesToRecord.d.ts.map": { - "offset": 40625080, + "offset": 40402670, "size": 290, }, "networkUtils.d.ts.map": { - "offset": 40625360, + "offset": 40402950, "size": 1370, }, "onWindowOpen.d.ts.map": { - "offset": 40626730, + "offset": 40404320, "size": 260, }, "shouldSampleForBufferEvent.d.ts.map": { - "offset": 40626990, + "offset": 40404580, "size": 360, }, "xhrUtils.d.ts.map": { - "offset": 40627340, + "offset": 40404930, "size": 810, }, }, @@ -72370,81 +72222,81 @@ exports[`node_module collectors > yarn ms 2`] = ` }, }, "debug-build.d.ts.map": { - "offset": 40628150, + "offset": 40405730, "size": 170, }, "eventBuffer": { "files": { "EventBufferArray.d.ts.map": { - "offset": 40628310, + "offset": 40405900, "size": 730, }, "EventBufferCompressionWorker.d.ts.map": { - "offset": 40629040, + "offset": 40406630, "size": 940, }, "EventBufferProxy.d.ts.map": { - "offset": 40629980, + "offset": 40407570, "size": 1070, }, "WorkerHandler.d.ts.map": { - "offset": 40631050, + "offset": 40408630, "size": 580, }, "error.d.ts.map": { - "offset": 40631630, + "offset": 40409210, "size": 180, }, "index.d.ts.map": { - "offset": 40631800, + "offset": 40409390, "size": 350, }, }, }, "index.d.ts.map": { - "offset": 40632150, + "offset": 40409740, "size": 380, }, "integration.d.ts.map": { - "offset": 40632520, + "offset": 40410110, "size": 1550, }, "replay.d.ts.map": { - "offset": 40634060, + "offset": 40411650, "size": 3670, }, "session": { "files": { "Session.d.ts.map": { - "offset": 40637730, + "offset": 40415320, "size": 300, }, "clearSession.d.ts.map": { - "offset": 40638020, + "offset": 40415610, "size": 250, }, "createSession.d.ts.map": { - "offset": 40638270, + "offset": 40415860, "size": 460, }, "fetchSession.d.ts.map": { - "offset": 40638720, + "offset": 40416310, "size": 240, }, "index.d.ts.map": { - "offset": 40638960, + "offset": 40416550, "size": 150, }, "loadOrCreateSession.d.ts.map": { - "offset": 40639100, + "offset": 40416690, "size": 420, }, "saveSession.d.ts.map": { - "offset": 40639520, + "offset": 40417110, "size": 250, }, "shouldRefreshSession.d.ts.map": { - "offset": 40639760, + "offset": 40417350, "size": 370, }, }, @@ -72452,27 +72304,27 @@ exports[`node_module collectors > yarn ms 2`] = ` "types": { "files": { "index.d.ts.map": { - "offset": 40640130, + "offset": 40417710, "size": 230, }, "performance.d.ts.map": { - "offset": 40640350, + "offset": 40417940, "size": 2290, }, "replay.d.ts.map": { - "offset": 40642630, + "offset": 40420220, "size": 7490, }, "replayFrame.d.ts.map": { - "offset": 40650120, + "offset": 40427710, "size": 4790, }, "request.d.ts.map": { - "offset": 40654900, + "offset": 40432490, "size": 610, }, "rrweb.d.ts.map": { - "offset": 40655510, + "offset": 40433100, "size": 1840, }, }, @@ -72480,115 +72332,115 @@ exports[`node_module collectors > yarn ms 2`] = ` "util": { "files": { "addEvent.d.ts.map": { - "offset": 40657340, + "offset": 40434930, "size": 540, }, "addGlobalListeners.d.ts.map": { - "offset": 40657880, + "offset": 40435470, "size": 260, }, "addMemoryEntry.d.ts.map": { - "offset": 40658130, + "offset": 40435720, "size": 300, }, "createBreadcrumb.d.ts.map": { - "offset": 40658430, + "offset": 40436020, "size": 350, }, "createPerformanceEntries.d.ts.map": { - "offset": 40658780, + "offset": 40436370, "size": 1270, }, "createPerformanceSpans.d.ts.map": { - "offset": 40660050, + "offset": 40437640, "size": 380, }, "createReplayEnvelope.d.ts.map": { - "offset": 40660420, + "offset": 40438010, "size": 370, }, "debounce.d.ts.map": { - "offset": 40660780, + "offset": 40438370, "size": 490, }, "eventUtils.d.ts.map": { - "offset": 40661270, + "offset": 40438860, "size": 530, }, "getPrivacyOptions.d.ts.map": { - "offset": 40661790, + "offset": 40439380, "size": 610, }, "getRecordingSamplingOptions.d.ts.map": { - "offset": 40662400, + "offset": 40439990, "size": 280, }, "getReplay.d.ts.map": { - "offset": 40662670, + "offset": 40440260, "size": 260, }, "handleRecordingEmit.d.ts.map": { - "offset": 40662920, + "offset": 40440510, "size": 440, }, "hasSessionStorage.d.ts.map": { - "offset": 40663360, + "offset": 40440950, "size": 190, }, "isExpired.d.ts.map": { - "offset": 40663550, + "offset": 40441140, "size": 260, }, "isRrwebError.d.ts.map": { - "offset": 40663800, + "offset": 40441390, "size": 280, }, "isSampled.d.ts.map": { - "offset": 40664070, + "offset": 40441660, "size": 200, }, "isSessionExpired.d.ts.map": { - "offset": 40664270, + "offset": 40441860, "size": 400, }, "logger.d.ts.map": { - "offset": 40664660, + "offset": 40442250, "size": 660, }, "maskAttribute.d.ts.map": { - "offset": 40665320, + "offset": 40442900, "size": 520, }, "prepareRecordingData.d.ts.map": { - "offset": 40665830, + "offset": 40443420, "size": 370, }, "prepareReplayEvent.d.ts.map": { - "offset": 40666200, + "offset": 40443780, "size": 550, }, "resetReplayIdOnDynamicSamplingContext.d.ts.map": { - "offset": 40666740, + "offset": 40444330, "size": 230, }, "sendReplay.d.ts.map": { - "offset": 40666970, + "offset": 40444560, "size": 280, }, "sendReplayRequest.d.ts.map": { - "offset": 40667240, + "offset": 40444830, "size": 560, }, "shouldFilterRequest.d.ts.map": { - "offset": 40667800, + "offset": 40445390, "size": 280, }, "throttle.d.ts.map": { - "offset": 40668080, + "offset": 40445660, "size": 450, }, "timestamp.d.ts.map": { - "offset": 40668520, + "offset": 40446110, "size": 260, }, }, @@ -72600,7 +72452,7 @@ exports[`node_module collectors > yarn ms 2`] = ` }, }, "package.json": { - "offset": 40668770, + "offset": 40446360, "size": 1500, }, }, @@ -72608,7 +72460,7 @@ exports[`node_module collectors > yarn ms 2`] = ` "replay-canvas": { "files": { "LICENSE": { - "offset": 40670270, + "offset": 40447860, "size": 1100, }, "build": { @@ -72618,11 +72470,11 @@ exports[`node_module collectors > yarn ms 2`] = ` "cjs": { "files": { "index.js": { - "offset": 40671360, + "offset": 40448950, "size": 32910, }, "index.js.map": { - "offset": 40704270, + "offset": 40481860, "size": 227260, }, }, @@ -72630,15 +72482,15 @@ exports[`node_module collectors > yarn ms 2`] = ` "esm": { "files": { "index.js": { - "offset": 40931530, + "offset": 40709120, "size": 32830, }, "index.js.map": { - "offset": 40964360, + "offset": 40741940, "size": 227210, }, "package.json": { - "offset": 41191560, + "offset": 40969150, "size": 60, }, }, @@ -72646,11 +72498,11 @@ exports[`node_module collectors > yarn ms 2`] = ` "types": { "files": { "canvas.d.ts.map": { - "offset": 41191620, + "offset": 40969210, "size": 990, }, "index.d.ts.map": { - "offset": 41192610, + "offset": 40970200, "size": 200, }, }, @@ -72660,7 +72512,7 @@ exports[`node_module collectors > yarn ms 2`] = ` }, }, "package.json": { - "offset": 41192800, + "offset": 40970390, "size": 1290, }, }, @@ -72673,12 +72525,12 @@ exports[`node_module collectors > yarn ms 2`] = ` "files": { "LICENSE": { "executable": true, - "offset": 49889470, + "offset": 49667050, "size": 1150, }, "package.json": { "executable": true, - "offset": 49890610, + "offset": 49668190, "size": 590, }, }, @@ -72686,11 +72538,11 @@ exports[`node_module collectors > yarn ms 2`] = ` "mysql": { "files": { "LICENSE": { - "offset": 49891190, + "offset": 49668780, "size": 1150, }, "package.json": { - "offset": 49892330, + "offset": 49669920, "size": 580, }, }, @@ -72698,11 +72550,11 @@ exports[`node_module collectors > yarn ms 2`] = ` "node": { "files": { "LICENSE": { - "offset": 49892900, + "offset": 49670490, "size": 1150, }, "package.json": { - "offset": 49894050, + "offset": 49671630, "size": 750, }, }, @@ -72710,15 +72562,15 @@ exports[`node_module collectors > yarn ms 2`] = ` "pg": { "files": { "LICENSE": { - "offset": 49894800, + "offset": 49672380, "size": 1150, }, "index.d.mts": { - "offset": 49895940, + "offset": 49673520, "size": 1980, }, "package.json": { - "offset": 49897920, + "offset": 49675500, "size": 820, }, }, @@ -72726,11 +72578,11 @@ exports[`node_module collectors > yarn ms 2`] = ` "pg-pool": { "files": { "LICENSE": { - "offset": 49898730, + "offset": 49676320, "size": 1150, }, "package.json": { - "offset": 49899870, + "offset": 49677460, "size": 580, }, }, @@ -72738,11 +72590,11 @@ exports[`node_module collectors > yarn ms 2`] = ` "shimmer": { "files": { "LICENSE": { - "offset": 49900450, + "offset": 49678040, "size": 1150, }, "package.json": { - "offset": 49901590, + "offset": 49679180, "size": 560, }, }, @@ -72750,11 +72602,11 @@ exports[`node_module collectors > yarn ms 2`] = ` "tedious": { "files": { "LICENSE": { - "offset": 49902140, + "offset": 49679730, "size": 1150, }, "package.json": { - "offset": 49903280, + "offset": 49680870, "size": 590, }, }, @@ -72764,14 +72616,14 @@ exports[`node_module collectors > yarn ms 2`] = ` "acorn": { "files": { "LICENSE": { - "offset": 49903870, + "offset": 49681450, "size": 1100, }, "bin": { "files": { "acorn": { "executable": true, - "offset": 49904970, + "offset": 49682550, "size": 60, }, }, @@ -72779,25 +72631,25 @@ exports[`node_module collectors > yarn ms 2`] = ` "dist": { "files": { "acorn.d.mts": { - "offset": 49905030, + "offset": 49682610, "size": 22020, }, "acorn.js": { - "offset": 49927040, + "offset": 49704630, "size": 242820, }, "acorn.mjs": { - "offset": 50169860, + "offset": 49947450, "size": 230980, }, "bin.js": { - "offset": 50400830, + "offset": 50178420, "size": 3330, }, }, }, "package.json": { - "offset": 50404160, + "offset": 50181750, "size": 1000, }, }, @@ -72805,29 +72657,29 @@ exports[`node_module collectors > yarn ms 2`] = ` "acorn-import-attributes": { "files": { "LICENSE": { - "offset": 50405160, + "offset": 50182750, "size": 1070, }, "lib": { "files": { "index.js": { - "offset": 50406230, + "offset": 50183820, "size": 10490, }, "index.mjs": { - "offset": 50416710, + "offset": 50194300, "size": 9400, }, }, }, "package.json": { - "offset": 50426110, + "offset": 50203700, "size": 1010, }, "src": { "files": { "index.js": { - "offset": 50427110, + "offset": 50204700, "size": 9400, }, }, @@ -72838,29 +72690,29 @@ exports[`node_module collectors > yarn ms 2`] = ` "files": { "LICENSE": { "executable": true, - "offset": 50436510, + "offset": 50214100, "size": 1090, }, "dist": { "files": { "lexer.js": { - "offset": 50437600, + "offset": 50215190, "size": 33510, }, "lexer.mjs": { - "offset": 50471110, + "offset": 50248690, "size": 33480, }, }, }, "lexer.js": { "executable": true, - "offset": 50504590, + "offset": 50282170, "size": 53720, }, "package.json": { "executable": true, - "offset": 50558300, + "offset": 50335890, "size": 830, }, }, @@ -72868,29 +72720,29 @@ exports[`node_module collectors > yarn ms 2`] = ` "debug": { "files": { "LICENSE": { - "offset": 50559130, + "offset": 50336720, "size": 1140, }, "package.json": { - "offset": 50560270, + "offset": 50337860, "size": 910, }, "src": { "files": { "browser.js": { - "offset": 50561180, + "offset": 50338770, "size": 6110, }, "common.js": { - "offset": 50567280, + "offset": 50344870, "size": 6920, }, "index.js": { - "offset": 50574200, + "offset": 50351780, "size": 320, }, "node.js": { - "offset": 50574510, + "offset": 50352100, "size": 4730, }, }, @@ -72900,39 +72752,39 @@ exports[`node_module collectors > yarn ms 2`] = ` "deepmerge": { "files": { ".editorconfig": { - "offset": 50579240, + "offset": 50356830, "size": 120, }, ".eslintcache": { - "offset": 50579350, + "offset": 50356940, "size": 390, }, "dist": { "files": { "cjs.js": { - "offset": 50579730, + "offset": 50357320, "size": 4050, }, "umd.js": { - "offset": 50583780, + "offset": 50361370, "size": 4420, }, }, }, "index.js": { - "offset": 50588200, + "offset": 50365790, "size": 3300, }, "license.txt": { - "offset": 50591490, + "offset": 50369080, "size": 1120, }, "package.json": { - "offset": 50592610, + "offset": 50370200, "size": 730, }, "rollup.config.js": { - "offset": 50593340, + "offset": 50370930, "size": 350, }, }, @@ -72940,47 +72792,91 @@ exports[`node_module collectors > yarn ms 2`] = ` "electron-clear-data": { "files": { "LICENSE.md": { - "offset": 50593680, + "offset": 50371270, "size": 1060, }, "dist": { "files": { "main.js": { - "offset": 50594740, + "offset": 50372330, "size": 1740, }, }, }, "package.json": { - "offset": 50596470, + "offset": 50374060, "size": 960, }, }, }, + "es-errors": { + "files": { + "LICENSE": { + "offset": 50375020, + "size": 1080, + }, + "eval.js": { + "offset": 50376090, + "size": 80, + }, + "index.js": { + "offset": 50376170, + "size": 70, + }, + "package.json": { + "offset": 50376230, + "size": 1340, + }, + "range.js": { + "offset": 50377570, + "size": 80, + }, + "ref.js": { + "offset": 50377650, + "size": 80, + }, + "syntax.js": { + "offset": 50377720, + "size": 80, + }, + "tsconfig.json": { + "offset": 50377800, + "size": 3170, + }, + "type.js": { + "offset": 50380970, + "size": 80, + }, + "uri.js": { + "offset": 50381050, + "size": 80, + }, + }, + }, "forwarded-parse": { "files": { "LICENSE": { - "offset": 50597430, + "offset": 50381120, "size": 1060, }, "index.js": { - "offset": 50598490, + "offset": 50382180, "size": 4200, }, "lib": { "files": { "ascii.js": { - "offset": 50602680, + "offset": 50386370, "size": 2230, }, "error.js": { - "offset": 50604910, + "offset": 50388600, "size": 470, }, }, }, "package.json": { - "offset": 50605380, + "offset": 50389060, "size": 470, }, }, @@ -72988,23 +72884,23 @@ exports[`node_module collectors > yarn ms 2`] = ` "function-bind": { "files": { ".nycrc": { - "offset": 50605840, + "offset": 50389530, "size": 220, }, "LICENSE": { - "offset": 50606060, + "offset": 50389740, "size": 1060, }, "implementation.js": { - "offset": 50607110, + "offset": 50390800, "size": 2050, }, "index.js": { - "offset": 50609150, + "offset": 50392840, "size": 130, }, "package.json": { - "offset": 50609280, + "offset": 50392970, "size": 1330, }, }, @@ -73012,23 +72908,23 @@ exports[`node_module collectors > yarn ms 2`] = ` "hasown": { "files": { ".nycrc": { - "offset": 50610610, + "offset": 50394290, "size": 220, }, "LICENSE": { - "offset": 50610820, + "offset": 50394510, "size": 1090, }, "index.js": { - "offset": 50611910, + "offset": 50395590, "size": 210, }, "package.json": { - "offset": 50612110, + "offset": 50395800, "size": 1480, }, "tsconfig.json": { - "offset": 50613590, + "offset": 50397270, "size": 80, }, }, @@ -73036,79 +72932,79 @@ exports[`node_module collectors > yarn ms 2`] = ` "import-in-the-middle": { "files": { ".editorconfig": { - "offset": 50613660, + "offset": 50397350, "size": 220, }, ".eslintrc.yaml": { - "offset": 50613870, + "offset": 50397560, "size": 560, }, ".release-please-manifest.json": { - "offset": 50614430, + "offset": 50398110, "size": 20, }, "CODE_OF_CONDUCT.md": { - "offset": 50614450, + "offset": 50398130, "size": 150, }, "CONTRIBUTING.md": { - "offset": 50614590, + "offset": 50398280, "size": 1410, }, "GOVERNANCE.md": { - "offset": 50616000, + "offset": 50399690, "size": 1270, }, "LICENSE": { - "offset": 50617270, + "offset": 50400960, "size": 11360, }, "LICENSE-3rdparty.csv": { - "offset": 50628630, + "offset": 50412310, "size": 210, }, "NOTICE": { - "offset": 50628830, + "offset": 50412520, "size": 1500, }, "hook.js": { - "offset": 50630320, + "offset": 50414010, "size": 14810, }, "hook.mjs": { - "offset": 50645130, + "offset": 50428820, "size": 420, }, "index.js": { - "offset": 50645540, + "offset": 50429230, "size": 4720, }, "lib": { "files": { "get-esm-exports.js": { - "offset": 50650260, + "offset": 50433950, "size": 3450, }, "get-exports.js": { - "offset": 50653700, + "offset": 50437390, "size": 6410, }, "register.js": { - "offset": 50660100, + "offset": 50443790, "size": 1720, }, }, }, "package.json": { - "offset": 50661820, + "offset": 50445500, "size": 1400, }, "release-please-config.json": { - "offset": 50663220, + "offset": 50446900, "size": 300, }, "tsconfig.json": { - "offset": 50663520, + "offset": 50447200, "size": 310, }, }, @@ -73116,23 +73012,23 @@ exports[`node_module collectors > yarn ms 2`] = ` "is-core-module": { "files": { ".nycrc": { - "offset": 50663820, + "offset": 50447510, "size": 140, }, "LICENSE": { - "offset": 50663960, + "offset": 50447650, "size": 1080, }, "core.json": { - "offset": 50665040, + "offset": 50448720, "size": 5960, }, "index.js": { - "offset": 50670990, + "offset": 50454680, "size": 1770, }, "package.json": { - "offset": 50672760, + "offset": 50456440, "size": 1240, }, }, @@ -73140,15 +73036,15 @@ exports[`node_module collectors > yarn ms 2`] = ` "module-details-from-path": { "files": { "LICENSE": { - "offset": 50673990, + "offset": 50457680, "size": 1100, }, "index.js": { - "offset": 50675080, + "offset": 50458770, "size": 970, }, "package.json": { - "offset": 50676050, + "offset": 50459740, "size": 680, }, }, @@ -73156,15 +73052,15 @@ exports[`node_module collectors > yarn ms 2`] = ` "ms": { "files": { "index.js": { - "offset": 50676720, + "offset": 50460410, "size": 3030, }, "license.md": { - "offset": 50679750, + "offset": 50463430, "size": 1080, }, "package.json": { - "offset": 50680830, + "offset": 50464510, "size": 500, }, }, @@ -73172,15 +73068,15 @@ exports[`node_module collectors > yarn ms 2`] = ` "path-parse": { "files": { "LICENSE": { - "offset": 50681320, + "offset": 50465010, "size": 1080, }, "index.js": { - "offset": 50682400, + "offset": 50466090, "size": 1900, }, "package.json": { - "offset": 50684300, + "offset": 50467980, "size": 370, }, }, @@ -73188,15 +73084,15 @@ exports[`node_module collectors > yarn ms 2`] = ` "pg-int8": { "files": { "LICENSE": { - "offset": 50684660, + "offset": 50468350, "size": 750, }, "index.js": { - "offset": 50685410, + "offset": 50469100, "size": 1580, }, "package.json": { - "offset": 50686980, + "offset": 50470670, "size": 410, }, }, @@ -73204,81 +73100,81 @@ exports[`node_module collectors > yarn ms 2`] = ` "pg-protocol": { "files": { "LICENSE": { - "offset": 50687380, + "offset": 50471070, "size": 1080, }, "dist": { "files": { "b.js": { - "offset": 50688460, + "offset": 50472150, "size": 640, }, "b.js.map": { - "offset": 50689100, + "offset": 50472780, "size": 800, }, "buffer-reader.js": { - "offset": 50689890, + "offset": 50473570, "size": 1610, }, "buffer-reader.js.map": { - "offset": 50691490, + "offset": 50475180, "size": 1720, }, "buffer-writer.js": { - "offset": 50693210, + "offset": 50476900, "size": 2780, }, "buffer-writer.js.map": { - "offset": 50695980, + "offset": 50479670, "size": 3090, }, "inbound-parser.test.js": { - "offset": 50699070, + "offset": 50482760, "size": 19520, }, "inbound-parser.test.js.map": { - "offset": 50718580, + "offset": 50502270, "size": 14940, }, "index.js": { - "offset": 50733520, + "offset": 50517210, "size": 800, }, "index.js.map": { - "offset": 50734310, + "offset": 50518000, "size": 530, }, "messages.js": { - "offset": 50734830, + "offset": 50518520, "size": 4980, }, "messages.js.map": { - "offset": 50739810, + "offset": 50523490, "size": 3390, }, "outbound-serializer.test.js": { - "offset": 50743190, + "offset": 50526880, "size": 11070, }, "outbound-serializer.test.js.map": { - "offset": 50754260, + "offset": 50537940, "size": 10280, }, "parser.js": { - "offset": 50764530, + "offset": 50548220, "size": 13450, }, "parser.js.map": { - "offset": 50777980, + "offset": 50561660, "size": 10480, }, "serializer.js": { - "offset": 50788450, + "offset": 50572140, "size": 6940, }, "serializer.js.map": { - "offset": 50795390, + "offset": 50579070, "size": 7130, }, }, @@ -73286,61 +73182,61 @@ exports[`node_module collectors > yarn ms 2`] = ` "esm": { "files": { "index.js": { - "offset": 50802510, + "offset": 50586200, "size": 330, }, }, }, "package.json": { - "offset": 50802840, + "offset": 50586520, "size": 880, }, "src": { "files": { "b.ts": { - "offset": 50803710, + "offset": 50587390, "size": 480, }, "buffer-reader.ts": { - "offset": 50804180, + "offset": 50587870, "size": 1410, }, "buffer-writer.ts": { - "offset": 50805590, + "offset": 50589270, "size": 2510, }, "inbound-parser.test.ts": { - "offset": 50808090, + "offset": 50591780, "size": 15410, }, "index.ts": { - "offset": 50823490, + "offset": 50607180, "size": 450, }, "messages.ts": { - "offset": 50823940, + "offset": 50607630, "size": 6460, }, "outbound-serializer.test.ts": { - "offset": 50830400, + "offset": 50614080, "size": 8570, }, "parser.ts": { - "offset": 50838960, + "offset": 50622650, "size": 12990, }, "serializer.ts": { - "offset": 50851950, + "offset": 50635640, "size": 7200, }, "testing": { "files": { "buffer-list.ts": { - "offset": 50859140, + "offset": 50642830, "size": 1730, }, "test-buffers.ts": { - "offset": 50860870, + "offset": 50644560, "size": 4360, }, }, @@ -73352,39 +73248,39 @@ exports[`node_module collectors > yarn ms 2`] = ` "pg-types": { "files": { "Makefile": { - "offset": 50865230, + "offset": 50648920, "size": 240, }, "index.js": { - "offset": 50865460, + "offset": 50649150, "size": 1220, }, "index.test-d.ts": { - "offset": 50866670, + "offset": 50650360, "size": 760, }, "lib": { "files": { "arrayParser.js": { - "offset": 50867430, + "offset": 50651120, "size": 210, }, "binaryParsers.js": { - "offset": 50867640, + "offset": 50651330, "size": 6070, }, "builtins.js": { - "offset": 50873700, + "offset": 50657390, "size": 1570, }, "textParsers.js": { - "offset": 50875270, + "offset": 50658960, "size": 5370, }, }, }, "package.json": { - "offset": 50880630, + "offset": 50664320, "size": 710, }, }, @@ -73392,15 +73288,15 @@ exports[`node_module collectors > yarn ms 2`] = ` "postgres-array": { "files": { "index.js": { - "offset": 50881340, + "offset": 50665030, "size": 2320, }, "license": { - "offset": 50883660, + "offset": 50667350, "size": 1120, }, "package.json": { - "offset": 50884770, + "offset": 50668460, "size": 530, }, }, @@ -73408,15 +73304,15 @@ exports[`node_module collectors > yarn ms 2`] = ` "postgres-bytea": { "files": { "index.js": { - "offset": 50885300, + "offset": 50668990, "size": 870, }, "license": { - "offset": 50886160, + "offset": 50669850, "size": 1120, }, "package.json": { - "offset": 50887270, + "offset": 50670960, "size": 480, }, }, @@ -73424,15 +73320,15 @@ exports[`node_module collectors > yarn ms 2`] = ` "postgres-date": { "files": { "index.js": { - "offset": 50887750, + "offset": 50671440, "size": 2680, }, "license": { - "offset": 50890430, + "offset": 50674120, "size": 1120, }, "package.json": { - "offset": 50891540, + "offset": 50675230, "size": 490, }, }, @@ -73440,15 +73336,15 @@ exports[`node_module collectors > yarn ms 2`] = ` "postgres-interval": { "files": { "index.js": { - "offset": 50892020, + "offset": 50675710, "size": 3420, }, "license": { - "offset": 50895440, + "offset": 50679130, "size": 1120, }, "package.json": { - "offset": 50896550, + "offset": 50680240, "size": 540, }, }, @@ -73456,96 +73352,112 @@ exports[`node_module collectors > yarn ms 2`] = ` "require-in-the-middle": { "files": { "LICENSE": { - "offset": 50897090, + "offset": 50680780, "size": 1200, }, "index.js": { - "offset": 50898280, + "offset": 50681970, "size": 14150, }, "package.json": { - "offset": 50912430, + "offset": 50696120, "size": 970, }, }, }, "resolve": { "files": { + ".claude": { + "files": { + "notes.md": { + "offset": 50697090, + "size": 1220, + }, + "settings.local.json": { + "offset": 50698300, + "size": 790, + }, + }, + }, ".editorconfig": { - "offset": 50913400, - "size": 610, + "offset": 50699090, + "size": 660, }, "LICENSE": { - "offset": 50914000, + "offset": 50699740, "size": 1080, }, "SECURITY.md": { - "offset": 50915070, - "size": 360, + "offset": 50700810, + "size": 390, }, "async.js": { - "offset": 50915430, + "offset": 50701200, "size": 60, }, "bin": { "files": { "resolve": { "executable": true, - "offset": 50915490, + "offset": 50701250, "size": 1540, }, }, }, + "eslint.config.mjs": { + "offset": 50702790, + "size": 1580, + }, "index.js": { - "offset": 50917020, + "offset": 50704360, "size": 180, }, "lib": { "files": { "async.js": { - "offset": 50917200, - "size": 11520, + "offset": 50704540, + "size": 11550, }, "caller.js": { - "offset": 50928710, - "size": 360, + "offset": 50716090, + "size": 410, }, "core.js": { - "offset": 50929070, + "offset": 50716490, "size": 310, }, "core.json": { - "offset": 50929380, + "offset": 50716800, "size": 5960, }, "homedir.js": { - "offset": 50935330, - "size": 810, + "offset": 50722760, + "size": 960, }, "is-core.js": { - "offset": 50936130, + "offset": 50723710, "size": 120, }, "node-modules-paths.js": { - "offset": 50936250, - "size": 1370, + "offset": 50723830, + "size": 1340, }, "normalize-options.js": { - "offset": 50937620, + "offset": 50725170, "size": 350, }, "sync.js": { - "offset": 50937960, - "size": 7150, + "offset": 50725520, + "size": 7170, }, }, }, "package.json": { - "offset": 50945110, - "size": 1320, + "offset": 50732680, + "size": 1400, }, "sync.js": { - "offset": 50946430, + "offset": 50734080, "size": 60, }, }, @@ -73553,14 +73465,14 @@ exports[`node_module collectors > yarn ms 2`] = ` "semver": { "files": { "LICENSE": { - "offset": 50946480, + "offset": 50734130, "size": 770, }, "bin": { "files": { "semver.js": { "executable": true, - "offset": 50947250, + "offset": 50734900, "size": 4750, }, }, @@ -73568,19 +73480,19 @@ exports[`node_module collectors > yarn ms 2`] = ` "classes": { "files": { "comparator.js": { - "offset": 50952000, + "offset": 50739650, "size": 3640, }, "index.js": { - "offset": 50955630, + "offset": 50743280, "size": 150, }, "range.js": { - "offset": 50955770, + "offset": 50743420, "size": 14980, }, "semver.js": { - "offset": 50970750, + "offset": 50758400, "size": 9480, }, }, @@ -73588,191 +73500,191 @@ exports[`node_module collectors > yarn ms 2`] = ` "functions": { "files": { "clean.js": { - "offset": 50980230, + "offset": 50767880, "size": 210, }, "cmp.js": { - "offset": 50980430, + "offset": 50768080, "size": 970, }, "coerce.js": { - "offset": 50981390, + "offset": 50769040, "size": 2010, }, "compare-build.js": { - "offset": 50983400, + "offset": 50771050, "size": 290, }, "compare-loose.js": { - "offset": 50983680, + "offset": 50771330, "size": 140, }, "compare.js": { - "offset": 50983810, + "offset": 50771460, "size": 170, }, "diff.js": { - "offset": 50983980, + "offset": 50771630, "size": 1430, }, "eq.js": { - "offset": 50985400, + "offset": 50773050, "size": 130, }, "gt.js": { - "offset": 50985530, + "offset": 50773180, "size": 130, }, "gte.js": { - "offset": 50985650, + "offset": 50773300, "size": 130, }, "inc.js": { - "offset": 50985780, + "offset": 50773430, "size": 480, }, "lt.js": { - "offset": 50986260, + "offset": 50773910, "size": 130, }, "lte.js": { - "offset": 50986380, + "offset": 50774030, "size": 130, }, "major.js": { - "offset": 50986510, + "offset": 50774160, "size": 140, }, "minor.js": { - "offset": 50986650, + "offset": 50774300, "size": 140, }, "neq.js": { - "offset": 50986780, + "offset": 50774430, "size": 130, }, "parse.js": { - "offset": 50986910, + "offset": 50774560, "size": 340, }, "patch.js": { - "offset": 50987240, + "offset": 50774890, "size": 140, }, "prerelease.js": { - "offset": 50987380, + "offset": 50775030, "size": 240, }, "rcompare.js": { - "offset": 50987610, + "offset": 50775260, "size": 140, }, "rsort.js": { - "offset": 50987740, + "offset": 50775390, "size": 170, }, "satisfies.js": { - "offset": 50987910, + "offset": 50775560, "size": 250, }, "sort.js": { - "offset": 50988150, + "offset": 50775800, "size": 170, }, "valid.js": { - "offset": 50988310, + "offset": 50775960, "size": 180, }, }, }, "index.js": { - "offset": 50988490, + "offset": 50776140, "size": 2630, }, "internal": { "files": { "constants.js": { - "offset": 50991120, + "offset": 50778770, "size": 880, }, "debug.js": { - "offset": 50991990, + "offset": 50779640, "size": 240, }, "identifiers.js": { - "offset": 50992230, + "offset": 50779880, "size": 530, }, "lrucache.js": { - "offset": 50992760, + "offset": 50780410, "size": 810, }, "parse-options.js": { - "offset": 50993560, + "offset": 50781210, "size": 340, }, "re.js": { - "offset": 50993900, + "offset": 50781550, "size": 8140, }, }, }, "package.json": { - "offset": 51002040, + "offset": 50789690, "size": 1350, }, "preload.js": { - "offset": 51003390, + "offset": 50791040, "size": 90, }, "range.bnf": { - "offset": 51003470, + "offset": 50791120, "size": 620, }, "ranges": { "files": { "gtr.js": { - "offset": 51004090, + "offset": 50791740, "size": 240, }, "intersects.js": { - "offset": 51004320, + "offset": 50791970, "size": 230, }, "ltr.js": { - "offset": 51004540, + "offset": 50792190, "size": 230, }, "max-satisfying.js": { - "offset": 51004770, + "offset": 50792420, "size": 600, }, "min-satisfying.js": { - "offset": 51005360, + "offset": 50793010, "size": 600, }, "min-version.js": { - "offset": 51005950, + "offset": 50793600, "size": 1520, }, "outside.js": { - "offset": 51007470, + "offset": 50795120, "size": 2210, }, "simplify.js": { - "offset": 51009670, + "offset": 50797320, "size": 1360, }, "subset.js": { - "offset": 51011030, + "offset": 50798680, "size": 7530, }, "to-comparators.js": { - "offset": 51018550, + "offset": 50806200, "size": 290, }, "valid.js": { - "offset": 51018830, + "offset": 50806480, "size": 330, }, }, @@ -73782,15 +73694,15 @@ exports[`node_module collectors > yarn ms 2`] = ` "shimmer": { "files": { "LICENSE": { - "offset": 51019160, + "offset": 50806810, "size": 1330, }, "index.js": { - "offset": 51020490, + "offset": 50808140, "size": 2950, }, "package.json": { - "offset": 51023430, + "offset": 50811080, "size": 410, }, }, @@ -73798,23 +73710,23 @@ exports[`node_module collectors > yarn ms 2`] = ` "supports-preserve-symlinks-flag": { "files": { ".nycrc": { - "offset": 51023830, + "offset": 50811480, "size": 140, }, "LICENSE": { - "offset": 51023970, + "offset": 50811620, "size": 1070, }, "browser.js": { - "offset": 51025040, + "offset": 50812690, "size": 40, }, "index.js": { - "offset": 51025080, + "offset": 50812730, "size": 300, }, "package.json": { - "offset": 51025370, + "offset": 50813020, "size": 1270, }, }, @@ -73822,11 +73734,11 @@ exports[`node_module collectors > yarn ms 2`] = ` "undici-types": { "files": { "LICENSE": { - "offset": 51026630, + "offset": 50814280, "size": 1090, }, "package.json": { - "offset": 51027720, + "offset": 50815370, "size": 330, }, }, @@ -73834,23 +73746,23 @@ exports[`node_module collectors > yarn ms 2`] = ` "xtend": { "files": { "LICENSE": { - "offset": 51028050, + "offset": 50815700, "size": 1080, }, "immutable.js": { - "offset": 51029130, + "offset": 50816780, "size": 390, }, "mutable.js": { - "offset": 51029510, + "offset": 50817160, "size": 370, }, "package.json": { - "offset": 51029880, + "offset": 50817530, "size": 710, }, "test.js": { - "offset": 51030580, + "offset": 50818230, "size": 2310, }, }, @@ -73858,7 +73770,7 @@ exports[`node_module collectors > yarn ms 2`] = ` }, }, "package.json": { - "offset": 51033890, + "offset": 50821540, "size": 410, }, }, @@ -73875,7 +73787,7 @@ exports[`node_module collectors > yarn parse-asn1 2`] = ` { "files": { "index.html": { - "offset": 522170, + "offset": 522160, "size": 380, }, "index.js": { @@ -74227,7 +74139,7 @@ exports[`node_module collectors > yarn parse-asn1 2`] = ` "size": 690, }, "package.json": { - "offset": 184930, + "offset": 184920, "size": 1690, }, "tsconfig.json": { @@ -74267,7 +74179,7 @@ exports[`node_module collectors > yarn parse-asn1 2`] = ` }, }, "package.json": { - "offset": 195310, + "offset": 195300, "size": 410, }, }, @@ -74287,7 +74199,7 @@ exports[`node_module collectors > yarn parse-asn1 2`] = ` "size": 50, }, "md5.js": { - "offset": 197480, + "offset": 197470, "size": 120, }, "package.json": { @@ -74331,7 +74243,7 @@ exports[`node_module collectors > yarn parse-asn1 2`] = ` "size": 220, }, "LICENSE": { - "offset": 204390, + "offset": 204380, "size": 1080, }, "index.js": { @@ -74343,7 +74255,7 @@ exports[`node_module collectors > yarn parse-asn1 2`] = ` "size": 2080, }, "tsconfig.json": { - "offset": 209870, + "offset": 209860, "size": 4890, }, }, @@ -74395,7 +74307,7 @@ exports[`node_module collectors > yarn parse-asn1 2`] = ` "size": 1340, }, "tsconfig.json": { - "offset": 222700, + "offset": 222690, "size": 140, }, }, @@ -74415,7 +74327,7 @@ exports[`node_module collectors > yarn parse-asn1 2`] = ` "size": 70, }, "package.json": { - "offset": 224050, + "offset": 224040, "size": 1340, }, "range.js": { @@ -74427,7 +74339,7 @@ exports[`node_module collectors > yarn parse-asn1 2`] = ` "size": 80, }, "syntax.js": { - "offset": 225540, + "offset": 225530, "size": 80, }, "tsconfig.json": { @@ -74483,7 +74395,7 @@ exports[`node_module collectors > yarn parse-asn1 2`] = ` "size": 1100, }, "index.js": { - "offset": 233400, + "offset": 233390, "size": 1200, }, "package.json": { @@ -74531,7 +74443,7 @@ exports[`node_module collectors > yarn parse-asn1 2`] = ` "size": 1060, }, "implementation.js": { - "offset": 241640, + "offset": 241630, "size": 2050, }, "index.js": { @@ -74571,7 +74483,7 @@ exports[`node_module collectors > yarn parse-asn1 2`] = ` "size": 140, }, "LICENSE": { - "offset": 262790, + "offset": 262780, "size": 1080, }, "Object.getPrototypeOf.js": { @@ -74623,7 +74535,7 @@ exports[`node_module collectors > yarn parse-asn1 2`] = ` "has-property-descriptors": { "files": { ".nycrc": { - "offset": 269330, + "offset": 269320, "size": 140, }, "LICENSE": { @@ -74655,7 +74567,7 @@ exports[`node_module collectors > yarn parse-asn1 2`] = ` "size": 450, }, "package.json": { - "offset": 274110, + "offset": 274100, "size": 1800, }, "shams.js": { @@ -74679,7 +74591,7 @@ exports[`node_module collectors > yarn parse-asn1 2`] = ` "size": 1070, }, "index.js": { - "offset": 279250, + "offset": 279240, "size": 200, }, "package.json": { @@ -74719,7 +74631,7 @@ exports[`node_module collectors > yarn parse-asn1 2`] = ` "hasown": { "files": { ".nycrc": { - "offset": 290040, + "offset": 290030, "size": 220, }, "LICENSE": { @@ -74779,7 +74691,7 @@ exports[`node_module collectors > yarn parse-asn1 2`] = ` "size": 3230, }, "package.json": { - "offset": 300140, + "offset": 300130, "size": 1840, }, }, @@ -74835,7 +74747,7 @@ exports[`node_module collectors > yarn parse-asn1 2`] = ` "size": 1080, }, "abs.js": { - "offset": 309220, + "offset": 309210, "size": 80, }, "constants": { @@ -74863,11 +74775,11 @@ exports[`node_module collectors > yarn parse-asn1 2`] = ` "size": 270, }, "isInteger.js": { - "offset": 310170, + "offset": 310160, "size": 410, }, "isNaN.js": { - "offset": 310580, + "offset": 310570, "size": 130, }, "isNegativeZero.js": { @@ -74883,7 +74795,7 @@ exports[`node_module collectors > yarn parse-asn1 2`] = ` "size": 80, }, "mod.js": { - "offset": 310990, + "offset": 310980, "size": 220, }, "package.json": { @@ -74955,11 +74867,11 @@ exports[`node_module collectors > yarn parse-asn1 2`] = ` "size": 3170, }, "certificate.js": { - "offset": 325590, + "offset": 325580, "size": 2380, }, "fixProc.js": { - "offset": 327970, + "offset": 327960, "size": 1240, }, "index.js": { @@ -74979,7 +74891,7 @@ exports[`node_module collectors > yarn parse-asn1 2`] = ` "size": 4050, }, "package.json": { - "offset": 338910, + "offset": 338900, "size": 650, }, }, @@ -75117,7 +75029,7 @@ exports[`node_module collectors > yarn parse-asn1 2`] = ` "lib": { "files": { "_stream_duplex.js": { - "offset": 369780, + "offset": 369770, "size": 4020, }, "_stream_passthrough.js": { @@ -75145,7 +75057,7 @@ exports[`node_module collectors > yarn parse-asn1 2`] = ` "size": 2010, }, "destroy.js": { - "offset": 437060, + "offset": 437050, "size": 2180, }, "stream-browser.js": { @@ -75207,7 +75119,7 @@ exports[`node_module collectors > yarn parse-asn1 2`] = ` }, }, "package.json": { - "offset": 439320, + "offset": 439310, "size": 970, }, "passthrough.js": { @@ -78514,1260 +78426,479 @@ exports[`node_module collectors > yarn two package.json without node_modules 2`] { "files": { "index.html": { - "offset": 3604790, + "offset": 1498690, "size": 380, }, "index.js": { - "offset": 3605170, + "offset": 1499070, "size": 620, }, "node_modules": { "files": { - "@yarnpkg": { - "files": { - "lockfile": { - "files": { - "index.js": { - "offset": 0, - "size": 279030, - }, - "package.json": { - "offset": 279030, - "size": 250, - }, - }, - }, - }, - }, - "accepts": { - "files": { - "Makefile": { - "offset": 279280, - "size": 110, - }, - "index.js": { - "offset": 279380, - "size": 3940, - }, - "package.json": { - "offset": 283310, - "size": 530, - }, - }, - }, - "ansi-styles": { - "files": { - "index.js": { - "offset": 283830, - "size": 4140, - }, - "license": { - "offset": 287970, - "size": 1110, - }, - "package.json": { - "offset": 289080, - "size": 670, - }, - }, - }, "argparse": { "files": { "LICENSE": { - "offset": 289740, + "offset": 0, "size": 12780, }, "argparse.js": { - "offset": 302520, + "offset": 12780, "size": 129720, }, "lib": { "files": { "sub.js": { - "offset": 432230, + "offset": 142490, "size": 2260, }, "textwrap.js": { - "offset": 434480, + "offset": 144750, "size": 17400, }, }, }, "package.json": { - "offset": 451870, + "offset": 162140, "size": 450, }, }, }, - "at-least-node": { - "files": { - "LICENSE": { - "offset": 452320, - "size": 770, - }, - "index.js": { - "offset": 453090, - "size": 240, - }, - "package.json": { - "offset": 453330, - "size": 540, - }, - }, - }, - "balanced-match": { - "files": { - "LICENSE.md": { - "offset": 453860, - "size": 1100, - }, - "index.js": { - "offset": 454960, - "size": 1220, - }, - "package.json": { - "offset": 456180, - "size": 900, - }, - }, - }, - "brace-expansion": { - "files": { - "LICENSE": { - "offset": 457070, - "size": 1100, - }, - "index.js": { - "offset": 458160, - "size": 4810, - }, - "package.json": { - "offset": 462970, - "size": 1010, - }, - }, - }, - "braces": { - "files": { - "LICENSE": { - "offset": 463980, - "size": 1100, - }, - "index.js": { - "offset": 465070, - "size": 4380, - }, - "lib": { - "files": { - "compile.js": { - "offset": 469450, - "size": 1510, - }, - "constants.js": { - "offset": 470950, - "size": 1590, - }, - "expand.js": { - "offset": 472540, - "size": 2800, - }, - "parse.js": { - "offset": 475340, - "size": 6900, - }, - "stringify.js": { - "offset": 482240, - "size": 710, - }, - "utils.js": { - "offset": 482940, - "size": 2520, - }, - }, - }, - "package.json": { - "offset": 485460, - "size": 910, - }, - }, - }, - "buffer-crc32": { - "files": { - "index.js": { - "offset": 486360, - "size": 3920, - }, - "package.json": { - "offset": 490280, - "size": 550, - }, - }, - }, "builder-util-runtime": { "files": { "LICENSE": { - "offset": 490820, + "offset": 162580, "size": 1090, }, "out": { "files": { "CancellationToken.js": { - "offset": 491900, + "offset": 163670, "size": 3200, }, "CancellationToken.js.map": { - "offset": 495100, + "offset": 166870, "size": 5650, }, "MemoLazy.js": { - "offset": 500750, + "offset": 172520, "size": 1510, }, "MemoLazy.js.map": { - "offset": 502250, + "offset": 174020, "size": 2760, }, "ProgressCallbackTransform.js": { - "offset": 505010, + "offset": 176780, "size": 1950, }, "ProgressCallbackTransform.js.map": { - "offset": 506960, + "offset": 178720, "size": 3700, }, "blockMapApi.js": { - "offset": 510650, + "offset": 182420, "size": 120, }, "blockMapApi.js.map": { - "offset": 510770, + "offset": 182530, "size": 410, }, "error.js": { - "offset": 511170, + "offset": 182940, "size": 260, }, "error.js.map": { - "offset": 511420, + "offset": 183190, "size": 460, }, "httpExecutor.js": { - "offset": 511880, + "offset": 183650, "size": 20570, }, "httpExecutor.js.map": { - "offset": 532440, + "offset": 204210, "size": 38700, }, "index.js": { - "offset": 571140, + "offset": 242910, "size": 4560, }, "index.js.map": { - "offset": 575700, + "offset": 247460, "size": 2770, }, "publishOptions.js": { - "offset": 578460, + "offset": 250230, "size": 2510, }, "publishOptions.js.map": { - "offset": 580960, + "offset": 252730, "size": 17780, }, "retry.js": { - "offset": 598740, + "offset": 270510, "size": 950, }, "retry.js.map": { - "offset": 599680, + "offset": 271450, "size": 1750, }, "rfc2253Parser.js": { - "offset": 601430, + "offset": 273200, "size": 2270, }, "rfc2253Parser.js.map": { - "offset": 603700, + "offset": 275460, "size": 4170, }, "updateInfo.js": { - "offset": 607860, + "offset": 279630, "size": 120, }, "updateInfo.js.map": { - "offset": 607980, + "offset": 279750, "size": 2320, }, "uuid.js": { - "offset": 610300, + "offset": 282060, "size": 6400, }, "uuid.js.map": { - "offset": 616690, + "offset": 288460, "size": 12240, }, "xml.js": { - "offset": 628920, + "offset": 300690, "size": 3550, }, "xml.js.map": { - "offset": 632470, + "offset": 304240, "size": 6990, }, }, }, "package.json": { - "offset": 639460, + "offset": 311230, "size": 630, }, }, }, - "call-bind": { - "files": { - ".eslintignore": { - "offset": 640090, - "size": 10, - }, - ".nycrc": { - "offset": 640100, - "size": 140, - }, - "LICENSE": { - "offset": 640240, - "size": 1080, - }, - "callBound.js": { - "offset": 641310, - "size": 420, - }, - "index.js": { - "offset": 641720, - "size": 650, - }, - "package.json": { - "offset": 642370, - "size": 1510, - }, - }, - }, - "call-bind-apply-helpers": { - "files": { - ".nycrc": { - "offset": 643870, - "size": 140, - }, - "LICENSE": { - "offset": 644010, - "size": 1080, - }, - "actualApply.js": { - "offset": 645080, - "size": 280, - }, - "applyBind.js": { - "offset": 645360, - "size": 270, - }, - "functionApply.js": { - "offset": 645620, - "size": 100, - }, - "functionCall.js": { - "offset": 645720, - "size": 100, - }, - "index.js": { - "offset": 645820, - "size": 520, - }, - "package.json": { - "offset": 646330, - "size": 1850, - }, - "reflectApply.js": { - "offset": 648170, - "size": 140, - }, - "tsconfig.json": { - "offset": 648310, - "size": 120, - }, - }, - }, - "call-bound": { - "files": { - ".nycrc": { - "offset": 648420, - "size": 140, - }, - "LICENSE": { - "offset": 648560, - "size": 1080, - }, - "index.js": { - "offset": 649630, - "size": 690, - }, - "package.json": { - "offset": 650320, - "size": 1690, - }, - "tsconfig.json": { - "offset": 652010, - "size": 140, - }, - }, - }, - "chalk": { - "files": { - "license": { - "offset": 652140, - "size": 1110, - }, - "package.json": { - "offset": 653250, - "size": 650, - }, - "source": { - "files": { - "index.js": { - "offset": 653900, - "size": 6080, - }, - "templates.js": { - "offset": 659970, - "size": 3370, - }, - "util.js": { - "offset": 663340, - "size": 1040, - }, - }, - }, - }, - }, - "ci-info": { - "files": { - "LICENSE": { - "offset": 664370, - "size": 1090, - }, - "index.js": { - "offset": 665460, - "size": 2370, - }, - "package.json": { - "offset": 667830, - "size": 750, - }, - "vendors.json": { - "offset": 668580, - "size": 5720, - }, - }, - }, - "color-convert": { - "files": { - "LICENSE": { - "offset": 674300, - "size": 1090, - }, - "conversions.js": { - "offset": 675390, - "size": 17040, - }, - "index.js": { - "offset": 692430, - "size": 1710, - }, - "package.json": { - "offset": 694130, - "size": 460, - }, - "route.js": { - "offset": 694580, - "size": 2260, - }, - }, - }, - "color-name": { - "files": { - "LICENSE": { - "offset": 696840, - "size": 1090, - }, - "index.js": { - "offset": 697930, - "size": 4620, - }, - "package.json": { - "offset": 702540, - "size": 370, - }, - }, - }, - "concat-map": { - "files": { - "LICENSE": { - "offset": 702910, - "size": 1080, - }, - "README.markdown": { - "offset": 703990, - "size": 1170, - }, - "index.js": { - "offset": 705150, - "size": 350, - }, - "package.json": { - "offset": 705500, - "size": 800, - }, - }, - }, - "cookie": { - "files": { - "LICENSE": { - "offset": 706290, - "size": 1090, - }, - "index.js": { - "offset": 707380, - "size": 1900, - }, - "package.json": { - "offset": 709280, - "size": 410, - }, - }, - }, - "cookie-signature": { - "files": { - "History.md": { - "offset": 709680, - "size": 370, - }, - "Makefile": { - "offset": 710050, - "size": 90, - }, - "index.js": { - "offset": 710140, - "size": 1080, - }, - "package.json": { - "offset": 711210, - "size": 370, - }, - }, - }, - "cross-spawn": { - "files": { - "LICENSE": { - "offset": 711580, - "size": 1110, - }, - "index.js": { - "offset": 712680, - "size": 1200, - }, - "lib": { - "files": { - "enoent.js": { - "offset": 713880, - "size": 1480, - }, - "parse.js": { - "offset": 715350, - "size": 3070, - }, - "util": { - "files": { - "escape.js": { - "offset": 718410, - "size": 1390, - }, - "readShebang.js": { - "offset": 719790, - "size": 550, - }, - "resolveCommand.js": { - "offset": 720340, - "size": 1560, - }, - }, - }, - }, - }, - "package.json": { - "offset": 721900, - "size": 1280, - }, - }, - }, "debug": { "files": { "LICENSE": { - "offset": 723180, + "offset": 311860, "size": 1140, }, "package.json": { - "offset": 724310, + "offset": 313000, "size": 910, }, "src": { "files": { "browser.js": { - "offset": 725220, + "offset": 313910, "size": 6110, }, "common.js": { - "offset": 731330, + "offset": 320010, "size": 6920, }, "index.js": { - "offset": 738240, + "offset": 326920, "size": 320, }, "node.js": { - "offset": 738560, + "offset": 327240, "size": 4730, }, }, }, }, }, - "define-data-property": { - "files": { - ".nycrc": { - "offset": 743280, - "size": 220, - }, - "LICENSE": { - "offset": 743500, - "size": 1080, - }, - "index.js": { - "offset": 744570, - "size": 2340, - }, - "package.json": { - "offset": 746910, - "size": 2080, - }, - "tsconfig.json": { - "offset": 748980, - "size": 4890, - }, - }, - }, - "dunder-proto": { - "files": { - ".nycrc": { - "offset": 753860, - "size": 220, - }, - "LICENSE": { - "offset": 754080, - "size": 1080, - }, - "get.js": { - "offset": 755150, - "size": 980, - }, - "package.json": { - "offset": 756130, - "size": 1450, - }, - "set.js": { - "offset": 757580, - "size": 1280, - }, - "tsconfig.json": { - "offset": 758860, - "size": 120, - }, - }, - }, "electron-updater": { "files": { "LICENSE": { - "offset": 758970, + "offset": 331970, "size": 1090, }, "out": { "files": { "AppAdapter.js": { - "offset": 760060, + "offset": 333050, "size": 740, }, "AppAdapter.js.map": { - "offset": 760800, + "offset": 333790, "size": 1820, }, "AppImageUpdater.js": { - "offset": 762610, + "offset": 335600, "size": 5440, }, "AppImageUpdater.js.map": { - "offset": 768050, + "offset": 341040, "size": 8890, }, "AppUpdater.js": { - "offset": 776940, + "offset": 349930, "size": 33040, }, "AppUpdater.js.map": { - "offset": 809970, + "offset": 382960, "size": 56840, }, "BaseUpdater.js": { - "offset": 866800, + "offset": 439800, "size": 5490, }, "BaseUpdater.js.map": { - "offset": 872290, + "offset": 445280, "size": 9670, }, "DebUpdater.js": { - "offset": 881950, + "offset": 454940, "size": 3600, }, "DebUpdater.js.map": { - "offset": 885550, + "offset": 458540, "size": 6070, }, "DownloadedUpdateHelper.js": { - "offset": 891610, + "offset": 464600, "size": 6910, }, "DownloadedUpdateHelper.js.map": { - "offset": 898510, + "offset": 471510, "size": 12260, }, "ElectronAppAdapter.js": { - "offset": 910770, + "offset": 483760, "size": 1180, }, "ElectronAppAdapter.js.map": { - "offset": 911950, + "offset": 484940, "size": 2290, }, "LinuxUpdater.js": { - "offset": 914230, + "offset": 487230, "size": 4030, }, "LinuxUpdater.js.map": { - "offset": 918260, + "offset": 491250, "size": 6560, }, "MacUpdater.js": { - "offset": 924810, + "offset": 497810, "size": 12570, }, "MacUpdater.js.map": { - "offset": 937380, + "offset": 510370, "size": 20690, }, "NsisUpdater.js": { - "offset": 958060, + "offset": 531050, "size": 9420, }, "NsisUpdater.js.map": { - "offset": 967470, + "offset": 540470, "size": 15030, }, "PacmanUpdater.js": { - "offset": 982500, + "offset": 555490, "size": 2800, }, "PacmanUpdater.js.map": { - "offset": 985290, + "offset": 558290, "size": 4840, }, "RpmUpdater.js": { - "offset": 990130, + "offset": 563120, "size": 2900, }, "RpmUpdater.js.map": { - "offset": 993020, + "offset": 566020, "size": 5380, }, "differentialDownloader": { "files": { "DataSplitter.js": { - "offset": 998400, + "offset": 571390, "size": 9400, }, "DataSplitter.js.map": { - "offset": 1007800, + "offset": 580790, "size": 16650, }, "DifferentialDownloader.js": { - "offset": 1024440, + "offset": 597440, "size": 12520, }, "DifferentialDownloader.js.map": { - "offset": 1036960, + "offset": 609950, "size": 21370, }, "FileWithEmbeddedBlockMapDifferentialDownloader.js": { - "offset": 1058330, + "offset": 631320, "size": 1870, }, "FileWithEmbeddedBlockMapDifferentialDownloader.js.map": { - "offset": 1060190, + "offset": 633180, "size": 3220, }, "GenericDifferentialDownloader.js": { - "offset": 1063400, + "offset": 636400, "size": 530, }, "GenericDifferentialDownloader.js.map": { - "offset": 1063930, + "offset": 636920, "size": 710, }, "ProgressDifferentialDownloadCallbackTransform.js": { - "offset": 1064640, + "offset": 637630, "size": 3830, }, "ProgressDifferentialDownloadCallbackTransform.js.map": { - "offset": 1068460, + "offset": 641450, "size": 6590, }, "downloadPlanBuilder.js": { - "offset": 1075050, + "offset": 648040, "size": 5520, }, "downloadPlanBuilder.js.map": { - "offset": 1080570, + "offset": 653560, "size": 10250, }, "multipleRangeDownloader.js": { - "offset": 1090820, + "offset": 663810, "size": 5070, }, "multipleRangeDownloader.js.map": { - "offset": 1095880, + "offset": 668870, "size": 9250, }, }, }, "electronHttpExecutor.js": { - "offset": 1105130, + "offset": 678120, "size": 3260, }, "electronHttpExecutor.js.map": { - "offset": 1108390, + "offset": 681380, "size": 5550, }, "main.js": { - "offset": 1113930, + "offset": 686930, "size": 4500, }, "main.js.map": { - "offset": 1118430, + "offset": 691420, "size": 4430, }, "providerFactory.js": { - "offset": 1122850, + "offset": 695850, "size": 3370, }, "providerFactory.js.map": { - "offset": 1126220, + "offset": 699210, "size": 5450, }, "providers": { "files": { "BitbucketProvider.js": { - "offset": 1131670, + "offset": 704660, "size": 1970, }, "BitbucketProvider.js.map": { - "offset": 1133640, + "offset": 706630, "size": 3460, }, "GenericProvider.js": { - "offset": 1137090, + "offset": 710080, "size": 2260, }, "GenericProvider.js.map": { - "offset": 1139340, + "offset": 712330, "size": 3780, }, "GitHubProvider.js": { - "offset": 1143120, + "offset": 716110, "size": 9960, }, "GitHubProvider.js.map": { - "offset": 1153070, + "offset": 726060, "size": 17120, }, "GitLabProvider.js": { - "offset": 1170190, + "offset": 743180, "size": 13420, }, "GitLabProvider.js.map": { - "offset": 1183600, + "offset": 756600, "size": 21900, }, "KeygenProvider.js": { - "offset": 1205500, + "offset": 778490, "size": 2210, }, "KeygenProvider.js.map": { - "offset": 1207700, + "offset": 780700, "size": 3900, }, "PrivateGitHubProvider.js": { - "offset": 1211600, + "offset": 784590, "size": 4160, }, "PrivateGitHubProvider.js.map": { - "offset": 1215750, + "offset": 788740, "size": 7790, }, "Provider.js": { - "offset": 1223540, + "offset": 796530, "size": 6010, }, "Provider.js.map": { - "offset": 1229540, + "offset": 802530, "size": 11700, }, }, }, "types.js": { - "offset": 1241230, + "offset": 814220, "size": 1560, }, "types.js.map": { - "offset": 1242780, + "offset": 815770, "size": 3620, }, "util.js": { - "offset": 1246400, + "offset": 819390, "size": 1280, }, "util.js.map": { - "offset": 1247680, + "offset": 820670, "size": 2040, }, "windowsExecutableCodeSignatureVerifier.js": { - "offset": 1249720, + "offset": 822710, "size": 7540, }, "windowsExecutableCodeSignatureVerifier.js.map": { - "offset": 1257260, + "offset": 830250, "size": 11370, }, }, }, "package.json": { - "offset": 1268620, + "offset": 841610, "size": 1040, }, }, }, - "es-define-property": { - "files": { - ".nycrc": { - "offset": 1269660, - "size": 140, - }, - "LICENSE": { - "offset": 1269800, - "size": 1080, - }, - "index.js": { - "offset": 1270870, - "size": 290, - }, - "package.json": { - "offset": 1271160, - "size": 1340, - }, - "tsconfig.json": { - "offset": 1272500, - "size": 140, - }, - }, - }, - "es-errors": { - "files": { - "LICENSE": { - "offset": 1272630, - "size": 1080, - }, - "eval.js": { - "offset": 1273700, - "size": 80, - }, - "index.js": { - "offset": 1273780, - "size": 70, - }, - "package.json": { - "offset": 1273850, - "size": 1340, - }, - "range.js": { - "offset": 1275180, - "size": 80, - }, - "ref.js": { - "offset": 1275260, - "size": 80, - }, - "syntax.js": { - "offset": 1275340, - "size": 80, - }, - "tsconfig.json": { - "offset": 1275410, - "size": 3170, - }, - "type.js": { - "offset": 1278580, - "size": 80, - }, - "uri.js": { - "offset": 1278660, - "size": 80, - }, - }, - }, - "es-object-atoms": { - "files": { - "LICENSE": { - "offset": 1278730, - "size": 1080, - }, - "RequireObjectCoercible.js": { - "offset": 1279800, - "size": 320, - }, - "ToObject.js": { - "offset": 1280120, - "size": 250, - }, - "index.js": { - "offset": 1280370, - "size": 70, - }, - "isObject.js": { - "offset": 1280430, - "size": 170, - }, - "package.json": { - "offset": 1280590, - "size": 1430, - }, - "tsconfig.json": { - "offset": 1282020, - "size": 90, - }, - }, - }, - "escape-html": { - "files": { - "Makefile": { - "offset": 1282100, - "size": 140, - }, - "component.json": { - "offset": 1282240, - "size": 200, - }, - "index.js": { - "offset": 1282430, - "size": 330, - }, - "package.json": { - "offset": 1282760, - "size": 320, - }, - }, - }, - "express": { - "files": { - "History.md": { - "offset": 1283080, - "size": 43960, - }, - "LICENSE": { - "offset": 1327030, - "size": 1110, - }, - "Makefile": { - "offset": 1328140, - "size": 600, - }, - "benchmarks": { - "files": { - "Makefile": { - "offset": 1328730, - "size": 210, - }, - "middleware.js": { - "offset": 1328930, - "size": 380, - }, - "run": { - "executable": true, - "offset": 1329310, - "size": 200, - }, - }, - }, - "index.js": { - "offset": 1329500, - "size": 110, - }, - "lib": { - "files": { - "application.js": { - "offset": 1329610, - "size": 12050, - }, - "express.js": { - "offset": 1341650, - "size": 1730, - }, - "middleware": { - "files": { - "init.js": { - "offset": 1343380, - "size": 570, - }, - "query.js": { - "offset": 1343950, - "size": 790, - }, - }, - }, - "request.js": { - "offset": 1344730, - "size": 9320, - }, - "response.js": { - "offset": 1354040, - "size": 18090, - }, - "router": { - "files": { - "index.js": { - "offset": 1372130, - "size": 9100, - }, - "layer.js": { - "offset": 1381220, - "size": 1210, - }, - "route.js": { - "offset": 1382430, - "size": 3790, - }, - }, - }, - "utils.js": { - "offset": 1386210, - "size": 2140, - }, - "view.js": { - "offset": 1388350, - "size": 1830, - }, - }, - }, - "node_modules": { - "files": { - "debug": { - "files": { - "debug.js": { - "offset": 1391340, - "size": 2470, - }, - "lib": { - "files": { - "debug.js": { - "offset": 1393800, - "size": 2580, - }, - }, - }, - "package.json": { - "offset": 1396380, - "size": 530, - }, - }, - }, - }, - }, - "package.json": { - "offset": 1390180, - "size": 1170, - }, - }, - }, - "fill-range": { - "files": { - "LICENSE": { - "offset": 1396900, - "size": 1100, - }, - "index.js": { - "offset": 1397990, - "size": 6410, - }, - "package.json": { - "offset": 1404400, - "size": 850, - }, - }, - }, - "find-yarn-workspace-root": { - "files": { - "LICENSE": { - "offset": 1405240, - "size": 11350, - }, - "index.js": { - "offset": 1416580, - "size": 1320, - }, - "package.json": { - "offset": 1417900, - "size": 680, - }, - }, - }, - "fresh": { - "files": { - "History.md": { - "offset": 1418580, - "size": 170, - }, - "Makefile": { - "offset": 1418750, - "size": 90, - }, - "index.js": { - "offset": 1418840, - "size": 1230, - }, - "package.json": { - "offset": 1420060, - "size": 610, - }, - }, - }, "fs-extra": { "files": { "LICENSE": { - "offset": 1420660, + "offset": 842650, "size": 1090, }, "lib": { @@ -79775,15 +78906,15 @@ exports[`node_module collectors > yarn two package.json without node_modules 2`] "copy": { "files": { "copy-sync.js": { - "offset": 1421750, + "offset": 843740, "size": 5780, }, "copy.js": { - "offset": 1427520, + "offset": 849510, "size": 7760, }, "index.js": { - "offset": 1435280, + "offset": 857270, "size": 150, }, }, @@ -79791,7 +78922,7 @@ exports[`node_module collectors > yarn two package.json without node_modules 2`] "empty": { "files": { "index.js": { - "offset": 1435430, + "offset": 857410, "size": 750, }, }, @@ -79799,27 +78930,27 @@ exports[`node_module collectors > yarn two package.json without node_modules 2`] "ensure": { "files": { "file.js": { - "offset": 1436170, + "offset": 858160, "size": 1710, }, "index.js": { - "offset": 1437880, + "offset": 859870, "size": 550, }, "link.js": { - "offset": 1438430, + "offset": 860410, "size": 1660, }, "symlink-paths.js": { - "offset": 1440080, + "offset": 862060, "size": 3380, }, "symlink-type.js": { - "offset": 1443450, + "offset": 865440, "size": 700, }, "symlink.js": { - "offset": 1444150, + "offset": 866130, "size": 2530, }, }, @@ -79827,31 +78958,31 @@ exports[`node_module collectors > yarn two package.json without node_modules 2`] "fs": { "files": { "index.js": { - "offset": 1446670, + "offset": 868650, "size": 3380, }, }, }, "index.js": { - "offset": 1450040, + "offset": 872030, "size": 360, }, "json": { "files": { "index.js": { - "offset": 1450400, + "offset": 872390, "size": 510, }, "jsonfile.js": { - "offset": 1450910, + "offset": 872890, "size": 240, }, "output-json-sync.js": { - "offset": 1451140, + "offset": 873130, "size": 280, }, "output-json.js": { - "offset": 1451420, + "offset": 873410, "size": 280, }, }, @@ -79859,15 +78990,15 @@ exports[`node_module collectors > yarn two package.json without node_modules 2`] "mkdirs": { "files": { "index.js": { - "offset": 1451700, + "offset": 873680, "size": 330, }, "make-dir.js": { - "offset": 1452030, + "offset": 874010, "size": 550, }, "utils.js": { - "offset": 1452570, + "offset": 874560, "size": 1660, }, }, @@ -79875,15 +79006,15 @@ exports[`node_module collectors > yarn two package.json without node_modules 2`] "move": { "files": { "index.js": { - "offset": 1454230, + "offset": 876210, "size": 150, }, "move-sync.js": { - "offset": 1454370, + "offset": 876360, "size": 1490, }, "move.js": { - "offset": 1455860, + "offset": 877840, "size": 2010, }, }, @@ -79891,7 +79022,7 @@ exports[`node_module collectors > yarn two package.json without node_modules 2`] "output-file": { "files": { "index.js": { - "offset": 1457870, + "offset": 879850, "size": 950, }, }, @@ -79899,7 +79030,7 @@ exports[`node_module collectors > yarn two package.json without node_modules 2`] "path-exists": { "files": { "index.js": { - "offset": 1458810, + "offset": 880800, "size": 270, }, }, @@ -79907,11 +79038,11 @@ exports[`node_module collectors > yarn two package.json without node_modules 2`] "remove": { "files": { "index.js": { - "offset": 1459080, + "offset": 881060, "size": 490, }, "rimraf.js": { - "offset": 1459570, + "offset": 881550, "size": 7450, }, }, @@ -79919,11 +79050,11 @@ exports[`node_module collectors > yarn two package.json without node_modules 2`] "util": { "files": { "stat.js": { - "offset": 1467010, + "offset": 889000, "size": 5230, }, "utimes.js": { - "offset": 1472240, + "offset": 894220, "size": 620, }, }, @@ -79931,2886 +79062,566 @@ exports[`node_module collectors > yarn two package.json without node_modules 2`] }, }, "package.json": { - "offset": 1472850, + "offset": 894840, "size": 950, }, }, }, - "fs.realpath": { + "graceful-fs": { "files": { "LICENSE": { - "offset": 1473800, - "size": 2130, + "offset": 895790, + "size": 800, }, - "index.js": { - "offset": 1475930, - "size": 1310, + "clone.js": { + "offset": 896580, + "size": 500, + }, + "graceful-fs.js": { + "offset": 897070, + "size": 12680, }, - "old.js": { - "offset": 1477230, - "size": 8550, + "legacy-streams.js": { + "offset": 909750, + "size": 2660, }, "package.json": { - "offset": 1485780, - "size": 460, + "offset": 912410, + "size": 600, + }, + "polyfills.js": { + "offset": 913010, + "size": 10150, }, }, }, - "function-bind": { + "js-yaml": { "files": { - ".nycrc": { - "offset": 1486240, - "size": 220, - }, "LICENSE": { - "offset": 1486450, - "size": 1060, - }, - "implementation.js": { - "offset": 1487500, - "size": 2050, - }, - "index.js": { - "offset": 1489550, - "size": 130, - }, - "package.json": { - "offset": 1489670, - "size": 1330, + "offset": 923150, + "size": 1090, }, - }, - }, - "get-intrinsic": { - "files": { - ".nycrc": { - "offset": 1491000, - "size": 140, + "bin": { + "files": { + "js-yaml.js": { + "executable": true, + "offset": 924230, + "size": 2740, + }, + }, }, - "LICENSE": { - "offset": 1491140, - "size": 1080, + "dist": { + "files": { + "js-yaml.js": { + "offset": 926970, + "size": 114590, + }, + "js-yaml.min.js": { + "offset": 1041560, + "size": 39520, + }, + "js-yaml.mjs": { + "offset": 1081070, + "size": 107750, + }, + }, }, "index.js": { - "offset": 1492210, - "size": 14440, + "offset": 1188810, + "size": 1800, + }, + "lib": { + "files": { + "common.js": { + "offset": 1190610, + "size": 1180, + }, + "dumper.js": { + "offset": 1191780, + "size": 31900, + }, + "exception.js": { + "offset": 1223680, + "size": 1300, + }, + "loader.js": { + "offset": 1224970, + "size": 47360, + }, + "schema": { + "files": { + "core.js": { + "offset": 1275710, + "size": 290, + }, + "default.js": { + "offset": 1276000, + "size": 540, + }, + "failsafe.js": { + "offset": 1276540, + "size": 280, + }, + "json.js": { + "offset": 1276820, + "size": 530, + }, + }, + }, + "schema.js": { + "offset": 1272330, + "size": 3390, + }, + "snippet.js": { + "offset": 1277340, + "size": 3090, + }, + "type": { + "files": { + "binary.js": { + "offset": 1282280, + "size": 2920, + }, + "bool.js": { + "offset": 1285190, + "size": 980, + }, + "float.js": { + "offset": 1286160, + "size": 2470, + }, + "int.js": { + "offset": 1288630, + "size": 3700, + }, + "map.js": { + "offset": 1292320, + "size": 190, + }, + "merge.js": { + "offset": 1292510, + "size": 230, + }, + "null.js": { + "offset": 1292740, + "size": 810, + }, + "omap.js": { + "offset": 1293550, + "size": 1030, + }, + "pairs.js": { + "offset": 1294570, + "size": 1090, + }, + "seq.js": { + "offset": 1295650, + "size": 200, + }, + "set.js": { + "offset": 1295850, + "size": 550, + }, + "str.js": { + "offset": 1296390, + "size": 190, + }, + "timestamp.js": { + "offset": 1296580, + "size": 2580, + }, + }, + }, + "type.js": { + "offset": 1280430, + "size": 1850, + }, + }, }, "package.json": { - "offset": 1506650, - "size": 1870, + "offset": 1299150, + "size": 1080, }, }, }, - "get-proto": { + "jsonfile": { "files": { - ".nycrc": { - "offset": 1508510, - "size": 140, - }, "LICENSE": { - "offset": 1508650, - "size": 1080, - }, - "Object.getPrototypeOf.js": { - "offset": 1509720, - "size": 160, - }, - "Reflect.getPrototypeOf.js": { - "offset": 1509880, - "size": 150, + "offset": 1300230, + "size": 1110, }, "index.js": { - "offset": 1510030, - "size": 830, + "offset": 1301340, + "size": 2020, }, "package.json": { - "offset": 1510850, - "size": 1430, + "offset": 1303350, + "size": 560, }, - "tsconfig.json": { - "offset": 1512280, - "size": 120, + "utils.js": { + "offset": 1303910, + "size": 500, }, }, }, - "glob": { + "lazy-val": { "files": { - "LICENSE": { - "offset": 1512390, - "size": 980, - }, - "common.js": { - "offset": 1513370, - "size": 6150, - }, - "glob.js": { - "offset": 1519520, - "size": 19450, + "out": { + "files": { + "main.js": { + "offset": 1304410, + "size": 610, + }, + "main.js.map": { + "offset": 1305010, + "size": 1160, + }, + }, }, "package.json": { - "offset": 1538960, - "size": 920, - }, - "sync.js": { - "offset": 1539880, - "size": 12020, + "offset": 1306170, + "size": 330, }, }, }, - "gopd": { + "lodash.escaperegexp": { "files": { "LICENSE": { - "offset": 1551900, - "size": 1080, - }, - "gOPD.js": { - "offset": 1552970, - "size": 100, + "offset": 1306500, + "size": 1960, }, "index.js": { - "offset": 1553070, - "size": 210, + "offset": 1308450, + "size": 4400, }, "package.json": { - "offset": 1553270, - "size": 1310, - }, - "tsconfig.json": { - "offset": 1554580, - "size": 120, + "offset": 1312850, + "size": 360, }, }, }, - "graceful-fs": { + "lodash.isequal": { "files": { "LICENSE": { - "offset": 1554700, - "size": 800, - }, - "clone.js": { - "offset": 1555490, - "size": 500, - }, - "graceful-fs.js": { - "offset": 1555990, - "size": 12680, + "offset": 1313200, + "size": 1950, }, - "legacy-streams.js": { - "offset": 1568670, - "size": 2660, + "index.js": { + "offset": 1315150, + "size": 49600, }, "package.json": { - "offset": 1571320, - "size": 600, - }, - "polyfills.js": { - "offset": 1571920, - "size": 10150, + "offset": 1364750, + "size": 350, }, }, }, - "has-flag": { + "ms": { "files": { "index.js": { - "offset": 1582060, - "size": 330, + "offset": 1365100, + "size": 3030, }, - "license": { - "offset": 1582390, - "size": 1110, + "license.md": { + "offset": 1368120, + "size": 1080, }, "package.json": { - "offset": 1583500, - "size": 460, + "offset": 1369200, + "size": 500, }, }, }, - "has-property-descriptors": { + "sax": { "files": { - ".nycrc": { - "offset": 1583960, - "size": 140, + "LICENSE.md": { + "offset": 1369700, + "size": 1560, }, - "LICENSE": { - "offset": 1584100, - "size": 1070, - }, - "index.js": { - "offset": 1585160, - "size": 590, - }, - "package.json": { - "offset": 1585750, - "size": 1330, - }, - }, - }, - "has-symbols": { - "files": { - ".nycrc": { - "offset": 1587080, - "size": 140, - }, - "LICENSE": { - "offset": 1587220, - "size": 1080, - }, - "index.js": { - "offset": 1588290, - "size": 450, - }, - "package.json": { - "offset": 1588740, - "size": 1800, - }, - "shams.js": { - "offset": 1590530, - "size": 1930, - }, - "tsconfig.json": { - "offset": 1592450, - "size": 150, - }, - }, - }, - "hasown": { - "files": { - ".nycrc": { - "offset": 1592590, - "size": 220, - }, - "LICENSE": { - "offset": 1592810, - "size": 1090, - }, - "index.js": { - "offset": 1593890, - "size": 210, - }, - "package.json": { - "offset": 1594100, - "size": 1480, - }, - "tsconfig.json": { - "offset": 1595570, - "size": 80, - }, - }, - }, - "inflight": { - "files": { - "LICENSE": { - "offset": 1595650, - "size": 750, - }, - "inflight.js": { - "offset": 1596390, - "size": 1370, - }, - "package.json": { - "offset": 1597760, - "size": 540, - }, - }, - }, - "inherits": { - "files": { - "LICENSE": { - "offset": 1598290, - "size": 750, - }, - "inherits.js": { - "offset": 1599040, - "size": 250, - }, - "inherits_browser.js": { - "offset": 1599290, - "size": 760, - }, - "package.json": { - "offset": 1600040, - "size": 400, - }, - }, - }, - "is-docker": { - "files": { - "cli.js": { - "executable": true, - "offset": 1600440, - "size": 110, - }, - "index.js": { - "offset": 1600540, - "size": 450, - }, - "license": { - "offset": 1600990, - "size": 1120, - }, - "package.json": { - "offset": 1602110, - "size": 610, - }, - }, - }, - "is-number": { - "files": { - "LICENSE": { - "offset": 1602710, - "size": 1100, - }, - "index.js": { - "offset": 1603800, - "size": 420, - }, - "package.json": { - "offset": 1604220, - "size": 930, - }, - }, - }, - "is-wsl": { - "files": { - "index.js": { - "offset": 1605140, - "size": 560, - }, - "license": { - "offset": 1605690, - "size": 1110, - }, - "package.json": { - "offset": 1606800, - "size": 620, - }, - }, - }, - "isarray": { - "files": { - "LICENSE": { - "offset": 1607420, - "size": 1100, - }, - "index.js": { - "offset": 1608510, - "size": 140, + "lib": { + "files": { + "sax.js": { + "offset": 1371250, + "size": 50150, + }, + }, }, "package.json": { - "offset": 1608640, - "size": 880, + "offset": 1421400, + "size": 570, }, }, }, - "isexe": { + "semver": { "files": { "LICENSE": { - "offset": 1609520, + "offset": 1421960, "size": 770, }, - "index.js": { - "offset": 1610290, - "size": 1200, - }, - "mode.js": { - "offset": 1611480, - "size": 910, - }, - "package.json": { - "offset": 1612390, - "size": 520, - }, - "windows.js": { - "offset": 1612900, - "size": 890, - }, - }, - }, - "js-yaml": { - "files": { - "LICENSE": { - "offset": 1613790, - "size": 1090, - }, "bin": { "files": { - "js-yaml.js": { + "semver.js": { "executable": true, - "offset": 1614880, - "size": 2740, + "offset": 1422730, + "size": 4750, }, }, }, - "dist": { + "classes": { "files": { - "js-yaml.js": { - "offset": 1617610, - "size": 114590, + "comparator.js": { + "offset": 1427470, + "size": 3640, }, - "js-yaml.min.js": { - "offset": 1732200, - "size": 39520, + "index.js": { + "offset": 1431100, + "size": 150, }, - "js-yaml.mjs": { - "offset": 1771710, - "size": 107750, + "range.js": { + "offset": 1431250, + "size": 14980, + }, + "semver.js": { + "offset": 1446220, + "size": 9480, }, }, }, - "index.js": { - "offset": 1879450, - "size": 1800, - }, - "lib": { + "functions": { "files": { - "common.js": { - "offset": 1881250, - "size": 1180, + "clean.js": { + "offset": 1455700, + "size": 210, }, - "dumper.js": { - "offset": 1882420, - "size": 31900, + "cmp.js": { + "offset": 1455910, + "size": 970, }, - "exception.js": { - "offset": 1914320, - "size": 1300, + "coerce.js": { + "offset": 1456870, + "size": 2010, }, - "loader.js": { - "offset": 1915620, - "size": 47360, + "compare-build.js": { + "offset": 1458870, + "size": 290, }, - "schema": { - "files": { - "core.js": { - "offset": 1966360, - "size": 290, - }, - "default.js": { - "offset": 1966640, - "size": 540, - }, - "failsafe.js": { - "offset": 1967180, - "size": 280, - }, - "json.js": { - "offset": 1967460, - "size": 530, - }, - }, + "compare-loose.js": { + "offset": 1459160, + "size": 140, }, - "schema.js": { - "offset": 1962970, - "size": 3390, + "compare.js": { + "offset": 1459290, + "size": 170, }, - "snippet.js": { - "offset": 1967980, - "size": 3090, + "diff.js": { + "offset": 1459460, + "size": 1430, }, - "type": { - "files": { - "binary.js": { - "offset": 1972920, - "size": 2920, - }, - "bool.js": { - "offset": 1975830, - "size": 980, - }, - "float.js": { - "offset": 1976800, - "size": 2470, - }, - "int.js": { - "offset": 1979270, - "size": 3700, - }, - "map.js": { - "offset": 1982960, - "size": 190, - }, - "merge.js": { - "offset": 1983150, - "size": 230, - }, - "null.js": { - "offset": 1983380, - "size": 810, - }, - "omap.js": { - "offset": 1984190, - "size": 1030, - }, - "pairs.js": { - "offset": 1985210, - "size": 1090, - }, - "seq.js": { - "offset": 1986300, - "size": 200, - }, - "set.js": { - "offset": 1986490, - "size": 550, - }, - "str.js": { - "offset": 1987030, - "size": 190, - }, - "timestamp.js": { - "offset": 1987220, - "size": 2580, - }, - }, + "eq.js": { + "offset": 1460880, + "size": 130, }, - "type.js": { - "offset": 1971070, - "size": 1850, + "gt.js": { + "offset": 1461010, + "size": 130, + }, + "gte.js": { + "offset": 1461130, + "size": 130, + }, + "inc.js": { + "offset": 1461260, + "size": 480, + }, + "lt.js": { + "offset": 1461740, + "size": 130, + }, + "lte.js": { + "offset": 1461860, + "size": 130, + }, + "major.js": { + "offset": 1461990, + "size": 140, + }, + "minor.js": { + "offset": 1462120, + "size": 140, + }, + "neq.js": { + "offset": 1462260, + "size": 130, + }, + "parse.js": { + "offset": 1462390, + "size": 340, + }, + "patch.js": { + "offset": 1462720, + "size": 140, + }, + "prerelease.js": { + "offset": 1462850, + "size": 240, + }, + "rcompare.js": { + "offset": 1463090, + "size": 140, + }, + "rsort.js": { + "offset": 1463220, + "size": 170, + }, + "satisfies.js": { + "offset": 1463380, + "size": 250, + }, + "sort.js": { + "offset": 1463630, + "size": 170, + }, + "valid.js": { + "offset": 1463790, + "size": 180, }, }, }, - "package.json": { - "offset": 1989790, - "size": 1080, - }, - }, - }, - "json-stable-stringify": { - "files": { - "LICENSE": { - "offset": 1990870, - "size": 1070, - }, - "index.js": { - "offset": 1991940, - "size": 4750, - }, - "package.json": { - "offset": 1996690, - "size": 1610, - }, - "tsconfig.json": { - "offset": 1998290, - "size": 150, - }, - }, - }, - "jsonfile": { - "files": { - "LICENSE": { - "offset": 1998430, - "size": 1110, - }, - "index.js": { - "offset": 1999540, - "size": 2020, - }, - "package.json": { - "offset": 2001560, - "size": 560, - }, - "utils.js": { - "offset": 2002120, - "size": 500, - }, - }, - }, - "jsonify": { - "files": { "index.js": { - "offset": 2002610, - "size": 110, + "offset": 1463970, + "size": 2630, }, - "lib": { + "internal": { "files": { - "parse.js": { - "offset": 2002720, - "size": 4650, + "constants.js": { + "offset": 1466600, + "size": 880, + }, + "debug.js": { + "offset": 1467470, + "size": 240, + }, + "identifiers.js": { + "offset": 1467710, + "size": 530, + }, + "lrucache.js": { + "offset": 1468230, + "size": 810, + }, + "parse-options.js": { + "offset": 1469040, + "size": 340, }, - "stringify.js": { - "offset": 2007360, - "size": 4310, + "re.js": { + "offset": 1469370, + "size": 8140, }, }, }, "package.json": { - "offset": 2011670, - "size": 1010, - }, - }, - }, - "klaw-sync": { - "files": { - "LICENSE": { - "offset": 2012680, - "size": 1080, + "offset": 1477510, + "size": 1350, }, - "klaw-sync.js": { - "offset": 2013760, - "size": 1030, + "preload.js": { + "offset": 1478860, + "size": 90, }, - "package.json": { - "offset": 2014780, - "size": 690, + "range.bnf": { + "offset": 1478950, + "size": 620, }, - }, - }, - "lazy-val": { - "files": { - "out": { + "ranges": { "files": { - "main.js": { - "offset": 2015460, - "size": 610, + "gtr.js": { + "offset": 1479560, + "size": 240, }, - "main.js.map": { - "offset": 2016060, - "size": 1160, + "intersects.js": { + "offset": 1479800, + "size": 230, + }, + "ltr.js": { + "offset": 1480020, + "size": 230, + }, + "max-satisfying.js": { + "offset": 1480250, + "size": 600, + }, + "min-satisfying.js": { + "offset": 1480840, + "size": 600, + }, + "min-version.js": { + "offset": 1481430, + "size": 1520, + }, + "outside.js": { + "offset": 1482940, + "size": 2210, + }, + "simplify.js": { + "offset": 1485150, + "size": 1360, + }, + "subset.js": { + "offset": 1486500, + "size": 7530, + }, + "to-comparators.js": { + "offset": 1494030, + "size": 290, + }, + "valid.js": { + "offset": 1494310, + "size": 330, }, }, }, - "package.json": { - "offset": 2017220, - "size": 330, - }, }, }, - "lodash.escaperegexp": { + "tiny-typed-emitter": { "files": { "LICENSE": { - "offset": 2017550, - "size": 1960, + "offset": 1494640, + "size": 1110, }, - "index.js": { - "offset": 2019500, - "size": 4400, + "lib": { + "files": { + "index.js": { + "offset": 1495740, + "size": 140, + }, + }, }, "package.json": { - "offset": 2023900, - "size": 360, + "offset": 1495870, + "size": 400, }, }, }, - "lodash.isequal": { + "universalify": { "files": { "LICENSE": { - "offset": 2024260, - "size": 1950, + "offset": 1496270, + "size": 1100, }, "index.js": { - "offset": 2026210, - "size": 49600, + "offset": 1497370, + "size": 710, }, "package.json": { - "offset": 2075800, - "size": 350, - }, - }, - }, - "math-intrinsics": { - "files": { - "LICENSE": { - "offset": 2076150, - "size": 1080, - }, - "abs.js": { - "offset": 2077220, - "size": 80, - }, - "constants": { - "files": { - "maxArrayLength.js": { - "offset": 2077300, - "size": 110, - }, - "maxSafeInteger.js": { - "offset": 2077410, - "size": 240, - }, - "maxValue.js": { - "offset": 2077640, - "size": 200, - }, - }, - }, - "floor.js": { - "offset": 2077830, - "size": 80, - }, - "isFinite.js": { - "offset": 2077910, - "size": 270, - }, - "isInteger.js": { - "offset": 2078170, - "size": 410, - }, - "isNaN.js": { - "offset": 2078580, - "size": 130, - }, - "isNegativeZero.js": { - "offset": 2078700, - "size": 150, - }, - "max.js": { - "offset": 2078850, - "size": 80, - }, - "min.js": { - "offset": 2078920, - "size": 80, - }, - "mod.js": { - "offset": 2078990, - "size": 220, - }, - "package.json": { - "offset": 2079210, - "size": 1940, - }, - "pow.js": { - "offset": 2081140, - "size": 80, - }, - "round.js": { - "offset": 2081220, - "size": 80, - }, - "sign.js": { - "offset": 2081290, - "size": 220, - }, - "tsconfig.json": { - "offset": 2081510, - "size": 40, - }, - }, - }, - "merge-descriptors": { - "files": { - "component.json": { - "offset": 2081540, - "size": 210, - }, - "index.js": { - "offset": 2081750, - "size": 240, - }, - "package.json": { - "offset": 2081980, - "size": 410, - }, - }, - }, - "methods": { - "files": { - "History.md": { - "offset": 2082380, - "size": 70, - }, - "index.js": { - "offset": 2082450, - "size": 470, - }, - "package.json": { - "offset": 2082920, - "size": 290, - }, - }, - }, - "micromatch": { - "files": { - "LICENSE": { - "executable": true, - "offset": 2083210, - "size": 1100, - }, - "index.js": { - "offset": 2084300, - "size": 13900, - }, - "package.json": { - "offset": 2098200, - "size": 1190, - }, - }, - }, - "mime": { - "files": { - "LICENSE": { - "offset": 2099390, - "size": 1080, - }, - "mime.js": { - "offset": 2100460, - "size": 2870, - }, - "package.json": { - "offset": 2103320, - "size": 390, - }, - "test.js": { - "offset": 2103710, - "size": 2750, - }, - "types": { - "files": { - "mime.types": { - "offset": 2106460, - "size": 53010, - }, - "node.types": { - "offset": 2159470, - "size": 2580, - }, - }, - }, - }, - }, - "minimatch": { - "files": { - "LICENSE": { - "offset": 2162040, - "size": 770, - }, - "minimatch.js": { - "offset": 2162810, - "size": 27460, - }, - "package.json": { - "offset": 2190270, - "size": 530, - }, - }, - }, - "minimist": { - "files": { - ".nycrc": { - "offset": 2190790, - "size": 230, - }, - "LICENSE": { - "offset": 2191020, - "size": 1080, - }, - "index.js": { - "offset": 2192100, - "size": 6200, - }, - "package.json": { - "offset": 2198290, - "size": 1250, - }, - }, - }, - "ms": { - "files": { - "index.js": { - "offset": 2199540, - "size": 3030, - }, - "license.md": { - "offset": 2202560, - "size": 1080, - }, - "package.json": { - "offset": 2203640, - "size": 500, - }, - }, - }, - "negotiator": { - "files": { - "LICENSE": { - "offset": 2204140, - "size": 1170, - }, - "lib": { - "files": { - "charset.js": { - "offset": 2205300, - "size": 1650, - }, - "encoding.js": { - "offset": 2206950, - "size": 2000, - }, - "language.js": { - "offset": 2208950, - "size": 2140, - }, - "mediaType.js": { - "offset": 2211080, - "size": 2180, - }, - "negotiator.js": { - "offset": 2213260, - "size": 910, - }, - }, - }, - "package.json": { - "offset": 2214160, - "size": 460, - }, - }, - }, - "object-keys": { - "files": { - ".editorconfig": { - "offset": 2214610, - "size": 280, - }, - "LICENSE": { - "offset": 2214890, - "size": 1080, - }, - "implementation.js": { - "offset": 2215970, - "size": 3220, - }, - "index.js": { - "offset": 2219180, - "size": 830, - }, - "isArguments.js": { - "offset": 2220010, - "size": 430, - }, - "package.json": { - "offset": 2220430, - "size": 1130, - }, - }, - }, - "once": { - "files": { - "LICENSE": { - "offset": 2221550, - "size": 770, - }, - "once.js": { - "offset": 2222320, - "size": 940, - }, - "package.json": { - "offset": 2223250, - "size": 460, - }, - }, - }, - "open": { - "files": { - "index.js": { - "offset": 2223700, - "size": 4850, - }, - "license": { - "offset": 2228550, - "size": 1120, - }, - "package.json": { - "offset": 2229660, - "size": 660, - }, - "xdg-open": { - "executable": true, - "offset": 2230320, - "size": 25770, - }, - }, - }, - "os-tmpdir": { - "files": { - "index.js": { - "offset": 2256090, - "size": 580, - }, - "license": { - "offset": 2256660, - "size": 1120, - }, - "package.json": { - "offset": 2257780, - "size": 420, - }, - }, - }, - "parseurl": { - "files": { - "index.js": { - "offset": 2258190, - "size": 590, - }, - "package.json": { - "offset": 2258770, - "size": 380, - }, - }, - }, - "patch-package": { - "files": { - "LICENSE": { - "offset": 2259150, - "size": 1070, - }, - "dist": { - "files": { - "PackageDetails.js": { - "offset": 2260220, - "size": 14600, - }, - "PackageDetails.test.js": { - "offset": 2274820, - "size": 26260, - }, - "applyPatches.js": { - "offset": 2301070, - "size": 54160, - }, - "assertNever.js": { - "offset": 2355220, - "size": 720, - }, - "coerceSemVer.js": { - "offset": 2355940, - "size": 1130, - }, - "createIssue.js": { - "offset": 2357070, - "size": 11370, - }, - "createIssue.test.js": { - "offset": 2368430, - "size": 3020, - }, - "detectPackageManager.js": { - "offset": 2371450, - "size": 7600, - }, - "filterFiles.js": { - "offset": 2379050, - "size": 2370, - }, - "getAppRootPath.js": { - "offset": 2381410, - "size": 2100, - }, - "getPackageResolution.js": { - "offset": 2383510, - "size": 16780, - }, - "getPackageVersion.js": { - "offset": 2400280, - "size": 980, - }, - "getPackageVersion.test.js": { - "offset": 2401260, - "size": 8070, - }, - "hash.js": { - "offset": 2409320, - "size": 3250, - }, - "index.js": { - "executable": true, - "offset": 2412570, - "size": 21200, - }, - "makePatch.js": { - "offset": 2433760, - "size": 64410, - }, - "makeRegExp.js": { - "offset": 2498170, - "size": 2550, - }, - "packageIsDevDependency.js": { - "offset": 2500720, - "size": 2060, - }, - "packageIsDevDependency.test.js": { - "offset": 2502780, - "size": 4650, - }, - "patch": { - "files": { - "apply.js": { - "offset": 2507430, - "size": 30170, - }, - "parse.js": { - "offset": 2537590, - "size": 41350, - }, - "read.js": { - "offset": 2578940, - "size": 6400, - }, - "reverse.js": { - "offset": 2585340, - "size": 9840, - }, - }, - }, - "patchFs.js": { - "offset": 2595170, - "size": 6350, - }, - "path.js": { - "offset": 2601520, - "size": 2140, - }, - "rebase.js": { - "offset": 2603660, - "size": 20840, - }, - "resolveRelativeFileDependencies.js": { - "offset": 2624500, - "size": 2620, - }, - "resolveRelativeFileDependencies.test.js": { - "offset": 2627110, - "size": 2940, - }, - "spawnSafe.js": { - "offset": 2630040, - "size": 3250, - }, - "stateFile.js": { - "offset": 2633290, - "size": 9100, - }, - }, - }, - "index.js": { - "executable": true, - "offset": 2642390, - "size": 50, - }, - "node_modules": { - "files": { - "fs-extra": { - "files": { - "LICENSE": { - "offset": 2644530, - "size": 1090, - }, - "lib": { - "files": { - "copy": { - "files": { - "copy.js": { - "offset": 2651320, - "size": 7610, - }, - "index.js": { - "offset": 2658930, - "size": 120, - }, - }, - }, - "copy-sync": { - "files": { - "copy-sync.js": { - "offset": 2645610, - "size": 5640, - }, - "index.js": { - "offset": 2651250, - "size": 70, - }, - }, - }, - "empty": { - "files": { - "index.js": { - "offset": 2659040, - "size": 990, - }, - }, - }, - "ensure": { - "files": { - "file.js": { - "offset": 2660020, - "size": 1710, - }, - "index.js": { - "offset": 2661730, - "size": 630, - }, - "link.js": { - "offset": 2662350, - "size": 1570, - }, - "symlink-paths.js": { - "offset": 2663920, - "size": 3380, - }, - "symlink-type.js": { - "offset": 2667290, - "size": 700, - }, - "symlink.js": { - "offset": 2667990, - "size": 2050, - }, - }, - }, - "fs": { - "files": { - "index.js": { - "offset": 2670040, - "size": 3440, - }, - }, - }, - "index.js": { - "offset": 2673470, - "size": 720, - }, - "json": { - "files": { - "index.js": { - "offset": 2674190, - "size": 510, - }, - "jsonfile.js": { - "offset": 2674700, - "size": 240, - }, - "output-json-sync.js": { - "offset": 2674930, - "size": 280, - }, - "output-json.js": { - "offset": 2675200, - "size": 280, - }, - }, - }, - "mkdirs": { - "files": { - "index.js": { - "offset": 2675480, - "size": 330, - }, - "make-dir.js": { - "offset": 2675800, - "size": 4410, - }, - }, - }, - "move": { - "files": { - "index.js": { - "offset": 2681480, - "size": 120, - }, - "move.js": { - "offset": 2681590, - "size": 1640, - }, - }, - }, - "move-sync": { - "files": { - "index.js": { - "offset": 2680210, - "size": 70, - }, - "move-sync.js": { - "offset": 2680280, - "size": 1200, - }, - }, - }, - "output": { - "files": { - "index.js": { - "offset": 2683220, - "size": 950, - }, - }, - }, - "path-exists": { - "files": { - "index.js": { - "offset": 2684160, - "size": 270, - }, - }, - }, - "remove": { - "files": { - "index.js": { - "offset": 2684430, - "size": 170, - }, - "rimraf.js": { - "offset": 2684590, - "size": 7450, - }, - }, - }, - "util": { - "files": { - "stat.js": { - "offset": 2692040, - "size": 4630, - }, - "utimes.js": { - "offset": 2696660, - "size": 620, - }, - }, - }, - }, - }, - "package.json": { - "offset": 2697280, - "size": 960, - }, - }, - }, - }, - }, - "package.json": { - "offset": 2642440, - "size": 2090, - }, - }, - }, - "path-is-absolute": { - "files": { - "index.js": { - "offset": 2698230, - "size": 620, - }, - "license": { - "offset": 2698840, - "size": 1120, - }, - "package.json": { - "offset": 2699960, - "size": 430, - }, - }, - }, - "path-key": { - "files": { - "index.js": { - "offset": 2700390, - "size": 420, - }, - "license": { - "offset": 2700800, - "size": 1110, - }, - "package.json": { - "offset": 2701910, - "size": 510, - }, - }, - }, - "path-to-regexp": { - "files": { - "History.md": { - "offset": 2702420, - "size": 180, - }, - "component.json": { - "offset": 2702600, - "size": 250, - }, - "index.js": { - "offset": 2702840, - "size": 1490, - }, - "package.json": { - "offset": 2704320, - "size": 370, - }, - "test.js": { - "offset": 2704690, - "size": 13770, - }, - }, - }, - "picomatch": { - "files": { - "LICENSE": { - "offset": 2718460, - "size": 1100, - }, - "index.js": { - "offset": 2719550, - "size": 60, - }, - "lib": { - "files": { - "constants.js": { - "offset": 2719610, - "size": 4570, - }, - "parse.js": { - "offset": 2724180, - "size": 33950, - }, - "picomatch.js": { - "offset": 2758130, - "size": 9960, - }, - "scan.js": { - "offset": 2768080, - "size": 9190, - }, - "utils.js": { - "offset": 2777270, - "size": 1890, - }, - }, - }, - "package.json": { - "offset": 2779160, - "size": 1370, - }, - }, - }, - "qs": { - "files": { - ".gitmodules": { - "offset": 2780520, - "size": 210, - }, - "index.js": { - "offset": 2780730, - "size": 7370, - }, - "package.json": { - "offset": 2788090, - "size": 390, - }, - }, - }, - "range-parser": { - "files": { - "History.md": { - "offset": 2788470, - "size": 340, - }, - "Makefile": { - "offset": 2788800, - "size": 90, - }, - "index.js": { - "offset": 2788890, - "size": 920, - }, - "package.json": { - "offset": 2789810, - "size": 520, - }, - }, - }, - "rimraf": { - "files": { - "LICENSE": { - "offset": 2790330, - "size": 770, - }, - "bin.js": { - "executable": true, - "offset": 2791090, - "size": 1200, - }, - "package.json": { - "offset": 2792290, - "size": 500, - }, - "rimraf.js": { - "offset": 2792780, - "size": 9230, - }, - }, - }, - "sax": { - "files": { - "LICENSE.md": { - "offset": 2802010, - "size": 1560, - }, - "lib": { - "files": { - "sax.js": { - "offset": 2803560, - "size": 50150, - }, - }, - }, - "package.json": { - "offset": 2853710, - "size": 570, - }, - }, - }, - "semver": { - "files": { - "LICENSE": { - "offset": 2854270, - "size": 770, - }, - "bin": { - "files": { - "semver.js": { - "executable": true, - "offset": 2855040, - "size": 4750, - }, - }, - }, - "classes": { - "files": { - "comparator.js": { - "offset": 2859780, - "size": 3640, - }, - "index.js": { - "offset": 2863420, - "size": 150, - }, - "range.js": { - "offset": 2863560, - "size": 14980, - }, - "semver.js": { - "offset": 2878540, - "size": 9480, - }, - }, - }, - "functions": { - "files": { - "clean.js": { - "offset": 2888020, - "size": 210, - }, - "cmp.js": { - "offset": 2888220, - "size": 970, - }, - "coerce.js": { - "offset": 2889180, - "size": 2010, - }, - "compare-build.js": { - "offset": 2891190, - "size": 290, - }, - "compare-loose.js": { - "offset": 2891470, - "size": 140, - }, - "compare.js": { - "offset": 2891600, - "size": 170, - }, - "diff.js": { - "offset": 2891770, - "size": 1430, - }, - "eq.js": { - "offset": 2893190, - "size": 130, - }, - "gt.js": { - "offset": 2893320, - "size": 130, - }, - "gte.js": { - "offset": 2893440, - "size": 130, - }, - "inc.js": { - "offset": 2893570, - "size": 480, - }, - "lt.js": { - "offset": 2894050, - "size": 130, - }, - "lte.js": { - "offset": 2894170, - "size": 130, - }, - "major.js": { - "offset": 2894300, - "size": 140, - }, - "minor.js": { - "offset": 2894430, - "size": 140, - }, - "neq.js": { - "offset": 2894570, - "size": 130, - }, - "parse.js": { - "offset": 2894700, - "size": 340, - }, - "patch.js": { - "offset": 2895030, - "size": 140, - }, - "prerelease.js": { - "offset": 2895160, - "size": 240, - }, - "rcompare.js": { - "offset": 2895400, - "size": 140, - }, - "rsort.js": { - "offset": 2895530, - "size": 170, - }, - "satisfies.js": { - "offset": 2895690, - "size": 250, - }, - "sort.js": { - "offset": 2895940, - "size": 170, - }, - "valid.js": { - "offset": 2896100, - "size": 180, - }, - }, - }, - "index.js": { - "offset": 2896280, - "size": 2630, - }, - "internal": { - "files": { - "constants.js": { - "offset": 2898910, - "size": 880, - }, - "debug.js": { - "offset": 2899780, - "size": 240, - }, - "identifiers.js": { - "offset": 2900020, - "size": 530, - }, - "lrucache.js": { - "offset": 2900550, - "size": 810, - }, - "parse-options.js": { - "offset": 2901350, - "size": 340, - }, - "re.js": { - "offset": 2901690, - "size": 8140, - }, - }, - }, - "package.json": { - "offset": 2909820, - "size": 1350, - }, - "preload.js": { - "offset": 2911170, - "size": 90, - }, - "range.bnf": { - "offset": 2911260, - "size": 620, - }, - "ranges": { - "files": { - "gtr.js": { - "offset": 2911880, - "size": 240, - }, - "intersects.js": { - "offset": 2912110, - "size": 230, - }, - "ltr.js": { - "offset": 2912330, - "size": 230, - }, - "max-satisfying.js": { - "offset": 2912560, - "size": 600, - }, - "min-satisfying.js": { - "offset": 2913150, - "size": 600, - }, - "min-version.js": { - "offset": 2913740, - "size": 1520, - }, - "outside.js": { - "offset": 2915260, - "size": 2210, - }, - "simplify.js": { - "offset": 2917460, - "size": 1360, - }, - "subset.js": { - "offset": 2918810, - "size": 7530, - }, - "to-comparators.js": { - "offset": 2926340, - "size": 290, - }, - "valid.js": { - "offset": 2926620, - "size": 330, - }, - }, - }, - }, - }, - "send": { - "files": { - "History.md": { - "offset": 2926950, - "size": 710, - }, - "Makefile": { - "offset": 2927660, - "size": 100, - }, - "index.js": { - "offset": 2927760, - "size": 40, - }, - "lib": { - "files": { - "send.js": { - "offset": 2927800, - "size": 9740, - }, - "utils.js": { - "offset": 2937530, - "size": 800, - }, - }, - }, - "node_modules": { - "files": { - "fresh": { - "files": { - "HISTORY.md": { - "offset": 2938860, - "size": 390, - }, - "LICENSE": { - "offset": 2939250, - "size": 1100, - }, - "index.js": { - "offset": 2940340, - "size": 1230, - }, - "package.json": { - "offset": 2941570, - "size": 420, - }, - }, - }, - "range-parser": { - "files": { - "HISTORY.md": { - "offset": 2941990, - "size": 580, - }, - "LICENSE": { - "offset": 2942560, - "size": 1100, - }, - "index.js": { - "offset": 2943660, - "size": 1080, - }, - "package.json": { - "offset": 2944740, - "size": 430, - }, - }, - }, - }, - }, - "package.json": { - "offset": 2938330, - "size": 530, - }, - }, - }, - "serve-static": { - "files": { - "LICENSE": { - "offset": 2945160, - "size": 1190, - }, - "index.js": { - "offset": 2946340, - "size": 2990, - }, - "node_modules": { - "files": { - "fresh": { - "files": { - "History.md": { - "offset": 2949820, - "size": 80, - }, - "Makefile": { - "offset": 2949900, - "size": 90, - }, - "index.js": { - "offset": 2949990, - "size": 1230, - }, - "package.json": { - "offset": 2951210, - "size": 470, - }, - }, - }, - "range-parser": { - "files": { - "History.md": { - "offset": 2951680, - "size": 240, - }, - "Makefile": { - "offset": 2951920, - "size": 90, - }, - "index.js": { - "offset": 2952000, - "size": 920, - }, - "package.json": { - "offset": 2952920, - "size": 290, - }, - }, - }, - "send": { - "files": { - "History.md": { - "offset": 2953210, - "size": 640, - }, - "Makefile": { - "offset": 2953850, - "size": 100, - }, - "index.js": { - "offset": 2953950, - "size": 40, - }, - "lib": { - "files": { - "send.js": { - "offset": 2953990, - "size": 9740, - }, - "utils.js": { - "offset": 2963720, - "size": 800, - }, - }, - }, - "package.json": { - "offset": 2964520, - "size": 530, - }, - }, - }, - }, - }, - "package.json": { - "offset": 2949330, - "size": 500, - }, - }, - }, - "set-function-length": { - "files": { - ".nycrc": { - "offset": 2965050, - "size": 220, - }, - "LICENSE": { - "offset": 2965270, - "size": 1090, - }, - "env.js": { - "offset": 2966350, - "size": 870, - }, - "index.js": { - "offset": 2967220, - "size": 1280, - }, - "package.json": { - "offset": 2968490, - "size": 1960, - }, - "tsconfig.json": { - "offset": 2970440, - "size": 120, - }, - }, - }, - "shebang-command": { - "files": { - "index.js": { - "offset": 2970560, - "size": 390, - }, - "license": { - "offset": 2970950, - "size": 1120, - }, - "package.json": { - "offset": 2972060, - "size": 490, - }, - }, - }, - "shebang-regex": { - "files": { - "index.js": { - "offset": 2972550, - "size": 50, - }, - "license": { - "offset": 2972590, - "size": 1110, - }, - "package.json": { - "offset": 2973700, - "size": 480, - }, - }, - }, - "slash": { - "files": { - "index.js": { - "offset": 2974180, - "size": 300, - }, - "license": { - "offset": 2974470, - "size": 1110, - }, - "package.json": { - "offset": 2975580, - "size": 420, - }, - }, - }, - "supports-color": { - "files": { - "browser.js": { - "offset": 2975990, - "size": 70, - }, - "index.js": { - "offset": 2976060, - "size": 2750, - }, - "license": { - "offset": 2978810, - "size": 1110, - }, - "package.json": { - "offset": 2979920, - "size": 560, - }, - }, - }, - "tiny-typed-emitter": { - "files": { - "LICENSE": { - "offset": 2980470, - "size": 1110, - }, - "lib": { - "files": { - "index.js": { - "offset": 2981580, - "size": 140, - }, - }, - }, - "package.json": { - "offset": 2981710, - "size": 400, - }, - }, - }, - "tmp": { - "files": { - "LICENSE": { - "offset": 2982100, - "size": 1090, - }, - "lib": { - "files": { - "tmp.js": { - "offset": 2983190, - "size": 14900, - }, - }, - }, - "package.json": { - "offset": 2998080, - "size": 480, - }, - }, - }, - "to-regex-range": { - "files": { - "LICENSE": { - "offset": 2998550, - "size": 1100, - }, - "index.js": { - "offset": 2999640, - "size": 6490, - }, - "package.json": { - "offset": 3006120, - "size": 1150, - }, - }, - }, - "type-is": { - "files": { - "Makefile": { - "offset": 3007270, - "size": 110, - }, - "index.js": { - "offset": 3007370, - "size": 2300, - }, - "package.json": { - "offset": 3009670, - "size": 500, - }, - }, - }, - "universalify": { - "files": { - "LICENSE": { - "offset": 3010170, - "size": 1100, - }, - "index.js": { - "offset": 3011270, - "size": 710, - }, - "package.json": { - "offset": 3011970, - "size": 620, - }, - }, - }, - "utils-merge": { - "files": { - "LICENSE": { - "offset": 3012590, - "size": 1080, - }, - "index.js": { - "offset": 3013670, - "size": 390, - }, - "package.json": { - "offset": 3014050, - "size": 590, - }, - }, - }, - "which": { - "files": { - "LICENSE": { - "offset": 3014630, - "size": 770, - }, - "bin": { - "files": { - "node-which": { - "executable": true, - "offset": 3015400, - "size": 990, - }, - }, - }, - "package.json": { - "offset": 3016380, - "size": 690, - }, - "which.js": { - "offset": 3017060, - "size": 3170, - }, - }, - }, - "wrappy": { - "files": { - "LICENSE": { - "offset": 3020220, - "size": 770, - }, - "package.json": { - "offset": 3020990, - "size": 480, - }, - "wrappy.js": { - "offset": 3021470, - "size": 910, - }, - }, - }, - "yaml": { - "files": { - "LICENSE": { - "offset": 3022370, - "size": 740, - }, - "bin.mjs": { - "executable": true, - "offset": 3023110, - "size": 310, - }, - "browser": { - "files": { - "dist": { - "files": { - "compose": { - "files": { - "compose-collection.js": { - "offset": 3023420, - "size": 3500, - }, - "compose-doc.js": { - "offset": 3026920, - "size": 1560, - }, - "compose-node.js": { - "offset": 3028480, - "size": 4130, - }, - "compose-scalar.js": { - "offset": 3032600, - "size": 3320, - }, - "composer.js": { - "offset": 3035910, - "size": 8400, - }, - "resolve-block-map.js": { - "offset": 3044310, - "size": 4920, - }, - "resolve-block-scalar.js": { - "offset": 3049230, - "size": 7450, - }, - "resolve-block-seq.js": { - "offset": 3056680, - "size": 1740, - }, - "resolve-end.js": { - "offset": 3058420, - "size": 1240, - }, - "resolve-flow-collection.js": { - "offset": 3059660, - "size": 8780, - }, - "resolve-flow-scalar.js": { - "offset": 3068430, - "size": 7310, - }, - "resolve-props.js": { - "offset": 3075740, - "size": 5560, - }, - "util-contains-newline.js": { - "offset": 3081290, - "size": 1060, - }, - "util-empty-scalar-position.js": { - "offset": 3082340, - "size": 820, - }, - "util-flow-indent-check.js": { - "offset": 3083150, - "size": 500, - }, - "util-map-includes.js": { - "offset": 3083650, - "size": 430, - }, - }, - }, - "doc": { - "files": { - "Document.js": { - "offset": 3084080, - "size": 12910, - }, - "anchors.js": { - "offset": 3096980, - "size": 2280, - }, - "applyReviver.js": { - "offset": 3099260, - "size": 1930, - }, - "createNode.js": { - "offset": 3101180, - "size": 3070, - }, - "directives.js": { - "offset": 3104240, - "size": 6190, - }, - }, - }, - "errors.js": { - "offset": 3110430, - "size": 2030, - }, - "index.js": { - "offset": 3112450, - "size": 880, - }, - "log.js": { - "offset": 3113330, - "size": 260, - }, - "nodes": { - "files": { - "Alias.js": { - "offset": 3113590, - "size": 3750, - }, - "Collection.js": { - "offset": 3117340, - "size": 5080, - }, - "Node.js": { - "offset": 3122410, - "size": 1340, - }, - "Pair.js": { - "offset": 3123750, - "size": 1130, - }, - "Scalar.js": { - "offset": 3124880, - "size": 700, - }, - "YAMLMap.js": { - "offset": 3125580, - "size": 4960, - }, - "YAMLSeq.js": { - "offset": 3130530, - "size": 3580, - }, - "addPairToJSMap.js": { - "offset": 3134110, - "size": 2290, - }, - "identity.js": { - "offset": 3136400, - "size": 1520, - }, - "toJS.js": { - "offset": 3137910, - "size": 1270, - }, - }, - }, - "parse": { - "files": { - "cst-scalar.js": { - "offset": 3139180, - "size": 9240, - }, - "cst-stringify.js": { - "offset": 3148410, - "size": 1780, - }, - "cst-visit.js": { - "offset": 3150190, - "size": 3970, - }, - "cst.js": { - "offset": 3154150, - "size": 2890, - }, - "lexer.js": { - "offset": 3157040, - "size": 24070, - }, - "line-counter.js": { - "offset": 3181100, - "size": 1420, - }, - "parser.js": { - "offset": 3182520, - "size": 35170, - }, - }, - }, - "public-api.js": { - "offset": 3217690, - "size": 4000, - }, - "schema": { - "files": { - "Schema.js": { - "offset": 3221680, - "size": 1500, - }, - "common": { - "files": { - "map.js": { - "offset": 3223170, - "size": 440, - }, - "null.js": { - "offset": 3223610, - "size": 440, - }, - "seq.js": { - "offset": 3224050, - "size": 440, - }, - "string.js": { - "offset": 3224490, - "size": 430, - }, - }, - }, - "core": { - "files": { - "bool.js": { - "offset": 3224910, - "size": 610, - }, - "float.js": { - "offset": 3225510, - "size": 1400, - }, - "int.js": { - "offset": 3226910, - "size": 1330, - }, - "schema.js": { - "offset": 3228240, - "size": 480, - }, - }, - }, - "json": { - "files": { - "schema.js": { - "offset": 3228720, - "size": 1870, - }, - }, - }, - "tags.js": { - "offset": 3230580, - "size": 2970, - }, - "yaml-1.1": { - "files": { - "binary.js": { - "offset": 3233550, - "size": 2320, - }, - "bool.js": { - "offset": 3235860, - "size": 790, - }, - "float.js": { - "offset": 3236650, - "size": 1520, - }, - "int.js": { - "offset": 3238160, - "size": 2140, - }, - "merge.js": { - "offset": 3240290, - "size": 2450, - }, - "omap.js": { - "offset": 3242740, - "size": 2480, - }, - "pairs.js": { - "offset": 3245210, - "size": 2760, - }, - "schema.js": { - "offset": 3247970, - "size": 860, - }, - "set.js": { - "offset": 3248830, - "size": 3030, - }, - "timestamp.js": { - "offset": 3251860, - "size": 3700, - }, - }, - }, - }, - }, - "stringify": { - "files": { - "foldFlowLines.js": { - "offset": 3255550, - "size": 4800, - }, - "stringify.js": { - "offset": 3260350, - "size": 4400, - }, - "stringifyCollection.js": { - "offset": 3264750, - "size": 5560, - }, - "stringifyComment.js": { - "offset": 3270300, - "size": 730, - }, - "stringifyDocument.js": { - "offset": 3271020, - "size": 2990, - }, - "stringifyNumber.js": { - "offset": 3274010, - "size": 750, - }, - "stringifyPair.js": { - "offset": 3274750, - "size": 5290, - }, - "stringifyString.js": { - "offset": 3280040, - "size": 13170, - }, - }, - }, - "util.js": { - "offset": 3293200, - "size": 600, - }, - "visit.js": { - "offset": 3293800, - "size": 9110, - }, - }, - }, - "index.js": { - "offset": 3302900, - "size": 200, - }, - "package.json": { - "offset": 3303100, - "size": 30, - }, - }, - }, - "dist": { - "files": { - "cli.mjs": { - "offset": 3303120, - "size": 7470, - }, - "compose": { - "files": { - "compose-collection.js": { - "offset": 3310580, - "size": 3620, - }, - "compose-doc.js": { - "offset": 3314190, - "size": 1620, - }, - "compose-node.js": { - "offset": 3315810, - "size": 4270, - }, - "compose-scalar.js": { - "offset": 3320080, - "size": 3450, - }, - "composer.js": { - "offset": 3323520, - "size": 8610, - }, - "resolve-block-map.js": { - "offset": 3332130, - "size": 5080, - }, - "resolve-block-scalar.js": { - "offset": 3337200, - "size": 7500, - }, - "resolve-block-seq.js": { - "offset": 3344700, - "size": 1820, - }, - "resolve-end.js": { - "offset": 3346510, - "size": 1270, - }, - "resolve-flow-collection.js": { - "offset": 3347780, - "size": 8930, - }, - "resolve-flow-scalar.js": { - "offset": 3356710, - "size": 7370, - }, - "resolve-props.js": { - "offset": 3364070, - "size": 5580, - }, - "util-contains-newline.js": { - "offset": 3369650, - "size": 1090, - }, - "util-empty-scalar-position.js": { - "offset": 3370730, - "size": 850, - }, - "util-flow-indent-check.js": { - "offset": 3371580, - "size": 550, - }, - "util-map-includes.js": { - "offset": 3372130, - "size": 480, - }, - }, - }, - "doc": { - "files": { - "Document.js": { - "offset": 3372600, - "size": 13120, - }, - "anchors.js": { - "offset": 3385710, - "size": 2390, - }, - "applyReviver.js": { - "offset": 3388100, - "size": 1950, - }, - "createNode.js": { - "offset": 3390050, - "size": 3140, - }, - "directives.js": { - "offset": 3393190, - "size": 6240, - }, - }, - }, - "errors.js": { - "offset": 3399420, - "size": 2120, - }, - "index.js": { - "offset": 3401540, - "size": 1770, - }, - "log.js": { - "offset": 3403310, - "size": 460, - }, - "nodes": { - "files": { - "Alias.js": { - "offset": 3403770, - "size": 3800, - }, - "Collection.js": { - "offset": 3407560, - "size": 5230, - }, - "Node.js": { - "offset": 3412780, - "size": 1390, - }, - "Pair.js": { - "offset": 3414160, - "size": 1240, - }, - "Scalar.js": { - "offset": 3415400, - "size": 760, - }, - "YAMLMap.js": { - "offset": 3416160, - "size": 5110, - }, - "YAMLSeq.js": { - "offset": 3421260, - "size": 3670, - }, - "addPairToJSMap.js": { - "offset": 3424930, - "size": 2340, - }, - "identity.js": { - "offset": 3427270, - "size": 1800, - }, - "toJS.js": { - "offset": 3429060, - "size": 1300, - }, - }, - }, - "parse": { - "files": { - "cst-scalar.js": { - "offset": 3430350, - "size": 9390, - }, - "cst-stringify.js": { - "offset": 3439730, - "size": 1800, - }, - "cst-visit.js": { - "offset": 3441530, - "size": 3990, - }, - "cst.js": { - "offset": 3445520, - "size": 3250, - }, - "lexer.js": { - "offset": 3448760, - "size": 24080, - }, - "line-counter.js": { - "offset": 3472830, - "size": 1450, - }, - "parser.js": { - "offset": 3474280, - "size": 35330, - }, - }, - }, - "public-api.js": { - "offset": 3509600, - "size": 4190, - }, - "schema": { - "files": { - "Schema.js": { - "offset": 3513790, - "size": 1550, - }, - "common": { - "files": { - "map.js": { - "offset": 3515340, - "size": 490, - }, - "null.js": { - "offset": 3515820, - "size": 470, - }, - "seq.js": { - "offset": 3516290, - "size": 490, - }, - "string.js": { - "offset": 3516770, - "size": 460, - }, - }, - }, - "core": { - "files": { - "bool.js": { - "offset": 3517230, - "size": 640, - }, - "float.js": { - "offset": 3517870, - "size": 1510, - }, - "int.js": { - "offset": 3519380, - "size": 1410, - }, - "schema.js": { - "offset": 3520780, - "size": 510, - }, - }, - }, - "json": { - "files": { - "schema.js": { - "offset": 3521290, - "size": 1900, - }, - }, - }, - "tags.js": { - "offset": 3523190, - "size": 3240, - }, - "yaml-1.1": { - "files": { - "binary.js": { - "offset": 3526430, - "size": 2800, - }, - "bool.js": { - "offset": 3529230, - "size": 850, - }, - "float.js": { - "offset": 3530070, - "size": 1630, - }, - "int.js": { - "offset": 3531700, - "size": 2240, - }, - "merge.js": { - "offset": 3533930, - "size": 2550, - }, - "omap.js": { - "offset": 3536480, - "size": 2590, - }, - "pairs.js": { - "offset": 3539060, - "size": 2860, - }, - "schema.js": { - "offset": 3541910, - "size": 920, - }, - "set.js": { - "offset": 3542820, - "size": 3120, - }, - "timestamp.js": { - "offset": 3545940, - "size": 3780, - }, - }, - }, - }, - }, - "stringify": { - "files": { - "foldFlowLines.js": { - "offset": 3549710, - "size": 4890, - }, - "stringify.js": { - "offset": 3554600, - "size": 4540, - }, - "stringifyCollection.js": { - "offset": 3559130, - "size": 5720, - }, - "stringifyComment.js": { - "offset": 3564850, - "size": 810, - }, - "stringifyDocument.js": { - "offset": 3565650, - "size": 3110, - }, - "stringifyNumber.js": { - "offset": 3568760, - "size": 780, - }, - "stringifyPair.js": { - "offset": 3569530, - "size": 5470, - }, - "stringifyString.js": { - "offset": 3575000, - "size": 13350, - }, - }, - }, - "test-events.js": { - "offset": 3588350, - "size": 4280, - }, - "util.js": { - "offset": 3592620, - "size": 1010, - }, - "visit.js": { - "offset": 3593630, - "size": 9260, - }, - }, - }, - "package.json": { - "offset": 3602880, - "size": 1830, - }, - "util.js": { - "offset": 3604710, - "size": 80, + "offset": 1498070, + "size": 620, }, }, }, }, }, "package.json": { - "offset": 3605790, - "size": 360, + "offset": 1499690, + "size": 320, }, }, } diff --git a/test/src/HoistedNodeModuleTest.ts b/test/src/HoistedNodeModuleTest.ts index dd1f9c81de2..0ecd1b708df 100644 --- a/test/src/HoistedNodeModuleTest.ts +++ b/test/src/HoistedNodeModuleTest.ts @@ -102,8 +102,7 @@ describe.ifNotWindows("node_module collectors", () => { express: "4.0.0", } data.devDependencies = { - electron: "23.2.0", - "electron-builder": "26.8.1", + electron: ELECTRON_VERSION, "fs-extra": "11.0.0", "patch-package": "8.0.0", } @@ -152,12 +151,9 @@ describe.ifNotWindows("node_module collectors", () => { await modifyPackageJson(projectDir, data => { data.dependencies = { "electron-updater": "6.8.3", - express: "4.0.0", - "patch-package": "8.0.0", } data.devDependencies = { - electron: "23.2.0", - "electron-builder": "26.8.1", + electron: ELECTRON_VERSION, "fs-extra": "11.0.0", } data.build.directories = { From 3958d8b6cb7b74458ea541738af6ac753d2cf83a Mon Sep 17 00:00:00 2001 From: Mike Maietta Date: Sun, 12 Apr 2026 15:22:50 -0700 Subject: [PATCH 55/61] fix(appimage): add entry for patched appimage toolset bundle to resolve issues on Ubuntu 25.1.0 (#9673) --- .changeset/great-crews-watch.md | 5 + packages/app-builder-lib/scheme.json | 5 +- packages/app-builder-lib/src/configuration.ts | 5 +- .../src/targets/appimage/AppImageTarget.ts | 2 +- .../src/targets/appimage/appImageUtil.ts | 5 +- .../app-builder-lib/src/toolsets/linux.ts | 29 ++- .../electron-publish/src/gitlabPublisher.ts | 4 +- packages/electron-publish/src/util.ts | 2 +- .../snapshots/linux/linuxPackagerTest.js.snap | 240 ++++++++++++++++++ test/src/linux/linuxPackagerTest.ts | 2 +- test/src/updater/blackboxUpdateTest.ts | 2 +- test/src/updater/differentialUpdateTest.ts | 2 +- 12 files changed, 285 insertions(+), 18 deletions(-) create mode 100644 .changeset/great-crews-watch.md diff --git a/.changeset/great-crews-watch.md b/.changeset/great-crews-watch.md new file mode 100644 index 00000000000..b7ae0b79512 --- /dev/null +++ b/.changeset/great-crews-watch.md @@ -0,0 +1,5 @@ +--- +"app-builder-lib": patch +--- + +fix(appimage): add entry for patched appimage toolset bundle to resolve issues on Ubuntu 25.1.0 diff --git a/packages/app-builder-lib/scheme.json b/packages/app-builder-lib/scheme.json index 2eadec7b1cc..c4d8b06b413 100644 --- a/packages/app-builder-lib/scheme.json +++ b/packages/app-builder-lib/scheme.json @@ -6471,7 +6471,8 @@ { "enum": [ "0.0.0", - "1.0.2" + "1.0.2", + "1.0.3" ], "type": "string" }, @@ -6480,7 +6481,7 @@ } ], "default": "0.0.0", - "description": "`appimage` bundle version to use for Appimage packaging and runtime.\nLocated at https://github.com/electron-userland/electron-builder-binaries/releases?q=appimage&expanded=true\n0.0.0 - legacy toolset (appimage)\n\nBeta:\n1.0.2 - Runtime 20251108" + "description": "`appimage` bundle version to use for Appimage packaging and runtime.\nLocated at https://github.com/electron-userland/electron-builder-binaries/releases?q=appimage&expanded=true\n0.0.0 - legacy toolset (appimage)\n\nBetas:\n1.0.2 - Runtime 20251108\n1.0.3 - Runtime 20251108 (Resolves GH issue #9598)" }, "winCodeSign": { "anyOf": [ diff --git a/packages/app-builder-lib/src/configuration.ts b/packages/app-builder-lib/src/configuration.ts index a665200cf6d..1bb117408e6 100644 --- a/packages/app-builder-lib/src/configuration.ts +++ b/packages/app-builder-lib/src/configuration.ts @@ -290,12 +290,13 @@ export interface ToolsetConfig { * Located at https://github.com/electron-userland/electron-builder-binaries/releases?q=appimage&expanded=true * 0.0.0 - legacy toolset (appimage) * - * Beta: + * Betas: * 1.0.2 - Runtime 20251108 + * 1.0.3 - Runtime 20251108 (Resolves GH issue #9598) * * @default "0.0.0" */ - readonly appimage?: "0.0.0" | "1.0.2" | null + readonly appimage?: "0.0.0" | "1.0.2" | "1.0.3" | null } export interface Hooks { diff --git a/packages/app-builder-lib/src/targets/appimage/AppImageTarget.ts b/packages/app-builder-lib/src/targets/appimage/AppImageTarget.ts index fb7b08bdf74..d8840fd71a5 100644 --- a/packages/app-builder-lib/src/targets/appimage/AppImageTarget.ts +++ b/packages/app-builder-lib/src/targets/appimage/AppImageTarget.ts @@ -81,7 +81,7 @@ export default class AppImageTarget extends Target { if (appimageTool == null || appimageTool === "0.0.0") { updateInfo = await this.buildFuse2AppImage({ stageDir, arch, artifactPath, appOutDir, options, packager, desktopEntry, icons, license }) } else { - updateInfo = await buildAppImage({ + updateInfo = await buildAppImage(appimageTool, { appDir: appOutDir, stageDir: stageDir.dir, arch, diff --git a/packages/app-builder-lib/src/targets/appimage/appImageUtil.ts b/packages/app-builder-lib/src/targets/appimage/appImageUtil.ts index dfb1e2fe68b..b6433e98a9d 100644 --- a/packages/app-builder-lib/src/targets/appimage/appImageUtil.ts +++ b/packages/app-builder-lib/src/targets/appimage/appImageUtil.ts @@ -8,6 +8,7 @@ import { copyIcons, copyMimeTypes } from "./appLauncher" import { appendBlockmap } from "../differentialUpdateInfoBuilder" import { BlockMapDataHolder } from "builder-util-runtime" import { APP_RUN_ENTRYPOINT } from "./AppImageTarget" +import { ToolsetConfig } from "app-builder-lib/src/configuration" interface Options { productName: string @@ -28,7 +29,7 @@ export interface AppImageBuilderOptions { options: Options } -export async function buildAppImage(opts: AppImageBuilderOptions): Promise { +export async function buildAppImage(appimageToolVersion: ToolsetConfig["appimage"], opts: AppImageBuilderOptions): Promise { const { stageDir, output, appDir, options, arch } = opts try { @@ -37,7 +38,7 @@ export async function buildAppImage(opts: AppImageBuilderOptions): Promise AppImage toolset 1.0.2 > text license and file associat ], } `; + +exports[`LinuxPackager > AppImage toolset 1.0.3 > AppImage - default icon, custom executable and custom desktop 1`] = ` +"[Desktop Entry] +Name=Test App ßW +Exec=AppRun %U +Terminal=true +Type=Application +Icon=Foo +StartupWMClass=Test App ßW +X-Foo=bar +Comment=Test Application (test quite “ #378) +Categories=Development; + +[Desktop Action Gallery] +Exec=fooview --gallery +Name=Browse Gallery + +[Desktop Action Create] +Exec=fooview --create-new +Name=Create a new Foo! +Icon=fooview-new +" +`; + +exports[`LinuxPackager > AppImage toolset 1.0.3 > AppImage - default icon, custom executable and custom desktop 2`] = ` +{ + "linux": [ + { + "arch": "x64", + "file": "boo-Test App ßW", + "safeArtifactName": "TestApp-1.1.0-x86_64.AppImage", + "updateInfo": { + "blockMapSize": "@blockMapSize", + "sha512": "@sha512", + "size": "@size", + }, + }, + ], +} +`; + +exports[`LinuxPackager > AppImage toolset 1.0.3 > AppImage - deprecated systemIntegration 1`] = `"ERR_ELECTRON_BUILDER_INVALID_CONFIGURATION"`; + +exports[`LinuxPackager > AppImage toolset 1.0.3 > AppImage 1`] = ` +{ + "linux": [ + { + "arch": "x64", + "file": "Test App ßW-1.1.0.AppImage", + "safeArtifactName": "TestApp-1.1.0-x86_64.AppImage", + "updateInfo": { + "blockMapSize": "@blockMapSize", + "sha512": "@sha512", + "size": "@size", + }, + }, + { + "file": "latest-linux.yml", + "fileContent": { + "files": [ + { + "blockMapSize": "@blockMapSize", + "sha512": "@sha512", + "size": "@size", + "url": "Test App ßW-1.1.0.AppImage", + }, + ], + "path": "Test App ßW-1.1.0.AppImage", + "releaseDate": "@releaseDate", + "sha512": "@sha512", + "version": "1.1.0", + }, + }, + ], +} +`; + +exports[`LinuxPackager > AppImage toolset 1.0.3 > AppImage arm, max compression 1`] = ` +{ + "linux": [ + { + "arch": "armv7l", + "file": "Test App ßW-1.1.0-armv7l.AppImage", + "safeArtifactName": "TestApp-1.1.0-armv7l.AppImage", + "updateInfo": { + "blockMapSize": "@blockMapSize", + "sha512": "@sha512", + "size": "@size", + }, + }, + { + "file": "latest-linux-arm.yml", + "fileContent": { + "files": [ + { + "blockMapSize": "@blockMapSize", + "sha512": "@sha512", + "size": "@size", + "url": "Test App ßW-1.1.0-armv7l.AppImage", + }, + ], + "path": "Test App ßW-1.1.0-armv7l.AppImage", + "releaseDate": "@releaseDate", + "sha512": "@sha512", + "version": "1.1.0", + }, + }, + ], +} +`; + +exports[`LinuxPackager > AppImage toolset 1.0.3 > forbid desktop.Exec 1`] = `"Please specify executable name as linux.executableName instead of linux.desktop.Exec"`; + +exports[`LinuxPackager > AppImage toolset 1.0.3 > html license 1`] = ` +{ + "linux": [ + { + "arch": "x64", + "file": "Test App ßW-1.1.0.AppImage", + "safeArtifactName": "TestApp-1.1.0-x86_64.AppImage", + "updateInfo": { + "blockMapSize": "@blockMapSize", + "sha512": "@sha512", + "size": "@size", + }, + }, + ], +} +`; + +exports[`LinuxPackager > AppImage toolset 1.0.3 > icons dir with images without size in the filename 1`] = ` +{ + "linux": [ + { + "arch": "x64", + "file": "Test App ßW-1.1.0.AppImage", + "safeArtifactName": "TestApp-1.1.0-x86_64.AppImage", + "updateInfo": { + "blockMapSize": "@blockMapSize", + "sha512": "@sha512", + "size": "@size", + }, + }, + ], +} +`; + +exports[`LinuxPackager > AppImage toolset 1.0.3 > icons from ICNS (mac) 1`] = ` +{ + "linux": [ + { + "arch": "x64", + "file": "app-1.1.0-x86_64.AppImage", + "updateInfo": { + "blockMapSize": "@blockMapSize", + "sha512": "@sha512", + "size": "@size", + }, + }, + ], +} +`; + +exports[`LinuxPackager > AppImage toolset 1.0.3 > icons from ICNS 1`] = ` +{ + "linux": [ + { + "arch": "x64", + "file": "Test App ßW-1.1.0.AppImage", + "safeArtifactName": "TestApp-1.1.0-x86_64.AppImage", + "updateInfo": { + "blockMapSize": "@blockMapSize", + "sha512": "@sha512", + "size": "@size", + }, + }, + ], +} +`; + +exports[`LinuxPackager > AppImage toolset 1.0.3 > icons from ICNS if nothing specified 1`] = ` +{ + "linux": [ + { + "arch": "x64", + "file": "Test App ßW-1.1.0.AppImage", + "safeArtifactName": "TestApp-1.1.0-x86_64.AppImage", + "updateInfo": { + "blockMapSize": "@blockMapSize", + "sha512": "@sha512", + "size": "@size", + }, + }, + ], +} +`; + +exports[`LinuxPackager > AppImage toolset 1.0.3 > icons from dir and one icon with suffix 1`] = ` +{ + "linux": [ + { + "arch": "x64", + "file": "Test App ßW-1.1.0.AppImage", + "safeArtifactName": "TestApp-1.1.0-x86_64.AppImage", + "updateInfo": { + "blockMapSize": "@blockMapSize", + "sha512": "@sha512", + "size": "@size", + }, + }, + ], +} +`; + +exports[`LinuxPackager > AppImage toolset 1.0.3 > no-author-email 1`] = ` +"Please specify author 'email' in the application package.json + +See https://docs.npmjs.com/files/package.json#people-fields-author-contributors + +It is required to set Linux .deb package maintainer. Or you can set maintainer in the custom linux options. +(see https://www.electron.build/linux). +" +`; + +exports[`LinuxPackager > AppImage toolset 1.0.3 > text license and file associations 1`] = ` +{ + "linux": [ + { + "arch": "x64", + "file": "Test App ßW-1.1.0.AppImage", + "safeArtifactName": "TestApp-1.1.0-x86_64.AppImage", + "updateInfo": { + "blockMapSize": "@blockMapSize", + "sha512": "@sha512", + "size": "@size", + }, + }, + ], +} +`; diff --git a/test/src/linux/linuxPackagerTest.ts b/test/src/linux/linuxPackagerTest.ts index bac5db1a749..0c3b29219d5 100644 --- a/test/src/linux/linuxPackagerTest.ts +++ b/test/src/linux/linuxPackagerTest.ts @@ -16,7 +16,7 @@ const testPublishConfig: GenericServerOptions = { url: "https://example.com/download", } -const appImageToolset: ToolsetConfig["appimage"][] = ["0.0.0", "1.0.2"] +const appImageToolset: ToolsetConfig["appimage"][] = ["0.0.0", "1.0.2", "1.0.3"] describe.ifNotWindows("LinuxPackager", () => { for (const appimage of appImageToolset) { const toolsets: ToolsetConfig = { diff --git a/test/src/updater/blackboxUpdateTest.ts b/test/src/updater/blackboxUpdateTest.ts index b26882603a8..0f6b499d82f 100644 --- a/test/src/updater/blackboxUpdateTest.ts +++ b/test/src/updater/blackboxUpdateTest.ts @@ -42,7 +42,7 @@ for (const winCodeSign of winCodeSignVersions) { }) } -const appImageToolVersions: ToolsetConfig["appimage"][] = ["0.0.0", "1.0.2"] +const appImageToolVersions: ToolsetConfig["appimage"][] = ["0.0.0", "1.0.2", "1.0.3"] // must be sequential in order for process.env.ELECTRON_BUILDER_LINUX_PACKAGE_MANAGER to be respected per-test describe.heavy.ifLinux("linux", { sequential: true }, () => { for (const appimage of appImageToolVersions) { diff --git a/test/src/updater/differentialUpdateTest.ts b/test/src/updater/differentialUpdateTest.ts index 8ce968d852b..cb0f90ca5f9 100644 --- a/test/src/updater/differentialUpdateTest.ts +++ b/test/src/updater/differentialUpdateTest.ts @@ -119,7 +119,7 @@ async function testLinux(expect: ExpectStatic, arch: Arch, toolset: ToolsetConfi } } -const appimageToolsetVersions: ToolsetConfig["appimage"][] = ["0.0.0", "1.0.2"] +const appimageToolsetVersions: ToolsetConfig["appimage"][] = ["0.0.0", "1.0.2", "1.0.3"] const supportedArchs = [ Arch.x64, Arch.arm64, From 96d782af6172a3be519785251e3c13e1873e4fee Mon Sep 17 00:00:00 2001 From: "electron-builder-release-bot[bot]" <236325277+electron-builder-release-bot[bot]@users.noreply.github.com> Date: Mon, 13 Apr 2026 18:10:55 -0700 Subject: [PATCH 56/61] chore(deploy): Release v26.9.0 (electron-updater@6.8.4) (#9633) --- .changeset/chatty-buckets-float.md | 5 - .changeset/cyan-beans-press.md | 5 - .changeset/dull-carpets-stick.md | 5 - .changeset/four-birds-tan.md | 5 - .changeset/great-crews-watch.md | 5 - .changeset/many-badgers-happen.md | 5 - .changeset/new-seas-attend.md | 5 - .changeset/real-turkeys-sin.md | 5 - .changeset/release-notes-to-github-gitlab.md | 7 -- .changeset/respect-binaries-mirror.md | 13 --- CHANGELOG.md | 94 +++++++++++++++++++ packages/app-builder-lib/CHANGELOG.md | 39 ++++++++ packages/app-builder-lib/package.json | 2 +- packages/app-builder-lib/src/version.ts | 2 +- packages/builder-util-runtime/CHANGELOG.md | 7 +- packages/builder-util-runtime/package.json | 2 +- packages/builder-util/CHANGELOG.md | 16 ++++ packages/builder-util/package.json | 2 +- packages/dmg-builder/CHANGELOG.md | 17 ++++ packages/dmg-builder/package.json | 2 +- .../CHANGELOG.md | 17 ++++ .../package.json | 2 +- packages/electron-builder/CHANGELOG.md | 19 ++++ packages/electron-builder/package.json | 2 +- .../CHANGELOG.md | 16 ++++ .../package.json | 2 +- .../CHANGELOG.md | 16 ++++ .../package.json | 2 +- .../electron-forge-maker-nsis/CHANGELOG.md | 16 ++++ .../electron-forge-maker-nsis/package.json | 2 +- .../electron-forge-maker-snap/CHANGELOG.md | 16 ++++ .../electron-forge-maker-snap/package.json | 2 +- packages/electron-publish/CHANGELOG.md | 21 +++++ packages/electron-publish/package.json | 2 +- packages/electron-updater/CHANGELOG.md | 16 ++++ packages/electron-updater/package.json | 2 +- 36 files changed, 322 insertions(+), 74 deletions(-) delete mode 100644 .changeset/chatty-buckets-float.md delete mode 100644 .changeset/cyan-beans-press.md delete mode 100644 .changeset/dull-carpets-stick.md delete mode 100644 .changeset/four-birds-tan.md delete mode 100644 .changeset/great-crews-watch.md delete mode 100644 .changeset/many-badgers-happen.md delete mode 100644 .changeset/new-seas-attend.md delete mode 100644 .changeset/real-turkeys-sin.md delete mode 100644 .changeset/release-notes-to-github-gitlab.md delete mode 100644 .changeset/respect-binaries-mirror.md diff --git a/.changeset/chatty-buckets-float.md b/.changeset/chatty-buckets-float.md deleted file mode 100644 index 36646e1a88b..00000000000 --- a/.changeset/chatty-buckets-float.md +++ /dev/null @@ -1,5 +0,0 @@ ---- - ---- - -chore(deps): update dependency tar to v7.5.8 [security] diff --git a/.changeset/cyan-beans-press.md b/.changeset/cyan-beans-press.md deleted file mode 100644 index 1af90280bb4..00000000000 --- a/.changeset/cyan-beans-press.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"app-builder-lib": patch ---- - -fix: parseNameVersion correctly splits scoped packages with link: paths diff --git a/.changeset/dull-carpets-stick.md b/.changeset/dull-carpets-stick.md deleted file mode 100644 index ea337567547..00000000000 --- a/.changeset/dull-carpets-stick.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"app-builder-lib": minor ---- - -feat: If necessary, start with --no-sandbox diff --git a/.changeset/four-birds-tan.md b/.changeset/four-birds-tan.md deleted file mode 100644 index b5e76cfc194..00000000000 --- a/.changeset/four-birds-tan.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"app-builder-lib": patch ---- - -fix(normalizePackageData): check bd variable instead of string "bd" diff --git a/.changeset/great-crews-watch.md b/.changeset/great-crews-watch.md deleted file mode 100644 index b7ae0b79512..00000000000 --- a/.changeset/great-crews-watch.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"app-builder-lib": patch ---- - -fix(appimage): add entry for patched appimage toolset bundle to resolve issues on Ubuntu 25.1.0 diff --git a/.changeset/many-badgers-happen.md b/.changeset/many-badgers-happen.md deleted file mode 100644 index 0e3fe4ecda5..00000000000 --- a/.changeset/many-badgers-happen.md +++ /dev/null @@ -1,5 +0,0 @@ ---- - ---- - -chore(deps): update dependency tar to v7.5.10 [security] diff --git a/.changeset/new-seas-attend.md b/.changeset/new-seas-attend.md deleted file mode 100644 index 65c4b19f5e3..00000000000 --- a/.changeset/new-seas-attend.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"app-builder-lib": minor ---- - -feat(nsis): detect windows version and exclude win 7 compatibility logic when not needed diff --git a/.changeset/real-turkeys-sin.md b/.changeset/real-turkeys-sin.md deleted file mode 100644 index 50ebf0f95c3..00000000000 --- a/.changeset/real-turkeys-sin.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"app-builder-lib": patch ---- - -fix(appimage): use /usr/bin/env in hashbang so it works in non FHS distros diff --git a/.changeset/release-notes-to-github-gitlab.md b/.changeset/release-notes-to-github-gitlab.md deleted file mode 100644 index 56272ee8f4b..00000000000 --- a/.changeset/release-notes-to-github-gitlab.md +++ /dev/null @@ -1,7 +0,0 @@ ---- -"app-builder-lib": minor -"electron-publish": minor -"builder-util-runtime": minor ---- - -feat: pass release notes to GitHub/GitLab release body via `releaseBody` and `releaseName` options \ No newline at end of file diff --git a/.changeset/respect-binaries-mirror.md b/.changeset/respect-binaries-mirror.md deleted file mode 100644 index 86775ed3758..00000000000 --- a/.changeset/respect-binaries-mirror.md +++ /dev/null @@ -1,13 +0,0 @@ ---- -"app-builder-lib": patch ---- - -fix: respect electron_builder_binaries_mirror in downloadArtifact - -downloadArtifact() was ignoring electron_builder_binaries_mirror and falling back -to electron_mirror due to @electron/get behavior. This affected dmg-builder -(macOS) and appimage-tools (Linux) downloads. - -- Extract getBinariesMirrorUrl() to share mirror URL resolution -- Use the helper in both downloadArtifact() and getBinFromUrl() -- Ensure custom mirrors are respected for all binary downloads diff --git a/CHANGELOG.md b/CHANGELOG.md index 1db4c84fbf3..0d778d6ebd1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,97 @@ +# [](https://github.com/electron-userland/electron-builder/compare/v26.0.20...v) (2026-04-12) + + +### Bug Fixes + +* incorrect cache name set when `ELECTRON_BUILDER_CACHE` env var is present ([#9293](https://github.com/electron-userland/electron-builder/issues/9293)) ([e5f5799](https://github.com/electron-userland/electron-builder/commit/e5f5799fbb193a7a8700fcaaf1ab9e79c9c694ce)) +* `parseNameVersion` correctly splits scoped packages with `link:` paths ([#9653](https://github.com/electron-userland/electron-builder/issues/9653)) ([a69928f](https://github.com/electron-userland/electron-builder/commit/a69928f28cd33a487a3158bd5c3ad040906d3c30)) +* add corepack to e2e docker images for running e2e updater tests ([#9331](https://github.com/electron-userland/electron-builder/issues/9331)) ([8805806](https://github.com/electron-userland/electron-builder/commit/8805806cd249fc7674a5b84b2efd68e6fc0c0df3)) +* add signing queue for Windows packager to avoid concurrent signing issues with AzureTrustedSigning ([#9454](https://github.com/electron-userland/electron-builder/issues/9454)) ([b66832d](https://github.com/electron-userland/electron-builder/commit/b66832d6fc633b4b12ccdffc0501c6d31b48a85e)) +* after-install.tpl: Fix stdio redirects in update-alternative invocation ([#9536](https://github.com/electron-userland/electron-builder/issues/9536)) ([ec9e2db](https://github.com/electron-userland/electron-builder/commit/ec9e2dbbd864f0858cf0d3b719ad75a84c59f29c)) +* aliased packages not packaged with the correct name ([#9492](https://github.com/electron-userland/electron-builder/issues/9492)) ([25b5dd2](https://github.com/electron-userland/electron-builder/commit/25b5dd2b4a87554640c99ffef376af8703f69a3d)) +* allow `npm list` to work on yarn berry and bun project setups ([#9443](https://github.com/electron-userland/electron-builder/issues/9443)) ([e70da99](https://github.com/electron-userland/electron-builder/commit/e70da99e34c1cc913b237c5a58456bf752a378bc)) +* allow home dir when it's symlinked from `/var/home` ([#9389](https://github.com/electron-userland/electron-builder/issues/9389)) ([0cd0831](https://github.com/electron-userland/electron-builder/commit/0cd0831ec1c23b4fb4d701c10d586cb83d4ed2ed)) +* always use package key-value refs when reading from dependency list instead of required package `name` ([#9583](https://github.com/electron-userland/electron-builder/issues/9583)) ([dde4309](https://github.com/electron-userland/electron-builder/commit/dde4309b9114e06d0826e8badc2cb968ceb75642)) +* **appimage:** add entry for patched appimage toolset bundle to resolve issues on Ubuntu 25.1.0 ([#9673](https://github.com/electron-userland/electron-builder/issues/9673)) ([3958d8b](https://github.com/electron-userland/electron-builder/commit/3958d8b6cb7b74458ea541738af6ac753d2cf83a)) +* **appimage:** fix mime type directory in AppDir ([#9589](https://github.com/electron-userland/electron-builder/issues/9589)) ([8940ec6](https://github.com/electron-userland/electron-builder/commit/8940ec63bac6450ed9b7c5e761954f08e6fa4242)) +* **appimage:** resolve toolset with relative directory path ([#9610](https://github.com/electron-userland/electron-builder/issues/9610)) ([52dc667](https://github.com/electron-userland/electron-builder/commit/52dc6676f8fb8157e60a55df8021988bf6c48286)) +* **appimage:** use /usr/bin/env in hashbang so it works in non FHS distros ([#9664](https://github.com/electron-userland/electron-builder/issues/9664)) ([f71b101](https://github.com/electron-userland/electron-builder/commit/f71b101be964bdcc2b84fcf281441372105def00)) +* **build:** Revert "remove ci-info" commit ([#9398](https://github.com/electron-userland/electron-builder/issues/9398)) ([f8580dc](https://github.com/electron-userland/electron-builder/commit/f8580dcadc4fc1383b8d9661dc4c5bebec67cb9f)) +* change default value of disable_wayland depending on electron version (in order to support `electron` >38) ([#9337](https://github.com/electron-userland/electron-builder/issues/9337)) ([f4d7924](https://github.com/electron-userland/electron-builder/commit/f4d7924a082fbb9113d52782430f82b1f0ffcb52)) +* change root path for `electron/rebuild` ([#9376](https://github.com/electron-userland/electron-builder/issues/9376)) ([45a1683](https://github.com/electron-userland/electron-builder/commit/45a1683400b6525998256d83059ce7b562098eb1)) +* check if custom nsis and/or nsis resources paths is not purely an whitespace string ([#9420](https://github.com/electron-userland/electron-builder/issues/9420)) ([05e0bc7](https://github.com/electron-userland/electron-builder/commit/05e0bc7becf4057e7f7794597a57f33d23894f4b)) +* cleanup `actool` output file handle after `spawn` ([#9373](https://github.com/electron-userland/electron-builder/issues/9373)) ([1607820](https://github.com/electron-userland/electron-builder/commit/160782067f904b61d53eb28368aea58022fe1717)) +* converting all node collector logic to *not* use `Promise.All`. Migrate to for-loop ([#9414](https://github.com/electron-userland/electron-builder/issues/9414)) ([e34be3b](https://github.com/electron-userland/electron-builder/commit/e34be3b3e8486c20cac316b4ae978ce275ea9cf7)) +* deleting default macOS appPlist keys using extendInfo ([#9481](https://github.com/electron-userland/electron-builder/issues/9481)) ([cb5b9c6](https://github.com/electron-userland/electron-builder/commit/cb5b9c6e47686b0329dbf808b36587a82db03d3b)) +* **dmg:** migrate python path search from `which` => `command -v` ([#9377](https://github.com/electron-userland/electron-builder/issues/9377)) ([82c07af](https://github.com/electron-userland/electron-builder/commit/82c07af19f7f3447f3a693a641bad7261e6b924f)) +* double check "hoisted" mode for each node module, verify through filesystem check instead of `require`/`import-meta-resolve` methods ([#9401](https://github.com/electron-userland/electron-builder/issues/9401)) ([241c53a](https://github.com/electron-userland/electron-builder/commit/241c53a598d9eb566de06059b4aa2f2d97d8712c)) +* ensure correct dependency graph extraction order and yarn berry _dependencies support ([#9439](https://github.com/electron-userland/electron-builder/issues/9439)) ([bdfc76b](https://github.com/electron-userland/electron-builder/commit/bdfc76bf18cb02a38aa7b3624c9fb865c910c393)) +* handle pnpm deduped dependencies correctly in node module collector ([#9618](https://github.com/electron-userland/electron-builder/issues/9618)) ([b348df0](https://github.com/electron-userland/electron-builder/commit/b348df0ba409fee488288ead097ac900141a6dad)) +* leverage app name instead of product name for linux executable name ([#9346](https://github.com/electron-userland/electron-builder/issues/9346)) ([d193871](https://github.com/electron-userland/electron-builder/commit/d19387174365c85968034149be43d80a39e7335f)) +* lint to unblock CI and move linter to enabled runner ([#9608](https://github.com/electron-userland/electron-builder/issues/9608)) ([4e83aeb](https://github.com/electron-userland/electron-builder/commit/4e83aeb610aad811413bfd626656dabc081957a3)) +* **mac:** handle `process.env.CSC_KEY_PASSWORD = undefined` cert password to parse as empty string fallback ([#9359](https://github.com/electron-userland/electron-builder/issues/9359)) ([d8ad468](https://github.com/electron-userland/electron-builder/commit/d8ad468cbf13ffb46889bbe0ba9f8c6d8ec1ac8f)) +* node 14 vs 15+ `promisify` warning on `child_process.exec` ([#9374](https://github.com/electron-userland/electron-builder/issues/9374)) ([ef364d3](https://github.com/electron-userland/electron-builder/commit/ef364d32c4fa78200249916af934b5235e04ba3e)) +* **normalizePackageData:** check `bd` variable instead of string "bd" ([#9669](https://github.com/electron-userland/electron-builder/issues/9669)) ([b072e92](https://github.com/electron-userland/electron-builder/commit/b072e92bd31b84df506deaf6156cc6109c7ef0f5)) +* **nsis:** allow $INSTDIR to be removed ([#9520](https://github.com/electron-userland/electron-builder/issues/9520)) ([cf10da8](https://github.com/electron-userland/electron-builder/commit/cf10da8d4988399232e5db62fe533789bdc816b2)) +* only use hardlinks during unit tests (or explicitly override) to avoid breaking debian builds where /opt is on a different drive ([#9397](https://github.com/electron-userland/electron-builder/issues/9397)) ([da1d768](https://github.com/electron-userland/electron-builder/commit/da1d7687c6d2d2db8e319e371ba001c946bf130c)) +* Optional dep's path cannot find in newest npm ([#9274](https://github.com/electron-userland/electron-builder/issues/9274)) ([38c2085](https://github.com/electron-userland/electron-builder/commit/38c2085e9a344812d32611d197d1df66d6644b45)), closes [#9259](https://github.com/electron-userland/electron-builder/issues/9259) +* **pkg:** support arm64-only MAS submissions by setting correct `hostArchitectures` ([#9409](https://github.com/electron-userland/electron-builder/issues/9409)) ([b81c253](https://github.com/electron-userland/electron-builder/commit/b81c2539c4da4630b9e955f3afa6ec76cb30447b)) +* pnpm "Invalid string length" errors during node module collection (removes `--long` arg) ([#9470](https://github.com/electron-userland/electron-builder/issues/9470)) ([d38ae8e](https://github.com/electron-userland/electron-builder/commit/d38ae8e666ca3769dfa091643ef816632f6e206f)) +* pnpm collector returning zero modules ([#9535](https://github.com/electron-userland/electron-builder/issues/9535)) ([88070e9](https://github.com/electron-userland/electron-builder/commit/88070e95e602aa1e6985d770cb4c279fea58a4a6)) +* post-process parent directories of unpacked files ([#9419](https://github.com/electron-userland/electron-builder/issues/9419)) ([1c94529](https://github.com/electron-userland/electron-builder/commit/1c945290a38cc4b6070a4e756db58354aee5e683)) +* properly collect node_modules when they're ESM and we're node>=16 ([#9380](https://github.com/electron-userland/electron-builder/issues/9380)) ([ec0a851](https://github.com/electron-userland/electron-builder/commit/ec0a85179b4508c372667f55e395d8b27c58a046)) +* quote tempBatFile path in cmd.exe args to support paths with spaces ([#9566](https://github.com/electron-userland/electron-builder/issues/9566)) ([769b608](https://github.com/electron-userland/electron-builder/commit/769b6080a7258205e2ea7cac74526765b80f7e0f)) +* respect electron_builder_binaries_mirror in downloadArtifact ([#9631](https://github.com/electron-userland/electron-builder/issues/9631)) ([0c8fc41](https://github.com/electron-userland/electron-builder/commit/0c8fc415debf0dc7e19e8ffd9c06db100ef41f11)) +* restore duplicate dependency and workspace tree resolution ([#9548](https://github.com/electron-userland/electron-builder/issues/9548)) ([aec9157](https://github.com/electron-userland/electron-builder/commit/aec9157b5124acf9409a46461eca86cb1212831b)) +* search app directory before package directory to respect two-package.json project setups ([#9450](https://github.com/electron-userland/electron-builder/issues/9450)) ([39ae6a7](https://github.com/electron-userland/electron-builder/commit/39ae6a7fb7109e8ab865fd1438592440110f4b71)) +* search for actual path in hoisted mode for pnpm since it can still return virtual paths via CLI ([#9392](https://github.com/electron-userland/electron-builder/issues/9392)) ([65eecac](https://github.com/electron-userland/electron-builder/commit/65eecac1bec8fb5667621bdba4f1d2b1c75230b5)) +* skip Netlify PR deploy workflow on forks ([#9474](https://github.com/electron-userland/electron-builder/issues/9474)) ([858b5c5](https://github.com/electron-userland/electron-builder/commit/858b5c5580013b8a2c7827026354d080c4dc6e21)) +* **squirrel-windows:** remove spurious default vendor warning ([#9595](https://github.com/electron-userland/electron-builder/issues/9595)) ([5d4651d](https://github.com/electron-userland/electron-builder/commit/5d4651dbb29d0730d0fb3be96de79d9348c0a99c)) +* update `fpm` to v1.17.0 ([#9381](https://github.com/electron-userland/electron-builder/issues/9381)) ([6171472](https://github.com/electron-userland/electron-builder/commit/617147281ceb53e9d40be852678131d2832abd79)) +* update and fix `ci-info` import for detecting CI ([#9356](https://github.com/electron-userland/electron-builder/issues/9356)) ([2e0837b](https://github.com/electron-userland/electron-builder/commit/2e0837b279156ad5b60a71d1e2733b495c192f5a)) +* update pr-labeler config to correct syntax ([#9471](https://github.com/electron-userland/electron-builder/issues/9471)) ([4df70dc](https://github.com/electron-userland/electron-builder/commit/4df70dceac5f754c0ad45ae2ae7545fc781c9af6)) +* update the `dmgbuild` hex regex to be case insensitive ([#9487](https://github.com/electron-userland/electron-builder/issues/9487)) ([c3af390](https://github.com/electron-userland/electron-builder/commit/c3af390ec67becfe548a8c83f0d3ba828c28b751)) +* **updater:** don't throw on releases with non-semver tags when collecting full changelog ([#9550](https://github.com/electron-userland/electron-builder/issues/9550)) ([8aee1e6](https://github.com/electron-userland/electron-builder/commit/8aee1e6944afae05a60d2a392743a78f818ee6de)) +* use `["workspaces", "list", "--json"]` instead of `workspaceRoot` for yarn v2+ package manager ([#9415](https://github.com/electron-userland/electron-builder/issues/9415)) ([4d24ebd](https://github.com/electron-userland/electron-builder/commit/4d24ebd79ea33d8d9afa4a4bf18af90e968d0ff3)) +* Use `yarn config --json` to parse yarn berry (output varies v2-4) ([#9371](https://github.com/electron-userland/electron-builder/issues/9371)) ([2f3e7e1](https://github.com/electron-userland/electron-builder/commit/2f3e7e1e67dd30c4987c33172ca6857ee0a2fc14)) +* use correct types for makeUniversalApp (e.g. `undefined` instead of potentially `null`) ([#9416](https://github.com/electron-userland/electron-builder/issues/9416)) ([ada111e](https://github.com/electron-userland/electron-builder/commit/ada111ebe82d9487c27441969ab15899bafad4c9)) +* utilize a js helper `dynamic-import.js` for trying `await import` and `require` ([#9299](https://github.com/electron-userland/electron-builder/issues/9299)) ([9f06a85](https://github.com/electron-userland/electron-builder/commit/9f06a859f9c82b305d0a43c5b6e8c47d1c7451f1)) +* validate package version w/ `semver` when traversing directories in search of a matching node module ([#9424](https://github.com/electron-userland/electron-builder/issues/9424)) ([e3f3592](https://github.com/electron-userland/electron-builder/commit/e3f3592cfa8043c646d1791fa7f41feb45556ea9)) +* Windows build fails with spawn EINVAL after Node.js security fix ([#9489](https://github.com/electron-userland/electron-builder/issues/9489)) ([3022f0f](https://github.com/electron-userland/electron-builder/commit/3022f0f840c893d14beb82d638bedb8ed27d7ae6)) +* **win:** rebuild app exe if header of the asar has changed ([#9607](https://github.com/electron-userland/electron-builder/issues/9607)) ([02a9105](https://github.com/electron-userland/electron-builder/commit/02a9105d1c4420e418d740dfa0bbbd22d5b44735)) + + +### Features + +* add `size` option to DmgOptions for explicit DMG filesystem size ([#9543](https://github.com/electron-userland/electron-builder/issues/9543)) ([bfee115](https://github.com/electron-userland/electron-builder/commit/bfee115b185fa4dcb14b0fae6ccee1adc4d4590e)) +* add support for dmgbuild's `badge-icon` configuration ([#9513](https://github.com/electron-userland/electron-builder/issues/9513)) ([b1d6e24](https://github.com/electron-userland/electron-builder/commit/b1d6e2417001977d12dc8365e6c5ceb5ac9d49c9)) +* adding additional toolsets support for win-codesign/windows-kits ([#9430](https://github.com/electron-userland/electron-builder/issues/9430)) ([1b39a8e](https://github.com/electron-userland/electron-builder/commit/1b39a8e23c019a0e61fbe1fe5e973113036d255b)) +* adding bun node_module collector support ([#9357](https://github.com/electron-userland/electron-builder/issues/9357)) ([811d13d](https://github.com/electron-userland/electron-builder/commit/811d13d730fe78ee2e721b7c537e8b3e5579a4f0)) +* allow target specific build options to override top-level publish configuration ([#9425](https://github.com/electron-userland/electron-builder/issues/9425)) ([5f962f9](https://github.com/electron-userland/electron-builder/commit/5f962f9cae875da1208caa96fe040b2fe9224ea7)) +* allowing negative patterns to be provided for `signExts` as signing overrides ([#9335](https://github.com/electron-userland/electron-builder/issues/9335)) ([16c8fa1](https://github.com/electron-userland/electron-builder/commit/16c8fa19b288770a6d24164e562a353877e59536)) +* **app-builder-lib:** Allow local nsis-resources via env var `ELECTRON_BUILDER_NSIS_RESOURCES_DIR` ([#9333](https://github.com/electron-userland/electron-builder/issues/9333)) ([6a49f85](https://github.com/electron-userland/electron-builder/commit/6a49f85c69a22844729033f023249975f47a28f1)) +* **appimage:** Launch with `--no-sandbox` only when necessary ([#9590](https://github.com/electron-userland/electron-builder/issues/9590)) ([ed422f3](https://github.com/electron-userland/electron-builder/commit/ed422f36540a93e9bd2a19bc7a5e729bf2b033ea)) +* **appimage:** support static appimage runtime via `toolsets` property ([#9558](https://github.com/electron-userland/electron-builder/issues/9558)) ([c18f0eb](https://github.com/electron-userland/electron-builder/commit/c18f0eb26bd9ba366b45e0ff9e85cdee0daba4ef)) +* Check for `\S` Silent Flag when executing NSIS Uninstaller ([#9282](https://github.com/electron-userland/electron-builder/issues/9282)) ([836a15c](https://github.com/electron-userland/electron-builder/commit/836a15c6c70abf8582aaa63603e14f77d5fa3f89)) +* **electron-publish:** add gitlab publisher ([#9209](https://github.com/electron-userland/electron-builder/issues/9209)) ([6fd391d](https://github.com/electron-userland/electron-builder/commit/6fd391d9e8390c00c8b0674d8ac3a5b7b6f0f19f)) +* Expanding `${arch}` macro for `mac.binaries` in case of unpacked files within universal builds ([#9263](https://github.com/electron-userland/electron-builder/issues/9263)) ([08773af](https://github.com/electron-userland/electron-builder/commit/08773afadfe10911ed1dff084fefe1024c5a74d8)) +* **flatpak:** use configuration for `executableArgs` ([#9530](https://github.com/electron-userland/electron-builder/issues/9530)) ([d56550f](https://github.com/electron-userland/electron-builder/commit/d56550f75828ef3c097377264336794f2f65da86)) +* improve detecting pm and support bun ([#9262](https://github.com/electron-userland/electron-builder/issues/9262)) ([c51f962](https://github.com/electron-userland/electron-builder/commit/c51f96272517c08a09504445fb31e61326e0c381)) +* **nsis:** detect Windows version and exclude Windows 7 compatibility logic when on Windows 8+ ([#9564](https://github.com/electron-userland/electron-builder/issues/9564)) ([13d8535](https://github.com/electron-userland/electron-builder/commit/13d85355b6d37bd82d5153d260ba11de71323875)) +* pass release notes to GitHub/GitLab release body ([#9581](https://github.com/electron-userland/electron-builder/issues/9581)) ([b7df0bc](https://github.com/electron-userland/electron-builder/commit/b7df0bcef5790814fd6df187346dcec625dc681e)) +* Provide progress updates for multiple range differential downloads ([#9448](https://github.com/electron-userland/electron-builder/issues/9448)) ([3533a3e](https://github.com/electron-userland/electron-builder/commit/3533a3eb5af01416db3ecac703d6da031b05e615)) +* support `corepack` `packageManager` and add related unit tests ([#9309](https://github.com/electron-userland/electron-builder/issues/9309)) ([b741b72](https://github.com/electron-userland/electron-builder/commit/b741b726daeb06080ab1cf46a93d318fd89ae4e7)) +* support Icon Composer icons for macOS ([#9279](https://github.com/electron-userland/electron-builder/issues/9279)) ([b6a34c0](https://github.com/electron-userland/electron-builder/commit/b6a34c00c35e42dc279a55d672558ea7badc7fcd)) +* update `dmgbuild` and migrate to portable `dmgbuild` python bundle ([#9516](https://github.com/electron-userland/electron-builder/issues/9516)) ([9b1dbb2](https://github.com/electron-userland/electron-builder/commit/9b1dbb2f56662b2072662ed7432228e1c4437640)) +* **windows:** add `capabilities` macro for `AppxOptions` ([#9437](https://github.com/electron-userland/electron-builder/issues/9437)) ([3fa2d89](https://github.com/electron-userland/electron-builder/commit/3fa2d894ac609d0d819d7adb80ff50bfca08039f)) + + +### Performance Improvements + +* optimize duplicate checking in asar packager using Set ([#9386](https://github.com/electron-userland/electron-builder/issues/9386)) ([7f7113d](https://github.com/electron-userland/electron-builder/commit/7f7113dc435a427ca4ff041fb138512ac0bdeaaa)) + + + # [](https://github.com/electron-userland/electron-builder/compare/v26.0.20...v) (2026-03-04) diff --git a/packages/app-builder-lib/CHANGELOG.md b/packages/app-builder-lib/CHANGELOG.md index 2b886ef0f7e..9b611fffd6d 100644 --- a/packages/app-builder-lib/CHANGELOG.md +++ b/packages/app-builder-lib/CHANGELOG.md @@ -1,5 +1,44 @@ # app-builder-lib +## 26.9.0 + +### Minor Changes + +- Feat: If necessary, start with --no-sandbox _[`#9590`](https://github.com/electron-userland/electron-builder/pull/9590) [`ed422f3`](https://github.com/electron-userland/electron-builder/commit/ed422f36540a93e9bd2a19bc7a5e729bf2b033ea) [@sabonerune](https://github.com/sabonerune)_ +- Feat(nsis): detect windows version and exclude win 7 compatibility logic when not needed _[`#9564`](https://github.com/electron-userland/electron-builder/pull/9564) [`13d8535`](https://github.com/electron-userland/electron-builder/commit/13d85355b6d37bd82d5153d260ba11de71323875) [@JPCrounse](https://github.com/JPCrounse)_ +- Feat: pass release notes to GitHub/GitLab release body via `releaseBody` and `releaseName` options _[`#9581`](https://github.com/electron-userland/electron-builder/pull/9581) [`b7df0bc`](https://github.com/electron-userland/electron-builder/commit/b7df0bcef5790814fd6df187346dcec625dc681e) [@asamofal](https://github.com/asamofal)_ + +### Patch Changes + +- Fix: parseNameVersion correctly splits scoped packages with link: paths _[`#9653`](https://github.com/electron-userland/electron-builder/pull/9653) [`a69928f`](https://github.com/electron-userland/electron-builder/commit/a69928f28cd33a487a3158bd5c3ad040906d3c30) [@davidebaraldo](https://github.com/davidebaraldo)_ +- Fix(normalizePackageData): check bd variable instead of string "bd" _[`#9669`](https://github.com/electron-userland/electron-builder/pull/9669) [`b072e92`](https://github.com/electron-userland/electron-builder/commit/b072e92bd31b84df506deaf6156cc6109c7ef0f5) [@Sandblaze05](https://github.com/Sandblaze05)_ +- Fix(appimage): add entry for patched appimage toolset bundle to resolve issues on Ubuntu 25.1.0 _[`#9673`](https://github.com/electron-userland/electron-builder/pull/9673) [`3958d8b`](https://github.com/electron-userland/electron-builder/commit/3958d8b6cb7b74458ea541738af6ac753d2cf83a) [@mmaietta](https://github.com/mmaietta)_ +- Fix(appimage): use /usr/bin/env in hashbang so it works in non FHS distros _[`#9664`](https://github.com/electron-userland/electron-builder/pull/9664) [`f71b101`](https://github.com/electron-userland/electron-builder/commit/f71b101be964bdcc2b84fcf281441372105def00) [@lucasew](https://github.com/lucasew)_ +- Fix: respect electron*builder_binaries_mirror in downloadArtifact *[`#9631`](https://github.com/electron-userland/electron-builder/pull/9631) [`0c8fc41`](https://github.com/electron-userland/electron-builder/commit/0c8fc415debf0dc7e19e8ffd9c06db100ef41f11) [@ysansan98](https://github.com/ysansan98)\_ + + downloadArtifact() was ignoring electron_builder_binaries_mirror and falling back + to electron_mirror due to @electron/get behavior. This affected dmg-builder + (macOS) and appimage-tools (Linux) downloads. + - Extract getBinariesMirrorUrl() to share mirror URL resolution + - Use the helper in both downloadArtifact() and getBinFromUrl() + - Ensure custom mirrors are respected for all binary downloads + +
Updated 5 dependencies + + + +[`b7df0bc`](https://github.com/electron-userland/electron-builder/commit/b7df0bcef5790814fd6df187346dcec625dc681e) + + + +- `electron-publish@26.9.0` +- `builder-util-runtime@9.6.0` +- `dmg-builder@26.9.0` +- `electron-builder-squirrel-windows@26.9.0` +- `builder-util@26.9.0` + +
+ ## 26.8.2 ### Patch Changes diff --git a/packages/app-builder-lib/package.json b/packages/app-builder-lib/package.json index c99576e5fe6..f10e80248bb 100644 --- a/packages/app-builder-lib/package.json +++ b/packages/app-builder-lib/package.json @@ -1,7 +1,7 @@ { "name": "app-builder-lib", "description": "electron-builder lib", - "version": "26.8.2", + "version": "26.9.0", "main": "out/index.js", "files": [ "out", diff --git a/packages/app-builder-lib/src/version.ts b/packages/app-builder-lib/src/version.ts index 1b0c71e7fc9..7987f926aa2 100644 --- a/packages/app-builder-lib/src/version.ts +++ b/packages/app-builder-lib/src/version.ts @@ -1 +1 @@ -export const PACKAGE_VERSION = "26.8.2" +export const PACKAGE_VERSION = "26.9.0" diff --git a/packages/builder-util-runtime/CHANGELOG.md b/packages/builder-util-runtime/CHANGELOG.md index e66a7267517..d3cdad3e00a 100644 --- a/packages/builder-util-runtime/CHANGELOG.md +++ b/packages/builder-util-runtime/CHANGELOG.md @@ -1,5 +1,11 @@ # builder-util-runtime +## 9.6.0 + +### Minor Changes + +- Feat: pass release notes to GitHub/GitLab release body via `releaseBody` and `releaseName` options _[`#9581`](https://github.com/electron-userland/electron-builder/pull/9581) [`b7df0bc`](https://github.com/electron-userland/electron-builder/commit/b7df0bcef5790814fd6df187346dcec625dc681e) [@asamofal](https://github.com/asamofal)_ + ## 9.5.1 ### Patch Changes @@ -21,7 +27,6 @@ Replace hardcoded service-specific hostname checks with sophisticated cross-origin redirect detection that matches industry standards from Python requests library and Apache HttpClient. **Key improvements:** - - **Case-insensitive hostname comparison** for robust origin detection - **HTTP→HTTPS upgrade allowance** on standard ports (80→443) for backward compatibility - **Proper default port handling** that treats implicit and explicit default ports as equivalent diff --git a/packages/builder-util-runtime/package.json b/packages/builder-util-runtime/package.json index 4071ff5c327..9dd0b7c5efa 100644 --- a/packages/builder-util-runtime/package.json +++ b/packages/builder-util-runtime/package.json @@ -1,6 +1,6 @@ { "name": "builder-util-runtime", - "version": "9.5.1", + "version": "9.6.0", "main": "out/index.js", "author": "Vladimir Krivosheev", "license": "MIT", diff --git a/packages/builder-util/CHANGELOG.md b/packages/builder-util/CHANGELOG.md index 2baf0952024..7b3d703a299 100644 --- a/packages/builder-util/CHANGELOG.md +++ b/packages/builder-util/CHANGELOG.md @@ -1,5 +1,21 @@ # builder-util +## 26.9.0 + +### Patch Changes + +
Updated 1 dependency + + + +[`b7df0bc`](https://github.com/electron-userland/electron-builder/commit/b7df0bcef5790814fd6df187346dcec625dc681e) + + + +- `builder-util-runtime@9.6.0` + +
+ ## 26.8.1 ### Patch Changes diff --git a/packages/builder-util/package.json b/packages/builder-util/package.json index 989f45f70d1..20c4b1e8a1b 100644 --- a/packages/builder-util/package.json +++ b/packages/builder-util/package.json @@ -1,6 +1,6 @@ { "name": "builder-util", - "version": "26.8.1", + "version": "26.9.0", "main": "out/util.js", "author": "Vladimir Krivosheev", "license": "MIT", diff --git a/packages/dmg-builder/CHANGELOG.md b/packages/dmg-builder/CHANGELOG.md index c2772e2e1e0..03ea42bee8a 100644 --- a/packages/dmg-builder/CHANGELOG.md +++ b/packages/dmg-builder/CHANGELOG.md @@ -1,5 +1,22 @@ # dmg-builder +## 26.9.0 + +### Patch Changes + +
Updated 2 dependencies + + + +[`a69928f`](https://github.com/electron-userland/electron-builder/commit/a69928f28cd33a487a3158bd5c3ad040906d3c30) [`ed422f3`](https://github.com/electron-userland/electron-builder/commit/ed422f36540a93e9bd2a19bc7a5e729bf2b033ea) [`b072e92`](https://github.com/electron-userland/electron-builder/commit/b072e92bd31b84df506deaf6156cc6109c7ef0f5) [`3958d8b`](https://github.com/electron-userland/electron-builder/commit/3958d8b6cb7b74458ea541738af6ac753d2cf83a) [`13d8535`](https://github.com/electron-userland/electron-builder/commit/13d85355b6d37bd82d5153d260ba11de71323875) [`f71b101`](https://github.com/electron-userland/electron-builder/commit/f71b101be964bdcc2b84fcf281441372105def00) [`b7df0bc`](https://github.com/electron-userland/electron-builder/commit/b7df0bcef5790814fd6df187346dcec625dc681e) [`0c8fc41`](https://github.com/electron-userland/electron-builder/commit/0c8fc415debf0dc7e19e8ffd9c06db100ef41f11) + + + +- `app-builder-lib@26.9.0` +- `builder-util@26.9.0` + +
+ ## 26.8.2 ### Patch Changes diff --git a/packages/dmg-builder/package.json b/packages/dmg-builder/package.json index fc4dcb87d76..5de2b39731f 100644 --- a/packages/dmg-builder/package.json +++ b/packages/dmg-builder/package.json @@ -1,6 +1,6 @@ { "name": "dmg-builder", - "version": "26.8.2", + "version": "26.9.0", "main": "out/dmgUtil.js", "author": "Vladimir Krivosheev", "license": "MIT", diff --git a/packages/electron-builder-squirrel-windows/CHANGELOG.md b/packages/electron-builder-squirrel-windows/CHANGELOG.md index 97be8785a75..50325f325a1 100644 --- a/packages/electron-builder-squirrel-windows/CHANGELOG.md +++ b/packages/electron-builder-squirrel-windows/CHANGELOG.md @@ -1,5 +1,22 @@ # electron-builder-squirrel-windows +## 26.9.0 + +### Patch Changes + +
Updated 2 dependencies + + + +[`a69928f`](https://github.com/electron-userland/electron-builder/commit/a69928f28cd33a487a3158bd5c3ad040906d3c30) [`ed422f3`](https://github.com/electron-userland/electron-builder/commit/ed422f36540a93e9bd2a19bc7a5e729bf2b033ea) [`b072e92`](https://github.com/electron-userland/electron-builder/commit/b072e92bd31b84df506deaf6156cc6109c7ef0f5) [`3958d8b`](https://github.com/electron-userland/electron-builder/commit/3958d8b6cb7b74458ea541738af6ac753d2cf83a) [`13d8535`](https://github.com/electron-userland/electron-builder/commit/13d85355b6d37bd82d5153d260ba11de71323875) [`f71b101`](https://github.com/electron-userland/electron-builder/commit/f71b101be964bdcc2b84fcf281441372105def00) [`b7df0bc`](https://github.com/electron-userland/electron-builder/commit/b7df0bcef5790814fd6df187346dcec625dc681e) [`0c8fc41`](https://github.com/electron-userland/electron-builder/commit/0c8fc415debf0dc7e19e8ffd9c06db100ef41f11) + + + +- `app-builder-lib@26.9.0` +- `builder-util@26.9.0` + +
+ ## 26.8.2 ### Patch Changes diff --git a/packages/electron-builder-squirrel-windows/package.json b/packages/electron-builder-squirrel-windows/package.json index c919daf805f..2b3dee55f36 100644 --- a/packages/electron-builder-squirrel-windows/package.json +++ b/packages/electron-builder-squirrel-windows/package.json @@ -1,6 +1,6 @@ { "name": "electron-builder-squirrel-windows", - "version": "26.8.2", + "version": "26.9.0", "main": "out/SquirrelWindowsTarget.js", "author": "Vladimir Krivosheev", "license": "MIT", diff --git a/packages/electron-builder/CHANGELOG.md b/packages/electron-builder/CHANGELOG.md index 5084ab10c5e..79532f81eea 100644 --- a/packages/electron-builder/CHANGELOG.md +++ b/packages/electron-builder/CHANGELOG.md @@ -1,5 +1,24 @@ # electron-builder +## 26.9.0 + +### Patch Changes + +
Updated 4 dependencies + + + +[`a69928f`](https://github.com/electron-userland/electron-builder/commit/a69928f28cd33a487a3158bd5c3ad040906d3c30) [`ed422f3`](https://github.com/electron-userland/electron-builder/commit/ed422f36540a93e9bd2a19bc7a5e729bf2b033ea) [`b072e92`](https://github.com/electron-userland/electron-builder/commit/b072e92bd31b84df506deaf6156cc6109c7ef0f5) [`3958d8b`](https://github.com/electron-userland/electron-builder/commit/3958d8b6cb7b74458ea541738af6ac753d2cf83a) [`13d8535`](https://github.com/electron-userland/electron-builder/commit/13d85355b6d37bd82d5153d260ba11de71323875) [`f71b101`](https://github.com/electron-userland/electron-builder/commit/f71b101be964bdcc2b84fcf281441372105def00) [`b7df0bc`](https://github.com/electron-userland/electron-builder/commit/b7df0bcef5790814fd6df187346dcec625dc681e) [`0c8fc41`](https://github.com/electron-userland/electron-builder/commit/0c8fc415debf0dc7e19e8ffd9c06db100ef41f11) + + + +- `app-builder-lib@26.9.0` +- `builder-util-runtime@9.6.0` +- `dmg-builder@26.9.0` +- `builder-util@26.9.0` + +
+ ## 26.8.2 ### Patch Changes diff --git a/packages/electron-builder/package.json b/packages/electron-builder/package.json index 51084cb2e93..88799467e4c 100644 --- a/packages/electron-builder/package.json +++ b/packages/electron-builder/package.json @@ -1,7 +1,7 @@ { "name": "electron-builder", "description": "A complete solution to package and build a ready for distribution Electron app for MacOS, Windows and Linux with “auto update” support out of the box", - "version": "26.8.2", + "version": "26.9.0", "main": "out/index.js", "files": [ "out" diff --git a/packages/electron-forge-maker-appimage/CHANGELOG.md b/packages/electron-forge-maker-appimage/CHANGELOG.md index 2dfa07a40a3..05017b07f06 100644 --- a/packages/electron-forge-maker-appimage/CHANGELOG.md +++ b/packages/electron-forge-maker-appimage/CHANGELOG.md @@ -1,5 +1,21 @@ # electron-forge-maker-appimage +## 26.9.0 + +### Patch Changes + +
Updated 1 dependency + + + +[`a69928f`](https://github.com/electron-userland/electron-builder/commit/a69928f28cd33a487a3158bd5c3ad040906d3c30) [`ed422f3`](https://github.com/electron-userland/electron-builder/commit/ed422f36540a93e9bd2a19bc7a5e729bf2b033ea) [`b072e92`](https://github.com/electron-userland/electron-builder/commit/b072e92bd31b84df506deaf6156cc6109c7ef0f5) [`3958d8b`](https://github.com/electron-userland/electron-builder/commit/3958d8b6cb7b74458ea541738af6ac753d2cf83a) [`13d8535`](https://github.com/electron-userland/electron-builder/commit/13d85355b6d37bd82d5153d260ba11de71323875) [`f71b101`](https://github.com/electron-userland/electron-builder/commit/f71b101be964bdcc2b84fcf281441372105def00) [`b7df0bc`](https://github.com/electron-userland/electron-builder/commit/b7df0bcef5790814fd6df187346dcec625dc681e) [`0c8fc41`](https://github.com/electron-userland/electron-builder/commit/0c8fc415debf0dc7e19e8ffd9c06db100ef41f11) + + + +- `app-builder-lib@26.9.0` + +
+ ## 26.8.2 ### Patch Changes diff --git a/packages/electron-forge-maker-appimage/package.json b/packages/electron-forge-maker-appimage/package.json index 41b36f87670..007d069b0af 100644 --- a/packages/electron-forge-maker-appimage/package.json +++ b/packages/electron-forge-maker-appimage/package.json @@ -1,6 +1,6 @@ { "name": "electron-forge-maker-appimage", - "version": "26.8.2", + "version": "26.9.0", "main": "main.js", "author": "Vladimir Krivosheev", "license": "MIT", diff --git a/packages/electron-forge-maker-nsis-web/CHANGELOG.md b/packages/electron-forge-maker-nsis-web/CHANGELOG.md index d7956263d36..f2e98dacef7 100644 --- a/packages/electron-forge-maker-nsis-web/CHANGELOG.md +++ b/packages/electron-forge-maker-nsis-web/CHANGELOG.md @@ -1,5 +1,21 @@ # electron-forge-maker-nsis-web +## 26.9.0 + +### Patch Changes + +
Updated 1 dependency + + + +[`a69928f`](https://github.com/electron-userland/electron-builder/commit/a69928f28cd33a487a3158bd5c3ad040906d3c30) [`ed422f3`](https://github.com/electron-userland/electron-builder/commit/ed422f36540a93e9bd2a19bc7a5e729bf2b033ea) [`b072e92`](https://github.com/electron-userland/electron-builder/commit/b072e92bd31b84df506deaf6156cc6109c7ef0f5) [`3958d8b`](https://github.com/electron-userland/electron-builder/commit/3958d8b6cb7b74458ea541738af6ac753d2cf83a) [`13d8535`](https://github.com/electron-userland/electron-builder/commit/13d85355b6d37bd82d5153d260ba11de71323875) [`f71b101`](https://github.com/electron-userland/electron-builder/commit/f71b101be964bdcc2b84fcf281441372105def00) [`b7df0bc`](https://github.com/electron-userland/electron-builder/commit/b7df0bcef5790814fd6df187346dcec625dc681e) [`0c8fc41`](https://github.com/electron-userland/electron-builder/commit/0c8fc415debf0dc7e19e8ffd9c06db100ef41f11) + + + +- `app-builder-lib@26.9.0` + +
+ ## 26.8.2 ### Patch Changes diff --git a/packages/electron-forge-maker-nsis-web/package.json b/packages/electron-forge-maker-nsis-web/package.json index 27146a3e0fd..b2f0c402602 100644 --- a/packages/electron-forge-maker-nsis-web/package.json +++ b/packages/electron-forge-maker-nsis-web/package.json @@ -1,6 +1,6 @@ { "name": "electron-forge-maker-nsis-web", - "version": "26.8.2", + "version": "26.9.0", "main": "main.js", "author": "Vladimir Krivosheev", "license": "MIT", diff --git a/packages/electron-forge-maker-nsis/CHANGELOG.md b/packages/electron-forge-maker-nsis/CHANGELOG.md index 4bd0dfce126..ecfef1b393a 100644 --- a/packages/electron-forge-maker-nsis/CHANGELOG.md +++ b/packages/electron-forge-maker-nsis/CHANGELOG.md @@ -1,5 +1,21 @@ # electron-forge-maker-nsis +## 26.9.0 + +### Patch Changes + +
Updated 1 dependency + + + +[`a69928f`](https://github.com/electron-userland/electron-builder/commit/a69928f28cd33a487a3158bd5c3ad040906d3c30) [`ed422f3`](https://github.com/electron-userland/electron-builder/commit/ed422f36540a93e9bd2a19bc7a5e729bf2b033ea) [`b072e92`](https://github.com/electron-userland/electron-builder/commit/b072e92bd31b84df506deaf6156cc6109c7ef0f5) [`3958d8b`](https://github.com/electron-userland/electron-builder/commit/3958d8b6cb7b74458ea541738af6ac753d2cf83a) [`13d8535`](https://github.com/electron-userland/electron-builder/commit/13d85355b6d37bd82d5153d260ba11de71323875) [`f71b101`](https://github.com/electron-userland/electron-builder/commit/f71b101be964bdcc2b84fcf281441372105def00) [`b7df0bc`](https://github.com/electron-userland/electron-builder/commit/b7df0bcef5790814fd6df187346dcec625dc681e) [`0c8fc41`](https://github.com/electron-userland/electron-builder/commit/0c8fc415debf0dc7e19e8ffd9c06db100ef41f11) + + + +- `app-builder-lib@26.9.0` + +
+ ## 26.8.2 ### Patch Changes diff --git a/packages/electron-forge-maker-nsis/package.json b/packages/electron-forge-maker-nsis/package.json index b75269e94b2..b99edd0c36c 100644 --- a/packages/electron-forge-maker-nsis/package.json +++ b/packages/electron-forge-maker-nsis/package.json @@ -1,6 +1,6 @@ { "name": "electron-forge-maker-nsis", - "version": "26.8.2", + "version": "26.9.0", "main": "main.js", "author": "Vladimir Krivosheev", "license": "MIT", diff --git a/packages/electron-forge-maker-snap/CHANGELOG.md b/packages/electron-forge-maker-snap/CHANGELOG.md index 4ed2e9b37cb..c4c99bef9ed 100644 --- a/packages/electron-forge-maker-snap/CHANGELOG.md +++ b/packages/electron-forge-maker-snap/CHANGELOG.md @@ -1,5 +1,21 @@ # electron-forge-maker-snap +## 26.9.0 + +### Patch Changes + +
Updated 1 dependency + + + +[`a69928f`](https://github.com/electron-userland/electron-builder/commit/a69928f28cd33a487a3158bd5c3ad040906d3c30) [`ed422f3`](https://github.com/electron-userland/electron-builder/commit/ed422f36540a93e9bd2a19bc7a5e729bf2b033ea) [`b072e92`](https://github.com/electron-userland/electron-builder/commit/b072e92bd31b84df506deaf6156cc6109c7ef0f5) [`3958d8b`](https://github.com/electron-userland/electron-builder/commit/3958d8b6cb7b74458ea541738af6ac753d2cf83a) [`13d8535`](https://github.com/electron-userland/electron-builder/commit/13d85355b6d37bd82d5153d260ba11de71323875) [`f71b101`](https://github.com/electron-userland/electron-builder/commit/f71b101be964bdcc2b84fcf281441372105def00) [`b7df0bc`](https://github.com/electron-userland/electron-builder/commit/b7df0bcef5790814fd6df187346dcec625dc681e) [`0c8fc41`](https://github.com/electron-userland/electron-builder/commit/0c8fc415debf0dc7e19e8ffd9c06db100ef41f11) + + + +- `app-builder-lib@26.9.0` + +
+ ## 26.8.2 ### Patch Changes diff --git a/packages/electron-forge-maker-snap/package.json b/packages/electron-forge-maker-snap/package.json index 5e34109f32a..052da2610a7 100644 --- a/packages/electron-forge-maker-snap/package.json +++ b/packages/electron-forge-maker-snap/package.json @@ -1,6 +1,6 @@ { "name": "electron-forge-maker-snap", - "version": "26.8.2", + "version": "26.9.0", "main": "main.js", "author": "Vladimir Krivosheev", "license": "MIT", diff --git a/packages/electron-publish/CHANGELOG.md b/packages/electron-publish/CHANGELOG.md index 7c853208812..0579c1d990e 100644 --- a/packages/electron-publish/CHANGELOG.md +++ b/packages/electron-publish/CHANGELOG.md @@ -1,5 +1,26 @@ # electron-publish +## 26.9.0 + +### Minor Changes + +- Feat: pass release notes to GitHub/GitLab release body via `releaseBody` and `releaseName` options _[`#9581`](https://github.com/electron-userland/electron-builder/pull/9581) [`b7df0bc`](https://github.com/electron-userland/electron-builder/commit/b7df0bcef5790814fd6df187346dcec625dc681e) [@asamofal](https://github.com/asamofal)_ + +### Patch Changes + +
Updated 2 dependencies + + + +[`b7df0bc`](https://github.com/electron-userland/electron-builder/commit/b7df0bcef5790814fd6df187346dcec625dc681e) + + + +- `builder-util-runtime@9.6.0` +- `builder-util@26.9.0` + +
+ ## 26.8.1 ### Patch Changes diff --git a/packages/electron-publish/package.json b/packages/electron-publish/package.json index 815943ebdd6..cdd68178754 100644 --- a/packages/electron-publish/package.json +++ b/packages/electron-publish/package.json @@ -1,6 +1,6 @@ { "name": "electron-publish", - "version": "26.8.1", + "version": "26.9.0", "main": "out/index.js", "author": "Vladimir Krivosheev", "license": "MIT", diff --git a/packages/electron-updater/CHANGELOG.md b/packages/electron-updater/CHANGELOG.md index 7f1ab011a6b..a788a459657 100644 --- a/packages/electron-updater/CHANGELOG.md +++ b/packages/electron-updater/CHANGELOG.md @@ -1,5 +1,21 @@ ## 4.3.0 +## 6.8.4 + +### Patch Changes + +
Updated 1 dependency + + + +[`b7df0bc`](https://github.com/electron-userland/electron-builder/commit/b7df0bcef5790814fd6df187346dcec625dc681e) + + + +- `builder-util-runtime@9.6.0` + +
+ ## 6.8.3 ### Patch Changes diff --git a/packages/electron-updater/package.json b/packages/electron-updater/package.json index 1729cec67c4..7c2689f2965 100644 --- a/packages/electron-updater/package.json +++ b/packages/electron-updater/package.json @@ -1,6 +1,6 @@ { "name": "electron-updater", - "version": "6.8.3", + "version": "6.8.4", "description": "Cross platform updater for electron applications", "main": "out/main.js", "author": "Vladimir Krivosheev", From 5c945b21f775b8dead1d5afb508517c43c31ef6e Mon Sep 17 00:00:00 2001 From: Copilot <198982749+Copilot@users.noreply.github.com> Date: Mon, 20 Apr 2026 18:47:51 -0700 Subject: [PATCH 57/61] fix: convert file path via `vm.toVmFile()` in AzureTrusted signing to mirror Signtool (#9676) --- .changeset/wise-carrots-hang.md | 5 +++++ .../app-builder-lib/src/codeSign/windowsSignAzureManager.ts | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) create mode 100644 .changeset/wise-carrots-hang.md diff --git a/.changeset/wise-carrots-hang.md b/.changeset/wise-carrots-hang.md new file mode 100644 index 00000000000..a9b03ba2783 --- /dev/null +++ b/.changeset/wise-carrots-hang.md @@ -0,0 +1,5 @@ +--- +"app-builder-lib": patch +--- + +fix: convert file path via vm.toVmFile() in windowsSignAzureManager diff --git a/packages/app-builder-lib/src/codeSign/windowsSignAzureManager.ts b/packages/app-builder-lib/src/codeSign/windowsSignAzureManager.ts index 35e75add43d..6051a5a1d81 100644 --- a/packages/app-builder-lib/src/codeSign/windowsSignAzureManager.ts +++ b/packages/app-builder-lib/src/codeSign/windowsSignAzureManager.ts @@ -125,7 +125,7 @@ export class WindowsSignAzureManager implements SignManager { TimestampRfc3161: timestampRfc3161 || "http://timestamp.acs.microsoft.com", TimestampDigest: timestampDigest || "SHA256", FileDigest: fileDigest || "SHA256", - Files: options.path, + Files: vm.toVmFile(options.path), } const paramsString = Object.entries(params) .filter(([_, value]) => value != null) From f93210c1315df9cb9794aa6e5c6b08a8b4c8e62c Mon Sep 17 00:00:00 2001 From: Mike Maietta Date: Tue, 21 Apr 2026 19:40:07 -0700 Subject: [PATCH 58/61] chore: updating snapshots and allowing docker-build to be triggered manually from GHA (#9686) --- .github/workflows/docker-build.yml | 1 + .../npm electron-clear-data.txt | 6 +- .../HoistedNodeModuleTest/pnpm max stack.txt | 77 +- .../pnpm optional dependencies.txt | 12 +- ...ion conflict with hoisted dependencies.txt | 44 +- .../HoistedNodeModuleTest/yarn max stack.txt | 20 +- .../HoistedNodeModuleTest/yarn ms.txt | 24 +- .../HoistedNodeModuleTest/yarn parse-asn1.txt | 6 +- ... two package.json without node_modules.txt | 86 +- .../yarn two package.json.txt | 256 +- test/snapshots/HoistedNodeModuleTest.js.snap | 15757 +++++++--------- test/src/HoistedNodeModuleTest.ts | 7 +- test/src/updater/blackboxUpdateTest.ts | 10 +- 13 files changed, 6554 insertions(+), 9752 deletions(-) diff --git a/.github/workflows/docker-build.yml b/.github/workflows/docker-build.yml index 1969d2b6257..4e67d3fa636 100644 --- a/.github/workflows/docker-build.yml +++ b/.github/workflows/docker-build.yml @@ -2,6 +2,7 @@ name: Build Docker Images on: workflow_call: + workflow_dispatch: permissions: contents: read diff --git a/test/fixtures/lockfiles/HoistedNodeModuleTest/npm electron-clear-data.txt b/test/fixtures/lockfiles/HoistedNodeModuleTest/npm electron-clear-data.txt index 41f19ab20b0..58871f16cbe 100644 --- a/test/fixtures/lockfiles/HoistedNodeModuleTest/npm electron-clear-data.txt +++ b/test/fixtures/lockfiles/HoistedNodeModuleTest/npm electron-clear-data.txt @@ -283,9 +283,9 @@ "peer": true }, "node_modules/electron": { - "version": "41.2.0", - "resolved": "https://registry.npmjs.org/electron/-/electron-41.2.0.tgz", - "integrity": "sha512-0OKLiymqfV0WK68RBXqAm3Myad2TpI5wwxLCBEUcH5Nugo3YfSk7p1Js/AL9266qTz5xZioUnxt9hG8FFwax0g==", + "version": "41.2.2", + "resolved": "https://registry.npmjs.org/electron/-/electron-41.2.2.tgz", + "integrity": "sha512-3rzz/hVIpF726W9g7nleQzyF2IOEZbzZnUTUYGhMaEfsoab8fDyOYAWbdBdo4+DczS1Ifz11rdYo8IAAGcRx/g==", "hasInstallScript": true, "peer": true, "dependencies": { diff --git a/test/fixtures/lockfiles/HoistedNodeModuleTest/pnpm max stack.txt b/test/fixtures/lockfiles/HoistedNodeModuleTest/pnpm max stack.txt index 13a58cae1c8..d2ecabe580d 100644 --- a/test/fixtures/lockfiles/HoistedNodeModuleTest/pnpm max stack.txt +++ b/test/fixtures/lockfiles/HoistedNodeModuleTest/pnpm max stack.txt @@ -37,15 +37,15 @@ packages: balanced-match@1.0.2: resolution: {integrity: sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==} - brace-expansion@1.1.13: - resolution: {integrity: sha512-9ZLprWS6EENmhEOpjCYW2c8VkmOvckIJZfkr7rBW6dObmfgJ/L1GpSYW5Hpo9lDz4D1+n0Ckz8rU7FwHDQiG/w==} + brace-expansion@1.1.14: + resolution: {integrity: sha512-MWPGfDxnyzKU7rNOW9SP/c50vi3xrmrua/+6hfPbCS2ABNWfx24vPidzvC7krjU/RTo235sV776ymlsMtGKj8g==} call-bind-apply-helpers@1.0.2: resolution: {integrity: sha512-Sp1ablJ0ivDkSzjcaJdxEunN5/XvksFJ2sMBFfq6x0ryhQV/2b/KwFe21cMpmHtPOSij8K99/wSfoEuTObmuMQ==} engines: {node: '>= 0.4'} - call-bind@1.0.8: - resolution: {integrity: sha512-oKlSFMcMwpUg2ednkhQ454wfWiU/ul3CkJe/PEHcTKuiX6RpbehUiFMXu13HalGZxfUwCQzZG747YXBn1im9ww==} + call-bind@1.0.9: + resolution: {integrity: sha512-a/hy+pNsFUTR+Iz8TCJvXudKVLAnz/DyeSUo10I5yvFDQJBFU2s9uqQpoSrJlroHUKoKqzg+epxyP9lqFdzfBQ==} engines: {node: '>= 0.4'} call-bound@1.0.4: @@ -96,8 +96,8 @@ packages: error-ex@1.3.4: resolution: {integrity: sha512-sqQamAnR14VgCr1A618A3sGrygcpK+HEbenA/HiEAkkUwcZIIB/tgWqHFxWgOyDh4nB4JCRimh79dR5Ywc9MDQ==} - es-abstract@1.24.1: - resolution: {integrity: sha512-zHXBLhP+QehSSbsS9Pt23Gg964240DPd6QCf8WpkqEXxQ7fhdZzYsocOr5u7apWonsS5EjZDmTF+/slGMyasvw==} + es-abstract@1.24.2: + resolution: {integrity: sha512-2FpH9Q5i2RRwyEP1AylXe6nYLR5OhaJTZwmlcP0dL/+JCbgg7yyEo/sEK6HeGZRf3dFpWwThaRHVApXSkW3xeg==} engines: {node: '>= 0.4'} es-define-property@1.0.1: @@ -381,8 +381,8 @@ packages: resolution: {integrity: sha512-dYqgNSZbDwkaJ2ceRd9ojCGjBq+mOm9LmtXnAnEGyHhN/5R7iDW2TRw3h+o/jCFxus3P2LfWIIiwowAjANm7IA==} engines: {node: '>= 0.4'} - resolve@1.22.11: - resolution: {integrity: sha512-RfqAvLnMl313r7c9oclB1HhUEAezcpLjz95wFH4LVuhk9JF/r22qmVP9AMmOU4vMX7Q8pN8jwNg/CSpdFnMjTQ==} + resolve@1.22.12: + resolution: {integrity: sha512-TyeJ1zif53BPfHootBGwPRYT1RUt6oGWsaQr8UyZW/eAm9bKoijtvruSDEmZHm92CwS9nj7/fWttqPCgzep8CA==} engines: {node: '>= 0.4'} hasBin: true @@ -426,8 +426,8 @@ packages: resolution: {integrity: sha512-ObmnIF4hXNg1BqhnHmgbDETF8dLPCggZWBjkQfhZpbszZnYur5DUljTcCHii5LC3J5E0yeO/1LIMyH+UvHQgyw==} engines: {node: '>= 0.4'} - side-channel-list@1.0.0: - resolution: {integrity: sha512-FCLHtRD/gnpCiCHEiJLOwdmFP+wzCmDEkc9y7NsYxeF4u7Btsn1ZuwgwJGxImImHicJArLP4R0yX4c2KCrMrTA==} + side-channel-list@1.0.1: + resolution: {integrity: sha512-mjn/0bi/oUURjc5Xl7IaWi/OJJJumuoJFQJfDDyO46+hBWsfaVM65TBHq2eoZBhzl9EchxOijpkbRC8SVBQU0w==} engines: {node: '>= 0.4'} side-channel-map@1.0.1: @@ -543,9 +543,9 @@ snapshots: arraybuffer.prototype.slice@1.0.4: dependencies: array-buffer-byte-length: 1.0.2 - call-bind: 1.0.8 + call-bind: 1.0.9 define-properties: 1.2.1 - es-abstract: 1.24.1 + es-abstract: 1.24.2 es-errors: 1.3.0 get-intrinsic: 1.3.0 is-array-buffer: 3.0.5 @@ -558,7 +558,7 @@ snapshots: balanced-match@1.0.2: {} - brace-expansion@1.1.13: + brace-expansion@1.1.14: dependencies: balanced-match: 1.0.2 concat-map: 0.0.1 @@ -568,7 +568,7 @@ snapshots: es-errors: 1.3.0 function-bind: 1.1.2 - call-bind@1.0.8: + call-bind@1.0.9: dependencies: call-bind-apply-helpers: 1.0.2 es-define-property: 1.0.1 @@ -642,12 +642,12 @@ snapshots: dependencies: is-arrayish: 0.2.1 - es-abstract@1.24.1: + es-abstract@1.24.2: dependencies: array-buffer-byte-length: 1.0.2 arraybuffer.prototype.slice: 1.0.4 available-typed-arrays: 1.0.7 - call-bind: 1.0.8 + call-bind: 1.0.9 call-bound: 1.0.4 data-view-buffer: 1.0.2 data-view-byte-length: 1.0.2 @@ -730,7 +730,7 @@ snapshots: function.prototype.name@1.1.8: dependencies: - call-bind: 1.0.8 + call-bind: 1.0.9 call-bound: 1.0.4 define-properties: 1.2.1 functions-have-names: 1.2.3 @@ -806,7 +806,7 @@ snapshots: is-array-buffer@3.0.5: dependencies: - call-bind: 1.0.8 + call-bind: 1.0.9 call-bound: 1.0.4 get-intrinsic: 1.3.0 @@ -925,14 +925,14 @@ snapshots: minimatch@3.1.5: dependencies: - brace-expansion: 1.1.13 + brace-expansion: 1.1.14 nice-try@1.0.5: {} normalize-package-data@2.5.0: dependencies: hosted-git-info: 2.8.9 - resolve: 1.22.11 + resolve: 1.22.12 semver: 5.7.2 validate-npm-package-license: 3.0.4 @@ -954,7 +954,7 @@ snapshots: object.assign@4.1.7: dependencies: - call-bind: 1.0.8 + call-bind: 1.0.9 call-bound: 1.0.4 define-properties: 1.2.1 es-object-atoms: 1.1.1 @@ -994,9 +994,9 @@ snapshots: reflect.getprototypeof@1.0.10: dependencies: - call-bind: 1.0.8 + call-bind: 1.0.9 define-properties: 1.2.1 - es-abstract: 1.24.1 + es-abstract: 1.24.2 es-errors: 1.3.0 es-object-atoms: 1.1.1 get-intrinsic: 1.3.0 @@ -1005,22 +1005,23 @@ snapshots: regexp.prototype.flags@1.5.4: dependencies: - call-bind: 1.0.8 + call-bind: 1.0.9 define-properties: 1.2.1 es-errors: 1.3.0 get-proto: 1.0.1 gopd: 1.2.0 set-function-name: 2.0.2 - resolve@1.22.11: + resolve@1.22.12: dependencies: + es-errors: 1.3.0 is-core-module: 2.16.1 path-parse: 1.0.7 supports-preserve-symlinks-flag: 1.0.0 safe-array-concat@1.1.3: dependencies: - call-bind: 1.0.8 + call-bind: 1.0.9 call-bound: 1.0.4 get-intrinsic: 1.3.0 has-symbols: 1.1.0 @@ -1069,7 +1070,7 @@ snapshots: shell-quote@1.8.3: {} - side-channel-list@1.0.0: + side-channel-list@1.0.1: dependencies: es-errors: 1.3.0 object-inspect: 1.13.4 @@ -1093,7 +1094,7 @@ snapshots: dependencies: es-errors: 1.3.0 object-inspect: 1.13.4 - side-channel-list: 1.0.0 + side-channel-list: 1.0.1 side-channel-map: 1.0.1 side-channel-weakmap: 1.0.2 @@ -1118,31 +1119,31 @@ snapshots: string.prototype.padend@3.1.6: dependencies: - call-bind: 1.0.8 + call-bind: 1.0.9 define-properties: 1.2.1 - es-abstract: 1.24.1 + es-abstract: 1.24.2 es-object-atoms: 1.1.1 string.prototype.trim@1.2.10: dependencies: - call-bind: 1.0.8 + call-bind: 1.0.9 call-bound: 1.0.4 define-data-property: 1.1.4 define-properties: 1.2.1 - es-abstract: 1.24.1 + es-abstract: 1.24.2 es-object-atoms: 1.1.1 has-property-descriptors: 1.0.2 string.prototype.trimend@1.0.9: dependencies: - call-bind: 1.0.8 + call-bind: 1.0.9 call-bound: 1.0.4 define-properties: 1.2.1 es-object-atoms: 1.1.1 string.prototype.trimstart@1.0.8: dependencies: - call-bind: 1.0.8 + call-bind: 1.0.9 define-properties: 1.2.1 es-object-atoms: 1.1.1 @@ -1162,7 +1163,7 @@ snapshots: typed-array-byte-length@1.0.3: dependencies: - call-bind: 1.0.8 + call-bind: 1.0.9 for-each: 0.3.5 gopd: 1.2.0 has-proto: 1.2.0 @@ -1171,7 +1172,7 @@ snapshots: typed-array-byte-offset@1.0.4: dependencies: available-typed-arrays: 1.0.7 - call-bind: 1.0.8 + call-bind: 1.0.9 for-each: 0.3.5 gopd: 1.2.0 has-proto: 1.2.0 @@ -1180,7 +1181,7 @@ snapshots: typed-array-length@1.0.7: dependencies: - call-bind: 1.0.8 + call-bind: 1.0.9 for-each: 0.3.5 gopd: 1.2.0 is-typed-array: 1.1.15 @@ -1233,7 +1234,7 @@ snapshots: which-typed-array@1.1.20: dependencies: available-typed-arrays: 1.0.7 - call-bind: 1.0.8 + call-bind: 1.0.9 call-bound: 1.0.4 for-each: 0.3.5 get-proto: 1.0.1 diff --git a/test/fixtures/lockfiles/HoistedNodeModuleTest/pnpm optional dependencies.txt b/test/fixtures/lockfiles/HoistedNodeModuleTest/pnpm optional dependencies.txt index 54b7ea66176..4946a042ab4 100644 --- a/test/fixtures/lockfiles/HoistedNodeModuleTest/pnpm optional dependencies.txt +++ b/test/fixtures/lockfiles/HoistedNodeModuleTest/pnpm optional dependencies.txt @@ -10,7 +10,7 @@ importers: dependencies: electron-clear-data: specifier: 1.0.5 - version: 1.0.5(electron@41.1.1) + version: 1.0.5(electron@41.2.0) optionalDependencies: debug: specifier: 3.1.0 @@ -108,8 +108,8 @@ packages: peerDependencies: electron: '>= 1.2.2' - electron@41.1.1: - resolution: {integrity: sha512-8bgvDhBjli+3Z2YCKgzzoBPh6391pr7Xv2h/tTJG4ETgvPvUxZomObbZLs31mUzYb6VrlcDDd9cyWyNKtPm3tA==} + electron@41.2.0: + resolution: {integrity: sha512-0OKLiymqfV0WK68RBXqAm3Myad2TpI5wwxLCBEUcH5Nugo3YfSk7p1Js/AL9266qTz5xZioUnxt9hG8FFwax0g==} engines: {node: '>= 12.20.55'} hasBin: true @@ -394,11 +394,11 @@ snapshots: detect-node@2.1.0: optional: true - electron-clear-data@1.0.5(electron@41.1.1): + electron-clear-data@1.0.5(electron@41.2.0): dependencies: - electron: 41.1.1 + electron: 41.2.0 - electron@41.1.1: + electron@41.2.0: dependencies: '@electron/get': 2.0.3 '@types/node': 24.12.2 diff --git a/test/fixtures/lockfiles/HoistedNodeModuleTest/yarn berry version conflict with hoisted dependencies.txt b/test/fixtures/lockfiles/HoistedNodeModuleTest/yarn berry version conflict with hoisted dependencies.txt index 287456d803a..b46f201d06d 100644 --- a/test/fixtures/lockfiles/HoistedNodeModuleTest/yarn berry version conflict with hoisted dependencies.txt +++ b/test/fixtures/lockfiles/HoistedNodeModuleTest/yarn berry version conflict with hoisted dependencies.txt @@ -52,26 +52,26 @@ __metadata: languageName: node linkType: hard -"@csstools/css-calc@npm:^3.0.0, @csstools/css-calc@npm:^3.1.1": - version: 3.1.1 - resolution: "@csstools/css-calc@npm:3.1.1" +"@csstools/css-calc@npm:^3.0.0, @csstools/css-calc@npm:^3.2.0": + version: 3.2.0 + resolution: "@csstools/css-calc@npm:3.2.0" peerDependencies: "@csstools/css-parser-algorithms": ^4.0.0 "@csstools/css-tokenizer": ^4.0.0 - checksum: 22d76fa9a83b58ad61c9341937549304f51dfddbd7f03324e3ea4a59c7e317f54ec9c75122bf9ccf8b32c448ea5b453c239cbaa161a1a4995ee0779bb81ecbc8 + checksum: 28a9d66af845f532de80f1f6a031be4a6764b38d6c1236d55cfd32d8c6ba98e282b5e79094497c889137e0d4f2cdf74fdfa68b3ed05b9738c5fe994a30870cca languageName: node linkType: hard "@csstools/css-color-parser@npm:^4.0.1": - version: 4.0.2 - resolution: "@csstools/css-color-parser@npm:4.0.2" + version: 4.1.0 + resolution: "@csstools/css-color-parser@npm:4.1.0" dependencies: "@csstools/color-helpers": ^6.0.2 - "@csstools/css-calc": ^3.1.1 + "@csstools/css-calc": ^3.2.0 peerDependencies: "@csstools/css-parser-algorithms": ^4.0.0 "@csstools/css-tokenizer": ^4.0.0 - checksum: 97f20f8eb9395eccd532cccdd0fbd03bdbdcdb204f2bfbac368fc0c1a1458bbfae6e04f36b322979a8f5e0d23e75affc0f19d0cd3b3055bd2fe5fb825cd5677b + checksum: 1fa0f110a13a6c38c259542902a4aa6b91d6fc9752345ed07651992860cd79abe6d906665cacc8e1ace38c0adf8775534566abc93ad134ef90bb550f4c473206 languageName: node linkType: hard @@ -85,14 +85,14 @@ __metadata: linkType: hard "@csstools/css-syntax-patches-for-csstree@npm:^1.0.21": - version: 1.1.2 - resolution: "@csstools/css-syntax-patches-for-csstree@npm:1.1.2" + version: 1.1.3 + resolution: "@csstools/css-syntax-patches-for-csstree@npm:1.1.3" peerDependencies: css-tree: ^3.2.1 peerDependenciesMeta: css-tree: optional: true - checksum: 057eec09c0697a57d4d395a37df5b818b3ea39c5298316919ec55f29ef5d82c0003c77e2968c68bc89a179bbf2be6830beb97efd857be46a34172ccfa6018779 + checksum: c5a41b450de3dd8a8baf4c33d6a124db702773d23122cd940fc9b925ce0559d6a7b08b783940765bf47cfab80eaa238f8876e9dc3512575075b02d5674c59f0c languageName: node linkType: hard @@ -196,10 +196,10 @@ __metadata: languageName: node linkType: hard -"entities@npm:^6.0.0": - version: 6.0.1 - resolution: "entities@npm:6.0.1" - checksum: 937b952e81aca641660a6a07f70001c6821973dea3ae7f6a5013eadce94620f3ed2e9c745832d503c8811ce6e97704d8a0396159580c0e567d815234de7fdecf +"entities@npm:^8.0.0": + version: 8.0.0 + resolution: "entities@npm:8.0.0" + checksum: 0b5dcab25b0ed82859555086c0a80d6c7e1fbae76af4de528c45de742fabb54c5f9c788351a4d966211a2997651f2746d6491c3b29bb49abc425384fdc98315e languageName: node linkType: hard @@ -290,9 +290,9 @@ __metadata: linkType: hard "lru-cache@npm:^11.2.4, lru-cache@npm:^11.2.5, lru-cache@npm:^11.2.6": - version: 11.3.3 - resolution: "lru-cache@npm:11.3.3" - checksum: 35d2d2565e7ac35c90b7b57dacddb2728c8f071640ca9bc3d83f5641a7dd1ca1ac2a0aa23eb72c6fd23653f49a5da04262cc28a19f14946869ff69dcc2e75746 + version: 11.3.5 + resolution: "lru-cache@npm:11.3.5" + checksum: 4b0110312c0d7224ab7ab4b6c30f639312d75b8246b6e90719c412c79256db49453c246e0c8ee02d7b7b1494c52bbd7d4f2d135c768ed2b6ba3e5ccbfe74de10 languageName: node linkType: hard @@ -341,11 +341,11 @@ __metadata: linkType: hard "parse5@npm:^8.0.0": - version: 8.0.0 - resolution: "parse5@npm:8.0.0" + version: 8.0.1 + resolution: "parse5@npm:8.0.1" dependencies: - entities: ^6.0.0 - checksum: 6f5844c71214f70b97e09573699693cfaa37cbb0ab3a41af4c0d295474a82c23cd48b2daaa2cefa5f5cdc7d0bfa6b1949300668155f54d389e51edec1dc6d27a + entities: ^8.0.0 + checksum: 6500541f52eea5cd7b4868355f912386bd5b801aa1ee1a7d8199b850374ce1aec1dda31f099f2b17b20794ad7739a880d6d07366c17c51bb8746d8b63aa32318 languageName: node linkType: hard diff --git a/test/fixtures/lockfiles/HoistedNodeModuleTest/yarn max stack.txt b/test/fixtures/lockfiles/HoistedNodeModuleTest/yarn max stack.txt index 601a4bece6e..8a56f3f87b4 100644 --- a/test/fixtures/lockfiles/HoistedNodeModuleTest/yarn max stack.txt +++ b/test/fixtures/lockfiles/HoistedNodeModuleTest/yarn max stack.txt @@ -63,7 +63,7 @@ call-bind-apply-helpers@^1.0.1, call-bind-apply-helpers@^1.0.2: es-errors "^1.3.0" function-bind "^1.1.2" -call-bind@^1.0.7, call-bind@^1.0.8: +call-bind@^1.0.7, call-bind@^1.0.8, call-bind@^1.0.9: version "1.0.9" resolved "https://registry.yarnpkg.com/call-bind/-/call-bind-1.0.9.tgz#39a644700c80bc7d0ca9102fc6d1d43b2fd7eee7" integrity sha512-a/hy+pNsFUTR+Iz8TCJvXudKVLAnz/DyeSUo10I5yvFDQJBFU2s9uqQpoSrJlroHUKoKqzg+epxyP9lqFdzfBQ== @@ -402,9 +402,9 @@ has-tostringtag@^1.0.2: has-symbols "^1.0.3" hasown@^2.0.2: - version "2.0.2" - resolved "https://registry.yarnpkg.com/hasown/-/hasown-2.0.2.tgz#003eaf91be7adc372e84ec59dc37252cedb80003" - integrity sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ== + version "2.0.3" + resolved "https://registry.yarnpkg.com/hasown/-/hasown-2.0.3.tgz#5e5c2b15b60370a4c7930c383dfb76bf17bc403c" + integrity sha512-ej4AhfhfL2Q2zpMmLo7U1Uv9+PyhIZpgQLGT1F9miIGmiCJIoCgSmczFdrc97mWT4kVY72KA+WnnhJ5pghSvSg== dependencies: function-bind "^1.1.2" @@ -782,13 +782,13 @@ resolve@^1.10.0: supports-preserve-symlinks-flag "^1.0.0" safe-array-concat@^1.1.3: - version "1.1.3" - resolved "https://registry.yarnpkg.com/safe-array-concat/-/safe-array-concat-1.1.3.tgz#c9e54ec4f603b0bbb8e7e5007a5ee7aecd1538c3" - integrity sha512-AURm5f0jYEOydBj7VQlVvDrjeFgthDdEF5H1dP+6mNpoXOMo1quQqJ4wvJDyRZ9+pO3kGWoOdmV08cSv2aJV6Q== + version "1.1.4" + resolved "https://registry.yarnpkg.com/safe-array-concat/-/safe-array-concat-1.1.4.tgz#a54cc9b61a57f33b42abad3cbdda3a2b38cc5719" + integrity sha512-wtZlHyOje6OZTGqAoaDKxFkgRtkF9CnHAVnCHKfuj200wAgL+bSJhdsCD2l0Qx/2ekEXjPWcyKkfGb5CPboslg== dependencies: - call-bind "^1.0.8" - call-bound "^1.0.2" - get-intrinsic "^1.2.6" + call-bind "^1.0.9" + call-bound "^1.0.4" + get-intrinsic "^1.3.0" has-symbols "^1.1.0" isarray "^2.0.5" diff --git a/test/fixtures/lockfiles/HoistedNodeModuleTest/yarn ms.txt b/test/fixtures/lockfiles/HoistedNodeModuleTest/yarn ms.txt index e01b5959c3c..072b0904afa 100644 --- a/test/fixtures/lockfiles/HoistedNodeModuleTest/yarn ms.txt +++ b/test/fixtures/lockfiles/HoistedNodeModuleTest/yarn ms.txt @@ -499,10 +499,10 @@ dependencies: undici-types "~7.19.0" -"@types/node@^20.9.0": - version "20.19.39" - resolved "https://registry.yarnpkg.com/@types/node/-/node-20.19.39.tgz#e98a3b575574070cd34b784bd173767269f95e99" - integrity sha512-orrrD74MBUyK8jOAD/r0+lfa1I2MO6I+vAkmAWzMYbCcgrN4lCrmK52gRFQq/JRxfYPfonkr4b0jcY7Olqdqbw== +"@types/node@^22.7.7": + version "22.19.17" + resolved "https://registry.yarnpkg.com/@types/node/-/node-22.19.17.tgz#09c71fb34ba2510f8ac865361b1fcb9552b8a581" + integrity sha512-wGdMcf+vPYM6jikpS/qhg6WiqSV/OhG+jeeHT/KlVqxYfD40iYJf9/AE1uQxVWFvU7MipKRkRv8NSHiCGgPr8Q== dependencies: undici-types "~6.21.0" @@ -659,13 +659,13 @@ electron-clear-data@1.0.5: resolved "https://registry.yarnpkg.com/electron-clear-data/-/electron-clear-data-1.0.5.tgz#bc636f6850f57b1e8ed3fe2e57ca877e30d31bc9" integrity sha512-vynYILZ2F+S5qnc81bnTOfh8uCVlxP6j42T7h/ELaDL+vxmlT1QNgte8KNuXb+s9ed+Qx4IIRbMRUcbAJa/8rA== -electron@34.0.2: - version "34.0.2" - resolved "https://registry.yarnpkg.com/electron/-/electron-34.0.2.tgz#84432ab1efa165e260ce943c472879228b620573" - integrity sha512-u3F+DSUlg9NaGS+9qnYmSRN8VjAnc3LJDDk1ye1uISJnh4gjG76y3681qLowsPMx4obvCP2eBINnmbLo0yT5WA== +electron@35.7.5: + version "35.7.5" + resolved "https://registry.yarnpkg.com/electron/-/electron-35.7.5.tgz#294a4aebb2ad2a884de730c410f2358d061e8d53" + integrity sha512-dnL+JvLraKZl7iusXTVTGYs10TKfzUi30uEDTqsmTm0guN9V2tbOjTzyIZbh9n3ygUjgEYyo+igAwMRXIi3IPw== dependencies: "@electron/get" "^2.0.0" - "@types/node" "^20.9.0" + "@types/node" "^22.7.7" extract-zip "^2.0.1" end-of-stream@^1.1.0: @@ -799,9 +799,9 @@ has-property-descriptors@^1.0.0: es-define-property "^1.0.0" hasown@^2.0.2: - version "2.0.2" - resolved "https://registry.yarnpkg.com/hasown/-/hasown-2.0.2.tgz#003eaf91be7adc372e84ec59dc37252cedb80003" - integrity sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ== + version "2.0.3" + resolved "https://registry.yarnpkg.com/hasown/-/hasown-2.0.3.tgz#5e5c2b15b60370a4c7930c383dfb76bf17bc403c" + integrity sha512-ej4AhfhfL2Q2zpMmLo7U1Uv9+PyhIZpgQLGT1F9miIGmiCJIoCgSmczFdrc97mWT4kVY72KA+WnnhJ5pghSvSg== dependencies: function-bind "^1.1.2" diff --git a/test/fixtures/lockfiles/HoistedNodeModuleTest/yarn parse-asn1.txt b/test/fixtures/lockfiles/HoistedNodeModuleTest/yarn parse-asn1.txt index 966048a41ce..6ed387b6c8b 100644 --- a/test/fixtures/lockfiles/HoistedNodeModuleTest/yarn parse-asn1.txt +++ b/test/fixtures/lockfiles/HoistedNodeModuleTest/yarn parse-asn1.txt @@ -225,9 +225,9 @@ hash-base@~3.0: safe-buffer "^5.2.1" hasown@^2.0.2: - version "2.0.2" - resolved "https://registry.yarnpkg.com/hasown/-/hasown-2.0.2.tgz#003eaf91be7adc372e84ec59dc37252cedb80003" - integrity sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ== + version "2.0.3" + resolved "https://registry.yarnpkg.com/hasown/-/hasown-2.0.3.tgz#5e5c2b15b60370a4c7930c383dfb76bf17bc403c" + integrity sha512-ej4AhfhfL2Q2zpMmLo7U1Uv9+PyhIZpgQLGT1F9miIGmiCJIoCgSmczFdrc97mWT4kVY72KA+WnnhJ5pghSvSg== dependencies: function-bind "^1.1.2" diff --git a/test/fixtures/lockfiles/HoistedNodeModuleTest/yarn two package.json without node_modules.txt b/test/fixtures/lockfiles/HoistedNodeModuleTest/yarn two package.json without node_modules.txt index a40c38d6ecd..d1f10ebfc31 100644 --- a/test/fixtures/lockfiles/HoistedNodeModuleTest/yarn two package.json without node_modules.txt +++ b/test/fixtures/lockfiles/HoistedNodeModuleTest/yarn two package.json without node_modules.txt @@ -79,11 +79,6 @@ dependencies: "@types/node" "*" -argparse@^2.0.1: - version "2.0.1" - resolved "https://registry.yarnpkg.com/argparse/-/argparse-2.0.1.tgz#246f50f3ca78a3240f6c997e8a9bd1eac49e4b38" - integrity sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q== - boolean@^3.0.1: version "3.2.0" resolved "https://registry.yarnpkg.com/boolean/-/boolean-3.2.0.tgz#9e5294af4e98314494cbb17979fa54ca159f116b" @@ -94,14 +89,6 @@ buffer-crc32@~0.2.3: resolved "https://registry.yarnpkg.com/buffer-crc32/-/buffer-crc32-0.2.13.tgz#0d333e3f00eac50aa1454abd30ef8c2a5d9a7242" integrity sha512-VO9Ht/+p3SN7SKWqcrgEzjGbRSJYTx+Q1pTQC0wrWqHx0vpJraQ6GtHx8tvcg1rlK1byhU5gccxgOgj7B0TDkQ== -builder-util-runtime@9.5.1: - version "9.5.1" - resolved "https://registry.yarnpkg.com/builder-util-runtime/-/builder-util-runtime-9.5.1.tgz#74125fb374d1ecbf472ae1787485485ff7619702" - integrity sha512-qt41tMfgHTllhResqM5DcnHyDIWNgzHvuY2jDcYP9iaGpkWxTUzV6GQjDeLnlR1/DtdlcsWQbA7sByMpmJFTLQ== - dependencies: - debug "^4.3.4" - sax "^1.2.4" - cacheable-lookup@^5.0.3: version "5.0.4" resolved "https://registry.yarnpkg.com/cacheable-lookup/-/cacheable-lookup-5.0.4.tgz#5a6b865b2c44357be3d5ebc2a467b032719a7005" @@ -127,7 +114,7 @@ clone-response@^1.0.2: dependencies: mimic-response "^1.0.0" -debug@^4.1.0, debug@^4.1.1, debug@^4.3.4: +debug@^4.1.0, debug@^4.1.1: version "4.4.3" resolved "https://registry.yarnpkg.com/debug/-/debug-4.4.3.tgz#c6ae432d9bd9662582fce08709b038c58e9e3d6a" integrity sha512-RGwwWnwQvkVfavKVt22FGLw+xYSdzARwm0ru6DhTVA3umU5hZc28V3kO4stgYryrTlLpuvgI9GiijltAjNbcqA== @@ -169,20 +156,6 @@ detect-node@^2.0.4: resolved "https://registry.yarnpkg.com/detect-node/-/detect-node-2.1.0.tgz#c9c70775a49c3d03bc2c06d9a73be550f978f8b1" integrity sha512-T0NIuQpnTvFDATNuHN5roPwSBG83rFsuO+MXXH9/3N1eFbn4wcPjttvjMLEPWJ0RGUYgQE7cGgS3tNxbqCGM7g== -electron-updater@6.8.3: - version "6.8.3" - resolved "https://registry.yarnpkg.com/electron-updater/-/electron-updater-6.8.3.tgz#bb0c8ef6509e5c67663f6481a729244d1bce21fb" - integrity sha512-Z6sgw3jgbikWKXei1ENdqFOxBP0WlXg3TtKfz0rgw2vIZFJUyI4pD7ZN7jrkm7EoMK+tcm/qTnPUdqfZukBlBQ== - dependencies: - builder-util-runtime "9.5.1" - fs-extra "^10.1.0" - js-yaml "^4.1.0" - lazy-val "^1.0.5" - lodash.escaperegexp "^4.1.2" - lodash.isequal "^4.5.0" - semver "~7.7.3" - tiny-typed-emitter "^2.1.0" - electron@35.7.5: version "35.7.5" resolved "https://registry.yarnpkg.com/electron/-/electron-35.7.5.tgz#294a4aebb2ad2a884de730c410f2358d061e8d53" @@ -251,15 +224,6 @@ fs-extra@11.0.0: jsonfile "^6.0.1" universalify "^2.0.0" -fs-extra@^10.1.0: - version "10.1.0" - resolved "https://registry.yarnpkg.com/fs-extra/-/fs-extra-10.1.0.tgz#02873cfbc4084dde127eaa5f9905eef2325d1abf" - integrity sha512-oRXApq54ETRj4eMiFzGnHWGy+zo5raudjuxN0b8H7s/RU2oW0Wvsx9O0ACRN/kRq9E8Vu/ReskGB5o3ji+FzHQ== - dependencies: - graceful-fs "^4.2.0" - jsonfile "^6.0.1" - universalify "^2.0.0" - fs-extra@^8.1.0: version "8.1.0" resolved "https://registry.yarnpkg.com/fs-extra/-/fs-extra-8.1.0.tgz#49d43c45a88cd9677668cb7be1b46efdb8d2e1c0" @@ -343,12 +307,17 @@ http2-wrapper@^1.0.0-beta.5.2: quick-lru "^5.1.1" resolve-alpn "^1.0.0" -js-yaml@^4.1.0: - version "4.1.1" - resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-4.1.1.tgz#854c292467705b699476e1a2decc0c8a3458806b" - integrity sha512-qQKT4zQxXl8lLwBtHMWwaTcGfFOZviOJet3Oy/xmGk2gZH677CJM9EvtfdSkgWcATZhj/55JZ0rmy3myCT5lsA== +is-number@^6.0.0: + version "6.0.0" + resolved "https://registry.yarnpkg.com/is-number/-/is-number-6.0.0.tgz#e6d15ad31fc262887cccf217ae5f9316f81b1995" + integrity sha512-Wu1VHeILBK8KAWJUAiSZQX94GmOE45Rg6/538fKwiloUu21KncEkYGPqob2oSZ5mUT73vLGrHQjKw3KMPwfDzg== + +is-odd@3.0.1: + version "3.0.1" + resolved "https://registry.yarnpkg.com/is-odd/-/is-odd-3.0.1.tgz#65101baf3727d728b66fa62f50cda7f2d3989601" + integrity sha512-CQpnWPrDwmP1+SMHXZhtLtJv90yiyVfluGsX5iNCVkrhQtU3TQHsUWPG9wkdk9Lgd5yNpAg9jQEo90CBaXgWMA== dependencies: - argparse "^2.0.1" + is-number "^6.0.0" json-buffer@3.0.1: version "3.0.1" @@ -368,9 +337,9 @@ jsonfile@^4.0.0: graceful-fs "^4.1.6" jsonfile@^6.0.1: - version "6.2.0" - resolved "https://registry.yarnpkg.com/jsonfile/-/jsonfile-6.2.0.tgz#7c265bd1b65de6977478300087c99f1c84383f62" - integrity sha512-FGuPw30AdOIUTRMC2OMRtQV+jkVj2cfPqSeWXv1NEAJ1qZ5zb1X6z1mFhbfOB/iy3ssJCD+3KuZ8r8C3uVFlAg== + version "6.2.1" + resolved "https://registry.yarnpkg.com/jsonfile/-/jsonfile-6.2.1.tgz#b6e31717f22cc37330b081ce0051ed5de53af2f6" + integrity sha512-zwOTdL3rFQ/lRdBnntKVOX6k5cKJwEc1HdilT71BWEu7J41gXIB2MRp+vxduPSwZJPWBxEzv4yH1wYLJGUHX4Q== dependencies: universalify "^2.0.0" optionalDependencies: @@ -383,21 +352,6 @@ keyv@^4.0.0: dependencies: json-buffer "3.0.1" -lazy-val@^1.0.5: - version "1.0.5" - resolved "https://registry.yarnpkg.com/lazy-val/-/lazy-val-1.0.5.tgz#6cf3b9f5bc31cee7ee3e369c0832b7583dcd923d" - integrity sha512-0/BnGCCfyUMkBpeDgWihanIAF9JmZhHBgUhEqzvf+adhNGLoP6TaiI5oF8oyb3I45P+PcnrqihSf01M0l0G5+Q== - -lodash.escaperegexp@^4.1.2: - version "4.1.2" - resolved "https://registry.yarnpkg.com/lodash.escaperegexp/-/lodash.escaperegexp-4.1.2.tgz#64762c48618082518ac3df4ccf5d5886dae20347" - integrity sha512-TM9YBvyC84ZxE3rgfefxUWiQKLilstD6k7PTGt6wfbtXF8ixIJLOL3VYyV/z+ZiPLsVxAsKAFVwWlWeb2Y8Yyw== - -lodash.isequal@^4.5.0: - version "4.5.0" - resolved "https://registry.yarnpkg.com/lodash.isequal/-/lodash.isequal-4.5.0.tgz#415c4478f2bcc30120c22ce10ed3226f7d3e18e0" - integrity sha512-pDo3lu8Jhfjqls6GkMgpahsF9kCyayhgykjyLMNFTKWrpVdAQtYyB4muAMWozBB4ig/dtWAmsMxLEI8wuz+DYQ== - lowercase-keys@^2.0.0: version "2.0.0" resolved "https://registry.yarnpkg.com/lowercase-keys/-/lowercase-keys-2.0.0.tgz#2603e78b7b4b0006cbca2fbcc8a3202558ac9479" @@ -494,11 +448,6 @@ roarr@^2.15.3: semver-compare "^1.0.0" sprintf-js "^1.1.2" -sax@^1.2.4: - version "1.6.0" - resolved "https://registry.yarnpkg.com/sax/-/sax-1.6.0.tgz#da59637629307b97e7c4cb28e080a7bc38560d5b" - integrity sha512-6R3J5M4AcbtLUdZmRv2SygeVaM7IhrLXu9BmnOGmmACak8fiUtOsYNWUS4uK7upbmHIBbLBeFeI//477BKLBzA== - semver-compare@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/semver-compare/-/semver-compare-1.0.0.tgz#0dee216a1c941ab37e9efb1788f6afc5ff5537fc" @@ -509,7 +458,7 @@ semver@^6.2.0: resolved "https://registry.yarnpkg.com/semver/-/semver-6.3.1.tgz#556d2ef8689146e46dcea4bfdd095f3434dffcb4" integrity sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA== -semver@^7.3.2, semver@~7.7.3: +semver@^7.3.2: version "7.7.4" resolved "https://registry.yarnpkg.com/semver/-/semver-7.7.4.tgz#28464e36060e991fa7a11d0279d2d3f3b57a7e8a" integrity sha512-vFKC2IEtQnVhpT78h1Yp8wzwrf8CM+MzKMHGJZfBtzhZNycRFnXsHk6E5TxIkkMsgNS7mdX3AGB7x2QM2di4lA== @@ -533,11 +482,6 @@ sumchecker@^3.0.1: dependencies: debug "^4.1.0" -tiny-typed-emitter@^2.1.0: - version "2.1.0" - resolved "https://registry.yarnpkg.com/tiny-typed-emitter/-/tiny-typed-emitter-2.1.0.tgz#b3b027fdd389ff81a152c8e847ee2f5be9fad7b5" - integrity sha512-qVtvMxeXbVej0cQWKqVSSAHmKZEHAvxdF8HEUBFWts8h+xEo5m/lEiPakuyZ3BnCBjOD8i24kzNOiOLLgsSxhA== - type-fest@^0.13.1: version "0.13.1" resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.13.1.tgz#0172cb5bce80b0bd542ea348db50c7e21834d934" diff --git a/test/fixtures/lockfiles/HoistedNodeModuleTest/yarn two package.json.txt b/test/fixtures/lockfiles/HoistedNodeModuleTest/yarn two package.json.txt index 4bce111bb7e..e2cb4a4a54e 100644 --- a/test/fixtures/lockfiles/HoistedNodeModuleTest/yarn two package.json.txt +++ b/test/fixtures/lockfiles/HoistedNodeModuleTest/yarn two package.json.txt @@ -84,14 +84,6 @@ resolved "https://registry.yarnpkg.com/@yarnpkg/lockfile/-/lockfile-1.1.0.tgz#e77a97fbd345b76d83245edcd17d393b1b41fb31" integrity sha512-GpSwvyXOcOOlV70vbnzjj4fW5xW/FdUF6nQEt1ENy7m4ZCczi1+/buVUPAqmGfqznsORNFzUMjctTIp8a9tuCQ== -accepts@1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/accepts/-/accepts-1.0.0.tgz#3604c765586c3b9cf7877b6937cdbd4587f947dc" - integrity sha512-2GdyQ5yRXA5MZi1gmU/XUFQTo7FtXsR2Jt90pl1pQftbsRdXQn69Mycn7xNGxVVmu1xdzZKe/GyMHnDlcV7ojg== - dependencies: - mime "~1.2.11" - negotiator "~0.3.0" - ansi-styles@^4.1.0: version "4.3.0" resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-4.3.0.tgz#edd803628ae71c04c85ae7a0906edad34b648937" @@ -99,11 +91,6 @@ ansi-styles@^4.1.0: dependencies: color-convert "^2.0.1" -argparse@^2.0.1: - version "2.0.1" - resolved "https://registry.yarnpkg.com/argparse/-/argparse-2.0.1.tgz#246f50f3ca78a3240f6c997e8a9bd1eac49e4b38" - integrity sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q== - at-least-node@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/at-least-node/-/at-least-node-1.0.0.tgz#602cd4b46e844ad4effc92a8011a3c46e0238dc2" @@ -134,24 +121,11 @@ braces@^3.0.3: dependencies: fill-range "^7.1.1" -buffer-crc32@0.2.1: - version "0.2.1" - resolved "https://registry.yarnpkg.com/buffer-crc32/-/buffer-crc32-0.2.1.tgz#be3e5382fc02b6d6324956ac1af98aa98b08534c" - integrity sha512-vMfBIRp/wjlpueSz7Sb0OmO7C5SH58SSmbsT8G4D48YfO/Zgbr29xNXMpZVSC14ujVJfrZZH1Bl+kXYRQPuvfQ== - buffer-crc32@~0.2.3: version "0.2.13" resolved "https://registry.yarnpkg.com/buffer-crc32/-/buffer-crc32-0.2.13.tgz#0d333e3f00eac50aa1454abd30ef8c2a5d9a7242" integrity sha512-VO9Ht/+p3SN7SKWqcrgEzjGbRSJYTx+Q1pTQC0wrWqHx0vpJraQ6GtHx8tvcg1rlK1byhU5gccxgOgj7B0TDkQ== -builder-util-runtime@9.5.1: - version "9.5.1" - resolved "https://registry.yarnpkg.com/builder-util-runtime/-/builder-util-runtime-9.5.1.tgz#74125fb374d1ecbf472ae1787485485ff7619702" - integrity sha512-qt41tMfgHTllhResqM5DcnHyDIWNgzHvuY2jDcYP9iaGpkWxTUzV6GQjDeLnlR1/DtdlcsWQbA7sByMpmJFTLQ== - dependencies: - debug "^4.3.4" - sax "^1.2.4" - cacheable-lookup@^5.0.3: version "5.0.4" resolved "https://registry.yarnpkg.com/cacheable-lookup/-/cacheable-lookup-5.0.4.tgz#5a6b865b2c44357be3d5ebc2a467b032719a7005" @@ -233,16 +207,6 @@ concat-map@0.0.1: resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" integrity sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg== -cookie-signature@1.0.3: - version "1.0.3" - resolved "https://registry.yarnpkg.com/cookie-signature/-/cookie-signature-1.0.3.tgz#91cd997cc51fb641595738c69cda020328f50ff9" - integrity sha512-/KzKzsm0OlguYov01OlOpTkX5MhBKUmfL/KMum7R80rPKheb9AwUzr78TwtBt1OdbnWrt4X+wxbTfcQ3noZqHw== - -cookie@0.1.0: - version "0.1.0" - resolved "https://registry.yarnpkg.com/cookie/-/cookie-0.1.0.tgz#90eb469ddce905c866de687efc43131d8801f9d0" - integrity sha512-YSNOBX085/nzHvrTLEHYHoNdkvpLU1MPjU3r1IGawudZJjfuqnRNIFrcOJJ7bfwC+HWbHL1Y4yMkC0O+HWjV7w== - cross-spawn@^7.0.3: version "7.0.6" resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-7.0.6.tgz#8a58fe78f00dcd70c370451759dfbfaf03e8ee9f" @@ -252,18 +216,13 @@ cross-spawn@^7.0.3: shebang-command "^2.0.0" which "^2.0.1" -debug@*, debug@^4.1.0, debug@^4.1.1, debug@^4.3.4: +debug@^4.1.0, debug@^4.1.1: version "4.4.3" resolved "https://registry.yarnpkg.com/debug/-/debug-4.4.3.tgz#c6ae432d9bd9662582fce08709b038c58e9e3d6a" integrity sha512-RGwwWnwQvkVfavKVt22FGLw+xYSdzARwm0ru6DhTVA3umU5hZc28V3kO4stgYryrTlLpuvgI9GiijltAjNbcqA== dependencies: ms "^2.1.3" -"debug@>= 0.7.3 < 1": - version "0.8.1" - resolved "https://registry.yarnpkg.com/debug/-/debug-0.8.1.tgz#20ff4d26f5e422cb68a1bacbbb61039ad8c1c130" - integrity sha512-HlXEJm99YsRjLJ8xmuz0Lq8YUwrv7hAJkTEr6/Em3sUlSUNl0UdFA+1SrY4fnykeq1FVkUEUtwRGHs9VvlYbGA== - decompress-response@^6.0.0: version "6.0.0" resolved "https://registry.yarnpkg.com/decompress-response/-/decompress-response-6.0.0.tgz#ca387612ddb7e104bd16d85aab00d5ecf09c66fc" @@ -308,20 +267,6 @@ dunder-proto@^1.0.1: es-errors "^1.3.0" gopd "^1.2.0" -electron-updater@6.8.3: - version "6.8.3" - resolved "https://registry.yarnpkg.com/electron-updater/-/electron-updater-6.8.3.tgz#bb0c8ef6509e5c67663f6481a729244d1bce21fb" - integrity sha512-Z6sgw3jgbikWKXei1ENdqFOxBP0WlXg3TtKfz0rgw2vIZFJUyI4pD7ZN7jrkm7EoMK+tcm/qTnPUdqfZukBlBQ== - dependencies: - builder-util-runtime "9.5.1" - fs-extra "^10.1.0" - js-yaml "^4.1.0" - lazy-val "^1.0.5" - lodash.escaperegexp "^4.1.2" - lodash.isequal "^4.5.0" - semver "~7.7.3" - tiny-typed-emitter "^2.1.0" - electron@35.7.5: version "35.7.5" resolved "https://registry.yarnpkg.com/electron/-/electron-35.7.5.tgz#294a4aebb2ad2a884de730c410f2358d061e8d53" @@ -365,39 +310,11 @@ es6-error@^4.1.1: resolved "https://registry.yarnpkg.com/es6-error/-/es6-error-4.1.1.tgz#9e3af407459deed47e9a91f9b885a84eb05c561d" integrity sha512-Um/+FxMr9CISWh0bi5Zv0iOD+4cFh5qLeks1qhAopKVAJw3drgKbKySikp7wGhDL0HPeaja0P5ULZrxLkniUVg== -escape-html@1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/escape-html/-/escape-html-1.0.1.tgz#181a286ead397a39a92857cfb1d43052e356bff0" - integrity sha512-z6kAnok8fqVTra7Yu77dZF2Y6ETJlxH58wN38wNyuNQLm8xXdKnfNrlSmfXsTePWP03rRVUKHubtUwanwUi7+g== - escape-string-regexp@^4.0.0: version "4.0.0" resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz#14ba83a5d373e3d311e5afca29cf5bfad965bf34" integrity sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA== -express@4.0.0: - version "4.0.0" - resolved "https://registry.yarnpkg.com/express/-/express-4.0.0.tgz#274dc82933c9f574cc38a0ce5ea8172be9c6b094" - integrity sha512-HP2D9TkAYTAfau6FklzmchQQH/7Dh/JmbrbiJanV80rO12Kc00z5tDrqahBG3fR6x/RuUZvpEwiQ91b7UhJ8qQ== - dependencies: - accepts "1.0.0" - buffer-crc32 "0.2.1" - cookie "0.1.0" - cookie-signature "1.0.3" - debug ">= 0.7.3 < 1" - escape-html "1.0.1" - fresh "0.2.2" - merge-descriptors "0.0.2" - methods "0.1.0" - parseurl "1.0.1" - path-to-regexp "0.1.2" - qs "0.6.6" - range-parser "1.0.0" - send "0.2.0" - serve-static "1.0.1" - type-is "1.0.0" - utils-merge "1.0.0" - extract-zip@^2.0.1: version "2.0.1" resolved "https://registry.yarnpkg.com/extract-zip/-/extract-zip-2.0.1.tgz#663dca56fe46df890d5f131ef4a06d22bb8ba13a" @@ -430,21 +347,6 @@ find-yarn-workspace-root@^2.0.0: dependencies: micromatch "^4.0.2" -fresh@0.2.0: - version "0.2.0" - resolved "https://registry.yarnpkg.com/fresh/-/fresh-0.2.0.tgz#bfd9402cf3df12c4a4c310c79f99a3dde13d34a7" - integrity sha512-ckGdAuSRr1wBmnq7CsW7eU37DBwQxHx3vW8foJUIrF56rkOy8Osm6Fe8KSwemwyKejivKki7jVBgpBpBJexmrw== - -fresh@0.2.2: - version "0.2.2" - resolved "https://registry.yarnpkg.com/fresh/-/fresh-0.2.2.tgz#9731dcf5678c7faeb44fb903c4f72df55187fa77" - integrity sha512-ZGGi8GROK//ijm2gB33sUuN9TjN1tC/dvG4Bt4j6IWrVGpMmudUBCxx+Ir7qePsdREfkpQC4FL8W0jeSOsgv1w== - -fresh@~0.2.1: - version "0.2.4" - resolved "https://registry.yarnpkg.com/fresh/-/fresh-0.2.4.tgz#3582499206c9723714190edd74b4604feb4a614c" - integrity sha512-mnBGgIFRNu54GtbkXy6+QKPYW/b5joAURorA8ELeJc/5BBNph6Go1NmHa9dt08ghFnhGuLenrUmNO8Za1CwEUQ== - fs-extra@11.0.0: version "11.0.0" resolved "https://registry.yarnpkg.com/fs-extra/-/fs-extra-11.0.0.tgz#5c50cf225ab1b16804cabd4249b7e58feb4bdbe7" @@ -454,15 +356,6 @@ fs-extra@11.0.0: jsonfile "^6.0.1" universalify "^2.0.0" -fs-extra@^10.1.0: - version "10.1.0" - resolved "https://registry.yarnpkg.com/fs-extra/-/fs-extra-10.1.0.tgz#02873cfbc4084dde127eaa5f9905eef2325d1abf" - integrity sha512-oRXApq54ETRj4eMiFzGnHWGy+zo5raudjuxN0b8H7s/RU2oW0Wvsx9O0ACRN/kRq9E8Vu/ReskGB5o3ji+FzHQ== - dependencies: - graceful-fs "^4.2.0" - jsonfile "^6.0.1" - universalify "^2.0.0" - fs-extra@^8.1.0: version "8.1.0" resolved "https://registry.yarnpkg.com/fs-extra/-/fs-extra-8.1.0.tgz#49d43c45a88cd9677668cb7be1b46efdb8d2e1c0" @@ -600,9 +493,9 @@ has-symbols@^1.1.0: integrity sha512-1cDNdwJ2Jaohmb3sg4OmKaMBwuC48sYni5HUw2DvsC8LjGTLK9h+eb1X6RyuOHe4hT0ULCW68iomhjUoKUqlPQ== hasown@^2.0.2: - version "2.0.2" - resolved "https://registry.yarnpkg.com/hasown/-/hasown-2.0.2.tgz#003eaf91be7adc372e84ec59dc37252cedb80003" - integrity sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ== + version "2.0.3" + resolved "https://registry.yarnpkg.com/hasown/-/hasown-2.0.3.tgz#5e5c2b15b60370a4c7930c383dfb76bf17bc403c" + integrity sha512-ej4AhfhfL2Q2zpMmLo7U1Uv9+PyhIZpgQLGT1F9miIGmiCJIoCgSmczFdrc97mWT4kVY72KA+WnnhJ5pghSvSg== dependencies: function-bind "^1.1.2" @@ -637,11 +530,23 @@ is-docker@^2.0.0: resolved "https://registry.yarnpkg.com/is-docker/-/is-docker-2.2.1.tgz#33eeabe23cfe86f14bde4408a02c0cfb853acdaa" integrity sha512-F+i2BKsFrH66iaUFc0woD8sLy8getkwTwtOBjvs56Cx4CgJDeKQeqfz8wAYiSb8JOprWhHH5p77PbmYCvvUuXQ== +is-number@^6.0.0: + version "6.0.0" + resolved "https://registry.yarnpkg.com/is-number/-/is-number-6.0.0.tgz#e6d15ad31fc262887cccf217ae5f9316f81b1995" + integrity sha512-Wu1VHeILBK8KAWJUAiSZQX94GmOE45Rg6/538fKwiloUu21KncEkYGPqob2oSZ5mUT73vLGrHQjKw3KMPwfDzg== + is-number@^7.0.0: version "7.0.0" resolved "https://registry.yarnpkg.com/is-number/-/is-number-7.0.0.tgz#7535345b896734d5f80c4d06c50955527a14f12b" integrity sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng== +is-odd@3.0.1: + version "3.0.1" + resolved "https://registry.yarnpkg.com/is-odd/-/is-odd-3.0.1.tgz#65101baf3727d728b66fa62f50cda7f2d3989601" + integrity sha512-CQpnWPrDwmP1+SMHXZhtLtJv90yiyVfluGsX5iNCVkrhQtU3TQHsUWPG9wkdk9Lgd5yNpAg9jQEo90CBaXgWMA== + dependencies: + is-number "^6.0.0" + is-wsl@^2.1.1: version "2.2.0" resolved "https://registry.yarnpkg.com/is-wsl/-/is-wsl-2.2.0.tgz#74a4c76e77ca9fd3f932f290c17ea326cd157271" @@ -659,13 +564,6 @@ isexe@^2.0.0: resolved "https://registry.yarnpkg.com/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10" integrity sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw== -js-yaml@^4.1.0: - version "4.1.1" - resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-4.1.1.tgz#854c292467705b699476e1a2decc0c8a3458806b" - integrity sha512-qQKT4zQxXl8lLwBtHMWwaTcGfFOZviOJet3Oy/xmGk2gZH677CJM9EvtfdSkgWcATZhj/55JZ0rmy3myCT5lsA== - dependencies: - argparse "^2.0.1" - json-buffer@3.0.1: version "3.0.1" resolved "https://registry.yarnpkg.com/json-buffer/-/json-buffer-3.0.1.tgz#9338802a30d3b6605fbe0613e094008ca8c05a13" @@ -695,9 +593,9 @@ jsonfile@^4.0.0: graceful-fs "^4.1.6" jsonfile@^6.0.1: - version "6.2.0" - resolved "https://registry.yarnpkg.com/jsonfile/-/jsonfile-6.2.0.tgz#7c265bd1b65de6977478300087c99f1c84383f62" - integrity sha512-FGuPw30AdOIUTRMC2OMRtQV+jkVj2cfPqSeWXv1NEAJ1qZ5zb1X6z1mFhbfOB/iy3ssJCD+3KuZ8r8C3uVFlAg== + version "6.2.1" + resolved "https://registry.yarnpkg.com/jsonfile/-/jsonfile-6.2.1.tgz#b6e31717f22cc37330b081ce0051ed5de53af2f6" + integrity sha512-zwOTdL3rFQ/lRdBnntKVOX6k5cKJwEc1HdilT71BWEu7J41gXIB2MRp+vxduPSwZJPWBxEzv4yH1wYLJGUHX4Q== dependencies: universalify "^2.0.0" optionalDependencies: @@ -722,21 +620,6 @@ klaw-sync@^6.0.0: dependencies: graceful-fs "^4.1.11" -lazy-val@^1.0.5: - version "1.0.5" - resolved "https://registry.yarnpkg.com/lazy-val/-/lazy-val-1.0.5.tgz#6cf3b9f5bc31cee7ee3e369c0832b7583dcd923d" - integrity sha512-0/BnGCCfyUMkBpeDgWihanIAF9JmZhHBgUhEqzvf+adhNGLoP6TaiI5oF8oyb3I45P+PcnrqihSf01M0l0G5+Q== - -lodash.escaperegexp@^4.1.2: - version "4.1.2" - resolved "https://registry.yarnpkg.com/lodash.escaperegexp/-/lodash.escaperegexp-4.1.2.tgz#64762c48618082518ac3df4ccf5d5886dae20347" - integrity sha512-TM9YBvyC84ZxE3rgfefxUWiQKLilstD6k7PTGt6wfbtXF8ixIJLOL3VYyV/z+ZiPLsVxAsKAFVwWlWeb2Y8Yyw== - -lodash.isequal@^4.5.0: - version "4.5.0" - resolved "https://registry.yarnpkg.com/lodash.isequal/-/lodash.isequal-4.5.0.tgz#415c4478f2bcc30120c22ce10ed3226f7d3e18e0" - integrity sha512-pDo3lu8Jhfjqls6GkMgpahsF9kCyayhgykjyLMNFTKWrpVdAQtYyB4muAMWozBB4ig/dtWAmsMxLEI8wuz+DYQ== - lowercase-keys@^2.0.0: version "2.0.0" resolved "https://registry.yarnpkg.com/lowercase-keys/-/lowercase-keys-2.0.0.tgz#2603e78b7b4b0006cbca2fbcc8a3202558ac9479" @@ -754,16 +637,6 @@ math-intrinsics@^1.1.0: resolved "https://registry.yarnpkg.com/math-intrinsics/-/math-intrinsics-1.1.0.tgz#a0dd74be81e2aa5c2f27e65ce283605ee4e2b7f9" integrity sha512-/IXtbwEk5HTPyEwyKX6hGkYXxM9nbj64B+ilVJnC/R6B0pH5G4V3b0pVbL7DBj4tkhBAppbQUlf6F6Xl9LHu1g== -merge-descriptors@0.0.2: - version "0.0.2" - resolved "https://registry.yarnpkg.com/merge-descriptors/-/merge-descriptors-0.0.2.tgz#c36a52a781437513c57275f39dd9d317514ac8c7" - integrity sha512-dYBT4Ep+t/qnPeJcnMymmhTdd4g8/hn48ciaDqLAkfRf8abzLPS6Rb6EBdz5CZCL8tzZuI5ps9MhGQGxk+EuKg== - -methods@0.1.0: - version "0.1.0" - resolved "https://registry.yarnpkg.com/methods/-/methods-0.1.0.tgz#335d429eefd21b7bacf2e9c922a8d2bd14a30e4f" - integrity sha512-N4cn4CbDqu7Fp3AT4z3AsO19calgczhsmCGzXLCiUOrWg9sjb1B+yKFKOrnnPGKKvjyJBmw+k6b3adFN2LbuBw== - micromatch@^4.0.2: version "4.0.8" resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-4.0.8.tgz#d66fa18f3a47076789320b9b1af32bd86d9fa202" @@ -772,11 +645,6 @@ micromatch@^4.0.2: braces "^3.0.3" picomatch "^2.3.1" -mime@~1.2.11, mime@~1.2.9: - version "1.2.11" - resolved "https://registry.yarnpkg.com/mime/-/mime-1.2.11.tgz#58203eed86e3a5ef17aed2b7d9ebd47f0a60dd10" - integrity sha512-Ysa2F/nqTNGHhhm9MV8ure4+Hc+Y8AWiqUdHxsO7xu8zc92ND9f3kpALHjaP026Ft17UfxrMt95c50PLUeynBw== - mimic-response@^1.0.0: version "1.0.1" resolved "https://registry.yarnpkg.com/mimic-response/-/mimic-response-1.0.1.tgz#4923538878eef42063cb8a3e3b0798781487ab1b" @@ -804,11 +672,6 @@ ms@^2.1.3: resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.3.tgz#574c8138ce1d2b5861f0b44579dbadd60c6615b2" integrity sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA== -negotiator@~0.3.0: - version "0.3.0" - resolved "https://registry.yarnpkg.com/negotiator/-/negotiator-0.3.0.tgz#706d692efeddf574d57ea9fb1ab89a4fa7ee8f60" - integrity sha512-q9wF64uB31BDZQ44DWf+8gE7y8xSpBdREAsJfnBO2WX9ecsutfUO6S9uWEdixlDLOlWaqnlnFXXwZxUUmyLfgg== - normalize-url@^6.0.1: version "6.1.0" resolved "https://registry.yarnpkg.com/normalize-url/-/normalize-url-6.1.0.tgz#40d0885b535deffe3f3147bec877d05fe4c5668a" @@ -844,11 +707,6 @@ p-cancelable@^2.0.0: resolved "https://registry.yarnpkg.com/p-cancelable/-/p-cancelable-2.1.1.tgz#aab7fbd416582fa32a3db49859c122487c5ed2cf" integrity sha512-BZOr3nRQHOntUjTrH8+Lh54smKHoHyur8We1V8DSMVrl5A2malOOwuJRnKRDjSnkoeBh4at6BwEnb5I7Jl31wg== -parseurl@1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/parseurl/-/parseurl-1.0.1.tgz#2e57dce6efdd37c3518701030944c22bf388b7b4" - integrity sha512-6W9+0+9Ihayqwjgp4OaLLqZ3KDtqPY2PtUPz8YNiy4PamjJv+7x6J9GO93O9rUZOLgaanTPxsKTasxqKkO1iSw== - patch-package@8.0.0: version "8.0.0" resolved "https://registry.yarnpkg.com/patch-package/-/patch-package-8.0.0.tgz#d191e2f1b6e06a4624a0116bcb88edd6714ede61" @@ -880,11 +738,6 @@ path-key@^3.1.0: resolved "https://registry.yarnpkg.com/path-key/-/path-key-3.1.1.tgz#581f6ade658cbba65a0d3380de7753295054f375" integrity sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q== -path-to-regexp@0.1.2: - version "0.1.2" - resolved "https://registry.yarnpkg.com/path-to-regexp/-/path-to-regexp-0.1.2.tgz#9b2b151f9cc3018c9eea50ca95729e05781712b4" - integrity sha512-BZU7Qr+qKkXJX9UBypMNikdZ85cQSjtfMhUykJFLJn4SNF0jhEbb9nMRpnNdA76ESryY8JpMA4k6XKdz3JS1pw== - pend@~1.2.0: version "1.2.0" resolved "https://registry.yarnpkg.com/pend/-/pend-1.2.0.tgz#7a57eb550a6783f9115331fcf4663d5c8e007a50" @@ -908,31 +761,11 @@ pump@^3.0.0: end-of-stream "^1.1.0" once "^1.3.1" -qs@0.6.6: - version "0.6.6" - resolved "https://registry.yarnpkg.com/qs/-/qs-0.6.6.tgz#6e015098ff51968b8a3c819001d5f2c89bc4b107" - integrity sha512-kN+yNdAf29Jgp+AYHUmC7X4QdJPR8czuMWLNLc0aRxkQ7tB3vJQEONKKT9ou/rW7EbqVec11srC9q9BiVbcnHA== - quick-lru@^5.1.1: version "5.1.1" resolved "https://registry.yarnpkg.com/quick-lru/-/quick-lru-5.1.1.tgz#366493e6b3e42a3a6885e2e99d18f80fb7a8c932" integrity sha512-WuyALRjWPDGtt/wzJiadO5AXY+8hZ80hVpe6MyivgraREW751X3SbhRvG3eLKOYN+8VEvqLcf3wdnt44Z4S4SA== -range-parser@0.0.4: - version "0.0.4" - resolved "https://registry.yarnpkg.com/range-parser/-/range-parser-0.0.4.tgz#c0427ffef51c10acba0782a46c9602e744ff620b" - integrity sha512-okJVEq9DbZyg+5lD8pr6ooQmeA0uu8DYIyAU7VK1WUUK7hctI1yw2ZHhKiKjB6RXaDrYRmTR4SsIHkyiQpaLMA== - -range-parser@1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/range-parser/-/range-parser-1.0.0.tgz#a4b264cfe0be5ce36abe3765ac9c2a248746dbc0" - integrity sha512-wOH5LIH2ZHo0P7/bwkR+aNbJ+kv3CHVX4B8qs9GqbtY29fi1bGPV5xczrutN20G+Z4XhRqRMTW3q0S4iyJJPfw== - -range-parser@~1.0.0: - version "1.0.3" - resolved "https://registry.yarnpkg.com/range-parser/-/range-parser-1.0.3.tgz#6872823535c692e2c2a0103826afd82c2e0ff175" - integrity sha512-nDsRrtIxVUO5opg/A8T2S3ebULVIfuh8ECbh4w3N4mWxIiT3QILDJDUQayPqm2e8Q8NUa0RSUkGCfe33AfjR3Q== - resolve-alpn@^1.0.0: version "1.2.1" resolved "https://registry.yarnpkg.com/resolve-alpn/-/resolve-alpn-1.2.1.tgz#b7adbdac3546aaaec20b45e7d8265927072726f9" @@ -964,11 +797,6 @@ roarr@^2.15.3: semver-compare "^1.0.0" sprintf-js "^1.1.2" -sax@^1.2.4: - version "1.6.0" - resolved "https://registry.yarnpkg.com/sax/-/sax-1.6.0.tgz#da59637629307b97e7c4cb28e080a7bc38560d5b" - integrity sha512-6R3J5M4AcbtLUdZmRv2SygeVaM7IhrLXu9BmnOGmmACak8fiUtOsYNWUS4uK7upbmHIBbLBeFeI//477BKLBzA== - semver-compare@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/semver-compare/-/semver-compare-1.0.0.tgz#0dee216a1c941ab37e9efb1788f6afc5ff5537fc" @@ -979,31 +807,11 @@ semver@^6.2.0: resolved "https://registry.yarnpkg.com/semver/-/semver-6.3.1.tgz#556d2ef8689146e46dcea4bfdd095f3434dffcb4" integrity sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA== -semver@^7.3.2, semver@^7.5.3, semver@~7.7.3: +semver@^7.3.2, semver@^7.5.3: version "7.7.4" resolved "https://registry.yarnpkg.com/semver/-/semver-7.7.4.tgz#28464e36060e991fa7a11d0279d2d3f3b57a7e8a" integrity sha512-vFKC2IEtQnVhpT78h1Yp8wzwrf8CM+MzKMHGJZfBtzhZNycRFnXsHk6E5TxIkkMsgNS7mdX3AGB7x2QM2di4lA== -send@0.1.4: - version "0.1.4" - resolved "https://registry.yarnpkg.com/send/-/send-0.1.4.tgz#be70d8d1be01de61821af13780b50345a4f71abd" - integrity sha512-NJnIaB29/EcNqkNneUAm16oEVnzM2LeNBc/hmgKuExv2k9pCZQEw8SHJeCdjqesHJTyWAr7x5HjeOmRFS4BoFw== - dependencies: - debug "*" - fresh "0.2.0" - mime "~1.2.9" - range-parser "0.0.4" - -send@0.2.0: - version "0.2.0" - resolved "https://registry.yarnpkg.com/send/-/send-0.2.0.tgz#067abf45cff8bffb29cbdb7439725b32388a2c58" - integrity sha512-CR/kej5a8BChsMJwpmAtqOgdGI3nemoRaPcoXj/choHibvaOfkYcohcAbd9aEG8MhL9CfRH3KlUb+oHZsdNmTg== - dependencies: - debug "*" - fresh "~0.2.1" - mime "~1.2.9" - range-parser "~1.0.0" - serialize-error@^7.0.1: version "7.0.1" resolved "https://registry.yarnpkg.com/serialize-error/-/serialize-error-7.0.1.tgz#f1360b0447f61ffb483ec4157c737fab7d778e18" @@ -1011,13 +819,6 @@ serialize-error@^7.0.1: dependencies: type-fest "^0.13.1" -serve-static@1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/serve-static/-/serve-static-1.0.1.tgz#10dcbfd44b3e0291a131fc9ab4ab25a9f5a78a42" - integrity sha512-bo0TWkZYykHO97QfRgoaXQQBBmyheAb3MeYFzufTXDHUdaTwJXFa8NejuKbt7UdovoUzB8lJn4gHGQSEC+R4Nw== - dependencies: - send "0.1.4" - set-function-length@^1.2.2: version "1.2.2" resolved "https://registry.yarnpkg.com/set-function-length/-/set-function-length-1.2.2.tgz#aac72314198eaed975cf77b2c3b6b880695e5449" @@ -1066,11 +867,6 @@ supports-color@^7.1.0: dependencies: has-flag "^4.0.0" -tiny-typed-emitter@^2.1.0: - version "2.1.0" - resolved "https://registry.yarnpkg.com/tiny-typed-emitter/-/tiny-typed-emitter-2.1.0.tgz#b3b027fdd389ff81a152c8e847ee2f5be9fad7b5" - integrity sha512-qVtvMxeXbVej0cQWKqVSSAHmKZEHAvxdF8HEUBFWts8h+xEo5m/lEiPakuyZ3BnCBjOD8i24kzNOiOLLgsSxhA== - tmp@^0.0.33: version "0.0.33" resolved "https://registry.yarnpkg.com/tmp/-/tmp-0.0.33.tgz#6d34335889768d21b2bcda0aa277ced3b1bfadf9" @@ -1090,13 +886,6 @@ type-fest@^0.13.1: resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.13.1.tgz#0172cb5bce80b0bd542ea348db50c7e21834d934" integrity sha512-34R7HTnG0XIJcBSn5XhDd7nNFPRcXYRZrBB2O2jdKqYODldSzBAqzsWoZYYvduky73toYS/ESqxPvkDf/F0XMg== -type-is@1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/type-is/-/type-is-1.0.0.tgz#4ff424e97349a1ee1910b4bfc488595ecdc443fc" - integrity sha512-CLdmAJgLeMtSPcTFX3eDdC1+ysfYoVdcYjMtuDtg23/fhHXoP5quNsvobr05ZNlG7og+oHQ4bosEzJX++DlIzQ== - dependencies: - mime "~1.2.11" - undici-types@~6.21.0: version "6.21.0" resolved "https://registry.yarnpkg.com/undici-types/-/undici-types-6.21.0.tgz#691d00af3909be93a7faa13be61b3a5b50ef12cb" @@ -1117,11 +906,6 @@ universalify@^2.0.0: resolved "https://registry.yarnpkg.com/universalify/-/universalify-2.0.1.tgz#168efc2180964e6386d061e094df61afe239b18d" integrity sha512-gptHNQghINnc/vTGIk0SOFGFNXw7JVrlRUtConJRlvaw6DuX0wO5Jeko9sWrMBhh+PsYAZ7oXAiOnf/UKogyiw== -utils-merge@1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/utils-merge/-/utils-merge-1.0.0.tgz#0294fb922bb9375153541c4f7096231f287c8af8" - integrity sha512-HwU9SLQEtyo+0uoKXd1nkLqigUWLB+QuNQR4OcmB73eWqksM5ovuqcycks2x043W8XVb75rG1HQ0h93TMXkzQQ== - which@^2.0.1: version "2.0.2" resolved "https://registry.yarnpkg.com/which/-/which-2.0.2.tgz#7c6a8dd0a636a0327e10b59c9286eee93f3f51b1" diff --git a/test/snapshots/HoistedNodeModuleTest.js.snap b/test/snapshots/HoistedNodeModuleTest.js.snap index 16097ced9bf..3322aa085cc 100644 --- a/test/snapshots/HoistedNodeModuleTest.js.snap +++ b/test/snapshots/HoistedNodeModuleTest.js.snap @@ -9430,11 +9430,11 @@ exports[`node_module collectors > pnpm max stack 2`] = ` { "files": { "index.html": { - "offset": 3740300, + "offset": 3745390, "size": 380, }, "index.js": { - "offset": 3740670, + "offset": 3745770, "size": 620, }, "node_modules": { @@ -9607,10 +9607,10 @@ exports[`node_module collectors > pnpm max stack 2`] = ` }, "index.js": { "offset": 31210, - "size": 4810, + "size": 4980, }, "package.json": { - "offset": 36020, + "offset": 36190, "size": 1010, }, }, @@ -9618,27 +9618,27 @@ exports[`node_module collectors > pnpm max stack 2`] = ` "call-bind": { "files": { ".eslintignore": { - "offset": 37030, + "offset": 37190, "size": 10, }, ".nycrc": { - "offset": 37040, + "offset": 37200, "size": 140, }, "LICENSE": { - "offset": 37180, + "offset": 37340, "size": 1080, }, "callBound.js": { - "offset": 38250, + "offset": 38410, "size": 420, }, "index.js": { - "offset": 38660, + "offset": 38830, "size": 650, }, "package.json": { - "offset": 39310, + "offset": 39470, "size": 1510, }, }, @@ -9646,43 +9646,43 @@ exports[`node_module collectors > pnpm max stack 2`] = ` "call-bind-apply-helpers": { "files": { ".nycrc": { - "offset": 40810, + "offset": 40970, "size": 140, }, "LICENSE": { - "offset": 40950, + "offset": 41110, "size": 1080, }, "actualApply.js": { - "offset": 42020, + "offset": 42180, "size": 280, }, "applyBind.js": { - "offset": 42300, + "offset": 42460, "size": 270, }, "functionApply.js": { - "offset": 42560, + "offset": 42730, "size": 100, }, "functionCall.js": { - "offset": 42660, + "offset": 42820, "size": 100, }, "index.js": { - "offset": 42760, + "offset": 42920, "size": 520, }, "package.json": { - "offset": 43270, + "offset": 43430, "size": 1850, }, "reflectApply.js": { - "offset": 45110, + "offset": 45270, "size": 140, }, "tsconfig.json": { - "offset": 45240, + "offset": 45410, "size": 120, }, }, @@ -9690,23 +9690,23 @@ exports[`node_module collectors > pnpm max stack 2`] = ` "call-bound": { "files": { ".nycrc": { - "offset": 45360, + "offset": 45520, "size": 140, }, "LICENSE": { - "offset": 45500, + "offset": 45660, "size": 1080, }, "index.js": { - "offset": 46570, + "offset": 46730, "size": 690, }, "package.json": { - "offset": 47260, + "offset": 47420, "size": 1690, }, "tsconfig.json": { - "offset": 48950, + "offset": 49110, "size": 140, }, }, @@ -9714,23 +9714,23 @@ exports[`node_module collectors > pnpm max stack 2`] = ` "chalk": { "files": { "index.js": { - "offset": 49080, + "offset": 49240, "size": 6440, }, "index.js.flow": { - "offset": 55520, + "offset": 55680, "size": 1930, }, "license": { - "offset": 57440, + "offset": 57600, "size": 1110, }, "package.json": { - "offset": 58550, + "offset": 58710, "size": 710, }, "templates.js": { - "offset": 59260, + "offset": 59420, "size": 3140, }, }, @@ -9738,23 +9738,23 @@ exports[`node_module collectors > pnpm max stack 2`] = ` "color-convert": { "files": { "LICENSE": { - "offset": 62390, + "offset": 62550, "size": 1090, }, "conversions.js": { - "offset": 63480, + "offset": 63640, "size": 16850, }, "index.js": { - "offset": 80330, + "offset": 80490, "size": 1730, }, "package.json": { - "offset": 82050, + "offset": 82220, "size": 430, }, "route.js": { - "offset": 82480, + "offset": 82650, "size": 2230, }, }, @@ -9762,23 +9762,23 @@ exports[`node_module collectors > pnpm max stack 2`] = ` "color-name": { "files": { ".eslintrc.json": { - "offset": 84710, + "offset": 84870, "size": 1160, }, "LICENSE": { - "offset": 85870, + "offset": 86030, "size": 1090, }, "index.js": { - "offset": 86960, + "offset": 87120, "size": 4620, }, "package.json": { - "offset": 91570, + "offset": 91730, "size": 350, }, "test.js": { - "offset": 91910, + "offset": 92080, "size": 180, }, }, @@ -9786,19 +9786,19 @@ exports[`node_module collectors > pnpm max stack 2`] = ` "concat-map": { "files": { "LICENSE": { - "offset": 92090, + "offset": 92250, "size": 1080, }, "README.markdown": { - "offset": 93160, + "offset": 93320, "size": 1170, }, "index.js": { - "offset": 94320, + "offset": 94490, "size": 350, }, "package.json": { - "offset": 94670, + "offset": 94830, "size": 800, }, }, @@ -9806,35 +9806,35 @@ exports[`node_module collectors > pnpm max stack 2`] = ` "cross-spawn": { "files": { "LICENSE": { - "offset": 95460, + "offset": 95620, "size": 1110, }, "index.js": { - "offset": 96560, + "offset": 96730, "size": 1200, }, "lib": { "files": { "enoent.js": { - "offset": 97760, + "offset": 97920, "size": 1480, }, "parse.js": { - "offset": 99240, + "offset": 99400, "size": 4420, }, "util": { "files": { "escape.js": { - "offset": 103650, + "offset": 103810, "size": 1390, }, "readShebang.js": { - "offset": 105030, + "offset": 105200, "size": 740, }, "resolveCommand.js": { - "offset": 105770, + "offset": 105940, "size": 1500, }, }, @@ -9842,7 +9842,7 @@ exports[`node_module collectors > pnpm max stack 2`] = ` }, }, "package.json": { - "offset": 107270, + "offset": 107430, "size": 1350, }, }, @@ -9850,23 +9850,23 @@ exports[`node_module collectors > pnpm max stack 2`] = ` "data-view-buffer": { "files": { ".nycrc": { - "offset": 108610, + "offset": 108770, "size": 220, }, "LICENSE": { - "offset": 108830, + "offset": 108990, "size": 1080, }, "index.js": { - "offset": 109900, + "offset": 110060, "size": 490, }, "package.json": { - "offset": 110380, + "offset": 110550, "size": 1630, }, "tsconfig.json": { - "offset": 112010, + "offset": 112170, "size": 270, }, }, @@ -9874,23 +9874,23 @@ exports[`node_module collectors > pnpm max stack 2`] = ` "data-view-byte-length": { "files": { ".nycrc": { - "offset": 112270, + "offset": 112430, "size": 220, }, "LICENSE": { - "offset": 112490, + "offset": 112650, "size": 1080, }, "index.js": { - "offset": 113560, + "offset": 113720, "size": 500, }, "package.json": { - "offset": 114050, + "offset": 114220, "size": 1660, }, "tsconfig.json": { - "offset": 115710, + "offset": 115870, "size": 250, }, }, @@ -9898,23 +9898,23 @@ exports[`node_module collectors > pnpm max stack 2`] = ` "data-view-byte-offset": { "files": { ".nycrc": { - "offset": 115950, + "offset": 116110, "size": 220, }, "LICENSE": { - "offset": 116170, + "offset": 116330, "size": 1080, }, "index.js": { - "offset": 117240, + "offset": 117400, "size": 500, }, "package.json": { - "offset": 117730, + "offset": 117900, "size": 1710, }, "tsconfig.json": { - "offset": 119440, + "offset": 119610, "size": 120, }, }, @@ -9922,23 +9922,23 @@ exports[`node_module collectors > pnpm max stack 2`] = ` "define-data-property": { "files": { ".nycrc": { - "offset": 119560, + "offset": 119720, "size": 220, }, "LICENSE": { - "offset": 119780, + "offset": 119940, "size": 1080, }, "index.js": { - "offset": 120850, + "offset": 121010, "size": 2340, }, "package.json": { - "offset": 123180, + "offset": 123340, "size": 2080, }, "tsconfig.json": { - "offset": 125260, + "offset": 125420, "size": 4890, }, }, @@ -9946,23 +9946,23 @@ exports[`node_module collectors > pnpm max stack 2`] = ` "define-properties": { "files": { ".editorconfig": { - "offset": 130140, + "offset": 130300, "size": 280, }, ".nycrc": { - "offset": 130410, + "offset": 130580, "size": 140, }, "LICENSE": { - "offset": 130550, + "offset": 130720, "size": 1080, }, "index.js": { - "offset": 131630, + "offset": 131800, "size": 1270, }, "package.json": { - "offset": 132900, + "offset": 133060, "size": 1680, }, }, @@ -9970,27 +9970,27 @@ exports[`node_module collectors > pnpm max stack 2`] = ` "dunder-proto": { "files": { ".nycrc": { - "offset": 134570, + "offset": 134740, "size": 220, }, "LICENSE": { - "offset": 134790, + "offset": 134950, "size": 1080, }, "get.js": { - "offset": 135860, + "offset": 136030, "size": 980, }, "package.json": { - "offset": 136840, + "offset": 137010, "size": 1450, }, "set.js": { - "offset": 138290, + "offset": 138460, "size": 1280, }, "tsconfig.json": { - "offset": 139570, + "offset": 139730, "size": 120, }, }, @@ -9998,581 +9998,573 @@ exports[`node_module collectors > pnpm max stack 2`] = ` "error-ex": { "files": { "LICENSE": { - "offset": 139690, + "offset": 139850, "size": 1080, }, "index.js": { - "offset": 140760, + "offset": 140920, "size": 2910, }, "package.json": { - "offset": 143670, + "offset": 143830, "size": 590, }, }, }, "es-abstract": { "files": { - ".claude": { - "files": { - "settings.local.json": { - "offset": 144250, - "size": 180, - }, - }, - }, ".editorconfig": { - "offset": 144430, + "offset": 144410, "size": 320, }, ".nycrc": { - "offset": 144740, + "offset": 144730, "size": 320, }, "2015": { "files": { "AbstractEqualityComparison.js": { - "offset": 145050, + "offset": 145040, "size": 1210, }, "AbstractRelationalComparison.js": { - "offset": 146260, + "offset": 146240, "size": 1580, }, "AdvanceStringIndex.js": { - "offset": 147830, + "offset": 147820, "size": 1250, }, "ArrayCreate.js": { - "offset": 149070, + "offset": 149060, "size": 1430, }, "ArraySetLength.js": { - "offset": 150500, + "offset": 150490, "size": 2430, }, "ArraySpeciesCreate.js": { - "offset": 152920, + "offset": 152910, "size": 1370, }, "Call.js": { - "offset": 154290, + "offset": 154280, "size": 610, }, "CanonicalNumericIndexString.js": { - "offset": 154890, + "offset": 154880, "size": 580, }, "Canonicalize.js": { - "offset": 155470, + "offset": 155460, "size": 1190, }, "CharacterRange.js": { - "offset": 156650, + "offset": 156640, "size": 1350, }, "CompletePropertyDescriptor.js": { - "offset": 157990, + "offset": 157980, "size": 1110, }, "CompletionRecord.js": { - "offset": 159100, + "offset": 159090, "size": 1360, }, "CreateDataProperty.js": { - "offset": 160460, + "offset": 160450, "size": 730, }, "CreateDataPropertyOrThrow.js": { - "offset": 161180, + "offset": 161170, "size": 700, }, "CreateHTML.js": { - "offset": 161880, + "offset": 161870, "size": 840, }, "CreateIterResultObject.js": { - "offset": 162720, + "offset": 162710, "size": 350, }, "CreateListFromArrayLike.js": { - "offset": 163070, + "offset": 163060, "size": 1350, }, "CreateMethodProperty.js": { - "offset": 164410, + "offset": 164400, "size": 950, }, "DateFromTime.js": { - "offset": 165360, + "offset": 165350, "size": 990, }, "Day.js": { - "offset": 166340, + "offset": 166330, "size": 240, }, "DayFromYear.js": { - "offset": 166580, + "offset": 166570, "size": 260, }, "DayWithinYear.js": { - "offset": 166830, + "offset": 166820, "size": 290, }, "DaysInYear.js": { - "offset": 167120, + "offset": 167110, "size": 310, }, "DefinePropertyOrThrow.js": { - "offset": 167420, + "offset": 167410, "size": 1170, }, "DeletePropertyOrThrow.js": { - "offset": 168590, + "offset": 168580, "size": 670, }, "DetachArrayBuffer.js": { - "offset": 169260, + "offset": 169250, "size": 1260, }, "EnumerableOwnNames.js": { - "offset": 170510, + "offset": 170500, "size": 380, }, "FromPropertyDescriptor.js": { - "offset": 170890, + "offset": 170880, "size": 540, }, "Get.js": { - "offset": 171430, + "offset": 171420, "size": 570, }, "GetGlobalObject.js": { - "offset": 171990, + "offset": 171980, "size": 200, }, "GetIterator.js": { - "offset": 172190, + "offset": 172180, "size": 760, }, "GetMethod.js": { - "offset": 172950, + "offset": 172940, "size": 690, }, "GetOwnPropertyKeys.js": { - "offset": 173630, + "offset": 173620, "size": 840, }, "GetPrototypeFromConstructor.js": { - "offset": 174460, + "offset": 174450, "size": 1080, }, "GetSubstitution.js": { - "offset": 175540, + "offset": 175530, "size": 3270, }, "GetV.js": { - "offset": 178800, + "offset": 178790, "size": 500, }, "GetValueFromBuffer.js": { - "offset": 179290, + "offset": 179280, "size": 3280, }, "HasOwnProperty.js": { - "offset": 182560, + "offset": 182550, "size": 540, }, "HasProperty.js": { - "offset": 183100, + "offset": 183090, "size": 490, }, "HourFromTime.js": { - "offset": 183580, + "offset": 183570, "size": 390, }, "InLeapYear.js": { - "offset": 183970, + "offset": 183960, "size": 470, }, "InstanceofOperator.js": { - "offset": 184430, + "offset": 184420, "size": 930, }, "IntegerIndexedElementGet.js": { - "offset": 185350, + "offset": 185340, "size": 1850, }, "IntegerIndexedElementSet.js": { - "offset": 187200, + "offset": 187190, "size": 1960, }, "InternalizeJSONProperty.js": { - "offset": 189150, + "offset": 189140, "size": 2140, }, "Invoke.js": { - "offset": 191290, + "offset": 191280, "size": 680, }, "IsAccessorDescriptor.js": { - "offset": 191960, + "offset": 191950, "size": 560, }, "IsArray.js": { - "offset": 192510, + "offset": 192500, "size": 120, }, "IsCallable.js": { - "offset": 192630, + "offset": 192620, "size": 110, }, "IsCompatiblePropertyDescriptor.js": { - "offset": 192740, - "size": 370, + "offset": 192730, + "size": 390, }, "IsConcatSpreadable.js": { - "offset": 193110, + "offset": 193120, "size": 640, }, "IsConstructor.js": { - "offset": 193740, + "offset": 193760, "size": 1150, }, "IsDataDescriptor.js": { - "offset": 194890, + "offset": 194900, "size": 570, }, "IsDetachedBuffer.js": { - "offset": 195450, + "offset": 195460, "size": 740, }, "IsExtensible.js": { - "offset": 196180, + "offset": 196200, "size": 510, }, "IsGenericDescriptor.js": { - "offset": 196690, + "offset": 196700, "size": 660, }, "IsInteger.js": { - "offset": 197340, + "offset": 197360, "size": 210, }, "IsPromise.js": { - "offset": 197550, + "offset": 197560, "size": 490, }, "IsPropertyDescriptor.js": { - "offset": 198040, + "offset": 198050, "size": 320, }, "IsPropertyKey.js": { - "offset": 198350, + "offset": 198360, "size": 230, }, "IsRegExp.js": { - "offset": 198570, + "offset": 198580, "size": 570, }, "IsWordChar.js": { - "offset": 199140, + "offset": 199150, "size": 1090, }, "IteratorClose.js": { - "offset": 200230, + "offset": 200240, "size": 1770, }, "IteratorComplete.js": { - "offset": 201990, + "offset": 202010, "size": 460, }, "IteratorNext.js": { - "offset": 202450, + "offset": 202470, "size": 460, }, "IteratorStep.js": { - "offset": 202910, + "offset": 202920, "size": 350, }, "IteratorValue.js": { - "offset": 203250, + "offset": 203270, "size": 410, }, "MakeDate.js": { - "offset": 203660, + "offset": 203670, "size": 340, }, "MakeDay.js": { - "offset": 203990, + "offset": 204010, "size": 930, }, "MakeTime.js": { - "offset": 204910, + "offset": 204930, "size": 710, }, "MinFromTime.js": { - "offset": 205620, + "offset": 205630, "size": 400, }, "MonthFromTime.js": { - "offset": 206010, + "offset": 206030, "size": 1130, }, "NewPromiseCapability.js": { - "offset": 207140, + "offset": 207160, "size": 1230, }, "NormalCompletion.js": { - "offset": 208370, + "offset": 208380, "size": 240, }, "ObjectCreate.js": { - "offset": 208610, + "offset": 208620, "size": 1330, }, "ObjectDefineProperties.js": { - "offset": 209940, + "offset": 209950, "size": 1440, }, "OrdinaryCreateFromConstructor.js": { - "offset": 211370, + "offset": 211380, "size": 810, }, "OrdinaryDefineOwnProperty.js": { - "offset": 212170, + "offset": 212180, "size": 2180, }, "OrdinaryGetOwnProperty.js": { - "offset": 214350, + "offset": 214360, "size": 1200, }, "OrdinaryHasInstance.js": { - "offset": 215540, + "offset": 215560, "size": 580, }, "OrdinaryHasProperty.js": { - "offset": 216110, + "offset": 216130, "size": 510, }, "QuoteJSONString.js": { - "offset": 216610, + "offset": 216630, "size": 1340, }, "RegExpCreate.js": { - "offset": 217950, + "offset": 217960, "size": 650, }, "RegExpExec.js": { - "offset": 218590, + "offset": 218600, "size": 830, }, "RequireObjectCoercible.js": { - "offset": 219420, + "offset": 219430, "size": 90, }, "SameValue.js": { - "offset": 219500, + "offset": 219520, "size": 320, }, "SameValueZero.js": { - "offset": 219820, + "offset": 219830, "size": 230, }, "SecFromTime.js": { - "offset": 220040, + "offset": 220050, "size": 410, }, "Set.js": { - "offset": 220440, + "offset": 220450, "size": 1230, }, "SetFunctionName.js": { - "offset": 221670, + "offset": 221680, "size": 1290, }, "SetIntegrityLevel.js": { - "offset": 222960, + "offset": 222970, "size": 1840, }, "SetValueInBuffer.js": { - "offset": 224790, + "offset": 224800, "size": 3830, }, "SpeciesConstructor.js": { - "offset": 228620, + "offset": 228630, "size": 850, }, "SplitMatch.js": { - "offset": 229460, + "offset": 229470, "size": 810, }, "StrictEqualityComparison.js": { - "offset": 230260, + "offset": 230280, "size": 320, }, "StringCreate.js": { - "offset": 230580, + "offset": 230590, "size": 1080, }, "StringGetIndexProperty.js": { - "offset": 231660, + "offset": 231670, "size": 1320, }, "SymbolDescriptiveString.js": { - "offset": 232970, + "offset": 232980, "size": 440, }, "TestIntegrityLevel.js": { - "offset": 233400, + "offset": 233410, "size": 1210, }, "TimeClip.js": { - "offset": 234610, + "offset": 234620, "size": 440, }, "TimeFromYear.js": { - "offset": 235050, + "offset": 235060, "size": 270, }, "TimeWithinDay.js": { - "offset": 235310, + "offset": 235320, "size": 250, }, "ToBoolean.js": { - "offset": 235560, + "offset": 235570, "size": 130, }, "ToDateString.js": { - "offset": 235690, + "offset": 235700, "size": 520, }, "ToInt16.js": { - "offset": 236200, + "offset": 236220, "size": 260, }, "ToInt32.js": { - "offset": 236460, + "offset": 236470, "size": 180, }, "ToInt8.js": { - "offset": 236630, + "offset": 236650, "size": 250, }, "ToInteger.js": { - "offset": 236870, + "offset": 236890, "size": 270, }, "ToLength.js": { - "offset": 237140, + "offset": 237160, "size": 410, }, "ToNumber.js": { - "offset": 237550, + "offset": 237560, "size": 1510, }, "ToObject.js": { - "offset": 239050, + "offset": 239060, "size": 130, }, "ToPrimitive.js": { - "offset": 239180, + "offset": 239190, "size": 290, }, "ToPropertyDescriptor.js": { - "offset": 239460, + "offset": 239470, "size": 1460, }, "ToPropertyKey.js": { - "offset": 240910, + "offset": 240920, "size": 400, }, "ToString.js": { - "offset": 241310, + "offset": 241320, "size": 390, }, "ToUint16.js": { - "offset": 241700, + "offset": 241710, "size": 610, }, "ToUint32.js": { - "offset": 242310, + "offset": 242320, "size": 180, }, "ToUint8.js": { - "offset": 242480, + "offset": 242500, "size": 630, }, "ToUint8Clamp.js": { - "offset": 243110, + "offset": 243120, "size": 520, }, "Type.js": { - "offset": 243630, + "offset": 243640, "size": 250, }, "ValidateAndApplyPropertyDescriptor.js": { - "offset": 243870, - "size": 5010, + "offset": 243890, + "size": 5020, }, "ValidateTypedArray.js": { - "offset": 248870, + "offset": 248900, "size": 800, }, "WeekDay.js": { - "offset": 249670, + "offset": 249690, "size": 210, }, "YearFromTime.js": { - "offset": 249880, + "offset": 249900, "size": 400, }, "abs.js": { - "offset": 250270, + "offset": 250300, "size": 170, }, "floor.js": { - "offset": 250440, + "offset": 250460, "size": 240, }, "max.js": { - "offset": 250680, + "offset": 250700, "size": 140, }, "min.js": { - "offset": 250810, + "offset": 250840, "size": 140, }, "modulo.js": { - "offset": 250950, + "offset": 250970, "size": 170, }, "msFromTime.js": { - "offset": 251110, + "offset": 251140, "size": 260, }, "tables": { "files": { "typed-array-objects.js": { - "offset": 251370, + "offset": 251390, "size": 630, }, }, }, "thisBooleanValue.js": { - "offset": 252000, + "offset": 252020, "size": 330, }, "thisNumberValue.js": { - "offset": 252320, + "offset": 252340, "size": 350, }, "thisStringValue.js": { - "offset": 252660, + "offset": 252690, "size": 320, }, "thisTimeValue.js": { - "offset": 252980, + "offset": 253000, "size": 240, }, }, @@ -10580,575 +10572,575 @@ exports[`node_module collectors > pnpm max stack 2`] = ` "2016": { "files": { "AbstractEqualityComparison.js": { - "offset": 253210, + "offset": 253240, "size": 1210, }, "AbstractRelationalComparison.js": { - "offset": 254420, + "offset": 254440, "size": 1580, }, "AdvanceStringIndex.js": { - "offset": 255990, + "offset": 256010, "size": 1250, }, "ArrayCreate.js": { - "offset": 257230, + "offset": 257260, "size": 1430, }, "ArraySetLength.js": { - "offset": 258660, + "offset": 258690, "size": 2430, }, "ArraySpeciesCreate.js": { - "offset": 261080, + "offset": 261110, "size": 1370, }, "Call.js": { - "offset": 262450, + "offset": 262480, "size": 610, }, "CanonicalNumericIndexString.js": { - "offset": 263050, + "offset": 263080, "size": 580, }, "Canonicalize.js": { - "offset": 263630, + "offset": 263650, "size": 1190, }, "CharacterRange.js": { - "offset": 264810, + "offset": 264840, "size": 1350, }, "CompletePropertyDescriptor.js": { - "offset": 266150, + "offset": 266180, "size": 1110, }, "CompletionRecord.js": { - "offset": 267260, + "offset": 267290, "size": 1360, }, "CreateDataProperty.js": { - "offset": 268620, + "offset": 268650, "size": 730, }, "CreateDataPropertyOrThrow.js": { - "offset": 269340, + "offset": 269370, "size": 700, }, "CreateHTML.js": { - "offset": 270040, + "offset": 270070, "size": 840, }, "CreateIterResultObject.js": { - "offset": 270880, + "offset": 270910, "size": 350, }, "CreateListFromArrayLike.js": { - "offset": 271230, + "offset": 271260, "size": 1350, }, "CreateMethodProperty.js": { - "offset": 272570, + "offset": 272600, "size": 950, }, "DateFromTime.js": { - "offset": 273520, + "offset": 273540, "size": 990, }, "Day.js": { - "offset": 274500, + "offset": 274530, "size": 240, }, "DayFromYear.js": { - "offset": 274740, + "offset": 274770, "size": 260, }, "DayWithinYear.js": { - "offset": 274990, + "offset": 275020, "size": 290, }, "DaysInYear.js": { - "offset": 275280, + "offset": 275310, "size": 310, }, "DefinePropertyOrThrow.js": { - "offset": 275580, + "offset": 275610, "size": 1170, }, "DeletePropertyOrThrow.js": { - "offset": 276750, + "offset": 276780, "size": 670, }, "DetachArrayBuffer.js": { - "offset": 277420, + "offset": 277440, "size": 1260, }, "EnumerableOwnNames.js": { - "offset": 278670, + "offset": 278700, "size": 380, }, "FromPropertyDescriptor.js": { - "offset": 279050, + "offset": 279080, "size": 540, }, "Get.js": { - "offset": 279590, + "offset": 279610, "size": 570, }, "GetGlobalObject.js": { - "offset": 280150, + "offset": 280180, "size": 200, }, "GetIterator.js": { - "offset": 280350, + "offset": 280380, "size": 760, }, "GetMethod.js": { - "offset": 281110, + "offset": 281130, "size": 690, }, "GetOwnPropertyKeys.js": { - "offset": 281790, + "offset": 281820, "size": 840, }, "GetPrototypeFromConstructor.js": { - "offset": 282620, + "offset": 282650, "size": 1080, }, "GetSubstitution.js": { - "offset": 283700, + "offset": 283730, "size": 3270, }, "GetV.js": { - "offset": 286960, + "offset": 286990, "size": 500, }, "GetValueFromBuffer.js": { - "offset": 287450, + "offset": 287480, "size": 3280, }, "HasOwnProperty.js": { - "offset": 290720, + "offset": 290750, "size": 540, }, "HasProperty.js": { - "offset": 291260, + "offset": 291280, "size": 490, }, "HourFromTime.js": { - "offset": 291740, + "offset": 291770, "size": 390, }, "InLeapYear.js": { - "offset": 292130, + "offset": 292150, "size": 470, }, "InstanceofOperator.js": { - "offset": 292590, + "offset": 292620, "size": 930, }, "IntegerIndexedElementGet.js": { - "offset": 293510, + "offset": 293540, "size": 1850, }, "IntegerIndexedElementSet.js": { - "offset": 295360, + "offset": 295390, "size": 1960, }, "InternalizeJSONProperty.js": { - "offset": 297310, + "offset": 297340, "size": 2140, }, "Invoke.js": { - "offset": 299450, + "offset": 299470, "size": 680, }, "IsAccessorDescriptor.js": { - "offset": 300120, + "offset": 300140, "size": 560, }, "IsArray.js": { - "offset": 300670, + "offset": 300700, "size": 120, }, "IsCallable.js": { - "offset": 300790, + "offset": 300820, "size": 110, }, "IsCompatiblePropertyDescriptor.js": { - "offset": 300900, - "size": 370, + "offset": 300930, + "size": 390, }, "IsConcatSpreadable.js": { - "offset": 301270, + "offset": 301320, "size": 640, }, "IsConstructor.js": { - "offset": 301900, + "offset": 301950, "size": 1150, }, "IsDataDescriptor.js": { - "offset": 303050, + "offset": 303100, "size": 570, }, "IsDetachedBuffer.js": { - "offset": 303610, + "offset": 303660, "size": 740, }, "IsExtensible.js": { - "offset": 304340, + "offset": 304390, "size": 510, }, "IsGenericDescriptor.js": { - "offset": 304850, + "offset": 304900, "size": 660, }, "IsInteger.js": { - "offset": 305500, + "offset": 305550, "size": 210, }, "IsPromise.js": { - "offset": 305710, + "offset": 305760, "size": 490, }, "IsPropertyDescriptor.js": { - "offset": 306200, + "offset": 306250, "size": 320, }, "IsPropertyKey.js": { - "offset": 306510, + "offset": 306560, "size": 230, }, "IsRegExp.js": { - "offset": 306730, + "offset": 306780, "size": 570, }, "IsWordChar.js": { - "offset": 307300, + "offset": 307350, "size": 1090, }, "IterableToArrayLike.js": { - "offset": 308390, + "offset": 308440, "size": 950, }, "IteratorClose.js": { - "offset": 309330, + "offset": 309390, "size": 1770, }, "IteratorComplete.js": { - "offset": 311100, + "offset": 311150, "size": 460, }, "IteratorNext.js": { - "offset": 311560, + "offset": 311610, "size": 460, }, "IteratorStep.js": { - "offset": 312010, + "offset": 312060, "size": 350, }, "IteratorValue.js": { - "offset": 312360, + "offset": 312410, "size": 410, }, "MakeDate.js": { - "offset": 312760, + "offset": 312810, "size": 340, }, "MakeDay.js": { - "offset": 313100, + "offset": 313150, "size": 930, }, "MakeTime.js": { - "offset": 314020, + "offset": 314070, "size": 710, }, "MinFromTime.js": { - "offset": 314720, + "offset": 314770, "size": 400, }, "MonthFromTime.js": { - "offset": 315120, + "offset": 315170, "size": 1130, }, "NewPromiseCapability.js": { - "offset": 316250, + "offset": 316300, "size": 1230, }, "NormalCompletion.js": { - "offset": 317480, + "offset": 317530, "size": 240, }, "ObjectCreate.js": { - "offset": 317710, + "offset": 317760, "size": 1330, }, "ObjectDefineProperties.js": { - "offset": 319040, + "offset": 319090, "size": 1440, }, "OrdinaryCreateFromConstructor.js": { - "offset": 320480, + "offset": 320530, "size": 810, }, "OrdinaryDefineOwnProperty.js": { - "offset": 321280, + "offset": 321330, "size": 2180, }, "OrdinaryGetOwnProperty.js": { - "offset": 323450, + "offset": 323500, "size": 1200, }, "OrdinaryGetPrototypeOf.js": { - "offset": 324650, + "offset": 324700, "size": 500, }, "OrdinaryHasInstance.js": { - "offset": 325140, + "offset": 325190, "size": 580, }, "OrdinaryHasProperty.js": { - "offset": 325710, + "offset": 325760, "size": 510, }, "OrdinarySetPrototypeOf.js": { - "offset": 326210, + "offset": 326260, "size": 1000, }, "QuoteJSONString.js": { - "offset": 327210, + "offset": 327260, "size": 1340, }, "RegExpCreate.js": { - "offset": 328540, + "offset": 328600, "size": 650, }, "RegExpExec.js": { - "offset": 329190, + "offset": 329240, "size": 830, }, "RequireObjectCoercible.js": { - "offset": 330020, + "offset": 330070, "size": 90, }, "SameValue.js": { - "offset": 330100, + "offset": 330150, "size": 320, }, "SameValueNonNumber.js": { - "offset": 330410, + "offset": 330460, "size": 410, }, "SameValueZero.js": { - "offset": 330810, + "offset": 330870, "size": 230, }, "SecFromTime.js": { - "offset": 331040, + "offset": 331090, "size": 410, }, "Set.js": { - "offset": 331440, + "offset": 331490, "size": 1230, }, "SetFunctionName.js": { - "offset": 332670, + "offset": 332720, "size": 1290, }, "SetIntegrityLevel.js": { - "offset": 333950, + "offset": 334000, "size": 1840, }, "SetValueInBuffer.js": { - "offset": 335790, + "offset": 335840, "size": 3830, }, "SpeciesConstructor.js": { - "offset": 339620, + "offset": 339670, "size": 850, }, "SplitMatch.js": { - "offset": 340460, + "offset": 340510, "size": 810, }, "StrictEqualityComparison.js": { - "offset": 341260, + "offset": 341310, "size": 320, }, "StringCreate.js": { - "offset": 341580, + "offset": 341630, "size": 1080, }, "SymbolDescriptiveString.js": { - "offset": 342650, + "offset": 342710, "size": 440, }, "TestIntegrityLevel.js": { - "offset": 343090, + "offset": 343140, "size": 1210, }, "TimeClip.js": { - "offset": 344300, + "offset": 344350, "size": 440, }, "TimeFromYear.js": { - "offset": 344730, + "offset": 344790, "size": 270, }, "TimeWithinDay.js": { - "offset": 345000, + "offset": 345050, "size": 250, }, "ToBoolean.js": { - "offset": 345240, + "offset": 345290, "size": 130, }, "ToDateString.js": { - "offset": 345370, + "offset": 345420, "size": 520, }, "ToInt16.js": { - "offset": 345890, + "offset": 345940, "size": 260, }, "ToInt32.js": { - "offset": 346150, + "offset": 346200, "size": 180, }, "ToInt8.js": { - "offset": 346320, + "offset": 346370, "size": 250, }, "ToInteger.js": { - "offset": 346560, + "offset": 346610, "size": 270, }, "ToLength.js": { - "offset": 346830, + "offset": 346880, "size": 410, }, "ToNumber.js": { - "offset": 347230, + "offset": 347280, "size": 1510, }, "ToObject.js": { - "offset": 348740, + "offset": 348790, "size": 130, }, "ToPrimitive.js": { - "offset": 348860, + "offset": 348910, "size": 290, }, "ToPropertyDescriptor.js": { - "offset": 349140, + "offset": 349200, "size": 1460, }, "ToPropertyKey.js": { - "offset": 350600, + "offset": 350650, "size": 400, }, "ToString.js": { - "offset": 351000, + "offset": 351050, "size": 390, }, "ToUint16.js": { - "offset": 351390, + "offset": 351440, "size": 610, }, "ToUint32.js": { - "offset": 351990, + "offset": 352050, "size": 180, }, "ToUint8.js": { - "offset": 352170, + "offset": 352220, "size": 630, }, "ToUint8Clamp.js": { - "offset": 352800, + "offset": 352850, "size": 520, }, "Type.js": { - "offset": 353320, + "offset": 353370, "size": 250, }, "TypedArrayCreate.js": { - "offset": 353560, + "offset": 353610, "size": 1690, }, "TypedArraySpeciesCreate.js": { - "offset": 355250, + "offset": 355300, "size": 1380, }, "UTF16Decode.js": { - "offset": 356620, + "offset": 356670, "size": 830, }, "UTF16Encoding.js": { - "offset": 357440, + "offset": 357490, "size": 700, }, "ValidateAndApplyPropertyDescriptor.js": { - "offset": 358140, - "size": 5010, + "offset": 358190, + "size": 5020, }, "ValidateTypedArray.js": { - "offset": 363140, + "offset": 363200, "size": 800, }, "WeekDay.js": { - "offset": 363930, + "offset": 363990, "size": 210, }, "YearFromTime.js": { - "offset": 364140, + "offset": 364200, "size": 400, }, "abs.js": { - "offset": 364540, + "offset": 364600, "size": 170, }, "floor.js": { - "offset": 364700, + "offset": 364760, "size": 240, }, "max.js": { - "offset": 364940, + "offset": 365000, "size": 140, }, "min.js": { - "offset": 365080, + "offset": 365140, "size": 140, }, "modulo.js": { - "offset": 365210, + "offset": 365270, "size": 170, }, "msFromTime.js": { - "offset": 365380, + "offset": 365440, "size": 260, }, "tables": { "files": { "typed-array-objects.js": { - "offset": 365630, + "offset": 365690, "size": 630, }, }, }, "thisBooleanValue.js": { - "offset": 366260, + "offset": 366320, "size": 330, }, "thisNumberValue.js": { - "offset": 366580, + "offset": 366640, "size": 350, }, "thisStringValue.js": { - "offset": 366930, + "offset": 366990, "size": 320, }, "thisTimeValue.js": { - "offset": 367240, + "offset": 367310, "size": 240, }, }, @@ -11156,607 +11148,607 @@ exports[`node_module collectors > pnpm max stack 2`] = ` "2017": { "files": { "AbstractEqualityComparison.js": { - "offset": 367480, + "offset": 367540, "size": 1210, }, "AbstractRelationalComparison.js": { - "offset": 368680, + "offset": 368740, "size": 1580, }, "AdvanceStringIndex.js": { - "offset": 370250, + "offset": 370320, "size": 1250, }, "ArrayCreate.js": { - "offset": 371490, + "offset": 371560, "size": 1430, }, "ArraySetLength.js": { - "offset": 372920, + "offset": 372990, "size": 2430, }, "ArraySpeciesCreate.js": { - "offset": 375340, + "offset": 375410, "size": 1370, }, "Call.js": { - "offset": 376710, + "offset": 376780, "size": 610, }, "CanonicalNumericIndexString.js": { - "offset": 377320, + "offset": 377380, "size": 580, }, "Canonicalize.js": { - "offset": 377890, + "offset": 377960, "size": 1190, }, "CharacterRange.js": { - "offset": 379080, + "offset": 379140, "size": 1350, }, "CompletePropertyDescriptor.js": { - "offset": 380420, + "offset": 380480, "size": 1110, }, "CompletionRecord.js": { - "offset": 381530, + "offset": 381590, "size": 1360, }, "CreateDataProperty.js": { - "offset": 382880, + "offset": 382950, "size": 730, }, "CreateDataPropertyOrThrow.js": { - "offset": 383610, + "offset": 383670, "size": 700, }, "CreateHTML.js": { - "offset": 384310, + "offset": 384370, "size": 840, }, "CreateIterResultObject.js": { - "offset": 385140, + "offset": 385210, "size": 350, }, "CreateListFromArrayLike.js": { - "offset": 385490, + "offset": 385560, "size": 1350, }, "CreateMethodProperty.js": { - "offset": 386840, + "offset": 386900, "size": 950, }, "DateFromTime.js": { - "offset": 387780, + "offset": 387850, "size": 990, }, "Day.js": { - "offset": 388770, + "offset": 388830, "size": 240, }, "DayFromYear.js": { - "offset": 389000, + "offset": 389070, "size": 260, }, "DayWithinYear.js": { - "offset": 389260, + "offset": 389320, "size": 290, }, "DaysInYear.js": { - "offset": 389540, + "offset": 389610, "size": 310, }, "DefinePropertyOrThrow.js": { - "offset": 389840, + "offset": 389910, "size": 1170, }, "DeletePropertyOrThrow.js": { - "offset": 391010, + "offset": 391080, "size": 670, }, "DetachArrayBuffer.js": { - "offset": 391680, + "offset": 391740, "size": 1390, }, "EnumerableOwnProperties.js": { - "offset": 393060, + "offset": 393130, "size": 1010, }, "FromPropertyDescriptor.js": { - "offset": 394070, + "offset": 394130, "size": 540, }, "Get.js": { - "offset": 394600, + "offset": 394670, "size": 570, }, "GetGlobalObject.js": { - "offset": 395170, + "offset": 395240, "size": 200, }, "GetIterator.js": { - "offset": 395370, + "offset": 395440, "size": 760, }, "GetMethod.js": { - "offset": 396120, + "offset": 396190, "size": 690, }, "GetOwnPropertyKeys.js": { - "offset": 396810, + "offset": 396870, "size": 840, }, "GetPrototypeFromConstructor.js": { - "offset": 397640, + "offset": 397710, "size": 1080, }, "GetSubstitution.js": { - "offset": 398720, + "offset": 398780, "size": 3270, }, "GetV.js": { - "offset": 401980, + "offset": 402040, "size": 500, }, "GetValueFromBuffer.js": { - "offset": 402470, + "offset": 402540, "size": 4390, }, "HasOwnProperty.js": { - "offset": 406860, + "offset": 406930, "size": 540, }, "HasProperty.js": { - "offset": 407390, + "offset": 407460, "size": 490, }, "HourFromTime.js": { - "offset": 407880, + "offset": 407950, "size": 390, }, "InLeapYear.js": { - "offset": 408260, + "offset": 408330, "size": 470, }, "InstanceofOperator.js": { - "offset": 408720, + "offset": 408790, "size": 930, }, "IntegerIndexedElementGet.js": { - "offset": 409650, + "offset": 409720, "size": 1870, }, "IntegerIndexedElementSet.js": { - "offset": 411520, + "offset": 411580, "size": 1970, }, "InternalizeJSONProperty.js": { - "offset": 413490, + "offset": 413550, "size": 2170, }, "Invoke.js": { - "offset": 415650, + "offset": 415720, "size": 680, }, "IsAccessorDescriptor.js": { - "offset": 416330, + "offset": 416390, "size": 560, }, "IsArray.js": { - "offset": 416880, + "offset": 416950, "size": 120, }, "IsCallable.js": { - "offset": 417000, + "offset": 417070, "size": 110, }, "IsCompatiblePropertyDescriptor.js": { - "offset": 417110, - "size": 370, + "offset": 417180, + "size": 390, }, "IsConcatSpreadable.js": { - "offset": 417480, + "offset": 417570, "size": 640, }, "IsConstructor.js": { - "offset": 418110, + "offset": 418200, "size": 1150, }, "IsDataDescriptor.js": { - "offset": 419260, + "offset": 419350, "size": 570, }, "IsDetachedBuffer.js": { - "offset": 419820, + "offset": 419910, "size": 1000, }, "IsExtensible.js": { - "offset": 420820, + "offset": 420900, "size": 510, }, "IsGenericDescriptor.js": { - "offset": 421320, + "offset": 421410, "size": 660, }, "IsInteger.js": { - "offset": 421980, + "offset": 422060, "size": 210, }, "IsPromise.js": { - "offset": 422180, + "offset": 422270, "size": 490, }, "IsPropertyDescriptor.js": { - "offset": 422670, + "offset": 422760, "size": 320, }, "IsPropertyKey.js": { - "offset": 422980, + "offset": 423070, "size": 230, }, "IsRegExp.js": { - "offset": 423200, + "offset": 423290, "size": 570, }, "IsSharedArrayBuffer.js": { - "offset": 423770, + "offset": 423860, "size": 430, }, "IsWordChar.js": { - "offset": 424200, + "offset": 424290, "size": 1370, }, "IterableToList.js": { - "offset": 425560, + "offset": 425650, "size": 530, }, "IteratorClose.js": { - "offset": 426090, + "offset": 426180, "size": 1770, }, "IteratorComplete.js": { - "offset": 427850, + "offset": 427940, "size": 460, }, "IteratorNext.js": { - "offset": 428310, + "offset": 428400, "size": 460, }, "IteratorStep.js": { - "offset": 428760, + "offset": 428850, "size": 350, }, "IteratorValue.js": { - "offset": 429110, + "offset": 429200, "size": 410, }, "MakeDate.js": { - "offset": 429520, + "offset": 429600, "size": 340, }, "MakeDay.js": { - "offset": 429850, + "offset": 429940, "size": 930, }, "MakeTime.js": { - "offset": 430770, + "offset": 430860, "size": 710, }, "MinFromTime.js": { - "offset": 431480, + "offset": 431560, "size": 400, }, "MonthFromTime.js": { - "offset": 431870, + "offset": 431960, "size": 1130, }, "NewPromiseCapability.js": { - "offset": 433000, + "offset": 433090, "size": 1230, }, "NormalCompletion.js": { - "offset": 434230, + "offset": 434320, "size": 240, }, "NumberToRawBytes.js": { - "offset": 434470, + "offset": 434550, "size": 1820, }, "ObjectCreate.js": { - "offset": 436280, + "offset": 436370, "size": 1330, }, "ObjectDefineProperties.js": { - "offset": 437610, + "offset": 437700, "size": 1440, }, "OrdinaryCreateFromConstructor.js": { - "offset": 439050, + "offset": 439140, "size": 810, }, "OrdinaryDefineOwnProperty.js": { - "offset": 439850, + "offset": 439940, "size": 2180, }, "OrdinaryGetOwnProperty.js": { - "offset": 442020, + "offset": 442110, "size": 1200, }, "OrdinaryGetPrototypeOf.js": { - "offset": 443220, + "offset": 443310, "size": 500, }, "OrdinaryHasInstance.js": { - "offset": 443710, + "offset": 443800, "size": 580, }, "OrdinaryHasProperty.js": { - "offset": 444280, + "offset": 444370, "size": 510, }, "OrdinarySetPrototypeOf.js": { - "offset": 444780, + "offset": 444870, "size": 1000, }, "OrdinaryToPrimitive.js": { - "offset": 445780, + "offset": 445870, "size": 1030, }, "QuoteJSONString.js": { - "offset": 446810, + "offset": 446890, "size": 1340, }, "RawBytesToNumber.js": { - "offset": 448140, + "offset": 448230, "size": 2010, }, "RegExpCreate.js": { - "offset": 450140, + "offset": 450230, "size": 650, }, "RegExpExec.js": { - "offset": 450780, + "offset": 450870, "size": 830, }, "RequireObjectCoercible.js": { - "offset": 451610, + "offset": 451700, "size": 90, }, "SameValue.js": { - "offset": 451700, + "offset": 451790, "size": 320, }, "SameValueNonNumber.js": { - "offset": 452010, + "offset": 452100, "size": 410, }, "SameValueZero.js": { - "offset": 452410, + "offset": 452500, "size": 230, }, "SecFromTime.js": { - "offset": 452630, + "offset": 452720, "size": 410, }, "Set.js": { - "offset": 453040, + "offset": 453120, "size": 1230, }, "SetFunctionName.js": { - "offset": 454260, + "offset": 454350, "size": 1290, }, "SetIntegrityLevel.js": { - "offset": 455550, + "offset": 455640, "size": 1840, }, "SetValueInBuffer.js": { - "offset": 457390, + "offset": 457470, "size": 3700, }, "SpeciesConstructor.js": { - "offset": 461080, + "offset": 461170, "size": 850, }, "SplitMatch.js": { - "offset": 461920, + "offset": 462010, "size": 810, }, "StrictEqualityComparison.js": { - "offset": 462730, + "offset": 462820, "size": 320, }, "StringCreate.js": { - "offset": 463040, + "offset": 463130, "size": 1080, }, "StringGetOwnProperty.js": { - "offset": 464120, + "offset": 464210, "size": 1360, }, "SymbolDescriptiveString.js": { - "offset": 465480, + "offset": 465570, "size": 440, }, "TestIntegrityLevel.js": { - "offset": 465910, + "offset": 466000, "size": 1210, }, "TimeClip.js": { - "offset": 467120, + "offset": 467210, "size": 440, }, "TimeFromYear.js": { - "offset": 467560, + "offset": 467650, "size": 270, }, "TimeWithinDay.js": { - "offset": 467820, + "offset": 467910, "size": 250, }, "ToBoolean.js": { - "offset": 468070, + "offset": 468160, "size": 130, }, "ToDateString.js": { - "offset": 468200, + "offset": 468290, "size": 520, }, "ToIndex.js": { - "offset": 468720, + "offset": 468800, "size": 620, }, "ToInt16.js": { - "offset": 469340, + "offset": 469420, "size": 260, }, "ToInt32.js": { - "offset": 469590, + "offset": 469680, "size": 180, }, "ToInt8.js": { - "offset": 469760, + "offset": 469850, "size": 250, }, "ToInteger.js": { - "offset": 470010, + "offset": 470090, "size": 270, }, "ToLength.js": { - "offset": 470270, + "offset": 470360, "size": 410, }, "ToNumber.js": { - "offset": 470680, + "offset": 470770, "size": 1510, }, "ToObject.js": { - "offset": 472180, + "offset": 472270, "size": 130, }, "ToPrimitive.js": { - "offset": 472310, + "offset": 472400, "size": 290, }, "ToPropertyDescriptor.js": { - "offset": 472590, + "offset": 472680, "size": 1460, }, "ToPropertyKey.js": { - "offset": 474040, + "offset": 474130, "size": 400, }, "ToString.js": { - "offset": 474440, + "offset": 474530, "size": 390, }, "ToUint16.js": { - "offset": 474830, + "offset": 474920, "size": 610, }, "ToUint32.js": { - "offset": 475440, + "offset": 475530, "size": 180, }, "ToUint8.js": { - "offset": 475610, + "offset": 475700, "size": 630, }, "ToUint8Clamp.js": { - "offset": 476240, + "offset": 476330, "size": 520, }, "Type.js": { - "offset": 476760, + "offset": 476850, "size": 250, }, "TypedArrayCreate.js": { - "offset": 477000, + "offset": 477090, "size": 1690, }, "TypedArraySpeciesCreate.js": { - "offset": 478690, + "offset": 478780, "size": 1380, }, "UTF16Decode.js": { - "offset": 480060, + "offset": 480150, "size": 830, }, "UTF16Encoding.js": { - "offset": 480880, + "offset": 480970, "size": 700, }, "ValidateAndApplyPropertyDescriptor.js": { - "offset": 481580, - "size": 5010, + "offset": 481670, + "size": 5020, }, "ValidateAtomicAccess.js": { - "offset": 486580, + "offset": 486680, "size": 900, }, "ValidateTypedArray.js": { - "offset": 487480, + "offset": 487580, "size": 800, }, "WeekDay.js": { - "offset": 488270, + "offset": 488370, "size": 210, }, "WordCharacters.js": { - "offset": 488480, + "offset": 488580, "size": 1470, }, "YearFromTime.js": { - "offset": 489950, + "offset": 490050, "size": 400, }, "abs.js": { - "offset": 490350, + "offset": 490450, "size": 170, }, "floor.js": { - "offset": 490510, + "offset": 490610, "size": 240, }, "max.js": { - "offset": 490750, + "offset": 490850, "size": 140, }, "min.js": { - "offset": 490890, + "offset": 490990, "size": 140, }, "modulo.js": { - "offset": 491020, + "offset": 491120, "size": 170, }, "msFromTime.js": { - "offset": 491190, + "offset": 491290, "size": 260, }, "tables": { "files": { "typed-array-objects.js": { - "offset": 491440, + "offset": 491540, "size": 630, }, }, }, "thisBooleanValue.js": { - "offset": 492070, + "offset": 492170, "size": 330, }, "thisNumberValue.js": { - "offset": 492390, + "offset": 492490, "size": 350, }, "thisStringValue.js": { - "offset": 492740, + "offset": 492840, "size": 320, }, "thisTimeValue.js": { - "offset": 493060, + "offset": 493150, "size": 240, }, }, @@ -11764,655 +11756,655 @@ exports[`node_module collectors > pnpm max stack 2`] = ` "2018": { "files": { "AbstractEqualityComparison.js": { - "offset": 493290, + "offset": 493390, "size": 1210, }, "AbstractRelationalComparison.js": { - "offset": 494490, + "offset": 494590, "size": 1520, }, "AdvanceStringIndex.js": { - "offset": 496000, + "offset": 496110, "size": 1250, }, "ArrayCreate.js": { - "offset": 497250, + "offset": 497350, "size": 1430, }, "ArraySetLength.js": { - "offset": 498680, + "offset": 498780, "size": 2430, }, "ArraySpeciesCreate.js": { - "offset": 501100, + "offset": 501200, "size": 1370, }, "AsyncIteratorClose.js": { - "offset": 502470, + "offset": 502570, "size": 1810, }, "Call.js": { - "offset": 504270, + "offset": 504380, "size": 610, }, "CanonicalNumericIndexString.js": { - "offset": 504880, + "offset": 504980, "size": 580, }, "Canonicalize.js": { - "offset": 505450, + "offset": 505550, "size": 1190, }, "CharacterRange.js": { - "offset": 506630, + "offset": 506740, "size": 1350, }, "CompletePropertyDescriptor.js": { - "offset": 507980, + "offset": 508080, "size": 1110, }, "CompletionRecord.js": { - "offset": 509090, + "offset": 509190, "size": 1360, }, "CopyDataProperties.js": { - "offset": 510440, + "offset": 510550, "size": 1830, }, "CreateAsyncFromSyncIterator.js": { - "offset": 512270, - "size": 5590, + "offset": 512370, + "size": 5610, }, "CreateDataProperty.js": { - "offset": 517860, + "offset": 517980, "size": 730, }, "CreateDataPropertyOrThrow.js": { - "offset": 518580, + "offset": 518700, "size": 700, }, "CreateHTML.js": { - "offset": 519280, + "offset": 519400, "size": 840, }, "CreateIterResultObject.js": { - "offset": 520120, + "offset": 520240, "size": 350, }, "CreateListFromArrayLike.js": { - "offset": 520460, + "offset": 520590, "size": 1350, }, "CreateMethodProperty.js": { - "offset": 521810, + "offset": 521930, "size": 950, }, "DateFromTime.js": { - "offset": 522750, + "offset": 522880, "size": 990, }, "DateString.js": { - "offset": 523740, + "offset": 523860, "size": 990, }, "Day.js": { - "offset": 524720, + "offset": 524850, "size": 240, }, "DayFromYear.js": { - "offset": 524960, + "offset": 525080, "size": 260, }, "DayWithinYear.js": { - "offset": 525210, + "offset": 525340, "size": 290, }, "DaysInYear.js": { - "offset": 525500, + "offset": 525620, "size": 310, }, "DefinePropertyOrThrow.js": { - "offset": 525800, + "offset": 525920, "size": 1170, }, "DeletePropertyOrThrow.js": { - "offset": 526970, + "offset": 527090, "size": 670, }, "DetachArrayBuffer.js": { - "offset": 527630, + "offset": 527760, "size": 1720, }, "EnumerableOwnPropertyNames.js": { - "offset": 529350, + "offset": 529470, "size": 1010, }, "FromPropertyDescriptor.js": { - "offset": 530350, + "offset": 530480, "size": 540, }, "Get.js": { - "offset": 530890, + "offset": 531010, "size": 570, }, "GetGlobalObject.js": { - "offset": 531460, + "offset": 531580, "size": 200, }, "GetIterator.js": { - "offset": 531650, + "offset": 531780, "size": 760, }, "GetMethod.js": { - "offset": 532410, + "offset": 532530, "size": 690, }, "GetOwnPropertyKeys.js": { - "offset": 533090, + "offset": 533220, "size": 840, }, "GetPrototypeFromConstructor.js": { - "offset": 533920, + "offset": 534050, "size": 1080, }, "GetSubstitution.js": { - "offset": 535000, + "offset": 535130, "size": 4020, }, "GetV.js": { - "offset": 539020, + "offset": 539140, "size": 500, }, "GetValueFromBuffer.js": { - "offset": 539510, + "offset": 539630, "size": 4390, }, "HasOwnProperty.js": { - "offset": 543900, + "offset": 544020, "size": 540, }, "HasProperty.js": { - "offset": 544430, + "offset": 544560, "size": 490, }, "HourFromTime.js": { - "offset": 544920, + "offset": 545040, "size": 390, }, "InLeapYear.js": { - "offset": 545300, + "offset": 545420, "size": 470, }, "InstanceofOperator.js": { - "offset": 545760, + "offset": 545890, "size": 930, }, "IntegerIndexedElementGet.js": { - "offset": 546690, + "offset": 546810, "size": 1870, }, "IntegerIndexedElementSet.js": { - "offset": 548550, + "offset": 548680, "size": 1970, }, "InternalizeJSONProperty.js": { - "offset": 550520, + "offset": 550650, "size": 2180, }, "Invoke.js": { - "offset": 552700, + "offset": 552830, "size": 680, }, "IsAccessorDescriptor.js": { - "offset": 553370, + "offset": 553500, "size": 560, }, "IsArray.js": { - "offset": 553930, + "offset": 554060, "size": 120, }, "IsCallable.js": { - "offset": 554050, + "offset": 554170, "size": 110, }, "IsCompatiblePropertyDescriptor.js": { - "offset": 554160, - "size": 370, + "offset": 554280, + "size": 390, }, "IsConcatSpreadable.js": { - "offset": 554520, + "offset": 554670, "size": 640, }, "IsConstructor.js": { - "offset": 555160, + "offset": 555310, "size": 1150, }, "IsDataDescriptor.js": { - "offset": 556300, + "offset": 556450, "size": 570, }, "IsDetachedBuffer.js": { - "offset": 556870, + "offset": 557010, "size": 1000, }, "IsExtensible.js": { - "offset": 557860, + "offset": 558010, "size": 510, }, "IsGenericDescriptor.js": { - "offset": 558370, + "offset": 558510, "size": 660, }, "IsInteger.js": { - "offset": 559020, + "offset": 559170, "size": 210, }, "IsPromise.js": { - "offset": 559230, + "offset": 559380, "size": 490, }, "IsPropertyKey.js": { - "offset": 559720, + "offset": 559860, "size": 230, }, "IsRegExp.js": { - "offset": 559940, + "offset": 560090, "size": 570, }, "IsSharedArrayBuffer.js": { - "offset": 560510, + "offset": 560660, "size": 430, }, "IsStringPrefix.js": { - "offset": 560940, + "offset": 561080, "size": 860, }, "IsWordChar.js": { - "offset": 561790, + "offset": 561940, "size": 1370, }, "IterableToList.js": { - "offset": 563160, + "offset": 563300, "size": 530, }, "IteratorClose.js": { - "offset": 563680, + "offset": 563820, "size": 1770, }, "IteratorComplete.js": { - "offset": 565440, + "offset": 565590, "size": 460, }, "IteratorNext.js": { - "offset": 565900, + "offset": 566050, "size": 460, }, "IteratorStep.js": { - "offset": 566350, + "offset": 566500, "size": 350, }, "IteratorValue.js": { - "offset": 566700, + "offset": 566850, "size": 410, }, "MakeDate.js": { - "offset": 567110, + "offset": 567250, "size": 340, }, "MakeDay.js": { - "offset": 567440, + "offset": 567590, "size": 930, }, "MakeTime.js": { - "offset": 568360, + "offset": 568510, "size": 710, }, "MinFromTime.js": { - "offset": 569070, + "offset": 569210, "size": 400, }, "MonthFromTime.js": { - "offset": 569460, + "offset": 569610, "size": 1130, }, "NewPromiseCapability.js": { - "offset": 570590, + "offset": 570740, "size": 1230, }, "NormalCompletion.js": { - "offset": 571820, + "offset": 571970, "size": 240, }, "NumberToRawBytes.js": { - "offset": 572060, + "offset": 572200, "size": 1820, }, "NumberToString.js": { - "offset": 573880, + "offset": 574020, "size": 400, }, "ObjectCreate.js": { - "offset": 574280, + "offset": 574420, "size": 1330, }, "ObjectDefineProperties.js": { - "offset": 575600, + "offset": 575750, "size": 1440, }, "OrdinaryCreateFromConstructor.js": { - "offset": 577040, + "offset": 577180, "size": 810, }, "OrdinaryDefineOwnProperty.js": { - "offset": 577840, + "offset": 577990, "size": 2180, }, "OrdinaryGetOwnProperty.js": { - "offset": 580020, + "offset": 580160, "size": 1200, }, "OrdinaryGetPrototypeOf.js": { - "offset": 581210, + "offset": 581360, "size": 500, }, "OrdinaryHasInstance.js": { - "offset": 581700, + "offset": 581850, "size": 580, }, "OrdinaryHasProperty.js": { - "offset": 582270, + "offset": 582420, "size": 510, }, "OrdinarySetPrototypeOf.js": { - "offset": 582780, + "offset": 582920, "size": 1000, }, "OrdinaryToPrimitive.js": { - "offset": 583770, + "offset": 583920, "size": 1030, }, "PromiseResolve.js": { - "offset": 584800, + "offset": 584940, "size": 510, }, "QuoteJSONString.js": { - "offset": 585300, + "offset": 585450, "size": 1010, }, "RawBytesToNumber.js": { - "offset": 586300, + "offset": 586450, "size": 2010, }, "RegExpCreate.js": { - "offset": 588310, + "offset": 588450, "size": 650, }, "RegExpExec.js": { - "offset": 588950, + "offset": 589100, "size": 830, }, "RequireObjectCoercible.js": { - "offset": 589780, + "offset": 589930, "size": 90, }, "SameValue.js": { - "offset": 589860, + "offset": 590010, "size": 320, }, "SameValueNonNumber.js": { - "offset": 590170, + "offset": 590320, "size": 410, }, "SameValueZero.js": { - "offset": 590580, + "offset": 590720, "size": 230, }, "SecFromTime.js": { - "offset": 590800, + "offset": 590950, "size": 410, }, "Set.js": { - "offset": 591200, + "offset": 591350, "size": 1230, }, "SetFunctionLength.js": { - "offset": 592430, + "offset": 592570, "size": 990, }, "SetFunctionName.js": { - "offset": 593410, + "offset": 593560, "size": 1290, }, "SetIntegrityLevel.js": { - "offset": 594700, + "offset": 594850, "size": 1840, }, "SetValueInBuffer.js": { - "offset": 596530, + "offset": 596680, "size": 3700, }, "SpeciesConstructor.js": { - "offset": 600230, + "offset": 600380, "size": 850, }, "SplitMatch.js": { - "offset": 601070, + "offset": 601220, "size": 810, }, "StrictEqualityComparison.js": { - "offset": 601880, + "offset": 602020, "size": 320, }, "StringCreate.js": { - "offset": 602190, + "offset": 602340, "size": 1080, }, "StringGetOwnProperty.js": { - "offset": 603270, + "offset": 603420, "size": 1360, }, "SymbolDescriptiveString.js": { - "offset": 604630, + "offset": 604770, "size": 440, }, "TestIntegrityLevel.js": { - "offset": 605060, + "offset": 605210, "size": 1210, }, "ThrowCompletion.js": { - "offset": 606270, + "offset": 606420, "size": 240, }, "TimeClip.js": { - "offset": 606510, + "offset": 606660, "size": 440, }, "TimeFromYear.js": { - "offset": 606950, + "offset": 607090, "size": 270, }, "TimeString.js": { - "offset": 607210, + "offset": 607360, "size": 740, }, "TimeWithinDay.js": { - "offset": 607940, + "offset": 608090, "size": 250, }, "TimeZoneString.js": { - "offset": 608190, + "offset": 608340, "size": 1650, }, "ToBoolean.js": { - "offset": 609840, + "offset": 609980, "size": 130, }, "ToDateString.js": { - "offset": 609970, + "offset": 610110, "size": 520, }, "ToIndex.js": { - "offset": 610490, + "offset": 610630, "size": 620, }, "ToInt16.js": { - "offset": 611110, + "offset": 611250, "size": 260, }, "ToInt32.js": { - "offset": 611360, + "offset": 611510, "size": 180, }, "ToInt8.js": { - "offset": 611530, + "offset": 611680, "size": 250, }, "ToInteger.js": { - "offset": 611780, + "offset": 611920, "size": 270, }, "ToLength.js": { - "offset": 612040, + "offset": 612190, "size": 410, }, "ToNumber.js": { - "offset": 612450, + "offset": 612600, "size": 1510, }, "ToObject.js": { - "offset": 613950, + "offset": 614100, "size": 130, }, "ToPrimitive.js": { - "offset": 614080, + "offset": 614220, "size": 290, }, "ToPropertyDescriptor.js": { - "offset": 614360, + "offset": 614510, "size": 1460, }, "ToPropertyKey.js": { - "offset": 615810, + "offset": 615960, "size": 400, }, "ToString.js": { - "offset": 616210, + "offset": 616360, "size": 390, }, "ToUint16.js": { - "offset": 616600, + "offset": 616750, "size": 610, }, "ToUint32.js": { - "offset": 617210, + "offset": 617360, "size": 180, }, "ToUint8.js": { - "offset": 617380, + "offset": 617530, "size": 630, }, "ToUint8Clamp.js": { - "offset": 618010, + "offset": 618160, "size": 520, }, "Type.js": { - "offset": 618530, + "offset": 618680, "size": 250, }, "TypedArrayCreate.js": { - "offset": 618770, + "offset": 618920, "size": 1690, }, "TypedArraySpeciesCreate.js": { - "offset": 620460, + "offset": 620610, "size": 1380, }, "UTF16Decode.js": { - "offset": 621830, + "offset": 621980, "size": 830, }, "UTF16Encoding.js": { - "offset": 622650, + "offset": 622800, "size": 700, }, "UnicodeEscape.js": { - "offset": 623350, + "offset": 623500, "size": 790, }, "ValidateAndApplyPropertyDescriptor.js": { - "offset": 624140, - "size": 5010, + "offset": 624290, + "size": 5020, }, "ValidateAtomicAccess.js": { - "offset": 629140, + "offset": 629300, "size": 900, }, "ValidateTypedArray.js": { - "offset": 630040, + "offset": 630200, "size": 800, }, "WeekDay.js": { - "offset": 630830, + "offset": 630990, "size": 210, }, "WordCharacters.js": { - "offset": 631040, + "offset": 631200, "size": 1470, }, "YearFromTime.js": { - "offset": 632510, + "offset": 632670, "size": 400, }, "abs.js": { - "offset": 632910, + "offset": 633060, "size": 170, }, "floor.js": { - "offset": 633070, + "offset": 633230, "size": 240, }, "max.js": { - "offset": 633310, + "offset": 633470, "size": 140, }, "min.js": { - "offset": 633450, + "offset": 633600, "size": 140, }, "modulo.js": { - "offset": 633580, + "offset": 633740, "size": 170, }, "msFromTime.js": { - "offset": 633750, + "offset": 633910, "size": 260, }, "tables": { "files": { "typed-array-objects.js": { - "offset": 634000, + "offset": 634160, "size": 630, }, }, }, "thisBooleanValue.js": { - "offset": 634630, + "offset": 634790, "size": 330, }, "thisNumberValue.js": { - "offset": 634950, + "offset": 635110, "size": 350, }, "thisStringValue.js": { - "offset": 635300, + "offset": 635460, "size": 320, }, "thisSymbolValue.js": { - "offset": 635620, + "offset": 635770, "size": 530, }, "thisTimeValue.js": { - "offset": 636140, + "offset": 636300, "size": 240, }, }, @@ -12420,671 +12412,671 @@ exports[`node_module collectors > pnpm max stack 2`] = ` "2019": { "files": { "AbstractEqualityComparison.js": { - "offset": 636370, + "offset": 636530, "size": 1210, }, "AbstractRelationalComparison.js": { - "offset": 637580, + "offset": 637730, "size": 1520, }, "AddEntriesFromIterable.js": { - "offset": 639090, + "offset": 639250, "size": 1420, }, "AdvanceStringIndex.js": { - "offset": 640500, + "offset": 640670, "size": 1250, }, "ArrayCreate.js": { - "offset": 641750, + "offset": 641910, "size": 1430, }, "ArraySetLength.js": { - "offset": 643180, + "offset": 643340, "size": 2430, }, "ArraySpeciesCreate.js": { - "offset": 645600, + "offset": 645760, "size": 1370, }, "AsyncFromSyncIteratorContinuation.js": { - "offset": 646970, + "offset": 647130, "size": 1530, }, "AsyncIteratorClose.js": { - "offset": 648490, + "offset": 648650, "size": 1810, }, "Call.js": { - "offset": 650300, + "offset": 650460, "size": 610, }, "CanonicalNumericIndexString.js": { - "offset": 650900, + "offset": 651060, "size": 580, }, "Canonicalize.js": { - "offset": 651470, + "offset": 651630, "size": 1190, }, "CharacterRange.js": { - "offset": 652660, + "offset": 652820, "size": 1350, }, "CompletePropertyDescriptor.js": { - "offset": 654000, + "offset": 654160, "size": 1110, }, "CompletionRecord.js": { - "offset": 655110, + "offset": 655270, "size": 1360, }, "CopyDataProperties.js": { - "offset": 656470, + "offset": 656630, "size": 1830, }, "CreateAsyncFromSyncIterator.js": { - "offset": 658290, - "size": 4550, + "offset": 658450, + "size": 4570, }, "CreateDataProperty.js": { - "offset": 662840, + "offset": 663020, "size": 730, }, "CreateDataPropertyOrThrow.js": { - "offset": 663560, + "offset": 663740, "size": 700, }, "CreateHTML.js": { - "offset": 664260, + "offset": 664440, "size": 840, }, "CreateIterResultObject.js": { - "offset": 665100, + "offset": 665280, "size": 350, }, "CreateListFromArrayLike.js": { - "offset": 665450, + "offset": 665630, "size": 1350, }, "CreateMethodProperty.js": { - "offset": 666790, + "offset": 666970, "size": 950, }, "DateFromTime.js": { - "offset": 667740, + "offset": 667920, "size": 990, }, "DateString.js": { - "offset": 668720, + "offset": 668910, "size": 990, }, "Day.js": { - "offset": 669710, + "offset": 669890, "size": 240, }, "DayFromYear.js": { - "offset": 669940, + "offset": 670120, "size": 260, }, "DayWithinYear.js": { - "offset": 670200, + "offset": 670380, "size": 290, }, "DaysInYear.js": { - "offset": 670480, + "offset": 670670, "size": 310, }, "DefinePropertyOrThrow.js": { - "offset": 670780, + "offset": 670970, "size": 1170, }, "DeletePropertyOrThrow.js": { - "offset": 671950, + "offset": 672140, "size": 670, }, "DetachArrayBuffer.js": { - "offset": 672620, + "offset": 672800, "size": 1720, }, "EnumerableOwnPropertyNames.js": { - "offset": 674330, + "offset": 674510, "size": 1010, }, "FlattenIntoArray.js": { - "offset": 675340, + "offset": 675520, "size": 1670, }, "FromPropertyDescriptor.js": { - "offset": 677000, + "offset": 677190, "size": 540, }, "Get.js": { - "offset": 677540, + "offset": 677720, "size": 570, }, "GetGlobalObject.js": { - "offset": 678110, + "offset": 678290, "size": 200, }, "GetIterator.js": { - "offset": 678310, + "offset": 678490, "size": 760, }, "GetMethod.js": { - "offset": 679060, + "offset": 679240, "size": 690, }, "GetOwnPropertyKeys.js": { - "offset": 679750, + "offset": 679930, "size": 840, }, "GetPrototypeFromConstructor.js": { - "offset": 680580, + "offset": 680760, "size": 1080, }, "GetSubstitution.js": { - "offset": 681650, + "offset": 681840, "size": 4020, }, "GetV.js": { - "offset": 685670, + "offset": 685850, "size": 500, }, "GetValueFromBuffer.js": { - "offset": 686160, + "offset": 686340, "size": 4290, }, "HasOwnProperty.js": { - "offset": 690450, + "offset": 690630, "size": 540, }, "HasProperty.js": { - "offset": 690980, + "offset": 691160, "size": 490, }, "HourFromTime.js": { - "offset": 691460, + "offset": 691650, "size": 390, }, "InLeapYear.js": { - "offset": 691850, + "offset": 692030, "size": 470, }, "InstanceofOperator.js": { - "offset": 692310, + "offset": 692490, "size": 930, }, "IntegerIndexedElementGet.js": { - "offset": 693240, + "offset": 693420, "size": 1870, }, "IntegerIndexedElementSet.js": { - "offset": 695100, + "offset": 695280, "size": 1970, }, "InternalizeJSONProperty.js": { - "offset": 697070, + "offset": 697250, "size": 2180, }, "Invoke.js": { - "offset": 699250, + "offset": 699430, "size": 680, }, "IsAccessorDescriptor.js": { - "offset": 699920, + "offset": 700100, "size": 560, }, "IsArray.js": { - "offset": 700480, + "offset": 700660, "size": 120, }, "IsCallable.js": { - "offset": 700600, + "offset": 700780, "size": 110, }, "IsCompatiblePropertyDescriptor.js": { - "offset": 700700, - "size": 370, + "offset": 700890, + "size": 390, }, "IsConcatSpreadable.js": { - "offset": 701070, + "offset": 701280, "size": 640, }, "IsConstructor.js": { - "offset": 701710, + "offset": 701910, "size": 1150, }, "IsDataDescriptor.js": { - "offset": 702850, + "offset": 703060, "size": 570, }, "IsDetachedBuffer.js": { - "offset": 703410, + "offset": 703620, "size": 1000, }, "IsExtensible.js": { - "offset": 704410, + "offset": 704610, "size": 510, }, "IsGenericDescriptor.js": { - "offset": 704910, + "offset": 705120, "size": 660, }, "IsInteger.js": { - "offset": 705570, + "offset": 705770, "size": 210, }, "IsPromise.js": { - "offset": 705780, + "offset": 705980, "size": 490, }, "IsPropertyKey.js": { - "offset": 706260, + "offset": 706470, "size": 230, }, "IsRegExp.js": { - "offset": 706490, + "offset": 706690, "size": 570, }, "IsSharedArrayBuffer.js": { - "offset": 707060, + "offset": 707260, "size": 430, }, "IsStringPrefix.js": { - "offset": 707480, + "offset": 707690, "size": 860, }, "IsWordChar.js": { - "offset": 708340, + "offset": 708540, "size": 1370, }, "IterableToList.js": { - "offset": 709700, + "offset": 709910, "size": 530, }, "IteratorClose.js": { - "offset": 710220, + "offset": 710430, "size": 1770, }, "IteratorComplete.js": { - "offset": 711990, + "offset": 712190, "size": 460, }, "IteratorNext.js": { - "offset": 712450, + "offset": 712650, "size": 460, }, "IteratorStep.js": { - "offset": 712900, + "offset": 713110, "size": 350, }, "IteratorValue.js": { - "offset": 713250, + "offset": 713450, "size": 410, }, "MakeDate.js": { - "offset": 713650, + "offset": 713860, "size": 340, }, "MakeDay.js": { - "offset": 713990, + "offset": 714190, "size": 930, }, "MakeTime.js": { - "offset": 714910, + "offset": 715110, "size": 710, }, "MinFromTime.js": { - "offset": 715610, + "offset": 715820, "size": 400, }, "MonthFromTime.js": { - "offset": 716010, + "offset": 716210, "size": 1130, }, "NewPromiseCapability.js": { - "offset": 717140, + "offset": 717340, "size": 1230, }, "NormalCompletion.js": { - "offset": 718370, + "offset": 718570, "size": 240, }, "NumberToRawBytes.js": { - "offset": 718600, + "offset": 718810, "size": 1820, }, "NumberToString.js": { - "offset": 720420, + "offset": 720630, "size": 400, }, "ObjectCreate.js": { - "offset": 720820, + "offset": 721030, "size": 1330, }, "ObjectDefineProperties.js": { - "offset": 722150, + "offset": 722350, "size": 1440, }, "OrdinaryCreateFromConstructor.js": { - "offset": 723580, + "offset": 723790, "size": 810, }, "OrdinaryDefineOwnProperty.js": { - "offset": 724380, + "offset": 724590, "size": 2180, }, "OrdinaryGetOwnProperty.js": { - "offset": 726560, + "offset": 726770, "size": 1200, }, "OrdinaryGetPrototypeOf.js": { - "offset": 727760, + "offset": 727960, "size": 500, }, "OrdinaryHasInstance.js": { - "offset": 728250, + "offset": 728450, "size": 580, }, "OrdinaryHasProperty.js": { - "offset": 728820, + "offset": 729030, "size": 510, }, "OrdinarySetPrototypeOf.js": { - "offset": 729320, + "offset": 729530, "size": 1000, }, "OrdinaryToPrimitive.js": { - "offset": 730320, + "offset": 730520, "size": 1030, }, "PromiseResolve.js": { - "offset": 731340, + "offset": 731550, "size": 510, }, "QuoteJSONString.js": { - "offset": 731850, + "offset": 732050, "size": 1330, }, "RawBytesToNumber.js": { - "offset": 733170, + "offset": 733380, "size": 2010, }, "RegExpCreate.js": { - "offset": 735170, + "offset": 735380, "size": 650, }, "RegExpExec.js": { - "offset": 735820, + "offset": 736020, "size": 830, }, "RequireObjectCoercible.js": { - "offset": 736650, + "offset": 736850, "size": 90, }, "SameValue.js": { - "offset": 736730, + "offset": 736930, "size": 320, }, "SameValueNonNumber.js": { - "offset": 737040, + "offset": 737250, "size": 410, }, "SameValueZero.js": { - "offset": 737440, + "offset": 737650, "size": 230, }, "SecFromTime.js": { - "offset": 737670, + "offset": 737870, "size": 410, }, "Set.js": { - "offset": 738070, + "offset": 738270, "size": 1230, }, "SetFunctionLength.js": { - "offset": 739290, + "offset": 739500, "size": 990, }, "SetFunctionName.js": { - "offset": 740280, + "offset": 740480, "size": 1290, }, "SetIntegrityLevel.js": { - "offset": 741570, + "offset": 741770, "size": 1840, }, "SetValueInBuffer.js": { - "offset": 743400, + "offset": 743610, "size": 3700, }, "SpeciesConstructor.js": { - "offset": 747100, + "offset": 747300, "size": 850, }, "SplitMatch.js": { - "offset": 747940, + "offset": 748140, "size": 810, }, "StrictEqualityComparison.js": { - "offset": 748740, + "offset": 748950, "size": 320, }, "StringCreate.js": { - "offset": 749060, + "offset": 749270, "size": 1080, }, "StringGetOwnProperty.js": { - "offset": 750140, + "offset": 750340, "size": 1360, }, "SymbolDescriptiveString.js": { - "offset": 751490, + "offset": 751700, "size": 440, }, "TestIntegrityLevel.js": { - "offset": 751930, + "offset": 752130, "size": 1210, }, "ThrowCompletion.js": { - "offset": 753140, + "offset": 753340, "size": 240, }, "TimeClip.js": { - "offset": 753380, + "offset": 753580, "size": 440, }, "TimeFromYear.js": { - "offset": 753810, + "offset": 754020, "size": 270, }, "TimeString.js": { - "offset": 754080, + "offset": 754280, "size": 740, }, "TimeWithinDay.js": { - "offset": 754810, + "offset": 755020, "size": 250, }, "TimeZoneString.js": { - "offset": 755060, + "offset": 755260, "size": 1650, }, "ToBoolean.js": { - "offset": 756700, + "offset": 756910, "size": 130, }, "ToDateString.js": { - "offset": 756830, + "offset": 757040, "size": 520, }, "ToIndex.js": { - "offset": 757350, + "offset": 757560, "size": 620, }, "ToInt16.js": { - "offset": 757970, + "offset": 758180, "size": 260, }, "ToInt32.js": { - "offset": 758230, + "offset": 758430, "size": 180, }, "ToInt8.js": { - "offset": 758400, + "offset": 758610, "size": 250, }, "ToInteger.js": { - "offset": 758640, + "offset": 758850, "size": 270, }, "ToLength.js": { - "offset": 758910, + "offset": 759120, "size": 410, }, "ToNumber.js": { - "offset": 759320, + "offset": 759520, "size": 1510, }, "ToObject.js": { - "offset": 760820, + "offset": 761020, "size": 130, }, "ToPrimitive.js": { - "offset": 760940, + "offset": 761150, "size": 290, }, "ToPropertyDescriptor.js": { - "offset": 761230, + "offset": 761430, "size": 1460, }, "ToPropertyKey.js": { - "offset": 762680, + "offset": 762890, "size": 400, }, "ToString.js": { - "offset": 763080, + "offset": 763290, "size": 390, }, "ToUint16.js": { - "offset": 763470, + "offset": 763670, "size": 610, }, "ToUint32.js": { - "offset": 764080, + "offset": 764280, "size": 180, }, "ToUint8.js": { - "offset": 764250, + "offset": 764460, "size": 630, }, "ToUint8Clamp.js": { - "offset": 764880, + "offset": 765080, "size": 520, }, "TrimString.js": { - "offset": 765400, + "offset": 765600, "size": 760, }, "Type.js": { - "offset": 766150, + "offset": 766360, "size": 250, }, "TypedArrayCreate.js": { - "offset": 766400, + "offset": 766600, "size": 1690, }, "TypedArraySpeciesCreate.js": { - "offset": 768080, + "offset": 768290, "size": 1380, }, "UTF16Decode.js": { - "offset": 769450, + "offset": 769660, "size": 830, }, "UTF16Encoding.js": { - "offset": 770280, + "offset": 770480, "size": 700, }, "UnicodeEscape.js": { - "offset": 770970, + "offset": 771180, "size": 790, }, "ValidateAndApplyPropertyDescriptor.js": { - "offset": 771760, - "size": 5010, + "offset": 771970, + "size": 5020, }, "ValidateAtomicAccess.js": { - "offset": 776760, + "offset": 776980, "size": 900, }, "ValidateTypedArray.js": { - "offset": 777660, + "offset": 777880, "size": 800, }, "WeekDay.js": { - "offset": 778460, + "offset": 778670, "size": 210, }, "WordCharacters.js": { - "offset": 778670, + "offset": 778880, "size": 1470, }, "YearFromTime.js": { - "offset": 780130, + "offset": 780350, "size": 400, }, "abs.js": { - "offset": 780530, + "offset": 780750, "size": 170, }, "floor.js": { - "offset": 780700, + "offset": 780910, "size": 240, }, "max.js": { - "offset": 780940, + "offset": 781150, "size": 140, }, "min.js": { - "offset": 781070, + "offset": 781280, "size": 140, }, "modulo.js": { - "offset": 781200, + "offset": 781420, "size": 170, }, "msFromTime.js": { - "offset": 781370, + "offset": 781590, "size": 260, }, "tables": { "files": { "typed-array-objects.js": { - "offset": 781620, + "offset": 781840, "size": 630, }, }, }, "thisBooleanValue.js": { - "offset": 782250, + "offset": 782470, "size": 330, }, "thisNumberValue.js": { - "offset": 782580, + "offset": 782790, "size": 350, }, "thisStringValue.js": { - "offset": 782920, + "offset": 783140, "size": 320, }, "thisSymbolValue.js": { - "offset": 783240, + "offset": 783450, "size": 530, }, "thisTimeValue.js": { - "offset": 783770, + "offset": 783980, "size": 240, }, }, @@ -13092,927 +13084,927 @@ exports[`node_module collectors > pnpm max stack 2`] = ` "2020": { "files": { "AbstractEqualityComparison.js": { - "offset": 784000, + "offset": 784210, "size": 1960, }, "AbstractRelationalComparison.js": { - "offset": 785950, + "offset": 786170, "size": 2100, }, "AddEntriesFromIterable.js": { - "offset": 788040, + "offset": 788260, "size": 1420, }, "AdvanceStringIndex.js": { - "offset": 789460, + "offset": 789670, "size": 940, }, "ArrayCreate.js": { - "offset": 790400, + "offset": 790610, "size": 1430, }, "ArraySetLength.js": { - "offset": 791820, + "offset": 792040, "size": 2430, }, "ArraySpeciesCreate.js": { - "offset": 794250, + "offset": 794460, "size": 1370, }, "AsyncFromSyncIteratorContinuation.js": { - "offset": 795610, + "offset": 795830, "size": 1530, }, "AsyncIteratorClose.js": { - "offset": 797140, + "offset": 797350, "size": 1810, }, "BigInt": { "files": { "add.js": { - "offset": 798940, + "offset": 799160, "size": 390, }, "bitwiseAND.js": { - "offset": 799320, + "offset": 799540, "size": 430, }, "bitwiseNOT.js": { - "offset": 799750, + "offset": 799960, "size": 420, }, "bitwiseOR.js": { - "offset": 800170, + "offset": 800380, "size": 430, }, "bitwiseXOR.js": { - "offset": 800590, + "offset": 800810, "size": 430, }, "divide.js": { - "offset": 801020, + "offset": 801230, "size": 600, }, "equal.js": { - "offset": 801610, + "offset": 801830, "size": 390, }, "exponentiate.js": { - "offset": 802000, + "offset": 802210, "size": 860, }, "index.js": { - "offset": 802850, + "offset": 803070, "size": 1280, }, "leftShift.js": { - "offset": 804130, + "offset": 804340, "size": 400, }, "lessThan.js": { - "offset": 804520, + "offset": 804740, "size": 400, }, "multiply.js": { - "offset": 804910, + "offset": 805130, "size": 400, }, "remainder.js": { - "offset": 805300, + "offset": 805520, "size": 680, }, "sameValue.js": { - "offset": 805970, + "offset": 806190, "size": 410, }, "sameValueZero.js": { - "offset": 806380, + "offset": 806590, "size": 410, }, "signedRightShift.js": { - "offset": 806780, + "offset": 807000, "size": 430, }, "subtract.js": { - "offset": 807210, + "offset": 807430, "size": 400, }, "toString.js": { - "offset": 807600, + "offset": 807820, "size": 400, }, "unaryMinus.js": { - "offset": 808000, + "offset": 808210, "size": 480, }, "unsignedRightShift.js": { - "offset": 808480, + "offset": 808690, "size": 440, }, }, }, "BigIntBitwiseOp.js": { - "offset": 808910, + "offset": 809120, "size": 1670, }, "BinaryAnd.js": { - "offset": 810570, + "offset": 810790, "size": 320, }, "BinaryOr.js": { - "offset": 810890, + "offset": 811100, "size": 320, }, "BinaryXor.js": { - "offset": 811200, + "offset": 811420, "size": 320, }, "Call.js": { - "offset": 811520, + "offset": 811730, "size": 610, }, "CanonicalNumericIndexString.js": { - "offset": 812120, + "offset": 812340, "size": 580, }, "Canonicalize.js": { - "offset": 812690, + "offset": 812910, "size": 1190, }, "CharacterRange.js": { - "offset": 813880, + "offset": 814090, "size": 1350, }, "CodePointAt.js": { - "offset": 815220, + "offset": 815440, "size": 1640, }, "CompletePropertyDescriptor.js": { - "offset": 816850, + "offset": 817070, "size": 1110, }, "CompletionRecord.js": { - "offset": 817960, + "offset": 818180, "size": 1360, }, "CopyDataProperties.js": { - "offset": 819320, + "offset": 819540, "size": 1840, }, "CreateAsyncFromSyncIterator.js": { - "offset": 821160, - "size": 4570, + "offset": 821370, + "size": 4590, }, "CreateDataProperty.js": { - "offset": 825730, + "offset": 825960, "size": 730, }, "CreateDataPropertyOrThrow.js": { - "offset": 826450, + "offset": 826680, "size": 700, }, "CreateHTML.js": { - "offset": 827150, + "offset": 827380, "size": 840, }, "CreateIterResultObject.js": { - "offset": 827990, + "offset": 828220, "size": 350, }, "CreateListFromArrayLike.js": { - "offset": 828340, + "offset": 828570, "size": 1500, }, "CreateMethodProperty.js": { - "offset": 829830, + "offset": 830060, "size": 950, }, "CreateRegExpStringIterator.js": { - "offset": 830770, - "size": 3410, + "offset": 831010, + "size": 3420, }, "DateFromTime.js": { - "offset": 834180, + "offset": 834420, "size": 990, }, "DateString.js": { - "offset": 835170, + "offset": 835410, "size": 990, }, "Day.js": { - "offset": 836150, + "offset": 836390, "size": 240, }, "DayFromYear.js": { - "offset": 836380, + "offset": 836630, "size": 260, }, "DayWithinYear.js": { - "offset": 836640, + "offset": 836880, "size": 290, }, "DaysInYear.js": { - "offset": 836930, + "offset": 837170, "size": 310, }, "DefinePropertyOrThrow.js": { - "offset": 837230, + "offset": 837470, "size": 1170, }, "DeletePropertyOrThrow.js": { - "offset": 838400, + "offset": 838640, "size": 670, }, "DetachArrayBuffer.js": { - "offset": 839060, + "offset": 839310, "size": 1720, }, "EnumerableOwnPropertyNames.js": { - "offset": 840770, + "offset": 841020, "size": 1010, }, "FlattenIntoArray.js": { - "offset": 841780, + "offset": 842020, "size": 1680, }, "FromPropertyDescriptor.js": { - "offset": 843460, + "offset": 843700, "size": 540, }, "Get.js": { - "offset": 843990, + "offset": 844240, "size": 570, }, "GetGlobalObject.js": { - "offset": 844560, + "offset": 844810, "size": 200, }, "GetIterator.js": { - "offset": 844760, - "size": 1720, + "offset": 845010, + "size": 1730, }, "GetMethod.js": { - "offset": 846470, + "offset": 846730, "size": 690, }, "GetOwnPropertyKeys.js": { - "offset": 847160, + "offset": 847410, "size": 840, }, "GetPrototypeFromConstructor.js": { - "offset": 847990, + "offset": 848240, "size": 1080, }, "GetSubstitution.js": { - "offset": 849070, + "offset": 849320, "size": 4020, }, "GetV.js": { - "offset": 853080, + "offset": 853340, "size": 500, }, "GetValueFromBuffer.js": { - "offset": 853570, + "offset": 853830, "size": 4530, }, "HasOwnProperty.js": { - "offset": 858100, + "offset": 858350, "size": 540, }, "HasProperty.js": { - "offset": 858630, + "offset": 858890, "size": 490, }, "HourFromTime.js": { - "offset": 859120, + "offset": 859370, "size": 390, }, "InLeapYear.js": { - "offset": 859500, + "offset": 859750, "size": 470, }, "InstanceofOperator.js": { - "offset": 859960, + "offset": 860220, "size": 930, }, "IntegerIndexedElementGet.js": { - "offset": 860890, + "offset": 861140, "size": 1590, }, "IntegerIndexedElementSet.js": { - "offset": 862470, + "offset": 862730, "size": 1890, }, "InternalizeJSONProperty.js": { - "offset": 864350, + "offset": 864610, "size": 2110, }, "Invoke.js": { - "offset": 866460, + "offset": 866710, "size": 680, }, "IsAccessorDescriptor.js": { - "offset": 867130, + "offset": 867390, "size": 560, }, "IsArray.js": { - "offset": 867690, + "offset": 867940, "size": 120, }, "IsBigIntElementType.js": { - "offset": 867810, + "offset": 868060, "size": 200, }, "IsCallable.js": { - "offset": 868000, + "offset": 868260, "size": 110, }, "IsCompatiblePropertyDescriptor.js": { - "offset": 868110, - "size": 370, + "offset": 868360, + "size": 390, }, "IsConcatSpreadable.js": { - "offset": 868480, + "offset": 868750, "size": 640, }, "IsConstructor.js": { - "offset": 869110, + "offset": 869390, "size": 1150, }, "IsDataDescriptor.js": { - "offset": 870260, + "offset": 870530, "size": 570, }, "IsDetachedBuffer.js": { - "offset": 870820, + "offset": 871090, "size": 1000, }, "IsExtensible.js": { - "offset": 871820, + "offset": 872090, "size": 510, }, "IsGenericDescriptor.js": { - "offset": 872320, + "offset": 872600, "size": 660, }, "IsInteger.js": { - "offset": 872980, + "offset": 873250, "size": 210, }, "IsNoTearConfiguration.js": { - "offset": 873180, + "offset": 873460, "size": 470, }, "IsNonNegativeInteger.js": { - "offset": 873650, + "offset": 873930, "size": 240, }, "IsPromise.js": { - "offset": 873890, + "offset": 874160, "size": 490, }, "IsPropertyKey.js": { - "offset": 874370, + "offset": 874650, "size": 230, }, "IsRegExp.js": { - "offset": 874590, + "offset": 874870, "size": 570, }, "IsSharedArrayBuffer.js": { - "offset": 875160, + "offset": 875440, "size": 430, }, "IsStringPrefix.js": { - "offset": 875590, + "offset": 875870, "size": 860, }, "IsUnclampedIntegerElementType.js": { - "offset": 876440, + "offset": 876720, "size": 300, }, "IsUnsignedElementType.js": { - "offset": 876740, + "offset": 877020, "size": 270, }, "IsValidIntegerIndex.js": { - "offset": 877010, + "offset": 877290, "size": 850, }, "IsWordChar.js": { - "offset": 877850, + "offset": 878130, "size": 1370, }, "IterableToList.js": { - "offset": 879220, + "offset": 879500, "size": 530, }, "IteratorClose.js": { - "offset": 879750, + "offset": 880030, "size": 1770, }, "IteratorComplete.js": { - "offset": 881510, + "offset": 881790, "size": 460, }, "IteratorNext.js": { - "offset": 881970, + "offset": 882250, "size": 460, }, "IteratorStep.js": { - "offset": 882430, + "offset": 882700, "size": 350, }, "IteratorValue.js": { - "offset": 882780, + "offset": 883050, "size": 410, }, "LengthOfArrayLike.js": { - "offset": 883180, + "offset": 883460, "size": 470, }, "MakeDate.js": { - "offset": 883640, + "offset": 883920, "size": 340, }, "MakeDay.js": { - "offset": 883970, + "offset": 884250, "size": 930, }, "MakeTime.js": { - "offset": 884900, + "offset": 885170, "size": 710, }, "MinFromTime.js": { - "offset": 885600, + "offset": 885880, "size": 400, }, "MonthFromTime.js": { - "offset": 886000, + "offset": 886270, "size": 1130, }, "NewPromiseCapability.js": { - "offset": 887130, + "offset": 887400, "size": 1230, }, "NormalCompletion.js": { - "offset": 888350, + "offset": 888630, "size": 240, }, "Number": { "files": { "add.js": { - "offset": 888590, + "offset": 888870, "size": 890, }, "bitwiseAND.js": { - "offset": 889470, + "offset": 889750, "size": 430, }, "bitwiseNOT.js": { - "offset": 889900, + "offset": 890180, "size": 500, }, "bitwiseOR.js": { - "offset": 890400, + "offset": 890680, "size": 430, }, "bitwiseXOR.js": { - "offset": 890820, + "offset": 891100, "size": 430, }, "divide.js": { - "offset": 891250, + "offset": 891530, "size": 570, }, "equal.js": { - "offset": 891810, + "offset": 892090, "size": 480, }, "exponentiate.js": { - "offset": 892290, + "offset": 892570, "size": 1740, }, "index.js": { - "offset": 894030, + "offset": 894310, "size": 1280, }, "leftShift.js": { - "offset": 895310, + "offset": 895580, "size": 530, }, "lessThan.js": { - "offset": 895830, + "offset": 896100, "size": 570, }, "multiply.js": { - "offset": 896390, - "size": 770, + "offset": 896670, + "size": 830, }, "remainder.js": { - "offset": 897160, - "size": 970, + "offset": 897490, + "size": 1020, }, "sameValue.js": { - "offset": 898120, + "offset": 898500, "size": 570, }, "sameValueZero.js": { - "offset": 898690, + "offset": 899070, "size": 500, }, "signedRightShift.js": { - "offset": 899190, + "offset": 899570, "size": 540, }, "subtract.js": { - "offset": 899730, + "offset": 900110, "size": 350, }, "toString.js": { - "offset": 900070, + "offset": 900450, "size": 400, }, "unaryMinus.js": { - "offset": 900470, + "offset": 900850, "size": 400, }, "unsignedRightShift.js": { - "offset": 900860, + "offset": 901240, "size": 550, }, }, }, "NumberBitwiseOp.js": { - "offset": 901400, + "offset": 901780, "size": 690, }, "NumberToBigInt.js": { - "offset": 902080, + "offset": 902460, "size": 800, }, "NumericToRawBytes.js": { - "offset": 902870, + "offset": 903250, "size": 2030, }, "ObjectDefineProperties.js": { - "offset": 904900, + "offset": 905280, "size": 1440, }, "OrdinaryCreateFromConstructor.js": { - "offset": 906330, + "offset": 906710, "size": 830, }, "OrdinaryDefineOwnProperty.js": { - "offset": 907160, + "offset": 907540, "size": 2180, }, "OrdinaryGetOwnProperty.js": { - "offset": 909330, + "offset": 909710, "size": 1200, }, "OrdinaryGetPrototypeOf.js": { - "offset": 910530, + "offset": 910910, "size": 500, }, "OrdinaryHasInstance.js": { - "offset": 911020, + "offset": 911400, "size": 580, }, "OrdinaryHasProperty.js": { - "offset": 911590, + "offset": 911970, "size": 510, }, "OrdinaryObjectCreate.js": { - "offset": 912090, + "offset": 912470, "size": 1630, }, "OrdinarySetPrototypeOf.js": { - "offset": 913720, + "offset": 914100, "size": 1000, }, "OrdinaryToPrimitive.js": { - "offset": 914720, + "offset": 915100, "size": 1030, }, "PromiseResolve.js": { - "offset": 915740, + "offset": 916120, "size": 510, }, "QuoteJSONString.js": { - "offset": 916250, + "offset": 916630, "size": 1400, }, "RawBytesToNumeric.js": { - "offset": 917640, + "offset": 918030, "size": 2370, }, "RegExpCreate.js": { - "offset": 920010, + "offset": 920390, "size": 650, }, "RegExpExec.js": { - "offset": 920660, + "offset": 921040, "size": 830, }, "RequireObjectCoercible.js": { - "offset": 921490, + "offset": 921870, "size": 90, }, "SameValue.js": { - "offset": 921570, + "offset": 921950, "size": 320, }, "SameValueNonNumeric.js": { - "offset": 921880, + "offset": 922260, "size": 580, }, "SameValueZero.js": { - "offset": 922450, + "offset": 922830, "size": 230, }, "SecFromTime.js": { - "offset": 922680, + "offset": 923060, "size": 410, }, "Set.js": { - "offset": 923080, + "offset": 923460, "size": 1230, }, "SetFunctionLength.js": { - "offset": 924300, + "offset": 924690, "size": 990, }, "SetFunctionName.js": { - "offset": 925290, + "offset": 925680, "size": 1290, }, "SetIntegrityLevel.js": { - "offset": 926580, + "offset": 926960, "size": 1840, }, "SetValueInBuffer.js": { - "offset": 928420, + "offset": 928800, "size": 3990, }, "SpeciesConstructor.js": { - "offset": 932410, + "offset": 932790, "size": 850, }, "SplitMatch.js": { - "offset": 933250, + "offset": 933630, "size": 810, }, "StrictEqualityComparison.js": { - "offset": 934050, + "offset": 934430, "size": 320, }, "StringCreate.js": { - "offset": 934370, + "offset": 934750, "size": 1080, }, "StringGetOwnProperty.js": { - "offset": 935440, + "offset": 935830, "size": 1360, }, "StringPad.js": { - "offset": 936800, + "offset": 937180, "size": 1210, }, "StringToBigInt.js": { - "offset": 938010, + "offset": 938390, "size": 580, }, "SymbolDescriptiveString.js": { - "offset": 938590, + "offset": 938970, "size": 440, }, "TestIntegrityLevel.js": { - "offset": 939020, + "offset": 939400, "size": 1210, }, "ThrowCompletion.js": { - "offset": 940230, + "offset": 940610, "size": 240, }, "TimeClip.js": { - "offset": 940470, + "offset": 940850, "size": 440, }, "TimeFromYear.js": { - "offset": 940910, + "offset": 941290, "size": 270, }, "TimeString.js": { - "offset": 941170, + "offset": 941550, "size": 740, }, "TimeWithinDay.js": { - "offset": 941900, + "offset": 942280, "size": 250, }, "TimeZoneString.js": { - "offset": 942150, + "offset": 942530, "size": 1650, }, "ToBigInt.js": { - "offset": 943800, + "offset": 944180, "size": 1310, }, "ToBigInt64.js": { - "offset": 945100, + "offset": 945480, "size": 960, }, "ToBigUint64.js": { - "offset": 946050, + "offset": 946430, "size": 710, }, "ToBoolean.js": { - "offset": 946760, + "offset": 947140, "size": 130, }, "ToDateString.js": { - "offset": 946890, + "offset": 947270, "size": 520, }, "ToIndex.js": { - "offset": 947410, + "offset": 947790, "size": 610, }, "ToInt16.js": { - "offset": 948020, + "offset": 948400, "size": 260, }, "ToInt32.js": { - "offset": 948270, + "offset": 948650, "size": 180, }, "ToInt8.js": { - "offset": 948450, + "offset": 948830, "size": 250, }, "ToInteger.js": { - "offset": 948690, + "offset": 949070, "size": 340, }, "ToLength.js": { - "offset": 949020, + "offset": 949400, "size": 410, }, "ToNumber.js": { - "offset": 949420, + "offset": 949800, "size": 1630, }, "ToNumeric.js": { - "offset": 951050, + "offset": 951430, "size": 530, }, "ToObject.js": { - "offset": 951570, + "offset": 951950, "size": 130, }, "ToPrimitive.js": { - "offset": 951700, + "offset": 952080, "size": 290, }, "ToPropertyDescriptor.js": { - "offset": 951980, + "offset": 952360, "size": 1460, }, "ToPropertyKey.js": { - "offset": 953430, + "offset": 953810, "size": 400, }, "ToString.js": { - "offset": 953830, + "offset": 954210, "size": 390, }, "ToUint16.js": { - "offset": 954220, + "offset": 954600, "size": 610, }, "ToUint32.js": { - "offset": 954830, + "offset": 955210, "size": 180, }, "ToUint8.js": { - "offset": 955000, + "offset": 955380, "size": 630, }, "ToUint8Clamp.js": { - "offset": 955630, + "offset": 956010, "size": 520, }, "TrimString.js": { - "offset": 956150, + "offset": 956530, "size": 760, }, "Type.js": { - "offset": 956910, + "offset": 957290, "size": 300, }, "TypedArrayCreate.js": { - "offset": 957200, + "offset": 957580, "size": 1690, }, "TypedArraySpeciesCreate.js": { - "offset": 958890, + "offset": 959270, "size": 1380, }, "UTF16DecodeString.js": { - "offset": 960260, + "offset": 960640, "size": 600, }, "UTF16DecodeSurrogatePair.js": { - "offset": 960850, + "offset": 961230, "size": 780, }, "UTF16Encoding.js": { - "offset": 961630, + "offset": 962010, "size": 700, }, "UnicodeEscape.js": { - "offset": 962320, + "offset": 962700, "size": 790, }, "ValidateAndApplyPropertyDescriptor.js": { - "offset": 963110, - "size": 5010, + "offset": 963490, + "size": 5020, }, "ValidateAtomicAccess.js": { - "offset": 968110, + "offset": 968500, "size": 900, }, "ValidateTypedArray.js": { - "offset": 969010, + "offset": 969400, "size": 800, }, "WeekDay.js": { - "offset": 969800, + "offset": 970190, "size": 210, }, "WordCharacters.js": { - "offset": 970010, + "offset": 970400, "size": 1470, }, "YearFromTime.js": { - "offset": 971480, + "offset": 971870, "size": 400, }, "abs.js": { - "offset": 971870, + "offset": 972260, "size": 220, }, "floor.js": { - "offset": 972090, + "offset": 972480, "size": 290, }, "max.js": { - "offset": 972380, + "offset": 972760, "size": 140, }, "min.js": { - "offset": 972510, + "offset": 972900, "size": 140, }, "modulo.js": { - "offset": 972650, + "offset": 973030, "size": 170, }, "msFromTime.js": { - "offset": 972810, + "offset": 973200, "size": 260, }, "tables": { "files": { "typed-array-objects.js": { - "offset": 973070, + "offset": 973450, "size": 780, }, }, }, "thisBigIntValue.js": { - "offset": 973840, + "offset": 974230, "size": 460, }, "thisBooleanValue.js": { - "offset": 974290, + "offset": 974680, "size": 330, }, "thisNumberValue.js": { - "offset": 974620, + "offset": 975000, "size": 350, }, "thisStringValue.js": { - "offset": 974960, + "offset": 975350, "size": 320, }, "thisSymbolValue.js": { - "offset": 975280, + "offset": 975660, "size": 530, }, "thisTimeValue.js": { - "offset": 975810, + "offset": 976190, "size": 240, }, }, @@ -14020,983 +14012,983 @@ exports[`node_module collectors > pnpm max stack 2`] = ` "2021": { "files": { "AbstractEqualityComparison.js": { - "offset": 976040, + "offset": 976420, "size": 1960, }, "AbstractRelationalComparison.js": { - "offset": 977990, + "offset": 978380, "size": 2100, }, "AddEntriesFromIterable.js": { - "offset": 980080, + "offset": 980470, "size": 1420, }, "AddToKeptObjects.js": { - "offset": 981500, + "offset": 981880, "size": 540, }, "AdvanceStringIndex.js": { - "offset": 982030, + "offset": 982420, "size": 940, }, "ApplyStringOrNumericBinaryOperator.js": { - "offset": 982970, + "offset": 983350, "size": 3130, }, "ArrayCreate.js": { - "offset": 986100, + "offset": 986480, "size": 1430, }, "ArraySetLength.js": { - "offset": 987520, + "offset": 987900, "size": 2430, }, "ArraySpeciesCreate.js": { - "offset": 989940, + "offset": 990330, "size": 1370, }, "AsyncFromSyncIteratorContinuation.js": { - "offset": 991310, + "offset": 991700, "size": 1530, }, "AsyncIteratorClose.js": { - "offset": 992830, + "offset": 993220, "size": 1940, }, "BigInt": { "files": { "add.js": { - "offset": 994770, + "offset": 995150, "size": 390, }, "bitwiseAND.js": { - "offset": 995150, + "offset": 995540, "size": 430, }, "bitwiseNOT.js": { - "offset": 995580, + "offset": 995960, "size": 420, }, "bitwiseOR.js": { - "offset": 995990, + "offset": 996380, "size": 430, }, "bitwiseXOR.js": { - "offset": 996420, + "offset": 996800, "size": 430, }, "divide.js": { - "offset": 996840, + "offset": 997230, "size": 600, }, "equal.js": { - "offset": 997440, + "offset": 997830, "size": 390, }, "exponentiate.js": { - "offset": 997830, + "offset": 998210, "size": 860, }, "index.js": { - "offset": 998680, + "offset": 999060, "size": 1280, }, "leftShift.js": { - "offset": 999950, + "offset": 1000340, "size": 400, }, "lessThan.js": { - "offset": 1000350, + "offset": 1000730, "size": 400, }, "multiply.js": { - "offset": 1000740, + "offset": 1001120, "size": 400, }, "remainder.js": { - "offset": 1001130, + "offset": 1001510, "size": 680, }, "sameValue.js": { - "offset": 1001800, + "offset": 1002190, "size": 410, }, "sameValueZero.js": { - "offset": 1002200, + "offset": 1002590, "size": 410, }, "signedRightShift.js": { - "offset": 1002610, + "offset": 1003000, "size": 430, }, "subtract.js": { - "offset": 1003040, + "offset": 1003420, "size": 400, }, "toString.js": { - "offset": 1003430, + "offset": 1003820, "size": 400, }, "unaryMinus.js": { - "offset": 1003820, + "offset": 1004210, "size": 480, }, "unsignedRightShift.js": { - "offset": 1004300, + "offset": 1004690, "size": 440, }, }, }, "BigIntBitwiseOp.js": { - "offset": 1004730, + "offset": 1005120, "size": 1670, }, "BinaryAnd.js": { - "offset": 1006400, + "offset": 1006780, "size": 320, }, "BinaryOr.js": { - "offset": 1006710, + "offset": 1007100, "size": 320, }, "BinaryXor.js": { - "offset": 1007030, + "offset": 1007410, "size": 320, }, "ByteListBitwiseOp.js": { - "offset": 1007340, + "offset": 1007730, "size": 1190, }, "ByteListEqual.js": { - "offset": 1008530, + "offset": 1008910, "size": 860, }, "Call.js": { - "offset": 1009390, + "offset": 1009770, "size": 610, }, "CanonicalNumericIndexString.js": { - "offset": 1009990, + "offset": 1010380, "size": 580, }, "Canonicalize.js": { - "offset": 1010560, + "offset": 1010950, "size": 1190, }, "CharacterRange.js": { - "offset": 1011750, + "offset": 1012130, "size": 1350, }, "ClearKeptObjects.js": { - "offset": 1013090, + "offset": 1013480, "size": 300, }, "CloneArrayBuffer.js": { - "offset": 1013390, + "offset": 1013770, "size": 1900, }, "CodePointAt.js": { - "offset": 1015280, + "offset": 1015670, "size": 1650, }, "CodePointsToString.js": { - "offset": 1016930, + "offset": 1017320, "size": 740, }, "CompletePropertyDescriptor.js": { - "offset": 1017670, + "offset": 1018050, "size": 1110, }, "CompletionRecord.js": { - "offset": 1018780, + "offset": 1019160, "size": 1360, }, "CopyDataProperties.js": { - "offset": 1020130, + "offset": 1020520, "size": 1990, }, "CreateAsyncFromSyncIterator.js": { - "offset": 1022120, - "size": 4570, + "offset": 1022510, + "size": 4590, }, "CreateDataProperty.js": { - "offset": 1026690, + "offset": 1027100, "size": 730, }, "CreateDataPropertyOrThrow.js": { - "offset": 1027410, + "offset": 1027820, "size": 700, }, "CreateHTML.js": { - "offset": 1028110, + "offset": 1028520, "size": 840, }, "CreateIterResultObject.js": { - "offset": 1028950, + "offset": 1029360, "size": 350, }, "CreateListFromArrayLike.js": { - "offset": 1029300, + "offset": 1029710, "size": 1370, }, "CreateMethodProperty.js": { - "offset": 1030670, + "offset": 1031070, "size": 950, }, "CreateRegExpStringIterator.js": { - "offset": 1031610, - "size": 3410, + "offset": 1032020, + "size": 3420, }, "DateFromTime.js": { - "offset": 1035020, + "offset": 1035430, "size": 990, }, "DateString.js": { - "offset": 1036010, + "offset": 1036420, "size": 990, }, "Day.js": { - "offset": 1036990, + "offset": 1037400, "size": 240, }, "DayFromYear.js": { - "offset": 1037220, + "offset": 1037640, "size": 260, }, "DayWithinYear.js": { - "offset": 1037480, + "offset": 1037890, "size": 290, }, "DaysInYear.js": { - "offset": 1037770, + "offset": 1038180, "size": 310, }, "DefinePropertyOrThrow.js": { - "offset": 1038070, + "offset": 1038480, "size": 1170, }, "DeletePropertyOrThrow.js": { - "offset": 1039240, + "offset": 1039650, "size": 670, }, "DetachArrayBuffer.js": { - "offset": 1039900, + "offset": 1040320, "size": 1720, }, "EnumerableOwnPropertyNames.js": { - "offset": 1041610, + "offset": 1042030, "size": 1010, }, "FlattenIntoArray.js": { - "offset": 1042620, + "offset": 1043030, "size": 1680, }, "FromPropertyDescriptor.js": { - "offset": 1044300, + "offset": 1044710, "size": 540, }, "Get.js": { - "offset": 1044830, + "offset": 1045250, "size": 570, }, "GetGlobalObject.js": { - "offset": 1045400, + "offset": 1045820, "size": 200, }, "GetIterator.js": { - "offset": 1045600, - "size": 1720, + "offset": 1046020, + "size": 1730, }, "GetMethod.js": { - "offset": 1047310, + "offset": 1047740, "size": 690, }, "GetOwnPropertyKeys.js": { - "offset": 1048000, + "offset": 1048420, "size": 840, }, "GetPromiseResolve.js": { - "offset": 1048830, + "offset": 1049250, "size": 640, }, "GetPrototypeFromConstructor.js": { - "offset": 1049470, + "offset": 1049890, "size": 1080, }, "GetSubstitution.js": { - "offset": 1050550, + "offset": 1050970, "size": 4040, }, "GetV.js": { - "offset": 1054580, + "offset": 1055010, "size": 500, }, "GetValueFromBuffer.js": { - "offset": 1055080, + "offset": 1055500, "size": 4530, }, "HasOwnProperty.js": { - "offset": 1059600, + "offset": 1060030, "size": 540, }, "HasProperty.js": { - "offset": 1060130, + "offset": 1060560, "size": 490, }, "HourFromTime.js": { - "offset": 1060620, + "offset": 1061050, "size": 390, }, "InLeapYear.js": { - "offset": 1061000, + "offset": 1061430, "size": 470, }, "InstanceofOperator.js": { - "offset": 1061470, + "offset": 1061890, "size": 930, }, "IntegerIndexedElementGet.js": { - "offset": 1062390, + "offset": 1062820, "size": 1250, }, "IntegerIndexedElementSet.js": { - "offset": 1063640, + "offset": 1064060, "size": 1570, }, "InternalizeJSONProperty.js": { - "offset": 1065200, + "offset": 1065630, "size": 2110, }, "Invoke.js": { - "offset": 1067310, + "offset": 1067730, "size": 680, }, "IsAccessorDescriptor.js": { - "offset": 1067980, + "offset": 1068400, "size": 560, }, "IsArray.js": { - "offset": 1068540, + "offset": 1068960, "size": 120, }, "IsBigIntElementType.js": { - "offset": 1068660, + "offset": 1069080, "size": 200, }, "IsCallable.js": { - "offset": 1068850, + "offset": 1069270, "size": 110, }, "IsCompatiblePropertyDescriptor.js": { - "offset": 1068960, - "size": 370, + "offset": 1069380, + "size": 390, }, "IsConcatSpreadable.js": { - "offset": 1069320, + "offset": 1069770, "size": 640, }, "IsConstructor.js": { - "offset": 1069960, + "offset": 1070410, "size": 1150, }, "IsDataDescriptor.js": { - "offset": 1071100, + "offset": 1071550, "size": 570, }, "IsDetachedBuffer.js": { - "offset": 1071670, + "offset": 1072110, "size": 1000, }, "IsExtensible.js": { - "offset": 1072660, + "offset": 1073110, "size": 510, }, "IsGenericDescriptor.js": { - "offset": 1073170, + "offset": 1073610, "size": 660, }, "IsIntegralNumber.js": { - "offset": 1073820, + "offset": 1074270, "size": 220, }, "IsNoTearConfiguration.js": { - "offset": 1074040, + "offset": 1074490, "size": 470, }, "IsPromise.js": { - "offset": 1074510, + "offset": 1074950, "size": 490, }, "IsPropertyKey.js": { - "offset": 1074990, + "offset": 1075440, "size": 230, }, "IsRegExp.js": { - "offset": 1075210, + "offset": 1075660, "size": 570, }, "IsSharedArrayBuffer.js": { - "offset": 1075780, + "offset": 1076230, "size": 430, }, "IsStringPrefix.js": { - "offset": 1076210, + "offset": 1076660, "size": 860, }, "IsUnclampedIntegerElementType.js": { - "offset": 1077060, + "offset": 1077510, "size": 300, }, "IsUnsignedElementType.js": { - "offset": 1077360, + "offset": 1077810, "size": 270, }, "IsValidIntegerIndex.js": { - "offset": 1077630, + "offset": 1078080, "size": 890, }, "IsWordChar.js": { - "offset": 1078510, + "offset": 1078960, "size": 1390, }, "IterableToList.js": { - "offset": 1079890, + "offset": 1080340, "size": 630, }, "IteratorClose.js": { - "offset": 1080520, + "offset": 1080970, "size": 1770, }, "IteratorComplete.js": { - "offset": 1082280, + "offset": 1082730, "size": 460, }, "IteratorNext.js": { - "offset": 1082740, + "offset": 1083190, "size": 460, }, "IteratorStep.js": { - "offset": 1083200, + "offset": 1083640, "size": 350, }, "IteratorValue.js": { - "offset": 1083540, + "offset": 1083990, "size": 410, }, "LengthOfArrayLike.js": { - "offset": 1083950, + "offset": 1084390, "size": 470, }, "MakeDate.js": { - "offset": 1084410, + "offset": 1084860, "size": 340, }, "MakeDay.js": { - "offset": 1084740, + "offset": 1085190, "size": 1020, }, "MakeTime.js": { - "offset": 1085750, + "offset": 1086200, "size": 770, }, "MinFromTime.js": { - "offset": 1086520, + "offset": 1086960, "size": 400, }, "MonthFromTime.js": { - "offset": 1086910, + "offset": 1087360, "size": 1130, }, "NewPromiseCapability.js": { - "offset": 1088040, + "offset": 1088490, "size": 1230, }, "NormalCompletion.js": { - "offset": 1089270, + "offset": 1089720, "size": 240, }, "Number": { "files": { "add.js": { - "offset": 1089510, + "offset": 1089950, "size": 800, }, "bitwiseAND.js": { - "offset": 1090310, + "offset": 1090750, "size": 430, }, "bitwiseNOT.js": { - "offset": 1090730, + "offset": 1091180, "size": 500, }, "bitwiseOR.js": { - "offset": 1091230, + "offset": 1091680, "size": 430, }, "bitwiseXOR.js": { - "offset": 1091660, + "offset": 1092100, "size": 430, }, "divide.js": { - "offset": 1092080, + "offset": 1092530, "size": 570, }, "equal.js": { - "offset": 1092650, + "offset": 1093090, "size": 480, }, "exponentiate.js": { - "offset": 1093130, + "offset": 1093570, "size": 1740, }, "index.js": { - "offset": 1094870, + "offset": 1095310, "size": 1280, }, "leftShift.js": { - "offset": 1096140, + "offset": 1096590, "size": 570, }, "lessThan.js": { - "offset": 1096700, + "offset": 1097150, "size": 570, }, "multiply.js": { - "offset": 1097270, - "size": 770, + "offset": 1097710, + "size": 830, }, "remainder.js": { - "offset": 1098040, - "size": 950, + "offset": 1098540, + "size": 1010, }, "sameValue.js": { - "offset": 1098990, + "offset": 1099540, "size": 570, }, "sameValueZero.js": { - "offset": 1099550, + "offset": 1100110, "size": 500, }, "signedRightShift.js": { - "offset": 1100050, + "offset": 1100600, "size": 580, }, "subtract.js": { - "offset": 1100630, + "offset": 1101180, "size": 460, }, "toString.js": { - "offset": 1101090, + "offset": 1101640, "size": 400, }, "unaryMinus.js": { - "offset": 1101480, + "offset": 1102030, "size": 400, }, "unsignedRightShift.js": { - "offset": 1101870, + "offset": 1102420, "size": 590, }, }, }, "NumberBitwiseOp.js": { - "offset": 1102450, + "offset": 1103000, "size": 690, }, "NumberToBigInt.js": { - "offset": 1103130, + "offset": 1103680, "size": 800, }, "NumericToRawBytes.js": { - "offset": 1103930, + "offset": 1104480, "size": 2030, }, "ObjectDefineProperties.js": { - "offset": 1105950, + "offset": 1106500, "size": 1440, }, "OrdinaryCreateFromConstructor.js": { - "offset": 1107380, + "offset": 1107940, "size": 830, }, "OrdinaryDefineOwnProperty.js": { - "offset": 1108210, + "offset": 1108760, "size": 2180, }, "OrdinaryGetOwnProperty.js": { - "offset": 1110390, + "offset": 1110940, "size": 1200, }, "OrdinaryGetPrototypeOf.js": { - "offset": 1111580, + "offset": 1112130, "size": 500, }, "OrdinaryHasInstance.js": { - "offset": 1112080, + "offset": 1112630, "size": 580, }, "OrdinaryHasProperty.js": { - "offset": 1112650, + "offset": 1113200, "size": 510, }, "OrdinaryObjectCreate.js": { - "offset": 1113150, + "offset": 1113700, "size": 1630, }, "OrdinarySetPrototypeOf.js": { - "offset": 1114770, + "offset": 1115330, "size": 1000, }, "OrdinaryToPrimitive.js": { - "offset": 1115770, + "offset": 1116320, "size": 1030, }, "PromiseResolve.js": { - "offset": 1116800, + "offset": 1117350, "size": 510, }, "QuoteJSONString.js": { - "offset": 1117300, + "offset": 1117850, "size": 1430, }, "RawBytesToNumeric.js": { - "offset": 1118720, + "offset": 1119270, "size": 2370, }, "RegExpCreate.js": { - "offset": 1121090, + "offset": 1121640, "size": 650, }, "RegExpExec.js": { - "offset": 1121730, + "offset": 1122290, "size": 830, }, "RequireObjectCoercible.js": { - "offset": 1122560, + "offset": 1123120, "size": 90, }, "SameValue.js": { - "offset": 1122650, + "offset": 1123200, "size": 320, }, "SameValueNonNumeric.js": { - "offset": 1122960, + "offset": 1123510, "size": 580, }, "SameValueZero.js": { - "offset": 1123530, + "offset": 1124080, "size": 230, }, "SecFromTime.js": { - "offset": 1123760, + "offset": 1124310, "size": 410, }, "Set.js": { - "offset": 1124160, + "offset": 1124710, "size": 1230, }, "SetFunctionLength.js": { - "offset": 1125380, + "offset": 1125930, "size": 1020, }, "SetFunctionName.js": { - "offset": 1126400, + "offset": 1126950, "size": 1290, }, "SetIntegrityLevel.js": { - "offset": 1127690, + "offset": 1128240, "size": 1840, }, "SetTypedArrayFromArrayLike.js": { - "offset": 1129530, + "offset": 1130080, "size": 3100, }, "SetTypedArrayFromTypedArray.js": { - "offset": 1132620, + "offset": 1133170, "size": 5150, }, "SetValueInBuffer.js": { - "offset": 1137770, + "offset": 1138320, "size": 4160, }, "SpeciesConstructor.js": { - "offset": 1141920, + "offset": 1142470, "size": 850, }, "SplitMatch.js": { - "offset": 1142760, + "offset": 1143310, "size": 820, }, "StrictEqualityComparison.js": { - "offset": 1143580, + "offset": 1144130, "size": 320, }, "StringCreate.js": { - "offset": 1143900, + "offset": 1144450, "size": 1080, }, "StringGetOwnProperty.js": { - "offset": 1144970, + "offset": 1145530, "size": 1380, }, "StringIndexOf.js": { - "offset": 1146350, + "offset": 1146900, "size": 1030, }, "StringPad.js": { - "offset": 1147370, + "offset": 1147920, "size": 1210, }, "StringToBigInt.js": { - "offset": 1148580, + "offset": 1149130, "size": 580, }, "StringToCodePoints.js": { - "offset": 1149150, + "offset": 1149710, "size": 600, }, "SymbolDescriptiveString.js": { - "offset": 1149750, + "offset": 1150300, "size": 440, }, "TestIntegrityLevel.js": { - "offset": 1150180, + "offset": 1150730, "size": 1210, }, "ThrowCompletion.js": { - "offset": 1151390, + "offset": 1151940, "size": 240, }, "TimeClip.js": { - "offset": 1151630, + "offset": 1152180, "size": 440, }, "TimeFromYear.js": { - "offset": 1152070, + "offset": 1152620, "size": 270, }, "TimeString.js": { - "offset": 1152330, + "offset": 1152880, "size": 740, }, "TimeWithinDay.js": { - "offset": 1153070, + "offset": 1153620, "size": 250, }, "TimeZoneString.js": { - "offset": 1153310, + "offset": 1153860, "size": 1800, }, "ToBigInt.js": { - "offset": 1155110, + "offset": 1155660, "size": 1310, }, "ToBigInt64.js": { - "offset": 1156410, + "offset": 1156960, "size": 960, }, "ToBigUint64.js": { - "offset": 1157360, + "offset": 1157910, "size": 710, }, "ToBoolean.js": { - "offset": 1158070, + "offset": 1158620, "size": 130, }, "ToDateString.js": { - "offset": 1158200, + "offset": 1158750, "size": 520, }, "ToIndex.js": { - "offset": 1158720, + "offset": 1159270, "size": 640, }, "ToInt16.js": { - "offset": 1159360, + "offset": 1159910, "size": 260, }, "ToInt32.js": { - "offset": 1159610, + "offset": 1160160, "size": 180, }, "ToInt8.js": { - "offset": 1159790, + "offset": 1160340, "size": 250, }, "ToIntegerOrInfinity.js": { - "offset": 1160030, + "offset": 1160580, "size": 620, }, "ToLength.js": { - "offset": 1160640, + "offset": 1161190, "size": 440, }, "ToNumber.js": { - "offset": 1161080, + "offset": 1161630, "size": 1630, }, "ToNumeric.js": { - "offset": 1162700, + "offset": 1163250, "size": 530, }, "ToObject.js": { - "offset": 1163220, + "offset": 1163780, "size": 130, }, "ToPrimitive.js": { - "offset": 1163350, + "offset": 1163900, "size": 290, }, "ToPropertyDescriptor.js": { - "offset": 1163630, + "offset": 1164180, "size": 1460, }, "ToPropertyKey.js": { - "offset": 1165090, + "offset": 1165640, "size": 400, }, "ToString.js": { - "offset": 1165490, + "offset": 1166040, "size": 390, }, "ToUint16.js": { - "offset": 1165880, + "offset": 1166430, "size": 610, }, "ToUint32.js": { - "offset": 1166480, + "offset": 1167030, "size": 180, }, "ToUint8.js": { - "offset": 1166660, + "offset": 1167210, "size": 630, }, "ToUint8Clamp.js": { - "offset": 1167280, + "offset": 1167830, "size": 520, }, "TrimString.js": { - "offset": 1167800, + "offset": 1168350, "size": 760, }, "Type.js": { - "offset": 1168560, + "offset": 1169110, "size": 300, }, "TypedArrayCreate.js": { - "offset": 1168860, + "offset": 1169410, "size": 1690, }, "TypedArraySpeciesCreate.js": { - "offset": 1170540, + "offset": 1171090, "size": 1380, }, "UTF16EncodeCodePoint.js": { - "offset": 1171910, + "offset": 1172460, "size": 710, }, "UTF16SurrogatePairToCodePoint.js": { - "offset": 1172620, + "offset": 1173170, "size": 780, }, "UnicodeEscape.js": { - "offset": 1173400, + "offset": 1173950, "size": 790, }, "ValidateAndApplyPropertyDescriptor.js": { - "offset": 1174180, - "size": 5010, + "offset": 1174730, + "size": 5020, }, "ValidateAtomicAccess.js": { - "offset": 1179180, + "offset": 1179740, "size": 1330, }, "ValidateIntegerTypedArray.js": { - "offset": 1180510, + "offset": 1181070, "size": 1320, }, "ValidateTypedArray.js": { - "offset": 1181820, + "offset": 1182380, "size": 800, }, "WeakRefDeref.js": { - "offset": 1182610, + "offset": 1183180, "size": 570, }, "WeekDay.js": { - "offset": 1183180, + "offset": 1183740, "size": 210, }, "WordCharacters.js": { - "offset": 1183390, + "offset": 1183950, "size": 1470, }, "YearFromTime.js": { - "offset": 1184850, + "offset": 1185410, "size": 400, }, "abs.js": { - "offset": 1185250, + "offset": 1185810, "size": 220, }, "clamp.js": { - "offset": 1185470, + "offset": 1186020, "size": 510, }, "floor.js": { - "offset": 1185980, + "offset": 1186530, "size": 290, }, "max.js": { - "offset": 1186260, + "offset": 1186820, "size": 140, }, "min.js": { - "offset": 1186400, + "offset": 1186950, "size": 140, }, "modulo.js": { - "offset": 1186530, + "offset": 1187090, "size": 170, }, "msFromTime.js": { - "offset": 1186700, + "offset": 1187250, "size": 260, }, "substring.js": { - "offset": 1186950, + "offset": 1187510, "size": 640, }, "tables": { "files": { "typed-array-objects.js": { - "offset": 1187590, + "offset": 1188150, "size": 780, }, }, }, "thisBigIntValue.js": { - "offset": 1188360, + "offset": 1188920, "size": 460, }, "thisBooleanValue.js": { - "offset": 1188820, + "offset": 1189370, "size": 330, }, "thisNumberValue.js": { - "offset": 1189140, + "offset": 1189700, "size": 350, }, "thisStringValue.js": { - "offset": 1189490, + "offset": 1190040, "size": 320, }, "thisSymbolValue.js": { - "offset": 1189800, + "offset": 1190360, "size": 530, }, "thisTimeValue.js": { - "offset": 1190330, + "offset": 1190880, "size": 240, }, }, @@ -15004,1035 +14996,1035 @@ exports[`node_module collectors > pnpm max stack 2`] = ` "2022": { "files": { "AddEntriesFromIterable.js": { - "offset": 1190560, + "offset": 1191120, "size": 1420, }, "AddToKeptObjects.js": { - "offset": 1191980, + "offset": 1192530, "size": 540, }, "AdvanceStringIndex.js": { - "offset": 1192510, + "offset": 1193060, "size": 940, }, "ApplyStringOrNumericBinaryOperator.js": { - "offset": 1193450, + "offset": 1194000, "size": 3130, }, "ArrayCreate.js": { - "offset": 1196580, + "offset": 1197130, "size": 1430, }, "ArraySetLength.js": { - "offset": 1198000, + "offset": 1198550, "size": 2430, }, "ArraySpeciesCreate.js": { - "offset": 1200420, + "offset": 1200970, "size": 1370, }, "AsyncFromSyncIteratorContinuation.js": { - "offset": 1201790, + "offset": 1202340, "size": 1530, }, "AsyncIteratorClose.js": { - "offset": 1203310, + "offset": 1203860, "size": 1940, }, "BigInt": { "files": { "add.js": { - "offset": 1205250, + "offset": 1205800, "size": 390, }, "bitwiseAND.js": { - "offset": 1205630, + "offset": 1206180, "size": 430, }, "bitwiseNOT.js": { - "offset": 1206050, + "offset": 1206610, "size": 420, }, "bitwiseOR.js": { - "offset": 1206470, + "offset": 1207030, "size": 430, }, "bitwiseXOR.js": { - "offset": 1206890, + "offset": 1207450, "size": 430, }, "divide.js": { - "offset": 1207320, + "offset": 1207880, "size": 600, }, "equal.js": { - "offset": 1207920, + "offset": 1208470, "size": 390, }, "exponentiate.js": { - "offset": 1208300, + "offset": 1208860, "size": 860, }, "index.js": { - "offset": 1209160, + "offset": 1209710, "size": 1280, }, "leftShift.js": { - "offset": 1210430, + "offset": 1210990, "size": 400, }, "lessThan.js": { - "offset": 1210820, + "offset": 1211380, "size": 400, }, "multiply.js": { - "offset": 1211220, + "offset": 1211770, "size": 400, }, "remainder.js": { - "offset": 1211610, + "offset": 1212160, "size": 680, }, "sameValue.js": { - "offset": 1212280, + "offset": 1212830, "size": 410, }, "sameValueZero.js": { - "offset": 1212680, + "offset": 1213230, "size": 410, }, "signedRightShift.js": { - "offset": 1213090, + "offset": 1213640, "size": 430, }, "subtract.js": { - "offset": 1213520, + "offset": 1214070, "size": 400, }, "toString.js": { - "offset": 1213910, + "offset": 1214460, "size": 400, }, "unaryMinus.js": { - "offset": 1214300, + "offset": 1214860, "size": 480, }, "unsignedRightShift.js": { - "offset": 1214780, + "offset": 1215330, "size": 440, }, }, }, "BigIntBitwiseOp.js": { - "offset": 1215210, + "offset": 1215770, "size": 1670, }, "BinaryAnd.js": { - "offset": 1216870, + "offset": 1217430, "size": 320, }, "BinaryOr.js": { - "offset": 1217190, + "offset": 1217750, "size": 320, }, "BinaryXor.js": { - "offset": 1217500, + "offset": 1218060, "size": 320, }, "ByteListBitwiseOp.js": { - "offset": 1217820, + "offset": 1218380, "size": 1190, }, "ByteListEqual.js": { - "offset": 1219000, + "offset": 1219560, "size": 860, }, "Call.js": { - "offset": 1219860, + "offset": 1220420, "size": 610, }, "CanonicalNumericIndexString.js": { - "offset": 1220470, + "offset": 1221020, "size": 580, }, "Canonicalize.js": { - "offset": 1221040, + "offset": 1221600, "size": 1190, }, "CharacterRange.js": { - "offset": 1222230, + "offset": 1222780, "size": 1350, }, "ClearKeptObjects.js": { - "offset": 1223570, + "offset": 1224120, "size": 300, }, "CloneArrayBuffer.js": { - "offset": 1223860, + "offset": 1224420, "size": 1900, }, "CodePointAt.js": { - "offset": 1225760, + "offset": 1226320, "size": 1650, }, "CodePointsToString.js": { - "offset": 1227410, + "offset": 1227970, "size": 740, }, "CompletePropertyDescriptor.js": { - "offset": 1228150, + "offset": 1228700, "size": 1110, }, "CompletionRecord.js": { - "offset": 1229260, + "offset": 1229810, "size": 1360, }, "CopyDataProperties.js": { - "offset": 1230610, + "offset": 1231170, "size": 1990, }, "CreateAsyncFromSyncIterator.js": { - "offset": 1232600, - "size": 4570, + "offset": 1233150, + "size": 4590, }, "CreateDataProperty.js": { - "offset": 1237170, + "offset": 1237740, "size": 730, }, "CreateDataPropertyOrThrow.js": { - "offset": 1237890, + "offset": 1238470, "size": 700, }, "CreateHTML.js": { - "offset": 1238590, + "offset": 1239170, "size": 840, }, "CreateIterResultObject.js": { - "offset": 1239430, + "offset": 1240000, "size": 350, }, "CreateListFromArrayLike.js": { - "offset": 1239780, + "offset": 1240350, "size": 1370, }, "CreateMethodProperty.js": { - "offset": 1241150, + "offset": 1241720, "size": 950, }, "CreateNonEnumerableDataPropertyOrThrow.js": { - "offset": 1242090, + "offset": 1242660, "size": 760, }, "CreateRegExpStringIterator.js": { - "offset": 1242850, - "size": 3410, + "offset": 1243420, + "size": 3420, }, "DateFromTime.js": { - "offset": 1246250, + "offset": 1246840, "size": 990, }, "DateString.js": { - "offset": 1247240, + "offset": 1247820, "size": 990, }, "Day.js": { - "offset": 1248220, + "offset": 1248810, "size": 240, }, "DayFromYear.js": { - "offset": 1248460, + "offset": 1249040, "size": 260, }, "DayWithinYear.js": { - "offset": 1248710, + "offset": 1249300, "size": 290, }, "DaysInYear.js": { - "offset": 1249000, + "offset": 1249580, "size": 310, }, "DefineMethodProperty.js": { - "offset": 1249300, + "offset": 1249880, "size": 1510, }, "DefinePropertyOrThrow.js": { - "offset": 1250800, + "offset": 1251390, "size": 1170, }, "DeletePropertyOrThrow.js": { - "offset": 1251970, + "offset": 1252560, "size": 670, }, "DetachArrayBuffer.js": { - "offset": 1252640, + "offset": 1253220, "size": 1720, }, "EnumerableOwnPropertyNames.js": { - "offset": 1254350, + "offset": 1254930, "size": 1010, }, "FlattenIntoArray.js": { - "offset": 1255360, + "offset": 1255940, "size": 1680, }, "FromPropertyDescriptor.js": { - "offset": 1257040, + "offset": 1257620, "size": 540, }, "Get.js": { - "offset": 1257570, + "offset": 1258160, "size": 570, }, "GetGlobalObject.js": { - "offset": 1258140, + "offset": 1258730, "size": 200, }, "GetIterator.js": { - "offset": 1258340, - "size": 1720, + "offset": 1258920, + "size": 1730, }, "GetMatchIndexPair.js": { - "offset": 1260050, + "offset": 1260650, "size": 840, }, "GetMatchString.js": { - "offset": 1260890, + "offset": 1261480, "size": 890, }, "GetMethod.js": { - "offset": 1261770, + "offset": 1262370, "size": 690, }, "GetOwnPropertyKeys.js": { - "offset": 1262460, + "offset": 1263050, "size": 840, }, "GetPromiseResolve.js": { - "offset": 1263290, + "offset": 1263880, "size": 640, }, "GetPrototypeFromConstructor.js": { - "offset": 1263930, + "offset": 1264520, "size": 1080, }, "GetStringIndex.js": { - "offset": 1265000, + "offset": 1265600, "size": 760, }, "GetSubstitution.js": { - "offset": 1265760, + "offset": 1266360, "size": 5770, }, "GetV.js": { - "offset": 1271530, + "offset": 1272120, "size": 500, }, "GetValueFromBuffer.js": { - "offset": 1272020, + "offset": 1272610, "size": 4530, }, "HasOwnProperty.js": { - "offset": 1276550, + "offset": 1277140, "size": 540, }, "HasProperty.js": { - "offset": 1277080, + "offset": 1277670, "size": 490, }, "HourFromTime.js": { - "offset": 1277570, + "offset": 1278160, "size": 390, }, "InLeapYear.js": { - "offset": 1277950, + "offset": 1278540, "size": 470, }, "InstallErrorCause.js": { - "offset": 1278410, + "offset": 1279000, "size": 670, }, "InstanceofOperator.js": { - "offset": 1279070, + "offset": 1279670, "size": 930, }, "IntegerIndexedElementGet.js": { - "offset": 1280000, + "offset": 1280590, "size": 1240, }, "IntegerIndexedElementSet.js": { - "offset": 1281230, + "offset": 1281830, "size": 1560, }, "InternalizeJSONProperty.js": { - "offset": 1282790, + "offset": 1283380, "size": 2110, }, "Invoke.js": { - "offset": 1284890, + "offset": 1285490, "size": 680, }, "IsAccessorDescriptor.js": { - "offset": 1285560, + "offset": 1286160, "size": 560, }, "IsArray.js": { - "offset": 1286120, + "offset": 1286710, "size": 120, }, "IsBigIntElementType.js": { - "offset": 1286240, + "offset": 1286830, "size": 200, }, "IsCallable.js": { - "offset": 1286430, + "offset": 1287030, "size": 110, }, "IsCompatiblePropertyDescriptor.js": { - "offset": 1286540, - "size": 370, + "offset": 1287130, + "size": 380, }, "IsConcatSpreadable.js": { - "offset": 1286900, + "offset": 1287510, "size": 640, }, "IsConstructor.js": { - "offset": 1287540, + "offset": 1288150, "size": 1150, }, "IsDataDescriptor.js": { - "offset": 1288680, + "offset": 1289290, "size": 570, }, "IsDetachedBuffer.js": { - "offset": 1289240, + "offset": 1289850, "size": 1000, }, "IsExtensible.js": { - "offset": 1290240, + "offset": 1290850, "size": 510, }, "IsGenericDescriptor.js": { - "offset": 1290740, + "offset": 1291360, "size": 660, }, "IsIntegralNumber.js": { - "offset": 1291400, + "offset": 1292010, "size": 220, }, "IsLessThan.js": { - "offset": 1291620, + "offset": 1292230, "size": 2500, }, "IsLooselyEqual.js": { - "offset": 1294110, + "offset": 1294730, "size": 1800, }, "IsNoTearConfiguration.js": { - "offset": 1295910, + "offset": 1296520, "size": 470, }, "IsPromise.js": { - "offset": 1296380, + "offset": 1296990, "size": 490, }, "IsPropertyKey.js": { - "offset": 1296860, + "offset": 1297480, "size": 230, }, "IsRegExp.js": { - "offset": 1297090, + "offset": 1297700, "size": 570, }, "IsSharedArrayBuffer.js": { - "offset": 1297660, + "offset": 1298270, "size": 430, }, "IsStrictlyEqual.js": { - "offset": 1298080, + "offset": 1298690, "size": 530, }, "IsStringPrefix.js": { - "offset": 1298610, + "offset": 1299220, "size": 470, }, "IsStringWellFormedUnicode.js": { - "offset": 1299070, + "offset": 1299680, "size": 640, }, "IsUnclampedIntegerElementType.js": { - "offset": 1299710, + "offset": 1300320, "size": 300, }, "IsUnsignedElementType.js": { - "offset": 1300010, + "offset": 1300620, "size": 270, }, "IsValidIntegerIndex.js": { - "offset": 1300270, + "offset": 1300890, "size": 890, }, "IsWordChar.js": { - "offset": 1301160, + "offset": 1301770, "size": 1390, }, "IterableToList.js": { - "offset": 1302540, + "offset": 1303150, "size": 630, }, "IteratorClose.js": { - "offset": 1303160, + "offset": 1303780, "size": 1770, }, "IteratorComplete.js": { - "offset": 1304930, + "offset": 1305540, "size": 460, }, "IteratorNext.js": { - "offset": 1305390, + "offset": 1306000, "size": 460, }, "IteratorStep.js": { - "offset": 1305840, + "offset": 1306450, "size": 350, }, "IteratorValue.js": { - "offset": 1306190, + "offset": 1306800, "size": 410, }, "LengthOfArrayLike.js": { - "offset": 1306590, + "offset": 1307210, "size": 470, }, "MakeDate.js": { - "offset": 1307050, + "offset": 1307670, "size": 340, }, "MakeDay.js": { - "offset": 1307390, + "offset": 1308000, "size": 1020, }, "MakeMatchIndicesIndexPairArray.js": { - "offset": 1308400, + "offset": 1309010, "size": 2710, }, "MakeTime.js": { - "offset": 1311110, + "offset": 1311720, "size": 770, }, "MinFromTime.js": { - "offset": 1311870, + "offset": 1312490, "size": 400, }, "MonthFromTime.js": { - "offset": 1312270, + "offset": 1312880, "size": 1130, }, "NewPromiseCapability.js": { - "offset": 1313400, + "offset": 1314010, "size": 1230, }, "NormalCompletion.js": { - "offset": 1314630, + "offset": 1315240, "size": 240, }, "Number": { "files": { "add.js": { - "offset": 1314860, + "offset": 1315480, "size": 800, }, "bitwiseAND.js": { - "offset": 1315660, + "offset": 1316280, "size": 430, }, "bitwiseNOT.js": { - "offset": 1316090, + "offset": 1316700, "size": 500, }, "bitwiseOR.js": { - "offset": 1316590, + "offset": 1317200, "size": 430, }, "bitwiseXOR.js": { - "offset": 1317010, + "offset": 1317630, "size": 430, }, "divide.js": { - "offset": 1317440, + "offset": 1318050, "size": 570, }, "equal.js": { - "offset": 1318000, + "offset": 1318620, "size": 480, }, "exponentiate.js": { - "offset": 1318480, + "offset": 1319090, "size": 1740, }, "index.js": { - "offset": 1320220, + "offset": 1320830, "size": 1280, }, "leftShift.js": { - "offset": 1321500, + "offset": 1322110, "size": 570, }, "lessThan.js": { - "offset": 1322060, + "offset": 1322670, "size": 570, }, "multiply.js": { - "offset": 1322620, - "size": 770, + "offset": 1323230, + "size": 830, }, "remainder.js": { - "offset": 1323390, - "size": 950, + "offset": 1324060, + "size": 1010, }, "sameValue.js": { - "offset": 1324340, + "offset": 1325060, "size": 570, }, "sameValueZero.js": { - "offset": 1324910, + "offset": 1325630, "size": 500, }, "signedRightShift.js": { - "offset": 1325410, + "offset": 1326120, "size": 580, }, "subtract.js": { - "offset": 1325980, + "offset": 1326700, "size": 460, }, "toString.js": { - "offset": 1326440, + "offset": 1327160, "size": 400, }, "unaryMinus.js": { - "offset": 1326840, + "offset": 1327550, "size": 400, }, "unsignedRightShift.js": { - "offset": 1327230, + "offset": 1327940, "size": 590, }, }, }, "NumberBitwiseOp.js": { - "offset": 1327810, + "offset": 1328520, "size": 690, }, "NumberToBigInt.js": { - "offset": 1328490, + "offset": 1329200, "size": 800, }, "NumericToRawBytes.js": { - "offset": 1329280, + "offset": 1330000, "size": 2030, }, "ObjectDefineProperties.js": { - "offset": 1331310, + "offset": 1332020, "size": 1440, }, "OrdinaryCreateFromConstructor.js": { - "offset": 1332740, + "offset": 1333460, "size": 830, }, "OrdinaryDefineOwnProperty.js": { - "offset": 1333570, + "offset": 1334280, "size": 2180, }, "OrdinaryGetOwnProperty.js": { - "offset": 1335740, + "offset": 1336460, "size": 1200, }, "OrdinaryGetPrototypeOf.js": { - "offset": 1336940, + "offset": 1337650, "size": 500, }, "OrdinaryHasInstance.js": { - "offset": 1337430, + "offset": 1338150, "size": 580, }, "OrdinaryHasProperty.js": { - "offset": 1338000, + "offset": 1338720, "size": 510, }, "OrdinaryObjectCreate.js": { - "offset": 1338500, + "offset": 1339220, "size": 1630, }, "OrdinarySetPrototypeOf.js": { - "offset": 1340130, + "offset": 1340850, "size": 1000, }, "OrdinaryToPrimitive.js": { - "offset": 1341130, + "offset": 1341840, "size": 1030, }, "PromiseResolve.js": { - "offset": 1342150, + "offset": 1342870, "size": 510, }, "QuoteJSONString.js": { - "offset": 1342660, + "offset": 1343370, "size": 1430, }, "RawBytesToNumeric.js": { - "offset": 1344080, + "offset": 1344800, "size": 2370, }, "RegExpCreate.js": { - "offset": 1346450, + "offset": 1347160, "size": 650, }, "RegExpExec.js": { - "offset": 1347090, + "offset": 1347810, "size": 830, }, "RegExpHasFlag.js": { - "offset": 1347920, + "offset": 1348640, "size": 1110, }, "RequireObjectCoercible.js": { - "offset": 1349030, + "offset": 1349740, "size": 90, }, "SameValue.js": { - "offset": 1349110, + "offset": 1349820, "size": 320, }, "SameValueNonNumeric.js": { - "offset": 1349420, + "offset": 1350140, "size": 580, }, "SameValueZero.js": { - "offset": 1349990, + "offset": 1350710, "size": 230, }, "SecFromTime.js": { - "offset": 1350220, + "offset": 1350930, "size": 410, }, "Set.js": { - "offset": 1350620, + "offset": 1351330, "size": 1230, }, "SetFunctionLength.js": { - "offset": 1351840, + "offset": 1352560, "size": 1020, }, "SetFunctionName.js": { - "offset": 1352860, + "offset": 1353580, "size": 1290, }, "SetIntegrityLevel.js": { - "offset": 1354150, + "offset": 1354870, "size": 1840, }, "SetTypedArrayFromArrayLike.js": { - "offset": 1355990, + "offset": 1356700, "size": 3110, }, "SetTypedArrayFromTypedArray.js": { - "offset": 1359090, + "offset": 1359810, "size": 5130, }, "SetValueInBuffer.js": { - "offset": 1364220, + "offset": 1364930, "size": 4160, }, "SortIndexedProperties.js": { - "offset": 1368370, + "offset": 1369080, "size": 1600, }, "SpeciesConstructor.js": { - "offset": 1369970, + "offset": 1370680, "size": 850, }, "StringCreate.js": { - "offset": 1370810, + "offset": 1371530, "size": 1080, }, "StringGetOwnProperty.js": { - "offset": 1371890, + "offset": 1372600, "size": 1380, }, "StringIndexOf.js": { - "offset": 1373260, + "offset": 1373970, "size": 1030, }, "StringPad.js": { - "offset": 1374280, + "offset": 1375000, "size": 1210, }, "StringToBigInt.js": { - "offset": 1375490, + "offset": 1376200, "size": 590, }, "StringToCodePoints.js": { - "offset": 1376080, + "offset": 1376790, "size": 600, }, "StringToNumber.js": { - "offset": 1376670, + "offset": 1377390, "size": 1270, }, "SymbolDescriptiveString.js": { - "offset": 1377930, + "offset": 1378650, "size": 440, }, "TestIntegrityLevel.js": { - "offset": 1378370, + "offset": 1379080, "size": 1210, }, "ThrowCompletion.js": { - "offset": 1379570, + "offset": 1380290, "size": 240, }, "TimeClip.js": { - "offset": 1379810, + "offset": 1380530, "size": 440, }, "TimeFromYear.js": { - "offset": 1380250, + "offset": 1380970, "size": 270, }, "TimeString.js": { - "offset": 1380510, + "offset": 1381230, "size": 830, }, "TimeWithinDay.js": { - "offset": 1381340, + "offset": 1382050, "size": 250, }, "TimeZoneString.js": { - "offset": 1381580, + "offset": 1382300, "size": 1590, }, "ToBigInt.js": { - "offset": 1383170, + "offset": 1383880, "size": 1280, }, "ToBigInt64.js": { - "offset": 1384440, + "offset": 1385160, "size": 960, }, "ToBigUint64.js": { - "offset": 1385390, + "offset": 1386110, "size": 710, }, "ToBoolean.js": { - "offset": 1386100, + "offset": 1386820, "size": 130, }, "ToDateString.js": { - "offset": 1386230, + "offset": 1386950, "size": 520, }, "ToIndex.js": { - "offset": 1386750, + "offset": 1387460, "size": 640, }, "ToInt16.js": { - "offset": 1387390, + "offset": 1388100, "size": 260, }, "ToInt32.js": { - "offset": 1387640, + "offset": 1388360, "size": 180, }, "ToInt8.js": { - "offset": 1387810, + "offset": 1388530, "size": 250, }, "ToIntegerOrInfinity.js": { - "offset": 1388060, + "offset": 1388770, "size": 620, }, "ToLength.js": { - "offset": 1388670, + "offset": 1389390, "size": 440, }, "ToNumber.js": { - "offset": 1389110, + "offset": 1389820, "size": 800, }, "ToNumeric.js": { - "offset": 1389900, + "offset": 1390620, "size": 530, }, "ToObject.js": { - "offset": 1390420, + "offset": 1391140, "size": 130, }, "ToPrimitive.js": { - "offset": 1390550, + "offset": 1391270, "size": 290, }, "ToPropertyDescriptor.js": { - "offset": 1390830, + "offset": 1391550, "size": 1460, }, "ToPropertyKey.js": { - "offset": 1392290, + "offset": 1393000, "size": 400, }, "ToString.js": { - "offset": 1392690, + "offset": 1393400, "size": 390, }, "ToUint16.js": { - "offset": 1393070, + "offset": 1393790, "size": 610, }, "ToUint32.js": { - "offset": 1393680, + "offset": 1394400, "size": 180, }, "ToUint8.js": { - "offset": 1393860, + "offset": 1394570, "size": 630, }, "ToUint8Clamp.js": { - "offset": 1394480, + "offset": 1395200, "size": 520, }, "ToZeroPaddedDecimalString.js": { - "offset": 1395000, + "offset": 1395720, "size": 580, }, "TrimString.js": { - "offset": 1395570, + "offset": 1396290, "size": 760, }, "Type.js": { - "offset": 1396330, + "offset": 1397050, "size": 300, }, "TypedArrayCreate.js": { - "offset": 1396630, + "offset": 1397340, "size": 1690, }, "TypedArrayElementSize.js": { - "offset": 1398310, + "offset": 1399030, "size": 720, }, "TypedArrayElementType.js": { - "offset": 1399030, + "offset": 1399750, "size": 650, }, "TypedArraySpeciesCreate.js": { - "offset": 1399680, + "offset": 1400390, "size": 1380, }, "UTF16EncodeCodePoint.js": { - "offset": 1401050, + "offset": 1401760, "size": 710, }, "UTF16SurrogatePairToCodePoint.js": { - "offset": 1401750, + "offset": 1402470, "size": 780, }, "UnicodeEscape.js": { - "offset": 1402530, + "offset": 1403250, "size": 790, }, "ValidateAndApplyPropertyDescriptor.js": { - "offset": 1403320, + "offset": 1404030, "size": 5740, }, "ValidateAtomicAccess.js": { - "offset": 1409050, + "offset": 1409770, "size": 1170, }, "ValidateIntegerTypedArray.js": { - "offset": 1410220, + "offset": 1410940, "size": 1420, }, "ValidateTypedArray.js": { - "offset": 1411640, + "offset": 1412360, "size": 770, }, "WeakRefDeref.js": { - "offset": 1412410, + "offset": 1413120, "size": 570, }, "WeekDay.js": { - "offset": 1412970, + "offset": 1413690, "size": 210, }, "WordCharacters.js": { - "offset": 1413180, + "offset": 1413900, "size": 1470, }, "YearFromTime.js": { - "offset": 1414650, + "offset": 1415360, "size": 400, }, "abs.js": { - "offset": 1415040, + "offset": 1415760, "size": 220, }, "clamp.js": { - "offset": 1415260, + "offset": 1415970, "size": 510, }, "floor.js": { - "offset": 1415770, + "offset": 1416480, "size": 290, }, "max.js": { - "offset": 1416060, + "offset": 1416770, "size": 140, }, "min.js": { - "offset": 1416190, + "offset": 1416900, "size": 140, }, "modulo.js": { - "offset": 1416320, + "offset": 1417030, "size": 170, }, "msFromTime.js": { - "offset": 1416490, + "offset": 1417200, "size": 260, }, "substring.js": { - "offset": 1416750, + "offset": 1417460, "size": 640, }, "tables": { "files": { "typed-array-objects.js": { - "offset": 1417380, + "offset": 1418090, "size": 780, }, }, }, "thisBigIntValue.js": { - "offset": 1418160, + "offset": 1418870, "size": 460, }, "thisBooleanValue.js": { - "offset": 1418610, + "offset": 1419320, "size": 330, }, "thisNumberValue.js": { - "offset": 1418930, + "offset": 1419640, "size": 350, }, "thisStringValue.js": { - "offset": 1419280, + "offset": 1419990, "size": 320, }, "thisSymbolValue.js": { - "offset": 1419600, + "offset": 1420310, "size": 530, }, "thisTimeValue.js": { - "offset": 1420120, + "offset": 1420830, "size": 240, }, }, @@ -16040,1075 +16032,1075 @@ exports[`node_module collectors > pnpm max stack 2`] = ` "2023": { "files": { "AddEntriesFromIterable.js": { - "offset": 1420350, + "offset": 1421060, "size": 1430, }, "AddToKeptObjects.js": { - "offset": 1421780, + "offset": 1422490, "size": 540, }, "AdvanceStringIndex.js": { - "offset": 1422310, + "offset": 1423020, "size": 940, }, "ApplyStringOrNumericBinaryOperator.js": { - "offset": 1423250, + "offset": 1423960, "size": 3130, }, "ArrayCreate.js": { - "offset": 1426380, + "offset": 1427090, "size": 1430, }, "ArraySetLength.js": { - "offset": 1427800, + "offset": 1428510, "size": 2430, }, "ArraySpeciesCreate.js": { - "offset": 1430220, + "offset": 1430930, "size": 1370, }, "AsyncFromSyncIteratorContinuation.js": { - "offset": 1431590, + "offset": 1432300, "size": 1530, }, "AsyncIteratorClose.js": { - "offset": 1433110, + "offset": 1433820, "size": 1940, }, "BigInt": { "files": { "add.js": { - "offset": 1435050, + "offset": 1435760, "size": 390, }, "bitwiseAND.js": { - "offset": 1435430, + "offset": 1436140, "size": 430, }, "bitwiseNOT.js": { - "offset": 1435850, + "offset": 1436560, "size": 420, }, "bitwiseOR.js": { - "offset": 1436270, + "offset": 1436980, "size": 430, }, "bitwiseXOR.js": { - "offset": 1436700, + "offset": 1437410, "size": 430, }, "divide.js": { - "offset": 1437120, + "offset": 1437830, "size": 600, }, "equal.js": { - "offset": 1437720, + "offset": 1438430, "size": 390, }, "exponentiate.js": { - "offset": 1438100, + "offset": 1438810, "size": 860, }, "index.js": { - "offset": 1438960, + "offset": 1439670, "size": 1140, }, "leftShift.js": { - "offset": 1440090, + "offset": 1440800, "size": 400, }, "lessThan.js": { - "offset": 1440480, + "offset": 1441190, "size": 400, }, "multiply.js": { - "offset": 1440870, + "offset": 1441580, "size": 400, }, "remainder.js": { - "offset": 1441270, + "offset": 1441980, "size": 680, }, "signedRightShift.js": { - "offset": 1441940, + "offset": 1442650, "size": 430, }, "subtract.js": { - "offset": 1442370, + "offset": 1443080, "size": 400, }, "toString.js": { - "offset": 1442760, + "offset": 1443470, "size": 790, }, "unaryMinus.js": { - "offset": 1443540, + "offset": 1444250, "size": 480, }, "unsignedRightShift.js": { - "offset": 1444020, + "offset": 1444730, "size": 440, }, }, }, "BigIntBitwiseOp.js": { - "offset": 1444450, + "offset": 1445160, "size": 1670, }, "BinaryAnd.js": { - "offset": 1446110, + "offset": 1446820, "size": 320, }, "BinaryOr.js": { - "offset": 1446430, + "offset": 1447140, "size": 320, }, "BinaryXor.js": { - "offset": 1446740, + "offset": 1447450, "size": 320, }, "ByteListBitwiseOp.js": { - "offset": 1447060, + "offset": 1447770, "size": 1190, }, "ByteListEqual.js": { - "offset": 1448240, + "offset": 1448950, "size": 860, }, "Call.js": { - "offset": 1449100, + "offset": 1449810, "size": 610, }, "CanBeHeldWeakly.js": { - "offset": 1449710, + "offset": 1450420, "size": 410, }, "CanonicalNumericIndexString.js": { - "offset": 1450110, + "offset": 1450820, "size": 580, }, "Canonicalize.js": { - "offset": 1450680, + "offset": 1451390, "size": 1240, }, "CharacterRange.js": { - "offset": 1451920, + "offset": 1452630, "size": 1350, }, "ClearKeptObjects.js": { - "offset": 1453260, + "offset": 1453970, "size": 300, }, "CloneArrayBuffer.js": { - "offset": 1453560, + "offset": 1454270, "size": 1900, }, "CodePointAt.js": { - "offset": 1455450, + "offset": 1456160, "size": 1650, }, "CodePointsToString.js": { - "offset": 1457100, + "offset": 1457810, "size": 740, }, "CompareArrayElements.js": { - "offset": 1457840, + "offset": 1458550, "size": 1280, }, "CompareTypedArrayElements.js": { - "offset": 1459110, + "offset": 1459820, "size": 1360, }, "CompletePropertyDescriptor.js": { - "offset": 1460470, + "offset": 1461180, "size": 1110, }, "CompletionRecord.js": { - "offset": 1461580, + "offset": 1462290, "size": 1360, }, "CopyDataProperties.js": { - "offset": 1462940, + "offset": 1463650, "size": 1990, }, "CreateAsyncFromSyncIterator.js": { - "offset": 1464920, - "size": 4540, + "offset": 1465630, + "size": 4560, }, "CreateDataProperty.js": { - "offset": 1469460, + "offset": 1470190, "size": 730, }, "CreateDataPropertyOrThrow.js": { - "offset": 1470190, + "offset": 1470920, "size": 690, }, "CreateHTML.js": { - "offset": 1470870, + "offset": 1471600, "size": 840, }, "CreateIterResultObject.js": { - "offset": 1471710, + "offset": 1472440, "size": 350, }, "CreateListFromArrayLike.js": { - "offset": 1472060, + "offset": 1472790, "size": 1370, }, "CreateMethodProperty.js": { - "offset": 1473420, + "offset": 1474150, "size": 950, }, "CreateNonEnumerableDataPropertyOrThrow.js": { - "offset": 1474370, + "offset": 1475100, "size": 760, }, "CreateRegExpStringIterator.js": { - "offset": 1475120, - "size": 3410, + "offset": 1475850, + "size": 3420, }, "DateFromTime.js": { - "offset": 1478530, + "offset": 1479270, "size": 990, }, "DateString.js": { - "offset": 1479520, + "offset": 1480260, "size": 990, }, "Day.js": { - "offset": 1480500, + "offset": 1481240, "size": 240, }, "DayFromYear.js": { - "offset": 1480730, + "offset": 1481470, "size": 260, }, "DayWithinYear.js": { - "offset": 1480990, + "offset": 1481730, "size": 290, }, "DaysInYear.js": { - "offset": 1481280, + "offset": 1482020, "size": 310, }, "DefaultTimeZone.js": { - "offset": 1481580, + "offset": 1482320, "size": 540, }, "DefineMethodProperty.js": { - "offset": 1482120, + "offset": 1482860, "size": 1510, }, "DefinePropertyOrThrow.js": { - "offset": 1483620, + "offset": 1484360, "size": 1170, }, "DeletePropertyOrThrow.js": { - "offset": 1484790, + "offset": 1485530, "size": 670, }, "DetachArrayBuffer.js": { - "offset": 1485460, + "offset": 1486200, "size": 1720, }, "EnumerableOwnProperties.js": { - "offset": 1487170, + "offset": 1487910, "size": 1010, }, "FindViaPredicate.js": { - "offset": 1488170, + "offset": 1488910, "size": 1420, }, "FlattenIntoArray.js": { - "offset": 1489590, + "offset": 1490330, "size": 1680, }, "FromPropertyDescriptor.js": { - "offset": 1491270, + "offset": 1492010, "size": 540, }, "Get.js": { - "offset": 1491800, + "offset": 1492540, "size": 570, }, "GetGlobalObject.js": { - "offset": 1492370, + "offset": 1493110, "size": 200, }, "GetIterator.js": { - "offset": 1492570, + "offset": 1493310, "size": 1750, }, "GetIteratorFromMethod.js": { - "offset": 1494310, + "offset": 1495050, "size": 750, }, "GetMatchIndexPair.js": { - "offset": 1495050, + "offset": 1495790, "size": 840, }, "GetMatchString.js": { - "offset": 1495890, + "offset": 1496630, "size": 890, }, "GetMethod.js": { - "offset": 1496770, + "offset": 1497510, "size": 690, }, "GetNamedTimeZoneEpochNanoseconds.js": { - "offset": 1497450, + "offset": 1498190, "size": 2430, }, "GetOwnPropertyKeys.js": { - "offset": 1499880, + "offset": 1500620, "size": 840, }, "GetPromiseResolve.js": { - "offset": 1500710, + "offset": 1501450, "size": 640, }, "GetPrototypeFromConstructor.js": { - "offset": 1501350, + "offset": 1502090, "size": 1080, }, "GetStringIndex.js": { - "offset": 1502430, + "offset": 1503170, "size": 760, }, "GetSubstitution.js": { - "offset": 1503190, + "offset": 1503930, "size": 5570, }, "GetUTCEpochNanoseconds.js": { - "offset": 1508750, + "offset": 1509490, "size": 2560, }, "GetV.js": { - "offset": 1511310, + "offset": 1512050, "size": 500, }, "GetValueFromBuffer.js": { - "offset": 1511800, + "offset": 1512540, "size": 4530, }, "HasOwnProperty.js": { - "offset": 1516330, + "offset": 1517070, "size": 540, }, "HasProperty.js": { - "offset": 1516860, + "offset": 1517600, "size": 490, }, "HourFromTime.js": { - "offset": 1517350, + "offset": 1518090, "size": 390, }, "InLeapYear.js": { - "offset": 1517730, + "offset": 1518470, "size": 470, }, "InstallErrorCause.js": { - "offset": 1518190, + "offset": 1518930, "size": 670, }, "InstanceofOperator.js": { - "offset": 1518850, + "offset": 1519590, "size": 930, }, "IntegerIndexedElementGet.js": { - "offset": 1519780, + "offset": 1520520, "size": 1240, }, "IntegerIndexedElementSet.js": { - "offset": 1521010, + "offset": 1521750, "size": 1560, }, "InternalizeJSONProperty.js": { - "offset": 1522570, + "offset": 1523310, "size": 2190, }, "Invoke.js": { - "offset": 1524750, + "offset": 1525490, "size": 680, }, "IsAccessorDescriptor.js": { - "offset": 1525420, + "offset": 1526160, "size": 560, }, "IsArray.js": { - "offset": 1525980, + "offset": 1526720, "size": 120, }, "IsBigIntElementType.js": { - "offset": 1526100, + "offset": 1526840, "size": 200, }, "IsCallable.js": { - "offset": 1526290, + "offset": 1527030, "size": 110, }, "IsCompatiblePropertyDescriptor.js": { - "offset": 1526400, - "size": 370, + "offset": 1527140, + "size": 380, }, "IsConcatSpreadable.js": { - "offset": 1526760, + "offset": 1527520, "size": 640, }, "IsConstructor.js": { - "offset": 1527400, + "offset": 1528150, "size": 1150, }, "IsDataDescriptor.js": { - "offset": 1528540, + "offset": 1529300, "size": 570, }, "IsDetachedBuffer.js": { - "offset": 1529100, + "offset": 1529860, "size": 1000, }, "IsExtensible.js": { - "offset": 1530100, + "offset": 1530860, "size": 510, }, "IsGenericDescriptor.js": { - "offset": 1530600, + "offset": 1531360, "size": 660, }, "IsIntegralNumber.js": { - "offset": 1531260, + "offset": 1532020, "size": 360, }, "IsLessThan.js": { - "offset": 1531610, + "offset": 1532370, "size": 2760, }, "IsLooselyEqual.js": { - "offset": 1534370, + "offset": 1535130, "size": 1800, }, "IsNoTearConfiguration.js": { - "offset": 1536170, + "offset": 1536930, "size": 470, }, "IsPromise.js": { - "offset": 1536630, + "offset": 1537390, "size": 490, }, "IsPropertyKey.js": { - "offset": 1537120, + "offset": 1537880, "size": 230, }, "IsRegExp.js": { - "offset": 1537340, + "offset": 1538100, "size": 570, }, "IsSharedArrayBuffer.js": { - "offset": 1537910, + "offset": 1538670, "size": 430, }, "IsStrictlyEqual.js": { - "offset": 1538340, + "offset": 1539100, "size": 400, }, "IsStringWellFormedUnicode.js": { - "offset": 1538730, + "offset": 1539490, "size": 640, }, "IsTimeZoneOffsetString.js": { - "offset": 1539360, + "offset": 1540120, "size": 690, }, "IsUnclampedIntegerElementType.js": { - "offset": 1540040, + "offset": 1540800, "size": 300, }, "IsUnsignedElementType.js": { - "offset": 1540340, + "offset": 1541100, "size": 270, }, "IsValidIntegerIndex.js": { - "offset": 1540610, + "offset": 1541370, "size": 890, }, "IsWordChar.js": { - "offset": 1541490, + "offset": 1542250, "size": 1170, }, "IteratorClose.js": { - "offset": 1542660, + "offset": 1543410, "size": 2400, }, "IteratorComplete.js": { - "offset": 1545050, + "offset": 1545810, "size": 460, }, "IteratorNext.js": { - "offset": 1545510, + "offset": 1546270, "size": 900, }, "IteratorStep.js": { - "offset": 1546410, + "offset": 1547160, "size": 660, }, "IteratorToList.js": { - "offset": 1547070, + "offset": 1547820, "size": 790, }, "IteratorValue.js": { - "offset": 1547850, + "offset": 1548610, "size": 410, }, "KeyForSymbol.js": { - "offset": 1548260, + "offset": 1549020, "size": 390, }, "LengthOfArrayLike.js": { - "offset": 1548640, + "offset": 1549400, "size": 470, }, "MakeDate.js": { - "offset": 1549100, + "offset": 1549860, "size": 340, }, "MakeDay.js": { - "offset": 1549440, + "offset": 1550200, "size": 1020, }, "MakeMatchIndicesIndexPairArray.js": { - "offset": 1550450, + "offset": 1551210, "size": 2710, }, "MakeTime.js": { - "offset": 1553160, + "offset": 1553920, "size": 770, }, "MinFromTime.js": { - "offset": 1553920, + "offset": 1554680, "size": 400, }, "MonthFromTime.js": { - "offset": 1554320, + "offset": 1555080, "size": 1130, }, "NewPromiseCapability.js": { - "offset": 1555450, + "offset": 1556210, "size": 1230, }, "NormalCompletion.js": { - "offset": 1556680, + "offset": 1557430, "size": 240, }, "Number": { "files": { "add.js": { - "offset": 1556910, + "offset": 1557670, "size": 800, }, "bitwiseAND.js": { - "offset": 1557710, + "offset": 1558470, "size": 430, }, "bitwiseNOT.js": { - "offset": 1558140, + "offset": 1558900, "size": 500, }, "bitwiseOR.js": { - "offset": 1558640, + "offset": 1559400, "size": 430, }, "bitwiseXOR.js": { - "offset": 1559060, + "offset": 1559820, "size": 430, }, "divide.js": { - "offset": 1559490, + "offset": 1560250, "size": 570, }, "equal.js": { - "offset": 1560050, + "offset": 1560810, "size": 480, }, "exponentiate.js": { - "offset": 1560530, + "offset": 1561290, "size": 1740, }, "index.js": { - "offset": 1562270, + "offset": 1563030, "size": 1280, }, "leftShift.js": { - "offset": 1563550, + "offset": 1564300, "size": 570, }, "lessThan.js": { - "offset": 1564110, + "offset": 1564870, "size": 570, }, "multiply.js": { - "offset": 1564670, - "size": 770, + "offset": 1565430, + "size": 830, }, "remainder.js": { - "offset": 1565440, + "offset": 1566250, "size": 1220, }, "sameValue.js": { - "offset": 1566660, + "offset": 1567470, "size": 570, }, "sameValueZero.js": { - "offset": 1567230, + "offset": 1568040, "size": 500, }, "signedRightShift.js": { - "offset": 1567730, + "offset": 1568540, "size": 580, }, "subtract.js": { - "offset": 1568300, + "offset": 1569110, "size": 460, }, "toString.js": { - "offset": 1568760, + "offset": 1569570, "size": 650, }, "unaryMinus.js": { - "offset": 1569410, + "offset": 1570220, "size": 400, }, "unsignedRightShift.js": { - "offset": 1569800, + "offset": 1570610, "size": 590, }, }, }, "NumberBitwiseOp.js": { - "offset": 1570380, + "offset": 1571190, "size": 690, }, "NumberToBigInt.js": { - "offset": 1571060, + "offset": 1571870, "size": 800, }, "NumericToRawBytes.js": { - "offset": 1571850, + "offset": 1572660, "size": 2030, }, "ObjectDefineProperties.js": { - "offset": 1573880, + "offset": 1574690, "size": 1440, }, "OrdinaryCreateFromConstructor.js": { - "offset": 1575310, + "offset": 1576120, "size": 830, }, "OrdinaryDefineOwnProperty.js": { - "offset": 1576140, + "offset": 1576950, "size": 2180, }, "OrdinaryGetOwnProperty.js": { - "offset": 1578310, + "offset": 1579120, "size": 1200, }, "OrdinaryGetPrototypeOf.js": { - "offset": 1579510, + "offset": 1580320, "size": 500, }, "OrdinaryHasInstance.js": { - "offset": 1580000, + "offset": 1580810, "size": 580, }, "OrdinaryHasProperty.js": { - "offset": 1580570, + "offset": 1581380, "size": 510, }, "OrdinaryObjectCreate.js": { - "offset": 1581070, + "offset": 1581880, "size": 1630, }, "OrdinarySetPrototypeOf.js": { - "offset": 1582700, + "offset": 1583510, "size": 1000, }, "OrdinaryToPrimitive.js": { - "offset": 1583700, + "offset": 1584510, "size": 1030, }, "ParseHexOctet.js": { - "offset": 1584720, + "offset": 1585530, "size": 1330, }, "PromiseResolve.js": { - "offset": 1586050, + "offset": 1586860, "size": 510, }, "QuoteJSONString.js": { - "offset": 1586560, + "offset": 1587370, "size": 1430, }, "RawBytesToNumeric.js": { - "offset": 1587980, + "offset": 1588790, "size": 2370, }, "RegExpCreate.js": { - "offset": 1590350, + "offset": 1591160, "size": 650, }, "RegExpExec.js": { - "offset": 1590990, + "offset": 1591800, "size": 830, }, "RegExpHasFlag.js": { - "offset": 1591820, + "offset": 1592630, "size": 1110, }, "RequireObjectCoercible.js": { - "offset": 1592920, + "offset": 1593730, "size": 90, }, "SameValue.js": { - "offset": 1593010, + "offset": 1593820, "size": 320, }, "SameValueNonNumber.js": { - "offset": 1593320, + "offset": 1594130, "size": 540, }, "SameValueZero.js": { - "offset": 1593850, + "offset": 1594660, "size": 230, }, "SecFromTime.js": { - "offset": 1594080, + "offset": 1594890, "size": 410, }, "Set.js": { - "offset": 1594480, + "offset": 1595290, "size": 1230, }, "SetFunctionLength.js": { - "offset": 1595700, + "offset": 1596510, "size": 1020, }, "SetFunctionName.js": { - "offset": 1596720, + "offset": 1597530, "size": 1290, }, "SetIntegrityLevel.js": { - "offset": 1598010, + "offset": 1598820, "size": 1840, }, "SetTypedArrayFromArrayLike.js": { - "offset": 1599850, + "offset": 1600660, "size": 2130, }, "SetTypedArrayFromTypedArray.js": { - "offset": 1601970, + "offset": 1602780, "size": 4990, }, "SetValueInBuffer.js": { - "offset": 1606950, + "offset": 1607760, "size": 4160, }, "SortIndexedProperties.js": { - "offset": 1611110, + "offset": 1611920, "size": 1520, }, "SpeciesConstructor.js": { - "offset": 1612620, + "offset": 1613430, "size": 850, }, "StringCreate.js": { - "offset": 1613470, + "offset": 1614280, "size": 1080, }, "StringGetOwnProperty.js": { - "offset": 1614540, + "offset": 1615350, "size": 1380, }, "StringIndexOf.js": { - "offset": 1615910, + "offset": 1616720, "size": 1030, }, "StringPad.js": { - "offset": 1616940, + "offset": 1617750, "size": 1210, }, "StringToBigInt.js": { - "offset": 1618140, + "offset": 1618950, "size": 590, }, "StringToCodePoints.js": { - "offset": 1618730, + "offset": 1619540, "size": 600, }, "StringToNumber.js": { - "offset": 1619330, + "offset": 1620140, "size": 1270, }, "SymbolDescriptiveString.js": { - "offset": 1620590, + "offset": 1621400, "size": 440, }, "TestIntegrityLevel.js": { - "offset": 1621020, + "offset": 1621830, "size": 1210, }, "ThrowCompletion.js": { - "offset": 1622230, + "offset": 1623040, "size": 240, }, "TimeClip.js": { - "offset": 1622470, + "offset": 1623280, "size": 440, }, "TimeFromYear.js": { - "offset": 1622910, + "offset": 1623720, "size": 270, }, "TimeString.js": { - "offset": 1623170, + "offset": 1623980, "size": 830, }, "TimeWithinDay.js": { - "offset": 1623990, + "offset": 1624800, "size": 250, }, "TimeZoneString.js": { - "offset": 1624240, + "offset": 1625050, "size": 1970, }, "ToBigInt.js": { - "offset": 1626200, + "offset": 1627010, "size": 1280, }, "ToBigInt64.js": { - "offset": 1627470, + "offset": 1628280, "size": 960, }, "ToBigUint64.js": { - "offset": 1628430, + "offset": 1629240, "size": 710, }, "ToBoolean.js": { - "offset": 1629130, + "offset": 1629940, "size": 130, }, "ToDateString.js": { - "offset": 1629260, + "offset": 1630070, "size": 520, }, "ToIndex.js": { - "offset": 1629780, + "offset": 1630590, "size": 640, }, "ToInt16.js": { - "offset": 1630420, + "offset": 1631230, "size": 550, }, "ToInt32.js": { - "offset": 1630960, + "offset": 1631770, "size": 700, }, "ToInt8.js": { - "offset": 1631650, + "offset": 1632460, "size": 500, }, "ToIntegerOrInfinity.js": { - "offset": 1632150, + "offset": 1632960, "size": 480, }, "ToLength.js": { - "offset": 1632620, + "offset": 1633430, "size": 440, }, "ToNumber.js": { - "offset": 1633050, + "offset": 1633860, "size": 800, }, "ToNumeric.js": { - "offset": 1633850, + "offset": 1634660, "size": 530, }, "ToObject.js": { - "offset": 1634370, + "offset": 1635180, "size": 130, }, "ToPrimitive.js": { - "offset": 1634500, + "offset": 1635310, "size": 290, }, "ToPropertyDescriptor.js": { - "offset": 1634780, + "offset": 1635590, "size": 1460, }, "ToPropertyKey.js": { - "offset": 1636230, + "offset": 1637040, "size": 400, }, "ToString.js": { - "offset": 1636630, + "offset": 1637440, "size": 390, }, "ToUint16.js": { - "offset": 1637020, + "offset": 1637830, "size": 590, }, "ToUint32.js": { - "offset": 1637610, + "offset": 1638420, "size": 600, }, "ToUint8.js": { - "offset": 1638200, + "offset": 1639010, "size": 460, }, "ToUint8Clamp.js": { - "offset": 1638660, + "offset": 1639470, "size": 520, }, "ToZeroPaddedDecimalString.js": { - "offset": 1639180, + "offset": 1639990, "size": 580, }, "TrimString.js": { - "offset": 1639750, + "offset": 1640560, "size": 760, }, "Type.js": { - "offset": 1640500, + "offset": 1641310, "size": 300, }, "TypedArrayCreate.js": { - "offset": 1640800, + "offset": 1641610, "size": 1690, }, "TypedArrayCreateSameType.js": { - "offset": 1642490, + "offset": 1643300, "size": 1240, }, "TypedArrayElementSize.js": { - "offset": 1643720, + "offset": 1644530, "size": 720, }, "TypedArrayElementType.js": { - "offset": 1644440, + "offset": 1645250, "size": 650, }, "TypedArraySpeciesCreate.js": { - "offset": 1645080, + "offset": 1645890, "size": 1380, }, "UTF16EncodeCodePoint.js": { - "offset": 1646460, + "offset": 1647270, "size": 710, }, "UTF16SurrogatePairToCodePoint.js": { - "offset": 1647160, + "offset": 1647970, "size": 780, }, "UnicodeEscape.js": { - "offset": 1647940, + "offset": 1648750, "size": 790, }, "ValidateAndApplyPropertyDescriptor.js": { - "offset": 1648720, + "offset": 1649530, "size": 5740, }, "ValidateAtomicAccess.js": { - "offset": 1654460, + "offset": 1655270, "size": 1170, }, "ValidateIntegerTypedArray.js": { - "offset": 1655630, + "offset": 1656440, "size": 1420, }, "ValidateTypedArray.js": { - "offset": 1657050, + "offset": 1657860, "size": 770, }, "WeakRefDeref.js": { - "offset": 1657810, + "offset": 1658620, "size": 570, }, "WeekDay.js": { - "offset": 1658380, + "offset": 1659190, "size": 210, }, "WordCharacters.js": { - "offset": 1658590, + "offset": 1659400, "size": 1620, }, "YearFromTime.js": { - "offset": 1660210, + "offset": 1661020, "size": 400, }, "abs.js": { - "offset": 1660600, + "offset": 1661410, "size": 220, }, "clamp.js": { - "offset": 1660820, + "offset": 1661630, "size": 510, }, "floor.js": { - "offset": 1661330, + "offset": 1662130, "size": 290, }, "max.js": { - "offset": 1661620, + "offset": 1662420, "size": 140, }, "min.js": { - "offset": 1661750, + "offset": 1662550, "size": 140, }, "modulo.js": { - "offset": 1661880, + "offset": 1662690, "size": 170, }, "msFromTime.js": { - "offset": 1662050, + "offset": 1662860, "size": 260, }, "substring.js": { - "offset": 1662310, + "offset": 1663110, "size": 640, }, "tables": { "files": { "typed-array-objects.js": { - "offset": 1662940, + "offset": 1663750, "size": 780, }, }, }, "thisBigIntValue.js": { - "offset": 1663720, + "offset": 1664520, "size": 460, }, "thisBooleanValue.js": { - "offset": 1664170, + "offset": 1664970, "size": 330, }, "thisNumberValue.js": { - "offset": 1664490, + "offset": 1665300, "size": 350, }, "thisStringValue.js": { - "offset": 1664840, + "offset": 1665640, "size": 320, }, "thisSymbolValue.js": { - "offset": 1665160, + "offset": 1665960, "size": 530, }, "thisTimeValue.js": { - "offset": 1665680, + "offset": 1666490, "size": 240, }, "truncate.js": { - "offset": 1665910, + "offset": 1666720, "size": 470, }, }, @@ -17116,1151 +17108,1151 @@ exports[`node_module collectors > pnpm max stack 2`] = ` "2024": { "files": { "AddEntriesFromIterable.js": { - "offset": 1666370, + "offset": 1667180, "size": 1430, }, "AddToKeptObjects.js": { - "offset": 1667800, + "offset": 1668600, "size": 540, }, "AddValueToKeyedGroup.js": { - "offset": 1668330, + "offset": 1669140, "size": 1300, }, "AdvanceStringIndex.js": { - "offset": 1669630, + "offset": 1670430, "size": 940, }, "AllCharacters.js": { - "offset": 1670560, + "offset": 1671370, "size": 1140, }, "ApplyStringOrNumericBinaryOperator.js": { - "offset": 1671700, + "offset": 1672500, "size": 3130, }, "ArrayBufferByteLength.js": { - "offset": 1674830, + "offset": 1675630, "size": 1780, }, "ArrayBufferCopyAndDetach.js": { - "offset": 1676600, + "offset": 1677410, "size": 3910, }, "ArrayCreate.js": { - "offset": 1680510, + "offset": 1681310, "size": 1430, }, "ArraySetLength.js": { - "offset": 1681930, + "offset": 1682730, "size": 2430, }, "ArraySpeciesCreate.js": { - "offset": 1684350, + "offset": 1685160, "size": 1370, }, "AsyncFromSyncIteratorContinuation.js": { - "offset": 1685720, + "offset": 1686520, "size": 1530, }, "AsyncIteratorClose.js": { - "offset": 1687240, + "offset": 1688050, "size": 1940, }, "BigInt": { "files": { "add.js": { - "offset": 1689170, + "offset": 1689980, "size": 390, }, "bitwiseAND.js": { - "offset": 1689560, + "offset": 1690360, "size": 430, }, "bitwiseNOT.js": { - "offset": 1689980, + "offset": 1690790, "size": 420, }, "bitwiseOR.js": { - "offset": 1690400, + "offset": 1691200, "size": 430, }, "bitwiseXOR.js": { - "offset": 1690820, + "offset": 1691630, "size": 430, }, "divide.js": { - "offset": 1691250, + "offset": 1692050, "size": 600, }, "equal.js": { - "offset": 1691850, + "offset": 1692650, "size": 390, }, "exponentiate.js": { - "offset": 1692230, + "offset": 1693040, "size": 860, }, "index.js": { - "offset": 1693080, + "offset": 1693890, "size": 1140, }, "leftShift.js": { - "offset": 1694220, + "offset": 1695020, "size": 400, }, "lessThan.js": { - "offset": 1694610, + "offset": 1695410, "size": 400, }, "multiply.js": { - "offset": 1695000, + "offset": 1695810, "size": 400, }, "remainder.js": { - "offset": 1695390, + "offset": 1696200, "size": 680, }, "signedRightShift.js": { - "offset": 1696060, + "offset": 1696870, "size": 430, }, "subtract.js": { - "offset": 1696490, + "offset": 1697300, "size": 400, }, "toString.js": { - "offset": 1696880, + "offset": 1697690, "size": 790, }, "unaryMinus.js": { - "offset": 1697670, + "offset": 1698470, "size": 480, }, "unsignedRightShift.js": { - "offset": 1698140, + "offset": 1698950, "size": 440, }, }, }, "BigIntBitwiseOp.js": { - "offset": 1698580, + "offset": 1699380, "size": 1670, }, "BinaryAnd.js": { - "offset": 1700240, + "offset": 1701040, "size": 320, }, "BinaryOr.js": { - "offset": 1700550, + "offset": 1701360, "size": 320, }, "BinaryXor.js": { - "offset": 1700870, + "offset": 1701670, "size": 320, }, "ByteListBitwiseOp.js": { - "offset": 1701180, + "offset": 1701990, "size": 1190, }, "ByteListEqual.js": { - "offset": 1702370, + "offset": 1703170, "size": 860, }, "Call.js": { - "offset": 1703230, + "offset": 1704030, "size": 610, }, "CanBeHeldWeakly.js": { - "offset": 1703830, + "offset": 1704640, "size": 410, }, "CanonicalNumericIndexString.js": { - "offset": 1704240, + "offset": 1705040, "size": 580, }, "Canonicalize.js": { - "offset": 1704810, + "offset": 1705610, "size": 1240, }, "CharacterComplement.js": { - "offset": 1706050, + "offset": 1706850, "size": 890, }, "CharacterRange.js": { - "offset": 1706930, + "offset": 1707730, "size": 1350, }, "ClearKeptObjects.js": { - "offset": 1708270, + "offset": 1709080, "size": 300, }, "CloneArrayBuffer.js": { - "offset": 1708570, + "offset": 1709370, "size": 1900, }, "CodePointAt.js": { - "offset": 1710470, + "offset": 1711270, "size": 1650, }, "CodePointsToString.js": { - "offset": 1712110, + "offset": 1712920, "size": 740, }, "CompareArrayElements.js": { - "offset": 1712850, + "offset": 1713650, "size": 1280, }, "CompareTypedArrayElements.js": { - "offset": 1714130, + "offset": 1714930, "size": 1360, }, "CompletePropertyDescriptor.js": { - "offset": 1715480, + "offset": 1716290, "size": 1110, }, "CompletionRecord.js": { - "offset": 1716590, + "offset": 1717400, "size": 1360, }, "CopyDataProperties.js": { - "offset": 1717950, + "offset": 1718750, "size": 1990, }, "CreateAsyncFromSyncIterator.js": { - "offset": 1719940, - "size": 4540, + "offset": 1720740, + "size": 4560, }, "CreateDataProperty.js": { - "offset": 1724470, + "offset": 1725290, "size": 730, }, "CreateDataPropertyOrThrow.js": { - "offset": 1725190, + "offset": 1726020, "size": 690, }, "CreateHTML.js": { - "offset": 1725880, + "offset": 1726700, "size": 840, }, "CreateIterResultObject.js": { - "offset": 1726710, + "offset": 1727540, "size": 350, }, "CreateListFromArrayLike.js": { - "offset": 1727060, + "offset": 1727890, "size": 1370, }, "CreateNonEnumerableDataPropertyOrThrow.js": { - "offset": 1728430, + "offset": 1729250, "size": 760, }, "CreateRegExpStringIterator.js": { - "offset": 1729190, - "size": 3430, + "offset": 1730010, + "size": 3440, }, "DateFromTime.js": { - "offset": 1732610, + "offset": 1733440, "size": 990, }, "DateString.js": { - "offset": 1733600, + "offset": 1734430, "size": 990, }, "Day.js": { - "offset": 1734580, + "offset": 1735410, "size": 240, }, "DayFromYear.js": { - "offset": 1734810, + "offset": 1735650, "size": 260, }, "DayWithinYear.js": { - "offset": 1735070, + "offset": 1735900, "size": 290, }, "DaysInYear.js": { - "offset": 1735350, + "offset": 1736190, "size": 310, }, "DefineMethodProperty.js": { - "offset": 1735660, + "offset": 1736490, "size": 1510, }, "DefinePropertyOrThrow.js": { - "offset": 1737160, + "offset": 1737990, "size": 1170, }, "DeletePropertyOrThrow.js": { - "offset": 1738330, + "offset": 1739160, "size": 670, }, "DetachArrayBuffer.js": { - "offset": 1738990, + "offset": 1739830, "size": 1720, }, "EnumerableOwnProperties.js": { - "offset": 1740710, + "offset": 1741540, "size": 1010, }, "FindViaPredicate.js": { - "offset": 1741710, + "offset": 1742540, "size": 1540, }, "FlattenIntoArray.js": { - "offset": 1743240, + "offset": 1744080, "size": 1680, }, "FromPropertyDescriptor.js": { - "offset": 1744920, + "offset": 1745760, "size": 540, }, "Get.js": { - "offset": 1745460, + "offset": 1746290, "size": 570, }, "GetArrayBufferMaxByteLengthOption.js": { - "offset": 1746030, + "offset": 1746860, "size": 540, }, "GetGlobalObject.js": { - "offset": 1746560, + "offset": 1747390, "size": 200, }, "GetIterator.js": { - "offset": 1746750, + "offset": 1747590, "size": 1750, }, "GetIteratorFromMethod.js": { - "offset": 1748500, + "offset": 1749330, "size": 740, }, "GetMatchIndexPair.js": { - "offset": 1749230, + "offset": 1750070, "size": 840, }, "GetMatchString.js": { - "offset": 1750070, + "offset": 1750900, "size": 890, }, "GetMethod.js": { - "offset": 1750950, + "offset": 1751790, "size": 690, }, "GetNamedTimeZoneEpochNanoseconds.js": { - "offset": 1751640, + "offset": 1752470, "size": 2430, }, "GetOwnPropertyKeys.js": { - "offset": 1754060, + "offset": 1754900, "size": 840, }, "GetPromiseResolve.js": { - "offset": 1754900, + "offset": 1755730, "size": 640, }, "GetPrototypeFromConstructor.js": { - "offset": 1755530, + "offset": 1756370, "size": 1080, }, "GetStringIndex.js": { - "offset": 1756610, + "offset": 1757450, "size": 760, }, "GetSubstitution.js": { - "offset": 1757370, + "offset": 1758210, "size": 5980, }, "GetUTCEpochNanoseconds.js": { - "offset": 1763350, + "offset": 1764180, "size": 2560, }, "GetV.js": { - "offset": 1765910, + "offset": 1766740, "size": 500, }, "GetValueFromBuffer.js": { - "offset": 1766400, + "offset": 1767230, "size": 4530, }, "GetViewByteLength.js": { - "offset": 1770930, + "offset": 1771760, "size": 1580, }, "GroupBy.js": { - "offset": 1772510, + "offset": 1773340, "size": 2340, }, "HasEitherUnicodeFlag.js": { - "offset": 1774840, + "offset": 1775680, "size": 520, }, "HasOwnProperty.js": { - "offset": 1775360, + "offset": 1776200, "size": 540, }, "HasProperty.js": { - "offset": 1775890, + "offset": 1776730, "size": 490, }, "HourFromTime.js": { - "offset": 1776380, + "offset": 1777210, "size": 390, }, "InLeapYear.js": { - "offset": 1776760, + "offset": 1777600, "size": 470, }, "InstallErrorCause.js": { - "offset": 1777220, + "offset": 1778060, "size": 670, }, "InstanceofOperator.js": { - "offset": 1777880, + "offset": 1778720, "size": 930, }, "InternalizeJSONProperty.js": { - "offset": 1778810, + "offset": 1779650, "size": 2190, }, "Invoke.js": { - "offset": 1780990, + "offset": 1781830, "size": 680, }, "IsAccessorDescriptor.js": { - "offset": 1781660, + "offset": 1782500, "size": 560, }, "IsArray.js": { - "offset": 1782220, + "offset": 1783060, "size": 120, }, "IsArrayBufferViewOutOfBounds.js": { - "offset": 1782340, + "offset": 1783180, "size": 1050, }, "IsBigIntElementType.js": { - "offset": 1783380, + "offset": 1784220, "size": 200, }, "IsCallable.js": { - "offset": 1783580, + "offset": 1784420, "size": 110, }, "IsCompatiblePropertyDescriptor.js": { - "offset": 1783690, - "size": 370, + "offset": 1784520, + "size": 380, }, "IsConcatSpreadable.js": { - "offset": 1784050, + "offset": 1784900, "size": 640, }, "IsConstructor.js": { - "offset": 1784680, + "offset": 1785540, "size": 1150, }, "IsDataDescriptor.js": { - "offset": 1785830, + "offset": 1786680, "size": 570, }, "IsDetachedBuffer.js": { - "offset": 1786390, + "offset": 1787240, "size": 1000, }, "IsExtensible.js": { - "offset": 1787390, + "offset": 1788240, "size": 510, }, "IsFixedLengthArrayBuffer.js": { - "offset": 1787890, + "offset": 1788750, "size": 960, }, "IsGenericDescriptor.js": { - "offset": 1788850, + "offset": 1789700, "size": 660, }, "IsIntegralNumber.js": { - "offset": 1789500, + "offset": 1790360, "size": 360, }, "IsLessThan.js": { - "offset": 1789860, + "offset": 1790710, "size": 2760, }, "IsLooselyEqual.js": { - "offset": 1792610, + "offset": 1793470, "size": 1800, }, "IsNoTearConfiguration.js": { - "offset": 1794410, + "offset": 1795270, "size": 470, }, "IsPromise.js": { - "offset": 1794880, + "offset": 1795740, "size": 490, }, "IsPropertyKey.js": { - "offset": 1795360, + "offset": 1796220, "size": 230, }, "IsRegExp.js": { - "offset": 1795590, + "offset": 1796440, "size": 570, }, "IsSharedArrayBuffer.js": { - "offset": 1796160, + "offset": 1797010, "size": 430, }, "IsStrictlyEqual.js": { - "offset": 1796580, + "offset": 1797440, "size": 400, }, "IsStringWellFormedUnicode.js": { - "offset": 1796970, + "offset": 1797830, "size": 640, }, "IsTimeZoneOffsetString.js": { - "offset": 1797610, + "offset": 1798460, "size": 690, }, "IsTypedArrayOutOfBounds.js": { - "offset": 1798290, + "offset": 1799150, "size": 1970, }, "IsUnclampedIntegerElementType.js": { - "offset": 1800250, + "offset": 1801110, "size": 300, }, "IsUnsignedElementType.js": { - "offset": 1800550, + "offset": 1801410, "size": 270, }, "IsValidIntegerIndex.js": { - "offset": 1800820, + "offset": 1801670, "size": 1400, }, "IsViewOutOfBounds.js": { - "offset": 1802210, + "offset": 1803070, "size": 1730, }, "IsWordChar.js": { - "offset": 1803940, + "offset": 1804800, "size": 1170, }, "IteratorClose.js": { - "offset": 1805100, + "offset": 1805960, "size": 2390, }, "IteratorComplete.js": { - "offset": 1807490, + "offset": 1808350, "size": 460, }, "IteratorNext.js": { - "offset": 1807950, + "offset": 1808810, "size": 900, }, "IteratorStep.js": { - "offset": 1808840, + "offset": 1809700, "size": 660, }, "IteratorStepValue.js": { - "offset": 1809500, + "offset": 1810360, "size": 1190, }, "IteratorToList.js": { - "offset": 1810690, + "offset": 1811550, "size": 790, }, "IteratorValue.js": { - "offset": 1811470, + "offset": 1812330, "size": 410, }, "KeyForSymbol.js": { - "offset": 1811880, + "offset": 1812730, "size": 390, }, "LengthOfArrayLike.js": { - "offset": 1812260, + "offset": 1813120, "size": 470, }, "MakeDataViewWithBufferWitnessRecord.js": { - "offset": 1812720, + "offset": 1813580, "size": 940, }, "MakeDate.js": { - "offset": 1813660, + "offset": 1814520, "size": 340, }, "MakeDay.js": { - "offset": 1813990, + "offset": 1814850, "size": 1020, }, "MakeFullYear.js": { - "offset": 1815000, + "offset": 1815860, "size": 600, }, "MakeMatchIndicesIndexPairArray.js": { - "offset": 1815600, + "offset": 1816460, "size": 2710, }, "MakeTime.js": { - "offset": 1818310, + "offset": 1819170, "size": 770, }, "MakeTypedArrayWithBufferWitnessRecord.js": { - "offset": 1819080, + "offset": 1819930, "size": 940, }, "MinFromTime.js": { - "offset": 1820010, + "offset": 1820870, "size": 400, }, "MonthFromTime.js": { - "offset": 1820410, + "offset": 1821270, "size": 1130, }, "NewPromiseCapability.js": { - "offset": 1821540, + "offset": 1822400, "size": 1230, }, "NormalCompletion.js": { - "offset": 1822770, + "offset": 1823620, "size": 240, }, "Number": { "files": { "add.js": { - "offset": 1823000, + "offset": 1823860, "size": 800, }, "bitwiseAND.js": { - "offset": 1823800, + "offset": 1824660, "size": 430, }, "bitwiseNOT.js": { - "offset": 1824230, + "offset": 1825090, "size": 500, }, "bitwiseOR.js": { - "offset": 1824730, + "offset": 1825590, "size": 430, }, "bitwiseXOR.js": { - "offset": 1825150, + "offset": 1826010, "size": 430, }, "divide.js": { - "offset": 1825580, + "offset": 1826440, "size": 570, }, "equal.js": { - "offset": 1826140, + "offset": 1827000, "size": 480, }, "exponentiate.js": { - "offset": 1826620, + "offset": 1827480, "size": 1740, }, "index.js": { - "offset": 1828360, + "offset": 1829220, "size": 1280, }, "leftShift.js": { - "offset": 1829640, + "offset": 1830490, "size": 570, }, "lessThan.js": { - "offset": 1830200, + "offset": 1831060, "size": 570, }, "multiply.js": { - "offset": 1830760, - "size": 770, + "offset": 1831620, + "size": 830, }, "remainder.js": { - "offset": 1831530, + "offset": 1832440, "size": 1220, }, "sameValue.js": { - "offset": 1832750, + "offset": 1833660, "size": 570, }, "sameValueZero.js": { - "offset": 1833320, + "offset": 1834230, "size": 500, }, "signedRightShift.js": { - "offset": 1833820, + "offset": 1834730, "size": 580, }, "subtract.js": { - "offset": 1834390, + "offset": 1835300, "size": 460, }, "toString.js": { - "offset": 1834850, + "offset": 1835760, "size": 650, }, "unaryMinus.js": { - "offset": 1835500, + "offset": 1836410, "size": 400, }, "unsignedRightShift.js": { - "offset": 1835890, + "offset": 1836800, "size": 590, }, }, }, "NumberBitwiseOp.js": { - "offset": 1836470, + "offset": 1837380, "size": 690, }, "NumberToBigInt.js": { - "offset": 1837150, + "offset": 1838060, "size": 800, }, "NumericToRawBytes.js": { - "offset": 1837940, + "offset": 1838850, "size": 2030, }, "ObjectDefineProperties.js": { - "offset": 1839970, + "offset": 1840880, "size": 1280, }, "OrdinaryCreateFromConstructor.js": { - "offset": 1841240, + "offset": 1842150, "size": 830, }, "OrdinaryDefineOwnProperty.js": { - "offset": 1842070, + "offset": 1842980, "size": 2180, }, "OrdinaryGetOwnProperty.js": { - "offset": 1844240, + "offset": 1845150, "size": 1200, }, "OrdinaryGetPrototypeOf.js": { - "offset": 1845440, + "offset": 1846350, "size": 500, }, "OrdinaryHasInstance.js": { - "offset": 1845930, + "offset": 1846840, "size": 580, }, "OrdinaryHasProperty.js": { - "offset": 1846500, + "offset": 1847410, "size": 510, }, "OrdinaryObjectCreate.js": { - "offset": 1847010, + "offset": 1847910, "size": 1630, }, "OrdinarySetPrototypeOf.js": { - "offset": 1848630, + "offset": 1849540, "size": 1000, }, "OrdinaryToPrimitive.js": { - "offset": 1849630, + "offset": 1850540, "size": 1030, }, "ParseHexOctet.js": { - "offset": 1850650, + "offset": 1851560, "size": 1330, }, "PromiseResolve.js": { - "offset": 1851980, + "offset": 1852890, "size": 510, }, "QuoteJSONString.js": { - "offset": 1852490, + "offset": 1853400, "size": 1430, }, "RawBytesToNumeric.js": { - "offset": 1853910, + "offset": 1854820, "size": 2340, }, "RegExpCreate.js": { - "offset": 1856250, + "offset": 1857160, "size": 650, }, "RegExpExec.js": { - "offset": 1856890, + "offset": 1857800, "size": 830, }, "RegExpHasFlag.js": { - "offset": 1857720, + "offset": 1858630, "size": 1110, }, "RequireObjectCoercible.js": { - "offset": 1858830, + "offset": 1859740, "size": 90, }, "SameValue.js": { - "offset": 1858910, + "offset": 1859820, "size": 320, }, "SameValueNonNumber.js": { - "offset": 1859220, + "offset": 1860130, "size": 540, }, "SameValueZero.js": { - "offset": 1859760, + "offset": 1860670, "size": 230, }, "SecFromTime.js": { - "offset": 1859980, + "offset": 1860890, "size": 410, }, "Set.js": { - "offset": 1860380, + "offset": 1861290, "size": 1230, }, "SetFunctionLength.js": { - "offset": 1861610, + "offset": 1862520, "size": 1020, }, "SetFunctionName.js": { - "offset": 1862630, + "offset": 1863530, "size": 1290, }, "SetIntegrityLevel.js": { - "offset": 1863910, + "offset": 1864820, "size": 1840, }, "SetTypedArrayFromArrayLike.js": { - "offset": 1865750, + "offset": 1866660, "size": 2200, }, "SetTypedArrayFromTypedArray.js": { - "offset": 1867950, + "offset": 1868850, "size": 5280, }, "SetValueInBuffer.js": { - "offset": 1873230, + "offset": 1874130, "size": 4160, }, "SortIndexedProperties.js": { - "offset": 1877380, + "offset": 1878290, "size": 1520, }, "SpeciesConstructor.js": { - "offset": 1878900, + "offset": 1879810, "size": 850, }, "StringCreate.js": { - "offset": 1879740, + "offset": 1880650, "size": 1080, }, "StringGetOwnProperty.js": { - "offset": 1880820, + "offset": 1881730, "size": 1380, }, "StringIndexOf.js": { - "offset": 1882190, + "offset": 1883100, "size": 1030, }, "StringPad.js": { - "offset": 1883220, + "offset": 1884120, "size": 1570, }, "StringPaddingBuiltinsImpl.js": { - "offset": 1884780, + "offset": 1885690, "size": 880, }, "StringToBigInt.js": { - "offset": 1885660, + "offset": 1886570, "size": 590, }, "StringToCodePoints.js": { - "offset": 1886250, + "offset": 1887160, "size": 600, }, "StringToNumber.js": { - "offset": 1886840, + "offset": 1887750, "size": 1270, }, "SymbolDescriptiveString.js": { - "offset": 1888100, + "offset": 1889010, "size": 440, }, "SystemTimeZoneIdentifier.js": { - "offset": 1888540, + "offset": 1889450, "size": 530, }, "TestIntegrityLevel.js": { - "offset": 1889070, + "offset": 1889980, "size": 1210, }, "ThisBigIntValue.js": { - "offset": 1890270, + "offset": 1891180, "size": 460, }, "ThisBooleanValue.js": { - "offset": 1890730, + "offset": 1891640, "size": 330, }, "ThisNumberValue.js": { - "offset": 1891050, + "offset": 1891960, "size": 320, }, "ThisStringValue.js": { - "offset": 1891370, + "offset": 1892280, "size": 320, }, "ThisSymbolValue.js": { - "offset": 1891690, + "offset": 1892600, "size": 530, }, "ThrowCompletion.js": { - "offset": 1892220, + "offset": 1893130, "size": 240, }, "TimeClip.js": { - "offset": 1892460, + "offset": 1893370, "size": 440, }, "TimeFromYear.js": { - "offset": 1892900, + "offset": 1893810, "size": 270, }, "TimeString.js": { - "offset": 1893160, + "offset": 1894070, "size": 830, }, "TimeWithinDay.js": { - "offset": 1893980, + "offset": 1894890, "size": 250, }, "TimeZoneString.js": { - "offset": 1894230, + "offset": 1895140, "size": 1970, }, "ToBigInt.js": { - "offset": 1896190, + "offset": 1897100, "size": 1280, }, "ToBigInt64.js": { - "offset": 1897460, + "offset": 1898370, "size": 960, }, "ToBigUint64.js": { - "offset": 1898410, + "offset": 1899320, "size": 710, }, "ToBoolean.js": { - "offset": 1899120, + "offset": 1900030, "size": 130, }, "ToDateString.js": { - "offset": 1899250, + "offset": 1900160, "size": 520, }, "ToIndex.js": { - "offset": 1899770, + "offset": 1900680, "size": 540, }, "ToInt16.js": { - "offset": 1900310, + "offset": 1901210, "size": 550, }, "ToInt32.js": { - "offset": 1900850, + "offset": 1901760, "size": 700, }, "ToInt8.js": { - "offset": 1901540, + "offset": 1902450, "size": 500, }, "ToIntegerOrInfinity.js": { - "offset": 1902030, + "offset": 1902940, "size": 480, }, "ToLength.js": { - "offset": 1902500, + "offset": 1903410, "size": 440, }, "ToNumber.js": { - "offset": 1902940, + "offset": 1903850, "size": 800, }, "ToNumeric.js": { - "offset": 1903730, + "offset": 1904640, "size": 530, }, "ToObject.js": { - "offset": 1904250, + "offset": 1905160, "size": 130, }, "ToPrimitive.js": { - "offset": 1904380, + "offset": 1905290, "size": 290, }, "ToPropertyDescriptor.js": { - "offset": 1904660, + "offset": 1905570, "size": 1460, }, "ToPropertyKey.js": { - "offset": 1906120, + "offset": 1907030, "size": 400, }, "ToString.js": { - "offset": 1906520, + "offset": 1907430, "size": 390, }, "ToUint16.js": { - "offset": 1906910, + "offset": 1907810, "size": 590, }, "ToUint32.js": { - "offset": 1907490, + "offset": 1908400, "size": 600, }, "ToUint8.js": { - "offset": 1908080, + "offset": 1908990, "size": 460, }, "ToUint8Clamp.js": { - "offset": 1908540, + "offset": 1909450, "size": 610, }, "ToZeroPaddedDecimalString.js": { - "offset": 1909150, + "offset": 1910060, "size": 580, }, "TrimString.js": { - "offset": 1909720, + "offset": 1910630, "size": 760, }, "Type.js": { - "offset": 1910480, + "offset": 1911390, "size": 300, }, "TypedArrayByteLength.js": { - "offset": 1910770, + "offset": 1911680, "size": 1340, }, "TypedArrayCreateFromConstructor.js": { - "offset": 1912110, + "offset": 1913020, "size": 1950, }, "TypedArrayCreateSameType.js": { - "offset": 1914060, + "offset": 1914970, "size": 1280, }, "TypedArrayElementSize.js": { - "offset": 1915330, + "offset": 1916240, "size": 720, }, "TypedArrayElementType.js": { - "offset": 1916050, + "offset": 1916960, "size": 650, }, "TypedArrayGetElement.js": { - "offset": 1916700, + "offset": 1917610, "size": 1240, }, "TypedArrayLength.js": { - "offset": 1917930, + "offset": 1918840, "size": 1700, }, "TypedArraySetElement.js": { - "offset": 1919620, + "offset": 1920540, "size": 1530, }, "TypedArraySpeciesCreate.js": { - "offset": 1921150, + "offset": 1922060, "size": 1420, }, "UTF16EncodeCodePoint.js": { - "offset": 1922570, + "offset": 1923480, "size": 710, }, "UTF16SurrogatePairToCodePoint.js": { - "offset": 1923270, + "offset": 1924190, "size": 780, }, "UnicodeEscape.js": { - "offset": 1924050, + "offset": 1924960, "size": 790, }, "ValidateAndApplyPropertyDescriptor.js": { - "offset": 1924830, + "offset": 1925750, "size": 5740, }, "ValidateAtomicAccess.js": { - "offset": 1930570, + "offset": 1931480, "size": 1330, }, "ValidateAtomicAccessOnIntegerTypedArray.js": { - "offset": 1931900, + "offset": 1932810, "size": 690, }, "ValidateIntegerTypedArray.js": { - "offset": 1932580, + "offset": 1933500, "size": 1300, }, "ValidateTypedArray.js": { - "offset": 1933870, + "offset": 1934790, "size": 1060, }, "WeakRefDeref.js": { - "offset": 1934930, + "offset": 1935840, "size": 570, }, "WeekDay.js": { - "offset": 1935490, + "offset": 1936410, "size": 210, }, "WordCharacters.js": { - "offset": 1935700, + "offset": 1936610, "size": 1620, }, "YearFromTime.js": { - "offset": 1937320, + "offset": 1938230, "size": 400, }, "abs.js": { - "offset": 1937720, + "offset": 1938630, "size": 220, }, "clamp.js": { - "offset": 1937940, + "offset": 1938840, "size": 510, }, "floor.js": { - "offset": 1938440, + "offset": 1939350, "size": 290, }, "max.js": { - "offset": 1938730, + "offset": 1939640, "size": 140, }, "min.js": { - "offset": 1938860, + "offset": 1939770, "size": 140, }, "modulo.js": { - "offset": 1939000, + "offset": 1939910, "size": 170, }, "msFromTime.js": { - "offset": 1939170, + "offset": 1940070, "size": 260, }, "substring.js": { - "offset": 1939420, + "offset": 1940330, "size": 640, }, "tables": { "files": { "typed-array-objects.js": { - "offset": 1940060, + "offset": 1940970, "size": 780, }, }, }, "truncate.js": { - "offset": 1940830, + "offset": 1941740, "size": 470, }, }, @@ -18268,1219 +18260,1219 @@ exports[`node_module collectors > pnpm max stack 2`] = ` "2025": { "files": { "AddEntriesFromIterable.js": { - "offset": 1941290, + "offset": 1942200, "size": 1430, }, "AddToKeptObjects.js": { - "offset": 1942720, + "offset": 1943620, "size": 540, }, "AddValueToKeyedGroup.js": { - "offset": 1943250, + "offset": 1944160, "size": 1300, }, "AdvanceStringIndex.js": { - "offset": 1944550, + "offset": 1945450, "size": 940, }, "AllCharacters.js": { - "offset": 1945480, + "offset": 1946390, "size": 1140, }, "ApplyStringOrNumericBinaryOperator.js": { - "offset": 1946620, + "offset": 1947520, "size": 3140, }, "ArrayBufferByteLength.js": { - "offset": 1949750, + "offset": 1950660, "size": 1780, }, "ArrayBufferCopyAndDetach.js": { - "offset": 1951530, + "offset": 1952430, "size": 3910, }, "ArrayCreate.js": { - "offset": 1955430, + "offset": 1956340, "size": 1430, }, "ArraySetLength.js": { - "offset": 1956850, + "offset": 1957760, "size": 2430, }, "ArraySpeciesCreate.js": { - "offset": 1959270, + "offset": 1960180, "size": 1370, }, "AsyncFromSyncIteratorContinuation.js": { - "offset": 1960640, + "offset": 1961550, "size": 1540, }, "AsyncIteratorClose.js": { - "offset": 1962180, + "offset": 1963080, "size": 1940, }, "BigInt": { "files": { "add.js": { - "offset": 1964110, + "offset": 1965020, "size": 390, }, "bitwiseAND.js": { - "offset": 1964490, + "offset": 1965400, "size": 430, }, "bitwiseNOT.js": { - "offset": 1964920, + "offset": 1965820, "size": 420, }, "bitwiseOR.js": { - "offset": 1965330, + "offset": 1966240, "size": 430, }, "bitwiseXOR.js": { - "offset": 1965760, + "offset": 1966660, "size": 430, }, "divide.js": { - "offset": 1966180, + "offset": 1967090, "size": 600, }, "equal.js": { - "offset": 1966780, + "offset": 1967690, "size": 390, }, "exponentiate.js": { - "offset": 1967170, + "offset": 1968070, "size": 860, }, "index.js": { - "offset": 1968020, + "offset": 1968930, "size": 1140, }, "leftShift.js": { - "offset": 1969150, + "offset": 1970060, "size": 400, }, "lessThan.js": { - "offset": 1969540, + "offset": 1970450, "size": 400, }, "multiply.js": { - "offset": 1969940, + "offset": 1970840, "size": 400, }, "remainder.js": { - "offset": 1970330, + "offset": 1971230, "size": 680, }, "signedRightShift.js": { - "offset": 1971000, + "offset": 1971910, "size": 430, }, "subtract.js": { - "offset": 1971430, + "offset": 1972330, "size": 400, }, "toString.js": { - "offset": 1971820, + "offset": 1972730, "size": 790, }, "unaryMinus.js": { - "offset": 1972600, + "offset": 1973510, "size": 480, }, "unsignedRightShift.js": { - "offset": 1973080, + "offset": 1973990, "size": 440, }, }, }, "BigIntBitwiseOp.js": { - "offset": 1973510, + "offset": 1974420, "size": 1670, }, "BinaryAnd.js": { - "offset": 1975170, + "offset": 1976080, "size": 320, }, "BinaryOr.js": { - "offset": 1975490, + "offset": 1976400, "size": 320, }, "BinaryXor.js": { - "offset": 1975800, + "offset": 1976710, "size": 320, }, "ByteListBitwiseOp.js": { - "offset": 1976120, + "offset": 1977030, "size": 1190, }, "ByteListEqual.js": { - "offset": 1977300, + "offset": 1978210, "size": 860, }, "Call.js": { - "offset": 1978160, + "offset": 1979070, "size": 610, }, "CanBeHeldWeakly.js": { - "offset": 1978770, + "offset": 1979670, "size": 410, }, "CanonicalNumericIndexString.js": { - "offset": 1979170, + "offset": 1980080, "size": 580, }, "Canonicalize.js": { - "offset": 1979740, + "offset": 1980650, "size": 1240, }, "CanonicalizeKeyedCollectionKey.js": { - "offset": 1980980, + "offset": 1981890, "size": 200, }, "CharacterComplement.js": { - "offset": 1981170, + "offset": 1982080, "size": 890, }, "CharacterRange.js": { - "offset": 1982060, + "offset": 1982960, "size": 1200, }, "ClearKeptObjects.js": { - "offset": 1983250, + "offset": 1984160, "size": 300, }, "CloneArrayBuffer.js": { - "offset": 1983550, + "offset": 1984460, "size": 1900, }, "CodePointAt.js": { - "offset": 1985450, + "offset": 1986360, "size": 1650, }, "CodePointsToString.js": { - "offset": 1987100, + "offset": 1988010, "size": 740, }, "CompareArrayElements.js": { - "offset": 1987830, + "offset": 1988740, "size": 1280, }, "CompareTypedArrayElements.js": { - "offset": 1989110, + "offset": 1990020, "size": 1360, }, "CompletePropertyDescriptor.js": { - "offset": 1990470, + "offset": 1991370, "size": 1110, }, "CompletionRecord.js": { - "offset": 1991580, + "offset": 1992480, "size": 1360, }, "CopyDataProperties.js": { - "offset": 1992930, + "offset": 1993840, "size": 1990, }, "CreateAsyncFromSyncIterator.js": { - "offset": 1994920, - "size": 4550, + "offset": 1995830, + "size": 4570, }, "CreateDataProperty.js": { - "offset": 1999460, + "offset": 2000390, "size": 730, }, "CreateDataPropertyOrThrow.js": { - "offset": 2000190, + "offset": 2001120, "size": 690, }, "CreateHTML.js": { - "offset": 2000870, + "offset": 2001800, "size": 840, }, "CreateIteratorFromClosure.js": { - "offset": 2001710, + "offset": 2002640, "size": 2030, }, "CreateIteratorResultObject.js": { - "offset": 2003730, + "offset": 2004660, "size": 360, }, "CreateListFromArrayLike.js": { - "offset": 2004090, + "offset": 2005010, "size": 1280, }, "CreateNonEnumerableDataPropertyOrThrow.js": { - "offset": 2005360, + "offset": 2006290, "size": 760, }, "CreateRegExpStringIterator.js": { - "offset": 2006120, - "size": 3450, + "offset": 2007050, + "size": 3460, }, "DateFromTime.js": { - "offset": 2009560, + "offset": 2010500, "size": 990, }, "DateString.js": { - "offset": 2010550, + "offset": 2011490, "size": 990, }, "Day.js": { - "offset": 2011530, + "offset": 2012470, "size": 240, }, "DayFromYear.js": { - "offset": 2011770, + "offset": 2012710, "size": 260, }, "DayWithinYear.js": { - "offset": 2012020, + "offset": 2012960, "size": 290, }, "DaysInYear.js": { - "offset": 2012310, + "offset": 2013250, "size": 310, }, "DefineMethodProperty.js": { - "offset": 2012610, + "offset": 2013550, "size": 1510, }, "DefinePropertyOrThrow.js": { - "offset": 2014120, + "offset": 2015050, "size": 1170, }, "DeletePropertyOrThrow.js": { - "offset": 2015290, + "offset": 2016220, "size": 670, }, "DetachArrayBuffer.js": { - "offset": 2015950, + "offset": 2016890, "size": 1720, }, "EncodeForRegExpEscape.js": { - "offset": 2017660, + "offset": 2018600, "size": 2100, }, "EnumerableOwnProperties.js": { - "offset": 2019760, + "offset": 2020690, "size": 1010, }, "FindViaPredicate.js": { - "offset": 2020760, + "offset": 2021700, "size": 1540, }, "FlattenIntoArray.js": { - "offset": 2022290, + "offset": 2023230, "size": 1680, }, "FromPropertyDescriptor.js": { - "offset": 2023970, + "offset": 2024910, "size": 540, }, "GeneratorResume.js": { - "offset": 2024510, + "offset": 2025450, "size": 920, }, "GeneratorResumeAbrupt.js": { - "offset": 2025420, + "offset": 2026360, "size": 1970, }, "GeneratorStart.js": { - "offset": 2027390, + "offset": 2028330, "size": 1630, }, "GeneratorValidate.js": { - "offset": 2029010, + "offset": 2029950, "size": 770, }, "Get.js": { - "offset": 2029780, + "offset": 2030720, "size": 570, }, "GetArrayBufferMaxByteLengthOption.js": { - "offset": 2030350, + "offset": 2031290, "size": 540, }, "GetGlobalObject.js": { - "offset": 2030880, + "offset": 2031820, "size": 200, }, "GetIterator.js": { - "offset": 2031080, + "offset": 2032010, "size": 1750, }, "GetIteratorDirect.js": { - "offset": 2032820, + "offset": 2033760, "size": 560, }, "GetIteratorFlattenable.js": { - "offset": 2033370, + "offset": 2034310, "size": 1460, }, "GetIteratorFromMethod.js": { - "offset": 2034820, + "offset": 2035760, "size": 740, }, "GetMatchIndexPair.js": { - "offset": 2035560, + "offset": 2036500, "size": 840, }, "GetMatchString.js": { - "offset": 2036400, + "offset": 2037340, "size": 890, }, "GetMethod.js": { - "offset": 2037280, + "offset": 2038220, "size": 690, }, "GetNamedTimeZoneEpochNanoseconds.js": { - "offset": 2037970, + "offset": 2038900, "size": 2430, }, "GetOwnPropertyKeys.js": { - "offset": 2040390, + "offset": 2041330, "size": 840, }, "GetPromiseResolve.js": { - "offset": 2041220, + "offset": 2042160, "size": 640, }, "GetPrototypeFromConstructor.js": { - "offset": 2041860, + "offset": 2042800, "size": 1080, }, "GetSetRecord.js": { - "offset": 2042940, + "offset": 2043880, "size": 1710, }, "GetStringIndex.js": { - "offset": 2044650, + "offset": 2045590, "size": 760, }, "GetSubstitution.js": { - "offset": 2045410, + "offset": 2046350, "size": 5980, }, "GetUTCEpochNanoseconds.js": { - "offset": 2051390, + "offset": 2052320, "size": 2560, }, "GetV.js": { - "offset": 2053940, + "offset": 2054880, "size": 500, }, "GetValueFromBuffer.js": { - "offset": 2054440, + "offset": 2055370, "size": 4530, }, "GetViewByteLength.js": { - "offset": 2058960, + "offset": 2059900, "size": 1580, }, "GroupBy.js": { - "offset": 2060540, - "size": 2390, + "offset": 2061480, + "size": 2400, }, "HasEitherUnicodeFlag.js": { - "offset": 2062930, + "offset": 2063870, "size": 520, }, "HasOwnProperty.js": { - "offset": 2063450, + "offset": 2064390, "size": 540, }, "HasProperty.js": { - "offset": 2063980, + "offset": 2064920, "size": 490, }, "HourFromTime.js": { - "offset": 2064460, + "offset": 2065410, "size": 390, }, "IfAbruptCloseIterator.js": { - "offset": 2064850, + "offset": 2065790, "size": 580, }, "InLeapYear.js": { - "offset": 2065420, + "offset": 2066370, "size": 470, }, "InstallErrorCause.js": { - "offset": 2065880, + "offset": 2066830, "size": 670, }, "InstanceofOperator.js": { - "offset": 2066540, + "offset": 2067490, "size": 930, }, "InternalizeJSONProperty.js": { - "offset": 2067470, + "offset": 2068420, "size": 2190, }, "Invoke.js": { - "offset": 2069650, + "offset": 2070600, "size": 680, }, "IsAccessorDescriptor.js": { - "offset": 2070320, + "offset": 2071270, "size": 560, }, "IsArray.js": { - "offset": 2070880, + "offset": 2071830, "size": 120, }, "IsArrayBufferViewOutOfBounds.js": { - "offset": 2071000, + "offset": 2071950, "size": 1050, }, "IsBigIntElementType.js": { - "offset": 2072050, + "offset": 2072990, "size": 200, }, "IsCallable.js": { - "offset": 2072240, + "offset": 2073190, "size": 110, }, "IsCompatiblePropertyDescriptor.js": { - "offset": 2072350, - "size": 370, + "offset": 2073290, + "size": 380, }, "IsConcatSpreadable.js": { - "offset": 2072710, + "offset": 2073670, "size": 640, }, "IsConstructor.js": { - "offset": 2073340, + "offset": 2074310, "size": 1150, }, "IsDataDescriptor.js": { - "offset": 2074490, + "offset": 2075450, "size": 570, }, "IsDetachedBuffer.js": { - "offset": 2075050, + "offset": 2076010, "size": 1000, }, "IsExtensible.js": { - "offset": 2076050, + "offset": 2077010, "size": 510, }, "IsFixedLengthArrayBuffer.js": { - "offset": 2076550, + "offset": 2077520, "size": 960, }, "IsGenericDescriptor.js": { - "offset": 2077510, + "offset": 2078470, "size": 660, }, "IsLessThan.js": { - "offset": 2078160, + "offset": 2079130, "size": 2760, }, "IsLooselyEqual.js": { - "offset": 2080920, + "offset": 2081890, "size": 1800, }, "IsNoTearConfiguration.js": { - "offset": 2082720, + "offset": 2083680, "size": 470, }, "IsPromise.js": { - "offset": 2083190, + "offset": 2084150, "size": 490, }, "IsRegExp.js": { - "offset": 2083670, + "offset": 2084640, "size": 570, }, "IsSharedArrayBuffer.js": { - "offset": 2084240, + "offset": 2085210, "size": 430, }, "IsStrictlyEqual.js": { - "offset": 2084670, + "offset": 2085630, "size": 400, }, "IsStringWellFormedUnicode.js": { - "offset": 2085060, + "offset": 2086030, "size": 640, }, "IsTimeZoneOffsetString.js": { - "offset": 2085700, + "offset": 2086660, "size": 690, }, "IsTypedArrayFixedLength.js": { - "offset": 2086380, + "offset": 2087340, "size": 940, }, "IsTypedArrayOutOfBounds.js": { - "offset": 2087310, + "offset": 2088280, "size": 1970, }, "IsUnclampedIntegerElementType.js": { - "offset": 2089280, + "offset": 2090240, "size": 300, }, "IsUnsignedElementType.js": { - "offset": 2089580, + "offset": 2090540, "size": 270, }, "IsValidIntegerIndex.js": { - "offset": 2089840, + "offset": 2090810, "size": 1400, }, "IsViewOutOfBounds.js": { - "offset": 2091230, + "offset": 2092200, "size": 1730, }, "IsWordChar.js": { - "offset": 2092960, + "offset": 2093930, "size": 1170, }, "IteratorClose.js": { - "offset": 2094130, + "offset": 2095090, "size": 2390, }, "IteratorComplete.js": { - "offset": 2096520, + "offset": 2097480, "size": 460, }, "IteratorNext.js": { - "offset": 2096980, + "offset": 2097940, "size": 1160, }, "IteratorStep.js": { - "offset": 2098140, + "offset": 2099100, "size": 1000, }, "IteratorStepValue.js": { - "offset": 2099130, + "offset": 2100100, "size": 870, }, "IteratorToList.js": { - "offset": 2099990, + "offset": 2100960, "size": 790, }, "IteratorValue.js": { - "offset": 2100780, + "offset": 2101740, "size": 410, }, "KeyForSymbol.js": { - "offset": 2101180, + "offset": 2102150, "size": 390, }, "LengthOfArrayLike.js": { - "offset": 2101570, + "offset": 2102530, "size": 470, }, "MakeDataViewWithBufferWitnessRecord.js": { - "offset": 2102030, + "offset": 2102990, "size": 940, }, "MakeDate.js": { - "offset": 2102960, + "offset": 2103930, "size": 340, }, "MakeDay.js": { - "offset": 2103300, + "offset": 2104260, "size": 1020, }, "MakeFullYear.js": { - "offset": 2104310, + "offset": 2105270, "size": 600, }, "MakeMatchIndicesIndexPairArray.js": { - "offset": 2104910, + "offset": 2105870, "size": 2710, }, "MakeTime.js": { - "offset": 2107620, + "offset": 2108580, "size": 770, }, "MakeTypedArrayWithBufferWitnessRecord.js": { - "offset": 2108380, + "offset": 2109350, "size": 940, }, "MinFromTime.js": { - "offset": 2109320, + "offset": 2110280, "size": 400, }, "MonthFromTime.js": { - "offset": 2109720, + "offset": 2110680, "size": 1130, }, "NewPromiseCapability.js": { - "offset": 2110840, + "offset": 2111810, "size": 1230, }, "NormalCompletion.js": { - "offset": 2112070, + "offset": 2113040, "size": 240, }, "Number": { "files": { "add.js": { - "offset": 2112310, + "offset": 2113270, "size": 800, }, "bitwiseAND.js": { - "offset": 2113110, + "offset": 2114070, "size": 430, }, "bitwiseNOT.js": { - "offset": 2113540, + "offset": 2114500, "size": 500, }, "bitwiseOR.js": { - "offset": 2114040, + "offset": 2115000, "size": 430, }, "bitwiseXOR.js": { - "offset": 2114460, + "offset": 2115420, "size": 430, }, "divide.js": { - "offset": 2114890, + "offset": 2115850, "size": 570, }, "equal.js": { - "offset": 2115450, + "offset": 2116410, "size": 480, }, "exponentiate.js": { - "offset": 2115930, + "offset": 2116890, "size": 1740, }, "index.js": { - "offset": 2117670, + "offset": 2118630, "size": 1280, }, "leftShift.js": { - "offset": 2118940, + "offset": 2119910, "size": 570, }, "lessThan.js": { - "offset": 2119500, + "offset": 2120470, "size": 570, }, "multiply.js": { - "offset": 2120070, - "size": 770, + "offset": 2121030, + "size": 830, }, "remainder.js": { - "offset": 2120840, + "offset": 2121850, "size": 1220, }, "sameValue.js": { - "offset": 2122060, + "offset": 2123070, "size": 570, }, "sameValueZero.js": { - "offset": 2122630, + "offset": 2123640, "size": 500, }, "signedRightShift.js": { - "offset": 2123120, + "offset": 2124140, "size": 580, }, "subtract.js": { - "offset": 2123700, + "offset": 2124720, "size": 460, }, "toString.js": { - "offset": 2124160, + "offset": 2125170, "size": 650, }, "unaryMinus.js": { - "offset": 2124800, + "offset": 2125820, "size": 400, }, "unsignedRightShift.js": { - "offset": 2125190, + "offset": 2126210, "size": 590, }, }, }, "NumberBitwiseOp.js": { - "offset": 2125770, + "offset": 2126790, "size": 690, }, "NumberToBigInt.js": { - "offset": 2126460, + "offset": 2127470, "size": 800, }, "NumericToRawBytes.js": { - "offset": 2127250, + "offset": 2128260, "size": 2190, }, "ObjectDefineProperties.js": { - "offset": 2129440, + "offset": 2130450, "size": 1280, }, "OrdinaryCreateFromConstructor.js": { - "offset": 2130710, + "offset": 2131730, "size": 830, }, "OrdinaryDefineOwnProperty.js": { - "offset": 2131540, + "offset": 2132550, "size": 2180, }, "OrdinaryGetOwnProperty.js": { - "offset": 2133720, + "offset": 2134730, "size": 1200, }, "OrdinaryGetPrototypeOf.js": { - "offset": 2134910, + "offset": 2135930, "size": 500, }, "OrdinaryHasInstance.js": { - "offset": 2135400, + "offset": 2136420, "size": 580, }, "OrdinaryHasProperty.js": { - "offset": 2135980, + "offset": 2136990, "size": 510, }, "OrdinaryObjectCreate.js": { - "offset": 2136480, + "offset": 2137490, "size": 1630, }, "OrdinarySetPrototypeOf.js": { - "offset": 2138100, + "offset": 2139120, "size": 1000, }, "OrdinaryToPrimitive.js": { - "offset": 2139100, + "offset": 2140120, "size": 1030, }, "ParseHexOctet.js": { - "offset": 2140120, + "offset": 2141140, "size": 1330, }, "PromiseResolve.js": { - "offset": 2141450, + "offset": 2142470, "size": 510, }, "QuoteJSONString.js": { - "offset": 2141960, + "offset": 2142970, "size": 1430, }, "RawBytesToNumeric.js": { - "offset": 2143380, + "offset": 2144400, "size": 2480, }, "RegExpCreate.js": { - "offset": 2145860, + "offset": 2146870, "size": 650, }, "RegExpExec.js": { - "offset": 2146500, + "offset": 2147510, "size": 830, }, "RegExpHasFlag.js": { - "offset": 2147330, + "offset": 2148340, "size": 1110, }, "RequireObjectCoercible.js": { - "offset": 2148430, + "offset": 2149450, "size": 90, }, "ReturnCompletion.js": { - "offset": 2148520, + "offset": 2149530, "size": 230, }, "SameType.js": { - "offset": 2148740, + "offset": 2149750, "size": 290, }, "SameValue.js": { - "offset": 2149020, + "offset": 2150040, "size": 320, }, "SameValueNonNumber.js": { - "offset": 2149330, + "offset": 2150350, "size": 540, }, "SameValueZero.js": { - "offset": 2149870, + "offset": 2150890, "size": 230, }, "SecFromTime.js": { - "offset": 2150090, + "offset": 2151110, "size": 410, }, "Set.js": { - "offset": 2150490, + "offset": 2151510, "size": 1230, }, "SetDataHas.js": { - "offset": 2151720, + "offset": 2152740, "size": 760, }, "SetDataIndex.js": { - "offset": 2152480, + "offset": 2153490, "size": 860, }, "SetDataSize.js": { - "offset": 2153330, + "offset": 2154350, "size": 690, }, "SetFunctionLength.js": { - "offset": 2154020, + "offset": 2155040, "size": 1020, }, "SetFunctionName.js": { - "offset": 2155040, + "offset": 2156060, "size": 1290, }, "SetIntegrityLevel.js": { - "offset": 2156330, + "offset": 2157340, "size": 1840, }, "SetTypedArrayFromArrayLike.js": { - "offset": 2158160, + "offset": 2159180, "size": 2200, }, "SetTypedArrayFromTypedArray.js": { - "offset": 2160360, + "offset": 2161380, "size": 5280, }, "SetValueInBuffer.js": { - "offset": 2165640, + "offset": 2166660, "size": 4160, }, "SetterThatIgnoresPrototypeProperties.js": { - "offset": 2169800, + "offset": 2170810, "size": 1250, }, "SortIndexedProperties.js": { - "offset": 2171040, + "offset": 2172060, "size": 1520, }, "SpeciesConstructor.js": { - "offset": 2172560, + "offset": 2173580, "size": 850, }, "StringCreate.js": { - "offset": 2173400, + "offset": 2174420, "size": 1080, }, "StringGetOwnProperty.js": { - "offset": 2174480, + "offset": 2175500, "size": 1380, }, "StringIndexOf.js": { - "offset": 2175850, + "offset": 2176870, "size": 1110, }, "StringLastIndexOf.js": { - "offset": 2176960, + "offset": 2177980, "size": 1100, }, "StringPad.js": { - "offset": 2178060, + "offset": 2179070, "size": 1570, }, "StringPaddingBuiltinsImpl.js": { - "offset": 2179630, + "offset": 2180640, "size": 880, }, "StringToBigInt.js": { - "offset": 2180500, + "offset": 2181520, "size": 590, }, "StringToCodePoints.js": { - "offset": 2181090, + "offset": 2182110, "size": 600, }, "StringToNumber.js": { - "offset": 2181680, + "offset": 2182700, "size": 1270, }, "SymbolDescriptiveString.js": { - "offset": 2182950, + "offset": 2183960, "size": 440, }, "SystemTimeZoneIdentifier.js": { - "offset": 2183380, + "offset": 2184400, "size": 530, }, "TestIntegrityLevel.js": { - "offset": 2183910, + "offset": 2184930, "size": 1210, }, "ThisBigIntValue.js": { - "offset": 2185120, + "offset": 2186130, "size": 460, }, "ThisBooleanValue.js": { - "offset": 2185570, + "offset": 2186590, "size": 330, }, "ThisNumberValue.js": { - "offset": 2185900, + "offset": 2186910, "size": 320, }, "ThisStringValue.js": { - "offset": 2186220, + "offset": 2187230, "size": 320, }, "ThisSymbolValue.js": { - "offset": 2186530, + "offset": 2187550, "size": 530, }, "ThrowCompletion.js": { - "offset": 2187060, + "offset": 2188080, "size": 240, }, "TimeClip.js": { - "offset": 2187300, + "offset": 2188320, "size": 440, }, "TimeFromYear.js": { - "offset": 2187740, + "offset": 2188760, "size": 270, }, "TimeString.js": { - "offset": 2188000, + "offset": 2189020, "size": 830, }, "TimeWithinDay.js": { - "offset": 2188820, + "offset": 2189840, "size": 250, }, "TimeZoneString.js": { - "offset": 2189070, + "offset": 2190090, "size": 1970, }, "ToBigInt.js": { - "offset": 2191030, + "offset": 2192050, "size": 1280, }, "ToBigInt64.js": { - "offset": 2192300, + "offset": 2193320, "size": 960, }, "ToBigUint64.js": { - "offset": 2193260, + "offset": 2194270, "size": 710, }, "ToBoolean.js": { - "offset": 2193960, + "offset": 2194980, "size": 130, }, "ToDateString.js": { - "offset": 2194090, + "offset": 2195110, "size": 520, }, "ToIndex.js": { - "offset": 2194610, + "offset": 2195630, "size": 540, }, "ToInt16.js": { - "offset": 2195150, + "offset": 2196160, "size": 550, }, "ToInt32.js": { - "offset": 2195690, + "offset": 2196700, "size": 700, }, "ToInt8.js": { - "offset": 2196380, + "offset": 2197400, "size": 500, }, "ToIntegerOrInfinity.js": { - "offset": 2196870, + "offset": 2197890, "size": 480, }, "ToLength.js": { - "offset": 2197340, + "offset": 2198360, "size": 440, }, "ToNumber.js": { - "offset": 2197780, + "offset": 2198800, "size": 800, }, "ToNumeric.js": { - "offset": 2198570, + "offset": 2199590, "size": 530, }, "ToObject.js": { - "offset": 2199100, + "offset": 2200110, "size": 130, }, "ToPrimitive.js": { - "offset": 2199220, + "offset": 2200240, "size": 290, }, "ToPropertyDescriptor.js": { - "offset": 2199500, + "offset": 2200520, "size": 1460, }, "ToPropertyKey.js": { - "offset": 2200960, + "offset": 2201970, "size": 400, }, "ToString.js": { - "offset": 2201360, + "offset": 2202370, "size": 390, }, "ToUint16.js": { - "offset": 2201750, + "offset": 2202760, "size": 590, }, "ToUint32.js": { - "offset": 2202330, + "offset": 2203350, "size": 600, }, "ToUint8.js": { - "offset": 2202930, + "offset": 2203940, "size": 460, }, "ToUint8Clamp.js": { - "offset": 2203380, + "offset": 2204400, "size": 610, }, "ToZeroPaddedDecimalString.js": { - "offset": 2203990, + "offset": 2205010, "size": 580, }, "TrimString.js": { - "offset": 2204560, + "offset": 2205580, "size": 760, }, "TypedArrayByteLength.js": { - "offset": 2205320, + "offset": 2206340, "size": 1340, }, "TypedArrayCreateFromConstructor.js": { - "offset": 2206660, + "offset": 2207680, "size": 1950, }, "TypedArrayCreateSameType.js": { - "offset": 2208600, + "offset": 2209620, "size": 1280, }, "TypedArrayElementSize.js": { - "offset": 2209880, + "offset": 2210900, "size": 720, }, "TypedArrayElementType.js": { - "offset": 2210600, + "offset": 2211610, "size": 650, }, "TypedArrayGetElement.js": { - "offset": 2211240, + "offset": 2212260, "size": 1240, }, "TypedArrayLength.js": { - "offset": 2212470, + "offset": 2213500, "size": 1700, }, "TypedArraySetElement.js": { - "offset": 2214170, + "offset": 2215190, "size": 1530, }, "TypedArraySpeciesCreate.js": { - "offset": 2215690, + "offset": 2216710, "size": 1420, }, "UTF16EncodeCodePoint.js": { - "offset": 2217110, + "offset": 2218130, "size": 710, }, "UTF16SurrogatePairToCodePoint.js": { - "offset": 2217820, + "offset": 2218840, "size": 780, }, "UnicodeEscape.js": { - "offset": 2218600, + "offset": 2219620, "size": 790, }, "UpdateModifiers.js": { - "offset": 2219380, + "offset": 2220400, "size": 2100, }, "ValidateAndApplyPropertyDescriptor.js": { - "offset": 2221470, + "offset": 2222490, "size": 5740, }, "ValidateAtomicAccess.js": { - "offset": 2227210, + "offset": 2228230, "size": 1330, }, "ValidateAtomicAccessOnIntegerTypedArray.js": { - "offset": 2228540, + "offset": 2229560, "size": 690, }, "ValidateIntegerTypedArray.js": { - "offset": 2229220, + "offset": 2230240, "size": 1300, }, "ValidateTypedArray.js": { - "offset": 2230510, + "offset": 2231530, "size": 1060, }, "WeakRefDeref.js": { - "offset": 2231570, + "offset": 2232590, "size": 570, }, "WeekDay.js": { - "offset": 2232130, + "offset": 2233150, "size": 210, }, "WordCharacters.js": { - "offset": 2232340, + "offset": 2233360, "size": 1620, }, "YearFromTime.js": { - "offset": 2233960, + "offset": 2234980, "size": 400, }, "abs.js": { - "offset": 2234360, + "offset": 2235380, "size": 220, }, "clamp.js": { - "offset": 2234570, + "offset": 2235590, "size": 510, }, "floor.js": { - "offset": 2235080, + "offset": 2236100, "size": 290, }, "max.js": { - "offset": 2235370, + "offset": 2236380, "size": 140, }, "min.js": { - "offset": 2235500, + "offset": 2236520, "size": 140, }, "modulo.js": { - "offset": 2235640, + "offset": 2236650, "size": 170, }, "msFromTime.js": { - "offset": 2235800, + "offset": 2236820, "size": 260, }, "substring.js": { - "offset": 2236060, + "offset": 2237070, "size": 640, }, "tables": { "files": { "typed-array-objects.js": { - "offset": 2236690, + "offset": 2237710, "size": 830, }, }, }, "truncate.js": { - "offset": 2237520, + "offset": 2238540, "size": 470, }, }, @@ -19488,601 +19480,601 @@ exports[`node_module collectors > pnpm max stack 2`] = ` "5": { "files": { "AbstractEqualityComparison.js": { - "offset": 2237980, + "offset": 2239000, "size": 1140, }, "AbstractRelationalComparison.js": { - "offset": 2239110, + "offset": 2240130, "size": 1580, }, "Canonicalize.js": { - "offset": 2240690, + "offset": 2241710, "size": 850, }, "CheckObjectCoercible.js": { - "offset": 2241530, + "offset": 2242550, "size": 300, }, "DateFromTime.js": { - "offset": 2241830, + "offset": 2242850, "size": 990, }, "Day.js": { - "offset": 2242820, + "offset": 2243840, "size": 240, }, "DayFromYear.js": { - "offset": 2243050, + "offset": 2244070, "size": 260, }, "DayWithinYear.js": { - "offset": 2243310, + "offset": 2244330, "size": 290, }, "DaysInYear.js": { - "offset": 2243590, + "offset": 2244610, "size": 310, }, "FromPropertyDescriptor.js": { - "offset": 2243900, + "offset": 2244920, "size": 1050, }, "HourFromTime.js": { - "offset": 2244950, + "offset": 2245970, "size": 390, }, "InLeapYear.js": { - "offset": 2245330, + "offset": 2246350, "size": 470, }, "IsAccessorDescriptor.js": { - "offset": 2245790, + "offset": 2246810, "size": 560, }, "IsCallable.js": { - "offset": 2246350, + "offset": 2247370, "size": 110, }, "IsDataDescriptor.js": { - "offset": 2246460, + "offset": 2247480, "size": 570, }, "IsGenericDescriptor.js": { - "offset": 2247020, + "offset": 2248040, "size": 630, }, "IsPropertyDescriptor.js": { - "offset": 2247640, + "offset": 2248660, "size": 320, }, "MakeDate.js": { - "offset": 2247950, + "offset": 2248970, "size": 340, }, "MakeDay.js": { - "offset": 2248290, + "offset": 2249310, "size": 930, }, "MakeTime.js": { - "offset": 2249210, + "offset": 2250230, "size": 710, }, "MinFromTime.js": { - "offset": 2249910, + "offset": 2250930, "size": 400, }, "MonthFromTime.js": { - "offset": 2250310, + "offset": 2251330, "size": 1130, }, "SameValue.js": { - "offset": 2251440, + "offset": 2252460, "size": 320, }, "SecFromTime.js": { - "offset": 2251750, + "offset": 2252770, "size": 410, }, "StrictEqualityComparison.js": { - "offset": 2252150, + "offset": 2253170, "size": 320, }, "TimeClip.js": { - "offset": 2252470, + "offset": 2253490, "size": 440, }, "TimeFromYear.js": { - "offset": 2252910, + "offset": 2253930, "size": 270, }, "TimeWithinDay.js": { - "offset": 2253170, + "offset": 2254190, "size": 250, }, "ToBoolean.js": { - "offset": 2253420, + "offset": 2254440, "size": 130, }, "ToInt32.js": { - "offset": 2253550, + "offset": 2254570, "size": 180, }, "ToInteger.js": { - "offset": 2253720, + "offset": 2254740, "size": 560, }, "ToNumber.js": { - "offset": 2254280, + "offset": 2255300, "size": 930, }, "ToObject.js": { - "offset": 2255210, + "offset": 2256230, "size": 120, }, "ToPrimitive.js": { - "offset": 2255330, + "offset": 2256350, "size": 120, }, "ToPropertyDescriptor.js": { - "offset": 2255440, + "offset": 2256460, "size": 1460, }, "ToString.js": { - "offset": 2256900, + "offset": 2257920, "size": 230, }, "ToUint16.js": { - "offset": 2257120, + "offset": 2258140, "size": 610, }, "ToUint32.js": { - "offset": 2257730, + "offset": 2258750, "size": 180, }, "Type.js": { - "offset": 2257900, + "offset": 2258920, "size": 460, }, "WeekDay.js": { - "offset": 2258360, + "offset": 2259380, "size": 210, }, "YearFromTime.js": { - "offset": 2258570, + "offset": 2259590, "size": 400, }, "abs.js": { - "offset": 2258960, + "offset": 2259980, "size": 170, }, "floor.js": { - "offset": 2259130, + "offset": 2260150, "size": 240, }, "modulo.js": { - "offset": 2259370, + "offset": 2260390, "size": 170, }, "msFromTime.js": { - "offset": 2259540, + "offset": 2260560, "size": 260, }, }, }, "GetIntrinsic.js": { - "offset": 2259790, + "offset": 2260810, "size": 90, }, "LICENSE": { - "offset": 2259880, + "offset": 2260900, "size": 1090, }, "es2015.js": { - "offset": 2260960, + "offset": 2261980, "size": 7050, }, "es2016.js": { - "offset": 2268000, + "offset": 2269020, "size": 7450, }, "es2017.js": { - "offset": 2275450, + "offset": 2276470, "size": 7900, }, "es2018.js": { - "offset": 2283350, + "offset": 2284370, "size": 8540, }, "es2019.js": { - "offset": 2291880, + "offset": 2292900, "size": 8790, }, "es2020.js": { - "offset": 2300670, + "offset": 2301690, "size": 10080, }, "es2021.js": { - "offset": 2310750, + "offset": 2311770, "size": 10950, }, "es2022.js": { - "offset": 2321700, + "offset": 2322720, "size": 11720, }, "es2023.js": { - "offset": 2333420, + "offset": 2334440, "size": 12450, }, "es2024.js": { - "offset": 2345860, + "offset": 2346880, "size": 13790, }, "es2025.js": { - "offset": 2359650, + "offset": 2360670, "size": 14850, }, "es5.js": { - "offset": 2374490, + "offset": 2375510, "size": 2080, }, "es6.js": { - "offset": 2376560, + "offset": 2377580, "size": 60, }, "es7.js": { - "offset": 2376610, + "offset": 2377630, "size": 60, }, "eslint.config.mjs": { - "offset": 2376670, + "offset": 2377690, "size": 2640, }, "helpers": { "files": { "CharSet.js": { - "offset": 2379300, + "offset": 2380320, "size": 3350, }, "DefineOwnProperty.js": { - "offset": 2382650, + "offset": 2383670, "size": 1500, }, "IsArray.js": { - "offset": 2384150, + "offset": 2385170, "size": 340, }, "OwnPropertyKeys.js": { - "offset": 2384490, + "offset": 2385510, "size": 90, }, "assertRecord.js": { - "offset": 2384570, + "offset": 2385590, "size": 1180, }, "assign.js": { - "offset": 2385750, + "offset": 2386770, "size": 470, }, "bytesAsFloat16.js": { - "offset": 2386210, + "offset": 2387230, "size": 1240, }, "bytesAsFloat32.js": { - "offset": 2387440, + "offset": 2388460, "size": 1170, }, "bytesAsFloat64.js": { - "offset": 2388610, + "offset": 2389630, "size": 1510, }, "bytesAsInteger.js": { - "offset": 2390120, + "offset": 2391140, "size": 1000, }, "callBind.js": { - "offset": 2391120, + "offset": 2392140, "size": 90, }, "callBound.js": { - "offset": 2391210, + "offset": 2392230, "size": 90, }, "caseFolding.json": { - "offset": 2391290, + "offset": 2392310, "size": 22350, }, "defaultEndianness.js": { - "offset": 2413640, + "offset": 2414660, "size": 610, }, "every.js": { - "offset": 2414250, + "offset": 2415270, "size": 200, }, "forEach.js": { - "offset": 2414440, + "offset": 2415460, "size": 190, }, "fractionToBinaryString.js": { - "offset": 2414630, + "offset": 2415650, "size": 850, }, "fromPropertyDescriptor.js": { - "offset": 2415470, + "offset": 2416490, "size": 580, }, "getInferredName.js": { - "offset": 2416050, + "offset": 2417070, "size": 120, }, "getIteratorMethod.js": { - "offset": 2416170, + "offset": 2417190, "size": 1200, }, "getOwnPropertyDescriptor.js": { - "offset": 2417360, + "offset": 2418380, "size": 80, }, "getProto.js": { - "offset": 2417440, + "offset": 2418460, "size": 90, }, "getSymbolDescription.js": { - "offset": 2417530, + "offset": 2418550, "size": 100, }, "intToBinaryString.js": { - "offset": 2417620, + "offset": 2418640, "size": 500, }, "integerToNBytes.js": { - "offset": 2418120, + "offset": 2419140, "size": 1090, }, "isAbstractClosure.js": { - "offset": 2419210, + "offset": 2420230, "size": 250, }, "isByteValue.js": { - "offset": 2419450, + "offset": 2420470, "size": 160, }, "isCodePoint.js": { - "offset": 2419610, + "offset": 2420630, "size": 150, }, "isFinite.js": { - "offset": 2419750, + "offset": 2420770, "size": 100, }, "isFullyPopulatedPropertyDescriptor.js": { - "offset": 2419850, + "offset": 2420870, "size": 330, }, "isInteger.js": { - "offset": 2420170, + "offset": 2421190, "size": 100, }, "isLeadingSurrogate.js": { - "offset": 2420270, + "offset": 2421290, "size": 160, }, "isLineTerminator.js": { - "offset": 2420430, + "offset": 2421450, "size": 190, }, "isNaN.js": { - "offset": 2420620, + "offset": 2421640, "size": 90, }, "isNegativeZero.js": { - "offset": 2420710, + "offset": 2421730, "size": 140, }, "isObject.js": { - "offset": 2420840, + "offset": 2421860, "size": 100, }, "isPrefixOf.js": { - "offset": 2420940, + "offset": 2421960, "size": 300, }, "isPrimitive.js": { - "offset": 2421230, + "offset": 2422250, "size": 160, }, "isPropertyKey.js": { - "offset": 2421380, + "offset": 2422400, "size": 140, }, "isSamePropertyDescriptor.js": { - "offset": 2421520, + "offset": 2422540, "size": 390, }, "isSameType.js": { - "offset": 2421910, + "offset": 2422930, "size": 250, }, "isStringOrHole.js": { - "offset": 2422160, + "offset": 2423180, "size": 340, }, "isStringOrUndefined.js": { - "offset": 2422500, + "offset": 2423520, "size": 140, }, "isTrailingSurrogate.js": { - "offset": 2422630, + "offset": 2423650, "size": 160, }, "maxSafeInteger.js": { - "offset": 2422790, + "offset": 2423810, "size": 120, }, "maxValue.js": { - "offset": 2422910, - "size": 80, + "offset": 2423930, + "size": 110, }, "mod.js": { - "offset": 2422980, + "offset": 2424030, "size": 100, }, "modBigInt.js": { - "offset": 2423080, + "offset": 2424130, "size": 190, }, "padTimeComponent.js": { - "offset": 2423260, + "offset": 2424310, "size": 220, }, "records": { "files": { "async-generator-request-record.js": { - "offset": 2423470, + "offset": 2424520, "size": 410, }, "data-view-with-buffer-witness-record.js": { - "offset": 2423880, + "offset": 2424930, "size": 540, }, "iterator-record-2023.js": { - "offset": 2424410, + "offset": 2425470, "size": 220, }, "iterator-record.js": { - "offset": 2424630, + "offset": 2425680, "size": 300, }, "match-record.js": { - "offset": 2424920, - "size": 560, + "offset": 2425980, + "size": 660, }, "promise-capability-record.js": { - "offset": 2425480, + "offset": 2426630, "size": 500, }, "property-descriptor.js": { - "offset": 2425980, + "offset": 2427120, "size": 870, }, "regexp-record.js": { - "offset": 2426850, + "offset": 2427990, "size": 850, }, "set-record.js": { - "offset": 2427700, + "offset": 2428840, "size": 590, }, "typed-array-with-buffer-witness-record.js": { - "offset": 2428280, + "offset": 2429430, "size": 550, }, }, }, "reduce.js": { - "offset": 2428830, + "offset": 2429970, "size": 180, }, "regexTester.js": { - "offset": 2429000, + "offset": 2430140, "size": 100, }, "setProto.js": { - "offset": 2429090, + "offset": 2430230, "size": 90, }, "sign.js": { - "offset": 2429170, + "offset": 2430320, "size": 100, }, "some.js": { - "offset": 2429270, + "offset": 2430410, "size": 200, }, "timeConstants.js": { - "offset": 2429460, + "offset": 2430600, "size": 450, }, "timeValue.js": { - "offset": 2429910, + "offset": 2431050, "size": 160, }, "typedArrayConstructors.js": { - "offset": 2430060, + "offset": 2431210, "size": 840, }, "valueToFloat16Bytes.js": { - "offset": 2430890, + "offset": 2432040, "size": 1780, }, "valueToFloat32Bytes.js": { - "offset": 2432670, + "offset": 2433810, "size": 1650, }, "valueToFloat64Bytes.js": { - "offset": 2434310, - "size": 2990, + "offset": 2435460, + "size": 3080, }, }, }, "index.js": { - "offset": 2437300, + "offset": 2438540, "size": 840, }, "operations": { "files": { "2015.js": { - "offset": 2438130, + "offset": 2439370, "size": 24060, }, "2016.js": { - "offset": 2462190, + "offset": 2463430, "size": 26550, }, "2017.js": { - "offset": 2488730, + "offset": 2489970, "size": 30900, }, "2018.js": { - "offset": 2519630, + "offset": 2520870, "size": 33500, }, "2019.js": { - "offset": 2553130, + "offset": 2554360, "size": 34390, }, "2020.js": { - "offset": 2587510, + "offset": 2588750, "size": 40870, }, "2021.js": { - "offset": 2628380, + "offset": 2629620, "size": 42900, }, "2022.js": { - "offset": 2671280, + "offset": 2672510, "size": 45950, }, "2023.js": { - "offset": 2717220, + "offset": 2718460, "size": 48240, }, "2024.js": { - "offset": 2765460, + "offset": 2766690, "size": 51780, }, "2025.js": { - "offset": 2817230, + "offset": 2818470, "size": 54150, }, "es5.js": { - "offset": 2871380, + "offset": 2872620, "size": 3220, }, }, }, "package.json": { - "offset": 2874590, + "offset": 2875830, "size": 4280, }, }, @@ -20090,23 +20082,23 @@ exports[`node_module collectors > pnpm max stack 2`] = ` "es-define-property": { "files": { ".nycrc": { - "offset": 2878870, + "offset": 2880100, "size": 140, }, "LICENSE": { - "offset": 2879010, + "offset": 2880240, "size": 1080, }, "index.js": { - "offset": 2880080, + "offset": 2881310, "size": 290, }, "package.json": { - "offset": 2880360, + "offset": 2881600, "size": 1340, }, "tsconfig.json": { - "offset": 2881700, + "offset": 2882940, "size": 140, }, }, @@ -20114,43 +20106,43 @@ exports[`node_module collectors > pnpm max stack 2`] = ` "es-errors": { "files": { "LICENSE": { - "offset": 2881840, + "offset": 2883080, "size": 1080, }, "eval.js": { - "offset": 2882910, + "offset": 2884150, "size": 80, }, "index.js": { - "offset": 2882990, + "offset": 2884220, "size": 70, }, "package.json": { - "offset": 2883050, + "offset": 2884290, "size": 1340, }, "range.js": { - "offset": 2884390, + "offset": 2885620, "size": 80, }, "ref.js": { - "offset": 2884460, + "offset": 2885700, "size": 80, }, "syntax.js": { - "offset": 2884540, + "offset": 2885780, "size": 80, }, "tsconfig.json": { - "offset": 2884620, + "offset": 2885860, "size": 3170, }, "type.js": { - "offset": 2887790, + "offset": 2889030, "size": 80, }, "uri.js": { - "offset": 2887870, + "offset": 2889100, "size": 80, }, }, @@ -20158,31 +20150,31 @@ exports[`node_module collectors > pnpm max stack 2`] = ` "es-object-atoms": { "files": { "LICENSE": { - "offset": 2887940, + "offset": 2889180, "size": 1080, }, "RequireObjectCoercible.js": { - "offset": 2889010, + "offset": 2890250, "size": 320, }, "ToObject.js": { - "offset": 2889320, + "offset": 2890560, "size": 250, }, "index.js": { - "offset": 2889570, + "offset": 2890810, "size": 70, }, "isObject.js": { - "offset": 2889640, + "offset": 2890880, "size": 170, }, "package.json": { - "offset": 2889800, + "offset": 2891040, "size": 1430, }, "tsconfig.json": { - "offset": 2891220, + "offset": 2892460, "size": 90, }, }, @@ -20190,23 +20182,23 @@ exports[`node_module collectors > pnpm max stack 2`] = ` "es-set-tostringtag": { "files": { ".nycrc": { - "offset": 2891310, + "offset": 2892540, "size": 140, }, "LICENSE": { - "offset": 2891440, + "offset": 2892680, "size": 1080, }, "index.js": { - "offset": 2892520, + "offset": 2893750, "size": 1220, }, "package.json": { - "offset": 2893730, + "offset": 2894970, "size": 1540, }, "tsconfig.json": { - "offset": 2895260, + "offset": 2896500, "size": 120, }, }, @@ -20214,51 +20206,51 @@ exports[`node_module collectors > pnpm max stack 2`] = ` "es-to-primitive": { "files": { ".editorconfig": { - "offset": 2895380, + "offset": 2896620, "size": 290, }, ".eslintignore": { - "offset": 2895670, + "offset": 2896900, "size": 10, }, ".nycrc": { - "offset": 2895680, + "offset": 2896910, "size": 140, }, "LICENSE": { - "offset": 2895810, + "offset": 2897050, "size": 1090, }, "es2015.js": { - "offset": 2896900, + "offset": 2898130, "size": 2710, }, "es5.js": { - "offset": 2899600, + "offset": 2900840, "size": 1720, }, "es6.js": { - "offset": 2901320, + "offset": 2902560, "size": 90, }, "helpers": { "files": { "isPrimitive.js": { - "offset": 2901410, + "offset": 2902640, "size": 260, }, }, }, "index.js": { - "offset": 2901670, + "offset": 2902900, "size": 570, }, "package.json": { - "offset": 2902230, + "offset": 2903470, "size": 1720, }, "tsconfig.json": { - "offset": 2903950, + "offset": 2905190, "size": 120, }, }, @@ -20266,15 +20258,15 @@ exports[`node_module collectors > pnpm max stack 2`] = ` "escape-string-regexp": { "files": { "index.js": { - "offset": 2904070, + "offset": 2905310, "size": 230, }, "license": { - "offset": 2904300, + "offset": 2905530, "size": 1120, }, "package.json": { - "offset": 2905410, + "offset": 2906650, "size": 590, }, }, @@ -20282,27 +20274,27 @@ exports[`node_module collectors > pnpm max stack 2`] = ` "for-each": { "files": { ".editorconfig": { - "offset": 2906000, + "offset": 2907240, "size": 290, }, ".nycrc": { - "offset": 2906280, + "offset": 2907520, "size": 130, }, "LICENSE": { - "offset": 2906410, + "offset": 2907650, "size": 1080, }, "index.js": { - "offset": 2907490, + "offset": 2908730, "size": 2380, }, "package.json": { - "offset": 2909860, + "offset": 2911100, "size": 1150, }, "tsconfig.json": { - "offset": 2911010, + "offset": 2912250, "size": 100, }, }, @@ -20310,23 +20302,23 @@ exports[`node_module collectors > pnpm max stack 2`] = ` "function-bind": { "files": { ".nycrc": { - "offset": 2911100, + "offset": 2912340, "size": 220, }, "LICENSE": { - "offset": 2911320, + "offset": 2912560, "size": 1060, }, "implementation.js": { - "offset": 2912370, + "offset": 2913610, "size": 2050, }, "index.js": { - "offset": 2914410, + "offset": 2915650, "size": 130, }, "package.json": { - "offset": 2914540, + "offset": 2915780, "size": 1330, }, }, @@ -20334,47 +20326,47 @@ exports[`node_module collectors > pnpm max stack 2`] = ` "function.prototype.name": { "files": { ".editorconfig": { - "offset": 2915870, + "offset": 2917110, "size": 340, }, ".nycrc": { - "offset": 2916210, + "offset": 2917440, "size": 140, }, "LICENSE": { - "offset": 2916340, + "offset": 2917580, "size": 1090, }, "auto.js": { - "offset": 2917430, + "offset": 2918660, "size": 40, }, "helpers": { "files": { "functionsHaveNames.js": { - "offset": 2917460, + "offset": 2918700, "size": 100, }, }, }, "implementation.js": { - "offset": 2917560, + "offset": 2918800, "size": 2050, }, "index.js": { - "offset": 2919610, + "offset": 2920850, "size": 380, }, "package.json": { - "offset": 2919980, + "offset": 2921220, "size": 1930, }, "polyfill.js": { - "offset": 2921900, + "offset": 2923140, "size": 140, }, "shim.js": { - "offset": 2922040, + "offset": 2923280, "size": 920, }, }, @@ -20382,23 +20374,23 @@ exports[`node_module collectors > pnpm max stack 2`] = ` "functions-have-names": { "files": { ".editorconfig": { - "offset": 2922950, + "offset": 2924190, "size": 290, }, ".nycrc": { - "offset": 2923240, + "offset": 2924480, "size": 140, }, "LICENSE": { - "offset": 2923380, + "offset": 2924620, "size": 1080, }, "index.js": { - "offset": 2924450, + "offset": 2925690, "size": 780, }, "package.json": { - "offset": 2925220, + "offset": 2926460, "size": 920, }, }, @@ -20406,39 +20398,39 @@ exports[`node_module collectors > pnpm max stack 2`] = ` "generator-function": { "files": { ".nycrc": { - "offset": 2926140, + "offset": 2927370, "size": 140, }, "LICENSE.md": { - "offset": 2926270, + "offset": 2927510, "size": 1070, }, "index.d.mts": { - "offset": 2927340, + "offset": 2928580, "size": 100, }, "index.js": { - "offset": 2927440, + "offset": 2928680, "size": 230, }, "index.mjs": { - "offset": 2927670, + "offset": 2928910, "size": 140, }, "legacy.js": { - "offset": 2927800, + "offset": 2929040, "size": 380, }, "package.json": { - "offset": 2928180, + "offset": 2929420, "size": 1650, }, "require.mjs": { - "offset": 2929830, + "offset": 2931060, "size": 140, }, "tsconfig.json": { - "offset": 2929970, + "offset": 2931200, "size": 120, }, }, @@ -20446,19 +20438,19 @@ exports[`node_module collectors > pnpm max stack 2`] = ` "get-intrinsic": { "files": { ".nycrc": { - "offset": 2930080, + "offset": 2931320, "size": 140, }, "LICENSE": { - "offset": 2930220, + "offset": 2931460, "size": 1080, }, "index.js": { - "offset": 2931290, + "offset": 2932530, "size": 14440, }, "package.json": { - "offset": 2945730, + "offset": 2946970, "size": 1870, }, }, @@ -20466,31 +20458,31 @@ exports[`node_module collectors > pnpm max stack 2`] = ` "get-proto": { "files": { ".nycrc": { - "offset": 2947600, + "offset": 2948830, "size": 140, }, "LICENSE": { - "offset": 2947730, + "offset": 2948970, "size": 1080, }, "Object.getPrototypeOf.js": { - "offset": 2948810, + "offset": 2950040, "size": 160, }, "Reflect.getPrototypeOf.js": { - "offset": 2948960, + "offset": 2950200, "size": 150, }, "index.js": { - "offset": 2949110, + "offset": 2950350, "size": 830, }, "package.json": { - "offset": 2949930, + "offset": 2951170, "size": 1430, }, "tsconfig.json": { - "offset": 2951360, + "offset": 2952590, "size": 120, }, }, @@ -20498,27 +20490,27 @@ exports[`node_module collectors > pnpm max stack 2`] = ` "get-symbol-description": { "files": { ".nycrc": { - "offset": 2951480, + "offset": 2952710, "size": 140, }, "LICENSE": { - "offset": 2951610, + "offset": 2952850, "size": 1070, }, "getInferredName.js": { - "offset": 2952680, + "offset": 2953920, "size": 480, }, "index.js": { - "offset": 2953160, + "offset": 2954390, "size": 1570, }, "package.json": { - "offset": 2954720, + "offset": 2955960, "size": 1760, }, "tsconfig.json": { - "offset": 2956480, + "offset": 2957710, "size": 120, }, }, @@ -20526,39 +20518,39 @@ exports[`node_module collectors > pnpm max stack 2`] = ` "globalthis": { "files": { ".nycrc": { - "offset": 2956590, + "offset": 2957830, "size": 150, }, "LICENSE": { - "offset": 2956740, + "offset": 2957980, "size": 1090, }, "auto.js": { - "offset": 2957820, + "offset": 2959060, "size": 40, }, "implementation.browser.js": { - "offset": 2957860, + "offset": 2959100, "size": 260, }, "implementation.js": { - "offset": 2958110, + "offset": 2959350, "size": 40, }, "index.js": { - "offset": 2958150, + "offset": 2959390, "size": 410, }, "package.json": { - "offset": 2958560, + "offset": 2959800, "size": 1680, }, "polyfill.js": { - "offset": 2960240, + "offset": 2961470, "size": 260, }, "shim.js": { - "offset": 2960490, + "offset": 2961720, "size": 720, }, }, @@ -20566,23 +20558,23 @@ exports[`node_module collectors > pnpm max stack 2`] = ` "gopd": { "files": { "LICENSE": { - "offset": 2961200, + "offset": 2962440, "size": 1080, }, "gOPD.js": { - "offset": 2962270, + "offset": 2963510, "size": 100, }, "index.js": { - "offset": 2962370, + "offset": 2963610, "size": 210, }, "package.json": { - "offset": 2962580, + "offset": 2963810, "size": 1310, }, "tsconfig.json": { - "offset": 2963890, + "offset": 2965120, "size": 120, }, }, @@ -20590,27 +20582,27 @@ exports[`node_module collectors > pnpm max stack 2`] = ` "graceful-fs": { "files": { "LICENSE": { - "offset": 2964000, + "offset": 2965240, "size": 800, }, "clone.js": { - "offset": 2964790, + "offset": 2966030, "size": 500, }, "graceful-fs.js": { - "offset": 2965290, + "offset": 2966530, "size": 12680, }, "legacy-streams.js": { - "offset": 2977970, + "offset": 2979210, "size": 2660, }, "package.json": { - "offset": 2980620, + "offset": 2981860, "size": 600, }, "polyfills.js": { - "offset": 2981220, + "offset": 2982460, "size": 10150, }, }, @@ -20618,23 +20610,23 @@ exports[`node_module collectors > pnpm max stack 2`] = ` "has-bigints": { "files": { ".nycrc": { - "offset": 2991360, + "offset": 2992600, "size": 140, }, "LICENSE": { - "offset": 2991500, + "offset": 2992740, "size": 1080, }, "index.js": { - "offset": 2992570, + "offset": 2993810, "size": 380, }, "package.json": { - "offset": 2992950, + "offset": 2994190, "size": 1170, }, "tsconfig.json": { - "offset": 2994110, + "offset": 2995350, "size": 130, }, }, @@ -20642,15 +20634,15 @@ exports[`node_module collectors > pnpm max stack 2`] = ` "has-flag": { "files": { "index.js": { - "offset": 2994240, + "offset": 2995470, "size": 320, }, "license": { - "offset": 2994560, + "offset": 2995790, "size": 1110, }, "package.json": { - "offset": 2995670, + "offset": 2996900, "size": 410, }, }, @@ -20658,19 +20650,19 @@ exports[`node_module collectors > pnpm max stack 2`] = ` "has-property-descriptors": { "files": { ".nycrc": { - "offset": 2996070, + "offset": 2997310, "size": 140, }, "LICENSE": { - "offset": 2996210, + "offset": 2997450, "size": 1070, }, "index.js": { - "offset": 2997280, + "offset": 2998520, "size": 590, }, "package.json": { - "offset": 2997870, + "offset": 2999100, "size": 1330, }, }, @@ -20678,27 +20670,27 @@ exports[`node_module collectors > pnpm max stack 2`] = ` "has-proto": { "files": { "LICENSE": { - "offset": 2999200, + "offset": 3000430, "size": 1070, }, "accessor.js": { - "offset": 3000260, + "offset": 3001500, "size": 550, }, "index.js": { - "offset": 3000810, + "offset": 3002050, "size": 300, }, "mutator.js": { - "offset": 3001110, + "offset": 3002350, "size": 540, }, "package.json": { - "offset": 3001640, + "offset": 3002880, "size": 1610, }, "tsconfig.json": { - "offset": 3003250, + "offset": 3004490, "size": 130, }, }, @@ -20706,27 +20698,27 @@ exports[`node_module collectors > pnpm max stack 2`] = ` "has-symbols": { "files": { ".nycrc": { - "offset": 3003380, + "offset": 3004620, "size": 140, }, "LICENSE": { - "offset": 3003520, + "offset": 3004760, "size": 1080, }, "index.js": { - "offset": 3004590, + "offset": 3005830, "size": 450, }, "package.json": { - "offset": 3005040, + "offset": 3006280, "size": 1800, }, "shams.js": { - "offset": 3006830, + "offset": 3008070, "size": 1930, }, "tsconfig.json": { - "offset": 3008750, + "offset": 3009990, "size": 150, }, }, @@ -20734,27 +20726,27 @@ exports[`node_module collectors > pnpm max stack 2`] = ` "has-tostringtag": { "files": { ".nycrc": { - "offset": 3008900, + "offset": 3010130, "size": 220, }, "LICENSE": { - "offset": 3009110, + "offset": 3010350, "size": 1070, }, "index.js": { - "offset": 3010180, + "offset": 3011420, "size": 200, }, "package.json": { - "offset": 3010370, + "offset": 3011610, "size": 1700, }, "shams.js": { - "offset": 3012070, + "offset": 3013310, "size": 190, }, "tsconfig.json": { - "offset": 3012260, + "offset": 3013500, "size": 3620, }, }, @@ -20762,23 +20754,23 @@ exports[`node_module collectors > pnpm max stack 2`] = ` "hasown": { "files": { ".nycrc": { - "offset": 3015870, + "offset": 3017110, "size": 220, }, "LICENSE": { - "offset": 3016090, + "offset": 3017330, "size": 1090, }, "index.js": { - "offset": 3017170, + "offset": 3018410, "size": 210, }, "package.json": { - "offset": 3017380, + "offset": 3018610, "size": 1480, }, "tsconfig.json": { - "offset": 3018850, + "offset": 3020090, "size": 80, }, }, @@ -20786,23 +20778,23 @@ exports[`node_module collectors > pnpm max stack 2`] = ` "hosted-git-info": { "files": { "LICENSE": { - "offset": 3018920, + "offset": 3020160, "size": 740, }, "git-host-info.js": { - "offset": 3019660, + "offset": 3020890, "size": 3790, }, "git-host.js": { - "offset": 3023450, + "offset": 3024680, "size": 4640, }, "index.js": { - "offset": 3028080, + "offset": 3029320, "size": 5150, }, "package.json": { - "offset": 3033230, + "offset": 3034470, "size": 620, }, }, @@ -20810,31 +20802,31 @@ exports[`node_module collectors > pnpm max stack 2`] = ` "internal-slot": { "files": { ".attw.json": { - "offset": 3033850, + "offset": 3035080, "size": 50, }, ".editorconfig": { - "offset": 3033890, + "offset": 3035130, "size": 290, }, ".nycrc": { - "offset": 3034180, + "offset": 3035410, "size": 140, }, "LICENSE": { - "offset": 3034320, + "offset": 3035550, "size": 1080, }, "index.js": { - "offset": 3035390, + "offset": 3036620, "size": 2050, }, "package.json": { - "offset": 3037430, + "offset": 3038670, "size": 1260, }, "tsconfig.json": { - "offset": 3038690, + "offset": 3039920, "size": 120, }, }, @@ -20842,23 +20834,23 @@ exports[`node_module collectors > pnpm max stack 2`] = ` "is-array-buffer": { "files": { ".nycrc": { - "offset": 3038810, + "offset": 3040040, "size": 140, }, "LICENSE": { - "offset": 3038940, + "offset": 3040180, "size": 1090, }, "index.js": { - "offset": 3040030, + "offset": 3041260, "size": 1410, }, "package.json": { - "offset": 3041430, + "offset": 3042670, "size": 1720, }, "tsconfig.json": { - "offset": 3043150, + "offset": 3044390, "size": 130, }, }, @@ -20866,23 +20858,23 @@ exports[`node_module collectors > pnpm max stack 2`] = ` "is-arrayish": { "files": { ".editorconfig": { - "offset": 3043280, + "offset": 3044520, "size": 270, }, ".istanbul.yml": { - "offset": 3043540, + "offset": 3044780, "size": 60, }, "LICENSE": { - "offset": 3043600, + "offset": 3044840, "size": 1080, }, "index.js": { - "offset": 3044680, + "offset": 3045920, "size": 210, }, "package.json": { - "offset": 3044880, + "offset": 3046120, "size": 470, }, }, @@ -20890,23 +20882,23 @@ exports[`node_module collectors > pnpm max stack 2`] = ` "is-async-function": { "files": { ".nycrc": { - "offset": 3045340, + "offset": 3046580, "size": 140, }, "LICENSE": { - "offset": 3045480, + "offset": 3046720, "size": 1090, }, "index.js": { - "offset": 3046560, + "offset": 3047800, "size": 830, }, "package.json": { - "offset": 3047390, + "offset": 3048630, "size": 2060, }, "tsconfig.json": { - "offset": 3049450, + "offset": 3050690, "size": 160, }, }, @@ -20914,23 +20906,23 @@ exports[`node_module collectors > pnpm max stack 2`] = ` "is-bigint": { "files": { ".nycrc": { - "offset": 3049610, + "offset": 3050840, "size": 140, }, "LICENSE": { - "offset": 3049750, + "offset": 3050980, "size": 1080, }, "index.js": { - "offset": 3050820, + "offset": 3052050, "size": 850, }, "package.json": { - "offset": 3051660, + "offset": 3052900, "size": 1400, }, "tsconfig.json": { - "offset": 3053060, + "offset": 3054290, "size": 120, }, }, @@ -20938,27 +20930,27 @@ exports[`node_module collectors > pnpm max stack 2`] = ` "is-boolean-object": { "files": { ".editorconfig": { - "offset": 3053170, + "offset": 3054410, "size": 360, }, ".nycrc": { - "offset": 3053520, + "offset": 3054760, "size": 160, }, "LICENSE": { - "offset": 3053680, + "offset": 3054920, "size": 1090, }, "index.js": { - "offset": 3054770, + "offset": 3056000, "size": 720, }, "package.json": { - "offset": 3055480, + "offset": 3056710, "size": 1840, }, "tsconfig.json": { - "offset": 3057320, + "offset": 3058550, "size": 120, }, }, @@ -20966,23 +20958,23 @@ exports[`node_module collectors > pnpm max stack 2`] = ` "is-callable": { "files": { ".editorconfig": { - "offset": 3057430, + "offset": 3058670, "size": 460, }, ".nycrc": { - "offset": 3057890, + "offset": 3059120, "size": 140, }, "LICENSE": { - "offset": 3058030, + "offset": 3059260, "size": 1090, }, "index.js": { - "offset": 3059110, + "offset": 3060340, "size": 3230, }, "package.json": { - "offset": 3062330, + "offset": 3063570, "size": 1840, }, }, @@ -20990,23 +20982,23 @@ exports[`node_module collectors > pnpm max stack 2`] = ` "is-core-module": { "files": { ".nycrc": { - "offset": 3064170, + "offset": 3065410, "size": 140, }, "LICENSE": { - "offset": 3064310, + "offset": 3065540, "size": 1080, }, "core.json": { - "offset": 3065390, + "offset": 3066620, "size": 5960, }, "index.js": { - "offset": 3071340, + "offset": 3072580, "size": 1770, }, "package.json": { - "offset": 3073100, + "offset": 3074340, "size": 1240, }, }, @@ -21014,27 +21006,27 @@ exports[`node_module collectors > pnpm max stack 2`] = ` "is-data-view": { "files": { ".editorconfig": { - "offset": 3074340, + "offset": 3075580, "size": 290, }, ".nycrc": { - "offset": 3074630, + "offset": 3075860, "size": 140, }, "LICENSE": { - "offset": 3074770, + "offset": 3076000, "size": 1070, }, "index.js": { - "offset": 3075830, + "offset": 3077070, "size": 850, }, "package.json": { - "offset": 3076680, + "offset": 3077920, "size": 2070, }, "tsconfig.json": { - "offset": 3078740, + "offset": 3079980, "size": 120, }, }, @@ -21042,27 +21034,27 @@ exports[`node_module collectors > pnpm max stack 2`] = ` "is-date-object": { "files": { ".editorconfig": { - "offset": 3078860, + "offset": 3080090, "size": 290, }, ".nycrc": { - "offset": 3079140, + "offset": 3080380, "size": 160, }, "LICENSE": { - "offset": 3079300, + "offset": 3080540, "size": 1090, }, "index.js": { - "offset": 3080380, + "offset": 3081620, "size": 680, }, "package.json": { - "offset": 3081060, + "offset": 3082290, "size": 1900, }, "tsconfig.json": { - "offset": 3082950, + "offset": 3084190, "size": 80, }, }, @@ -21070,23 +21062,23 @@ exports[`node_module collectors > pnpm max stack 2`] = ` "is-finalizationregistry": { "files": { ".nycrc": { - "offset": 3083020, + "offset": 3084260, "size": 140, }, "LICENSE": { - "offset": 3083160, + "offset": 3084400, "size": 1070, }, "index.js": { - "offset": 3084230, + "offset": 3085470, "size": 830, }, "package.json": { - "offset": 3085050, + "offset": 3086290, "size": 1590, }, "tsconfig.json": { - "offset": 3086640, + "offset": 3087870, "size": 130, }, }, @@ -21094,27 +21086,27 @@ exports[`node_module collectors > pnpm max stack 2`] = ` "is-generator-function": { "files": { ".nvmrc": { - "offset": 3086760, + "offset": 3088000, "size": 10, }, ".nycrc": { - "offset": 3086760, + "offset": 3088000, "size": 140, }, "LICENSE": { - "offset": 3086900, + "offset": 3088140, "size": 1090, }, "index.js": { - "offset": 3087980, + "offset": 3089220, "size": 860, }, "package.json": { - "offset": 3088840, + "offset": 3090080, "size": 1950, }, "tsconfig.json": { - "offset": 3090790, + "offset": 3092030, "size": 130, }, }, @@ -21122,27 +21114,27 @@ exports[`node_module collectors > pnpm max stack 2`] = ` "is-map": { "files": { ".editorconfig": { - "offset": 3090920, + "offset": 3092160, "size": 240, }, ".nycrc": { - "offset": 3091150, + "offset": 3092390, "size": 140, }, "LICENSE": { - "offset": 3091290, + "offset": 3092530, "size": 1070, }, "index.js": { - "offset": 3092360, + "offset": 3093590, "size": 1080, }, "package.json": { - "offset": 3093430, + "offset": 3094670, "size": 1410, }, "tsconfig.json": { - "offset": 3094840, + "offset": 3096080, "size": 3620, }, }, @@ -21150,27 +21142,27 @@ exports[`node_module collectors > pnpm max stack 2`] = ` "is-negative-zero": { "files": { ".editorconfig": { - "offset": 3098450, + "offset": 3099690, "size": 130, }, ".nycrc": { - "offset": 3098580, + "offset": 3099820, "size": 140, }, "LICENSE": { - "offset": 3098720, + "offset": 3099960, "size": 1090, }, "index.js": { - "offset": 3099800, + "offset": 3101040, "size": 150, }, "package.json": { - "offset": 3099950, + "offset": 3101190, "size": 1600, }, "tsconfig.json": { - "offset": 3101540, + "offset": 3102780, "size": 3620, }, }, @@ -21178,27 +21170,27 @@ exports[`node_module collectors > pnpm max stack 2`] = ` "is-number-object": { "files": { ".editorconfig": { - "offset": 3105150, + "offset": 3106390, "size": 330, }, ".nycrc": { - "offset": 3105480, + "offset": 3106710, "size": 160, }, "LICENSE": { - "offset": 3105640, + "offset": 3106870, "size": 1090, }, "index.js": { - "offset": 3106720, + "offset": 3107950, "size": 700, }, "package.json": { - "offset": 3107420, + "offset": 3108650, "size": 1520, }, "tsconfig.json": { - "offset": 3108940, + "offset": 3110170, "size": 120, }, }, @@ -21206,27 +21198,27 @@ exports[`node_module collectors > pnpm max stack 2`] = ` "is-regex": { "files": { ".editorconfig": { - "offset": 3109050, + "offset": 3110290, "size": 330, }, ".nycrc": { - "offset": 3109370, + "offset": 3110610, "size": 160, }, "LICENSE": { - "offset": 3109530, + "offset": 3110770, "size": 1090, }, "index.js": { - "offset": 3110610, + "offset": 3111850, "size": 2230, }, "package.json": { - "offset": 3112830, + "offset": 3114070, "size": 1920, }, "tsconfig.json": { - "offset": 3114750, + "offset": 3115990, "size": 120, }, }, @@ -21234,27 +21226,27 @@ exports[`node_module collectors > pnpm max stack 2`] = ` "is-set": { "files": { ".editorconfig": { - "offset": 3114860, + "offset": 3116100, "size": 240, }, ".nycrc": { - "offset": 3115090, + "offset": 3116330, "size": 140, }, "LICENSE": { - "offset": 3115230, + "offset": 3116470, "size": 1070, }, "index.js": { - "offset": 3116300, + "offset": 3117540, "size": 1070, }, "package.json": { - "offset": 3117360, + "offset": 3118600, "size": 1300, }, "tsconfig.json": { - "offset": 3118650, + "offset": 3119890, "size": 3620, }, }, @@ -21262,23 +21254,23 @@ exports[`node_module collectors > pnpm max stack 2`] = ` "is-shared-array-buffer": { "files": { ".nycrc": { - "offset": 3122270, + "offset": 3123500, "size": 140, }, "LICENSE": { - "offset": 3122400, + "offset": 3123640, "size": 1070, }, "index.js": { - "offset": 3123470, + "offset": 3124710, "size": 680, }, "package.json": { - "offset": 3124140, + "offset": 3125380, "size": 1700, }, "tsconfig.json": { - "offset": 3125840, + "offset": 3127080, "size": 120, }, }, @@ -21286,23 +21278,23 @@ exports[`node_module collectors > pnpm max stack 2`] = ` "is-string": { "files": { ".nycrc": { - "offset": 3125960, + "offset": 3127190, "size": 160, }, "LICENSE": { - "offset": 3126120, + "offset": 3127350, "size": 1090, }, "index.js": { - "offset": 3127200, + "offset": 3128430, "size": 1060, }, "package.json": { - "offset": 3128250, + "offset": 3129490, "size": 1780, }, "tsconfig.json": { - "offset": 3130020, + "offset": 3131260, "size": 130, }, }, @@ -21310,27 +21302,27 @@ exports[`node_module collectors > pnpm max stack 2`] = ` "is-symbol": { "files": { ".editorconfig": { - "offset": 3130150, + "offset": 3131380, "size": 280, }, ".nycrc": { - "offset": 3130420, + "offset": 3131660, "size": 140, }, "LICENSE": { - "offset": 3130560, + "offset": 3131800, "size": 1090, }, "index.js": { - "offset": 3131640, + "offset": 3132880, "size": 1030, }, "package.json": { - "offset": 3132670, + "offset": 3133910, "size": 1850, }, "tsconfig.json": { - "offset": 3134520, + "offset": 3135760, "size": 120, }, }, @@ -21338,27 +21330,27 @@ exports[`node_module collectors > pnpm max stack 2`] = ` "is-typed-array": { "files": { ".editorconfig": { - "offset": 3134630, + "offset": 3135870, "size": 290, }, ".nycrc": { - "offset": 3134920, + "offset": 3136160, "size": 140, }, "LICENSE": { - "offset": 3135060, + "offset": 3136290, "size": 1090, }, "index.js": { - "offset": 3136140, + "offset": 3137380, "size": 180, }, "package.json": { - "offset": 3136320, + "offset": 3137560, "size": 2310, }, "tsconfig.json": { - "offset": 3138630, + "offset": 3139860, "size": 70, }, }, @@ -21366,27 +21358,27 @@ exports[`node_module collectors > pnpm max stack 2`] = ` "is-weakmap": { "files": { ".editorconfig": { - "offset": 3138690, + "offset": 3139930, "size": 240, }, ".nycrc": { - "offset": 3138930, + "offset": 3140160, "size": 140, }, "LICENSE": { - "offset": 3139060, + "offset": 3140300, "size": 1070, }, "index.js": { - "offset": 3140130, + "offset": 3141370, "size": 1160, }, "package.json": { - "offset": 3141290, + "offset": 3142530, "size": 1410, }, "tsconfig.json": { - "offset": 3142700, + "offset": 3143930, "size": 3620, }, }, @@ -21394,23 +21386,23 @@ exports[`node_module collectors > pnpm max stack 2`] = ` "is-weakref": { "files": { ".nycrc": { - "offset": 3146310, + "offset": 3147550, "size": 140, }, "LICENSE": { - "offset": 3146450, + "offset": 3147680, "size": 1070, }, "index.js": { - "offset": 3147510, + "offset": 3148750, "size": 600, }, "package.json": { - "offset": 3148110, + "offset": 3149350, "size": 1510, }, "tsconfig.json": { - "offset": 3149620, + "offset": 3150860, "size": 130, }, }, @@ -21418,27 +21410,27 @@ exports[`node_module collectors > pnpm max stack 2`] = ` "is-weakset": { "files": { ".editorconfig": { - "offset": 3149740, + "offset": 3150980, "size": 230, }, ".nycrc": { - "offset": 3149970, + "offset": 3151200, "size": 140, }, "LICENSE": { - "offset": 3150100, + "offset": 3151340, "size": 1070, }, "index.js": { - "offset": 3151170, + "offset": 3152410, "size": 1260, }, "package.json": { - "offset": 3152430, + "offset": 3153660, "size": 1580, }, "tsconfig.json": { - "offset": 3154000, + "offset": 3155230, "size": 120, }, }, @@ -21446,15 +21438,15 @@ exports[`node_module collectors > pnpm max stack 2`] = ` "isarray": { "files": { "LICENSE": { - "offset": 3154110, + "offset": 3155350, "size": 1100, }, "index.js": { - "offset": 3155210, + "offset": 3156450, "size": 140, }, "package.json": { - "offset": 3155340, + "offset": 3156580, "size": 880, }, }, @@ -21462,23 +21454,23 @@ exports[`node_module collectors > pnpm max stack 2`] = ` "isexe": { "files": { "LICENSE": { - "offset": 3156220, + "offset": 3157460, "size": 770, }, "index.js": { - "offset": 3156990, + "offset": 3158220, "size": 1200, }, "mode.js": { - "offset": 3158180, + "offset": 3159420, "size": 910, }, "package.json": { - "offset": 3159090, + "offset": 3160320, "size": 520, }, "windows.js": { - "offset": 3159600, + "offset": 3160840, "size": 890, }, }, @@ -21486,15 +21478,15 @@ exports[`node_module collectors > pnpm max stack 2`] = ` "json-parse-better-errors": { "files": { "LICENSE.md": { - "offset": 3160490, + "offset": 3161730, "size": 1060, }, "index.js": { - "offset": 3161540, + "offset": 3162780, "size": 1090, }, "package.json": { - "offset": 3162630, + "offset": 3163860, "size": 680, }, }, @@ -21502,15 +21494,15 @@ exports[`node_module collectors > pnpm max stack 2`] = ` "load-json-file": { "files": { "index.js": { - "offset": 3163300, + "offset": 3164540, "size": 430, }, "license": { - "offset": 3163720, + "offset": 3164960, "size": 1120, }, "package.json": { - "offset": 3164840, + "offset": 3166080, "size": 550, }, }, @@ -21518,79 +21510,79 @@ exports[`node_module collectors > pnpm max stack 2`] = ` "math-intrinsics": { "files": { "LICENSE": { - "offset": 3165380, + "offset": 3166620, "size": 1080, }, "abs.js": { - "offset": 3166460, + "offset": 3167690, "size": 80, }, "constants": { "files": { "maxArrayLength.js": { - "offset": 3166530, + "offset": 3167770, "size": 110, }, "maxSafeInteger.js": { - "offset": 3166640, + "offset": 3167880, "size": 240, }, "maxValue.js": { - "offset": 3166870, + "offset": 3168110, "size": 200, }, }, }, "floor.js": { - "offset": 3167070, + "offset": 3168300, "size": 80, }, "isFinite.js": { - "offset": 3167140, + "offset": 3168380, "size": 270, }, "isInteger.js": { - "offset": 3167410, + "offset": 3168640, "size": 410, }, "isNaN.js": { - "offset": 3167820, + "offset": 3169050, "size": 130, }, "isNegativeZero.js": { - "offset": 3167940, + "offset": 3169170, "size": 150, }, "max.js": { - "offset": 3168080, + "offset": 3169320, "size": 80, }, "min.js": { - "offset": 3168150, + "offset": 3169390, "size": 80, }, "mod.js": { - "offset": 3168230, + "offset": 3169460, "size": 220, }, "package.json": { - "offset": 3168440, + "offset": 3169680, "size": 1940, }, "pow.js": { - "offset": 3170380, + "offset": 3171610, "size": 80, }, "round.js": { - "offset": 3170450, + "offset": 3171690, "size": 80, }, "sign.js": { - "offset": 3170530, + "offset": 3171760, "size": 220, }, "tsconfig.json": { - "offset": 3170740, + "offset": 3171980, "size": 40, }, }, @@ -21598,19 +21590,19 @@ exports[`node_module collectors > pnpm max stack 2`] = ` "memorystream": { "files": { "Gruntfile.js": { - "offset": 3170780, + "offset": 3172010, "size": 550, }, "LICENSE": { - "offset": 3171330, + "offset": 3172560, "size": 1060, }, "index.js": { - "offset": 3172380, + "offset": 3173620, "size": 6130, }, "package.json": { - "offset": 3178510, + "offset": 3179750, "size": 750, }, }, @@ -21618,15 +21610,15 @@ exports[`node_module collectors > pnpm max stack 2`] = ` "minimatch": { "files": { "LICENSE": { - "offset": 3179260, + "offset": 3180490, "size": 770, }, "minimatch.js": { - "offset": 3180020, + "offset": 3181260, "size": 27460, }, "package.json": { - "offset": 3207480, + "offset": 3208720, "size": 530, }, }, @@ -21634,17 +21626,17 @@ exports[`node_module collectors > pnpm max stack 2`] = ` "nice-try": { "files": { "LICENSE": { - "offset": 3208010, + "offset": 3209250, "size": 1080, }, "package.json": { - "offset": 3209090, + "offset": 3210330, "size": 550, }, "src": { "files": { "index.js": { - "offset": 3209630, + "offset": 3210870, "size": 310, }, }, @@ -21654,47 +21646,47 @@ exports[`node_module collectors > pnpm max stack 2`] = ` "normalize-package-data": { "files": { "AUTHORS": { - "offset": 3209940, + "offset": 3211170, "size": 160, }, "LICENSE": { - "offset": 3210090, + "offset": 3211330, "size": 1400, }, "lib": { "files": { "extract_description.js": { - "offset": 3211480, + "offset": 3212720, "size": 510, }, "fixer.js": { - "offset": 3211990, + "offset": 3213230, "size": 11810, }, "make_warning.js": { - "offset": 3223790, + "offset": 3225030, "size": 710, }, "normalize.js": { - "offset": 3224500, + "offset": 3225740, "size": 1350, }, "safe_format.js": { - "offset": 3225840, + "offset": 3227080, "size": 250, }, "typos.json": { - "offset": 3226090, + "offset": 3227330, "size": 750, }, "warning_messages.json": { - "offset": 3226840, + "offset": 3228070, "size": 1800, }, }, }, "package.json": { - "offset": 3228640, + "offset": 3229870, "size": 680, }, }, @@ -21702,7 +21694,7 @@ exports[`node_module collectors > pnpm max stack 2`] = ` "npm-run-all": { "files": { "LICENSE": { - "offset": 3229310, + "offset": 3230550, "size": 1090, }, "bin": { @@ -21710,15 +21702,15 @@ exports[`node_module collectors > pnpm max stack 2`] = ` "common": { "files": { "bootstrap.js": { - "offset": 3230390, + "offset": 3231630, "size": 1490, }, "parse-cli-args.js": { - "offset": 3231880, + "offset": 3233110, "size": 7280, }, "version.js": { - "offset": 3239160, + "offset": 3240390, "size": 690, }, }, @@ -21726,16 +21718,16 @@ exports[`node_module collectors > pnpm max stack 2`] = ` "npm-run-all": { "files": { "help.js": { - "offset": 3239840, + "offset": 3241080, "size": 3180, }, "index.js": { "executable": true, - "offset": 3243020, + "offset": 3244260, "size": 400, }, "main.js": { - "offset": 3243420, + "offset": 3244650, "size": 2660, }, }, @@ -21743,16 +21735,16 @@ exports[`node_module collectors > pnpm max stack 2`] = ` "run-p": { "files": { "help.js": { - "offset": 3246070, + "offset": 3247310, "size": 2610, }, "index.js": { "executable": true, - "offset": 3248680, + "offset": 3249920, "size": 400, }, "main.js": { - "offset": 3249070, + "offset": 3250310, "size": 2370, }, }, @@ -21760,16 +21752,16 @@ exports[`node_module collectors > pnpm max stack 2`] = ` "run-s": { "files": { "help.js": { - "offset": 3251440, + "offset": 3252680, "size": 2200, }, "index.js": { "executable": true, - "offset": 3253630, + "offset": 3254870, "size": 400, }, "main.js": { - "offset": 3254020, + "offset": 3255260, "size": 2240, }, }, @@ -21779,19 +21771,19 @@ exports[`node_module collectors > pnpm max stack 2`] = ` "docs": { "files": { "node-api.md": { - "offset": 3256260, + "offset": 3257500, "size": 5070, }, "npm-run-all.md": { - "offset": 3261320, + "offset": 3262560, "size": 7070, }, "run-p.md": { - "offset": 3268380, + "offset": 3269620, "size": 5510, }, "run-s.md": { - "offset": 3273890, + "offset": 3275130, "size": 4890, }, }, @@ -21799,53 +21791,53 @@ exports[`node_module collectors > pnpm max stack 2`] = ` "lib": { "files": { "create-header.js": { - "offset": 3278770, + "offset": 3280010, "size": 1760, }, "create-prefix-transform-stream.js": { - "offset": 3280530, + "offset": 3281770, "size": 3210, }, "index.js": { - "offset": 3283730, + "offset": 3284970, "size": 10020, }, "match-tasks.js": { - "offset": 3293750, + "offset": 3294990, "size": 4030, }, "npm-run-all-error.js": { - "offset": 3297780, + "offset": 3299010, "size": 1420, }, "read-package-json.js": { - "offset": 3299200, + "offset": 3300430, "size": 980, }, "run-task.js": { - "offset": 3300180, + "offset": 3301410, "size": 7330, }, "run-tasks.js": { - "offset": 3307510, + "offset": 3308740, "size": 5140, }, "spawn-posix.js": { - "offset": 3312640, + "offset": 3313870, "size": 1850, }, "spawn-win32.js": { - "offset": 3314480, + "offset": 3315720, "size": 1570, }, "spawn.js": { - "offset": 3316050, + "offset": 3317280, "size": 610, }, }, }, "package.json": { - "offset": 3316650, + "offset": 3317890, "size": 1280, }, }, @@ -21853,31 +21845,31 @@ exports[`node_module collectors > pnpm max stack 2`] = ` "object-inspect": { "files": { ".nycrc": { - "offset": 3317920, + "offset": 3319160, "size": 240, }, "LICENSE": { - "offset": 3318160, + "offset": 3319400, "size": 1080, }, "index.js": { - "offset": 3319230, + "offset": 3320470, "size": 19060, }, "package-support.json": { - "offset": 3338290, + "offset": 3339530, "size": 370, }, "package.json": { - "offset": 3338650, + "offset": 3339890, "size": 2000, }, "test-core-js.js": { - "offset": 3340650, + "offset": 3341880, "size": 540, }, "util.inspect.js": { - "offset": 3341180, + "offset": 3342420, "size": 50, }, }, @@ -21885,27 +21877,27 @@ exports[`node_module collectors > pnpm max stack 2`] = ` "object-keys": { "files": { ".editorconfig": { - "offset": 3341220, + "offset": 3342460, "size": 280, }, "LICENSE": { - "offset": 3341500, + "offset": 3342730, "size": 1080, }, "implementation.js": { - "offset": 3342580, + "offset": 3343810, "size": 3220, }, "index.js": { - "offset": 3345800, + "offset": 3347030, "size": 830, }, "isArguments.js": { - "offset": 3346620, + "offset": 3347860, "size": 430, }, "package.json": { - "offset": 3347040, + "offset": 3348280, "size": 1130, }, }, @@ -21913,51 +21905,51 @@ exports[`node_module collectors > pnpm max stack 2`] = ` "object.assign": { "files": { ".editorconfig": { - "offset": 3348160, + "offset": 3349400, "size": 290, }, ".nycrc": { - "offset": 3348450, + "offset": 3349690, "size": 140, }, "LICENSE": { - "offset": 3348590, + "offset": 3349820, "size": 1080, }, "auto.js": { - "offset": 3349670, + "offset": 3350900, "size": 40, }, "dist": { "files": { "browser.js": { - "offset": 3349700, + "offset": 3350940, "size": 41570, }, }, }, "hasSymbols.js": { - "offset": 3391270, + "offset": 3392510, "size": 1620, }, "implementation.js": { - "offset": 3392890, + "offset": 3394130, "size": 1430, }, "index.js": { - "offset": 3394310, + "offset": 3395550, "size": 540, }, "package.json": { - "offset": 3394840, + "offset": 3396080, "size": 1630, }, "polyfill.js": { - "offset": 3396470, + "offset": 3397710, "size": 1300, }, "shim.js": { - "offset": 3397770, + "offset": 3399000, "size": 310, }, }, @@ -21965,23 +21957,23 @@ exports[`node_module collectors > pnpm max stack 2`] = ` "own-keys": { "files": { ".nycrc": { - "offset": 3398070, + "offset": 3399310, "size": 140, }, "LICENSE": { - "offset": 3398210, + "offset": 3399450, "size": 1080, }, "index.js": { - "offset": 3399280, + "offset": 3400520, "size": 590, }, "package.json": { - "offset": 3399870, + "offset": 3401100, "size": 1640, }, "tsconfig.json": { - "offset": 3401500, + "offset": 3402740, "size": 130, }, }, @@ -21989,15 +21981,15 @@ exports[`node_module collectors > pnpm max stack 2`] = ` "parse-json": { "files": { "index.js": { - "offset": 3401630, + "offset": 3402860, "size": 620, }, "license": { - "offset": 3402240, + "offset": 3403480, "size": 1110, }, "package.json": { - "offset": 3403350, + "offset": 3404590, "size": 550, }, }, @@ -22005,15 +21997,15 @@ exports[`node_module collectors > pnpm max stack 2`] = ` "path-key": { "files": { "index.js": { - "offset": 3403890, + "offset": 3405130, "size": 290, }, "license": { - "offset": 3404170, + "offset": 3405410, "size": 1120, }, "package.json": { - "offset": 3405290, + "offset": 3406530, "size": 430, }, }, @@ -22021,15 +22013,15 @@ exports[`node_module collectors > pnpm max stack 2`] = ` "path-parse": { "files": { "LICENSE": { - "offset": 3405720, + "offset": 3406960, "size": 1080, }, "index.js": { - "offset": 3406800, + "offset": 3408040, "size": 1900, }, "package.json": { - "offset": 3408690, + "offset": 3409930, "size": 370, }, }, @@ -22037,15 +22029,15 @@ exports[`node_module collectors > pnpm max stack 2`] = ` "path-type": { "files": { "index.js": { - "offset": 3409050, + "offset": 3410290, "size": 990, }, "license": { - "offset": 3410040, + "offset": 3411280, "size": 1110, }, "package.json": { - "offset": 3411150, + "offset": 3412390, "size": 470, }, }, @@ -22056,45 +22048,45 @@ exports[`node_module collectors > pnpm max stack 2`] = ` "files": { "pidtree.js": { "executable": true, - "offset": 3411620, + "offset": 3412860, "size": 2860, }, }, }, "index.js": { - "offset": 3414480, + "offset": 3415720, "size": 1350, }, "lib": { "files": { "bin.js": { - "offset": 3415830, + "offset": 3417060, "size": 1030, }, "get.js": { - "offset": 3416850, + "offset": 3418090, "size": 730, }, "pidtree.js": { - "offset": 3417570, + "offset": 3418810, "size": 2690, }, "ps.js": { - "offset": 3420260, + "offset": 3421490, "size": 1070, }, "wmic.js": { - "offset": 3421320, + "offset": 3422560, "size": 1180, }, }, }, "license": { - "offset": 3422500, + "offset": 3423740, "size": 1080, }, "package.json": { - "offset": 3423580, + "offset": 3424810, "size": 810, }, }, @@ -22102,15 +22094,15 @@ exports[`node_module collectors > pnpm max stack 2`] = ` "pify": { "files": { "index.js": { - "offset": 3424380, + "offset": 3425620, "size": 1810, }, "license": { - "offset": 3426190, + "offset": 3427430, "size": 1110, }, "package.json": { - "offset": 3427300, + "offset": 3428540, "size": 470, }, }, @@ -22118,19 +22110,19 @@ exports[`node_module collectors > pnpm max stack 2`] = ` "possible-typed-array-names": { "files": { "LICENSE": { - "offset": 3427760, + "offset": 3429000, "size": 1080, }, "index.js": { - "offset": 3428830, + "offset": 3430070, "size": 270, }, "package.json": { - "offset": 3429100, + "offset": 3430330, "size": 1300, }, "tsconfig.json": { - "offset": 3430390, + "offset": 3431620, "size": 120, }, }, @@ -22138,15 +22130,15 @@ exports[`node_module collectors > pnpm max stack 2`] = ` "read-pkg": { "files": { "index.js": { - "offset": 3430500, + "offset": 3431740, "size": 820, }, "license": { - "offset": 3431320, + "offset": 3432560, "size": 1110, }, "package.json": { - "offset": 3432430, + "offset": 3433660, "size": 530, }, }, @@ -22154,35 +22146,35 @@ exports[`node_module collectors > pnpm max stack 2`] = ` "reflect.getprototypeof": { "files": { ".nycrc": { - "offset": 3432950, + "offset": 3434190, "size": 140, }, "LICENSE": { - "offset": 3433090, + "offset": 3434320, "size": 1080, }, "auto.js": { - "offset": 3434160, + "offset": 3435400, "size": 40, }, "implementation.js": { - "offset": 3434200, + "offset": 3435430, "size": 1100, }, "index.js": { - "offset": 3435290, + "offset": 3436520, "size": 430, }, "package.json": { - "offset": 3435710, + "offset": 3436950, "size": 1810, }, "polyfill.js": { - "offset": 3437510, + "offset": 3438750, "size": 350, }, "shim.js": { - "offset": 3437860, + "offset": 3439100, "size": 470, }, }, @@ -22190,120 +22182,136 @@ exports[`node_module collectors > pnpm max stack 2`] = ` "regexp.prototype.flags": { "files": { ".editorconfig": { - "offset": 3438320, + "offset": 3439560, "size": 280, }, ".nycrc": { - "offset": 3438600, + "offset": 3439840, "size": 140, }, "LICENSE": { - "offset": 3438740, + "offset": 3439980, "size": 1090, }, "auto.js": { - "offset": 3439820, + "offset": 3441060, "size": 40, }, "implementation.js": { - "offset": 3439860, + "offset": 3441090, "size": 710, }, "index.js": { - "offset": 3440570, + "offset": 3441800, "size": 390, }, "package.json": { - "offset": 3440960, + "offset": 3442190, "size": 1920, }, "polyfill.js": { - "offset": 3442870, + "offset": 3444110, "size": 870, }, "shim.js": { - "offset": 3443740, + "offset": 3444970, "size": 780, }, }, }, "resolve": { "files": { + ".claude": { + "files": { + "notes.md": { + "offset": 3445750, + "size": 1220, + }, + "settings.local.json": { + "offset": 3446970, + "size": 790, + }, + }, + }, ".editorconfig": { - "offset": 3444520, - "size": 610, + "offset": 3447750, + "size": 660, }, "LICENSE": { - "offset": 3445120, + "offset": 3448410, "size": 1080, }, "SECURITY.md": { - "offset": 3446190, - "size": 360, + "offset": 3449480, + "size": 390, }, "async.js": { - "offset": 3446550, + "offset": 3449860, "size": 60, }, "bin": { "files": { "resolve": { "executable": true, - "offset": 3446600, + "offset": 3449920, "size": 1540, }, }, }, + "eslint.config.mjs": { + "offset": 3451450, + "size": 1580, + }, "index.js": { - "offset": 3448140, + "offset": 3453030, "size": 180, }, "lib": { "files": { "async.js": { - "offset": 3448310, - "size": 11520, + "offset": 3453200, + "size": 11550, }, "caller.js": { - "offset": 3459830, - "size": 360, + "offset": 3464750, + "size": 410, }, "core.js": { - "offset": 3460180, + "offset": 3465160, "size": 310, }, "core.json": { - "offset": 3460490, + "offset": 3465470, "size": 5960, }, "homedir.js": { - "offset": 3466450, - "size": 810, + "offset": 3471420, + "size": 960, }, "is-core.js": { - "offset": 3467250, + "offset": 3472380, "size": 120, }, "node-modules-paths.js": { - "offset": 3467370, - "size": 1370, + "offset": 3472490, + "size": 1340, }, "normalize-options.js": { - "offset": 3468730, + "offset": 3473830, "size": 350, }, "sync.js": { - "offset": 3469080, - "size": 7150, + "offset": 3474180, + "size": 7170, }, }, }, "package.json": { - "offset": 3476230, - "size": 1320, + "offset": 3481350, + "size": 1400, }, "sync.js": { - "offset": 3477550, + "offset": 3482740, "size": 60, }, }, @@ -22311,23 +22319,23 @@ exports[`node_module collectors > pnpm max stack 2`] = ` "safe-array-concat": { "files": { ".nycrc": { - "offset": 3477600, + "offset": 3482800, "size": 220, }, "LICENSE": { - "offset": 3477820, + "offset": 3483020, "size": 1080, }, "index.js": { - "offset": 3478890, + "offset": 3484090, "size": 1880, }, "package.json": { - "offset": 3480760, + "offset": 3485960, "size": 1720, }, "tsconfig.json": { - "offset": 3482480, + "offset": 3487680, "size": 130, }, }, @@ -22335,23 +22343,23 @@ exports[`node_module collectors > pnpm max stack 2`] = ` "safe-push-apply": { "files": { ".nycrc": { - "offset": 3482600, + "offset": 3487800, "size": 220, }, "LICENSE": { - "offset": 3482820, + "offset": 3488020, "size": 1080, }, "index.js": { - "offset": 3483890, + "offset": 3489090, "size": 390, }, "package.json": { - "offset": 3484270, + "offset": 3489470, "size": 1460, }, "tsconfig.json": { - "offset": 3485730, + "offset": 3490930, "size": 130, }, }, @@ -22359,23 +22367,23 @@ exports[`node_module collectors > pnpm max stack 2`] = ` "safe-regex-test": { "files": { ".nycrc": { - "offset": 3485850, + "offset": 3491050, "size": 220, }, "LICENSE": { - "offset": 3486070, + "offset": 3491270, "size": 1080, }, "index.js": { - "offset": 3487140, + "offset": 3492340, "size": 410, }, "package.json": { - "offset": 3487540, + "offset": 3492740, "size": 1590, }, "tsconfig.json": { - "offset": 3489130, + "offset": 3494330, "size": 120, }, }, @@ -22383,28 +22391,28 @@ exports[`node_module collectors > pnpm max stack 2`] = ` "semver": { "files": { "LICENSE": { - "offset": 3489240, + "offset": 3494440, "size": 770, }, "bin": { "files": { "semver": { "executable": true, - "offset": 3490010, + "offset": 3495210, "size": 4420, }, }, }, "package.json": { - "offset": 3494430, + "offset": 3499630, "size": 670, }, "range.bnf": { - "offset": 3495090, + "offset": 3500290, "size": 620, }, "semver.js": { - "offset": 3495710, + "offset": 3500910, "size": 40820, }, }, @@ -22412,27 +22420,27 @@ exports[`node_module collectors > pnpm max stack 2`] = ` "set-function-length": { "files": { ".nycrc": { - "offset": 3536530, + "offset": 3541720, "size": 220, }, "LICENSE": { - "offset": 3536740, + "offset": 3541940, "size": 1090, }, "env.js": { - "offset": 3537820, + "offset": 3543020, "size": 870, }, "index.js": { - "offset": 3538690, + "offset": 3543890, "size": 1280, }, "package.json": { - "offset": 3539960, + "offset": 3545160, "size": 1960, }, "tsconfig.json": { - "offset": 3541920, + "offset": 3547120, "size": 120, }, }, @@ -22440,19 +22448,19 @@ exports[`node_module collectors > pnpm max stack 2`] = ` "set-function-name": { "files": { "LICENSE": { - "offset": 3542030, + "offset": 3547230, "size": 1090, }, "index.js": { - "offset": 3543120, + "offset": 3548320, "size": 750, }, "package.json": { - "offset": 3543860, + "offset": 3549060, "size": 2130, }, "tsconfig.json": { - "offset": 3545990, + "offset": 3551190, "size": 4890, }, }, @@ -22460,31 +22468,31 @@ exports[`node_module collectors > pnpm max stack 2`] = ` "set-proto": { "files": { ".nycrc": { - "offset": 3550880, + "offset": 3556070, "size": 140, }, "LICENSE": { - "offset": 3551010, + "offset": 3556210, "size": 1080, }, "Object.setPrototypeOf.js": { - "offset": 3552090, + "offset": 3557280, "size": 160, }, "Reflect.setPrototypeOf.js": { - "offset": 3552240, + "offset": 3557440, "size": 150, }, "index.js": { - "offset": 3552390, + "offset": 3557590, "size": 740, }, "package.json": { - "offset": 3553120, + "offset": 3558320, "size": 1460, }, "tsconfig.json": { - "offset": 3554580, + "offset": 3559780, "size": 120, }, }, @@ -22492,15 +22500,15 @@ exports[`node_module collectors > pnpm max stack 2`] = ` "shebang-command": { "files": { "index.js": { - "offset": 3554690, + "offset": 3559890, "size": 350, }, "license": { - "offset": 3555040, + "offset": 3560240, "size": 1130, }, "package.json": { - "offset": 3556170, + "offset": 3561360, "size": 480, }, }, @@ -22508,15 +22516,15 @@ exports[`node_module collectors > pnpm max stack 2`] = ` "shebang-regex": { "files": { "index.js": { - "offset": 3556640, + "offset": 3561840, "size": 40, }, "license": { - "offset": 3556680, + "offset": 3561880, "size": 1120, }, "package.json": { - "offset": 3557800, + "offset": 3563000, "size": 420, }, }, @@ -22524,36 +22532,36 @@ exports[`node_module collectors > pnpm max stack 2`] = ` "shell-quote": { "files": { ".nycrc": { - "offset": 3558220, + "offset": 3563420, "size": 230, }, "LICENSE": { - "offset": 3558450, + "offset": 3563650, "size": 1110, }, "index.js": { - "offset": 3559560, + "offset": 3564760, "size": 90, }, "package.json": { - "offset": 3559650, + "offset": 3564840, "size": 1200, }, "parse.js": { - "offset": 3560840, + "offset": 3566040, "size": 5190, }, "print.py": { "executable": true, - "offset": 3566030, + "offset": 3571230, "size": 60, }, "quote.js": { - "offset": 3566080, + "offset": 3571280, "size": 500, }, "security.md": { - "offset": 3566580, + "offset": 3571780, "size": 300, }, }, @@ -22561,27 +22569,27 @@ exports[`node_module collectors > pnpm max stack 2`] = ` "side-channel": { "files": { ".editorconfig": { - "offset": 3566870, + "offset": 3572070, "size": 150, }, ".nycrc": { - "offset": 3567020, + "offset": 3572220, "size": 220, }, "LICENSE": { - "offset": 3567230, + "offset": 3572430, "size": 1080, }, "index.js": { - "offset": 3568300, + "offset": 3573500, "size": 1190, }, "package.json": { - "offset": 3569490, + "offset": 3574690, "size": 1570, }, "tsconfig.json": { - "offset": 3571060, + "offset": 3576260, "size": 120, }, }, @@ -22589,27 +22597,27 @@ exports[`node_module collectors > pnpm max stack 2`] = ` "side-channel-list": { "files": { ".editorconfig": { - "offset": 3571170, + "offset": 3576370, "size": 150, }, ".nycrc": { - "offset": 3571320, + "offset": 3576520, "size": 220, }, "LICENSE": { - "offset": 3571530, + "offset": 3576730, "size": 1080, }, "index.js": { - "offset": 3572610, - "size": 3400, + "offset": 3577800, + "size": 3290, }, "package.json": { - "offset": 3576000, - "size": 1490, + "offset": 3581090, + "size": 1500, }, "tsconfig.json": { - "offset": 3577490, + "offset": 3582580, "size": 120, }, }, @@ -22617,27 +22625,27 @@ exports[`node_module collectors > pnpm max stack 2`] = ` "side-channel-map": { "files": { ".editorconfig": { - "offset": 3577600, + "offset": 3582700, "size": 150, }, ".nycrc": { - "offset": 3577750, + "offset": 3582850, "size": 220, }, "LICENSE": { - "offset": 3577960, + "offset": 3583060, "size": 1080, }, "index.js": { - "offset": 3579030, + "offset": 3584130, "size": 1990, }, "package.json": { - "offset": 3581020, + "offset": 3586110, "size": 1580, }, "tsconfig.json": { - "offset": 3582590, + "offset": 3587690, "size": 120, }, }, @@ -22645,27 +22653,27 @@ exports[`node_module collectors > pnpm max stack 2`] = ` "side-channel-weakmap": { "files": { ".editorconfig": { - "offset": 3582710, + "offset": 3587810, "size": 150, }, ".nycrc": { - "offset": 3582850, + "offset": 3587950, "size": 220, }, "LICENSE": { - "offset": 3583070, + "offset": 3588170, "size": 1080, }, "index.js": { - "offset": 3584140, + "offset": 3589240, "size": 2710, }, "package.json": { - "offset": 3586850, + "offset": 3591950, "size": 1650, }, "tsconfig.json": { - "offset": 3588490, + "offset": 3593590, "size": 120, }, }, @@ -22673,15 +22681,15 @@ exports[`node_module collectors > pnpm max stack 2`] = ` "spdx-correct": { "files": { "LICENSE": { - "offset": 3588610, + "offset": 3593710, "size": 11360, }, "index.js": { - "offset": 3599970, + "offset": 3605070, "size": 10760, }, "package.json": { - "offset": 3610720, + "offset": 3615820, "size": 490, }, }, @@ -22689,15 +22697,15 @@ exports[`node_module collectors > pnpm max stack 2`] = ` "spdx-exceptions": { "files": { "deprecated.json": { - "offset": 3611200, + "offset": 3616300, "size": 40, }, "index.json": { - "offset": 3611230, + "offset": 3616330, "size": 1740, }, "package.json": { - "offset": 3612970, + "offset": 3618060, "size": 290, }, }, @@ -22705,27 +22713,27 @@ exports[`node_module collectors > pnpm max stack 2`] = ` "spdx-expression-parse": { "files": { "AUTHORS": { - "offset": 3613250, + "offset": 3618350, "size": 210, }, "LICENSE": { - "offset": 3613450, + "offset": 3618550, "size": 1120, }, "index.js": { - "offset": 3614560, + "offset": 3619660, "size": 150, }, "package.json": { - "offset": 3614710, + "offset": 3619810, "size": 560, }, "parse.js": { - "offset": 3615260, + "offset": 3620360, "size": 2910, }, "scan.js": { - "offset": 3618160, + "offset": 3623260, "size": 2760, }, }, @@ -22733,15 +22741,15 @@ exports[`node_module collectors > pnpm max stack 2`] = ` "spdx-license-ids": { "files": { "deprecated.json": { - "offset": 3620920, + "offset": 3626010, "size": 520, }, "index.json": { - "offset": 3621430, + "offset": 3626530, "size": 11290, }, "package.json": { - "offset": 3632710, + "offset": 3637810, "size": 310, }, }, @@ -22749,23 +22757,23 @@ exports[`node_module collectors > pnpm max stack 2`] = ` "stop-iteration-iterator": { "files": { ".nycrc": { - "offset": 3633010, + "offset": 3638110, "size": 220, }, "LICENSE": { - "offset": 3633230, + "offset": 3638330, "size": 1080, }, "index.js": { - "offset": 3634300, + "offset": 3639400, "size": 1310, }, "package.json": { - "offset": 3635610, + "offset": 3640710, "size": 1420, }, "tsconfig.json": { - "offset": 3637020, + "offset": 3642120, "size": 70, }, }, @@ -22773,39 +22781,39 @@ exports[`node_module collectors > pnpm max stack 2`] = ` "string.prototype.padend": { "files": { ".editorconfig": { - "offset": 3637090, + "offset": 3642190, "size": 290, }, ".nycrc": { - "offset": 3637380, + "offset": 3642470, "size": 140, }, "LICENSE": { - "offset": 3637510, + "offset": 3642610, "size": 1090, }, "auto.js": { - "offset": 3638600, + "offset": 3643700, "size": 40, }, "implementation.js": { - "offset": 3638630, + "offset": 3643730, "size": 1110, }, "index.js": { - "offset": 3639740, + "offset": 3644840, "size": 660, }, "package.json": { - "offset": 3640400, + "offset": 3645500, "size": 1700, }, "polyfill.js": { - "offset": 3642100, + "offset": 3647190, "size": 210, }, "shim.js": { - "offset": 3642310, + "offset": 3647400, "size": 340, }, }, @@ -22813,39 +22821,39 @@ exports[`node_module collectors > pnpm max stack 2`] = ` "string.prototype.trim": { "files": { ".editorconfig": { - "offset": 3642640, + "offset": 3647740, "size": 290, }, ".nycrc": { - "offset": 3642930, + "offset": 3648020, "size": 140, }, "LICENSE": { - "offset": 3643060, + "offset": 3648160, "size": 1090, }, "auto.js": { - "offset": 3644150, + "offset": 3649240, "size": 40, }, "implementation.js": { - "offset": 3644180, + "offset": 3649280, "size": 1180, }, "index.js": { - "offset": 3645350, + "offset": 3650450, "size": 580, }, "package.json": { - "offset": 3645930, + "offset": 3651020, "size": 1870, }, "polyfill.js": { - "offset": 3647790, + "offset": 3652890, "size": 550, }, "shim.js": { - "offset": 3648340, + "offset": 3653430, "size": 500, }, }, @@ -22853,39 +22861,39 @@ exports[`node_module collectors > pnpm max stack 2`] = ` "string.prototype.trimend": { "files": { ".editorconfig": { - "offset": 3648830, + "offset": 3653930, "size": 290, }, ".nycrc": { - "offset": 3649120, + "offset": 3654210, "size": 140, }, "LICENSE": { - "offset": 3649260, + "offset": 3654350, "size": 1080, }, "auto.js": { - "offset": 3650330, + "offset": 3655430, "size": 40, }, "implementation.js": { - "offset": 3650360, + "offset": 3655460, "size": 640, }, "index.js": { - "offset": 3651000, + "offset": 3656100, "size": 580, }, "package.json": { - "offset": 3651570, + "offset": 3656670, "size": 1250, }, "polyfill.js": { - "offset": 3652820, + "offset": 3657920, "size": 460, }, "shim.js": { - "offset": 3653280, + "offset": 3658370, "size": 330, }, }, @@ -22893,39 +22901,39 @@ exports[`node_module collectors > pnpm max stack 2`] = ` "string.prototype.trimstart": { "files": { ".editorconfig": { - "offset": 3653610, + "offset": 3658700, "size": 290, }, ".nycrc": { - "offset": 3653890, + "offset": 3658990, "size": 140, }, "LICENSE": { - "offset": 3654030, + "offset": 3659130, "size": 1080, }, "auto.js": { - "offset": 3655100, + "offset": 3660200, "size": 40, }, "implementation.js": { - "offset": 3655140, + "offset": 3660240, "size": 650, }, "index.js": { - "offset": 3655790, + "offset": 3660890, "size": 580, }, "package.json": { - "offset": 3656360, + "offset": 3661460, "size": 1220, }, "polyfill.js": { - "offset": 3657580, + "offset": 3662680, "size": 470, }, "shim.js": { - "offset": 3658040, + "offset": 3663140, "size": 340, }, }, @@ -22933,15 +22941,15 @@ exports[`node_module collectors > pnpm max stack 2`] = ` "strip-bom": { "files": { "index.js": { - "offset": 3658380, + "offset": 3663480, "size": 320, }, "license": { - "offset": 3658700, + "offset": 3663800, "size": 1120, }, "package.json": { - "offset": 3659820, + "offset": 3664910, "size": 430, }, }, @@ -22949,19 +22957,19 @@ exports[`node_module collectors > pnpm max stack 2`] = ` "supports-color": { "files": { "browser.js": { - "offset": 3660240, + "offset": 3665340, "size": 70, }, "index.js": { - "offset": 3660310, + "offset": 3665400, "size": 2780, }, "license": { - "offset": 3663080, + "offset": 3668180, "size": 1110, }, "package.json": { - "offset": 3664190, + "offset": 3669280, "size": 560, }, }, @@ -22969,23 +22977,23 @@ exports[`node_module collectors > pnpm max stack 2`] = ` "supports-preserve-symlinks-flag": { "files": { ".nycrc": { - "offset": 3664740, + "offset": 3669840, "size": 140, }, "LICENSE": { - "offset": 3664880, + "offset": 3669980, "size": 1070, }, "browser.js": { - "offset": 3665950, + "offset": 3671050, "size": 40, }, "index.js": { - "offset": 3665990, + "offset": 3671080, "size": 300, }, "package.json": { - "offset": 3666280, + "offset": 3671380, "size": 1270, }, }, @@ -22993,23 +23001,23 @@ exports[`node_module collectors > pnpm max stack 2`] = ` "typed-array-buffer": { "files": { ".nycrc": { - "offset": 3667550, + "offset": 3672640, "size": 220, }, "LICENSE": { - "offset": 3667760, + "offset": 3672860, "size": 1080, }, "index.js": { - "offset": 3668830, + "offset": 3673930, "size": 600, }, "package.json": { - "offset": 3669420, + "offset": 3674520, "size": 1600, }, "tsconfig.json": { - "offset": 3671020, + "offset": 3676110, "size": 120, }, }, @@ -23017,23 +23025,23 @@ exports[`node_module collectors > pnpm max stack 2`] = ` "typed-array-byte-length": { "files": { ".nycrc": { - "offset": 3671130, + "offset": 3676230, "size": 220, }, "LICENSE": { - "offset": 3671350, + "offset": 3676450, "size": 1070, }, "index.js": { - "offset": 3672420, + "offset": 3677510, "size": 2750, }, "package.json": { - "offset": 3675160, + "offset": 3680260, "size": 2020, }, "tsconfig.json": { - "offset": 3677180, + "offset": 3682270, "size": 120, }, }, @@ -23041,23 +23049,23 @@ exports[`node_module collectors > pnpm max stack 2`] = ` "typed-array-byte-offset": { "files": { ".nycrc": { - "offset": 3677290, + "offset": 3682390, "size": 220, }, "LICENSE": { - "offset": 3677510, + "offset": 3682610, "size": 1070, }, "index.js": { - "offset": 3678580, + "offset": 3683670, "size": 2490, }, "package.json": { - "offset": 3681060, + "offset": 3686160, "size": 2130, }, "tsconfig.json": { - "offset": 3683190, + "offset": 3688280, "size": 150, }, }, @@ -23065,23 +23073,23 @@ exports[`node_module collectors > pnpm max stack 2`] = ` "typed-array-length": { "files": { ".nycrc": { - "offset": 3683330, + "offset": 3688430, "size": 220, }, "LICENSE": { - "offset": 3683550, + "offset": 3688640, "size": 1070, }, "index.js": { - "offset": 3684610, + "offset": 3689710, "size": 2950, }, "package.json": { - "offset": 3687560, + "offset": 3692650, "size": 2000, }, "tsconfig.json": { - "offset": 3689560, + "offset": 3694650, "size": 150, }, }, @@ -23089,27 +23097,27 @@ exports[`node_module collectors > pnpm max stack 2`] = ` "unbox-primitive": { "files": { ".editorconfig": { - "offset": 3689700, + "offset": 3694800, "size": 290, }, ".nycrc": { - "offset": 3689990, + "offset": 3695080, "size": 220, }, "LICENSE": { - "offset": 3690200, + "offset": 3695300, "size": 1080, }, "index.js": { - "offset": 3691270, + "offset": 3696370, "size": 1540, }, "package.json": { - "offset": 3692810, + "offset": 3697900, "size": 1540, }, "tsconfig.json": { - "offset": 3694340, + "offset": 3699440, "size": 70, }, }, @@ -23117,15 +23125,15 @@ exports[`node_module collectors > pnpm max stack 2`] = ` "validate-npm-package-license": { "files": { "LICENSE": { - "offset": 3694410, + "offset": 3699510, "size": 11360, }, "index.js": { - "offset": 3705770, + "offset": 3710870, "size": 1930, }, "package.json": { - "offset": 3707690, + "offset": 3712790, "size": 520, }, }, @@ -23133,24 +23141,24 @@ exports[`node_module collectors > pnpm max stack 2`] = ` "which": { "files": { "LICENSE": { - "offset": 3708210, + "offset": 3713310, "size": 770, }, "bin": { "files": { "which": { "executable": true, - "offset": 3708980, + "offset": 3714080, "size": 990, }, }, }, "package.json": { - "offset": 3709960, + "offset": 3715060, "size": 570, }, "which.js": { - "offset": 3710530, + "offset": 3715630, "size": 3190, }, }, @@ -23158,27 +23166,27 @@ exports[`node_module collectors > pnpm max stack 2`] = ` "which-boxed-primitive": { "files": { ".editorconfig": { - "offset": 3713710, + "offset": 3718810, "size": 290, }, ".nycrc": { - "offset": 3714000, + "offset": 3719100, "size": 220, }, "LICENSE": { - "offset": 3714210, + "offset": 3719310, "size": 1080, }, "index.js": { - "offset": 3715280, + "offset": 3720380, "size": 720, }, "package.json": { - "offset": 3716000, + "offset": 3721100, "size": 1540, }, "tsconfig.json": { - "offset": 3717540, + "offset": 3722640, "size": 120, }, }, @@ -23186,23 +23194,23 @@ exports[`node_module collectors > pnpm max stack 2`] = ` "which-builtin-type": { "files": { ".nycrc": { - "offset": 3717650, + "offset": 3722750, "size": 140, }, "LICENSE": { - "offset": 3717790, + "offset": 3722890, "size": 1080, }, "index.js": { - "offset": 3718860, + "offset": 3723960, "size": 3960, }, "package.json": { - "offset": 3722820, + "offset": 3727910, "size": 2570, }, "tsconfig.json": { - "offset": 3725380, + "offset": 3730480, "size": 130, }, }, @@ -23210,23 +23218,23 @@ exports[`node_module collectors > pnpm max stack 2`] = ` "which-collection": { "files": { ".nycrc": { - "offset": 3725500, + "offset": 3730600, "size": 220, }, "LICENSE": { - "offset": 3725720, + "offset": 3730810, "size": 1070, }, "index.js": { - "offset": 3726780, + "offset": 3731880, "size": 510, }, "package.json": { - "offset": 3727290, + "offset": 3732390, "size": 1620, }, "tsconfig.json": { - "offset": 3728910, + "offset": 3734010, "size": 3620, }, }, @@ -23234,27 +23242,27 @@ exports[`node_module collectors > pnpm max stack 2`] = ` "which-typed-array": { "files": { ".editorconfig": { - "offset": 3732520, + "offset": 3737620, "size": 290, }, ".nycrc": { - "offset": 3732800, + "offset": 3737900, "size": 220, }, "LICENSE": { - "offset": 3733020, + "offset": 3738120, "size": 1090, }, "index.js": { - "offset": 3734100, + "offset": 3739200, "size": 3770, }, "package.json": { - "offset": 3737870, + "offset": 3742970, "size": 2310, }, "tsconfig.json": { - "offset": 3740170, + "offset": 3745270, "size": 130, }, }, @@ -23262,7 +23270,7 @@ exports[`node_module collectors > pnpm max stack 2`] = ` }, }, "package.json": { - "offset": 3741290, + "offset": 3746390, "size": 370, }, }, @@ -29629,11 +29637,11 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen { "files": { "index.html": { - "offset": 18751780, + "offset": 18843550, "size": 850, }, "index.js": { - "offset": 18752620, + "offset": 18844390, "size": 2510, }, "node_modules": { @@ -30146,12 +30154,12 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen "files": { "index.mjs": { "offset": 3195820, - "size": 30610, + "size": 31610, }, }, }, "package.json": { - "offset": 3226430, + "offset": 3227420, "size": 950, }, }, @@ -30159,19 +30167,19 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen "css-color-parser": { "files": { "LICENSE.md": { - "offset": 3227370, + "offset": 3228370, "size": 1120, }, "dist": { "files": { "index.mjs": { - "offset": 3228480, - "size": 42510, + "offset": 3229480, + "size": 43270, }, }, }, "package.json": { - "offset": 3270980, + "offset": 3272740, "size": 1070, }, }, @@ -30179,19 +30187,19 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen "css-parser-algorithms": { "files": { "LICENSE.md": { - "offset": 3272050, + "offset": 3273800, "size": 1120, }, "dist": { "files": { "index.mjs": { - "offset": 3273160, + "offset": 3274910, "size": 8840, }, }, }, "package.json": { - "offset": 3281990, + "offset": 3283740, "size": 970, }, }, @@ -30199,19 +30207,19 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen "css-syntax-patches-for-csstree": { "files": { "LICENSE.md": { - "offset": 3282950, + "offset": 3284710, "size": 930, }, "dist": { "files": { "index.json": { - "offset": 3283880, - "size": 76310, + "offset": 3285640, + "size": 76450, }, }, }, "package.json": { - "offset": 3360190, + "offset": 3362090, "size": 920, }, }, @@ -30219,19 +30227,19 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen "css-tokenizer": { "files": { "LICENSE.md": { - "offset": 3361110, + "offset": 3363000, "size": 1120, }, "dist": { "files": { "index.mjs": { - "offset": 3362220, + "offset": 3364110, "size": 24040, }, }, }, "package.json": { - "offset": 3386250, + "offset": 3388150, "size": 830, }, }, @@ -30243,231 +30251,231 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen "bytes": { "files": { "LICENSE": { - "offset": 3387070, + "offset": 3388970, "size": 1080, }, "array.js": { - "offset": 3388150, + "offset": 3390050, "size": 1000, }, "assert.js": { - "offset": 3389140, + "offset": 3391040, "size": 930, }, "base32.js": { - "offset": 3390060, + "offset": 3391960, "size": 1500, }, "base58.js": { - "offset": 3391560, + "offset": 3393450, "size": 6360, }, "base58check.js": { - "offset": 3397910, + "offset": 3399810, "size": 880, }, "base58check.node.js": { - "offset": 3398790, + "offset": 3400690, "size": 500, }, "base64.js": { - "offset": 3399280, + "offset": 3401180, "size": 8440, }, "bech32.js": { - "offset": 3407720, + "offset": 3409620, "size": 9560, }, "bigint.js": { - "offset": 3417270, + "offset": 3419170, "size": 600, }, "encoding-browser.browser.js": { - "offset": 3417870, + "offset": 3419770, "size": 1830, }, "encoding-browser.js": { - "offset": 3419700, + "offset": 3421590, "size": 50, }, "encoding-browser.native.js": { - "offset": 3419740, + "offset": 3421640, "size": 180, }, "encoding-lite.js": { - "offset": 3419920, + "offset": 3421820, "size": 230, }, "encoding.js": { - "offset": 3420150, + "offset": 3422040, "size": 470, }, "fallback": { "files": { "_utils.js": { - "offset": 3420610, + "offset": 3422510, "size": 1820, }, "base32.js": { - "offset": 3422430, + "offset": 3424330, "size": 8550, }, "base58check.js": { - "offset": 3430980, + "offset": 3432880, "size": 1580, }, "base64.js": { - "offset": 3432550, + "offset": 3434450, "size": 6660, }, "encoding.api.js": { - "offset": 3439210, + "offset": 3441110, "size": 1570, }, "encoding.js": { - "offset": 3440770, + "offset": 3442670, "size": 13300, }, "encoding.labels.js": { - "offset": 3454060, + "offset": 3455960, "size": 2970, }, "encoding.util.js": { - "offset": 3457030, + "offset": 3458930, "size": 2570, }, "hex.js": { - "offset": 3459600, + "offset": 3461490, "size": 4340, }, "latin1.js": { - "offset": 3463930, + "offset": 3465830, "size": 5870, }, "multi-byte.encodings.cjs": { - "offset": 3469800, + "offset": 3471690, "size": 80, }, "multi-byte.encodings.json": { - "offset": 3469870, + "offset": 3471770, "size": 153320, }, "multi-byte.js": { - "offset": 3623180, + "offset": 3625080, "size": 28010, }, "multi-byte.table.js": { - "offset": 3651190, + "offset": 3653090, "size": 3400, }, "percent.js": { - "offset": 3654580, + "offset": 3656480, "size": 1320, }, "platform.browser.js": { - "offset": 3655900, + "offset": 3657800, "size": 1030, }, "platform.js": { - "offset": 3656930, + "offset": 3658820, "size": 100, }, "platform.native.js": { - "offset": 3657030, + "offset": 3658920, "size": 4010, }, "single-byte.encodings.js": { - "offset": 3661030, + "offset": 3662930, "size": 6140, }, "single-byte.js": { - "offset": 3667160, + "offset": 3669060, "size": 3970, }, "utf16.js": { - "offset": 3671130, + "offset": 3673030, "size": 9360, }, "utf8.auto.browser.js": { - "offset": 3680490, + "offset": 3682390, "size": 60, }, "utf8.auto.js": { - "offset": 3680550, + "offset": 3682440, "size": 50, }, "utf8.auto.native.js": { - "offset": 3680590, + "offset": 3682490, "size": 50, }, "utf8.js": { - "offset": 3680640, + "offset": 3682540, "size": 8630, }, }, }, "hex.js": { - "offset": 3689270, + "offset": 3691170, "size": 570, }, "hex.node.js": { - "offset": 3689840, + "offset": 3691740, "size": 1670, }, "index.js": { - "offset": 3691500, + "offset": 3693400, "size": 200, }, "multi-byte.js": { - "offset": 3691690, + "offset": 3693590, "size": 720, }, "multi-byte.node.js": { - "offset": 3692400, + "offset": 3694300, "size": 1090, }, "package.json": { - "offset": 3693490, + "offset": 3695390, "size": 6540, }, "single-byte.js": { - "offset": 3700030, + "offset": 3701930, "size": 4850, }, "single-byte.node.js": { - "offset": 3704880, + "offset": 3706780, "size": 4610, }, "utf16.browser.js": { - "offset": 3709490, + "offset": 3711390, "size": 560, }, "utf16.js": { - "offset": 3710040, + "offset": 3711940, "size": 40, }, "utf16.native.js": { - "offset": 3710080, + "offset": 3711980, "size": 1020, }, "utf16.node.js": { - "offset": 3711090, + "offset": 3712990, "size": 2830, }, "utf8.js": { - "offset": 3713910, + "offset": 3715810, "size": 2610, }, "utf8.node.js": { - "offset": 3716520, + "offset": 3718420, "size": 2850, }, "whatwg.js": { - "offset": 3719360, + "offset": 3721260, "size": 2780, }, "wif.js": { - "offset": 3722140, + "offset": 3724040, "size": 1940, }, }, @@ -30477,39 +30485,39 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen "agent-base": { "files": { "LICENSE": { - "offset": 3724070, + "offset": 3725970, "size": 1110, }, "dist": { "files": { "helpers.d.ts.map": { - "offset": 3725170, + "offset": 3727070, "size": 590, }, "helpers.js": { - "offset": 3725760, + "offset": 3727660, "size": 2320, }, "helpers.js.map": { - "offset": 3728070, + "offset": 3729970, "size": 1410, }, "index.d.ts.map": { - "offset": 3729470, + "offset": 3731370, "size": 1430, }, "index.js": { - "offset": 3730900, + "offset": 3732800, "size": 7330, }, "index.js.map": { - "offset": 3738230, + "offset": 3740120, "size": 4150, }, }, }, "package.json": { - "offset": 3742370, + "offset": 3744270, "size": 810, }, }, @@ -30517,27 +30525,27 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen "argparse": { "files": { "LICENSE": { - "offset": 3743180, + "offset": 3745080, "size": 12780, }, "argparse.js": { - "offset": 3755960, + "offset": 3757850, "size": 129720, }, "lib": { "files": { "sub.js": { - "offset": 3885670, + "offset": 3887570, "size": 2260, }, "textwrap.js": { - "offset": 3887920, + "offset": 3889820, "size": 17400, }, }, }, "package.json": { - "offset": 3905310, + "offset": 3907210, "size": 450, }, }, @@ -30545,79 +30553,79 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen "bidi-js": { "files": { "LICENSE.txt": { - "offset": 3905760, + "offset": 3907660, "size": 1080, }, "dist": { "files": { "bidi.js": { - "offset": 3906830, + "offset": 3908730, "size": 45570, }, "bidi.min.js": { - "offset": 3952390, + "offset": 3954290, "size": 12150, }, "bidi.min.mjs": { - "offset": 3964540, + "offset": 3966440, "size": 11930, }, "bidi.mjs": { - "offset": 3976470, + "offset": 3978360, "size": 43380, }, }, }, "package.json": { - "offset": 4019850, + "offset": 4021740, "size": 860, }, "src": { "files": { "brackets.js": { - "offset": 4020700, + "offset": 4022600, "size": 790, }, "charTypes.js": { - "offset": 4021480, + "offset": 4023380, "size": 1760, }, "data": { "files": { "bidiBrackets.data.js": { - "offset": 4023240, + "offset": 4025130, "size": 530, }, "bidiCharTypes.data.js": { - "offset": 4023760, + "offset": 4025660, "size": 3160, }, "bidiMirroring.data.js": { - "offset": 4026910, + "offset": 4028810, "size": 670, }, }, }, "embeddingLevels.js": { - "offset": 4027580, + "offset": 4029480, "size": 27080, }, "index.js": { - "offset": 4054660, + "offset": 4056560, "size": 410, }, "mirroring.js": { - "offset": 4055070, + "offset": 4056960, "size": 1370, }, "reordering.js": { - "offset": 4056430, + "offset": 4058330, "size": 3870, }, "util": { "files": { "parseCharacterMap.js": { - "offset": 4060300, + "offset": 4062200, "size": 1110, }, }, @@ -30629,7 +30637,7 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen "css-tree": { "files": { "LICENSE": { - "offset": 4061400, + "offset": 4063300, "size": 1070, }, "cjs": { @@ -30637,47 +30645,47 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen "convertor": { "files": { "create.cjs": { - "offset": 4062470, + "offset": 4064370, "size": 830, }, "index.cjs": { - "offset": 4063290, + "offset": 4065190, "size": 180, }, }, }, "data-patch.cjs": { - "offset": 4063470, + "offset": 4065370, "size": 120, }, "data.cjs": { - "offset": 4063580, + "offset": 4065480, "size": 3520, }, "definition-syntax": { "files": { "SyntaxError.cjs": { - "offset": 4067100, + "offset": 4068990, "size": 480, }, "generate.cjs": { - "offset": 4067570, + "offset": 4069460, "size": 3460, }, "index.cjs": { - "offset": 4071020, + "offset": 4072920, "size": 330, }, "parse.cjs": { - "offset": 4071350, + "offset": 4073250, "size": 15030, }, "scanner.cjs": { - "offset": 4086370, + "offset": 4088270, "size": 2700, }, "walk.cjs": { - "offset": 4089070, + "offset": 4090970, "size": 1290, }, }, @@ -30685,83 +30693,83 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen "generator": { "files": { "create.cjs": { - "offset": 4090360, + "offset": 4092260, "size": 3070, }, "index.cjs": { - "offset": 4093430, + "offset": 4095320, "size": 200, }, "sourceMap.cjs": { - "offset": 4093620, + "offset": 4095510, "size": 2690, }, "token-before.cjs": { - "offset": 4096300, + "offset": 4098200, "size": 5100, }, }, }, "index.cjs": { - "offset": 4101400, + "offset": 4103300, "size": 1860, }, "lexer": { "files": { "Lexer.cjs": { - "offset": 4103260, + "offset": 4105150, "size": 17140, }, "error.cjs": { - "offset": 4120400, + "offset": 4122290, "size": 3490, }, "generic-an-plus-b.cjs": { - "offset": 4123880, + "offset": 4125780, "size": 6850, }, "generic-const.cjs": { - "offset": 4130720, + "offset": 4132620, "size": 210, }, "generic-urange.cjs": { - "offset": 4130930, + "offset": 4132830, "size": 4460, }, "generic.cjs": { - "offset": 4135380, + "offset": 4137280, "size": 21090, }, "index.cjs": { - "offset": 4156460, + "offset": 4158360, "size": 90, }, "match-graph.cjs": { - "offset": 4156550, + "offset": 4158450, "size": 15440, }, "match.cjs": { - "offset": 4171980, + "offset": 4173880, "size": 19790, }, "prepare-tokens.cjs": { - "offset": 4191770, + "offset": 4193670, "size": 1150, }, "search.cjs": { - "offset": 4192920, + "offset": 4194820, "size": 1640, }, "structure.cjs": { - "offset": 4194560, + "offset": 4196450, "size": 5330, }, "trace.cjs": { - "offset": 4199880, + "offset": 4201780, "size": 1750, }, "units.cjs": { - "offset": 4201630, + "offset": 4203520, "size": 1720, }, }, @@ -30769,23 +30777,23 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen "parser": { "files": { "SyntaxError.cjs": { - "offset": 4203340, + "offset": 4205240, "size": 2610, }, "create.cjs": { - "offset": 4205950, + "offset": 4207840, "size": 12890, }, "index.cjs": { - "offset": 4218830, + "offset": 4220730, "size": 180, }, "parse-selector.cjs": { - "offset": 4219010, + "offset": 4220910, "size": 220, }, "sequence.cjs": { - "offset": 4219230, + "offset": 4221130, "size": 1030, }, }, @@ -30795,47 +30803,47 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen "atrule": { "files": { "container.cjs": { - "offset": 4220260, + "offset": 4222160, "size": 900, }, "font-face.cjs": { - "offset": 4221160, + "offset": 4223050, "size": 180, }, "import.cjs": { - "offset": 4221330, + "offset": 4223230, "size": 2690, }, "index.cjs": { - "offset": 4224010, + "offset": 4225910, "size": 650, }, "layer.cjs": { - "offset": 4224660, + "offset": 4226560, "size": 270, }, "media.cjs": { - "offset": 4224930, + "offset": 4226830, "size": 290, }, "nest.cjs": { - "offset": 4225220, + "offset": 4227110, "size": 270, }, "page.cjs": { - "offset": 4225490, + "offset": 4227380, "size": 270, }, "scope.cjs": { - "offset": 4225750, + "offset": 4227650, "size": 280, }, "starting-style.cjs": { - "offset": 4226030, + "offset": 4227930, "size": 200, }, "supports.cjs": { - "offset": 4226230, + "offset": 4228130, "size": 300, }, }, @@ -30843,263 +30851,263 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen "config": { "files": { "generator.cjs": { - "offset": 4226530, + "offset": 4228430, "size": 150, }, "lexer.cjs": { - "offset": 4226680, + "offset": 4228580, "size": 320, }, "mix.cjs": { - "offset": 4227000, + "offset": 4228900, "size": 3690, }, "parser-selector.cjs": { - "offset": 4230680, + "offset": 4232580, "size": 460, }, "parser.cjs": { - "offset": 4231140, + "offset": 4233040, "size": 1260, }, "walker.cjs": { - "offset": 4232390, + "offset": 4234290, "size": 130, }, }, }, "create.cjs": { - "offset": 4232520, + "offset": 4234410, "size": 1720, }, "function": { "files": { "expression.cjs": { - "offset": 4234230, + "offset": 4236130, "size": 210, }, "var.cjs": { - "offset": 4234430, + "offset": 4236330, "size": 1170, }, }, }, "index.cjs": { - "offset": 4235600, + "offset": 4237490, "size": 300, }, "node": { "files": { "AnPlusB.cjs": { - "offset": 4235890, + "offset": 4237790, "size": 8090, }, "Atrule.cjs": { - "offset": 4243970, + "offset": 4245870, "size": 2520, }, "AtrulePrelude.cjs": { - "offset": 4246490, + "offset": 4248380, "size": 1150, }, "AttributeSelector.cjs": { - "offset": 4247630, + "offset": 4249530, "size": 3640, }, "Block.cjs": { - "offset": 4251270, + "offset": 4253160, "size": 2340, }, "Brackets.cjs": { - "offset": 4253600, + "offset": 4255500, "size": 760, }, "CDC.cjs": { - "offset": 4254350, + "offset": 4256250, "size": 460, }, "CDO.cjs": { - "offset": 4254810, + "offset": 4256710, "size": 470, }, "ClassSelector.cjs": { - "offset": 4255280, + "offset": 4257170, "size": 620, }, "Combinator.cjs": { - "offset": 4255900, + "offset": 4257790, "size": 1430, }, "Comment.cjs": { - "offset": 4257330, + "offset": 4259220, "size": 860, }, "Condition.cjs": { - "offset": 4258180, + "offset": 4260080, "size": 2980, }, "Declaration.cjs": { - "offset": 4261150, + "offset": 4263050, "size": 4540, }, "DeclarationList.cjs": { - "offset": 4265680, + "offset": 4267580, "size": 1480, }, "Dimension.cjs": { - "offset": 4267160, + "offset": 4269060, "size": 650, }, "Feature.cjs": { - "offset": 4267800, + "offset": 4269700, "size": 2360, }, "FeatureFunction.cjs": { - "offset": 4270160, + "offset": 4272060, "size": 1580, }, "FeatureRange.cjs": { - "offset": 4271730, + "offset": 4273630, "size": 3350, }, "Function.cjs": { - "offset": 4275080, + "offset": 4276970, "size": 1070, }, "GeneralEnclosed.cjs": { - "offset": 4276140, + "offset": 4278040, "size": 1550, }, "Hash.cjs": { - "offset": 4277690, + "offset": 4279580, "size": 590, }, "IdSelector.cjs": { - "offset": 4278270, + "offset": 4280170, "size": 850, }, "Identifier.cjs": { - "offset": 4279120, + "offset": 4281020, "size": 490, }, "Layer.cjs": { - "offset": 4279600, + "offset": 4281500, "size": 690, }, "LayerList.cjs": { - "offset": 4280290, + "offset": 4282190, "size": 770, }, "MediaQuery.cjs": { - "offset": 4281060, + "offset": 4282960, "size": 2570, }, "MediaQueryList.cjs": { - "offset": 4283620, + "offset": 4285520, "size": 740, }, "NestingSelector.cjs": { - "offset": 4284360, + "offset": 4286260, "size": 540, }, "Nth.cjs": { - "offset": 4284900, + "offset": 4286800, "size": 1050, }, "Number.cjs": { - "offset": 4285940, + "offset": 4287840, "size": 480, }, "Operator.cjs": { - "offset": 4286420, + "offset": 4288320, "size": 510, }, "Parentheses.cjs": { - "offset": 4286920, + "offset": 4288820, "size": 780, }, "Percentage.cjs": { - "offset": 4287700, + "offset": 4289590, "size": 510, }, "PseudoClassSelector.cjs": { - "offset": 4288200, + "offset": 4290100, "size": 1670, }, "PseudoElementSelector.cjs": { - "offset": 4289860, + "offset": 4291760, "size": 1730, }, "Ratio.cjs": { - "offset": 4291590, + "offset": 4293490, "size": 2040, }, "Raw.cjs": { - "offset": 4293630, + "offset": 4295520, "size": 1150, }, "Rule.cjs": { - "offset": 4294770, + "offset": 4296670, "size": 1230, }, "Scope.cjs": { - "offset": 4296000, + "offset": 4297900, "size": 1620, }, "Selector.cjs": { - "offset": 4297610, + "offset": 4299510, "size": 760, }, "SelectorList.cjs": { - "offset": 4298370, + "offset": 4300270, "size": 810, }, "String.cjs": { - "offset": 4299180, + "offset": 4301080, "size": 560, }, "StyleSheet.cjs": { - "offset": 4299740, + "offset": 4301630, "size": 2020, }, "SupportsDeclaration.cjs": { - "offset": 4301750, + "offset": 4303650, "size": 780, }, "TypeSelector.cjs": { - "offset": 4302530, + "offset": 4304420, "size": 1190, }, "UnicodeRange.cjs": { - "offset": 4303720, + "offset": 4305610, "size": 4540, }, "Url.cjs": { - "offset": 4308250, + "offset": 4310150, "size": 1290, }, "Value.cjs": { - "offset": 4309540, + "offset": 4311440, "size": 470, }, "WhiteSpace.cjs": { - "offset": 4310010, + "offset": 4311910, "size": 650, }, "index-generate.cjs": { - "offset": 4310650, + "offset": 4312550, "size": 4320, }, "index-parse-selector.cjs": { - "offset": 4314970, + "offset": 4316870, "size": 1560, }, "index-parse.cjs": { - "offset": 4316520, + "offset": 4318420, "size": 4170, }, "index.cjs": { - "offset": 4320690, + "offset": 4322590, "size": 3890, }, }, @@ -31107,11 +31115,11 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen "pseudo": { "files": { "index.cjs": { - "offset": 4324570, + "offset": 4326470, "size": 1080, }, "lang.cjs": { - "offset": 4325650, + "offset": 4327540, "size": 820, }, }, @@ -31119,23 +31127,23 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen "scope": { "files": { "atrulePrelude.cjs": { - "offset": 4326470, + "offset": 4328360, "size": 150, }, "default.cjs": { - "offset": 4326610, + "offset": 4328510, "size": 2250, }, "index.cjs": { - "offset": 4328860, + "offset": 4330760, "size": 250, }, "selector.cjs": { - "offset": 4329100, + "offset": 4331000, "size": 2540, }, "value.cjs": { - "offset": 4331640, + "offset": 4333540, "size": 730, }, }, @@ -31145,35 +31153,35 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen "tokenizer": { "files": { "OffsetToLocation.cjs": { - "offset": 4332370, + "offset": 4334270, "size": 2580, }, "TokenStream.cjs": { - "offset": 4334940, + "offset": 4336840, "size": 11380, }, "adopt-buffer.cjs": { - "offset": 4346320, + "offset": 4348220, "size": 270, }, "char-code-definitions.cjs": { - "offset": 4346590, + "offset": 4348480, "size": 7200, }, "index.cjs": { - "offset": 4353780, + "offset": 4355680, "size": 23720, }, "names.cjs": { - "offset": 4377500, + "offset": 4379400, "size": 570, }, "types.cjs": { - "offset": 4378070, + "offset": 4379960, "size": 2110, }, "utils.cjs": { - "offset": 4380170, + "offset": 4382070, "size": 8440, }, }, @@ -31181,51 +31189,51 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen "utils": { "files": { "List.cjs": { - "offset": 4388610, + "offset": 4390510, "size": 12830, }, "clone.cjs": { - "offset": 4401440, + "offset": 4403330, "size": 510, }, "create-custom-error.cjs": { - "offset": 4401940, + "offset": 4403840, "size": 540, }, "ident.cjs": { - "offset": 4402470, + "offset": 4404370, "size": 3530, }, "index.cjs": { - "offset": 4406000, + "offset": 4407890, "size": 530, }, "names.cjs": { - "offset": 4406520, + "offset": 4408420, "size": 3070, }, "string.cjs": { - "offset": 4409590, + "offset": 4411490, "size": 3300, }, "url.cjs": { - "offset": 4412880, + "offset": 4414780, "size": 3370, }, }, }, "version.cjs": { - "offset": 4416250, + "offset": 4418150, "size": 100, }, "walker": { "files": { "create.cjs": { - "offset": 4416340, + "offset": 4418240, "size": 7540, }, "index.cjs": { - "offset": 4423870, + "offset": 4425770, "size": 190, }, }, @@ -31235,7 +31243,7 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen "data": { "files": { "patch.json": { - "offset": 4424060, + "offset": 4425960, "size": 46710, }, }, @@ -31243,27 +31251,27 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen "dist": { "files": { "csstree.esm.js": { - "offset": 4470770, + "offset": 4472660, "size": 202540, }, "csstree.js": { - "offset": 4673300, + "offset": 4675200, "size": 202660, }, "data.cjs": { - "offset": 4875960, + "offset": 4877850, "size": 98180, }, "data.js": { - "offset": 4974130, + "offset": 4976030, "size": 98180, }, "version.cjs": { - "offset": 5072310, + "offset": 5074210, "size": 30, }, "version.js": { - "offset": 5072330, + "offset": 5074230, "size": 40, }, }, @@ -31273,48 +31281,48 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen "convertor": { "files": { "create.js": { - "offset": 5072360, + "offset": 5074260, "size": 760, }, "index.js": { - "offset": 5073120, + "offset": 5075020, "size": 130, }, }, }, "data-patch.js": { - "offset": 5073250, + "offset": 5075150, "size": 160, }, "data.js": { "executable": true, - "offset": 5073410, + "offset": 5075300, "size": 3540, }, "definition-syntax": { "files": { "SyntaxError.js": { - "offset": 5076940, + "offset": 5078840, "size": 410, }, "generate.js": { - "offset": 5077350, + "offset": 5079240, "size": 3420, }, "index.js": { - "offset": 5080770, + "offset": 5082660, "size": 160, }, "parse.js": { - "offset": 5080930, + "offset": 5082820, "size": 14980, }, "scanner.js": { - "offset": 5095900, + "offset": 5097800, "size": 2650, }, "walk.js": { - "offset": 5098550, + "offset": 5100450, "size": 1270, }, }, @@ -31322,83 +31330,83 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen "generator": { "files": { "create.js": { - "offset": 5099820, + "offset": 5101720, "size": 2950, }, "index.js": { - "offset": 5102770, + "offset": 5104660, "size": 140, }, "sourceMap.js": { - "offset": 5102910, + "offset": 5104800, "size": 2610, }, "token-before.js": { - "offset": 5105510, + "offset": 5107410, "size": 4560, }, }, }, "index.js": { - "offset": 5110070, + "offset": 5111960, "size": 780, }, "lexer": { "files": { "Lexer.js": { - "offset": 5110840, + "offset": 5112740, "size": 16890, }, "error.js": { - "offset": 5127720, + "offset": 5129620, "size": 3340, }, "generic-an-plus-b.js": { - "offset": 5131060, + "offset": 5132960, "size": 6690, }, "generic-const.js": { - "offset": 5137750, + "offset": 5139640, "size": 160, }, "generic-urange.js": { - "offset": 5137900, + "offset": 5139800, "size": 4330, }, "generic.js": { - "offset": 5142230, + "offset": 5144130, "size": 20720, }, "index.js": { - "offset": 5162950, + "offset": 5164840, "size": 40, }, "match-graph.js": { - "offset": 5162980, + "offset": 5164880, "size": 15320, }, "match.js": { - "offset": 5178290, + "offset": 5180190, "size": 19520, }, "prepare-tokens.js": { - "offset": 5197810, + "offset": 5199710, "size": 1100, }, "search.js": { - "offset": 5198900, + "offset": 5200800, "size": 1590, }, "structure.js": { - "offset": 5200480, + "offset": 5202380, "size": 5260, }, "trace.js": { - "offset": 5205740, + "offset": 5207630, "size": 1640, }, "units.js": { - "offset": 5207370, + "offset": 5209270, "size": 1540, }, }, @@ -31406,23 +31414,23 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen "parser": { "files": { "SyntaxError.js": { - "offset": 5208910, + "offset": 5210810, "size": 2550, }, "create.js": { - "offset": 5211460, + "offset": 5213360, "size": 12650, }, "index.js": { - "offset": 5224110, + "offset": 5226010, "size": 140, }, "parse-selector.js": { - "offset": 5224240, + "offset": 5226140, "size": 140, }, "sequence.js": { - "offset": 5224380, + "offset": 5226280, "size": 990, }, }, @@ -31432,47 +31440,47 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen "atrule": { "files": { "container.js": { - "offset": 5225360, + "offset": 5227260, "size": 850, }, "font-face.js": { - "offset": 5226200, + "offset": 5228100, "size": 130, }, "import.js": { - "offset": 5226330, + "offset": 5228230, "size": 2710, }, "index.js": { - "offset": 5229040, + "offset": 5230940, "size": 560, }, "layer.js": { - "offset": 5229590, + "offset": 5231490, "size": 230, }, "media.js": { - "offset": 5229820, + "offset": 5231720, "size": 250, }, "nest.js": { - "offset": 5230070, + "offset": 5231970, "size": 240, }, "page.js": { - "offset": 5230310, + "offset": 5232200, "size": 240, }, "scope.js": { - "offset": 5230540, + "offset": 5232440, "size": 250, }, "starting-style.js": { - "offset": 5230780, + "offset": 5232680, "size": 150, }, "supports.js": { - "offset": 5230920, + "offset": 5232820, "size": 260, }, }, @@ -31480,263 +31488,263 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen "config": { "files": { "generator.js": { - "offset": 5231180, + "offset": 5233070, "size": 90, }, "lexer.js": { - "offset": 5231260, + "offset": 5233160, "size": 240, }, "mix.js": { - "offset": 5231490, + "offset": 5233390, "size": 3670, }, "parser-selector.js": { - "offset": 5235160, + "offset": 5237050, "size": 360, }, "parser.js": { - "offset": 5235510, + "offset": 5237410, "size": 1160, }, "walker.js": { - "offset": 5236660, + "offset": 5238560, "size": 80, }, }, }, "create.js": { - "offset": 5236740, + "offset": 5238630, "size": 1610, }, "function": { "files": { "expression.js": { - "offset": 5238340, + "offset": 5240240, "size": 160, }, "var.js": { - "offset": 5238500, + "offset": 5240390, "size": 1140, }, }, }, "index.js": { - "offset": 5239630, + "offset": 5241530, "size": 280, }, "node": { "files": { "AnPlusB.js": { - "offset": 5239910, + "offset": 5241800, "size": 7840, }, "Atrule.js": { - "offset": 5247750, + "offset": 5249640, "size": 2400, }, "AtrulePrelude.js": { - "offset": 5250150, + "offset": 5252040, "size": 1040, }, "AttributeSelector.js": { - "offset": 5251180, + "offset": 5253080, "size": 3570, }, "Block.js": { - "offset": 5254750, + "offset": 5256650, "size": 2250, }, "Brackets.js": { - "offset": 5257000, + "offset": 5258890, "size": 690, }, "CDC.js": { - "offset": 5257680, + "offset": 5259580, "size": 360, }, "CDO.js": { - "offset": 5258030, + "offset": 5259930, "size": 360, }, "ClassSelector.js": { - "offset": 5258390, + "offset": 5260280, "size": 520, }, "Combinator.js": { - "offset": 5258900, + "offset": 5260800, "size": 1340, }, "Comment.js": { - "offset": 5260240, + "offset": 5262130, "size": 750, }, "Condition.js": { - "offset": 5260990, + "offset": 5262880, "size": 2940, }, "Declaration.js": { - "offset": 5263920, + "offset": 5265820, "size": 4400, }, "DeclarationList.js": { - "offset": 5268320, + "offset": 5270210, "size": 1420, }, "Dimension.js": { - "offset": 5269730, + "offset": 5271630, "size": 540, }, "Feature.js": { - "offset": 5270270, + "offset": 5272170, "size": 2320, }, "FeatureFunction.js": { - "offset": 5272580, + "offset": 5274480, "size": 1520, }, "FeatureRange.js": { - "offset": 5274090, + "offset": 5275990, "size": 3310, }, "Function.js": { - "offset": 5277400, + "offset": 5279300, "size": 980, }, "GeneralEnclosed.js": { - "offset": 5278370, + "offset": 5280270, "size": 1500, }, "Hash.js": { - "offset": 5279870, + "offset": 5281770, "size": 470, }, "IdSelector.js": { - "offset": 5280340, + "offset": 5282240, "size": 750, }, "Identifier.js": { - "offset": 5281090, + "offset": 5282980, "size": 380, }, "Layer.js": { - "offset": 5281460, + "offset": 5283360, "size": 590, }, "LayerList.js": { - "offset": 5282040, + "offset": 5283940, "size": 670, }, "MediaQuery.js": { - "offset": 5282710, + "offset": 5284600, "size": 2490, }, "MediaQueryList.js": { - "offset": 5285190, + "offset": 5287090, "size": 630, }, "NestingSelector.js": { - "offset": 5285820, + "offset": 5287720, "size": 440, }, "Nth.js": { - "offset": 5286260, + "offset": 5288160, "size": 950, }, "Number.js": { - "offset": 5287200, + "offset": 5289100, "size": 400, }, "Operator.js": { - "offset": 5287600, + "offset": 5289500, "size": 410, }, "Parentheses.js": { - "offset": 5288010, + "offset": 5289910, "size": 700, }, "Percentage.js": { - "offset": 5288700, + "offset": 5290600, "size": 410, }, "PseudoClassSelector.js": { - "offset": 5289110, + "offset": 5291010, "size": 1570, }, "PseudoElementSelector.js": { - "offset": 5290670, + "offset": 5292570, "size": 1620, }, "Ratio.js": { - "offset": 5292290, + "offset": 5294190, "size": 2000, }, "Raw.js": { - "offset": 5294280, + "offset": 5296180, "size": 1050, }, "Rule.js": { - "offset": 5295330, + "offset": 5297230, "size": 1120, }, "Scope.js": { - "offset": 5296440, + "offset": 5298340, "size": 1510, }, "Selector.js": { - "offset": 5297950, + "offset": 5299850, "size": 670, }, "SelectorList.js": { - "offset": 5298610, + "offset": 5300510, "size": 680, }, "String.js": { - "offset": 5299290, + "offset": 5301190, "size": 480, }, "StyleSheet.js": { - "offset": 5299760, + "offset": 5301660, "size": 1930, }, "SupportsDeclaration.js": { - "offset": 5301690, + "offset": 5303590, "size": 700, }, "TypeSelector.js": { - "offset": 5302380, + "offset": 5304280, "size": 1090, }, "UnicodeRange.js": { - "offset": 5303470, + "offset": 5305370, "size": 4360, }, "Url.js": { - "offset": 5307830, + "offset": 5309730, "size": 1250, }, "Value.js": { - "offset": 5309080, + "offset": 5310980, "size": 380, }, "WhiteSpace.js": { - "offset": 5309460, + "offset": 5311350, "size": 550, }, "index-generate.js": { - "offset": 5310000, + "offset": 5311900, "size": 2790, }, "index-parse-selector.js": { - "offset": 5312780, + "offset": 5314680, "size": 970, }, "index-parse.js": { - "offset": 5313750, + "offset": 5315650, "size": 2640, }, "index.js": { - "offset": 5316390, + "offset": 5318280, "size": 2250, }, }, @@ -31744,11 +31752,11 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen "pseudo": { "files": { "index.js": { - "offset": 5318630, + "offset": 5320530, "size": 1050, }, "lang.js": { - "offset": 5319680, + "offset": 5321570, "size": 790, }, }, @@ -31756,23 +31764,23 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen "scope": { "files": { "atrulePrelude.js": { - "offset": 5320460, + "offset": 5322350, "size": 70, }, "default.js": { - "offset": 5320530, + "offset": 5322420, "size": 2360, }, "index.js": { - "offset": 5322890, + "offset": 5324780, "size": 170, }, "selector.js": { - "offset": 5323050, + "offset": 5324950, "size": 2570, }, "value.js": { - "offset": 5325610, + "offset": 5327510, "size": 670, }, }, @@ -31782,35 +31790,35 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen "tokenizer": { "files": { "OffsetToLocation.js": { - "offset": 5326280, + "offset": 5328170, "size": 2460, }, "TokenStream.js": { - "offset": 5328730, + "offset": 5330630, "size": 11360, }, "adopt-buffer.js": { - "offset": 5340090, + "offset": 5341980, "size": 230, }, "char-code-definitions.js": { - "offset": 5340310, + "offset": 5342210, "size": 6530, }, "index.js": { - "offset": 5346840, + "offset": 5348740, "size": 20670, }, "names.js": { - "offset": 5367510, + "offset": 5369410, "size": 520, }, "types.js": { - "offset": 5368020, + "offset": 5369920, "size": 1490, }, "utils.js": { - "offset": 5369510, + "offset": 5371410, "size": 7820, }, }, @@ -31818,51 +31826,51 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen "utils": { "files": { "List.js": { - "offset": 5377330, + "offset": 5379230, "size": 12800, }, "clone.js": { - "offset": 5390130, + "offset": 5392020, "size": 470, }, "create-custom-error.js": { - "offset": 5390590, + "offset": 5392490, "size": 480, }, "ident.js": { - "offset": 5391070, + "offset": 5392970, "size": 3410, }, "index.js": { - "offset": 5394470, + "offset": 5396370, "size": 200, }, "names.js": { - "offset": 5394660, + "offset": 5396560, "size": 2940, }, "string.js": { - "offset": 5397600, + "offset": 5399500, "size": 3180, }, "url.js": { - "offset": 5400770, + "offset": 5402670, "size": 3230, }, }, }, "version.js": { - "offset": 5404000, + "offset": 5405900, "size": 150, }, "walker": { "files": { "create.js": { - "offset": 5404150, + "offset": 5406040, "size": 7490, }, "index.js": { - "offset": 5411640, + "offset": 5413530, "size": 140, }, }, @@ -31870,7 +31878,7 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen }, }, "package.json": { - "offset": 5411770, + "offset": 5413670, "size": 2670, }, }, @@ -31878,351 +31886,351 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen "cssstyle": { "files": { "LICENSE": { - "offset": 5414440, + "offset": 5416330, "size": 1050, }, "lib": { "files": { "CSSStyleDeclaration.js": { - "offset": 5415490, + "offset": 5417380, "size": 19120, }, "generated": { "files": { "allProperties.js": { - "offset": 5434600, + "offset": 5436500, "size": 13620, }, "implementedProperties.js": { - "offset": 5448220, + "offset": 5450110, "size": 46890, }, "properties.js": { - "offset": 5495110, + "offset": 5497000, "size": 232600, }, "propertyDefinitions.js": { - "offset": 5727700, + "offset": 5729600, "size": 406290, }, }, }, "normalize.js": { - "offset": 6133990, + "offset": 6135890, "size": 54450, }, "parsers.js": { - "offset": 6188440, + "offset": 6190340, "size": 22440, }, "properties": { "files": { "background.js": { - "offset": 6210880, + "offset": 6212780, "size": 13540, }, "backgroundAttachment.js": { - "offset": 6224420, + "offset": 6226320, "size": 1530, }, "backgroundClip.js": { - "offset": 6225950, + "offset": 6227850, "size": 1530, }, "backgroundColor.js": { - "offset": 6227470, + "offset": 6229370, "size": 1200, }, "backgroundImage.js": { - "offset": 6228670, + "offset": 6230570, "size": 1560, }, "backgroundOrigin.js": { - "offset": 6230230, + "offset": 6232130, "size": 1530, }, "backgroundPosition.js": { - "offset": 6231750, + "offset": 6233650, "size": 6540, }, "backgroundRepeat.js": { - "offset": 6238290, + "offset": 6240190, "size": 2460, }, "backgroundSize.js": { - "offset": 6240740, + "offset": 6242640, "size": 3390, }, "border.js": { - "offset": 6244130, + "offset": 6246030, "size": 2960, }, "borderBottom.js": { - "offset": 6247090, + "offset": 6248990, "size": 2820, }, "borderBottomColor.js": { - "offset": 6249910, + "offset": 6251810, "size": 1480, }, "borderBottomStyle.js": { - "offset": 6251390, + "offset": 6253280, "size": 1480, }, "borderBottomWidth.js": { - "offset": 6252870, + "offset": 6254760, "size": 1530, }, "borderCollapse.js": { - "offset": 6254390, + "offset": 6256290, "size": 1030, }, "borderColor.js": { - "offset": 6255420, + "offset": 6257310, "size": 2790, }, "borderLeft.js": { - "offset": 6258200, + "offset": 6260100, "size": 2780, }, "borderLeftColor.js": { - "offset": 6260980, + "offset": 6262870, "size": 1480, }, "borderLeftStyle.js": { - "offset": 6262450, + "offset": 6264350, "size": 1480, }, "borderLeftWidth.js": { - "offset": 6263920, + "offset": 6265820, "size": 1520, }, "borderRight.js": { - "offset": 6265440, + "offset": 6267340, "size": 2800, }, "borderRightColor.js": { - "offset": 6268240, + "offset": 6270140, "size": 1480, }, "borderRightStyle.js": { - "offset": 6269710, + "offset": 6271610, "size": 1480, }, "borderRightWidth.js": { - "offset": 6271190, + "offset": 6273090, "size": 1530, }, "borderSpacing.js": { - "offset": 6272710, + "offset": 6274610, "size": 1480, }, "borderStyle.js": { - "offset": 6274190, + "offset": 6276090, "size": 2800, }, "borderTop.js": { - "offset": 6276980, + "offset": 6278880, "size": 2750, }, "borderTopColor.js": { - "offset": 6279730, + "offset": 6281630, "size": 1480, }, "borderTopStyle.js": { - "offset": 6281200, + "offset": 6283100, "size": 1480, }, "borderTopWidth.js": { - "offset": 6282680, + "offset": 6284570, "size": 1520, }, "borderWidth.js": { - "offset": 6284190, + "offset": 6286090, "size": 2820, }, "bottom.js": { - "offset": 6287010, + "offset": 6288910, "size": 1050, }, "clear.js": { - "offset": 6288060, + "offset": 6289950, "size": 1020, }, "clip.js": { - "offset": 6289070, + "offset": 6290970, "size": 1850, }, "color.js": { - "offset": 6290920, + "offset": 6292820, "size": 1020, }, "display.js": { - "offset": 6291930, + "offset": 6293830, "size": 6110, }, "flex.js": { - "offset": 6298040, + "offset": 6299940, "size": 5290, }, "flexBasis.js": { - "offset": 6303320, + "offset": 6305220, "size": 1240, }, "flexGrow.js": { - "offset": 6304560, + "offset": 6306460, "size": 1230, }, "flexShrink.js": { - "offset": 6305780, + "offset": 6307680, "size": 1230, }, "float.js": { - "offset": 6307010, + "offset": 6308910, "size": 1020, }, "floodColor.js": { - "offset": 6308030, + "offset": 6309930, "size": 1030, }, "font.js": { - "offset": 6309050, + "offset": 6310950, "size": 8710, }, "fontFamily.js": { - "offset": 6317760, + "offset": 6319660, "size": 2550, }, "fontSize.js": { - "offset": 6320310, + "offset": 6322210, "size": 1240, }, "fontStyle.js": { - "offset": 6321540, + "offset": 6323440, "size": 1730, }, "fontVariant.js": { - "offset": 6323260, + "offset": 6325160, "size": 1640, }, "fontWeight.js": { - "offset": 6324900, + "offset": 6326800, "size": 1320, }, "height.js": { - "offset": 6326210, + "offset": 6328110, "size": 1070, }, "left.js": { - "offset": 6327270, + "offset": 6329170, "size": 1050, }, "lightingColor.js": { - "offset": 6328320, + "offset": 6330220, "size": 1030, }, "lineHeight.js": { - "offset": 6329340, + "offset": 6331240, "size": 1220, }, "margin.js": { - "offset": 6330560, + "offset": 6332460, "size": 1930, }, "marginBottom.js": { - "offset": 6332490, + "offset": 6334390, "size": 1290, }, "marginLeft.js": { - "offset": 6333770, + "offset": 6335670, "size": 1280, }, "marginRight.js": { - "offset": 6335050, + "offset": 6336950, "size": 1290, }, "marginTop.js": { - "offset": 6336330, + "offset": 6338230, "size": 1280, }, "opacity.js": { - "offset": 6337610, + "offset": 6339510, "size": 1050, }, "outlineColor.js": { - "offset": 6338660, + "offset": 6340560, "size": 1030, }, "padding.js": { - "offset": 6339680, + "offset": 6341580, "size": 1970, }, "paddingBottom.js": { - "offset": 6341640, + "offset": 6343540, "size": 1300, }, "paddingLeft.js": { - "offset": 6342940, + "offset": 6344840, "size": 1300, }, "paddingRight.js": { - "offset": 6344240, + "offset": 6346140, "size": 1300, }, "paddingTop.js": { - "offset": 6345540, + "offset": 6347440, "size": 1300, }, "right.js": { - "offset": 6346830, + "offset": 6348730, "size": 1050, }, "stopColor.js": { - "offset": 6347880, + "offset": 6349780, "size": 1020, }, "top.js": { - "offset": 6348900, + "offset": 6350800, "size": 1050, }, "webkitBorderAfterColor.js": { - "offset": 6349940, + "offset": 6351840, "size": 1040, }, "webkitBorderBeforeColor.js": { - "offset": 6350980, + "offset": 6352880, "size": 1040, }, "webkitBorderEndColor.js": { - "offset": 6352020, + "offset": 6353910, "size": 1040, }, "webkitBorderStartColor.js": { - "offset": 6353050, + "offset": 6354950, "size": 1040, }, "webkitColumnRuleColor.js": { - "offset": 6354090, + "offset": 6355980, "size": 1040, }, "webkitTapHighlightColor.js": { - "offset": 6355120, + "offset": 6357020, "size": 1040, }, "webkitTextEmphasisColor.js": { - "offset": 6356160, + "offset": 6358060, "size": 1040, }, "webkitTextFillColor.js": { - "offset": 6357200, + "offset": 6359090, "size": 1040, }, "webkitTextStrokeColor.js": { - "offset": 6358230, + "offset": 6360130, "size": 1040, }, "width.js": { - "offset": 6359260, + "offset": 6361160, "size": 1070, }, }, @@ -32230,19 +32238,19 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen "utils": { "files": { "allExtraProperties.js": { - "offset": 6360320, + "offset": 6362220, "size": 3390, }, "camelize.js": { - "offset": 6363710, + "offset": 6365610, "size": 1090, }, "propertyDescriptors.js": { - "offset": 6364790, + "offset": 6366690, "size": 1580, }, "strings.js": { - "offset": 6366370, + "offset": 6368270, "size": 5600, }, }, @@ -32250,7 +32258,7 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen }, }, "package.json": { - "offset": 6371970, + "offset": 6373870, "size": 1010, }, }, @@ -32258,23 +32266,23 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen "data-urls": { "files": { "LICENSE.txt": { - "offset": 6372970, + "offset": 6374870, "size": 1070, }, "lib": { "files": { "parser.js": { - "offset": 6374040, + "offset": 6375940, "size": 1690, }, "utils.js": { - "offset": 6375730, + "offset": 6377620, "size": 470, }, }, }, "package.json": { - "offset": 6376190, + "offset": 6378080, "size": 700, }, }, @@ -32282,29 +32290,29 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen "debug": { "files": { "LICENSE": { - "offset": 6376890, + "offset": 6378780, "size": 1140, }, "package.json": { - "offset": 6378030, + "offset": 6379920, "size": 910, }, "src": { "files": { "browser.js": { - "offset": 6378940, + "offset": 6380830, "size": 6110, }, "common.js": { - "offset": 6385040, + "offset": 6386940, "size": 6920, }, "index.js": { - "offset": 6391950, + "offset": 6393850, "size": 320, }, "node.js": { - "offset": 6392270, + "offset": 6394170, "size": 4730, }, }, @@ -32314,19 +32322,19 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen "decimal.js": { "files": { "LICENCE.md": { - "offset": 6397000, + "offset": 6398890, "size": 1110, }, "decimal.js": { - "offset": 6398100, + "offset": 6400000, "size": 136680, }, "decimal.mjs": { - "offset": 6534770, + "offset": 6536670, "size": 127790, }, "package.json": { - "offset": 6662560, + "offset": 6664460, "size": 880, }, }, @@ -32334,298 +32342,210 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen "entities": { "files": { "LICENSE": { - "offset": 6663430, + "offset": 6665330, "size": 1260, }, - "decode.js": { - "offset": 6664690, - "size": 150, - }, "dist": { "files": { - "commonjs": { + "decode-codepoint.d.ts.map": { + "offset": 6666590, + "size": 200, + }, + "decode-codepoint.js": { + "offset": 6666790, + "size": 1160, + }, + "decode-codepoint.js.map": { + "offset": 6667950, + "size": 1280, + }, + "decode.d.ts.map": { + "offset": 6669220, + "size": 2010, + }, + "decode.js": { + "offset": 6671220, + "size": 22930, + }, + "decode.js.map": { + "offset": 6694150, + "size": 13730, + }, + "encode.d.ts.map": { + "offset": 6707870, + "size": 250, + }, + "encode.js": { + "offset": 6708120, + "size": 3280, + }, + "encode.js.map": { + "offset": 6711390, + "size": 2390, + }, + "escape.d.ts.map": { + "offset": 6713780, + "size": 600, + }, + "escape.js": { + "offset": 6714380, + "size": 4740, + }, + "escape.js.map": { + "offset": 6719120, + "size": 3240, + }, + "generated": { "files": { - "decode-codepoint.d.ts.map": { - "offset": 6664840, - "size": 350, - }, - "decode-codepoint.js": { - "offset": 6665190, - "size": 2290, - }, - "decode-codepoint.js.map": { - "offset": 6667480, - "size": 1850, - }, - "decode.d.ts.map": { - "offset": 6669330, - "size": 2100, - }, - "decode.js": { - "offset": 6671420, - "size": 21470, - }, - "decode.js.map": { - "offset": 6692890, - "size": 11840, - }, - "encode.d.ts.map": { - "offset": 6704720, - "size": 260, - }, - "encode.js": { - "offset": 6704980, - "size": 2870, - }, - "encode.js.map": { - "offset": 6707840, - "size": 1820, + "decode-data-html.d.ts.map": { + "offset": 6722350, + "size": 190, }, - "escape.d.ts.map": { - "offset": 6709660, - "size": 590, + "decode-data-html.js": { + "offset": 6722540, + "size": 32460, }, - "escape.js": { - "offset": 6710240, - "size": 4290, + "decode-data-html.js.map": { + "offset": 6754990, + "size": 290, }, - "escape.js.map": { - "offset": 6714520, - "size": 2840, + "decode-data-xml.d.ts.map": { + "offset": 6755270, + "size": 190, }, - "generated": { - "files": { - "decode-data-html.d.ts.map": { - "offset": 6717360, - "size": 180, - }, - "decode-data-html.js": { - "offset": 6717540, - "size": 47860, - }, - "decode-data-html.js.map": { - "offset": 6765400, - "size": 340, - }, - "decode-data-xml.d.ts.map": { - "offset": 6765740, - "size": 180, - }, - "decode-data-xml.js": { - "offset": 6765910, - "size": 420, - }, - "decode-data-xml.js.map": { - "offset": 6766330, - "size": 340, - }, - "encode-html.d.ts.map": { - "offset": 6766660, - "size": 360, - }, - "encode-html.js": { - "offset": 6767010, - "size": 27230, - }, - "encode-html.js.map": { - "offset": 6794240, - "size": 48200, - }, - }, + "decode-data-xml.js": { + "offset": 6755460, + "size": 320, }, - "index.d.ts.map": { - "offset": 6842440, - "size": 1340, + "decode-data-xml.js.map": { + "offset": 6755770, + "size": 280, }, - "index.js": { - "offset": 6843770, - "size": 7250, + "encode-html.d.ts.map": { + "offset": 6756050, + "size": 270, }, - "index.js.map": { - "offset": 6851020, - "size": 2730, + "encode-html.js": { + "offset": 6756310, + "size": 13410, }, - "package.json": { - "offset": 6853740, - "size": 30, + "encode-html.js.map": { + "offset": 6769710, + "size": 350, }, }, }, - "esm": { + "index.d.ts.map": { + "offset": 6770060, + "size": 1120, + }, + "index.js": { + "offset": 6771180, + "size": 3610, + }, + "index.js.map": { + "offset": 6774780, + "size": 2230, + }, + "internal": { "files": { - "decode-codepoint.d.ts.map": { - "offset": 6853770, - "size": 350, - }, - "decode-codepoint.js": { - "offset": 6854120, - "size": 2100, - }, - "decode-codepoint.js.map": { - "offset": 6856210, - "size": 1840, - }, - "decode.d.ts.map": { - "offset": 6858050, - "size": 2100, - }, - "decode.js": { - "offset": 6860150, - "size": 20170, - }, - "decode.js.map": { - "offset": 6880310, - "size": 11900, - }, - "encode.d.ts.map": { - "offset": 6892210, - "size": 260, - }, - "encode.js": { - "offset": 6892460, - "size": 2680, - }, - "encode.js.map": { - "offset": 6895140, - "size": 1860, + "bin-trie-flags.d.ts.map": { + "offset": 6777010, + "size": 250, }, - "escape.d.ts.map": { - "offset": 6896990, - "size": 590, + "bin-trie-flags.js": { + "offset": 6777250, + "size": 950, }, - "escape.js": { - "offset": 6897580, - "size": 4090, + "bin-trie-flags.js.map": { + "offset": 6778200, + "size": 300, }, - "escape.js.map": { - "offset": 6901660, - "size": 2900, + "decode-shared.d.ts.map": { + "offset": 6778490, + "size": 200, }, - "generated": { - "files": { - "decode-data-html.d.ts.map": { - "offset": 6904550, - "size": 180, - }, - "decode-data-html.js": { - "offset": 6904730, - "size": 47780, - }, - "decode-data-html.js.map": { - "offset": 6952500, - "size": 360, - }, - "decode-data-xml.d.ts.map": { - "offset": 6952860, - "size": 180, - }, - "decode-data-xml.js": { - "offset": 6953030, - "size": 330, - }, - "decode-data-xml.js.map": { - "offset": 6953360, - "size": 350, - }, - "encode-html.d.ts.map": { - "offset": 6953710, - "size": 360, - }, - "encode-html.js": { - "offset": 6954060, - "size": 27150, - }, - "encode-html.js.map": { - "offset": 6981200, - "size": 48220, - }, - }, + "decode-shared.js": { + "offset": 6778690, + "size": 620, }, - "index.d.ts.map": { - "offset": 7029420, - "size": 1340, + "decode-shared.js.map": { + "offset": 6779310, + "size": 690, }, - "index.js": { - "offset": 7030760, - "size": 4350, + "encode-shared.d.ts.map": { + "offset": 6779990, + "size": 460, }, - "index.js.map": { - "offset": 7035100, - "size": 2710, + "encode-shared.js": { + "offset": 6780450, + "size": 3620, }, - "package.json": { - "offset": 7037810, - "size": 30, + "encode-shared.js.map": { + "offset": 6784070, + "size": 3050, }, }, }, }, }, - "escape.js": { - "offset": 7037830, - "size": 150, - }, "package.json": { - "offset": 7037980, - "size": 2260, + "offset": 6787120, + "size": 1390, }, "src": { "files": { "decode-codepoint.ts": { - "offset": 7040230, - "size": 2170, - }, - "decode.spec.ts": { - "offset": 7042400, - "size": 11680, + "offset": 6788500, + "size": 1150, }, "decode.ts": { - "offset": 7054080, - "size": 20300, - }, - "encode.spec.ts": { - "offset": 7074380, - "size": 3320, + "offset": 6789650, + "size": 23650, }, "encode.ts": { - "offset": 7077690, - "size": 2740, - }, - "escape.spec.ts": { - "offset": 7080430, - "size": 500, + "offset": 6813290, + "size": 3310, }, "escape.ts": { - "offset": 7080930, - "size": 4620, + "offset": 6816600, + "size": 5180, }, "generated": { "files": { - ".eslintrc.json": { - "offset": 7085540, - "size": 250, - }, "decode-data-html.ts": { - "offset": 7085790, - "size": 47760, + "offset": 6821770, + "size": 32430, }, "decode-data-xml.ts": { - "offset": 7133550, - "size": 320, + "offset": 6854200, + "size": 300, }, "encode-html.ts": { - "offset": 7133870, - "size": 24040, + "offset": 6854490, + "size": 13440, }, }, }, - "index.spec.ts": { - "offset": 7157900, - "size": 4370, - }, "index.ts": { - "offset": 7162270, - "size": 4990, + "offset": 6867930, + "size": 4190, + }, + "internal": { + "files": { + "bin-trie-flags.ts": { + "offset": 6872120, + "size": 730, + }, + "decode-shared.ts": { + "offset": 6872840, + "size": 610, + }, + "encode-shared.ts": { + "offset": 6873450, + "size": 4540, + }, + }, }, }, }, @@ -32634,19 +32554,19 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen "html-encoding-sniffer": { "files": { "LICENSE.txt": { - "offset": 7167260, + "offset": 6877980, "size": 1070, }, "lib": { "files": { "html-encoding-sniffer.js": { - "offset": 7168320, + "offset": 6879050, "size": 7810, }, }, }, "package.json": { - "offset": 7176130, + "offset": 6886860, "size": 640, }, }, @@ -32654,27 +32574,27 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen "http-proxy-agent": { "files": { "LICENSE": { - "offset": 7176760, + "offset": 6887490, "size": 1110, }, "dist": { "files": { "index.d.ts.map": { - "offset": 7177870, + "offset": 6888590, "size": 1670, }, "index.js": { - "offset": 7179530, + "offset": 6890260, "size": 6090, }, "index.js.map": { - "offset": 7185620, + "offset": 6896350, "size": 4140, }, }, }, "package.json": { - "offset": 7189750, + "offset": 6900480, "size": 850, }, }, @@ -32682,39 +32602,39 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen "https-proxy-agent": { "files": { "LICENSE": { - "offset": 7190600, + "offset": 6901320, "size": 1110, }, "dist": { "files": { "index.d.ts.map": { - "offset": 7191700, + "offset": 6902430, "size": 1400, }, "index.js": { - "offset": 7193090, + "offset": 6903820, "size": 7460, }, "index.js.map": { - "offset": 7200540, + "offset": 6911270, "size": 4600, }, "parse-proxy-response.d.ts.map": { - "offset": 7205130, + "offset": 6915860, "size": 450, }, "parse-proxy-response.js": { - "offset": 7205580, + "offset": 6916310, "size": 3910, }, "parse-proxy-response.js.map": { - "offset": 7209490, + "offset": 6920220, "size": 2950, }, }, }, "package.json": { - "offset": 7212430, + "offset": 6923160, "size": 910, }, }, @@ -32722,16 +32642,16 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen "is-potential-custom-element-name": { "files": { "LICENSE-MIT.txt": { - "offset": 7213340, + "offset": 6924070, "size": 1080, }, "index.js": { "executable": true, - "offset": 7214420, + "offset": 6925140, "size": 580, }, "package.json": { - "offset": 7214990, + "offset": 6925720, "size": 680, }, }, @@ -32739,13 +32659,13 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen "jsdom": { "files": { "LICENSE.txt": { - "offset": 7215670, + "offset": 6926400, "size": 1060, }, "lib": { "files": { "api.js": { - "offset": 7216720, + "offset": 6927450, "size": 10620, }, "jsdom": { @@ -32753,33 +32673,33 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen "browser": { "files": { "Window.js": { - "offset": 7227340, + "offset": 6938060, "size": 33170, }, "default-stylesheet.css": { - "offset": 7260500, + "offset": 6971230, "size": 11710, }, "js-globals.json": { - "offset": 7272210, + "offset": 6982940, "size": 6230, }, "not-implemented.js": { - "offset": 7278430, + "offset": 6989160, "size": 530, }, "parser": { "files": { "html.js": { - "offset": 7278960, + "offset": 6989690, "size": 7130, }, "index.js": { - "offset": 7286090, + "offset": 6996820, "size": 1040, }, "xml.js": { - "offset": 7287120, + "offset": 6997850, "size": 7000, }, }, @@ -32787,27 +32707,27 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen "resources": { "files": { "async-resource-queue.js": { - "offset": 7294120, + "offset": 7004840, "size": 2200, }, "no-op-resource-loader.js": { - "offset": 7296310, + "offset": 7007040, "size": 180, }, "per-document-resource-loader.js": { - "offset": 7296490, + "offset": 7007210, "size": 2790, }, "request-manager.js": { - "offset": 7299270, + "offset": 7010000, "size": 580, }, "resource-loader.js": { - "offset": 7299850, + "offset": 7010580, "size": 4420, }, "resource-queue.js": { - "offset": 7304270, + "offset": 7015000, "size": 2900, }, }, @@ -32817,7 +32737,7 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen "level2": { "files": { "style.js": { - "offset": 7307160, + "offset": 7017890, "size": 2740, }, }, @@ -32825,7 +32745,7 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen "level3": { "files": { "xpath.js": { - "offset": 7309890, + "offset": 7020620, "size": 70490, }, }, @@ -32835,11 +32755,11 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen "aborting": { "files": { "AbortController-impl.js": { - "offset": 7380380, + "offset": 7091100, "size": 320, }, "AbortSignal-impl.js": { - "offset": 7380690, + "offset": 7091420, "size": 3580, }, }, @@ -32847,27 +32767,27 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen "attributes": { "files": { "Attr-impl.js": { - "offset": 7393130, + "offset": 7103860, "size": 1520, }, "NamedNodeMap-impl.js": { - "offset": 7394640, + "offset": 7105370, "size": 2370, }, }, }, "attributes.js": { - "offset": 7384270, + "offset": 7094990, "size": 8870, }, "constraint-validation": { "files": { "DefaultConstraintValidation-impl.js": { - "offset": 7397010, + "offset": 7107740, "size": 2480, }, "ValidityState-impl.js": { - "offset": 7399490, + "offset": 7110210, "size": 1540, }, }, @@ -32875,7 +32795,7 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen "crypto": { "files": { "Crypto-impl.js": { - "offset": 7401020, + "offset": 7111750, "size": 2120, }, }, @@ -32883,7 +32803,7 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen "cssom": { "files": { "StyleSheetList-impl.js": { - "offset": 7403140, + "offset": 7113870, "size": 670, }, }, @@ -32891,11 +32811,11 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen "custom-elements": { "files": { "CustomElementRegistry-impl.js": { - "offset": 7403810, + "offset": 7114540, "size": 8430, }, "ElementInternals-impl.js": { - "offset": 7412240, + "offset": 7122960, "size": 1690, }, }, @@ -32903,39 +32823,39 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen "deviceorientation": { "files": { "DeviceMotionEventAcceleration-impl.js": { - "offset": 7413920, + "offset": 7124650, "size": 140, }, "DeviceMotionEventRotationRate-impl.js": { - "offset": 7414050, + "offset": 7124780, "size": 140, }, }, }, "documents.js": { - "offset": 7414190, + "offset": 7124920, "size": 600, }, "domparsing": { "files": { "DOMParser-impl.js": { - "offset": 7414780, + "offset": 7125510, "size": 1650, }, "InnerHTML-impl.js": { - "offset": 7416420, + "offset": 7127150, "size": 1040, }, "XMLSerializer-impl.js": { - "offset": 7417460, + "offset": 7128190, "size": 530, }, "parse5-adapter-serialization.js": { - "offset": 7417990, + "offset": 7128720, "size": 1930, }, "serialization.js": { - "offset": 7419910, + "offset": 7130640, "size": 1240, }, }, @@ -32943,11 +32863,11 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen "encoding": { "files": { "TextDecoder-impl.js": { - "offset": 7421150, + "offset": 7131880, "size": 620, }, "TextEncoder-impl.js": { - "offset": 7421760, + "offset": 7132490, "size": 180, }, }, @@ -32955,115 +32875,115 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen "events": { "files": { "BeforeUnloadEvent-impl.js": { - "offset": 7421940, + "offset": 7132670, "size": 320, }, "BlobEvent-impl.js": { - "offset": 7422260, + "offset": 7132980, "size": 300, }, "CloseEvent-impl.js": { - "offset": 7422550, + "offset": 7133280, "size": 300, }, "CompositionEvent-impl.js": { - "offset": 7422850, + "offset": 7133570, "size": 560, }, "CustomEvent-impl.js": { - "offset": 7423400, + "offset": 7134130, "size": 510, }, "DeviceMotionEvent-impl.js": { - "offset": 7423900, + "offset": 7134630, "size": 1850, }, "DeviceOrientationEvent-impl.js": { - "offset": 7425750, + "offset": 7136480, "size": 390, }, "ErrorEvent-impl.js": { - "offset": 7426130, + "offset": 7136860, "size": 320, }, "Event-impl.js": { - "offset": 7426440, + "offset": 7137170, "size": 4720, }, "EventModifierMixin-impl.js": { - "offset": 7431150, + "offset": 7141880, "size": 1160, }, "EventTarget-impl.js": { - "offset": 7432310, + "offset": 7143040, "size": 12600, }, "FocusEvent-impl.js": { - "offset": 7444910, + "offset": 7155640, "size": 310, }, "HashChangeEvent-impl.js": { - "offset": 7445210, + "offset": 7155940, "size": 350, }, "InputEvent-impl.js": { - "offset": 7445560, + "offset": 7156280, "size": 380, }, "KeyboardEvent-impl.js": { - "offset": 7445930, + "offset": 7156660, "size": 920, }, "MessageEvent-impl.js": { - "offset": 7446840, + "offset": 7157570, "size": 650, }, "MouseEvent-impl.js": { - "offset": 7447490, + "offset": 7158220, "size": 1980, }, "PageTransitionEvent-impl.js": { - "offset": 7449460, + "offset": 7160190, "size": 640, }, "PointerEvent-impl.js": { - "offset": 7450100, + "offset": 7160830, "size": 660, }, "PopStateEvent-impl.js": { - "offset": 7450760, + "offset": 7161480, "size": 320, }, "ProgressEvent-impl.js": { - "offset": 7451070, + "offset": 7161800, "size": 340, }, "PromiseRejectionEvent-impl.js": { - "offset": 7451400, + "offset": 7162130, "size": 350, }, "StorageEvent-impl.js": { - "offset": 7451740, + "offset": 7162470, "size": 740, }, "SubmitEvent-impl.js": { - "offset": 7452480, + "offset": 7163210, "size": 420, }, "TouchEvent-impl.js": { - "offset": 7452900, + "offset": 7163630, "size": 320, }, "TransitionEvent-impl.js": { - "offset": 7453220, + "offset": 7163950, "size": 340, }, "UIEvent-impl.js": { - "offset": 7453560, + "offset": 7164290, "size": 1340, }, "WheelEvent-impl.js": { - "offset": 7454890, + "offset": 7165620, "size": 330, }, }, @@ -33071,15 +32991,15 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen "fetch": { "files": { "Headers-impl.js": { - "offset": 7455220, + "offset": 7165950, "size": 3620, }, "header-list.js": { - "offset": 7458830, + "offset": 7169560, "size": 1360, }, "header-types.js": { - "offset": 7460190, + "offset": 7170910, "size": 2240, }, }, @@ -33087,19 +33007,19 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen "file-api": { "files": { "Blob-impl.js": { - "offset": 7462420, + "offset": 7173150, "size": 2450, }, "File-impl.js": { - "offset": 7464870, + "offset": 7175600, "size": 390, }, "FileList-impl.js": { - "offset": 7465250, + "offset": 7175980, "size": 300, }, "FileReader-impl.js": { - "offset": 7465540, + "offset": 7176270, "size": 3700, }, }, @@ -33107,1015 +33027,1015 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen "generated": { "files": { "AbortController.js": { - "offset": 7469240, + "offset": 7179970, "size": 4290, }, "AbortSignal.js": { - "offset": 7473520, + "offset": 7184250, "size": 7610, }, "AbstractRange.js": { - "offset": 7481120, + "offset": 7191850, "size": 5080, }, "AddEventListenerOptions.js": { - "offset": 7486200, + "offset": 7196930, "size": 1660, }, "AssignedNodesOptions.js": { - "offset": 7487860, + "offset": 7198580, "size": 900, }, "Attr.js": { - "offset": 7488750, + "offset": 7199480, "size": 6680, }, "BarProp.js": { - "offset": 7495430, + "offset": 7206160, "size": 3360, }, "BeforeUnloadEvent.js": { - "offset": 7498790, + "offset": 7209510, "size": 4150, }, "BinaryType.js": { - "offset": 7502930, + "offset": 7213660, "size": 420, }, "Blob.js": { - "offset": 7503350, + "offset": 7214080, "size": 6680, }, "BlobCallback.js": { - "offset": 7510020, + "offset": 7220750, "size": 830, }, "BlobEvent.js": { - "offset": 7510850, + "offset": 7221580, "size": 4750, }, "BlobEventInit.js": { - "offset": 7515600, + "offset": 7226330, "size": 1370, }, "BlobPropertyBag.js": { - "offset": 7516960, + "offset": 7227690, "size": 1260, }, "CDATASection.js": { - "offset": 7518220, + "offset": 7228950, "size": 3160, }, "CanPlayTypeResult.js": { - "offset": 7521380, + "offset": 7232110, "size": 430, }, "CharacterData.js": { - "offset": 7521800, + "offset": 7232530, "size": 15060, }, "CloseEvent.js": { - "offset": 7536850, + "offset": 7247580, "size": 5020, }, "CloseEventInit.js": { - "offset": 7541870, + "offset": 7252600, "size": 1730, }, "Comment.js": { - "offset": 7543600, + "offset": 7254320, "size": 3530, }, "CompositionEvent.js": { - "offset": 7547120, + "offset": 7257840, "size": 6780, }, "CompositionEventInit.js": { - "offset": 7553890, + "offset": 7264620, "size": 1010, }, "Crypto.js": { - "offset": 7554900, + "offset": 7265620, "size": 4510, }, "CustomElementConstructor.js": { - "offset": 7559410, + "offset": 7270130, "size": 970, }, "CustomElementRegistry.js": { - "offset": 7560370, + "offset": 7271100, "size": 9020, }, "CustomEvent.js": { - "offset": 7569390, + "offset": 7280110, "size": 6290, }, "CustomEventInit.js": { - "offset": 7575670, + "offset": 7286400, "size": 1000, }, "DOMException.js": { - "offset": 7576670, + "offset": 7287400, "size": 7700, }, "DOMImplementation.js": { - "offset": 7584370, + "offset": 7295100, "size": 7730, }, "DOMParser.js": { - "offset": 7592090, + "offset": 7302820, "size": 4290, }, "DOMRect.js": { - "offset": 7596380, + "offset": 7307110, "size": 8350, }, "DOMRectInit.js": { - "offset": 7604730, + "offset": 7315460, "size": 1980, }, "DOMRectReadOnly.js": { - "offset": 7606700, + "offset": 7317430, "size": 8350, }, "DOMStringMap.js": { - "offset": 7615050, + "offset": 7325780, "size": 8440, }, "DOMTokenList.js": { - "offset": 7623490, + "offset": 7334210, "size": 16800, }, "DeviceMotionEvent.js": { - "offset": 7640280, + "offset": 7351010, "size": 5750, }, "DeviceMotionEventAcceleration.js": { - "offset": 7646030, + "offset": 7356760, "size": 4330, }, "DeviceMotionEventAccelerationInit.js": { - "offset": 7650350, + "offset": 7361080, "size": 1810, }, "DeviceMotionEventInit.js": { - "offset": 7652160, + "offset": 7362880, "size": 2210, }, "DeviceMotionEventRotationRate.js": { - "offset": 7654360, + "offset": 7365080, "size": 4370, }, "DeviceMotionEventRotationRateInit.js": { - "offset": 7658730, + "offset": 7369450, "size": 1830, }, "DeviceOrientationEvent.js": { - "offset": 7660550, + "offset": 7371280, "size": 5620, }, "DeviceOrientationEventInit.js": { - "offset": 7666160, + "offset": 7376890, "size": 2290, }, "Document.js": { - "offset": 7668450, + "offset": 7379180, "size": 147250, }, "DocumentFragment.js": { - "offset": 7815700, + "offset": 7526430, "size": 11290, }, "DocumentReadyState.js": { - "offset": 7826990, + "offset": 7537710, "size": 440, }, "DocumentType.js": { - "offset": 7827420, + "offset": 7538150, "size": 8130, }, "Element.js": { - "offset": 7835550, + "offset": 7546270, "size": 123350, }, "ElementCreationOptions.js": { - "offset": 7958890, + "offset": 7669620, "size": 850, }, "ElementDefinitionOptions.js": { - "offset": 7959740, + "offset": 7670460, "size": 880, }, "ElementInternals.js": { - "offset": 7960620, + "offset": 7671340, "size": 70640, }, "EndingType.js": { - "offset": 8031250, + "offset": 7741980, "size": 420, }, "ErrorEvent.js": { - "offset": 8031670, + "offset": 7742400, "size": 5750, }, "ErrorEventInit.js": { - "offset": 8037410, + "offset": 7748140, "size": 2410, }, "Event.js": { - "offset": 8039810, + "offset": 7750540, "size": 13630, }, "EventHandlerNonNull.js": { - "offset": 8053440, + "offset": 7764170, "size": 1020, }, "EventInit.js": { - "offset": 8054450, + "offset": 7765180, "size": 1610, }, "EventListener.js": { - "offset": 8056050, + "offset": 7766780, "size": 990, }, "EventListenerOptions.js": { - "offset": 8057040, + "offset": 7767760, "size": 900, }, "EventModifierInit.js": { - "offset": 8057930, + "offset": 7768660, "size": 5700, }, "EventTarget.js": { - "offset": 8063620, + "offset": 7774350, "size": 8990, }, "External.js": { - "offset": 8072610, + "offset": 7783340, "size": 3860, }, "File.js": { - "offset": 8076460, + "offset": 7787190, "size": 5850, }, "FileList.js": { - "offset": 8082310, + "offset": 7793030, "size": 8320, }, "FilePropertyBag.js": { - "offset": 8090620, + "offset": 7801350, "size": 1020, }, "FileReader.js": { - "offset": 8091640, + "offset": 7802370, "size": 14850, }, "FocusEvent.js": { - "offset": 8106480, + "offset": 7817210, "size": 4350, }, "FocusEventInit.js": { - "offset": 8110830, + "offset": 7821550, "size": 1160, }, "FormData.js": { - "offset": 8111980, + "offset": 7822710, "size": 15570, }, "Function.js": { - "offset": 8127550, + "offset": 7838270, "size": 1190, }, "GetRootNodeOptions.js": { - "offset": 8128730, + "offset": 7839460, "size": 920, }, "HTMLAnchorElement.js": { - "offset": 8129650, + "offset": 7840380, "size": 32690, }, "HTMLAreaElement.js": { - "offset": 8162330, + "offset": 7873060, "size": 25970, }, "HTMLAudioElement.js": { - "offset": 8188300, + "offset": 7899030, "size": 3390, }, "HTMLBRElement.js": { - "offset": 8191680, + "offset": 7902410, "size": 4910, }, "HTMLBaseElement.js": { - "offset": 8196580, + "offset": 7907310, "size": 6160, }, "HTMLBodyElement.js": { - "offset": 8202740, + "offset": 7913470, "size": 28550, }, "HTMLButtonElement.js": { - "offset": 8231290, + "offset": 7942020, "size": 17120, }, "HTMLCanvasElement.js": { - "offset": 8248400, + "offset": 7959130, "size": 9900, }, "HTMLCollection.js": { - "offset": 8258300, + "offset": 7969030, "size": 10010, }, "HTMLDListElement.js": { - "offset": 8268310, + "offset": 7979040, "size": 5040, }, "HTMLDataElement.js": { - "offset": 8273340, + "offset": 7984070, "size": 4930, }, "HTMLDataListElement.js": { - "offset": 8278270, + "offset": 7989000, "size": 3870, }, "HTMLDetailsElement.js": { - "offset": 8282140, + "offset": 7992870, "size": 5040, }, "HTMLDialogElement.js": { - "offset": 8287170, + "offset": 7997900, "size": 5020, }, "HTMLDirectoryElement.js": { - "offset": 8292190, + "offset": 8002920, "size": 5090, }, "HTMLDivElement.js": { - "offset": 8297280, + "offset": 8008000, "size": 4920, }, "HTMLElement.js": { - "offset": 8302190, + "offset": 8012920, "size": 110310, }, "HTMLEmbedElement.js": { - "offset": 8412490, + "offset": 8123220, "size": 12350, }, "HTMLFieldSetElement.js": { - "offset": 8424830, + "offset": 8135560, "size": 10750, }, "HTMLFontElement.js": { - "offset": 8435580, + "offset": 8146310, "size": 7640, }, "HTMLFormControlsCollection.js": { - "offset": 8443220, + "offset": 8153940, "size": 9060, }, "HTMLFormElement.js": { - "offset": 8452270, + "offset": 8163000, "size": 20270, }, "HTMLFrameElement.js": { - "offset": 8472540, + "offset": 8183260, "size": 16950, }, "HTMLFrameSetElement.js": { - "offset": 8489490, + "offset": 8200210, "size": 23180, }, "HTMLHRElement.js": { - "offset": 8512660, + "offset": 8223390, "size": 10350, }, "HTMLHeadElement.js": { - "offset": 8523000, + "offset": 8233730, "size": 3360, }, "HTMLHeadingElement.js": { - "offset": 8526360, + "offset": 8237090, "size": 4970, }, "HTMLHtmlElement.js": { - "offset": 8531320, + "offset": 8242050, "size": 4950, }, "HTMLIFrameElement.js": { - "offset": 8536270, + "offset": 8246990, "size": 22890, }, "HTMLImageElement.js": { - "offset": 8559150, + "offset": 8269880, "size": 29550, }, "HTMLInputElement.js": { - "offset": 8588700, + "offset": 8299420, "size": 63420, }, "HTMLLIElement.js": { - "offset": 8652110, + "offset": 8362840, "size": 6500, }, "HTMLLabelElement.js": { - "offset": 8658610, + "offset": 8369340, "size": 5750, }, "HTMLLegendElement.js": { - "offset": 8664360, + "offset": 8375080, "size": 5350, }, "HTMLLinkElement.js": { - "offset": 8669700, + "offset": 8380430, "size": 17970, }, "HTMLMapElement.js": { - "offset": 8687670, + "offset": 8398400, "size": 5380, }, "HTMLMarqueeElement.js": { - "offset": 8693040, + "offset": 8403770, "size": 18620, }, "HTMLMediaElement.js": { - "offset": 8711660, + "offset": 8422380, "size": 29070, }, "HTMLMenuElement.js": { - "offset": 8740730, + "offset": 8451450, "size": 5030, }, "HTMLMetaElement.js": { - "offset": 8745750, + "offset": 8456480, "size": 9010, }, "HTMLMeterElement.js": { - "offset": 8754760, + "offset": 8465490, "size": 11350, }, "HTMLModElement.js": { - "offset": 8766110, + "offset": 8476830, "size": 6970, }, "HTMLOListElement.js": { - "offset": 8773080, + "offset": 8483800, "size": 9060, }, "HTMLObjectElement.js": { - "offset": 8782130, + "offset": 8492860, "size": 31230, }, "HTMLOptGroupElement.js": { - "offset": 8813350, + "offset": 8524080, "size": 6440, }, "HTMLOptionElement.js": { - "offset": 8819790, + "offset": 8530520, "size": 11950, }, "HTMLOptionsCollection.js": { - "offset": 8831730, + "offset": 8542460, "size": 15630, }, "HTMLOutputElement.js": { - "offset": 8847350, + "offset": 8558080, "size": 12600, }, "HTMLParagraphElement.js": { - "offset": 8859950, + "offset": 8570670, "size": 4990, }, "HTMLParamElement.js": { - "offset": 8864930, + "offset": 8575660, "size": 9000, }, "HTMLPictureElement.js": { - "offset": 8873930, + "offset": 8584660, "size": 3390, }, "HTMLPreElement.js": { - "offset": 8877310, + "offset": 8588040, "size": 5180, }, "HTMLProgressElement.js": { - "offset": 8882490, + "offset": 8593220, "size": 7310, }, "HTMLQuoteElement.js": { - "offset": 8889790, + "offset": 8600520, "size": 5630, }, "HTMLScriptElement.js": { - "offset": 8895420, + "offset": 8606150, "size": 15280, }, "HTMLSelectElement.js": { - "offset": 8910690, + "offset": 8621420, "size": 31520, }, "HTMLSlotElement.js": { - "offset": 8942200, + "offset": 8652930, "size": 6400, }, "HTMLSourceElement.js": { - "offset": 8948600, + "offset": 8659330, "size": 11050, }, "HTMLSpanElement.js": { - "offset": 8959650, + "offset": 8670380, "size": 3360, }, "HTMLStyleElement.js": { - "offset": 8963000, + "offset": 8673730, "size": 6680, }, "HTMLTableCaptionElement.js": { - "offset": 8969680, + "offset": 8680410, "size": 5030, }, "HTMLTableCellElement.js": { - "offset": 8974700, + "offset": 8685430, "size": 24020, }, "HTMLTableColElement.js": { - "offset": 8998720, + "offset": 8709440, "size": 12250, }, "HTMLTableElement.js": { - "offset": 9010960, + "offset": 8721690, "size": 26280, }, "HTMLTableRowElement.js": { - "offset": 9037230, + "offset": 8747960, "size": 13590, }, "HTMLTableSectionElement.js": { - "offset": 9050820, + "offset": 8761550, "size": 11470, }, "HTMLTemplateElement.js": { - "offset": 9062290, + "offset": 8773020, "size": 3800, }, "HTMLTextAreaElement.js": { - "offset": 9066090, + "offset": 8776820, "size": 40270, }, "HTMLTimeElement.js": { - "offset": 9106350, + "offset": 8817080, "size": 4960, }, "HTMLTitleElement.js": { - "offset": 9111310, + "offset": 8822030, "size": 4820, }, "HTMLTrackElement.js": { - "offset": 9116130, + "offset": 8826850, "size": 11900, }, "HTMLUListElement.js": { - "offset": 9128020, + "offset": 8838750, "size": 6380, }, "HTMLUnknownElement.js": { - "offset": 9134400, + "offset": 8845120, "size": 3240, }, "HTMLVideoElement.js": { - "offset": 9137640, + "offset": 8848360, "size": 11290, }, "HashChangeEvent.js": { - "offset": 9148920, + "offset": 8859650, "size": 4740, }, "HashChangeEventInit.js": { - "offset": 9153660, + "offset": 8864390, "size": 1380, }, "Headers.js": { - "offset": 9155030, + "offset": 8865760, "size": 14250, }, "History.js": { - "offset": 9169280, + "offset": 8880000, "size": 8220, }, "InputEvent.js": { - "offset": 9177500, + "offset": 8888220, "size": 5040, }, "InputEventInit.js": { - "offset": 9182530, + "offset": 8893260, "size": 1850, }, "KeyboardEvent.js": { - "offset": 9184380, + "offset": 8895110, "size": 13770, }, "KeyboardEventInit.js": { - "offset": 9198140, + "offset": 8908870, "size": 3100, }, "Location.js": { - "offset": 9201240, + "offset": 8911960, "size": 13510, }, "MessageEvent.js": { - "offset": 9214740, + "offset": 8925470, "size": 9580, }, "MessageEventInit.js": { - "offset": 9224320, + "offset": 8935050, "size": 2630, }, "MimeType.js": { - "offset": 9226950, + "offset": 8937680, "size": 4530, }, "MimeTypeArray.js": { - "offset": 9231470, + "offset": 8942200, "size": 9250, }, "MouseEvent.js": { - "offset": 9240720, + "offset": 8951450, "size": 17840, }, "MouseEventInit.js": { - "offset": 9258560, + "offset": 8969280, "size": 5160, }, "MutationCallback.js": { - "offset": 9263710, + "offset": 8974440, "size": 1020, }, "MutationObserver.js": { - "offset": 9264720, + "offset": 8975450, "size": 5640, }, "MutationObserverInit.js": { - "offset": 9270360, + "offset": 8981090, "size": 3290, }, "MutationRecord.js": { - "offset": 9273650, + "offset": 8984380, "size": 6970, }, "NamedNodeMap.js": { - "offset": 9280620, + "offset": 8991340, "size": 16410, }, "Navigator.js": { - "offset": 9297020, + "offset": 9007750, "size": 9720, }, "Node.js": { - "offset": 9306730, + "offset": 9017460, "size": 26720, }, "NodeFilter.js": { - "offset": 9333440, + "offset": 9044170, "size": 2450, }, "NodeIterator.js": { - "offset": 9335880, + "offset": 9046610, "size": 6330, }, "NodeList.js": { - "offset": 9342210, + "offset": 9052940, "size": 8760, }, "OnBeforeUnloadEventHandlerNonNull.js": { - "offset": 9350970, + "offset": 9061690, "size": 1240, }, "OnErrorEventHandlerNonNull.js": { - "offset": 9352200, + "offset": 9062920, "size": 1520, }, "PageTransitionEvent.js": { - "offset": 9353710, + "offset": 9064440, "size": 4440, }, "PageTransitionEventInit.js": { - "offset": 9358150, + "offset": 9068880, "size": 1040, }, "Performance.js": { - "offset": 9359180, + "offset": 9069910, "size": 4300, }, "Plugin.js": { - "offset": 9363480, + "offset": 9074210, "size": 10270, }, "PluginArray.js": { - "offset": 9373740, + "offset": 9084470, "size": 9570, }, "PointerEvent.js": { - "offset": 9383300, + "offset": 9094030, "size": 9870, }, "PointerEventInit.js": { - "offset": 9393170, + "offset": 9103900, "size": 6480, }, "PopStateEvent.js": { - "offset": 9399640, + "offset": 9110370, "size": 4330, }, "PopStateEventInit.js": { - "offset": 9403970, + "offset": 9114700, "size": 1000, }, "ProcessingInstruction.js": { - "offset": 9404970, + "offset": 9115700, "size": 3660, }, "ProgressEvent.js": { - "offset": 9408620, + "offset": 9119350, "size": 5150, }, "ProgressEventInit.js": { - "offset": 9413770, + "offset": 9124500, "size": 1760, }, "PromiseRejectionEvent.js": { - "offset": 9415530, + "offset": 9126260, "size": 4870, }, "PromiseRejectionEventInit.js": { - "offset": 9420390, + "offset": 9131120, "size": 1370, }, "RadioNodeList.js": { - "offset": 9421750, + "offset": 9132480, "size": 8150, }, "Range.js": { - "offset": 9429900, + "offset": 9140630, "size": 22320, }, "SVGAnimatedPreserveAspectRatio.js": { - "offset": 9452220, + "offset": 9162950, "size": 4190, }, "SVGAnimatedRect.js": { - "offset": 9456410, + "offset": 9167140, "size": 4030, }, "SVGAnimatedString.js": { - "offset": 9460440, + "offset": 9171160, "size": 4390, }, "SVGBoundingBoxOptions.js": { - "offset": 9464820, + "offset": 9175550, "size": 1880, }, "SVGDefsElement.js": { - "offset": 9466690, + "offset": 9177420, "size": 3240, }, "SVGDescElement.js": { - "offset": 9469920, + "offset": 9180650, "size": 3200, }, "SVGElement.js": { - "offset": 9473120, + "offset": 9183850, "size": 99440, }, "SVGGElement.js": { - "offset": 9572560, + "offset": 9283290, "size": 3210, }, "SVGGraphicsElement.js": { - "offset": 9575770, + "offset": 9286490, "size": 4290, }, "SVGMetadataElement.js": { - "offset": 9580050, + "offset": 9290780, "size": 3240, }, "SVGNumber.js": { - "offset": 9583280, + "offset": 9294010, "size": 3850, }, "SVGPreserveAspectRatio.js": { - "offset": 9587130, + "offset": 9297860, "size": 6960, }, "SVGRect.js": { - "offset": 9594080, + "offset": 9304810, "size": 6220, }, "SVGSVGElement.js": { - "offset": 9600300, + "offset": 9311030, "size": 25530, }, "SVGStringList.js": { - "offset": 9625830, + "offset": 9336560, "size": 15520, }, "SVGSwitchElement.js": { - "offset": 9641350, + "offset": 9352070, "size": 3250, }, "SVGSymbolElement.js": { - "offset": 9644600, + "offset": 9355320, "size": 4550, }, "SVGTitleElement.js": { - "offset": 9649140, + "offset": 9359870, "size": 3210, }, "Screen.js": { - "offset": 9652350, + "offset": 9363080, "size": 5230, }, "ScrollBehavior.js": { - "offset": 9657570, + "offset": 9368300, "size": 430, }, "ScrollIntoViewOptions.js": { - "offset": 9658000, + "offset": 9368720, "size": 1420, }, "ScrollLogicalPosition.js": { - "offset": 9659410, + "offset": 9370140, "size": 460, }, "ScrollOptions.js": { - "offset": 9659860, + "offset": 9370590, "size": 950, }, "ScrollRestoration.js": { - "offset": 9660800, + "offset": 9371530, "size": 420, }, "Selection.js": { - "offset": 9661220, + "offset": 9371940, "size": 18590, }, "SelectionMode.js": { - "offset": 9679810, + "offset": 9390530, "size": 440, }, "ShadowRoot.js": { - "offset": 9680240, + "offset": 9390970, "size": 5870, }, "ShadowRootInit.js": { - "offset": 9686100, + "offset": 9396830, "size": 990, }, "ShadowRootMode.js": { - "offset": 9687090, + "offset": 9397820, "size": 420, }, "StaticRange.js": { - "offset": 9687510, + "offset": 9398230, "size": 3720, }, "StaticRangeInit.js": { - "offset": 9691220, + "offset": 9401950, "size": 2230, }, "Storage.js": { - "offset": 9693450, + "offset": 9404180, "size": 11530, }, "StorageEvent.js": { - "offset": 9704980, + "offset": 9415710, "size": 9750, }, "StorageEventInit.js": { - "offset": 9714720, + "offset": 9425450, "size": 2800, }, "StyleSheetList.js": { - "offset": 9717510, + "offset": 9428240, "size": 8400, }, "SubmitEvent.js": { - "offset": 9725910, + "offset": 9436640, "size": 4340, }, "SubmitEventInit.js": { - "offset": 9730250, + "offset": 9440970, "size": 1150, }, "SupportedType.js": { - "offset": 9731390, + "offset": 9442120, "size": 500, }, "Text.js": { - "offset": 9731880, + "offset": 9442610, "size": 5140, }, "TextDecodeOptions.js": { - "offset": 9737020, + "offset": 9447740, "size": 890, }, "TextDecoder.js": { - "offset": 9737910, + "offset": 9448630, "size": 6620, }, "TextDecoderOptions.js": { - "offset": 9744520, + "offset": 9455250, "size": 1250, }, "TextEncoder.js": { - "offset": 9745770, + "offset": 9456500, "size": 5390, }, "TextEncoderEncodeIntoResult.js": { - "offset": 9751150, + "offset": 9461880, "size": 1210, }, "TextTrackKind.js": { - "offset": 9752360, + "offset": 9463090, "size": 460, }, "TouchEvent.js": { - "offset": 9752820, + "offset": 9463540, "size": 6680, }, "TouchEventInit.js": { - "offset": 9759490, + "offset": 9470220, "size": 2460, }, "TransitionEvent.js": { - "offset": 9761950, + "offset": 9472680, "size": 5240, }, "TransitionEventInit.js": { - "offset": 9767180, + "offset": 9477910, "size": 1760, }, "TreeWalker.js": { - "offset": 9768940, + "offset": 9479670, "size": 8000, }, "UIEvent.js": { - "offset": 9776940, + "offset": 9487670, "size": 7150, }, "UIEventInit.js": { - "offset": 9784080, + "offset": 9494810, "size": 1700, }, "ValidityState.js": { - "offset": 9785770, + "offset": 9496500, "size": 7400, }, "VisibilityState.js": { - "offset": 9793170, + "offset": 9503900, "size": 430, }, "VoidFunction.js": { - "offset": 9793600, + "offset": 9504330, "size": 730, }, "WebSocket.js": { - "offset": 9794330, + "offset": 9505050, "size": 15160, }, "WheelEvent.js": { - "offset": 9809480, + "offset": 9520200, "size": 5810, }, "WheelEventInit.js": { - "offset": 9815280, + "offset": 9526010, "size": 2030, }, "XMLDocument.js": { - "offset": 9817300, + "offset": 9528030, "size": 3170, }, "XMLHttpRequest.js": { - "offset": 9820470, + "offset": 9531200, "size": 22020, }, "XMLHttpRequestEventTarget.js": { - "offset": 9842490, + "offset": 9553210, "size": 10630, }, "XMLHttpRequestResponseType.js": { - "offset": 9853110, + "offset": 9563840, "size": 480, }, "XMLHttpRequestUpload.js": { - "offset": 9853590, + "offset": 9564320, "size": 3350, }, "XMLSerializer.js": { - "offset": 9856930, + "offset": 9567660, "size": 4030, }, "utils.js": { - "offset": 9860960, + "offset": 9571690, "size": 7090, }, }, @@ -34123,11 +34043,11 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen "geometry": { "files": { "DOMRect-impl.js": { - "offset": 9868050, + "offset": 9578780, "size": 730, }, "DOMRectReadOnly-impl.js": { - "offset": 9868780, + "offset": 9579510, "size": 1700, }, }, @@ -34135,143 +34055,143 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen "helpers": { "files": { "agent-factory.js": { - "offset": 9870480, + "offset": 9581200, "size": 530, }, "binary-data.js": { - "offset": 9871000, + "offset": 9581730, "size": 320, }, "colors.js": { - "offset": 9871320, + "offset": 9582050, "size": 7470, }, "create-element.js": { - "offset": 9878790, + "offset": 9589520, "size": 10430, }, "create-event-accessor.js": { - "offset": 9889220, + "offset": 9599950, "size": 5840, }, "custom-elements.js": { - "offset": 9895060, + "offset": 9605790, "size": 7740, }, "dates-and-times.js": { - "offset": 9902800, + "offset": 9613530, "size": 7870, }, "details.js": { - "offset": 9910660, + "offset": 9621390, "size": 540, }, "events.js": { - "offset": 9911200, + "offset": 9621930, "size": 720, }, "focusing.js": { - "offset": 9911920, + "offset": 9622640, "size": 3480, }, "form-controls.js": { - "offset": 9915390, + "offset": 9626120, "size": 10390, }, "html-constructor.js": { - "offset": 9925780, + "offset": 9636510, "size": 2830, }, "http-request.js": { - "offset": 9928600, + "offset": 9639330, "size": 8460, }, "internal-constants.js": { - "offset": 9937060, + "offset": 9647790, "size": 390, }, "is-window.js": { - "offset": 9937440, + "offset": 9648170, "size": 740, }, "iterable-weak-set.js": { - "offset": 9938180, + "offset": 9648910, "size": 1160, }, "json.js": { - "offset": 9939340, + "offset": 9650070, "size": 350, }, "mutation-observers.js": { - "offset": 9939680, + "offset": 9650410, "size": 5440, }, "namespaces.js": { - "offset": 9945120, + "offset": 9655850, "size": 480, }, "node.js": { - "offset": 9945600, + "offset": 9656330, "size": 1320, }, "number-and-date-inputs.js": { - "offset": 9946920, + "offset": 9657650, "size": 6880, }, "ordered-set.js": { - "offset": 9953790, + "offset": 9664520, "size": 2090, }, "page-transition-event.js": { - "offset": 9955880, + "offset": 9666610, "size": 450, }, "runtime-script-errors.js": { - "offset": 9956320, + "offset": 9667050, "size": 2480, }, "shadow-dom.js": { - "offset": 9958800, + "offset": 9669530, "size": 6850, }, "strings.js": { - "offset": 9965650, + "offset": 9676380, "size": 5470, }, "style-rules.js": { - "offset": 9971110, + "offset": 9681840, "size": 10600, }, "stylesheets.js": { - "offset": 9981710, + "offset": 9692440, "size": 5340, }, "svg": { "files": { "basic-types.js": { - "offset": 9987050, + "offset": 9697770, "size": 1640, }, "render.js": { - "offset": 9988680, + "offset": 9699410, "size": 1320, }, }, }, "system-colors.js": { - "offset": 9989990, + "offset": 9700720, "size": 2890, }, "text.js": { - "offset": 9992870, + "offset": 9703600, "size": 550, }, "traversal.js": { - "offset": 9993420, + "offset": 9704140, "size": 2330, }, "validate-names.js": { - "offset": 9995740, + "offset": 9706470, "size": 2050, }, }, @@ -34279,23 +34199,23 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen "hr-time": { "files": { "Performance-impl.js": { - "offset": 9997790, + "offset": 9708510, "size": 520, }, }, }, "interfaces.js": { - "offset": 9998300, + "offset": 9709030, "size": 12290, }, "mutation-observer": { "files": { "MutationObserver-impl.js": { - "offset": 10010590, + "offset": 9721320, "size": 3600, }, "MutationRecord-impl.js": { - "offset": 10014180, + "offset": 9724910, "size": 980, }, }, @@ -34303,523 +34223,523 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen "navigator": { "files": { "MimeType-impl.js": { - "offset": 10015160, + "offset": 9725880, "size": 60, }, "MimeTypeArray-impl.js": { - "offset": 10015210, + "offset": 9725940, "size": 290, }, "Navigator-impl.js": { - "offset": 10015500, + "offset": 9726230, "size": 1440, }, "NavigatorConcurrentHardware-impl.js": { - "offset": 10016930, + "offset": 9727660, "size": 180, }, "NavigatorCookies-impl.js": { - "offset": 10017110, + "offset": 9727830, "size": 120, }, "NavigatorID-impl.js": { - "offset": 10017220, + "offset": 9727950, "size": 480, }, "NavigatorLanguage-impl.js": { - "offset": 10017700, + "offset": 9728430, "size": 170, }, "NavigatorOnLine-impl.js": { - "offset": 10017860, + "offset": 9728590, "size": 110, }, "NavigatorPlugins-impl.js": { - "offset": 10017970, + "offset": 9728700, "size": 180, }, "Plugin-impl.js": { - "offset": 10018150, + "offset": 9728880, "size": 60, }, "PluginArray-impl.js": { - "offset": 10018210, + "offset": 9728930, "size": 300, }, }, }, "node-document-position.js": { - "offset": 10018510, + "offset": 9729230, "size": 280, }, "node-type.js": { - "offset": 10018780, + "offset": 9729510, "size": 390, }, "node.js": { - "offset": 10019170, + "offset": 9729890, "size": 9510, }, "nodes": { "files": { "CDATASection-impl.js": { - "offset": 10028670, + "offset": 9739400, "size": 370, }, "CharacterData-impl.js": { - "offset": 10029040, + "offset": 9739760, "size": 3540, }, "ChildNode-impl.js": { - "offset": 10032570, + "offset": 9743300, "size": 2030, }, "Comment-impl.js": { - "offset": 10034590, + "offset": 9745320, "size": 540, }, "DOMImplementation-impl.js": { - "offset": 10035130, + "offset": 9745850, "size": 3880, }, "DOMStringMap-impl.js": { - "offset": 10039000, + "offset": 9749730, "size": 1990, }, "DOMTokenList-impl.js": { - "offset": 10040990, + "offset": 9751710, "size": 4340, }, "Document-impl.js": { - "offset": 10045330, + "offset": 9756050, "size": 31130, }, "DocumentFragment-impl.js": { - "offset": 10076460, + "offset": 9787180, "size": 1400, }, "DocumentOrShadowRoot-impl.js": { - "offset": 10077850, + "offset": 9788580, "size": 740, }, "DocumentType-impl.js": { - "offset": 10078580, + "offset": 9789310, "size": 660, }, "Element-impl.js": { - "offset": 10079240, + "offset": 9789960, "size": 17090, }, "ElementCSSInlineStyle-impl.js": { - "offset": 10096320, + "offset": 9807050, "size": 520, }, "ElementContentEditable-impl.js": { - "offset": 10096830, + "offset": 9807560, "size": 120, }, "GlobalEventHandlers-impl.js": { - "offset": 10096950, + "offset": 9807680, "size": 3100, }, "HTMLAnchorElement-impl.js": { - "offset": 10100040, + "offset": 9810770, "size": 1260, }, "HTMLAreaElement-impl.js": { - "offset": 10101290, + "offset": 9812020, "size": 1150, }, "HTMLAudioElement-impl.js": { - "offset": 10102440, + "offset": 9813170, "size": 220, }, "HTMLBRElement-impl.js": { - "offset": 10102660, + "offset": 9813390, "size": 200, }, "HTMLBaseElement-impl.js": { - "offset": 10102860, + "offset": 9813590, "size": 1000, }, "HTMLBodyElement-impl.js": { - "offset": 10103850, + "offset": 9814580, "size": 490, }, "HTMLButtonElement-impl.js": { - "offset": 10104340, + "offset": 9815070, "size": 1960, }, "HTMLCanvasElement-impl.js": { - "offset": 10106300, + "offset": 9817030, "size": 3950, }, "HTMLCollection-impl.js": { - "offset": 10110250, + "offset": 9820980, "size": 2270, }, "HTMLDListElement-impl.js": { - "offset": 10112510, + "offset": 9823240, "size": 210, }, "HTMLDataElement-impl.js": { - "offset": 10112720, + "offset": 9823450, "size": 210, }, "HTMLDataListElement-impl.js": { - "offset": 10112920, + "offset": 9823650, "size": 600, }, "HTMLDetailsElement-impl.js": { - "offset": 10113520, + "offset": 9824240, "size": 930, }, "HTMLDialogElement-impl.js": { - "offset": 10114440, + "offset": 9825170, "size": 210, }, "HTMLDirectoryElement-impl.js": { - "offset": 10114640, + "offset": 9825370, "size": 220, }, "HTMLDivElement-impl.js": { - "offset": 10114850, + "offset": 9825580, "size": 200, }, "HTMLElement-impl.js": { - "offset": 10115050, + "offset": 9825780, "size": 6300, }, "HTMLEmbedElement-impl.js": { - "offset": 10121350, + "offset": 9832080, "size": 210, }, "HTMLFieldSetElement-impl.js": { - "offset": 10121550, + "offset": 9832280, "size": 1250, }, "HTMLFontElement-impl.js": { - "offset": 10122800, + "offset": 9833530, "size": 210, }, "HTMLFormControlsCollection-impl.js": { - "offset": 10123000, + "offset": 9833730, "size": 780, }, "HTMLFormElement-impl.js": { - "offset": 10123770, + "offset": 9834500, "size": 6780, }, "HTMLFrameElement-impl.js": { - "offset": 10130550, + "offset": 9841270, "size": 8100, }, "HTMLFrameSetElement-impl.js": { - "offset": 10138640, + "offset": 9849370, "size": 510, }, "HTMLHRElement-impl.js": { - "offset": 10139140, + "offset": 9849870, "size": 200, }, "HTMLHeadElement-impl.js": { - "offset": 10139340, + "offset": 9850070, "size": 210, }, "HTMLHeadingElement-impl.js": { - "offset": 10139540, + "offset": 9850270, "size": 210, }, "HTMLHtmlElement-impl.js": { - "offset": 10139750, + "offset": 9850470, "size": 210, }, "HTMLHyperlinkElementUtils-impl.js": { - "offset": 10139950, + "offset": 9850680, "size": 7690, }, "HTMLIFrameElement-impl.js": { - "offset": 10147630, + "offset": 9858360, "size": 220, }, "HTMLImageElement-impl.js": { - "offset": 10147850, + "offset": 9858580, "size": 3570, }, "HTMLInputElement-impl.js": { - "offset": 10151420, + "offset": 9862150, "size": 36430, }, "HTMLLIElement-impl.js": { - "offset": 10187840, + "offset": 9898570, "size": 200, }, "HTMLLabelElement-impl.js": { - "offset": 10188040, + "offset": 9898770, "size": 2750, }, "HTMLLegendElement-impl.js": { - "offset": 10190780, + "offset": 9901510, "size": 520, }, "HTMLLinkElement-impl.js": { - "offset": 10191300, + "offset": 9902030, "size": 2780, }, "HTMLMapElement-impl.js": { - "offset": 10194070, + "offset": 9904800, "size": 270, }, "HTMLMarqueeElement-impl.js": { - "offset": 10194340, + "offset": 9905060, "size": 210, }, "HTMLMediaElement-impl.js": { - "offset": 10194540, + "offset": 9905270, "size": 3190, }, "HTMLMenuElement-impl.js": { - "offset": 10197730, + "offset": 9908450, "size": 210, }, "HTMLMetaElement-impl.js": { - "offset": 10197930, + "offset": 9908650, "size": 210, }, "HTMLMeterElement-impl.js": { - "offset": 10198130, + "offset": 9908860, "size": 4360, }, "HTMLModElement-impl.js": { - "offset": 10202490, + "offset": 9913210, "size": 200, }, "HTMLOListElement-impl.js": { - "offset": 10202680, + "offset": 9913410, "size": 430, }, "HTMLObjectElement-impl.js": { - "offset": 10203110, + "offset": 9913840, "size": 690, }, "HTMLOptGroupElement-impl.js": { - "offset": 10203800, + "offset": 9914520, "size": 210, }, "HTMLOptionElement-impl.js": { - "offset": 10204000, + "offset": 9914730, "size": 3670, }, "HTMLOptionsCollection-impl.js": { - "offset": 10207670, + "offset": 9918390, "size": 3420, }, "HTMLOrSVGElement-impl.js": { - "offset": 10211080, + "offset": 9921810, "size": 3150, }, "HTMLOutputElement-impl.js": { - "offset": 10214230, + "offset": 9924960, "size": 2040, }, "HTMLParagraphElement-impl.js": { - "offset": 10216260, + "offset": 9926990, "size": 220, }, "HTMLParamElement-impl.js": { - "offset": 10216470, + "offset": 9927200, "size": 210, }, "HTMLPictureElement-impl.js": { - "offset": 10216670, + "offset": 9927400, "size": 210, }, "HTMLPreElement-impl.js": { - "offset": 10216880, + "offset": 9927610, "size": 200, }, "HTMLProgressElement-impl.js": { - "offset": 10217080, + "offset": 9927810, "size": 1880, }, "HTMLQuoteElement-impl.js": { - "offset": 10218950, + "offset": 9929680, "size": 210, }, "HTMLScriptElement-impl.js": { - "offset": 10219150, + "offset": 9929880, "size": 7380, }, "HTMLSelectElement-impl.js": { - "offset": 10226530, + "offset": 9937260, "size": 8140, }, "HTMLSlotElement-impl.js": { - "offset": 10234660, + "offset": 9945390, "size": 1540, }, "HTMLSourceElement-impl.js": { - "offset": 10236200, + "offset": 9946930, "size": 210, }, "HTMLSpanElement-impl.js": { - "offset": 10236410, + "offset": 9947130, "size": 210, }, "HTMLStyleElement-impl.js": { - "offset": 10236610, + "offset": 9947340, "size": 2140, }, "HTMLTableCaptionElement-impl.js": { - "offset": 10238740, + "offset": 9949470, "size": 220, }, "HTMLTableCellElement-impl.js": { - "offset": 10238960, + "offset": 9949690, "size": 1660, }, "HTMLTableColElement-impl.js": { - "offset": 10240620, + "offset": 9951350, "size": 210, }, "HTMLTableElement-impl.js": { - "offset": 10240830, + "offset": 9951550, "size": 6150, }, "HTMLTableRowElement-impl.js": { - "offset": 10246980, + "offset": 9957700, "size": 2410, }, "HTMLTableSectionElement-impl.js": { - "offset": 10249380, + "offset": 9960110, "size": 1640, }, "HTMLTemplateElement-impl.js": { - "offset": 10251010, + "offset": 9961740, "size": 2040, }, "HTMLTextAreaElement-impl.js": { - "offset": 10253050, + "offset": 9963780, "size": 6540, }, "HTMLTimeElement-impl.js": { - "offset": 10259590, + "offset": 9970320, "size": 210, }, "HTMLTitleElement-impl.js": { - "offset": 10259790, + "offset": 9970520, "size": 370, }, "HTMLTrackElement-impl.js": { - "offset": 10260160, + "offset": 9970890, "size": 250, }, "HTMLUListElement-impl.js": { - "offset": 10260400, + "offset": 9971130, "size": 210, }, "HTMLUnknownElement-impl.js": { - "offset": 10260610, + "offset": 9971340, "size": 210, }, "HTMLVideoElement-impl.js": { - "offset": 10260810, + "offset": 9971540, "size": 300, }, "LinkStyle-impl.js": { - "offset": 10261110, + "offset": 9971840, "size": 60, }, "Node-impl.js": { - "offset": 10261170, + "offset": 9971900, "size": 35020, }, "NodeList-impl.js": { - "offset": 10296190, + "offset": 10006910, "size": 1060, }, "NonDocumentTypeChildNode-impl.js": { - "offset": 10297250, + "offset": 10007970, "size": 680, }, "NonElementParentNode-impl.js": { - "offset": 10297920, + "offset": 10008650, "size": 270, }, "ParentNode-impl.js": { - "offset": 10298180, + "offset": 10008910, "size": 2630, }, "ProcessingInstruction-impl.js": { - "offset": 10300810, + "offset": 10011540, "size": 510, }, "RadioNodeList-impl.js": { - "offset": 10301320, + "offset": 10012040, "size": 1370, }, "SVGDefsElement-impl.js": { - "offset": 10302680, + "offset": 10013410, "size": 220, }, "SVGDescElement-impl.js": { - "offset": 10302900, + "offset": 10013630, "size": 200, }, "SVGElement-impl.js": { - "offset": 10303090, + "offset": 10013820, "size": 2130, }, "SVGGElement-impl.js": { - "offset": 10305220, + "offset": 10015950, "size": 220, }, "SVGGraphicsElement-impl.js": { - "offset": 10305430, + "offset": 10016160, "size": 500, }, "SVGMetadataElement-impl.js": { - "offset": 10305930, + "offset": 10016650, "size": 210, }, "SVGSVGElement-impl.js": { - "offset": 10306130, + "offset": 10016860, "size": 1360, }, "SVGSwitchElement-impl.js": { - "offset": 10307490, + "offset": 10018220, "size": 230, }, "SVGSymbolElement-impl.js": { - "offset": 10307710, + "offset": 10018440, "size": 230, }, "SVGTests-impl.js": { - "offset": 10307930, + "offset": 10018660, "size": 1160, }, "SVGTitleElement-impl.js": { - "offset": 10309090, + "offset": 10019820, "size": 200, }, "ShadowRoot-impl.js": { - "offset": 10309290, + "offset": 10020020, "size": 1020, }, "Slotable-impl.js": { - "offset": 10310310, + "offset": 10021040, "size": 950, }, "Text-impl.js": { - "offset": 10311260, + "offset": 10021980, "size": 2900, }, "WindowEventHandlers-impl.js": { - "offset": 10314150, + "offset": 10024880, "size": 1090, }, "XMLDocument-impl.js": { - "offset": 10315230, + "offset": 10025960, "size": 160, }, }, @@ -34827,19 +34747,19 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen "range": { "files": { "AbstractRange-impl.js": { - "offset": 10315390, + "offset": 10026110, "size": 970, }, "Range-impl.js": { - "offset": 10316350, + "offset": 10027080, "size": 27240, }, "StaticRange-impl.js": { - "offset": 10343580, + "offset": 10054310, "size": 1110, }, "boundary-point.js": { - "offset": 10344690, + "offset": 10055410, "size": 1130, }, }, @@ -34847,7 +34767,7 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen "selection": { "files": { "Selection-impl.js": { - "offset": 10345820, + "offset": 10056540, "size": 10900, }, }, @@ -34855,35 +34775,35 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen "svg": { "files": { "SVGAnimatedPreserveAspectRatio-impl.js": { - "offset": 10356710, + "offset": 10067440, "size": 600, }, "SVGAnimatedRect-impl.js": { - "offset": 10357310, + "offset": 10068040, "size": 2630, }, "SVGAnimatedString-impl.js": { - "offset": 10359940, + "offset": 10070670, "size": 1430, }, "SVGListBase.js": { - "offset": 10361370, + "offset": 10072100, "size": 5280, }, "SVGNumber-impl.js": { - "offset": 10366650, + "offset": 10077380, "size": 1040, }, "SVGPreserveAspectRatio-impl.js": { - "offset": 10367680, + "offset": 10078410, "size": 2680, }, "SVGRect-impl.js": { - "offset": 10370360, + "offset": 10081090, "size": 3170, }, "SVGStringList-impl.js": { - "offset": 10373520, + "offset": 10084250, "size": 370, }, }, @@ -34891,15 +34811,15 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen "traversal": { "files": { "NodeIterator-impl.js": { - "offset": 10373890, + "offset": 10084620, "size": 2740, }, "TreeWalker-impl.js": { - "offset": 10376620, + "offset": 10087350, "size": 4710, }, "helpers.js": { - "offset": 10381320, + "offset": 10092050, "size": 1180, }, }, @@ -34907,7 +34827,7 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen "webidl": { "files": { "DOMException-impl.js": { - "offset": 10382500, + "offset": 10093230, "size": 1100, }, }, @@ -34915,7 +34835,7 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen "websockets": { "files": { "WebSocket-impl.js": { - "offset": 10383590, + "offset": 10094320, "size": 10420, }, }, @@ -34923,7 +34843,7 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen "webstorage": { "files": { "Storage-impl.js": { - "offset": 10394010, + "offset": 10104730, "size": 2660, }, }, @@ -34931,67 +34851,67 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen "window": { "files": { "BarProp-impl.js": { - "offset": 10403420, + "offset": 10114140, "size": 320, }, "External-impl.js": { - "offset": 10403730, + "offset": 10114460, "size": 280, }, "History-impl.js": { - "offset": 10404010, + "offset": 10114740, "size": 4560, }, "Location-impl.js": { - "offset": 10408560, + "offset": 10119290, "size": 5780, }, "Screen-impl.js": { - "offset": 10414340, + "offset": 10125070, "size": 360, }, "SessionHistory.js": { - "offset": 10414690, + "offset": 10125420, "size": 5830, }, "navigation.js": { - "offset": 10420520, + "offset": 10131240, "size": 3170, }, }, }, "window-properties.js": { - "offset": 10396660, + "offset": 10107390, "size": 6760, }, "xhr": { "files": { "FormData-impl.js": { - "offset": 10423680, + "offset": 10134410, "size": 5890, }, "XMLHttpRequest-impl.js": { - "offset": 10429570, + "offset": 10140300, "size": 31950, }, "XMLHttpRequestEventTarget-impl.js": { - "offset": 10461520, + "offset": 10172250, "size": 780, }, "XMLHttpRequestUpload-impl.js": { - "offset": 10462300, + "offset": 10173030, "size": 220, }, "multipart-form-data.js": { - "offset": 10462510, + "offset": 10173240, "size": 3400, }, "xhr-sync-worker.js": { - "offset": 10465900, + "offset": 10176630, "size": 1650, }, "xhr-utils.js": { - "offset": 10467540, + "offset": 10178270, "size": 12590, }, }, @@ -34999,11 +34919,11 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen }, }, "utils.js": { - "offset": 10480130, + "offset": 10190860, "size": 2690, }, "virtual-console.js": { - "offset": 10482820, + "offset": 10193540, "size": 1130, }, }, @@ -35015,35 +34935,35 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen "whatwg-mimetype": { "files": { "LICENSE.txt": { - "offset": 10485960, + "offset": 10196690, "size": 1070, }, "lib": { "files": { "mime-type-parameters.js": { - "offset": 10487030, + "offset": 10197760, "size": 1440, }, "mime-type.js": { - "offset": 10488470, + "offset": 10199190, "size": 3160, }, "parser.js": { - "offset": 10491630, + "offset": 10202350, "size": 2520, }, "serializer.js": { - "offset": 10494140, + "offset": 10204870, "size": 600, }, "utils.js": { - "offset": 10494740, + "offset": 10205470, "size": 1410, }, }, }, "package.json": { - "offset": 10496150, + "offset": 10206880, "size": 700, }, }, @@ -35051,7 +34971,7 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen }, }, "package.json": { - "offset": 10483940, + "offset": 10194670, "size": 2020, }, }, @@ -35059,31 +34979,31 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen "linkify-it": { "files": { "LICENSE": { - "offset": 10496840, + "offset": 10207570, "size": 1060, }, "build": { "files": { "index.cjs.js": { - "offset": 10497900, + "offset": 10208630, "size": 23330, }, }, }, "index.mjs": { - "offset": 10521230, + "offset": 10231960, "size": 17610, }, "lib": { "files": { "re.mjs": { - "offset": 10538830, + "offset": 10249560, "size": 5560, }, }, }, "package.json": { - "offset": 10544390, + "offset": 10255120, "size": 920, }, }, @@ -35091,7 +35011,7 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen "lru-cache": { "files": { "LICENSE.md": { - "offset": 10545310, + "offset": 10256040, "size": 1560, }, "dist": { @@ -35099,115 +35019,151 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen "commonjs": { "files": { "diagnostics-channel.d.ts.map": { - "offset": 10546860, + "offset": 10257590, "size": 340, }, "diagnostics-channel.js": { - "offset": 10547200, + "offset": 10257920, "size": 580, }, "diagnostics-channel.js.map": { - "offset": 10547770, + "offset": 10258500, "size": 830, }, "index.d.ts.map": { - "offset": 10548600, + "offset": 10259330, "size": 15010, }, "index.js": { - "offset": 10563610, + "offset": 10274340, "size": 61260, }, "index.js.map": { - "offset": 10624860, + "offset": 10335590, "size": 153310, }, "index.min.js": { - "offset": 10778170, + "offset": 10488890, "size": 18920, }, "index.min.js.map": { - "offset": 10797080, + "offset": 10507800, "size": 132070, }, "package.json": { - "offset": 10929150, + "offset": 10639870, "size": 30, }, }, }, "esm": { "files": { + "browser": { + "files": { + "diagnostics-channel-browser.d.mts.map": { + "offset": 10639900, + "size": 370, + }, + "diagnostics-channel-browser.mjs.map": { + "offset": 10640260, + "size": 730, + }, + "diagnostics-channel.js": { + "offset": 10640990, + "size": 160, + }, + "index.d.ts.map": { + "offset": 10641140, + "size": 15020, + }, + "index.js": { + "offset": 10656150, + "size": 60580, + }, + "index.js.map": { + "offset": 10716730, + "size": 153310, + }, + "index.min.js": { + "offset": 10870040, + "size": 18380, + }, + "index.min.js.map": { + "offset": 10888410, + "size": 131780, + }, + }, + }, "diagnostics-channel-esm.d.mts.map": { - "offset": 10929170, + "offset": 11020190, "size": 350, }, "diagnostics-channel-esm.mjs.map": { - "offset": 10929520, - "size": 1640, + "offset": 11020540, + "size": 1690, }, "diagnostics-channel.js": { - "offset": 10931150, + "offset": 11022220, "size": 780, }, "index.d.ts.map": { - "offset": 10931930, + "offset": 11023000, "size": 15010, }, "index.js": { - "offset": 10946940, + "offset": 11038010, "size": 60580, }, "index.js.map": { - "offset": 11007510, + "offset": 11098580, "size": 153310, }, "index.min.js": { - "offset": 11160820, + "offset": 11251890, "size": 18510, }, "index.min.js.map": { - "offset": 11179320, - "size": 132550, + "offset": 11270390, + "size": 132600, }, "node": { "files": { "diagnostics-channel-node.d.mts.map": { - "offset": 11311870, + "offset": 11402990, "size": 360, }, "diagnostics-channel-node.mjs.map": { - "offset": 11312220, + "offset": 11403340, "size": 890, }, "diagnostics-channel.js": { - "offset": 11313100, + "offset": 11404220, "size": 410, }, "index.d.ts.map": { - "offset": 11313510, + "offset": 11404630, "size": 15020, }, "index.js": { - "offset": 11328520, + "offset": 11419640, "size": 60580, }, "index.js.map": { - "offset": 11389090, + "offset": 11480210, "size": 153310, }, "index.min.js": { - "offset": 11542400, + "offset": 11633520, "size": 18470, }, "index.min.js.map": { - "offset": 11560860, + "offset": 11651980, "size": 131920, }, }, }, "package.json": { - "offset": 11692780, + "offset": 11783900, "size": 30, }, }, @@ -35215,22 +35171,22 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen }, }, "package.json": { - "offset": 11692800, - "size": 2170, + "offset": 11783920, + "size": 2610, }, }, }, "markdown-it": { "files": { "LICENSE": { - "offset": 11694970, + "offset": 11786530, "size": 1080, }, "bin": { "files": { "markdown-it.mjs": { "executable": true, - "offset": 11696040, + "offset": 11787600, "size": 2170, }, }, @@ -35238,21 +35194,21 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen "dist": { "files": { "index.cjs.js": { - "offset": 11698210, + "offset": 11789760, "size": 163060, }, "markdown-it.js": { - "offset": 11861260, + "offset": 11952820, "size": 298980, }, "markdown-it.min.js": { - "offset": 12160230, + "offset": 12251790, "size": 123620, }, }, }, "index.mjs": { - "offset": 12283850, + "offset": 12375410, "size": 50, }, "lib": { @@ -35260,15 +35216,15 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen "common": { "files": { "html_blocks.mjs": { - "offset": 12283890, + "offset": 12375450, "size": 800, }, "html_re.mjs": { - "offset": 12284690, + "offset": 12376250, "size": 1000, }, "utils.mjs": { - "offset": 12285680, + "offset": 12377240, "size": 7900, }, }, @@ -35276,111 +35232,111 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen "helpers": { "files": { "index.mjs": { - "offset": 12293580, + "offset": 12385140, "size": 280, }, "parse_link_destination.mjs": { - "offset": 12293850, + "offset": 12385410, "size": 1550, }, "parse_link_label.mjs": { - "offset": 12295400, + "offset": 12386960, "size": 990, }, "parse_link_title.mjs": { - "offset": 12296380, + "offset": 12387940, "size": 1860, }, }, }, "index.mjs": { - "offset": 12298230, + "offset": 12389790, "size": 17900, }, "parser_block.mjs": { - "offset": 12316130, + "offset": 12407690, "size": 3990, }, "parser_core.mjs": { - "offset": 12320120, + "offset": 12411680, "size": 1510, }, "parser_inline.mjs": { - "offset": 12321630, + "offset": 12413190, "size": 5440, }, "presets": { "files": { "commonmark.mjs": { - "offset": 12327060, + "offset": 12418620, "size": 1910, }, "default.mjs": { - "offset": 12328970, + "offset": 12420530, "size": 1290, }, "zero.mjs": { - "offset": 12330250, + "offset": 12421810, "size": 1660, }, }, }, "renderer.mjs": { - "offset": 12331900, + "offset": 12423460, "size": 8930, }, "ruler.mjs": { - "offset": 12340830, + "offset": 12432390, "size": 8480, }, "rules_block": { "files": { "blockquote.mjs": { - "offset": 12349310, + "offset": 12440870, "size": 6060, }, "code.mjs": { - "offset": 12355370, + "offset": 12446930, "size": 690, }, "fence.mjs": { - "offset": 12356050, + "offset": 12447610, "size": 2420, }, "heading.mjs": { - "offset": 12358460, + "offset": 12450020, "size": 1500, }, "hr.mjs": { - "offset": 12359960, + "offset": 12451520, "size": 1070, }, "html_block.mjs": { - "offset": 12361030, + "offset": 12452590, "size": 2200, }, "lheading.mjs": { - "offset": 12363230, + "offset": 12454790, "size": 2490, }, "list.mjs": { - "offset": 12365720, + "offset": 12457280, "size": 9110, }, "paragraph.mjs": { - "offset": 12374820, + "offset": 12466380, "size": 1460, }, "reference.mjs": { - "offset": 12376280, + "offset": 12467840, "size": 5830, }, "state_block.mjs": { - "offset": 12382110, + "offset": 12473670, "size": 5900, }, "table.mjs": { - "offset": 12388000, + "offset": 12479560, "size": 7090, }, }, @@ -35388,35 +35344,35 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen "rules_core": { "files": { "block.mjs": { - "offset": 12395090, + "offset": 12486650, "size": 340, }, "inline.mjs": { - "offset": 12395420, + "offset": 12486980, "size": 290, }, "linkify.mjs": { - "offset": 12395710, + "offset": 12487270, "size": 4250, }, "normalize.mjs": { - "offset": 12399960, + "offset": 12491520, "size": 360, }, "replacements.mjs": { - "offset": 12400310, + "offset": 12491870, "size": 2640, }, "smartquotes.mjs": { - "offset": 12402940, + "offset": 12494500, "size": 5730, }, "state_core.mjs": { - "offset": 12408670, + "offset": 12500230, "size": 330, }, "text_join.mjs": { - "offset": 12408990, + "offset": 12500550, "size": 1150, }, }, @@ -35424,69 +35380,69 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen "rules_inline": { "files": { "autolink.mjs": { - "offset": 12410140, + "offset": 12501700, "size": 2020, }, "backticks.mjs": { - "offset": 12412150, + "offset": 12503710, "size": 1680, }, "balance_pairs.mjs": { - "offset": 12413830, + "offset": 12505390, "size": 4090, }, "emphasis.mjs": { - "offset": 12417910, + "offset": 12509470, "size": 3520, }, "entity.mjs": { - "offset": 12421430, + "offset": 12512990, "size": 1490, }, "escape.mjs": { - "offset": 12422920, + "offset": 12514480, "size": 1420, }, "fragments_join.mjs": { - "offset": 12424340, + "offset": 12515900, "size": 1270, }, "html_inline.mjs": { - "offset": 12425600, + "offset": 12517160, "size": 1170, }, "image.mjs": { - "offset": 12426770, + "offset": 12518330, "size": 3640, }, "link.mjs": { - "offset": 12430410, + "offset": 12521960, "size": 3730, }, "linkify.mjs": { - "offset": 12434130, + "offset": 12525690, "size": 1680, }, "newline.mjs": { - "offset": 12435800, + "offset": 12527360, "size": 1200, }, "state_inline.mjs": { - "offset": 12437000, + "offset": 12528560, "size": 3500, }, "strikethrough.mjs": { - "offset": 12440500, + "offset": 12532050, "size": 2940, }, "text.mjs": { - "offset": 12443430, + "offset": 12534990, "size": 2110, }, }, }, "token.mjs": { - "offset": 12445530, + "offset": 12537090, "size": 3800, }, }, @@ -35496,163 +35452,163 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen "entities": { "files": { "LICENSE": { - "offset": 12451100, + "offset": 12542660, "size": 1260, }, "lib": { "files": { "decode.d.ts.map": { - "offset": 12452360, + "offset": 12543920, "size": 2210, }, "decode.js": { - "offset": 12454570, + "offset": 12546130, "size": 22620, }, "decode.js.map": { - "offset": 12477180, + "offset": 12568740, "size": 11600, }, "decode_codepoint.d.ts.map": { - "offset": 12488780, + "offset": 12580330, "size": 400, }, "decode_codepoint.js": { - "offset": 12489170, + "offset": 12580730, "size": 2320, }, "decode_codepoint.js.map": { - "offset": 12491480, + "offset": 12583040, "size": 1910, }, "encode.d.ts.map": { - "offset": 12493390, + "offset": 12584950, "size": 340, }, "encode.js": { - "offset": 12493730, + "offset": 12585280, "size": 2970, }, "encode.js.map": { - "offset": 12496690, + "offset": 12588250, "size": 1840, }, "escape.d.ts.map": { - "offset": 12498530, + "offset": 12590090, "size": 590, }, "escape.js": { - "offset": 12499110, + "offset": 12590670, "size": 4320, }, "escape.js.map": { - "offset": 12503430, + "offset": 12594980, "size": 2880, }, "esm": { "files": { "decode.d.ts.map": { - "offset": 12506300, + "offset": 12597860, "size": 2210, }, "decode.js": { - "offset": 12508510, + "offset": 12600070, "size": 19810, }, "decode.js.map": { - "offset": 12528320, + "offset": 12619880, "size": 11480, }, "decode_codepoint.d.ts.map": { - "offset": 12539790, + "offset": 12631350, "size": 400, }, "decode_codepoint.js": { - "offset": 12540190, + "offset": 12631750, "size": 2120, }, "decode_codepoint.js.map": { - "offset": 12542300, + "offset": 12633860, "size": 1910, }, "encode.d.ts.map": { - "offset": 12544210, + "offset": 12635770, "size": 340, }, "encode.js": { - "offset": 12544540, + "offset": 12636100, "size": 2570, }, "encode.js.map": { - "offset": 12547110, + "offset": 12638670, "size": 1870, }, "escape.d.ts.map": { - "offset": 12548980, + "offset": 12640530, "size": 590, }, "escape.js": { - "offset": 12549560, + "offset": 12641120, "size": 3970, }, "escape.js.map": { - "offset": 12553530, + "offset": 12645090, "size": 2900, }, "generated": { "files": { "decode-data-html.d.ts.map": { - "offset": 12556420, + "offset": 12647980, "size": 240, }, "decode-data-html.js": { - "offset": 12556660, + "offset": 12648220, "size": 47730, }, "decode-data-html.js.map": { - "offset": 12604380, + "offset": 12695940, "size": 400, }, "decode-data-xml.d.ts.map": { - "offset": 12604780, + "offset": 12696340, "size": 240, }, "decode-data-xml.js": { - "offset": 12605010, + "offset": 12696570, "size": 280, }, "decode-data-xml.js.map": { - "offset": 12605290, + "offset": 12696850, "size": 390, }, "encode-html.d.ts.map": { - "offset": 12605680, + "offset": 12697230, "size": 390, }, "encode-html.js": { - "offset": 12606060, + "offset": 12697620, "size": 27040, }, "encode-html.js.map": { - "offset": 12633100, + "offset": 12724660, "size": 48230, }, }, }, "index.d.ts.map": { - "offset": 12681330, + "offset": 12772890, "size": 1420, }, "index.js": { - "offset": 12682740, + "offset": 12774300, "size": 4060, }, "index.js.map": { - "offset": 12686800, + "offset": 12778360, "size": 2550, }, "package.json": { - "offset": 12689350, + "offset": 12780900, "size": 20, }, }, @@ -35660,59 +35616,59 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen "generated": { "files": { "decode-data-html.d.ts.map": { - "offset": 12689360, + "offset": 12780920, "size": 240, }, "decode-data-html.js": { - "offset": 12689600, + "offset": 12781160, "size": 47830, }, "decode-data-html.js.map": { - "offset": 12737420, + "offset": 12828980, "size": 410, }, "decode-data-xml.d.ts.map": { - "offset": 12737820, + "offset": 12829380, "size": 240, }, "decode-data-xml.js": { - "offset": 12738050, + "offset": 12829610, "size": 380, }, "decode-data-xml.js.map": { - "offset": 12738430, + "offset": 12829990, "size": 400, }, "encode-html.d.ts.map": { - "offset": 12738830, + "offset": 12830390, "size": 390, }, "encode-html.js": { - "offset": 12739210, + "offset": 12830770, "size": 27120, }, "encode-html.js.map": { - "offset": 12766330, + "offset": 12857890, "size": 48230, }, }, }, "index.d.ts.map": { - "offset": 12814560, + "offset": 12906120, "size": 1420, }, "index.js": { - "offset": 12815980, + "offset": 12907540, "size": 7150, }, "index.js.map": { - "offset": 12823120, + "offset": 12914680, "size": 2650, }, }, }, "package.json": { - "offset": 12825760, + "offset": 12917320, "size": 1510, }, }, @@ -35720,7 +35676,7 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen }, }, "package.json": { - "offset": 12449330, + "offset": 12540890, "size": 1780, }, }, @@ -35728,21 +35684,21 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen "mdn-data": { "files": { "LICENSE": { - "offset": 12827260, + "offset": 12918820, "size": 6560, }, "api": { "files": { "index.js": { - "offset": 12833820, + "offset": 12925380, "size": 70, }, "inheritance.json": { - "offset": 12833880, + "offset": 12925440, "size": 53040, }, "inheritance.schema.json": { - "offset": 12886920, + "offset": 12978480, "size": 530, }, }, @@ -35750,89 +35706,89 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen "css": { "files": { "at-rules.json": { - "offset": 12887450, + "offset": 12979010, "size": 19150, }, "at-rules.schema.json": { - "offset": 12906590, + "offset": 12998150, "size": 3390, }, "definitions.json": { - "offset": 12909980, + "offset": 13001540, "size": 2090, }, "functions.json": { - "offset": 12912070, + "offset": 13003630, "size": 25250, }, "functions.schema.json": { - "offset": 12937310, + "offset": 13028870, "size": 840, }, "index.js": { - "offset": 12938150, + "offset": 13029710, "size": 280, }, "properties.json": { - "offset": 12938430, + "offset": 13029990, "size": 340620, }, "properties.schema.json": { - "offset": 13279040, + "offset": 13370600, "size": 16100, }, "selectors.json": { - "offset": 13295140, + "offset": 13386700, "size": 27640, }, "selectors.schema.json": { - "offset": 13322780, + "offset": 13414340, "size": 720, }, "syntaxes.json": { - "offset": 13323490, + "offset": 13415050, "size": 40350, }, "syntaxes.schema.json": { - "offset": 13363830, + "offset": 13455390, "size": 230, }, "types.json": { - "offset": 13364060, + "offset": 13455620, "size": 6620, }, "types.schema.json": { - "offset": 13370680, + "offset": 13462240, "size": 650, }, "units.json": { - "offset": 13371320, + "offset": 13462880, "size": 2840, }, "units.schema.json": { - "offset": 13374160, + "offset": 13465720, "size": 530, }, }, }, "index.js": { - "offset": 13374680, + "offset": 13466240, "size": 100, }, "l10n": { "files": { "css.json": { - "offset": 13374780, + "offset": 13466340, "size": 181820, }, "index.js": { - "offset": 13556600, + "offset": 13648160, "size": 50, }, }, }, "package.json": { - "offset": 13556640, + "offset": 13648200, "size": 560, }, }, @@ -35840,43 +35796,43 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen "mdurl": { "files": { "LICENSE": { - "offset": 13557190, + "offset": 13648750, "size": 2310, }, "build": { "files": { "index.cjs.js": { - "offset": 13559500, + "offset": 13651060, "size": 15460, }, }, }, "index.mjs": { - "offset": 13574950, + "offset": 13666510, "size": 200, }, "lib": { "files": { "decode.mjs": { - "offset": 13575150, + "offset": 13666710, "size": 2850, }, "encode.mjs": { - "offset": 13578000, + "offset": 13669560, "size": 2220, }, "format.mjs": { - "offset": 13580210, + "offset": 13671770, "size": 490, }, "parse.mjs": { - "offset": 13580690, + "offset": 13672250, "size": 9740, }, }, }, "package.json": { - "offset": 13590430, + "offset": 13681980, "size": 610, }, }, @@ -35884,15 +35840,15 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen "ms": { "files": { "index.js": { - "offset": 13591030, + "offset": 13682590, "size": 3030, }, "license.md": { - "offset": 13594050, + "offset": 13685610, "size": 1080, }, "package.json": { - "offset": 13595130, + "offset": 13686690, "size": 500, }, }, @@ -35900,7 +35856,7 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen "parse5": { "files": { "LICENSE": { - "offset": 13595630, + "offset": 13687190, "size": 1110, }, "dist": { @@ -35908,47 +35864,47 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen "common": { "files": { "doctype.js": { - "offset": 13596740, + "offset": 13688300, "size": 4670, }, "error-codes.js": { - "offset": 13601400, + "offset": 13692960, "size": 4750, }, "foreign-content.js": { - "offset": 13606140, + "offset": 13697700, "size": 6300, }, "html.js": { - "offset": 13612440, + "offset": 13704000, "size": 17560, }, "token.js": { - "offset": 13630000, + "offset": 13721560, "size": 840, }, "unicode.js": { - "offset": 13630830, + "offset": 13722390, "size": 2990, }, }, }, "index.js": { - "offset": 13633820, + "offset": 13725380, "size": 1360, }, "parser": { "files": { "formatting-element-list.js": { - "offset": 13635170, + "offset": 13726730, "size": 4310, }, "index.js": { - "offset": 13639480, + "offset": 13731030, "size": 107130, }, "open-element-stack.js": { - "offset": 13746600, + "offset": 13838160, "size": 10920, }, }, @@ -35956,7 +35912,7 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen "serializer": { "files": { "index.js": { - "offset": 13757520, + "offset": 13849080, "size": 5270, }, }, @@ -35964,11 +35920,11 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen "tokenizer": { "files": { "index.js": { - "offset": 13762790, - "size": 98130, + "offset": 13854350, + "size": 98340, }, "preprocessor.js": { - "offset": 13860910, + "offset": 13952680, "size": 7030, }, }, @@ -35976,11 +35932,11 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen "tree-adapters": { "files": { "default.js": { - "offset": 13867930, + "offset": 13959700, "size": 5240, }, "interface.js": { - "offset": 13873160, + "offset": 13964940, "size": 20, }, }, @@ -35988,7 +35944,7 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen }, }, "package.json": { - "offset": 13873170, + "offset": 13964950, "size": 670, }, }, @@ -35996,19 +35952,19 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen "punycode": { "files": { "LICENSE-MIT.txt": { - "offset": 13873840, + "offset": 13965620, "size": 1080, }, "package.json": { - "offset": 13874920, + "offset": 13966690, "size": 750, }, "punycode.es6.js": { - "offset": 13875670, + "offset": 13967440, "size": 12780, }, "punycode.js": { - "offset": 13888450, + "offset": 13980220, "size": 12720, }, }, @@ -36016,19 +35972,19 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen "punycode.js": { "files": { "LICENSE-MIT.txt": { - "offset": 13901160, + "offset": 13992930, "size": 1080, }, "package.json": { - "offset": 13902240, + "offset": 13994010, "size": 760, }, "punycode.es6.js": { - "offset": 13902990, + "offset": 13994760, "size": 12780, }, "punycode.js": { - "offset": 13915770, + "offset": 14007540, "size": 12720, }, }, @@ -36036,15 +35992,15 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen "require-from-string": { "files": { "index.js": { - "offset": 13928480, + "offset": 14020250, "size": 870, }, "license": { - "offset": 13929350, + "offset": 14021120, "size": 1130, }, "package.json": { - "offset": 13930480, + "offset": 14022250, "size": 450, }, }, @@ -36052,15 +36008,15 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen "saxes": { "files": { "package.json": { - "offset": 13930920, + "offset": 14022690, "size": 1700, }, "saxes.js": { - "offset": 13932610, + "offset": 14024380, "size": 73800, }, "saxes.js.map": { - "offset": 14006400, + "offset": 14098170, "size": 51770, }, }, @@ -36068,59 +36024,59 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen "source-map-js": { "files": { "LICENSE": { - "offset": 14058170, + "offset": 14149940, "size": 1530, }, "lib": { "files": { "array-set.js": { - "offset": 14059700, + "offset": 14151470, "size": 3200, }, "base64-vlq.js": { - "offset": 14062890, + "offset": 14154670, "size": 4720, }, "base64.js": { - "offset": 14067610, + "offset": 14159380, "size": 1540, }, "binary-search.js": { - "offset": 14069150, + "offset": 14160920, "size": 4250, }, "mapping-list.js": { - "offset": 14073400, + "offset": 14165170, "size": 2340, }, "quick-sort.js": { - "offset": 14075740, + "offset": 14167510, "size": 4070, }, "source-map-consumer.js": { - "offset": 14079800, + "offset": 14171580, "size": 41580, }, "source-map-generator.js": { - "offset": 14121380, + "offset": 14213160, "size": 14940, }, "source-node.js": { - "offset": 14136320, + "offset": 14228090, "size": 13810, }, "util.js": { - "offset": 14150120, + "offset": 14241900, "size": 15410, }, }, }, "package.json": { - "offset": 14165530, + "offset": 14257300, "size": 640, }, "source-map.js": { - "offset": 14166160, + "offset": 14257930, "size": 410, }, }, @@ -36128,31 +36084,31 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen "symbol-tree": { "files": { "LICENSE": { - "offset": 14166560, + "offset": 14258340, "size": 1090, }, "lib": { "files": { "SymbolTree.js": { - "offset": 14167650, + "offset": 14259420, "size": 29510, }, "SymbolTreeNode.js": { - "offset": 14197160, + "offset": 14288930, "size": 1940, }, "TreeIterator.js": { - "offset": 14199090, + "offset": 14290870, "size": 1980, }, "TreePosition.js": { - "offset": 14201070, + "offset": 14292840, "size": 250, }, }, }, "package.json": { - "offset": 14201310, + "offset": 14293080, "size": 700, }, }, @@ -36160,14 +36116,14 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen "tldts": { "files": { "LICENSE": { - "offset": 14202000, + "offset": 14293780, "size": 1080, }, "bin": { "files": { "cli.js": { "executable": true, - "offset": 14203080, + "offset": 14294850, "size": 550, }, }, @@ -36177,11 +36133,11 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen "cjs": { "files": { "index.js": { - "offset": 14203630, + "offset": 14295400, "size": 175940, }, "index.js.map": { - "offset": 14379570, + "offset": 14471340, "size": 411330, }, "src": { @@ -36189,27 +36145,27 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen "data": { "files": { "trie.js": { - "offset": 14790900, + "offset": 14882670, "size": 152130, }, "trie.js.map": { - "offset": 14943020, + "offset": 15034790, "size": 218020, }, }, }, "suffix-trie.js": { - "offset": 15161030, + "offset": 15252800, "size": 2490, }, "suffix-trie.js.map": { - "offset": 15163520, + "offset": 15255290, "size": 2270, }, }, }, "tsconfig.tsbuildinfo": { - "offset": 15165780, + "offset": 15257560, "size": 39390, }, }, @@ -36217,11 +36173,11 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen "es6": { "files": { "index.js": { - "offset": 15205170, + "offset": 15296950, "size": 1510, }, "index.js.map": { - "offset": 15206680, + "offset": 15298460, "size": 1290, }, "src": { @@ -36229,63 +36185,63 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen "data": { "files": { "trie.js": { - "offset": 15207970, + "offset": 15299740, "size": 152010, }, "trie.js.map": { - "offset": 15359980, + "offset": 15451750, "size": 218040, }, }, }, "suffix-trie.js": { - "offset": 15578010, + "offset": 15669780, "size": 2380, }, "suffix-trie.js.map": { - "offset": 15580380, + "offset": 15672160, "size": 2320, }, }, }, "tsconfig.bundle.tsbuildinfo": { - "offset": 15582700, + "offset": 15674480, "size": 39100, }, }, }, "index.cjs.min.js": { - "offset": 15621800, + "offset": 15713570, "size": 110280, }, "index.cjs.min.js.map": { - "offset": 15732070, + "offset": 15823850, "size": 395130, }, "index.esm.min.js": { - "offset": 16127200, + "offset": 16218970, "size": 110260, }, "index.esm.min.js.map": { - "offset": 16237460, + "offset": 16329230, "size": 395240, }, "index.umd.min.js": { - "offset": 16632690, + "offset": 16724460, "size": 110470, }, "index.umd.min.js.map": { - "offset": 16743160, + "offset": 16834930, "size": 395130, }, }, }, "index.ts": { - "offset": 17138280, + "offset": 17230050, "size": 1730, }, "package.json": { - "offset": 17140010, + "offset": 17231780, "size": 1100, }, "src": { @@ -36293,13 +36249,13 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen "data": { "files": { "trie.ts": { - "offset": 17141110, + "offset": 17232880, "size": 130990, }, }, }, "suffix-trie.ts": { - "offset": 17272090, + "offset": 17363870, "size": 2560, }, }, @@ -36309,7 +36265,7 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen "tldts-core": { "files": { "LICENSE": { - "offset": 17274650, + "offset": 17366420, "size": 1080, }, "dist": { @@ -36317,103 +36273,103 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen "cjs": { "files": { "index.js": { - "offset": 17275720, + "offset": 17367500, "size": 20370, }, "index.js.map": { - "offset": 17296090, + "offset": 17387860, "size": 34550, }, "src": { "files": { "domain-without-suffix.js": { - "offset": 17330630, + "offset": 17422410, "size": 590, }, "domain-without-suffix.js.map": { - "offset": 17331220, + "offset": 17422990, "size": 340, }, "domain.js": { - "offset": 17331560, + "offset": 17423330, "size": 3320, }, "domain.js.map": { - "offset": 17334870, + "offset": 17426650, "size": 1760, }, "extract-hostname.js": { - "offset": 17336630, + "offset": 17428400, "size": 5670, }, "extract-hostname.js.map": { - "offset": 17342300, + "offset": 17434070, "size": 4550, }, "factory.js": { - "offset": 17346840, + "offset": 17438610, "size": 4260, }, "factory.js.map": { - "offset": 17351090, + "offset": 17442870, "size": 2720, }, "is-ip.js": { - "offset": 17353810, + "offset": 17445580, "size": 2220, }, "is-ip.js.map": { - "offset": 17356030, + "offset": 17447800, "size": 2000, }, "is-valid.js": { - "offset": 17358020, + "offset": 17449790, "size": 2560, }, "is-valid.js.map": { - "offset": 17360580, + "offset": 17452350, "size": 1610, }, "lookup": { "files": { "fast-path.js": { - "offset": 17362180, + "offset": 17453960, "size": 2350, }, "fast-path.js.map": { - "offset": 17364530, + "offset": 17456310, "size": 2260, }, "interface.js": { - "offset": 17366790, + "offset": 17458560, "size": 120, }, "interface.js.map": { - "offset": 17366900, + "offset": 17458680, "size": 130, }, }, }, "options.js": { - "offset": 17367030, + "offset": 17458800, "size": 750, }, "options.js.map": { - "offset": 17367780, + "offset": 17459550, "size": 620, }, "subdomain.js": { - "offset": 17368400, + "offset": 17460170, "size": 440, }, "subdomain.js.map": { - "offset": 17368840, + "offset": 17460610, "size": 370, }, }, }, "tsconfig.tsbuildinfo": { - "offset": 17369200, + "offset": 17460980, "size": 40280, }, }, @@ -36421,103 +36377,103 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen "es6": { "files": { "index.js": { - "offset": 17409480, + "offset": 17501250, "size": 220, }, "index.js.map": { - "offset": 17409700, + "offset": 17501470, "size": 260, }, "src": { "files": { "domain-without-suffix.js": { - "offset": 17409950, + "offset": 17501730, "size": 490, }, "domain-without-suffix.js.map": { - "offset": 17410440, + "offset": 17502210, "size": 340, }, "domain.js": { - "offset": 17410770, + "offset": 17502550, "size": 3230, }, "domain.js.map": { - "offset": 17414000, + "offset": 17505770, "size": 1760, }, "extract-hostname.js": { - "offset": 17415750, + "offset": 17507530, "size": 5580, }, "extract-hostname.js.map": { - "offset": 17421320, + "offset": 17513100, "size": 4550, }, "factory.js": { - "offset": 17425870, + "offset": 17517640, "size": 3950, }, "factory.js.map": { - "offset": 17429810, + "offset": 17521580, "size": 2780, }, "is-ip.js": { - "offset": 17432590, + "offset": 17524360, "size": 2140, }, "is-ip.js.map": { - "offset": 17434720, + "offset": 17526490, "size": 1990, }, "is-valid.js": { - "offset": 17436710, + "offset": 17528480, "size": 2460, }, "is-valid.js.map": { - "offset": 17439170, + "offset": 17530940, "size": 1610, }, "lookup": { "files": { "fast-path.js": { - "offset": 17440780, + "offset": 17532550, "size": 2250, }, "fast-path.js.map": { - "offset": 17443020, + "offset": 17534800, "size": 2260, }, "interface.js": { - "offset": 17445280, + "offset": 17537050, "size": 50, }, "interface.js.map": { - "offset": 17445330, + "offset": 17537100, "size": 130, }, }, }, "options.js": { - "offset": 17445450, + "offset": 17537230, "size": 650, }, "options.js.map": { - "offset": 17446100, + "offset": 17537870, "size": 610, }, "subdomain.js": { - "offset": 17446700, + "offset": 17538480, "size": 350, }, "subdomain.js.map": { - "offset": 17447050, + "offset": 17538820, "size": 370, }, }, }, "tsconfig.bundle.tsbuildinfo": { - "offset": 17447420, + "offset": 17539190, "size": 39260, }, }, @@ -36525,57 +36481,57 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen }, }, "index.ts": { - "offset": 17486670, + "offset": 17578440, "size": 300, }, "package.json": { - "offset": 17486970, + "offset": 17578740, "size": 940, }, "src": { "files": { "domain-without-suffix.ts": { - "offset": 17487900, + "offset": 17579670, "size": 460, }, "domain.ts": { - "offset": 17488360, + "offset": 17580130, "size": 3220, }, "extract-hostname.ts": { - "offset": 17491580, + "offset": 17583350, "size": 4820, }, "factory.ts": { - "offset": 17496390, + "offset": 17588160, "size": 5110, }, "is-ip.ts": { - "offset": 17501500, + "offset": 17593270, "size": 2060, }, "is-valid.ts": { - "offset": 17503560, + "offset": 17595330, "size": 2310, }, "lookup": { "files": { "fast-path.ts": { - "offset": 17505860, + "offset": 17597640, "size": 2120, }, "interface.ts": { - "offset": 17507980, + "offset": 17599750, "size": 230, }, }, }, "options.ts": { - "offset": 17508200, + "offset": 17599980, "size": 870, }, "subdomain.ts": { - "offset": 17509070, + "offset": 17600840, "size": 330, }, }, @@ -36585,35 +36541,35 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen "tough-cookie": { "files": { "LICENSE": { - "offset": 17509390, + "offset": 17601160, "size": 1490, }, "dist": { "files": { "index.cjs": { - "offset": 17510880, + "offset": 17602650, "size": 74170, }, "index.cjs.map": { - "offset": 17585040, + "offset": 17676810, "size": 217210, }, "index.d.cts": { - "offset": 17802240, + "offset": 17894020, "size": 80400, }, "index.js": { - "offset": 17882630, + "offset": 17974410, "size": 72520, }, "index.js.map": { - "offset": 17955150, + "offset": 18046930, "size": 217030, }, }, }, "package.json": { - "offset": 18172180, + "offset": 18263960, "size": 1620, }, }, @@ -36621,31 +36577,31 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen "tr46": { "files": { "LICENSE.md": { - "offset": 18173800, + "offset": 18265570, "size": 1080, }, "index.js": { - "offset": 18174880, + "offset": 18266650, "size": 8590, }, "lib": { "files": { "mappingTable.json": { - "offset": 18183470, + "offset": 18275240, "size": 142920, }, "regexes.js": { - "offset": 18326380, + "offset": 18418150, "size": 72470, }, "statusMapping.js": { - "offset": 18398840, + "offset": 18490610, "size": 130, }, }, }, "package.json": { - "offset": 18398960, + "offset": 18490740, "size": 680, }, }, @@ -36653,13 +36609,13 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen "uc.micro": { "files": { "LICENSE.txt": { - "offset": 18399640, + "offset": 18491410, "size": 1080, }, "build": { "files": { "index.cjs.js": { - "offset": 18400720, + "offset": 18492490, "size": 5270, }, }, @@ -36669,7 +36625,7 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen "Cc": { "files": { "regex.mjs": { - "offset": 18405980, + "offset": 18497750, "size": 40, }, }, @@ -36677,7 +36633,7 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen "Cf": { "files": { "regex.mjs": { - "offset": 18406010, + "offset": 18497790, "size": 270, }, }, @@ -36685,7 +36641,7 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen "P": { "files": { "regex.mjs": { - "offset": 18406280, + "offset": 18498050, "size": 2050, }, }, @@ -36693,7 +36649,7 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen "S": { "files": { "regex.mjs": { - "offset": 18408320, + "offset": 18500090, "size": 2560, }, }, @@ -36701,7 +36657,7 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen "Z": { "files": { "regex.mjs": { - "offset": 18410870, + "offset": 18502640, "size": 80, }, }, @@ -36709,11 +36665,11 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen }, }, "index.mjs": { - "offset": 18410940, + "offset": 18502720, "size": 310, }, "package.json": { - "offset": 18411250, + "offset": 18503020, "size": 650, }, "properties": { @@ -36721,7 +36677,7 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen "Any": { "files": { "regex.mjs": { - "offset": 18411890, + "offset": 18503660, "size": 150, }, }, @@ -36733,27 +36689,27 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen "w3c-xmlserializer": { "files": { "LICENSE.md": { - "offset": 18412040, + "offset": 18503810, "size": 1110, }, "lib": { "files": { "attributes.js": { - "offset": 18413140, + "offset": 18504910, "size": 3700, }, "constants.js": { - "offset": 18416830, + "offset": 18508610, "size": 790, }, "serialize.js": { - "offset": 18417620, + "offset": 18509400, "size": 10100, }, }, }, "package.json": { - "offset": 18427720, + "offset": 18519500, "size": 460, }, }, @@ -36761,19 +36717,19 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen "webidl-conversions": { "files": { "LICENSE.md": { - "offset": 18428180, + "offset": 18519950, "size": 1330, }, "lib": { "files": { "index.js": { - "offset": 18429500, + "offset": 18521270, "size": 12230, }, }, }, "package.json": { - "offset": 18441720, + "offset": 18533490, "size": 600, }, }, @@ -36781,43 +36737,43 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen "whatwg-mimetype": { "files": { "LICENSE.txt": { - "offset": 18442310, + "offset": 18534080, "size": 1070, }, "lib": { "files": { "index.js": { - "offset": 18443380, + "offset": 18535150, "size": 120, }, "mime-type-parameters.js": { - "offset": 18443490, + "offset": 18535260, "size": 1440, }, "mime-type.js": { - "offset": 18444930, + "offset": 18536700, "size": 3160, }, "parser.js": { - "offset": 18448080, + "offset": 18539850, "size": 2520, }, "serializer.js": { - "offset": 18450600, + "offset": 18542370, "size": 600, }, "sniff.js": { - "offset": 18451200, + "offset": 18542970, "size": 23890, }, "utils.js": { - "offset": 18475090, + "offset": 18566860, "size": 1410, }, }, }, "package.json": { - "offset": 18476490, + "offset": 18568260, "size": 680, }, }, @@ -36825,71 +36781,71 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen "whatwg-url": { "files": { "LICENSE.txt": { - "offset": 18477170, + "offset": 18568940, "size": 1080, }, "index.js": { - "offset": 18478250, + "offset": 18570020, "size": 1270, }, "lib": { "files": { "Function.js": { - "offset": 18479510, + "offset": 18571280, "size": 1190, }, "URL-impl.js": { - "offset": 18480700, + "offset": 18572470, "size": 5090, }, "URL.js": { - "offset": 18485780, + "offset": 18577550, "size": 15390, }, "URLSearchParams-impl.js": { - "offset": 18501160, + "offset": 18592930, "size": 2970, }, "URLSearchParams.js": { - "offset": 18504130, + "offset": 18595900, "size": 17120, }, "VoidFunction.js": { - "offset": 18521250, + "offset": 18613020, "size": 730, }, "encoding.js": { - "offset": 18521980, + "offset": 18613750, "size": 330, }, "infra.js": { - "offset": 18522310, + "offset": 18614080, "size": 520, }, "percent-encoding.js": { - "offset": 18522830, + "offset": 18614600, "size": 4890, }, "url-state-machine.js": { - "offset": 18527710, + "offset": 18619490, "size": 31850, }, "urlencoded.js": { - "offset": 18559560, + "offset": 18651330, "size": 2280, }, "utils.js": { - "offset": 18561840, + "offset": 18653610, "size": 6770, }, }, }, "package.json": { - "offset": 18568600, + "offset": 18660380, "size": 980, }, "webidl2js-wrapper.js": { - "offset": 18569580, + "offset": 18661350, "size": 170, }, }, @@ -36897,79 +36853,79 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen "ws": { "files": { "LICENSE": { - "offset": 18569750, + "offset": 18661520, "size": 1190, }, "browser.js": { - "offset": 18570930, + "offset": 18662700, "size": 180, }, "index.js": { - "offset": 18571110, + "offset": 18662880, "size": 800, }, "lib": { "files": { "buffer-util.js": { - "offset": 18571900, + "offset": 18663680, "size": 3060, }, "constants.js": { - "offset": 18574960, + "offset": 18666730, "size": 510, }, "event-target.js": { - "offset": 18575460, + "offset": 18667240, "size": 7330, }, "extension.js": { - "offset": 18582780, + "offset": 18674560, "size": 6190, }, "limiter.js": { - "offset": 18588970, + "offset": 18680740, "size": 1040, }, "permessage-deflate.js": { - "offset": 18590000, + "offset": 18681770, "size": 14540, }, "receiver.js": { - "offset": 18604530, + "offset": 18696310, "size": 16460, }, "sender.js": { - "offset": 18620990, + "offset": 18712770, "size": 16720, }, "stream.js": { - "offset": 18637700, + "offset": 18729480, "size": 4210, }, "subprotocol.js": { - "offset": 18641910, + "offset": 18733680, "size": 1500, }, "validation.js": { - "offset": 18643410, + "offset": 18735180, "size": 3910, }, "websocket-server.js": { - "offset": 18647310, + "offset": 18739080, "size": 16650, }, "websocket.js": { - "offset": 18663950, + "offset": 18755720, "size": 36730, }, }, }, "package.json": { - "offset": 18700680, + "offset": 18792450, "size": 1310, }, "wrapper.mjs": { - "offset": 18701980, + "offset": 18793760, "size": 560, }, }, @@ -36977,19 +36933,19 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen "xml-name-validator": { "files": { "LICENSE.txt": { - "offset": 18702540, + "offset": 18794310, "size": 10180, }, "lib": { "files": { "xml-name-validator.js": { - "offset": 18712710, + "offset": 18804480, "size": 1710, }, }, }, "package.json": { - "offset": 18714410, + "offset": 18806190, "size": 530, }, }, @@ -36997,11 +36953,11 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen "xmlchars": { "files": { "LICENSE": { - "offset": 18714940, + "offset": 18806710, "size": 1090, }, "package.json": { - "offset": 18716030, + "offset": 18807800, "size": 860, }, "xml": { @@ -37009,19 +36965,19 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen "1.0": { "files": { "ed4.js": { - "offset": 18716890, + "offset": 18808660, "size": 5500, }, "ed4.js.map": { - "offset": 18722380, + "offset": 18814150, "size": 1400, }, "ed5.js": { - "offset": 18723780, + "offset": 18815550, "size": 3350, }, "ed5.js.map": { - "offset": 18727120, + "offset": 18818890, "size": 2610, }, }, @@ -37029,11 +36985,11 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen "1.1": { "files": { "ed2.js": { - "offset": 18729730, + "offset": 18821500, "size": 4740, }, "ed2.js.map": { - "offset": 18734460, + "offset": 18826240, "size": 3400, }, }, @@ -37041,11 +36997,11 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen }, }, "xmlchars.js": { - "offset": 18737850, + "offset": 18829630, "size": 6920, }, "xmlchars.js.map": { - "offset": 18744770, + "offset": 18836540, "size": 3080, }, "xmlns": { @@ -37053,11 +37009,11 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen "1.0": { "files": { "ed3.js": { - "offset": 18747840, + "offset": 18839620, "size": 2260, }, "ed3.js.map": { - "offset": 18750100, + "offset": 18841870, "size": 1690, }, }, @@ -37069,7 +37025,7 @@ exports[`node_module collectors > yarn berry version conflict with hoisted depen }, }, "package.json": { - "offset": 18755120, + "offset": 18846890, "size": 320, }, }, @@ -37191,11 +37147,11 @@ exports[`node_module collectors > yarn max stack 2`] = ` { "files": { "index.html": { - "offset": 3745390, + "offset": 3745490, "size": 380, }, "index.js": { - "offset": 3745770, + "offset": 3745860, "size": 620, }, "node_modules": { @@ -48522,16 +48478,20 @@ exports[`node_module collectors > yarn max stack 2`] = ` "offset": 3017330, "size": 1090, }, - "index.js": { + "eslint.config.mjs": { "offset": 3018410, + "size": 140, + }, + "index.js": { + "offset": 3018540, "size": 210, }, "package.json": { - "offset": 3018610, - "size": 1480, + "offset": 3018750, + "size": 1470, }, "tsconfig.json": { - "offset": 3020090, + "offset": 3020220, "size": 80, }, }, @@ -48539,23 +48499,23 @@ exports[`node_module collectors > yarn max stack 2`] = ` "hosted-git-info": { "files": { "LICENSE": { - "offset": 3020160, + "offset": 3020290, "size": 740, }, "git-host-info.js": { - "offset": 3020890, + "offset": 3021020, "size": 3790, }, "git-host.js": { - "offset": 3024680, + "offset": 3024810, "size": 4640, }, "index.js": { - "offset": 3029320, + "offset": 3029450, "size": 5150, }, "package.json": { - "offset": 3034470, + "offset": 3034590, "size": 620, }, }, @@ -48563,31 +48523,31 @@ exports[`node_module collectors > yarn max stack 2`] = ` "internal-slot": { "files": { ".attw.json": { - "offset": 3035080, + "offset": 3035210, "size": 50, }, ".editorconfig": { - "offset": 3035130, + "offset": 3035250, "size": 290, }, ".nycrc": { - "offset": 3035410, + "offset": 3035540, "size": 140, }, "LICENSE": { - "offset": 3035550, + "offset": 3035680, "size": 1080, }, "index.js": { - "offset": 3036620, + "offset": 3036750, "size": 2050, }, "package.json": { - "offset": 3038670, + "offset": 3038790, "size": 1260, }, "tsconfig.json": { - "offset": 3039920, + "offset": 3040050, "size": 120, }, }, @@ -48595,23 +48555,23 @@ exports[`node_module collectors > yarn max stack 2`] = ` "is-array-buffer": { "files": { ".nycrc": { - "offset": 3040040, + "offset": 3040170, "size": 140, }, "LICENSE": { - "offset": 3040180, + "offset": 3040310, "size": 1090, }, "index.js": { - "offset": 3041260, + "offset": 3041390, "size": 1410, }, "package.json": { - "offset": 3042670, + "offset": 3042800, "size": 1720, }, "tsconfig.json": { - "offset": 3044390, + "offset": 3044520, "size": 130, }, }, @@ -48619,23 +48579,23 @@ exports[`node_module collectors > yarn max stack 2`] = ` "is-arrayish": { "files": { ".editorconfig": { - "offset": 3044520, + "offset": 3044640, "size": 270, }, ".istanbul.yml": { - "offset": 3044780, + "offset": 3044910, "size": 60, }, "LICENSE": { - "offset": 3044840, + "offset": 3044970, "size": 1080, }, "index.js": { - "offset": 3045920, + "offset": 3046040, "size": 210, }, "package.json": { - "offset": 3046120, + "offset": 3046250, "size": 470, }, }, @@ -48643,23 +48603,23 @@ exports[`node_module collectors > yarn max stack 2`] = ` "is-async-function": { "files": { ".nycrc": { - "offset": 3046580, + "offset": 3046710, "size": 140, }, "LICENSE": { - "offset": 3046720, + "offset": 3046850, "size": 1090, }, "index.js": { - "offset": 3047800, + "offset": 3047930, "size": 830, }, "package.json": { - "offset": 3048630, + "offset": 3048760, "size": 2060, }, "tsconfig.json": { - "offset": 3050690, + "offset": 3050810, "size": 160, }, }, @@ -48667,23 +48627,23 @@ exports[`node_module collectors > yarn max stack 2`] = ` "is-bigint": { "files": { ".nycrc": { - "offset": 3050840, + "offset": 3050970, "size": 140, }, "LICENSE": { - "offset": 3050980, + "offset": 3051110, "size": 1080, }, "index.js": { - "offset": 3052050, + "offset": 3052180, "size": 850, }, "package.json": { - "offset": 3052900, + "offset": 3053020, "size": 1400, }, "tsconfig.json": { - "offset": 3054290, + "offset": 3054420, "size": 120, }, }, @@ -48691,27 +48651,27 @@ exports[`node_module collectors > yarn max stack 2`] = ` "is-boolean-object": { "files": { ".editorconfig": { - "offset": 3054410, + "offset": 3054540, "size": 360, }, ".nycrc": { - "offset": 3054760, + "offset": 3054890, "size": 160, }, "LICENSE": { - "offset": 3054920, + "offset": 3055050, "size": 1090, }, "index.js": { - "offset": 3056000, + "offset": 3056130, "size": 720, }, "package.json": { - "offset": 3056710, + "offset": 3056840, "size": 1840, }, "tsconfig.json": { - "offset": 3058550, + "offset": 3058680, "size": 120, }, }, @@ -48719,23 +48679,23 @@ exports[`node_module collectors > yarn max stack 2`] = ` "is-callable": { "files": { ".editorconfig": { - "offset": 3058670, + "offset": 3058790, "size": 460, }, ".nycrc": { - "offset": 3059120, + "offset": 3059250, "size": 140, }, "LICENSE": { - "offset": 3059260, + "offset": 3059390, "size": 1090, }, "index.js": { - "offset": 3060340, + "offset": 3060470, "size": 3230, }, "package.json": { - "offset": 3063570, + "offset": 3063700, "size": 1840, }, }, @@ -48743,23 +48703,23 @@ exports[`node_module collectors > yarn max stack 2`] = ` "is-core-module": { "files": { ".nycrc": { - "offset": 3065410, + "offset": 3065530, "size": 140, }, "LICENSE": { - "offset": 3065540, + "offset": 3065670, "size": 1080, }, "core.json": { - "offset": 3066620, + "offset": 3066750, "size": 5960, }, "index.js": { - "offset": 3072580, + "offset": 3072700, "size": 1770, }, "package.json": { - "offset": 3074340, + "offset": 3074470, "size": 1240, }, }, @@ -48767,27 +48727,27 @@ exports[`node_module collectors > yarn max stack 2`] = ` "is-data-view": { "files": { ".editorconfig": { - "offset": 3075580, + "offset": 3075700, "size": 290, }, ".nycrc": { - "offset": 3075860, + "offset": 3075990, "size": 140, }, "LICENSE": { - "offset": 3076000, + "offset": 3076130, "size": 1070, }, "index.js": { - "offset": 3077070, + "offset": 3077200, "size": 850, }, "package.json": { - "offset": 3077920, + "offset": 3078040, "size": 2070, }, "tsconfig.json": { - "offset": 3079980, + "offset": 3080100, "size": 120, }, }, @@ -48795,27 +48755,27 @@ exports[`node_module collectors > yarn max stack 2`] = ` "is-date-object": { "files": { ".editorconfig": { - "offset": 3080090, + "offset": 3080220, "size": 290, }, ".nycrc": { - "offset": 3080380, + "offset": 3080510, "size": 160, }, "LICENSE": { - "offset": 3080540, + "offset": 3080670, "size": 1090, }, "index.js": { - "offset": 3081620, + "offset": 3081750, "size": 680, }, "package.json": { - "offset": 3082290, + "offset": 3082420, "size": 1900, }, "tsconfig.json": { - "offset": 3084190, + "offset": 3084310, "size": 80, }, }, @@ -48823,23 +48783,23 @@ exports[`node_module collectors > yarn max stack 2`] = ` "is-finalizationregistry": { "files": { ".nycrc": { - "offset": 3084260, + "offset": 3084390, "size": 140, }, "LICENSE": { - "offset": 3084400, + "offset": 3084530, "size": 1070, }, "index.js": { - "offset": 3085470, + "offset": 3085590, "size": 830, }, "package.json": { - "offset": 3086290, + "offset": 3086420, "size": 1590, }, "tsconfig.json": { - "offset": 3087870, + "offset": 3088000, "size": 130, }, }, @@ -48847,27 +48807,27 @@ exports[`node_module collectors > yarn max stack 2`] = ` "is-generator-function": { "files": { ".nvmrc": { - "offset": 3088000, + "offset": 3088120, "size": 10, }, ".nycrc": { - "offset": 3088000, + "offset": 3088130, "size": 140, }, "LICENSE": { - "offset": 3088140, + "offset": 3088270, "size": 1090, }, "index.js": { - "offset": 3089220, + "offset": 3089350, "size": 860, }, "package.json": { - "offset": 3090080, + "offset": 3090210, "size": 1950, }, "tsconfig.json": { - "offset": 3092030, + "offset": 3092150, "size": 130, }, }, @@ -48875,27 +48835,27 @@ exports[`node_module collectors > yarn max stack 2`] = ` "is-map": { "files": { ".editorconfig": { - "offset": 3092160, + "offset": 3092280, "size": 240, }, ".nycrc": { - "offset": 3092390, + "offset": 3092510, "size": 140, }, "LICENSE": { - "offset": 3092530, + "offset": 3092650, "size": 1070, }, "index.js": { - "offset": 3093590, + "offset": 3093720, "size": 1080, }, "package.json": { - "offset": 3094670, + "offset": 3094800, "size": 1410, }, "tsconfig.json": { - "offset": 3096080, + "offset": 3096200, "size": 3620, }, }, @@ -48903,27 +48863,27 @@ exports[`node_module collectors > yarn max stack 2`] = ` "is-negative-zero": { "files": { ".editorconfig": { - "offset": 3099690, + "offset": 3099820, "size": 130, }, ".nycrc": { - "offset": 3099820, + "offset": 3099940, "size": 140, }, "LICENSE": { - "offset": 3099960, + "offset": 3100080, "size": 1090, }, "index.js": { - "offset": 3101040, + "offset": 3101160, "size": 150, }, "package.json": { - "offset": 3101190, + "offset": 3101310, "size": 1600, }, "tsconfig.json": { - "offset": 3102780, + "offset": 3102910, "size": 3620, }, }, @@ -48931,27 +48891,27 @@ exports[`node_module collectors > yarn max stack 2`] = ` "is-number-object": { "files": { ".editorconfig": { - "offset": 3106390, + "offset": 3106520, "size": 330, }, ".nycrc": { - "offset": 3106710, + "offset": 3106840, "size": 160, }, "LICENSE": { - "offset": 3106870, + "offset": 3107000, "size": 1090, }, "index.js": { - "offset": 3107950, + "offset": 3108080, "size": 700, }, "package.json": { - "offset": 3108650, + "offset": 3108780, "size": 1520, }, "tsconfig.json": { - "offset": 3110170, + "offset": 3110300, "size": 120, }, }, @@ -48959,27 +48919,27 @@ exports[`node_module collectors > yarn max stack 2`] = ` "is-regex": { "files": { ".editorconfig": { - "offset": 3110290, + "offset": 3110410, "size": 330, }, ".nycrc": { - "offset": 3110610, + "offset": 3110740, "size": 160, }, "LICENSE": { - "offset": 3110770, + "offset": 3110900, "size": 1090, }, "index.js": { - "offset": 3111850, + "offset": 3111980, "size": 2230, }, "package.json": { - "offset": 3114070, + "offset": 3114200, "size": 1920, }, "tsconfig.json": { - "offset": 3115990, + "offset": 3116110, "size": 120, }, }, @@ -48987,27 +48947,27 @@ exports[`node_module collectors > yarn max stack 2`] = ` "is-set": { "files": { ".editorconfig": { - "offset": 3116100, + "offset": 3116230, "size": 240, }, ".nycrc": { - "offset": 3116330, + "offset": 3116460, "size": 140, }, "LICENSE": { - "offset": 3116470, + "offset": 3116600, "size": 1070, }, "index.js": { - "offset": 3117540, + "offset": 3117660, "size": 1070, }, "package.json": { - "offset": 3118600, + "offset": 3118730, "size": 1300, }, "tsconfig.json": { - "offset": 3119890, + "offset": 3120020, "size": 3620, }, }, @@ -49015,23 +48975,23 @@ exports[`node_module collectors > yarn max stack 2`] = ` "is-shared-array-buffer": { "files": { ".nycrc": { - "offset": 3123500, + "offset": 3123630, "size": 140, }, "LICENSE": { - "offset": 3123640, + "offset": 3123770, "size": 1070, }, "index.js": { - "offset": 3124710, + "offset": 3124840, "size": 680, }, "package.json": { - "offset": 3125380, + "offset": 3125510, "size": 1700, }, "tsconfig.json": { - "offset": 3127080, + "offset": 3127200, "size": 120, }, }, @@ -49039,23 +48999,23 @@ exports[`node_module collectors > yarn max stack 2`] = ` "is-string": { "files": { ".nycrc": { - "offset": 3127190, + "offset": 3127320, "size": 160, }, "LICENSE": { - "offset": 3127350, + "offset": 3127480, "size": 1090, }, "index.js": { - "offset": 3128430, + "offset": 3128560, "size": 1060, }, "package.json": { - "offset": 3129490, + "offset": 3129620, "size": 1780, }, "tsconfig.json": { - "offset": 3131260, + "offset": 3131390, "size": 130, }, }, @@ -49063,27 +49023,27 @@ exports[`node_module collectors > yarn max stack 2`] = ` "is-symbol": { "files": { ".editorconfig": { - "offset": 3131380, + "offset": 3131510, "size": 280, }, ".nycrc": { - "offset": 3131660, + "offset": 3131790, "size": 140, }, "LICENSE": { - "offset": 3131800, + "offset": 3131930, "size": 1090, }, "index.js": { - "offset": 3132880, + "offset": 3133010, "size": 1030, }, "package.json": { - "offset": 3133910, + "offset": 3134040, "size": 1850, }, "tsconfig.json": { - "offset": 3135760, + "offset": 3135880, "size": 120, }, }, @@ -49091,27 +49051,27 @@ exports[`node_module collectors > yarn max stack 2`] = ` "is-typed-array": { "files": { ".editorconfig": { - "offset": 3135870, + "offset": 3136000, "size": 290, }, ".nycrc": { - "offset": 3136160, + "offset": 3136280, "size": 140, }, "LICENSE": { - "offset": 3136290, + "offset": 3136420, "size": 1090, }, "index.js": { - "offset": 3137380, + "offset": 3137500, "size": 180, }, "package.json": { - "offset": 3137560, + "offset": 3137680, "size": 2310, }, "tsconfig.json": { - "offset": 3139860, + "offset": 3139990, "size": 70, }, }, @@ -49119,27 +49079,27 @@ exports[`node_module collectors > yarn max stack 2`] = ` "is-weakmap": { "files": { ".editorconfig": { - "offset": 3139930, + "offset": 3140060, "size": 240, }, ".nycrc": { - "offset": 3140160, + "offset": 3140290, "size": 140, }, "LICENSE": { - "offset": 3140300, + "offset": 3140430, "size": 1070, }, "index.js": { - "offset": 3141370, + "offset": 3141500, "size": 1160, }, "package.json": { - "offset": 3142530, + "offset": 3142650, "size": 1410, }, "tsconfig.json": { - "offset": 3143930, + "offset": 3144060, "size": 3620, }, }, @@ -49147,23 +49107,23 @@ exports[`node_module collectors > yarn max stack 2`] = ` "is-weakref": { "files": { ".nycrc": { - "offset": 3147550, + "offset": 3147670, "size": 140, }, "LICENSE": { - "offset": 3147680, + "offset": 3147810, "size": 1070, }, "index.js": { - "offset": 3148750, + "offset": 3148880, "size": 600, }, "package.json": { - "offset": 3149350, + "offset": 3149480, "size": 1510, }, "tsconfig.json": { - "offset": 3150860, + "offset": 3150980, "size": 130, }, }, @@ -49171,27 +49131,27 @@ exports[`node_module collectors > yarn max stack 2`] = ` "is-weakset": { "files": { ".editorconfig": { - "offset": 3150980, + "offset": 3151110, "size": 230, }, ".nycrc": { - "offset": 3151200, + "offset": 3151330, "size": 140, }, "LICENSE": { - "offset": 3151340, + "offset": 3151470, "size": 1070, }, "index.js": { - "offset": 3152410, + "offset": 3152540, "size": 1260, }, "package.json": { - "offset": 3153660, + "offset": 3153790, "size": 1580, }, "tsconfig.json": { - "offset": 3155230, + "offset": 3155360, "size": 120, }, }, @@ -49199,15 +49159,15 @@ exports[`node_module collectors > yarn max stack 2`] = ` "isarray": { "files": { "LICENSE": { - "offset": 3155350, + "offset": 3155480, "size": 1100, }, "index.js": { - "offset": 3156450, + "offset": 3156570, "size": 140, }, "package.json": { - "offset": 3156580, + "offset": 3156710, "size": 880, }, }, @@ -49215,23 +49175,23 @@ exports[`node_module collectors > yarn max stack 2`] = ` "isexe": { "files": { "LICENSE": { - "offset": 3157460, + "offset": 3157590, "size": 770, }, "index.js": { - "offset": 3158220, + "offset": 3158350, "size": 1200, }, "mode.js": { - "offset": 3159420, + "offset": 3159540, "size": 910, }, "package.json": { - "offset": 3160320, + "offset": 3160450, "size": 520, }, "windows.js": { - "offset": 3160840, + "offset": 3160960, "size": 890, }, }, @@ -49239,15 +49199,15 @@ exports[`node_module collectors > yarn max stack 2`] = ` "json-parse-better-errors": { "files": { "LICENSE.md": { - "offset": 3161730, + "offset": 3161850, "size": 1060, }, "index.js": { - "offset": 3162780, + "offset": 3162910, "size": 1090, }, "package.json": { - "offset": 3163860, + "offset": 3163990, "size": 680, }, }, @@ -49255,15 +49215,15 @@ exports[`node_module collectors > yarn max stack 2`] = ` "load-json-file": { "files": { "index.js": { - "offset": 3164540, + "offset": 3164660, "size": 430, }, "license": { - "offset": 3164960, + "offset": 3165090, "size": 1120, }, "package.json": { - "offset": 3166080, + "offset": 3166210, "size": 550, }, }, @@ -49271,79 +49231,79 @@ exports[`node_module collectors > yarn max stack 2`] = ` "math-intrinsics": { "files": { "LICENSE": { - "offset": 3166620, + "offset": 3166750, "size": 1080, }, "abs.js": { - "offset": 3167690, + "offset": 3167820, "size": 80, }, "constants": { "files": { "maxArrayLength.js": { - "offset": 3167770, + "offset": 3167890, "size": 110, }, "maxSafeInteger.js": { - "offset": 3167880, + "offset": 3168000, "size": 240, }, "maxValue.js": { - "offset": 3168110, + "offset": 3168230, "size": 200, }, }, }, "floor.js": { - "offset": 3168300, + "offset": 3168430, "size": 80, }, "isFinite.js": { - "offset": 3168380, + "offset": 3168510, "size": 270, }, "isInteger.js": { - "offset": 3168640, + "offset": 3168770, "size": 410, }, "isNaN.js": { - "offset": 3169050, + "offset": 3169180, "size": 130, }, "isNegativeZero.js": { - "offset": 3169170, + "offset": 3169300, "size": 150, }, "max.js": { - "offset": 3169320, + "offset": 3169440, "size": 80, }, "min.js": { - "offset": 3169390, + "offset": 3169520, "size": 80, }, "mod.js": { - "offset": 3169460, + "offset": 3169590, "size": 220, }, "package.json": { - "offset": 3169680, + "offset": 3169810, "size": 1940, }, "pow.js": { - "offset": 3171610, + "offset": 3171740, "size": 80, }, "round.js": { - "offset": 3171690, + "offset": 3171810, "size": 80, }, "sign.js": { - "offset": 3171760, + "offset": 3171890, "size": 220, }, "tsconfig.json": { - "offset": 3171980, + "offset": 3172110, "size": 40, }, }, @@ -49351,19 +49311,19 @@ exports[`node_module collectors > yarn max stack 2`] = ` "memorystream": { "files": { "Gruntfile.js": { - "offset": 3172010, + "offset": 3172140, "size": 550, }, "LICENSE": { - "offset": 3172560, + "offset": 3172690, "size": 1060, }, "index.js": { - "offset": 3173620, + "offset": 3173750, "size": 6130, }, "package.json": { - "offset": 3179750, + "offset": 3179870, "size": 750, }, }, @@ -49371,15 +49331,15 @@ exports[`node_module collectors > yarn max stack 2`] = ` "minimatch": { "files": { "LICENSE": { - "offset": 3180490, + "offset": 3180620, "size": 770, }, "minimatch.js": { - "offset": 3181260, + "offset": 3181390, "size": 27460, }, "package.json": { - "offset": 3208720, + "offset": 3208850, "size": 530, }, }, @@ -49387,17 +49347,17 @@ exports[`node_module collectors > yarn max stack 2`] = ` "nice-try": { "files": { "LICENSE": { - "offset": 3209250, + "offset": 3209370, "size": 1080, }, "package.json": { - "offset": 3210330, + "offset": 3210450, "size": 550, }, "src": { "files": { "index.js": { - "offset": 3210870, + "offset": 3211000, "size": 310, }, }, @@ -49407,47 +49367,47 @@ exports[`node_module collectors > yarn max stack 2`] = ` "normalize-package-data": { "files": { "AUTHORS": { - "offset": 3211170, + "offset": 3211300, "size": 160, }, "LICENSE": { - "offset": 3211330, + "offset": 3211450, "size": 1400, }, "lib": { "files": { "extract_description.js": { - "offset": 3212720, + "offset": 3212850, "size": 510, }, "fixer.js": { - "offset": 3213230, + "offset": 3213360, "size": 11810, }, "make_warning.js": { - "offset": 3225030, + "offset": 3225160, "size": 710, }, "normalize.js": { - "offset": 3225740, + "offset": 3225870, "size": 1350, }, "safe_format.js": { - "offset": 3227080, + "offset": 3227210, "size": 250, }, "typos.json": { - "offset": 3227330, + "offset": 3227450, "size": 750, }, "warning_messages.json": { - "offset": 3228070, + "offset": 3228200, "size": 1800, }, }, }, "package.json": { - "offset": 3229870, + "offset": 3230000, "size": 680, }, }, @@ -49455,7 +49415,7 @@ exports[`node_module collectors > yarn max stack 2`] = ` "npm-run-all": { "files": { "LICENSE": { - "offset": 3230550, + "offset": 3230680, "size": 1090, }, "bin": { @@ -49463,15 +49423,15 @@ exports[`node_module collectors > yarn max stack 2`] = ` "common": { "files": { "bootstrap.js": { - "offset": 3231630, + "offset": 3231760, "size": 1490, }, "parse-cli-args.js": { - "offset": 3233110, + "offset": 3233240, "size": 7280, }, "version.js": { - "offset": 3240390, + "offset": 3240520, "size": 690, }, }, @@ -49479,16 +49439,16 @@ exports[`node_module collectors > yarn max stack 2`] = ` "npm-run-all": { "files": { "help.js": { - "offset": 3241080, + "offset": 3241200, "size": 3180, }, "index.js": { "executable": true, - "offset": 3244260, + "offset": 3244380, "size": 400, }, "main.js": { - "offset": 3244650, + "offset": 3244780, "size": 2660, }, }, @@ -49496,16 +49456,16 @@ exports[`node_module collectors > yarn max stack 2`] = ` "run-p": { "files": { "help.js": { - "offset": 3247310, + "offset": 3247440, "size": 2610, }, "index.js": { "executable": true, - "offset": 3249920, + "offset": 3250040, "size": 400, }, "main.js": { - "offset": 3250310, + "offset": 3250440, "size": 2370, }, }, @@ -49513,16 +49473,16 @@ exports[`node_module collectors > yarn max stack 2`] = ` "run-s": { "files": { "help.js": { - "offset": 3252680, + "offset": 3252800, "size": 2200, }, "index.js": { "executable": true, - "offset": 3254870, + "offset": 3255000, "size": 400, }, "main.js": { - "offset": 3255260, + "offset": 3255390, "size": 2240, }, }, @@ -49532,19 +49492,19 @@ exports[`node_module collectors > yarn max stack 2`] = ` "docs": { "files": { "node-api.md": { - "offset": 3257500, + "offset": 3257620, "size": 5070, }, "npm-run-all.md": { - "offset": 3262560, + "offset": 3262680, "size": 7070, }, "run-p.md": { - "offset": 3269620, + "offset": 3269750, "size": 5510, }, "run-s.md": { - "offset": 3275130, + "offset": 3275250, "size": 4890, }, }, @@ -49552,53 +49512,53 @@ exports[`node_module collectors > yarn max stack 2`] = ` "lib": { "files": { "create-header.js": { - "offset": 3280010, + "offset": 3280130, "size": 1760, }, "create-prefix-transform-stream.js": { - "offset": 3281770, + "offset": 3281890, "size": 3210, }, "index.js": { - "offset": 3284970, + "offset": 3285100, "size": 10020, }, "match-tasks.js": { - "offset": 3294990, + "offset": 3295110, "size": 4030, }, "npm-run-all-error.js": { - "offset": 3299010, + "offset": 3299140, "size": 1420, }, "read-package-json.js": { - "offset": 3300430, + "offset": 3300560, "size": 980, }, "run-task.js": { - "offset": 3301410, + "offset": 3301540, "size": 7330, }, "run-tasks.js": { - "offset": 3308740, + "offset": 3308870, "size": 5140, }, "spawn-posix.js": { - "offset": 3313870, + "offset": 3314000, "size": 1850, }, "spawn-win32.js": { - "offset": 3315720, + "offset": 3315850, "size": 1570, }, "spawn.js": { - "offset": 3317280, + "offset": 3317410, "size": 610, }, }, }, "package.json": { - "offset": 3317890, + "offset": 3318010, "size": 1280, }, }, @@ -49606,31 +49566,31 @@ exports[`node_module collectors > yarn max stack 2`] = ` "object-inspect": { "files": { ".nycrc": { - "offset": 3319160, + "offset": 3319290, "size": 240, }, "LICENSE": { - "offset": 3319400, + "offset": 3319520, "size": 1080, }, "index.js": { - "offset": 3320470, + "offset": 3320590, "size": 19060, }, "package-support.json": { - "offset": 3339530, + "offset": 3339650, "size": 370, }, "package.json": { - "offset": 3339890, + "offset": 3340020, "size": 2000, }, "test-core-js.js": { - "offset": 3341880, + "offset": 3342010, "size": 540, }, "util.inspect.js": { - "offset": 3342420, + "offset": 3342540, "size": 50, }, }, @@ -49638,27 +49598,27 @@ exports[`node_module collectors > yarn max stack 2`] = ` "object-keys": { "files": { ".editorconfig": { - "offset": 3342460, + "offset": 3342590, "size": 280, }, "LICENSE": { - "offset": 3342730, + "offset": 3342860, "size": 1080, }, "implementation.js": { - "offset": 3343810, + "offset": 3343940, "size": 3220, }, "index.js": { - "offset": 3347030, + "offset": 3347160, "size": 830, }, "isArguments.js": { - "offset": 3347860, + "offset": 3347980, "size": 430, }, "package.json": { - "offset": 3348280, + "offset": 3348400, "size": 1130, }, }, @@ -49666,51 +49626,51 @@ exports[`node_module collectors > yarn max stack 2`] = ` "object.assign": { "files": { ".editorconfig": { - "offset": 3349400, + "offset": 3349530, "size": 290, }, ".nycrc": { - "offset": 3349690, + "offset": 3349810, "size": 140, }, "LICENSE": { - "offset": 3349820, + "offset": 3349950, "size": 1080, }, "auto.js": { - "offset": 3350900, + "offset": 3351030, "size": 40, }, "dist": { "files": { "browser.js": { - "offset": 3350940, + "offset": 3351070, "size": 41570, }, }, }, "hasSymbols.js": { - "offset": 3392510, + "offset": 3392630, "size": 1620, }, "implementation.js": { - "offset": 3394130, + "offset": 3394250, "size": 1430, }, "index.js": { - "offset": 3395550, + "offset": 3395680, "size": 540, }, "package.json": { - "offset": 3396080, + "offset": 3396210, "size": 1630, }, "polyfill.js": { - "offset": 3397710, + "offset": 3397830, "size": 1300, }, "shim.js": { - "offset": 3399000, + "offset": 3399130, "size": 310, }, }, @@ -49718,23 +49678,23 @@ exports[`node_module collectors > yarn max stack 2`] = ` "own-keys": { "files": { ".nycrc": { - "offset": 3399310, + "offset": 3399440, "size": 140, }, "LICENSE": { - "offset": 3399450, + "offset": 3399580, "size": 1080, }, "index.js": { - "offset": 3400520, + "offset": 3400650, "size": 590, }, "package.json": { - "offset": 3401100, + "offset": 3401230, "size": 1640, }, "tsconfig.json": { - "offset": 3402740, + "offset": 3402870, "size": 130, }, }, @@ -49742,15 +49702,15 @@ exports[`node_module collectors > yarn max stack 2`] = ` "parse-json": { "files": { "index.js": { - "offset": 3402860, + "offset": 3402990, "size": 620, }, "license": { - "offset": 3403480, + "offset": 3403610, "size": 1110, }, "package.json": { - "offset": 3404590, + "offset": 3404720, "size": 550, }, }, @@ -49758,15 +49718,15 @@ exports[`node_module collectors > yarn max stack 2`] = ` "path-key": { "files": { "index.js": { - "offset": 3405130, + "offset": 3405260, "size": 290, }, "license": { - "offset": 3405410, + "offset": 3405540, "size": 1120, }, "package.json": { - "offset": 3406530, + "offset": 3406660, "size": 430, }, }, @@ -49774,15 +49734,15 @@ exports[`node_module collectors > yarn max stack 2`] = ` "path-parse": { "files": { "LICENSE": { - "offset": 3406960, + "offset": 3407080, "size": 1080, }, "index.js": { - "offset": 3408040, + "offset": 3408160, "size": 1900, }, "package.json": { - "offset": 3409930, + "offset": 3410060, "size": 370, }, }, @@ -49790,15 +49750,15 @@ exports[`node_module collectors > yarn max stack 2`] = ` "path-type": { "files": { "index.js": { - "offset": 3410290, + "offset": 3410420, "size": 990, }, "license": { - "offset": 3411280, + "offset": 3411410, "size": 1110, }, "package.json": { - "offset": 3412390, + "offset": 3412520, "size": 470, }, }, @@ -49809,45 +49769,45 @@ exports[`node_module collectors > yarn max stack 2`] = ` "files": { "pidtree.js": { "executable": true, - "offset": 3412860, + "offset": 3412990, "size": 2860, }, }, }, "index.js": { - "offset": 3415720, + "offset": 3415850, "size": 1350, }, "lib": { "files": { "bin.js": { - "offset": 3417060, + "offset": 3417190, "size": 1030, }, "get.js": { - "offset": 3418090, + "offset": 3418220, "size": 730, }, "pidtree.js": { - "offset": 3418810, + "offset": 3418940, "size": 2690, }, "ps.js": { - "offset": 3421490, + "offset": 3421620, "size": 1070, }, "wmic.js": { - "offset": 3422560, + "offset": 3422690, "size": 1180, }, }, }, "license": { - "offset": 3423740, + "offset": 3423870, "size": 1080, }, "package.json": { - "offset": 3424810, + "offset": 3424940, "size": 810, }, }, @@ -49855,15 +49815,15 @@ exports[`node_module collectors > yarn max stack 2`] = ` "pify": { "files": { "index.js": { - "offset": 3425620, + "offset": 3425750, "size": 1810, }, "license": { - "offset": 3427430, + "offset": 3427550, "size": 1110, }, "package.json": { - "offset": 3428540, + "offset": 3428660, "size": 470, }, }, @@ -49871,19 +49831,19 @@ exports[`node_module collectors > yarn max stack 2`] = ` "possible-typed-array-names": { "files": { "LICENSE": { - "offset": 3429000, + "offset": 3429120, "size": 1080, }, "index.js": { - "offset": 3430070, + "offset": 3430200, "size": 270, }, "package.json": { - "offset": 3430330, + "offset": 3430460, "size": 1300, }, "tsconfig.json": { - "offset": 3431620, + "offset": 3431750, "size": 120, }, }, @@ -49891,15 +49851,15 @@ exports[`node_module collectors > yarn max stack 2`] = ` "read-pkg": { "files": { "index.js": { - "offset": 3431740, + "offset": 3431870, "size": 820, }, "license": { - "offset": 3432560, + "offset": 3432680, "size": 1110, }, "package.json": { - "offset": 3433660, + "offset": 3433790, "size": 530, }, }, @@ -49907,35 +49867,35 @@ exports[`node_module collectors > yarn max stack 2`] = ` "reflect.getprototypeof": { "files": { ".nycrc": { - "offset": 3434190, + "offset": 3434310, "size": 140, }, "LICENSE": { - "offset": 3434320, + "offset": 3434450, "size": 1080, }, "auto.js": { - "offset": 3435400, + "offset": 3435520, "size": 40, }, "implementation.js": { - "offset": 3435430, + "offset": 3435560, "size": 1100, }, "index.js": { - "offset": 3436520, + "offset": 3436650, "size": 430, }, "package.json": { - "offset": 3436950, + "offset": 3437070, "size": 1810, }, "polyfill.js": { - "offset": 3438750, + "offset": 3438880, "size": 350, }, "shim.js": { - "offset": 3439100, + "offset": 3439230, "size": 470, }, }, @@ -49943,39 +49903,39 @@ exports[`node_module collectors > yarn max stack 2`] = ` "regexp.prototype.flags": { "files": { ".editorconfig": { - "offset": 3439560, + "offset": 3439690, "size": 280, }, ".nycrc": { - "offset": 3439840, + "offset": 3439960, "size": 140, }, "LICENSE": { - "offset": 3439980, + "offset": 3440100, "size": 1090, }, "auto.js": { - "offset": 3441060, + "offset": 3441190, "size": 40, }, "implementation.js": { - "offset": 3441090, + "offset": 3441220, "size": 710, }, "index.js": { - "offset": 3441800, + "offset": 3441930, "size": 390, }, "package.json": { - "offset": 3442190, + "offset": 3442320, "size": 1920, }, "polyfill.js": { - "offset": 3444110, + "offset": 3444240, "size": 870, }, "shim.js": { - "offset": 3444970, + "offset": 3445100, "size": 780, }, }, @@ -49985,94 +49945,94 @@ exports[`node_module collectors > yarn max stack 2`] = ` ".claude": { "files": { "notes.md": { - "offset": 3445750, + "offset": 3445880, "size": 1220, }, "settings.local.json": { - "offset": 3446970, + "offset": 3447100, "size": 790, }, }, }, ".editorconfig": { - "offset": 3447750, + "offset": 3447880, "size": 660, }, "LICENSE": { - "offset": 3448410, + "offset": 3448530, "size": 1080, }, "SECURITY.md": { - "offset": 3449480, + "offset": 3449600, "size": 390, }, "async.js": { - "offset": 3449860, + "offset": 3449990, "size": 60, }, "bin": { "files": { "resolve": { "executable": true, - "offset": 3449920, + "offset": 3450040, "size": 1540, }, }, }, "eslint.config.mjs": { - "offset": 3451450, + "offset": 3451580, "size": 1580, }, "index.js": { - "offset": 3453030, + "offset": 3453150, "size": 180, }, "lib": { "files": { "async.js": { - "offset": 3453200, + "offset": 3453330, "size": 11550, }, "caller.js": { - "offset": 3464750, + "offset": 3464880, "size": 410, }, "core.js": { - "offset": 3465160, + "offset": 3465290, "size": 310, }, "core.json": { - "offset": 3465470, + "offset": 3465600, "size": 5960, }, "homedir.js": { - "offset": 3471420, + "offset": 3471550, "size": 960, }, "is-core.js": { - "offset": 3472380, + "offset": 3472510, "size": 120, }, "node-modules-paths.js": { - "offset": 3472490, + "offset": 3472620, "size": 1340, }, "normalize-options.js": { - "offset": 3473830, + "offset": 3473960, "size": 350, }, "sync.js": { - "offset": 3474180, + "offset": 3474310, "size": 7170, }, }, }, "package.json": { - "offset": 3481350, + "offset": 3481480, "size": 1400, }, "sync.js": { - "offset": 3482740, + "offset": 3482870, "size": 60, }, }, @@ -50080,23 +50040,23 @@ exports[`node_module collectors > yarn max stack 2`] = ` "safe-array-concat": { "files": { ".nycrc": { - "offset": 3482800, + "offset": 3482930, "size": 220, }, "LICENSE": { - "offset": 3483020, + "offset": 3483140, "size": 1080, }, "index.js": { - "offset": 3484090, + "offset": 3484210, "size": 1880, }, "package.json": { - "offset": 3485960, - "size": 1720, + "offset": 3486090, + "size": 1680, }, "tsconfig.json": { - "offset": 3487680, + "offset": 3487770, "size": 130, }, }, @@ -50104,23 +50064,23 @@ exports[`node_module collectors > yarn max stack 2`] = ` "safe-push-apply": { "files": { ".nycrc": { - "offset": 3487800, + "offset": 3487890, "size": 220, }, "LICENSE": { - "offset": 3488020, + "offset": 3488110, "size": 1080, }, "index.js": { - "offset": 3489090, + "offset": 3489180, "size": 390, }, "package.json": { - "offset": 3489470, + "offset": 3489570, "size": 1460, }, "tsconfig.json": { - "offset": 3490930, + "offset": 3491020, "size": 130, }, }, @@ -50128,23 +50088,23 @@ exports[`node_module collectors > yarn max stack 2`] = ` "safe-regex-test": { "files": { ".nycrc": { - "offset": 3491050, + "offset": 3491140, "size": 220, }, "LICENSE": { - "offset": 3491270, + "offset": 3491360, "size": 1080, }, "index.js": { - "offset": 3492340, + "offset": 3492430, "size": 410, }, "package.json": { - "offset": 3492740, + "offset": 3492840, "size": 1590, }, "tsconfig.json": { - "offset": 3494330, + "offset": 3494420, "size": 120, }, }, @@ -50152,28 +50112,28 @@ exports[`node_module collectors > yarn max stack 2`] = ` "semver": { "files": { "LICENSE": { - "offset": 3494440, + "offset": 3494540, "size": 770, }, "bin": { "files": { "semver": { "executable": true, - "offset": 3495210, + "offset": 3495300, "size": 4420, }, }, }, "package.json": { - "offset": 3499630, + "offset": 3499720, "size": 670, }, "range.bnf": { - "offset": 3500290, + "offset": 3500390, "size": 620, }, "semver.js": { - "offset": 3500910, + "offset": 3501000, "size": 40820, }, }, @@ -50181,27 +50141,27 @@ exports[`node_module collectors > yarn max stack 2`] = ` "set-function-length": { "files": { ".nycrc": { - "offset": 3541720, + "offset": 3541820, "size": 220, }, "LICENSE": { - "offset": 3541940, + "offset": 3542030, "size": 1090, }, "env.js": { - "offset": 3543020, + "offset": 3543120, "size": 870, }, "index.js": { - "offset": 3543890, + "offset": 3543980, "size": 1280, }, "package.json": { - "offset": 3545160, + "offset": 3545260, "size": 1960, }, "tsconfig.json": { - "offset": 3547120, + "offset": 3547210, "size": 120, }, }, @@ -50209,19 +50169,19 @@ exports[`node_module collectors > yarn max stack 2`] = ` "set-function-name": { "files": { "LICENSE": { - "offset": 3547230, + "offset": 3547320, "size": 1090, }, "index.js": { - "offset": 3548320, + "offset": 3548410, "size": 750, }, "package.json": { - "offset": 3549060, + "offset": 3549150, "size": 2130, }, "tsconfig.json": { - "offset": 3551190, + "offset": 3551280, "size": 4890, }, }, @@ -50229,31 +50189,31 @@ exports[`node_module collectors > yarn max stack 2`] = ` "set-proto": { "files": { ".nycrc": { - "offset": 3556070, + "offset": 3556170, "size": 140, }, "LICENSE": { - "offset": 3556210, + "offset": 3556310, "size": 1080, }, "Object.setPrototypeOf.js": { - "offset": 3557280, + "offset": 3557380, "size": 160, }, "Reflect.setPrototypeOf.js": { - "offset": 3557440, + "offset": 3557530, "size": 150, }, "index.js": { - "offset": 3557590, + "offset": 3557680, "size": 740, }, "package.json": { - "offset": 3558320, + "offset": 3558420, "size": 1460, }, "tsconfig.json": { - "offset": 3559780, + "offset": 3559870, "size": 120, }, }, @@ -50261,15 +50221,15 @@ exports[`node_module collectors > yarn max stack 2`] = ` "shebang-command": { "files": { "index.js": { - "offset": 3559890, + "offset": 3559990, "size": 350, }, "license": { - "offset": 3560240, + "offset": 3560330, "size": 1130, }, "package.json": { - "offset": 3561360, + "offset": 3561460, "size": 480, }, }, @@ -50277,15 +50237,15 @@ exports[`node_module collectors > yarn max stack 2`] = ` "shebang-regex": { "files": { "index.js": { - "offset": 3561840, + "offset": 3561930, "size": 40, }, "license": { - "offset": 3561880, + "offset": 3561970, "size": 1120, }, "package.json": { - "offset": 3563000, + "offset": 3563090, "size": 420, }, }, @@ -50293,36 +50253,36 @@ exports[`node_module collectors > yarn max stack 2`] = ` "shell-quote": { "files": { ".nycrc": { - "offset": 3563420, + "offset": 3563510, "size": 230, }, "LICENSE": { - "offset": 3563650, + "offset": 3563740, "size": 1110, }, "index.js": { - "offset": 3564760, + "offset": 3564850, "size": 90, }, "package.json": { - "offset": 3564840, + "offset": 3564940, "size": 1200, }, "parse.js": { - "offset": 3566040, + "offset": 3566130, "size": 5190, }, "print.py": { "executable": true, - "offset": 3571230, + "offset": 3571320, "size": 60, }, "quote.js": { - "offset": 3571280, + "offset": 3571370, "size": 500, }, "security.md": { - "offset": 3571780, + "offset": 3571870, "size": 300, }, }, @@ -50330,27 +50290,27 @@ exports[`node_module collectors > yarn max stack 2`] = ` "side-channel": { "files": { ".editorconfig": { - "offset": 3572070, + "offset": 3572160, "size": 150, }, ".nycrc": { - "offset": 3572220, + "offset": 3572310, "size": 220, }, "LICENSE": { - "offset": 3572430, + "offset": 3572520, "size": 1080, }, "index.js": { - "offset": 3573500, + "offset": 3573600, "size": 1190, }, "package.json": { - "offset": 3574690, + "offset": 3574780, "size": 1570, }, "tsconfig.json": { - "offset": 3576260, + "offset": 3576350, "size": 120, }, }, @@ -50358,27 +50318,27 @@ exports[`node_module collectors > yarn max stack 2`] = ` "side-channel-list": { "files": { ".editorconfig": { - "offset": 3576370, + "offset": 3576460, "size": 150, }, ".nycrc": { - "offset": 3576520, + "offset": 3576610, "size": 220, }, "LICENSE": { - "offset": 3576730, + "offset": 3576830, "size": 1080, }, "index.js": { - "offset": 3577800, + "offset": 3577900, "size": 3290, }, "package.json": { - "offset": 3581090, + "offset": 3581190, "size": 1500, }, "tsconfig.json": { - "offset": 3582580, + "offset": 3582680, "size": 120, }, }, @@ -50386,27 +50346,27 @@ exports[`node_module collectors > yarn max stack 2`] = ` "side-channel-map": { "files": { ".editorconfig": { - "offset": 3582700, + "offset": 3582790, "size": 150, }, ".nycrc": { - "offset": 3582850, + "offset": 3582940, "size": 220, }, "LICENSE": { - "offset": 3583060, + "offset": 3583150, "size": 1080, }, "index.js": { - "offset": 3584130, + "offset": 3584220, "size": 1990, }, "package.json": { - "offset": 3586110, + "offset": 3586210, "size": 1580, }, "tsconfig.json": { - "offset": 3587690, + "offset": 3587780, "size": 120, }, }, @@ -50414,27 +50374,27 @@ exports[`node_module collectors > yarn max stack 2`] = ` "side-channel-weakmap": { "files": { ".editorconfig": { - "offset": 3587810, + "offset": 3587900, "size": 150, }, ".nycrc": { - "offset": 3587950, + "offset": 3588040, "size": 220, }, "LICENSE": { - "offset": 3588170, + "offset": 3588260, "size": 1080, }, "index.js": { - "offset": 3589240, + "offset": 3589330, "size": 2710, }, "package.json": { - "offset": 3591950, + "offset": 3592040, "size": 1650, }, "tsconfig.json": { - "offset": 3593590, + "offset": 3593680, "size": 120, }, }, @@ -50442,15 +50402,15 @@ exports[`node_module collectors > yarn max stack 2`] = ` "spdx-correct": { "files": { "LICENSE": { - "offset": 3593710, + "offset": 3593800, "size": 11360, }, "index.js": { - "offset": 3605070, + "offset": 3605160, "size": 10760, }, "package.json": { - "offset": 3615820, + "offset": 3615910, "size": 490, }, }, @@ -50458,15 +50418,15 @@ exports[`node_module collectors > yarn max stack 2`] = ` "spdx-exceptions": { "files": { "deprecated.json": { - "offset": 3616300, + "offset": 3616390, "size": 40, }, "index.json": { - "offset": 3616330, + "offset": 3616420, "size": 1740, }, "package.json": { - "offset": 3618060, + "offset": 3618160, "size": 290, }, }, @@ -50474,27 +50434,27 @@ exports[`node_module collectors > yarn max stack 2`] = ` "spdx-expression-parse": { "files": { "AUTHORS": { - "offset": 3618350, + "offset": 3618440, "size": 210, }, "LICENSE": { - "offset": 3618550, + "offset": 3618640, "size": 1120, }, "index.js": { - "offset": 3619660, + "offset": 3619750, "size": 150, }, "package.json": { - "offset": 3619810, + "offset": 3619900, "size": 560, }, "parse.js": { - "offset": 3620360, + "offset": 3620450, "size": 2910, }, "scan.js": { - "offset": 3623260, + "offset": 3623350, "size": 2760, }, }, @@ -50502,15 +50462,15 @@ exports[`node_module collectors > yarn max stack 2`] = ` "spdx-license-ids": { "files": { "deprecated.json": { - "offset": 3626010, + "offset": 3626110, "size": 520, }, "index.json": { - "offset": 3626530, + "offset": 3626620, "size": 11290, }, "package.json": { - "offset": 3637810, + "offset": 3637900, "size": 310, }, }, @@ -50518,23 +50478,23 @@ exports[`node_module collectors > yarn max stack 2`] = ` "stop-iteration-iterator": { "files": { ".nycrc": { - "offset": 3638110, + "offset": 3638200, "size": 220, }, "LICENSE": { - "offset": 3638330, + "offset": 3638420, "size": 1080, }, "index.js": { - "offset": 3639400, + "offset": 3639490, "size": 1310, }, "package.json": { - "offset": 3640710, + "offset": 3640800, "size": 1420, }, "tsconfig.json": { - "offset": 3642120, + "offset": 3642210, "size": 70, }, }, @@ -50542,39 +50502,39 @@ exports[`node_module collectors > yarn max stack 2`] = ` "string.prototype.padend": { "files": { ".editorconfig": { - "offset": 3642190, + "offset": 3642280, "size": 290, }, ".nycrc": { - "offset": 3642470, + "offset": 3642570, "size": 140, }, "LICENSE": { - "offset": 3642610, + "offset": 3642700, "size": 1090, }, "auto.js": { - "offset": 3643700, + "offset": 3643790, "size": 40, }, "implementation.js": { - "offset": 3643730, + "offset": 3643820, "size": 1110, }, "index.js": { - "offset": 3644840, + "offset": 3644930, "size": 660, }, "package.json": { - "offset": 3645500, + "offset": 3645590, "size": 1700, }, "polyfill.js": { - "offset": 3647190, + "offset": 3647290, "size": 210, }, "shim.js": { - "offset": 3647400, + "offset": 3647500, "size": 340, }, }, @@ -50582,39 +50542,39 @@ exports[`node_module collectors > yarn max stack 2`] = ` "string.prototype.trim": { "files": { ".editorconfig": { - "offset": 3647740, + "offset": 3647830, "size": 290, }, ".nycrc": { - "offset": 3648020, + "offset": 3648120, "size": 140, }, "LICENSE": { - "offset": 3648160, + "offset": 3648250, "size": 1090, }, "auto.js": { - "offset": 3649240, + "offset": 3649340, "size": 40, }, "implementation.js": { - "offset": 3649280, + "offset": 3649370, "size": 1180, }, "index.js": { - "offset": 3650450, + "offset": 3650540, "size": 580, }, "package.json": { - "offset": 3651020, + "offset": 3651120, "size": 1870, }, "polyfill.js": { - "offset": 3652890, + "offset": 3652980, "size": 550, }, "shim.js": { - "offset": 3653430, + "offset": 3653530, "size": 500, }, }, @@ -50622,39 +50582,39 @@ exports[`node_module collectors > yarn max stack 2`] = ` "string.prototype.trimend": { "files": { ".editorconfig": { - "offset": 3653930, + "offset": 3654020, "size": 290, }, ".nycrc": { - "offset": 3654210, + "offset": 3654310, "size": 140, }, "LICENSE": { - "offset": 3654350, + "offset": 3654450, "size": 1080, }, "auto.js": { - "offset": 3655430, + "offset": 3655520, "size": 40, }, "implementation.js": { - "offset": 3655460, + "offset": 3655550, "size": 640, }, "index.js": { - "offset": 3656100, + "offset": 3656190, "size": 580, }, "package.json": { - "offset": 3656670, + "offset": 3656760, "size": 1250, }, "polyfill.js": { - "offset": 3657920, + "offset": 3658010, "size": 460, }, "shim.js": { - "offset": 3658370, + "offset": 3658470, "size": 330, }, }, @@ -50662,39 +50622,39 @@ exports[`node_module collectors > yarn max stack 2`] = ` "string.prototype.trimstart": { "files": { ".editorconfig": { - "offset": 3658700, + "offset": 3658800, "size": 290, }, ".nycrc": { - "offset": 3658990, + "offset": 3659080, "size": 140, }, "LICENSE": { - "offset": 3659130, + "offset": 3659220, "size": 1080, }, "auto.js": { - "offset": 3660200, + "offset": 3660290, "size": 40, }, "implementation.js": { - "offset": 3660240, + "offset": 3660330, "size": 650, }, "index.js": { - "offset": 3660890, + "offset": 3660980, "size": 580, }, "package.json": { - "offset": 3661460, + "offset": 3661550, "size": 1220, }, "polyfill.js": { - "offset": 3662680, + "offset": 3662770, "size": 470, }, "shim.js": { - "offset": 3663140, + "offset": 3663230, "size": 340, }, }, @@ -50702,15 +50662,15 @@ exports[`node_module collectors > yarn max stack 2`] = ` "strip-bom": { "files": { "index.js": { - "offset": 3663480, + "offset": 3663570, "size": 320, }, "license": { - "offset": 3663800, + "offset": 3663890, "size": 1120, }, "package.json": { - "offset": 3664910, + "offset": 3665010, "size": 430, }, }, @@ -50718,19 +50678,19 @@ exports[`node_module collectors > yarn max stack 2`] = ` "supports-color": { "files": { "browser.js": { - "offset": 3665340, + "offset": 3665430, "size": 70, }, "index.js": { - "offset": 3665400, + "offset": 3665500, "size": 2780, }, "license": { - "offset": 3668180, + "offset": 3668270, "size": 1110, }, "package.json": { - "offset": 3669280, + "offset": 3669380, "size": 560, }, }, @@ -50738,23 +50698,23 @@ exports[`node_module collectors > yarn max stack 2`] = ` "supports-preserve-symlinks-flag": { "files": { ".nycrc": { - "offset": 3669840, + "offset": 3669930, "size": 140, }, "LICENSE": { - "offset": 3669980, + "offset": 3670070, "size": 1070, }, "browser.js": { - "offset": 3671050, + "offset": 3671140, "size": 40, }, "index.js": { - "offset": 3671080, + "offset": 3671180, "size": 300, }, "package.json": { - "offset": 3671380, + "offset": 3671470, "size": 1270, }, }, @@ -50762,23 +50722,23 @@ exports[`node_module collectors > yarn max stack 2`] = ` "typed-array-buffer": { "files": { ".nycrc": { - "offset": 3672640, + "offset": 3672740, "size": 220, }, "LICENSE": { - "offset": 3672860, + "offset": 3672950, "size": 1080, }, "index.js": { - "offset": 3673930, + "offset": 3674020, "size": 600, }, "package.json": { - "offset": 3674520, + "offset": 3674610, "size": 1600, }, "tsconfig.json": { - "offset": 3676110, + "offset": 3676210, "size": 120, }, }, @@ -50786,23 +50746,23 @@ exports[`node_module collectors > yarn max stack 2`] = ` "typed-array-byte-length": { "files": { ".nycrc": { - "offset": 3676230, + "offset": 3676320, "size": 220, }, "LICENSE": { - "offset": 3676450, + "offset": 3676540, "size": 1070, }, "index.js": { - "offset": 3677510, + "offset": 3677610, "size": 2750, }, "package.json": { - "offset": 3680260, + "offset": 3680350, "size": 2020, }, "tsconfig.json": { - "offset": 3682270, + "offset": 3682370, "size": 120, }, }, @@ -50810,23 +50770,23 @@ exports[`node_module collectors > yarn max stack 2`] = ` "typed-array-byte-offset": { "files": { ".nycrc": { - "offset": 3682390, + "offset": 3682480, "size": 220, }, "LICENSE": { - "offset": 3682610, + "offset": 3682700, "size": 1070, }, "index.js": { - "offset": 3683670, + "offset": 3683770, "size": 2490, }, "package.json": { - "offset": 3686160, + "offset": 3686250, "size": 2130, }, "tsconfig.json": { - "offset": 3688280, + "offset": 3688380, "size": 150, }, }, @@ -50834,23 +50794,23 @@ exports[`node_module collectors > yarn max stack 2`] = ` "typed-array-length": { "files": { ".nycrc": { - "offset": 3688430, + "offset": 3688520, "size": 220, }, "LICENSE": { - "offset": 3688640, + "offset": 3688740, "size": 1070, }, "index.js": { - "offset": 3689710, + "offset": 3689800, "size": 2950, }, "package.json": { - "offset": 3692650, + "offset": 3692750, "size": 2000, }, "tsconfig.json": { - "offset": 3694650, + "offset": 3694750, "size": 150, }, }, @@ -50858,27 +50818,27 @@ exports[`node_module collectors > yarn max stack 2`] = ` "unbox-primitive": { "files": { ".editorconfig": { - "offset": 3694800, + "offset": 3694890, "size": 290, }, ".nycrc": { - "offset": 3695080, + "offset": 3695180, "size": 220, }, "LICENSE": { - "offset": 3695300, + "offset": 3695390, "size": 1080, }, "index.js": { - "offset": 3696370, + "offset": 3696460, "size": 1540, }, "package.json": { - "offset": 3697900, + "offset": 3698000, "size": 1540, }, "tsconfig.json": { - "offset": 3699440, + "offset": 3699530, "size": 70, }, }, @@ -50886,15 +50846,15 @@ exports[`node_module collectors > yarn max stack 2`] = ` "validate-npm-package-license": { "files": { "LICENSE": { - "offset": 3699510, + "offset": 3699600, "size": 11360, }, "index.js": { - "offset": 3710870, + "offset": 3710960, "size": 1930, }, "package.json": { - "offset": 3712790, + "offset": 3712880, "size": 520, }, }, @@ -50902,24 +50862,24 @@ exports[`node_module collectors > yarn max stack 2`] = ` "which": { "files": { "LICENSE": { - "offset": 3713310, + "offset": 3713400, "size": 770, }, "bin": { "files": { "which": { "executable": true, - "offset": 3714080, + "offset": 3714170, "size": 990, }, }, }, "package.json": { - "offset": 3715060, + "offset": 3715150, "size": 570, }, "which.js": { - "offset": 3715630, + "offset": 3715720, "size": 3190, }, }, @@ -50927,27 +50887,27 @@ exports[`node_module collectors > yarn max stack 2`] = ` "which-boxed-primitive": { "files": { ".editorconfig": { - "offset": 3718810, + "offset": 3718900, "size": 290, }, ".nycrc": { - "offset": 3719100, + "offset": 3719190, "size": 220, }, "LICENSE": { - "offset": 3719310, + "offset": 3719400, "size": 1080, }, "index.js": { - "offset": 3720380, + "offset": 3720470, "size": 720, }, "package.json": { - "offset": 3721100, + "offset": 3721190, "size": 1540, }, "tsconfig.json": { - "offset": 3722640, + "offset": 3722730, "size": 120, }, }, @@ -50955,23 +50915,23 @@ exports[`node_module collectors > yarn max stack 2`] = ` "which-builtin-type": { "files": { ".nycrc": { - "offset": 3722750, + "offset": 3722840, "size": 140, }, "LICENSE": { - "offset": 3722890, + "offset": 3722980, "size": 1080, }, "index.js": { - "offset": 3723960, + "offset": 3724050, "size": 3960, }, "package.json": { - "offset": 3727910, + "offset": 3728010, "size": 2570, }, "tsconfig.json": { - "offset": 3730480, + "offset": 3730570, "size": 130, }, }, @@ -50979,23 +50939,23 @@ exports[`node_module collectors > yarn max stack 2`] = ` "which-collection": { "files": { ".nycrc": { - "offset": 3730600, + "offset": 3730690, "size": 220, }, "LICENSE": { - "offset": 3730810, + "offset": 3730910, "size": 1070, }, "index.js": { - "offset": 3731880, + "offset": 3731970, "size": 510, }, "package.json": { - "offset": 3732390, + "offset": 3732480, "size": 1620, }, "tsconfig.json": { - "offset": 3734010, + "offset": 3734100, "size": 3620, }, }, @@ -51003,27 +50963,27 @@ exports[`node_module collectors > yarn max stack 2`] = ` "which-typed-array": { "files": { ".editorconfig": { - "offset": 3737620, + "offset": 3737710, "size": 290, }, ".nycrc": { - "offset": 3737900, + "offset": 3737990, "size": 220, }, "LICENSE": { - "offset": 3738120, + "offset": 3738210, "size": 1090, }, "index.js": { - "offset": 3739200, + "offset": 3739290, "size": 3770, }, "package.json": { - "offset": 3742970, + "offset": 3743060, "size": 2310, }, "tsconfig.json": { - "offset": 3745270, + "offset": 3745360, "size": 130, }, }, @@ -51031,7 +50991,7 @@ exports[`node_module collectors > yarn max stack 2`] = ` }, }, "package.json": { - "offset": 3746390, + "offset": 3746480, "size": 370, }, }, @@ -51048,11 +51008,11 @@ exports[`node_module collectors > yarn ms 2`] = ` { "files": { "index.html": { - "offset": 50820540, + "offset": 50820670, "size": 380, }, "index.js": { - "offset": 50820920, + "offset": 50821040, "size": 620, }, "node_modules": { @@ -72915,16 +72875,20 @@ exports[`node_module collectors > yarn ms 2`] = ` "offset": 50394510, "size": 1090, }, - "index.js": { + "eslint.config.mjs": { "offset": 50395590, + "size": 140, + }, + "index.js": { + "offset": 50395730, "size": 210, }, "package.json": { - "offset": 50395800, - "size": 1480, + "offset": 50395940, + "size": 1470, }, "tsconfig.json": { - "offset": 50397270, + "offset": 50397400, "size": 80, }, }, @@ -72932,79 +72896,79 @@ exports[`node_module collectors > yarn ms 2`] = ` "import-in-the-middle": { "files": { ".editorconfig": { - "offset": 50397350, + "offset": 50397470, "size": 220, }, ".eslintrc.yaml": { - "offset": 50397560, + "offset": 50397690, "size": 560, }, ".release-please-manifest.json": { - "offset": 50398110, + "offset": 50398240, "size": 20, }, "CODE_OF_CONDUCT.md": { - "offset": 50398130, + "offset": 50398260, "size": 150, }, "CONTRIBUTING.md": { - "offset": 50398280, + "offset": 50398410, "size": 1410, }, "GOVERNANCE.md": { - "offset": 50399690, + "offset": 50399820, "size": 1270, }, "LICENSE": { - "offset": 50400960, + "offset": 50401080, "size": 11360, }, "LICENSE-3rdparty.csv": { - "offset": 50412310, + "offset": 50412440, "size": 210, }, "NOTICE": { - "offset": 50412520, + "offset": 50412640, "size": 1500, }, "hook.js": { - "offset": 50414010, + "offset": 50414130, "size": 14810, }, "hook.mjs": { - "offset": 50428820, + "offset": 50428940, "size": 420, }, "index.js": { - "offset": 50429230, + "offset": 50429360, "size": 4720, }, "lib": { "files": { "get-esm-exports.js": { - "offset": 50433950, + "offset": 50434070, "size": 3450, }, "get-exports.js": { - "offset": 50437390, + "offset": 50437510, "size": 6410, }, "register.js": { - "offset": 50443790, + "offset": 50443920, "size": 1720, }, }, }, "package.json": { - "offset": 50445500, + "offset": 50445630, "size": 1400, }, "release-please-config.json": { - "offset": 50446900, + "offset": 50447030, "size": 300, }, "tsconfig.json": { - "offset": 50447200, + "offset": 50447330, "size": 310, }, }, @@ -73012,23 +72976,23 @@ exports[`node_module collectors > yarn ms 2`] = ` "is-core-module": { "files": { ".nycrc": { - "offset": 50447510, + "offset": 50447630, "size": 140, }, "LICENSE": { - "offset": 50447650, + "offset": 50447770, "size": 1080, }, "core.json": { - "offset": 50448720, + "offset": 50448850, "size": 5960, }, "index.js": { - "offset": 50454680, + "offset": 50454800, "size": 1770, }, "package.json": { - "offset": 50456440, + "offset": 50456570, "size": 1240, }, }, @@ -73036,15 +73000,15 @@ exports[`node_module collectors > yarn ms 2`] = ` "module-details-from-path": { "files": { "LICENSE": { - "offset": 50457680, + "offset": 50457810, "size": 1100, }, "index.js": { - "offset": 50458770, + "offset": 50458900, "size": 970, }, "package.json": { - "offset": 50459740, + "offset": 50459860, "size": 680, }, }, @@ -73052,15 +73016,15 @@ exports[`node_module collectors > yarn ms 2`] = ` "ms": { "files": { "index.js": { - "offset": 50460410, + "offset": 50460540, "size": 3030, }, "license.md": { - "offset": 50463430, + "offset": 50463560, "size": 1080, }, "package.json": { - "offset": 50464510, + "offset": 50464640, "size": 500, }, }, @@ -73068,15 +73032,15 @@ exports[`node_module collectors > yarn ms 2`] = ` "path-parse": { "files": { "LICENSE": { - "offset": 50465010, + "offset": 50465140, "size": 1080, }, "index.js": { - "offset": 50466090, + "offset": 50466220, "size": 1900, }, "package.json": { - "offset": 50467980, + "offset": 50468110, "size": 370, }, }, @@ -73084,15 +73048,15 @@ exports[`node_module collectors > yarn ms 2`] = ` "pg-int8": { "files": { "LICENSE": { - "offset": 50468350, + "offset": 50468470, "size": 750, }, "index.js": { - "offset": 50469100, + "offset": 50469220, "size": 1580, }, "package.json": { - "offset": 50470670, + "offset": 50470790, "size": 410, }, }, @@ -73100,81 +73064,81 @@ exports[`node_module collectors > yarn ms 2`] = ` "pg-protocol": { "files": { "LICENSE": { - "offset": 50471070, + "offset": 50471200, "size": 1080, }, "dist": { "files": { "b.js": { - "offset": 50472150, + "offset": 50472270, "size": 640, }, "b.js.map": { - "offset": 50472780, + "offset": 50472910, "size": 800, }, "buffer-reader.js": { - "offset": 50473570, + "offset": 50473700, "size": 1610, }, "buffer-reader.js.map": { - "offset": 50475180, + "offset": 50475310, "size": 1720, }, "buffer-writer.js": { - "offset": 50476900, + "offset": 50477020, "size": 2780, }, "buffer-writer.js.map": { - "offset": 50479670, + "offset": 50479800, "size": 3090, }, "inbound-parser.test.js": { - "offset": 50482760, + "offset": 50482880, "size": 19520, }, "inbound-parser.test.js.map": { - "offset": 50502270, + "offset": 50502400, "size": 14940, }, "index.js": { - "offset": 50517210, + "offset": 50517340, "size": 800, }, "index.js.map": { - "offset": 50518000, + "offset": 50518130, "size": 530, }, "messages.js": { - "offset": 50518520, + "offset": 50518650, "size": 4980, }, "messages.js.map": { - "offset": 50523490, + "offset": 50523620, "size": 3390, }, "outbound-serializer.test.js": { - "offset": 50526880, + "offset": 50527000, "size": 11070, }, "outbound-serializer.test.js.map": { - "offset": 50537940, + "offset": 50538070, "size": 10280, }, "parser.js": { - "offset": 50548220, + "offset": 50548350, "size": 13450, }, "parser.js.map": { - "offset": 50561660, + "offset": 50561790, "size": 10480, }, "serializer.js": { - "offset": 50572140, + "offset": 50572260, "size": 6940, }, "serializer.js.map": { - "offset": 50579070, + "offset": 50579200, "size": 7130, }, }, @@ -73182,61 +73146,61 @@ exports[`node_module collectors > yarn ms 2`] = ` "esm": { "files": { "index.js": { - "offset": 50586200, + "offset": 50586320, "size": 330, }, }, }, "package.json": { - "offset": 50586520, + "offset": 50586650, "size": 880, }, "src": { "files": { "b.ts": { - "offset": 50587390, + "offset": 50587520, "size": 480, }, "buffer-reader.ts": { - "offset": 50587870, + "offset": 50587990, "size": 1410, }, "buffer-writer.ts": { - "offset": 50589270, + "offset": 50589400, "size": 2510, }, "inbound-parser.test.ts": { - "offset": 50591780, + "offset": 50591900, "size": 15410, }, "index.ts": { - "offset": 50607180, + "offset": 50607310, "size": 450, }, "messages.ts": { - "offset": 50607630, + "offset": 50607750, "size": 6460, }, "outbound-serializer.test.ts": { - "offset": 50614080, + "offset": 50614210, "size": 8570, }, "parser.ts": { - "offset": 50622650, + "offset": 50622770, "size": 12990, }, "serializer.ts": { - "offset": 50635640, + "offset": 50635760, "size": 7200, }, "testing": { "files": { "buffer-list.ts": { - "offset": 50642830, + "offset": 50642960, "size": 1730, }, "test-buffers.ts": { - "offset": 50644560, + "offset": 50644680, "size": 4360, }, }, @@ -73248,39 +73212,39 @@ exports[`node_module collectors > yarn ms 2`] = ` "pg-types": { "files": { "Makefile": { - "offset": 50648920, + "offset": 50649040, "size": 240, }, "index.js": { - "offset": 50649150, + "offset": 50649270, "size": 1220, }, "index.test-d.ts": { - "offset": 50650360, + "offset": 50650490, "size": 760, }, "lib": { "files": { "arrayParser.js": { - "offset": 50651120, + "offset": 50651250, "size": 210, }, "binaryParsers.js": { - "offset": 50651330, + "offset": 50651460, "size": 6070, }, "builtins.js": { - "offset": 50657390, + "offset": 50657520, "size": 1570, }, "textParsers.js": { - "offset": 50658960, + "offset": 50659080, "size": 5370, }, }, }, "package.json": { - "offset": 50664320, + "offset": 50664450, "size": 710, }, }, @@ -73288,15 +73252,15 @@ exports[`node_module collectors > yarn ms 2`] = ` "postgres-array": { "files": { "index.js": { - "offset": 50665030, + "offset": 50665160, "size": 2320, }, "license": { - "offset": 50667350, + "offset": 50667480, "size": 1120, }, "package.json": { - "offset": 50668460, + "offset": 50668590, "size": 530, }, }, @@ -73304,15 +73268,15 @@ exports[`node_module collectors > yarn ms 2`] = ` "postgres-bytea": { "files": { "index.js": { - "offset": 50668990, + "offset": 50669110, "size": 870, }, "license": { - "offset": 50669850, + "offset": 50669980, "size": 1120, }, "package.json": { - "offset": 50670960, + "offset": 50671090, "size": 480, }, }, @@ -73320,15 +73284,15 @@ exports[`node_module collectors > yarn ms 2`] = ` "postgres-date": { "files": { "index.js": { - "offset": 50671440, + "offset": 50671570, "size": 2680, }, "license": { - "offset": 50674120, + "offset": 50674240, "size": 1120, }, "package.json": { - "offset": 50675230, + "offset": 50675350, "size": 490, }, }, @@ -73336,15 +73300,15 @@ exports[`node_module collectors > yarn ms 2`] = ` "postgres-interval": { "files": { "index.js": { - "offset": 50675710, + "offset": 50675840, "size": 3420, }, "license": { - "offset": 50679130, + "offset": 50679250, "size": 1120, }, "package.json": { - "offset": 50680240, + "offset": 50680360, "size": 540, }, }, @@ -73352,15 +73316,15 @@ exports[`node_module collectors > yarn ms 2`] = ` "require-in-the-middle": { "files": { "LICENSE": { - "offset": 50680780, + "offset": 50680900, "size": 1200, }, "index.js": { - "offset": 50681970, + "offset": 50682100, "size": 14150, }, "package.json": { - "offset": 50696120, + "offset": 50696240, "size": 970, }, }, @@ -73370,94 +73334,94 @@ exports[`node_module collectors > yarn ms 2`] = ` ".claude": { "files": { "notes.md": { - "offset": 50697090, + "offset": 50697210, "size": 1220, }, "settings.local.json": { - "offset": 50698300, + "offset": 50698430, "size": 790, }, }, }, ".editorconfig": { - "offset": 50699090, + "offset": 50699210, "size": 660, }, "LICENSE": { - "offset": 50699740, + "offset": 50699870, "size": 1080, }, "SECURITY.md": { - "offset": 50700810, + "offset": 50700940, "size": 390, }, "async.js": { - "offset": 50701200, + "offset": 50701320, "size": 60, }, "bin": { "files": { "resolve": { "executable": true, - "offset": 50701250, + "offset": 50701380, "size": 1540, }, }, }, "eslint.config.mjs": { - "offset": 50702790, + "offset": 50702910, "size": 1580, }, "index.js": { - "offset": 50704360, + "offset": 50704490, "size": 180, }, "lib": { "files": { "async.js": { - "offset": 50704540, + "offset": 50704660, "size": 11550, }, "caller.js": { - "offset": 50716090, + "offset": 50716210, "size": 410, }, "core.js": { - "offset": 50716490, + "offset": 50716620, "size": 310, }, "core.json": { - "offset": 50716800, + "offset": 50716930, "size": 5960, }, "homedir.js": { - "offset": 50722760, + "offset": 50722880, "size": 960, }, "is-core.js": { - "offset": 50723710, + "offset": 50723840, "size": 120, }, "node-modules-paths.js": { - "offset": 50723830, + "offset": 50723960, "size": 1340, }, "normalize-options.js": { - "offset": 50725170, + "offset": 50725290, "size": 350, }, "sync.js": { - "offset": 50725520, + "offset": 50725640, "size": 7170, }, }, }, "package.json": { - "offset": 50732680, + "offset": 50732810, "size": 1400, }, "sync.js": { - "offset": 50734080, + "offset": 50734210, "size": 60, }, }, @@ -73465,14 +73429,14 @@ exports[`node_module collectors > yarn ms 2`] = ` "semver": { "files": { "LICENSE": { - "offset": 50734130, + "offset": 50734260, "size": 770, }, "bin": { "files": { "semver.js": { "executable": true, - "offset": 50734900, + "offset": 50735030, "size": 4750, }, }, @@ -73480,19 +73444,19 @@ exports[`node_module collectors > yarn ms 2`] = ` "classes": { "files": { "comparator.js": { - "offset": 50739650, + "offset": 50739770, "size": 3640, }, "index.js": { - "offset": 50743280, + "offset": 50743400, "size": 150, }, "range.js": { - "offset": 50743420, + "offset": 50743550, "size": 14980, }, "semver.js": { - "offset": 50758400, + "offset": 50758520, "size": 9480, }, }, @@ -73500,191 +73464,191 @@ exports[`node_module collectors > yarn ms 2`] = ` "functions": { "files": { "clean.js": { - "offset": 50767880, + "offset": 50768000, "size": 210, }, "cmp.js": { - "offset": 50768080, + "offset": 50768210, "size": 970, }, "coerce.js": { - "offset": 50769040, + "offset": 50769170, "size": 2010, }, "compare-build.js": { - "offset": 50771050, + "offset": 50771170, "size": 290, }, "compare-loose.js": { - "offset": 50771330, + "offset": 50771460, "size": 140, }, "compare.js": { - "offset": 50771460, + "offset": 50771590, "size": 170, }, "diff.js": { - "offset": 50771630, + "offset": 50771760, "size": 1430, }, "eq.js": { - "offset": 50773050, + "offset": 50773180, "size": 130, }, "gt.js": { - "offset": 50773180, + "offset": 50773310, "size": 130, }, "gte.js": { - "offset": 50773300, + "offset": 50773430, "size": 130, }, "inc.js": { - "offset": 50773430, + "offset": 50773560, "size": 480, }, "lt.js": { - "offset": 50773910, + "offset": 50774040, "size": 130, }, "lte.js": { - "offset": 50774030, + "offset": 50774160, "size": 130, }, "major.js": { - "offset": 50774160, + "offset": 50774290, "size": 140, }, "minor.js": { - "offset": 50774300, + "offset": 50774420, "size": 140, }, "neq.js": { - "offset": 50774430, + "offset": 50774560, "size": 130, }, "parse.js": { - "offset": 50774560, + "offset": 50774690, "size": 340, }, "patch.js": { - "offset": 50774890, + "offset": 50775020, "size": 140, }, "prerelease.js": { - "offset": 50775030, + "offset": 50775150, "size": 240, }, "rcompare.js": { - "offset": 50775260, + "offset": 50775390, "size": 140, }, "rsort.js": { - "offset": 50775390, + "offset": 50775520, "size": 170, }, "satisfies.js": { - "offset": 50775560, + "offset": 50775680, "size": 250, }, "sort.js": { - "offset": 50775800, + "offset": 50775930, "size": 170, }, "valid.js": { - "offset": 50775960, + "offset": 50776090, "size": 180, }, }, }, "index.js": { - "offset": 50776140, + "offset": 50776270, "size": 2630, }, "internal": { "files": { "constants.js": { - "offset": 50778770, + "offset": 50778900, "size": 880, }, "debug.js": { - "offset": 50779640, + "offset": 50779770, "size": 240, }, "identifiers.js": { - "offset": 50779880, + "offset": 50780010, "size": 530, }, "lrucache.js": { - "offset": 50780410, + "offset": 50780530, "size": 810, }, "parse-options.js": { - "offset": 50781210, + "offset": 50781340, "size": 340, }, "re.js": { - "offset": 50781550, + "offset": 50781670, "size": 8140, }, }, }, "package.json": { - "offset": 50789690, + "offset": 50789810, "size": 1350, }, "preload.js": { - "offset": 50791040, + "offset": 50791160, "size": 90, }, "range.bnf": { - "offset": 50791120, + "offset": 50791250, "size": 620, }, "ranges": { "files": { "gtr.js": { - "offset": 50791740, + "offset": 50791860, "size": 240, }, "intersects.js": { - "offset": 50791970, + "offset": 50792100, "size": 230, }, "ltr.js": { - "offset": 50792190, + "offset": 50792320, "size": 230, }, "max-satisfying.js": { - "offset": 50792420, + "offset": 50792550, "size": 600, }, "min-satisfying.js": { - "offset": 50793010, + "offset": 50793140, "size": 600, }, "min-version.js": { - "offset": 50793600, + "offset": 50793730, "size": 1520, }, "outside.js": { - "offset": 50795120, + "offset": 50795240, "size": 2210, }, "simplify.js": { - "offset": 50797320, + "offset": 50797450, "size": 1360, }, "subset.js": { - "offset": 50798680, + "offset": 50798800, "size": 7530, }, "to-comparators.js": { - "offset": 50806200, + "offset": 50806330, "size": 290, }, "valid.js": { - "offset": 50806480, + "offset": 50806610, "size": 330, }, }, @@ -73694,15 +73658,15 @@ exports[`node_module collectors > yarn ms 2`] = ` "shimmer": { "files": { "LICENSE": { - "offset": 50806810, + "offset": 50806940, "size": 1330, }, "index.js": { - "offset": 50808140, + "offset": 50808260, "size": 2950, }, "package.json": { - "offset": 50811080, + "offset": 50811210, "size": 410, }, }, @@ -73710,23 +73674,23 @@ exports[`node_module collectors > yarn ms 2`] = ` "supports-preserve-symlinks-flag": { "files": { ".nycrc": { - "offset": 50811480, + "offset": 50811610, "size": 140, }, "LICENSE": { - "offset": 50811620, + "offset": 50811750, "size": 1070, }, "browser.js": { - "offset": 50812690, + "offset": 50812810, "size": 40, }, "index.js": { - "offset": 50812730, + "offset": 50812850, "size": 300, }, "package.json": { - "offset": 50813020, + "offset": 50813150, "size": 1270, }, }, @@ -73734,11 +73698,11 @@ exports[`node_module collectors > yarn ms 2`] = ` "undici-types": { "files": { "LICENSE": { - "offset": 50814280, + "offset": 50814410, "size": 1090, }, "package.json": { - "offset": 50815370, + "offset": 50815500, "size": 330, }, }, @@ -73746,23 +73710,23 @@ exports[`node_module collectors > yarn ms 2`] = ` "xtend": { "files": { "LICENSE": { - "offset": 50815700, + "offset": 50815830, "size": 1080, }, "immutable.js": { - "offset": 50816780, + "offset": 50816900, "size": 390, }, "mutable.js": { - "offset": 50817160, + "offset": 50817290, "size": 370, }, "package.json": { - "offset": 50817530, + "offset": 50817660, "size": 710, }, "test.js": { - "offset": 50818230, + "offset": 50818360, "size": 2310, }, }, @@ -73770,7 +73734,7 @@ exports[`node_module collectors > yarn ms 2`] = ` }, }, "package.json": { - "offset": 50821540, + "offset": 50821660, "size": 410, }, }, @@ -73787,11 +73751,11 @@ exports[`node_module collectors > yarn parse-asn1 2`] = ` { "files": { "index.html": { - "offset": 522160, + "offset": 522290, "size": 380, }, "index.js": { - "offset": 522540, + "offset": 522670, "size": 620, }, "node_modules": { @@ -74638,16 +74602,20 @@ exports[`node_module collectors > yarn parse-asn1 2`] = ` "offset": 290250, "size": 1090, }, - "index.js": { + "eslint.config.mjs": { "offset": 291330, + "size": 140, + }, + "index.js": { + "offset": 291470, "size": 210, }, "package.json": { - "offset": 291540, - "size": 1480, + "offset": 291680, + "size": 1470, }, "tsconfig.json": { - "offset": 293010, + "offset": 293140, "size": 80, }, }, @@ -74655,19 +74623,19 @@ exports[`node_module collectors > yarn parse-asn1 2`] = ` "inherits": { "files": { "LICENSE": { - "offset": 293090, + "offset": 293210, "size": 750, }, "inherits.js": { - "offset": 293840, + "offset": 293960, "size": 250, }, "inherits_browser.js": { - "offset": 294090, + "offset": 294210, "size": 760, }, "package.json": { - "offset": 294840, + "offset": 294970, "size": 400, }, }, @@ -74675,23 +74643,23 @@ exports[`node_module collectors > yarn parse-asn1 2`] = ` "is-callable": { "files": { ".editorconfig": { - "offset": 295230, + "offset": 295360, "size": 460, }, ".nycrc": { - "offset": 295690, + "offset": 295820, "size": 140, }, "LICENSE": { - "offset": 295830, + "offset": 295960, "size": 1090, }, "index.js": { - "offset": 296910, + "offset": 297040, "size": 3230, }, "package.json": { - "offset": 300130, + "offset": 300260, "size": 1840, }, }, @@ -74699,27 +74667,27 @@ exports[`node_module collectors > yarn parse-asn1 2`] = ` "is-typed-array": { "files": { ".editorconfig": { - "offset": 301970, + "offset": 302100, "size": 290, }, ".nycrc": { - "offset": 302260, + "offset": 302380, "size": 140, }, "LICENSE": { - "offset": 302400, + "offset": 302520, "size": 1090, }, "index.js": { - "offset": 303480, + "offset": 303610, "size": 180, }, "package.json": { - "offset": 303660, + "offset": 303790, "size": 2310, }, "tsconfig.json": { - "offset": 305970, + "offset": 306090, "size": 70, }, }, @@ -74727,15 +74695,15 @@ exports[`node_module collectors > yarn parse-asn1 2`] = ` "isarray": { "files": { "LICENSE": { - "offset": 306030, + "offset": 306160, "size": 1100, }, "index.js": { - "offset": 307130, + "offset": 307260, "size": 140, }, "package.json": { - "offset": 307260, + "offset": 307390, "size": 880, }, }, @@ -74743,79 +74711,79 @@ exports[`node_module collectors > yarn parse-asn1 2`] = ` "math-intrinsics": { "files": { "LICENSE": { - "offset": 308140, + "offset": 308270, "size": 1080, }, "abs.js": { - "offset": 309210, + "offset": 309340, "size": 80, }, "constants": { "files": { "maxArrayLength.js": { - "offset": 309290, + "offset": 309410, "size": 110, }, "maxSafeInteger.js": { - "offset": 309400, + "offset": 309520, "size": 240, }, "maxValue.js": { - "offset": 309630, + "offset": 309760, "size": 200, }, }, }, "floor.js": { - "offset": 309830, + "offset": 309950, "size": 80, }, "isFinite.js": { - "offset": 309900, + "offset": 310030, "size": 270, }, "isInteger.js": { - "offset": 310160, + "offset": 310290, "size": 410, }, "isNaN.js": { - "offset": 310570, + "offset": 310700, "size": 130, }, "isNegativeZero.js": { - "offset": 310700, + "offset": 310820, "size": 150, }, "max.js": { - "offset": 310840, + "offset": 310970, "size": 80, }, "min.js": { - "offset": 310910, + "offset": 311040, "size": 80, }, "mod.js": { - "offset": 310980, + "offset": 311110, "size": 220, }, "package.json": { - "offset": 311200, + "offset": 311330, "size": 1940, }, "pow.js": { - "offset": 313140, + "offset": 313260, "size": 80, }, "round.js": { - "offset": 313210, + "offset": 313340, "size": 80, }, "sign.js": { - "offset": 313290, + "offset": 313410, "size": 220, }, "tsconfig.json": { - "offset": 313500, + "offset": 313630, "size": 40, }, }, @@ -74823,15 +74791,15 @@ exports[`node_module collectors > yarn parse-asn1 2`] = ` "md5.js": { "files": { "LICENSE": { - "offset": 313540, + "offset": 313660, "size": 1090, }, "index.js": { - "offset": 314620, + "offset": 314740, "size": 4610, }, "package.json": { - "offset": 319220, + "offset": 319350, "size": 630, }, }, @@ -74839,15 +74807,15 @@ exports[`node_module collectors > yarn parse-asn1 2`] = ` "minimalistic-assert": { "files": { "LICENSE": { - "offset": 319850, + "offset": 319980, "size": 730, }, "index.js": { - "offset": 320580, + "offset": 320710, "size": 260, }, "package.json": { - "offset": 320830, + "offset": 320960, "size": 350, }, }, @@ -74855,27 +74823,27 @@ exports[`node_module collectors > yarn parse-asn1 2`] = ` "parse-asn1": { "files": { "LICENSE": { - "offset": 321170, + "offset": 321300, "size": 750, }, "aesid.json": { - "offset": 321920, + "offset": 322050, "size": 510, }, "asn1.js": { - "offset": 322420, + "offset": 322550, "size": 3170, }, "certificate.js": { - "offset": 325580, + "offset": 325710, "size": 2380, }, "fixProc.js": { - "offset": 327960, + "offset": 328090, "size": 1240, }, "index.js": { - "offset": 329200, + "offset": 329330, "size": 3510, }, "node_modules": { @@ -74883,15 +74851,15 @@ exports[`node_module collectors > yarn parse-asn1 2`] = ` "hash-base": { "files": { "LICENSE": { - "offset": 333780, + "offset": 333900, "size": 1090, }, "index.js": { - "offset": 334860, + "offset": 334990, "size": 4050, }, "package.json": { - "offset": 338900, + "offset": 339030, "size": 650, }, }, @@ -74899,7 +74867,7 @@ exports[`node_module collectors > yarn parse-asn1 2`] = ` }, }, "package.json": { - "offset": 332700, + "offset": 332830, "size": 1080, }, }, @@ -74907,51 +74875,51 @@ exports[`node_module collectors > yarn parse-asn1 2`] = ` "pbkdf2": { "files": { ".nycrc": { - "offset": 339550, + "offset": 339680, "size": 150, }, "LICENSE": { - "offset": 339700, + "offset": 339830, "size": 1090, }, "browser.js": { - "offset": 340780, + "offset": 340910, "size": 100, }, "index.js": { - "offset": 340880, + "offset": 341010, "size": 1360, }, "lib": { "files": { "async.js": { - "offset": 342240, + "offset": 342360, "size": 2940, }, "default-encoding.js": { - "offset": 345180, + "offset": 345300, "size": 410, }, "precondition.js": { - "offset": 345580, + "offset": 345710, "size": 570, }, "sync-browser.js": { - "offset": 346140, + "offset": 346270, "size": 2960, }, "sync.js": { - "offset": 349090, + "offset": 349220, "size": 1650, }, "to-buffer.js": { - "offset": 350740, + "offset": 350870, "size": 620, }, }, }, "package.json": { - "offset": 351350, + "offset": 351480, "size": 1390, }, }, @@ -74959,19 +74927,19 @@ exports[`node_module collectors > yarn parse-asn1 2`] = ` "possible-typed-array-names": { "files": { "LICENSE": { - "offset": 352740, + "offset": 352860, "size": 1080, }, "index.js": { - "offset": 353810, + "offset": 353940, "size": 270, }, "package.json": { - "offset": 354070, + "offset": 354200, "size": 1300, }, "tsconfig.json": { - "offset": 355360, + "offset": 355490, "size": 120, }, }, @@ -74979,15 +74947,15 @@ exports[`node_module collectors > yarn parse-asn1 2`] = ` "process-nextick-args": { "files": { "index.js": { - "offset": 355480, + "offset": 355610, "size": 1090, }, "license.md": { - "offset": 356560, + "offset": 356690, "size": 1070, }, "package.json": { - "offset": 357630, + "offset": 357750, "size": 440, }, }, @@ -74995,15 +74963,15 @@ exports[`node_module collectors > yarn parse-asn1 2`] = ` "readable-stream": { "files": { "CONTRIBUTING.md": { - "offset": 358070, + "offset": 358190, "size": 1450, }, "GOVERNANCE.md": { - "offset": 359510, + "offset": 359640, "size": 5550, }, "LICENSE": { - "offset": 365060, + "offset": 365190, "size": 2340, }, "doc": { @@ -75011,7 +74979,7 @@ exports[`node_module collectors > yarn parse-asn1 2`] = ` "wg-meetings": { "files": { "2015-01-30.md": { - "offset": 367400, + "offset": 367520, "size": 2280, }, }, @@ -75019,33 +74987,33 @@ exports[`node_module collectors > yarn parse-asn1 2`] = ` }, }, "duplex-browser.js": { - "offset": 369680, + "offset": 369800, "size": 60, }, "duplex.js": { - "offset": 369730, + "offset": 369860, "size": 50, }, "lib": { "files": { "_stream_duplex.js": { - "offset": 369770, + "offset": 369900, "size": 4020, }, "_stream_passthrough.js": { - "offset": 373790, + "offset": 373920, "size": 1760, }, "_stream_readable.js": { - "offset": 375540, + "offset": 375670, "size": 31430, }, "_stream_transform.js": { - "offset": 406970, + "offset": 407100, "size": 7750, }, "_stream_writable.js": { - "offset": 414710, + "offset": 414840, "size": 20340, }, "internal": { @@ -75053,19 +75021,19 @@ exports[`node_module collectors > yarn parse-asn1 2`] = ` "streams": { "files": { "BufferList.js": { - "offset": 435050, + "offset": 435170, "size": 2010, }, "destroy.js": { - "offset": 437050, + "offset": 437180, "size": 2180, }, "stream-browser.js": { - "offset": 439230, + "offset": 439360, "size": 50, }, "stream.js": { - "offset": 439280, + "offset": 439410, "size": 40, }, }, @@ -75079,23 +75047,23 @@ exports[`node_module collectors > yarn parse-asn1 2`] = ` "isarray": { "files": { "Makefile": { - "offset": 441780, + "offset": 441910, "size": 60, }, "component.json": { - "offset": 441840, + "offset": 441960, "size": 470, }, "index.js": { - "offset": 442310, + "offset": 442430, "size": 140, }, "package.json": { - "offset": 442440, + "offset": 442570, "size": 850, }, "test.js": { - "offset": 443290, + "offset": 443410, "size": 320, }, }, @@ -75103,15 +75071,15 @@ exports[`node_module collectors > yarn parse-asn1 2`] = ` "safe-buffer": { "files": { "LICENSE": { - "offset": 443610, + "offset": 443730, "size": 1090, }, "index.js": { - "offset": 444690, + "offset": 444810, "size": 1530, }, "package.json": { - "offset": 446220, + "offset": 446340, "size": 500, }, }, @@ -75119,31 +75087,31 @@ exports[`node_module collectors > yarn parse-asn1 2`] = ` }, }, "package.json": { - "offset": 439310, + "offset": 439440, "size": 970, }, "passthrough.js": { - "offset": 440280, + "offset": 440400, "size": 60, }, "readable-browser.js": { - "offset": 440330, + "offset": 440450, "size": 360, }, "readable.js": { - "offset": 440680, + "offset": 440800, "size": 780, }, "transform.js": { - "offset": 441450, + "offset": 441580, "size": 50, }, "writable-browser.js": { - "offset": 441500, + "offset": 441620, "size": 60, }, "writable.js": { - "offset": 441550, + "offset": 441680, "size": 230, }, }, @@ -75151,15 +75119,15 @@ exports[`node_module collectors > yarn parse-asn1 2`] = ` "ripemd160": { "files": { "LICENSE": { - "offset": 446720, + "offset": 446840, "size": 1090, }, "index.js": { - "offset": 447800, + "offset": 447930, "size": 4580, }, "package.json": { - "offset": 452380, + "offset": 452500, "size": 980, }, }, @@ -75167,15 +75135,15 @@ exports[`node_module collectors > yarn parse-asn1 2`] = ` "safe-buffer": { "files": { "LICENSE": { - "offset": 453350, + "offset": 453470, "size": 1090, }, "index.js": { - "offset": 454430, + "offset": 454550, "size": 1670, }, "package.json": { - "offset": 456100, + "offset": 456220, "size": 780, }, }, @@ -75183,27 +75151,27 @@ exports[`node_module collectors > yarn parse-asn1 2`] = ` "set-function-length": { "files": { ".nycrc": { - "offset": 456870, + "offset": 457000, "size": 220, }, "LICENSE": { - "offset": 457090, + "offset": 457210, "size": 1090, }, "env.js": { - "offset": 458170, + "offset": 458300, "size": 870, }, "index.js": { - "offset": 459040, + "offset": 459160, "size": 1280, }, "package.json": { - "offset": 460310, + "offset": 460440, "size": 1960, }, "tsconfig.json": { - "offset": 462260, + "offset": 462390, "size": 120, }, }, @@ -75211,48 +75179,48 @@ exports[`node_module collectors > yarn parse-asn1 2`] = ` "sha.js": { "files": { "LICENSE": { - "offset": 462380, + "offset": 462510, "size": 2560, }, "bin.js": { "executable": true, - "offset": 464940, + "offset": 465060, "size": 1040, }, "hash.js": { - "offset": 465980, + "offset": 466100, "size": 1900, }, "index.js": { - "offset": 467880, + "offset": 468000, "size": 520, }, "package.json": { - "offset": 468390, + "offset": 468520, "size": 1170, }, "sha.js": { - "offset": 469550, + "offset": 469680, "size": 1950, }, "sha1.js": { - "offset": 471500, + "offset": 471630, "size": 2070, }, "sha224.js": { - "offset": 473570, + "offset": 473700, "size": 1120, }, "sha256.js": { - "offset": 474680, + "offset": 474810, "size": 3370, }, "sha384.js": { - "offset": 478050, + "offset": 478180, "size": 1190, }, "sha512.js": { - "offset": 479240, + "offset": 479360, "size": 7280, }, }, @@ -75260,13 +75228,13 @@ exports[`node_module collectors > yarn parse-asn1 2`] = ` "string_decoder": { "files": { "LICENSE": { - "offset": 486520, + "offset": 486640, "size": 2340, }, "lib": { "files": { "string_decoder.js": { - "offset": 488850, + "offset": 488980, "size": 9470, }, }, @@ -75276,15 +75244,15 @@ exports[`node_module collectors > yarn parse-asn1 2`] = ` "safe-buffer": { "files": { "LICENSE": { - "offset": 498830, + "offset": 498960, "size": 1090, }, "index.js": { - "offset": 499910, + "offset": 500040, "size": 1530, }, "package.json": { - "offset": 501440, + "offset": 501570, "size": 500, }, }, @@ -75292,7 +75260,7 @@ exports[`node_module collectors > yarn parse-asn1 2`] = ` }, }, "package.json": { - "offset": 498320, + "offset": 498450, "size": 520, }, }, @@ -75300,15 +75268,15 @@ exports[`node_module collectors > yarn parse-asn1 2`] = ` "to-buffer": { "files": { "LICENSE": { - "offset": 501940, + "offset": 502070, "size": 1080, }, "index.js": { - "offset": 503020, + "offset": 503150, "size": 3050, }, "package.json": { - "offset": 506070, + "offset": 506200, "size": 1170, }, }, @@ -75316,23 +75284,23 @@ exports[`node_module collectors > yarn parse-asn1 2`] = ` "typed-array-buffer": { "files": { ".nycrc": { - "offset": 507240, + "offset": 507370, "size": 220, }, "LICENSE": { - "offset": 507460, + "offset": 507580, "size": 1080, }, "index.js": { - "offset": 508530, + "offset": 508650, "size": 600, }, "package.json": { - "offset": 509120, + "offset": 509250, "size": 1600, }, "tsconfig.json": { - "offset": 510710, + "offset": 510840, "size": 120, }, }, @@ -75340,23 +75308,23 @@ exports[`node_module collectors > yarn parse-asn1 2`] = ` "util-deprecate": { "files": { "History.md": { - "offset": 510830, + "offset": 510950, "size": 290, }, "LICENSE": { - "offset": 511110, + "offset": 511240, "size": 1110, }, "browser.js": { - "offset": 512210, + "offset": 512340, "size": 1620, }, "node.js": { - "offset": 513830, + "offset": 513950, "size": 130, }, "package.json": { - "offset": 513950, + "offset": 514080, "size": 440, }, }, @@ -75364,27 +75332,27 @@ exports[`node_module collectors > yarn parse-asn1 2`] = ` "which-typed-array": { "files": { ".editorconfig": { - "offset": 514390, + "offset": 514510, "size": 290, }, ".nycrc": { - "offset": 514670, + "offset": 514800, "size": 220, }, "LICENSE": { - "offset": 514890, + "offset": 515020, "size": 1090, }, "index.js": { - "offset": 515970, + "offset": 516100, "size": 3770, }, "package.json": { - "offset": 519740, + "offset": 519860, "size": 2310, }, "tsconfig.json": { - "offset": 522040, + "offset": 522170, "size": 130, }, }, @@ -75392,7 +75360,7 @@ exports[`node_module collectors > yarn parse-asn1 2`] = ` }, }, "package.json": { - "offset": 523160, + "offset": 523290, "size": 370, }, }, @@ -75720,2141 +75688,394 @@ exports[`node_module collectors > yarn two package.json 2`] = ` { "files": { "index.html": { - "offset": 1774520, + "offset": 5150, "size": 380, }, "index.js": { - "offset": 1774900, + "offset": 5530, "size": 620, }, "node_modules": { "files": { - "accepts": { + "is-number": { "files": { - "Makefile": { + "LICENSE": { "offset": 0, - "size": 110, + "size": 1090, }, "index.js": { - "offset": 110, - "size": 3940, + "offset": 1090, + "size": 670, }, "package.json": { - "offset": 4040, - "size": 530, + "offset": 1750, + "size": 880, }, }, }, - "argparse": { + "is-odd": { "files": { "LICENSE": { - "offset": 4560, - "size": 12780, - }, - "argparse.js": { - "offset": 17330, - "size": 129720, - }, - "lib": { - "files": { - "sub.js": { - "offset": 147050, - "size": 2260, - }, - "textwrap.js": { - "offset": 149300, - "size": 17400, - }, - }, - }, - "package.json": { - "offset": 166690, - "size": 450, + "offset": 2630, + "size": 1100, }, - }, - }, - "buffer-crc32": { - "files": { "index.js": { - "offset": 167140, - "size": 3920, + "offset": 3720, + "size": 550, }, "package.json": { - "offset": 171050, - "size": 550, + "offset": 4260, + "size": 900, }, }, }, - "builder-util-runtime": { + }, + }, + "package.json": { + "offset": 6150, + "size": 310, + }, + }, +} +`; + +exports[`node_module collectors > yarn two package.json w/ native mac-only module (optional dep) 1`] = ` +{ + "linux": [], +} +`; + +exports[`node_module collectors > yarn two package.json w/ native mac-only module (optional dep) 2`] = ` +{ + "files": { + "index.html": { + "offset": 396330, + "size": 850, + }, + "index.js": { + "offset": 397170, + "size": 2510, + }, + "node_modules": { + "files": { + "debug": { "files": { "LICENSE": { - "offset": 171590, - "size": 1090, + "offset": 0, + "size": 1140, + }, + "package.json": { + "offset": 1140, + "size": 920, }, - "out": { + "src": { "files": { - "CancellationToken.js": { - "offset": 172680, - "size": 3200, - }, - "CancellationToken.js.map": { - "offset": 175880, - "size": 5650, - }, - "MemoLazy.js": { - "offset": 181520, - "size": 1510, - }, - "MemoLazy.js.map": { - "offset": 183030, - "size": 2760, - }, - "ProgressCallbackTransform.js": { - "offset": 185780, - "size": 1950, - }, - "ProgressCallbackTransform.js.map": { - "offset": 187730, - "size": 3700, - }, - "blockMapApi.js": { - "offset": 191430, - "size": 120, - }, - "blockMapApi.js.map": { - "offset": 191540, - "size": 410, - }, - "error.js": { - "offset": 191940, - "size": 260, - }, - "error.js.map": { - "offset": 192200, - "size": 460, - }, - "httpExecutor.js": { - "offset": 192650, - "size": 20570, + "browser.js": { + "offset": 2060, + "size": 6010, }, - "httpExecutor.js.map": { - "offset": 213220, - "size": 38700, + "common.js": { + "offset": 8070, + "size": 6290, }, "index.js": { - "offset": 251910, - "size": 4560, - }, - "index.js.map": { - "offset": 256470, - "size": 2770, - }, - "publishOptions.js": { - "offset": 259230, - "size": 2510, - }, - "publishOptions.js.map": { - "offset": 261740, - "size": 17780, - }, - "retry.js": { - "offset": 279520, - "size": 950, - }, - "retry.js.map": { - "offset": 280460, - "size": 1750, - }, - "rfc2253Parser.js": { - "offset": 282210, - "size": 2270, - }, - "rfc2253Parser.js.map": { - "offset": 284470, - "size": 4170, - }, - "updateInfo.js": { - "offset": 288640, - "size": 120, - }, - "updateInfo.js.map": { - "offset": 288750, - "size": 2320, - }, - "uuid.js": { - "offset": 291070, - "size": 6400, - }, - "uuid.js.map": { - "offset": 297460, - "size": 12240, - }, - "xml.js": { - "offset": 309700, - "size": 3550, + "offset": 14360, + "size": 320, }, - "xml.js.map": { - "offset": 313250, - "size": 6990, + "node.js": { + "offset": 14670, + "size": 4690, }, }, }, - "package.json": { - "offset": 320240, - "size": 630, - }, }, }, - "cookie": { + "ms": { "files": { - "LICENSE": { - "offset": 320870, - "size": 1090, - }, "index.js": { - "offset": 321960, - "size": 1900, + "offset": 19350, + "size": 3030, + }, + "license.md": { + "offset": 22380, + "size": 1080, }, "package.json": { - "offset": 323850, - "size": 410, + "offset": 23450, + "size": 470, }, }, }, - "cookie-signature": { + "node-addon-api": { "files": { - "History.md": { - "offset": 324260, - "size": 370, + "LICENSE.md": { + "offset": 23920, + "size": 1150, }, - "Makefile": { - "offset": 324630, - "size": 90, + "common.gypi": { + "offset": 25070, + "size": 730, + }, + "except.gypi": { + "offset": 25800, + "size": 560, }, "index.js": { - "offset": 324720, - "size": 1080, + "offset": 26360, + "size": 380, }, - "package.json": { - "offset": 325790, - "size": 370, + "napi-inl.deprecated.h": { + "offset": 26740, + "size": 6330, }, - }, - }, - "debug": { - "files": { - "LICENSE": { - "offset": 326160, - "size": 1140, + "napi-inl.h": { + "offset": 33060, + "size": 219420, + }, + "napi.h": { + "offset": 252470, + "size": 115430, + }, + "node_addon_api.gyp": { + "offset": 367890, + "size": 800, + }, + "node_api.gyp": { + "offset": 368690, + "size": 140, + }, + "noexcept.gypi": { + "offset": 368820, + "size": 640, + }, + "nothing.c": { + "offset": 369460, + "size": 0, + }, + "package-support.json": { + "offset": 369460, + "size": 470, }, "package.json": { - "offset": 327300, - "size": 910, + "offset": 369920, + "size": 930, }, - "src": { + "tools": { "files": { - "browser.js": { - "offset": 328210, - "size": 6110, + "README.md": { + "offset": 370850, + "size": 3220, }, - "common.js": { - "offset": 334310, - "size": 6920, + "check-napi.js": { + "offset": 374070, + "size": 3180, }, - "index.js": { - "offset": 341220, - "size": 320, + "clang-format.js": { + "offset": 377240, + "size": 2010, }, - "node.js": { - "offset": 341540, - "size": 4730, + "conversion.js": { + "executable": true, + "offset": 379250, + "size": 15020, + }, + "eslint-format.js": { + "offset": 394260, + "size": 2080, }, }, }, }, }, - "electron-updater": { + "node-pty": { "files": { "LICENSE": { - "offset": 346270, - "size": 1090, + "size": 3330, + "unpacked": true, }, - "out": { + "build": { "files": { - "AppAdapter.js": { - "offset": 347350, - "size": 740, - }, - "AppAdapter.js.map": { - "offset": 348090, - "size": 1820, - }, - "AppImageUpdater.js": { - "offset": 349900, - "size": 5440, - }, - "AppImageUpdater.js.map": { - "offset": 355340, - "size": 8890, - }, - "AppUpdater.js": { - "offset": 364230, - "size": 33040, - }, - "AppUpdater.js.map": { - "offset": 397260, - "size": 56840, - }, - "BaseUpdater.js": { - "offset": 454100, - "size": 5490, - }, - "BaseUpdater.js.map": { - "offset": 459580, - "size": 9670, - }, - "DebUpdater.js": { - "offset": 469240, - "size": 3600, - }, - "DebUpdater.js.map": { - "offset": 472840, - "size": 6070, - }, - "DownloadedUpdateHelper.js": { - "offset": 478900, - "size": 6910, - }, - "DownloadedUpdateHelper.js.map": { - "offset": 485810, - "size": 12260, - }, - "ElectronAppAdapter.js": { - "offset": 498060, - "size": 1180, - }, - "ElectronAppAdapter.js.map": { - "offset": 499240, - "size": 2290, - }, - "LinuxUpdater.js": { - "offset": 501530, - "size": 4030, - }, - "LinuxUpdater.js.map": { - "offset": 505550, - "size": 6560, - }, - "MacUpdater.js": { - "offset": 512110, - "size": 12570, - }, - "MacUpdater.js.map": { - "offset": 524670, - "size": 20690, - }, - "NsisUpdater.js": { - "offset": 545350, - "size": 9420, - }, - "NsisUpdater.js.map": { - "offset": 554770, - "size": 15030, - }, - "PacmanUpdater.js": { - "offset": 569790, - "size": 2800, - }, - "PacmanUpdater.js.map": { - "offset": 572590, - "size": 4840, - }, - "RpmUpdater.js": { - "offset": 577420, - "size": 2900, - }, - "RpmUpdater.js.map": { - "offset": 580320, - "size": 5380, - }, - "differentialDownloader": { - "files": { - "DataSplitter.js": { - "offset": 585690, - "size": 9400, - }, - "DataSplitter.js.map": { - "offset": 595090, - "size": 16650, - }, - "DifferentialDownloader.js": { - "offset": 611740, - "size": 12520, - }, - "DifferentialDownloader.js.map": { - "offset": 624250, - "size": 21370, - }, - "FileWithEmbeddedBlockMapDifferentialDownloader.js": { - "offset": 645620, - "size": 1870, - }, - "FileWithEmbeddedBlockMapDifferentialDownloader.js.map": { - "offset": 647480, - "size": 3220, - }, - "GenericDifferentialDownloader.js": { - "offset": 650700, - "size": 530, - }, - "GenericDifferentialDownloader.js.map": { - "offset": 651220, - "size": 710, - }, - "ProgressDifferentialDownloadCallbackTransform.js": { - "offset": 651930, - "size": 3830, - }, - "ProgressDifferentialDownloadCallbackTransform.js.map": { - "offset": 655750, - "size": 6590, - }, - "downloadPlanBuilder.js": { - "offset": 662340, - "size": 5520, - }, - "downloadPlanBuilder.js.map": { - "offset": 667860, - "size": 10250, - }, - "multipleRangeDownloader.js": { - "offset": 678110, - "size": 5070, - }, - "multipleRangeDownloader.js.map": { - "offset": 683170, - "size": 9250, - }, - }, - }, - "electronHttpExecutor.js": { - "offset": 692420, - "size": 3260, - }, - "electronHttpExecutor.js.map": { - "offset": 695680, - "size": 5550, - }, - "main.js": { - "offset": 701230, - "size": 4500, - }, - "main.js.map": { - "offset": 705720, - "size": 4430, - }, - "providerFactory.js": { - "offset": 710150, - "size": 3370, - }, - "providerFactory.js.map": { - "offset": 713510, - "size": 5450, - }, - "providers": { - "files": { - "BitbucketProvider.js": { - "offset": 718960, - "size": 1970, - }, - "BitbucketProvider.js.map": { - "offset": 720930, - "size": 3460, - }, - "GenericProvider.js": { - "offset": 724380, - "size": 2260, - }, - "GenericProvider.js.map": { - "offset": 726630, - "size": 3780, - }, - "GitHubProvider.js": { - "offset": 730410, - "size": 9960, - }, - "GitHubProvider.js.map": { - "offset": 740360, - "size": 17120, - }, - "GitLabProvider.js": { - "offset": 757480, - "size": 13420, - }, - "GitLabProvider.js.map": { - "offset": 770900, - "size": 21900, - }, - "KeygenProvider.js": { - "offset": 792790, - "size": 2210, - }, - "KeygenProvider.js.map": { - "offset": 795000, - "size": 3900, - }, - "PrivateGitHubProvider.js": { - "offset": 798890, - "size": 4160, - }, - "PrivateGitHubProvider.js.map": { - "offset": 803040, - "size": 7790, - }, - "Provider.js": { - "offset": 810830, - "size": 6010, - }, - "Provider.js.map": { - "offset": 816830, - "size": 11700, - }, - }, - }, - "types.js": { - "offset": 828520, - "size": 1560, - }, - "types.js.map": { - "offset": 830070, - "size": 3620, - }, - "util.js": { - "offset": 833690, - "size": 1280, - }, - "util.js.map": { - "offset": 834970, - "size": 2040, - }, - "windowsExecutableCodeSignatureVerifier.js": { - "offset": 837010, - "size": 7540, - }, - "windowsExecutableCodeSignatureVerifier.js.map": { - "offset": 844550, - "size": 11370, - }, - }, - }, - "package.json": { - "offset": 855910, - "size": 1040, - }, - }, - }, - "escape-html": { - "files": { - "Makefile": { - "offset": 856950, - "size": 140, - }, - "component.json": { - "offset": 857090, - "size": 200, - }, - "index.js": { - "offset": 857280, - "size": 330, - }, - "package.json": { - "offset": 857610, - "size": 320, - }, - }, - }, - "express": { - "files": { - "History.md": { - "offset": 857930, - "size": 43960, - }, - "LICENSE": { - "offset": 901890, - "size": 1110, - }, - "Makefile": { - "offset": 902990, - "size": 600, - }, - "benchmarks": { - "files": { - "Makefile": { - "offset": 903590, - "size": 210, - }, - "middleware.js": { - "offset": 903790, - "size": 380, - }, - "run": { - "executable": true, - "offset": 904160, - "size": 200, + "Release": { + "files": { + "node-addon-api": { + "files": { + "node_addon_api_except.stamp": { + "size": 0, + "unpacked": true, + }, + }, + "unpacked": true, + }, + "pty.node": { + "size": 76150, + "unpacked": true, + }, + }, + "unpacked": true, }, }, + "unpacked": true, }, - "index.js": { - "offset": 904350, - "size": 110, - }, - "lib": { + "deps": { "files": { - "application.js": { - "offset": 904460, - "size": 12050, - }, - "express.js": { - "offset": 916500, - "size": 1730, + ".editorconfig": { + "size": 60, + "unpacked": true, }, - "middleware": { + "winpty": { "files": { - "init.js": { - "offset": 918230, - "size": 570, + ".drone.yml": { + "size": 440, + "unpacked": true, }, - "query.js": { - "offset": 918800, - "size": 790, + "LICENSE": { + "size": 1090, + "unpacked": true, }, - }, - }, - "request.js": { - "offset": 919580, - "size": 9320, - }, - "response.js": { - "offset": 928900, - "size": 18090, - }, - "router": { - "files": { - "index.js": { - "offset": 946980, - "size": 9100, + "Makefile": { + "size": 4730, + "unpacked": true, }, - "layer.js": { - "offset": 956080, - "size": 1210, + "README.md": { + "size": 5560, + "unpacked": true, }, - "route.js": { - "offset": 957280, - "size": 3790, + "RELEASES.md": { + "size": 13670, + "unpacked": true, }, - }, - }, - "utils.js": { - "offset": 961070, - "size": 2140, - }, - "view.js": { - "offset": 963200, - "size": 1830, - }, - }, - }, - "node_modules": { - "files": { - "debug": { - "files": { - "debug.js": { - "offset": 966200, - "size": 2470, + "VERSION.txt": { + "size": 10, + "unpacked": true, }, - "lib": { + "configure": { + "size": 6480, + "unpacked": true, + }, + "misc": { "files": { - "debug.js": { - "offset": 968660, - "size": 2580, + "ConinMode.ps1": { + "size": 3230, + "unpacked": true, + }, + "DebugClient.py": { + "size": 1560, + "unpacked": true, + }, + "DebugServer.py": { + "size": 2400, + "unpacked": true, + }, + "DumpLines.py": { + "size": 100, + "unpacked": true, + }, + "EnableExtendedFlags.txt": { + "size": 1980, + "unpacked": true, + }, + "Font-Report-June2016": { + "files": { + "CP437-Consolas.txt": { + "size": 16410, + "unpacked": true, + }, + "CP437-Lucida.txt": { + "size": 19650, + "unpacked": true, + }, + "CP932.txt": { + "size": 19600, + "unpacked": true, + }, + "CP936.txt": { + "size": 19650, + "unpacked": true, + }, + "CP949.txt": { + "size": 19590, + "unpacked": true, + }, + "CP950.txt": { + "size": 19660, + "unpacked": true, + }, + "MinimumWindowWidths.txt": { + "size": 870, + "unpacked": true, + }, + "Results.txt": { + "size": 150, + "unpacked": true, + }, + "Windows10SetFontBugginess.txt": { + "size": 7860, + "unpacked": true, + }, + }, + "unpacked": true, + }, + "FormatChar.h": { + "size": 530, + "unpacked": true, + }, + "IdentifyConsoleWindow.ps1": { + "size": 1960, + "unpacked": true, + }, + "MouseInputNotes.txt": { + "size": 4330, + "unpacked": true, + }, + "Notes.txt": { + "size": 9860, + "unpacked": true, + }, + "Spew.py": { + "size": 70, + "unpacked": true, + }, + "build32.sh": { + "size": 220, + "unpacked": true, + }, + "build64.sh": { + "size": 220, + "unpacked": true, + }, + "color-test.sh": { + "size": 6070, + "unpacked": true, + }, + "font-notes.txt": { + "size": 14990, + "unpacked": true, }, }, + "unpacked": true, }, - "package.json": { - "offset": 971230, - "size": 530, - }, - }, - }, - }, - }, - "package.json": { - "offset": 965030, - "size": 1170, - }, - }, - }, - "fresh": { - "files": { - "History.md": { - "offset": 971750, - "size": 170, - }, - "Makefile": { - "offset": 971920, - "size": 90, - }, - "index.js": { - "offset": 972010, - "size": 1230, - }, - "package.json": { - "offset": 973230, - "size": 610, - }, - }, - }, - "fs-extra": { - "files": { - "LICENSE": { - "offset": 973840, - "size": 1090, - }, - "lib": { - "files": { - "copy": { - "files": { - "copy-sync.js": { - "offset": 974920, - "size": 5780, - }, - "copy.js": { - "offset": 980700, - "size": 7760, - }, - "index.js": { - "offset": 988450, - "size": 150, - }, - }, - }, - "empty": { - "files": { - "index.js": { - "offset": 988600, - "size": 750, - }, - }, - }, - "ensure": { - "files": { - "file.js": { - "offset": 989350, - "size": 1710, - }, - "index.js": { - "offset": 991060, - "size": 550, - }, - "link.js": { - "offset": 991600, - "size": 1660, - }, - "symlink-paths.js": { - "offset": 993250, - "size": 3380, - }, - "symlink-type.js": { - "offset": 996630, - "size": 700, - }, - "symlink.js": { - "offset": 997320, - "size": 2530, - }, - }, - }, - "fs": { - "files": { - "index.js": { - "offset": 999840, - "size": 3380, - }, - }, - }, - "index.js": { - "offset": 1003210, - "size": 360, - }, - "json": { - "files": { - "index.js": { - "offset": 1003570, - "size": 510, - }, - "jsonfile.js": { - "offset": 1004080, - "size": 240, - }, - "output-json-sync.js": { - "offset": 1004320, - "size": 280, - }, - "output-json.js": { - "offset": 1004590, - "size": 280, - }, - }, - }, - "mkdirs": { - "files": { - "index.js": { - "offset": 1004870, - "size": 330, - }, - "make-dir.js": { - "offset": 1005200, - "size": 550, - }, - "utils.js": { - "offset": 1005740, - "size": 1660, - }, - }, - }, - "move": { - "files": { - "index.js": { - "offset": 1007400, - "size": 150, - }, - "move-sync.js": { - "offset": 1007550, - "size": 1490, - }, - "move.js": { - "offset": 1009030, - "size": 2010, - }, - }, - }, - "output-file": { - "files": { - "index.js": { - "offset": 1011040, - "size": 950, - }, - }, - }, - "path-exists": { - "files": { - "index.js": { - "offset": 1011990, - "size": 270, - }, - }, - }, - "remove": { - "files": { - "index.js": { - "offset": 1012250, - "size": 490, - }, - "rimraf.js": { - "offset": 1012740, - "size": 7450, - }, - }, - }, - "util": { - "files": { - "stat.js": { - "offset": 1020180, - "size": 5230, - }, - "utimes.js": { - "offset": 1025410, - "size": 620, - }, - }, - }, - }, - }, - "package.json": { - "offset": 1026020, - "size": 950, - }, - }, - }, - "graceful-fs": { - "files": { - "LICENSE": { - "offset": 1026970, - "size": 800, - }, - "clone.js": { - "offset": 1027770, - "size": 500, - }, - "graceful-fs.js": { - "offset": 1028260, - "size": 12680, - }, - "legacy-streams.js": { - "offset": 1040940, - "size": 2660, - }, - "package.json": { - "offset": 1043600, - "size": 600, - }, - "polyfills.js": { - "offset": 1044200, - "size": 10150, - }, - }, - }, - "js-yaml": { - "files": { - "LICENSE": { - "offset": 1054340, - "size": 1090, - }, - "bin": { - "files": { - "js-yaml.js": { - "executable": true, - "offset": 1055420, - "size": 2740, - }, - }, - }, - "dist": { - "files": { - "js-yaml.js": { - "offset": 1058160, - "size": 114590, - }, - "js-yaml.min.js": { - "offset": 1172740, - "size": 39520, - }, - "js-yaml.mjs": { - "offset": 1212260, - "size": 107750, - }, - }, - }, - "index.js": { - "offset": 1320000, - "size": 1800, - }, - "lib": { - "files": { - "common.js": { - "offset": 1321790, - "size": 1180, - }, - "dumper.js": { - "offset": 1322970, - "size": 31900, - }, - "exception.js": { - "offset": 1354860, - "size": 1300, - }, - "loader.js": { - "offset": 1356160, - "size": 47360, - }, - "schema": { - "files": { - "core.js": { - "offset": 1406900, - "size": 290, - }, - "default.js": { - "offset": 1407190, - "size": 540, - }, - "failsafe.js": { - "offset": 1407730, - "size": 280, - }, - "json.js": { - "offset": 1408010, - "size": 530, - }, - }, - }, - "schema.js": { - "offset": 1403520, - "size": 3390, - }, - "snippet.js": { - "offset": 1408530, - "size": 3090, - }, - "type": { - "files": { - "binary.js": { - "offset": 1413470, - "size": 2920, - }, - "bool.js": { - "offset": 1416380, - "size": 980, - }, - "float.js": { - "offset": 1417350, - "size": 2470, - }, - "int.js": { - "offset": 1419820, - "size": 3700, - }, - "map.js": { - "offset": 1423510, - "size": 190, - }, - "merge.js": { - "offset": 1423700, - "size": 230, - }, - "null.js": { - "offset": 1423930, - "size": 810, - }, - "omap.js": { - "offset": 1424730, - "size": 1030, + "ship": { + "files": { + "build-pty4j-libpty.bat": { + "size": 1230, + "unpacked": true, + }, + "common_ship.py": { + "size": 1700, + "unpacked": true, + }, + "make_msvc_package.py": { + "size": 5420, + "unpacked": true, + }, + "ship.py": { + "size": 4030, + "unpacked": true, + }, + }, + "unpacked": true, }, - "pairs.js": { - "offset": 1425760, - "size": 1090, - }, - "seq.js": { - "offset": 1426840, - "size": 200, - }, - "set.js": { - "offset": 1427030, - "size": 550, - }, - "str.js": { - "offset": 1427580, - "size": 190, - }, - "timestamp.js": { - "offset": 1427770, - "size": 2580, - }, - }, - }, - "type.js": { - "offset": 1411620, - "size": 1850, - }, - }, - }, - "package.json": { - "offset": 1430340, - "size": 1080, - }, - }, - }, - "jsonfile": { - "files": { - "LICENSE": { - "offset": 1431410, - "size": 1110, - }, - "index.js": { - "offset": 1432520, - "size": 2020, - }, - "package.json": { - "offset": 1434540, - "size": 560, - }, - "utils.js": { - "offset": 1435100, - "size": 500, - }, - }, - }, - "lazy-val": { - "files": { - "out": { - "files": { - "main.js": { - "offset": 1435590, - "size": 610, - }, - "main.js.map": { - "offset": 1436200, - "size": 1160, - }, - }, - }, - "package.json": { - "offset": 1437360, - "size": 330, - }, - }, - }, - "lodash.escaperegexp": { - "files": { - "LICENSE": { - "offset": 1437690, - "size": 1960, - }, - "index.js": { - "offset": 1439640, - "size": 4400, - }, - "package.json": { - "offset": 1444030, - "size": 360, - }, - }, - }, - "lodash.isequal": { - "files": { - "LICENSE": { - "offset": 1444390, - "size": 1950, - }, - "index.js": { - "offset": 1446340, - "size": 49600, - }, - "package.json": { - "offset": 1495940, - "size": 350, - }, - }, - }, - "merge-descriptors": { - "files": { - "component.json": { - "offset": 1496280, - "size": 210, - }, - "index.js": { - "offset": 1496490, - "size": 240, - }, - "package.json": { - "offset": 1496720, - "size": 410, - }, - }, - }, - "methods": { - "files": { - "History.md": { - "offset": 1497120, - "size": 70, - }, - "index.js": { - "offset": 1497190, - "size": 470, - }, - "package.json": { - "offset": 1497660, - "size": 290, - }, - }, - }, - "mime": { - "files": { - "LICENSE": { - "offset": 1497950, - "size": 1080, - }, - "mime.js": { - "offset": 1499020, - "size": 2870, - }, - "package.json": { - "offset": 1501880, - "size": 390, - }, - "test.js": { - "offset": 1502270, - "size": 2750, - }, - "types": { - "files": { - "mime.types": { - "offset": 1505020, - "size": 53010, - }, - "node.types": { - "offset": 1558030, - "size": 2580, - }, - }, - }, - }, - }, - "ms": { - "files": { - "index.js": { - "offset": 1560600, - "size": 3030, - }, - "license.md": { - "offset": 1563630, - "size": 1080, - }, - "package.json": { - "offset": 1564710, - "size": 500, - }, - }, - }, - "negotiator": { - "files": { - "LICENSE": { - "offset": 1565200, - "size": 1170, - }, - "lib": { - "files": { - "charset.js": { - "offset": 1566370, - "size": 1650, - }, - "encoding.js": { - "offset": 1568010, - "size": 2000, - }, - "language.js": { - "offset": 1570010, - "size": 2140, - }, - "mediaType.js": { - "offset": 1572140, - "size": 2180, - }, - "negotiator.js": { - "offset": 1574320, - "size": 910, - }, - }, - }, - "package.json": { - "offset": 1575220, - "size": 460, - }, - }, - }, - "parseurl": { - "files": { - "index.js": { - "offset": 1575670, - "size": 590, - }, - "package.json": { - "offset": 1576250, - "size": 380, - }, - }, - }, - "path-to-regexp": { - "files": { - "History.md": { - "offset": 1576630, - "size": 180, - }, - "component.json": { - "offset": 1576810, - "size": 250, - }, - "index.js": { - "offset": 1577060, - "size": 1490, - }, - "package.json": { - "offset": 1578540, - "size": 370, - }, - "test.js": { - "offset": 1578910, - "size": 13770, - }, - }, - }, - "qs": { - "files": { - ".gitmodules": { - "offset": 1592680, - "size": 210, - }, - "index.js": { - "offset": 1592890, - "size": 7370, - }, - "package.json": { - "offset": 1600250, - "size": 390, - }, - }, - }, - "range-parser": { - "files": { - "History.md": { - "offset": 1600630, - "size": 340, - }, - "Makefile": { - "offset": 1600960, - "size": 90, - }, - "index.js": { - "offset": 1601050, - "size": 920, - }, - "package.json": { - "offset": 1601970, - "size": 520, - }, - }, - }, - "sax": { - "files": { - "LICENSE.md": { - "offset": 1602490, - "size": 1560, - }, - "lib": { - "files": { - "sax.js": { - "offset": 1604040, - "size": 50150, - }, - }, - }, - "package.json": { - "offset": 1654180, - "size": 570, - }, - }, - }, - "semver": { - "files": { - "LICENSE": { - "offset": 1654750, - "size": 770, - }, - "bin": { - "files": { - "semver.js": { - "executable": true, - "offset": 1655510, - "size": 4750, - }, - }, - }, - "classes": { - "files": { - "comparator.js": { - "offset": 1660260, - "size": 3640, - }, - "index.js": { - "offset": 1663890, - "size": 150, - }, - "range.js": { - "offset": 1664040, - "size": 14980, - }, - "semver.js": { - "offset": 1679010, - "size": 9480, - }, - }, - }, - "functions": { - "files": { - "clean.js": { - "offset": 1688490, - "size": 210, - }, - "cmp.js": { - "offset": 1688700, - "size": 970, - }, - "coerce.js": { - "offset": 1689660, - "size": 2010, - }, - "compare-build.js": { - "offset": 1691660, - "size": 290, - }, - "compare-loose.js": { - "offset": 1691940, - "size": 140, - }, - "compare.js": { - "offset": 1692080, - "size": 170, - }, - "diff.js": { - "offset": 1692250, - "size": 1430, - }, - "eq.js": { - "offset": 1693670, - "size": 130, - }, - "gt.js": { - "offset": 1693800, - "size": 130, - }, - "gte.js": { - "offset": 1693920, - "size": 130, - }, - "inc.js": { - "offset": 1694050, - "size": 480, - }, - "lt.js": { - "offset": 1694520, - "size": 130, - }, - "lte.js": { - "offset": 1694650, - "size": 130, - }, - "major.js": { - "offset": 1694780, - "size": 140, - }, - "minor.js": { - "offset": 1694910, - "size": 140, - }, - "neq.js": { - "offset": 1695050, - "size": 130, - }, - "parse.js": { - "offset": 1695180, - "size": 340, - }, - "patch.js": { - "offset": 1695510, - "size": 140, - }, - "prerelease.js": { - "offset": 1695640, - "size": 240, - }, - "rcompare.js": { - "offset": 1695880, - "size": 140, - }, - "rsort.js": { - "offset": 1696010, - "size": 170, - }, - "satisfies.js": { - "offset": 1696170, - "size": 250, - }, - "sort.js": { - "offset": 1696420, - "size": 170, - }, - "valid.js": { - "offset": 1696580, - "size": 180, - }, - }, - }, - "index.js": { - "offset": 1696760, - "size": 2630, - }, - "internal": { - "files": { - "constants.js": { - "offset": 1699390, - "size": 880, - }, - "debug.js": { - "offset": 1700260, - "size": 240, - }, - "identifiers.js": { - "offset": 1700500, - "size": 530, - }, - "lrucache.js": { - "offset": 1701020, - "size": 810, - }, - "parse-options.js": { - "offset": 1701830, - "size": 340, - }, - "re.js": { - "offset": 1702160, - "size": 8140, - }, - }, - }, - "package.json": { - "offset": 1710300, - "size": 1350, - }, - "preload.js": { - "offset": 1711650, - "size": 90, - }, - "range.bnf": { - "offset": 1711730, - "size": 620, - }, - "ranges": { - "files": { - "gtr.js": { - "offset": 1712350, - "size": 240, - }, - "intersects.js": { - "offset": 1712580, - "size": 230, - }, - "ltr.js": { - "offset": 1712810, - "size": 230, - }, - "max-satisfying.js": { - "offset": 1713040, - "size": 600, - }, - "min-satisfying.js": { - "offset": 1713630, - "size": 600, - }, - "min-version.js": { - "offset": 1714220, - "size": 1520, - }, - "outside.js": { - "offset": 1715730, - "size": 2210, - }, - "simplify.js": { - "offset": 1717940, - "size": 1360, - }, - "subset.js": { - "offset": 1719290, - "size": 7530, - }, - "to-comparators.js": { - "offset": 1726820, - "size": 290, - }, - "valid.js": { - "offset": 1727100, - "size": 330, - }, - }, - }, - }, - }, - "send": { - "files": { - "History.md": { - "offset": 1727420, - "size": 710, - }, - "Makefile": { - "offset": 1728130, - "size": 100, - }, - "index.js": { - "offset": 1728230, - "size": 40, - }, - "lib": { - "files": { - "send.js": { - "offset": 1728270, - "size": 9740, - }, - "utils.js": { - "offset": 1738010, - "size": 800, - }, - }, - }, - "node_modules": { - "files": { - "fresh": { - "files": { - "HISTORY.md": { - "offset": 1739340, - "size": 390, - }, - "LICENSE": { - "offset": 1739720, - "size": 1100, - }, - "index.js": { - "offset": 1740820, - "size": 1230, - }, - "package.json": { - "offset": 1742050, - "size": 420, - }, - }, - }, - "range-parser": { - "files": { - "HISTORY.md": { - "offset": 1742460, - "size": 580, - }, - "LICENSE": { - "offset": 1743040, - "size": 1100, - }, - "index.js": { - "offset": 1744140, - "size": 1080, - }, - "package.json": { - "offset": 1745220, - "size": 430, - }, - }, - }, - }, - }, - "package.json": { - "offset": 1738810, - "size": 530, - }, - }, - }, - "serve-static": { - "files": { - "LICENSE": { - "offset": 1745640, - "size": 1190, - }, - "index.js": { - "offset": 1746820, - "size": 2990, - }, - "node_modules": { - "files": { - "fresh": { - "files": { - "History.md": { - "offset": 1750300, - "size": 80, - }, - "Makefile": { - "offset": 1750380, - "size": 90, - }, - "index.js": { - "offset": 1750470, - "size": 1230, - }, - "package.json": { - "offset": 1751690, - "size": 470, - }, - }, - }, - "range-parser": { - "files": { - "History.md": { - "offset": 1752160, - "size": 240, - }, - "Makefile": { - "offset": 1752390, - "size": 90, - }, - "index.js": { - "offset": 1752480, - "size": 920, - }, - "package.json": { - "offset": 1753400, - "size": 290, - }, - }, - }, - "send": { - "files": { - "History.md": { - "offset": 1753690, - "size": 640, - }, - "Makefile": { - "offset": 1754330, - "size": 100, - }, - "index.js": { - "offset": 1754430, - "size": 40, - }, - "lib": { - "files": { - "send.js": { - "offset": 1754470, - "size": 9740, - }, - "utils.js": { - "offset": 1764200, - "size": 800, - }, - }, - }, - "package.json": { - "offset": 1765000, - "size": 530, - }, - }, - }, - }, - }, - "package.json": { - "offset": 1749810, - "size": 500, - }, - }, - }, - "tiny-typed-emitter": { - "files": { - "LICENSE": { - "offset": 1765530, - "size": 1110, - }, - "lib": { - "files": { - "index.js": { - "offset": 1766630, - "size": 140, - }, - }, - }, - "package.json": { - "offset": 1766760, - "size": 400, - }, - }, - }, - "type-is": { - "files": { - "Makefile": { - "offset": 1767160, - "size": 110, - }, - "index.js": { - "offset": 1767260, - "size": 2300, - }, - "package.json": { - "offset": 1769560, - "size": 500, - }, - }, - }, - "universalify": { - "files": { - "LICENSE": { - "offset": 1770050, - "size": 1100, - }, - "index.js": { - "offset": 1771150, - "size": 710, - }, - "package.json": { - "offset": 1771860, - "size": 620, - }, - }, - }, - "utils-merge": { - "files": { - "LICENSE": { - "offset": 1772480, - "size": 1080, - }, - "index.js": { - "offset": 1773550, - "size": 390, - }, - "package.json": { - "offset": 1773930, - "size": 590, - }, - }, - }, - }, - }, - "package.json": { - "offset": 1775520, - "size": 340, - }, - }, -} -`; - -exports[`node_module collectors > yarn two package.json w/ native mac-only module (optional dep) 1`] = ` -{ - "linux": [], -} -`; - -exports[`node_module collectors > yarn two package.json w/ native mac-only module (optional dep) 2`] = ` -{ - "files": { - "index.html": { - "offset": 396330, - "size": 850, - }, - "index.js": { - "offset": 397170, - "size": 2510, - }, - "node_modules": { - "files": { - "debug": { - "files": { - "LICENSE": { - "offset": 0, - "size": 1140, - }, - "package.json": { - "offset": 1140, - "size": 920, - }, - "src": { - "files": { - "browser.js": { - "offset": 2060, - "size": 6010, - }, - "common.js": { - "offset": 8070, - "size": 6290, - }, - "index.js": { - "offset": 14360, - "size": 320, - }, - "node.js": { - "offset": 14670, - "size": 4690, - }, - }, - }, - }, - }, - "ms": { - "files": { - "index.js": { - "offset": 19350, - "size": 3030, - }, - "license.md": { - "offset": 22380, - "size": 1080, - }, - "package.json": { - "offset": 23450, - "size": 470, - }, - }, - }, - "node-addon-api": { - "files": { - "LICENSE.md": { - "offset": 23920, - "size": 1150, - }, - "common.gypi": { - "offset": 25070, - "size": 730, - }, - "except.gypi": { - "offset": 25800, - "size": 560, - }, - "index.js": { - "offset": 26360, - "size": 380, - }, - "napi-inl.deprecated.h": { - "offset": 26740, - "size": 6330, - }, - "napi-inl.h": { - "offset": 33060, - "size": 219420, - }, - "napi.h": { - "offset": 252470, - "size": 115430, - }, - "node_addon_api.gyp": { - "offset": 367890, - "size": 800, - }, - "node_api.gyp": { - "offset": 368690, - "size": 140, - }, - "noexcept.gypi": { - "offset": 368820, - "size": 640, - }, - "nothing.c": { - "offset": 369460, - "size": 0, - }, - "package-support.json": { - "offset": 369460, - "size": 470, - }, - "package.json": { - "offset": 369920, - "size": 930, - }, - "tools": { - "files": { - "README.md": { - "offset": 370850, - "size": 3220, - }, - "check-napi.js": { - "offset": 374070, - "size": 3180, - }, - "clang-format.js": { - "offset": 377240, - "size": 2010, - }, - "conversion.js": { - "executable": true, - "offset": 379250, - "size": 15020, - }, - "eslint-format.js": { - "offset": 394260, - "size": 2080, - }, - }, - }, - }, - }, - "node-pty": { - "files": { - "LICENSE": { - "size": 3330, - "unpacked": true, - }, - "build": { - "files": { - "Release": { - "files": { - "node-addon-api": { - "files": { - "node_addon_api_except.stamp": { - "size": 0, - "unpacked": true, - }, - }, - "unpacked": true, - }, - "pty.node": { - "size": 76150, - "unpacked": true, - }, - }, - "unpacked": true, - }, - }, - "unpacked": true, - }, - "deps": { - "files": { - ".editorconfig": { - "size": 60, - "unpacked": true, - }, - "winpty": { - "files": { - ".drone.yml": { - "size": 440, - "unpacked": true, - }, - "LICENSE": { - "size": 1090, - "unpacked": true, - }, - "Makefile": { - "size": 4730, - "unpacked": true, - }, - "README.md": { - "size": 5560, - "unpacked": true, - }, - "RELEASES.md": { - "size": 13670, - "unpacked": true, - }, - "VERSION.txt": { - "size": 10, - "unpacked": true, - }, - "configure": { - "size": 6480, - "unpacked": true, - }, - "misc": { - "files": { - "ConinMode.ps1": { - "size": 3230, - "unpacked": true, - }, - "DebugClient.py": { - "size": 1560, - "unpacked": true, - }, - "DebugServer.py": { - "size": 2400, - "unpacked": true, - }, - "DumpLines.py": { - "size": 100, - "unpacked": true, - }, - "EnableExtendedFlags.txt": { - "size": 1980, - "unpacked": true, - }, - "Font-Report-June2016": { - "files": { - "CP437-Consolas.txt": { - "size": 16410, - "unpacked": true, - }, - "CP437-Lucida.txt": { - "size": 19650, - "unpacked": true, - }, - "CP932.txt": { - "size": 19600, - "unpacked": true, - }, - "CP936.txt": { - "size": 19650, - "unpacked": true, - }, - "CP949.txt": { - "size": 19590, - "unpacked": true, - }, - "CP950.txt": { - "size": 19660, - "unpacked": true, - }, - "MinimumWindowWidths.txt": { - "size": 870, - "unpacked": true, - }, - "Results.txt": { - "size": 150, - "unpacked": true, - }, - "Windows10SetFontBugginess.txt": { - "size": 7860, - "unpacked": true, - }, - }, - "unpacked": true, - }, - "FormatChar.h": { - "size": 530, - "unpacked": true, - }, - "IdentifyConsoleWindow.ps1": { - "size": 1960, - "unpacked": true, - }, - "MouseInputNotes.txt": { - "size": 4330, - "unpacked": true, - }, - "Notes.txt": { - "size": 9860, - "unpacked": true, - }, - "Spew.py": { - "size": 70, - "unpacked": true, - }, - "build32.sh": { - "size": 220, - "unpacked": true, - }, - "build64.sh": { - "size": 220, - "unpacked": true, - }, - "color-test.sh": { - "size": 6070, - "unpacked": true, - }, - "font-notes.txt": { - "size": 14990, - "unpacked": true, - }, - }, - "unpacked": true, - }, - "ship": { - "files": { - "build-pty4j-libpty.bat": { - "size": 1230, - "unpacked": true, - }, - "common_ship.py": { - "size": 1700, - "unpacked": true, - }, - "make_msvc_package.py": { - "size": 5420, - "unpacked": true, - }, - "ship.py": { - "size": 4030, - "unpacked": true, - }, - }, - "unpacked": true, - }, - "src": { + "src": { "files": { "agent": { "files": { @@ -78085,1543 +76306,393 @@ exports[`node_module collectors > yarn two package.json w/ native mac-only modul "WakeupFd.h": { "size": 1550, "unpacked": true, - }, - }, - "unpacked": true, - }, - "winpty.gyp": { - "size": 7690, - "unpacked": true, - }, - }, - "unpacked": true, - }, - "vcbuild.bat": { - "size": 2430, - "unpacked": true, - }, - }, - "unpacked": true, - }, - }, - "unpacked": true, - }, - "lib": { - "files": { - "conpty_console_list_agent.js": { - "size": 780, - "unpacked": true, - }, - "conpty_console_list_agent.js.map": { - "size": 570, - "unpacked": true, - }, - "eventEmitter2.js": { - "size": 1600, - "unpacked": true, - }, - "eventEmitter2.js.map": { - "size": 1160, - "unpacked": true, - }, - "eventEmitter2.test.js": { - "size": 1270, - "unpacked": true, - }, - "eventEmitter2.test.js.map": { - "size": 1400, - "unpacked": true, - }, - "index.js": { - "size": 1980, - "unpacked": true, - }, - "index.js.map": { - "size": 970, - "unpacked": true, - }, - "interfaces.js": { - "size": 240, - "unpacked": true, - }, - "interfaces.js.map": { - "size": 130, - "unpacked": true, - }, - "shared": { - "files": { - "conout.js": { - "size": 350, - "unpacked": true, - }, - "conout.js.map": { - "size": 210, - "unpacked": true, - }, - }, - "unpacked": true, - }, - "terminal.js": { - "size": 7460, - "unpacked": true, - }, - "terminal.js.map": { - "size": 5850, - "unpacked": true, - }, - "terminal.test.js": { - "size": 6250, - "unpacked": true, - }, - "terminal.test.js.map": { - "size": 4150, - "unpacked": true, - }, - "testUtils.test.js": { - "size": 810, - "unpacked": true, - }, - "testUtils.test.js.map": { - "size": 630, - "unpacked": true, - }, - "types.js": { - "size": 230, - "unpacked": true, - }, - "types.js.map": { - "size": 120, - "unpacked": true, - }, - "unixTerminal.js": { - "size": 10240, - "unpacked": true, - }, - "unixTerminal.js.map": { - "size": 7980, - "unpacked": true, - }, - "unixTerminal.test.js": { - "size": 19450, - "unpacked": true, - }, - "unixTerminal.test.js.map": { - "size": 11480, - "unpacked": true, - }, - "utils.js": { - "size": 580, - "unpacked": true, - }, - "utils.js.map": { - "size": 450, - "unpacked": true, - }, - "windowsConoutConnection.js": { - "size": 6020, - "unpacked": true, - }, - "windowsConoutConnection.js.map": { - "size": 1600, - "unpacked": true, - }, - "windowsPtyAgent.js": { - "size": 12470, - "unpacked": true, - }, - "windowsPtyAgent.js.map": { - "size": 8890, - "unpacked": true, - }, - "windowsPtyAgent.test.js": { - "size": 4150, - "unpacked": true, - }, - "windowsPtyAgent.test.js.map": { - "size": 2960, - "unpacked": true, - }, - "windowsTerminal.js": { - "size": 7990, - "unpacked": true, - }, - "windowsTerminal.js.map": { - "size": 5130, - "unpacked": true, - }, - "windowsTerminal.test.js": { - "size": 9840, - "unpacked": true, - }, - "windowsTerminal.test.js.map": { - "size": 8010, - "unpacked": true, - }, - "worker": { - "files": { - "conoutSocketWorker.js": { - "size": 850, - "unpacked": true, - }, - "conoutSocketWorker.js.map": { - "size": 640, - "unpacked": true, - }, - }, - "unpacked": true, - }, - }, - "unpacked": true, - }, - "node-addon-api": { - "files": { - "node_addon_api.Makefile": { - "size": 160, - "unpacked": true, - }, - }, - "unpacked": true, - }, - "package.json": { - "size": 890, - "unpacked": true, - }, - "scripts": { - "files": { - "post-install.js": { - "size": 1220, - "unpacked": true, - }, - "publish.js": { - "size": 2370, - "unpacked": true, - }, - }, - "unpacked": true, - }, - "src": { - "files": { - "conpty_console_list_agent.ts": { - "size": 700, - "unpacked": true, - }, - "eventEmitter2.test.ts": { - "size": 980, - "unpacked": true, - }, - "eventEmitter2.ts": { - "size": 1120, - "unpacked": true, - }, - "index.ts": { - "size": 2120, - "unpacked": true, - }, - "interfaces.ts": { - "size": 2850, - "unpacked": true, - }, - "shared": { - "files": { - "conout.ts": { - "size": 300, - "unpacked": true, - }, - }, - "unpacked": true, - }, - "terminal.test.ts": { - "size": 4350, - "unpacked": true, - }, - "terminal.ts": { - "size": 6670, - "unpacked": true, - }, - "testUtils.test.ts": { - "size": 570, - "unpacked": true, - }, - "tsconfig.json": { - "size": 330, - "unpacked": true, - }, - "types.ts": { - "size": 310, - "unpacked": true, - }, - "unixTerminal.test.ts": { - "size": 13210, - "unpacked": true, - }, - "unixTerminal.ts": { - "size": 8200, - "unpacked": true, - }, - "utils.ts": { - "size": 300, - "unpacked": true, - }, - "win": { - "files": { - "path_util.h": { - "size": 700, - "unpacked": true, - }, - }, - "unpacked": true, - }, - "windowsConoutConnection.ts": { - "size": 2690, - "unpacked": true, - }, - "windowsPtyAgent.test.ts": { - "size": 3420, - "unpacked": true, - }, - "windowsPtyAgent.ts": { - "size": 10360, - "unpacked": true, - }, - "windowsTerminal.test.ts": { - "size": 7560, - "unpacked": true, - }, - "windowsTerminal.ts": { - "size": 5790, - "unpacked": true, - }, - "worker": { - "files": { - "conoutSocketWorker.ts": { - "size": 730, - "unpacked": true, - }, - }, - "unpacked": true, - }, - }, - "unpacked": true, - }, - }, - "unpacked": true, - }, - }, - }, - "package.json": { - "offset": 399670, - "size": 270, - }, - }, -} -`; - -exports[`node_module collectors > yarn two package.json without node_modules 1`] = ` -{ - "linux": [], -} -`; - -exports[`node_module collectors > yarn two package.json without node_modules 2`] = ` -{ - "files": { - "index.html": { - "offset": 1498690, - "size": 380, - }, - "index.js": { - "offset": 1499070, - "size": 620, - }, - "node_modules": { - "files": { - "argparse": { - "files": { - "LICENSE": { - "offset": 0, - "size": 12780, - }, - "argparse.js": { - "offset": 12780, - "size": 129720, - }, - "lib": { - "files": { - "sub.js": { - "offset": 142490, - "size": 2260, - }, - "textwrap.js": { - "offset": 144750, - "size": 17400, - }, - }, - }, - "package.json": { - "offset": 162140, - "size": 450, - }, - }, - }, - "builder-util-runtime": { - "files": { - "LICENSE": { - "offset": 162580, - "size": 1090, - }, - "out": { - "files": { - "CancellationToken.js": { - "offset": 163670, - "size": 3200, - }, - "CancellationToken.js.map": { - "offset": 166870, - "size": 5650, - }, - "MemoLazy.js": { - "offset": 172520, - "size": 1510, - }, - "MemoLazy.js.map": { - "offset": 174020, - "size": 2760, - }, - "ProgressCallbackTransform.js": { - "offset": 176780, - "size": 1950, - }, - "ProgressCallbackTransform.js.map": { - "offset": 178720, - "size": 3700, - }, - "blockMapApi.js": { - "offset": 182420, - "size": 120, - }, - "blockMapApi.js.map": { - "offset": 182530, - "size": 410, - }, - "error.js": { - "offset": 182940, - "size": 260, - }, - "error.js.map": { - "offset": 183190, - "size": 460, - }, - "httpExecutor.js": { - "offset": 183650, - "size": 20570, - }, - "httpExecutor.js.map": { - "offset": 204210, - "size": 38700, - }, - "index.js": { - "offset": 242910, - "size": 4560, - }, - "index.js.map": { - "offset": 247460, - "size": 2770, - }, - "publishOptions.js": { - "offset": 250230, - "size": 2510, - }, - "publishOptions.js.map": { - "offset": 252730, - "size": 17780, - }, - "retry.js": { - "offset": 270510, - "size": 950, - }, - "retry.js.map": { - "offset": 271450, - "size": 1750, - }, - "rfc2253Parser.js": { - "offset": 273200, - "size": 2270, - }, - "rfc2253Parser.js.map": { - "offset": 275460, - "size": 4170, - }, - "updateInfo.js": { - "offset": 279630, - "size": 120, - }, - "updateInfo.js.map": { - "offset": 279750, - "size": 2320, - }, - "uuid.js": { - "offset": 282060, - "size": 6400, - }, - "uuid.js.map": { - "offset": 288460, - "size": 12240, - }, - "xml.js": { - "offset": 300690, - "size": 3550, - }, - "xml.js.map": { - "offset": 304240, - "size": 6990, - }, - }, - }, - "package.json": { - "offset": 311230, - "size": 630, - }, - }, - }, - "debug": { - "files": { - "LICENSE": { - "offset": 311860, - "size": 1140, - }, - "package.json": { - "offset": 313000, - "size": 910, - }, - "src": { - "files": { - "browser.js": { - "offset": 313910, - "size": 6110, - }, - "common.js": { - "offset": 320010, - "size": 6920, - }, - "index.js": { - "offset": 326920, - "size": 320, - }, - "node.js": { - "offset": 327240, - "size": 4730, - }, - }, - }, - }, - }, - "electron-updater": { - "files": { - "LICENSE": { - "offset": 331970, - "size": 1090, - }, - "out": { - "files": { - "AppAdapter.js": { - "offset": 333050, - "size": 740, - }, - "AppAdapter.js.map": { - "offset": 333790, - "size": 1820, - }, - "AppImageUpdater.js": { - "offset": 335600, - "size": 5440, - }, - "AppImageUpdater.js.map": { - "offset": 341040, - "size": 8890, - }, - "AppUpdater.js": { - "offset": 349930, - "size": 33040, - }, - "AppUpdater.js.map": { - "offset": 382960, - "size": 56840, - }, - "BaseUpdater.js": { - "offset": 439800, - "size": 5490, - }, - "BaseUpdater.js.map": { - "offset": 445280, - "size": 9670, - }, - "DebUpdater.js": { - "offset": 454940, - "size": 3600, - }, - "DebUpdater.js.map": { - "offset": 458540, - "size": 6070, - }, - "DownloadedUpdateHelper.js": { - "offset": 464600, - "size": 6910, - }, - "DownloadedUpdateHelper.js.map": { - "offset": 471510, - "size": 12260, - }, - "ElectronAppAdapter.js": { - "offset": 483760, - "size": 1180, - }, - "ElectronAppAdapter.js.map": { - "offset": 484940, - "size": 2290, - }, - "LinuxUpdater.js": { - "offset": 487230, - "size": 4030, - }, - "LinuxUpdater.js.map": { - "offset": 491250, - "size": 6560, - }, - "MacUpdater.js": { - "offset": 497810, - "size": 12570, - }, - "MacUpdater.js.map": { - "offset": 510370, - "size": 20690, - }, - "NsisUpdater.js": { - "offset": 531050, - "size": 9420, - }, - "NsisUpdater.js.map": { - "offset": 540470, - "size": 15030, - }, - "PacmanUpdater.js": { - "offset": 555490, - "size": 2800, - }, - "PacmanUpdater.js.map": { - "offset": 558290, - "size": 4840, - }, - "RpmUpdater.js": { - "offset": 563120, - "size": 2900, - }, - "RpmUpdater.js.map": { - "offset": 566020, - "size": 5380, - }, - "differentialDownloader": { - "files": { - "DataSplitter.js": { - "offset": 571390, - "size": 9400, - }, - "DataSplitter.js.map": { - "offset": 580790, - "size": 16650, - }, - "DifferentialDownloader.js": { - "offset": 597440, - "size": 12520, - }, - "DifferentialDownloader.js.map": { - "offset": 609950, - "size": 21370, - }, - "FileWithEmbeddedBlockMapDifferentialDownloader.js": { - "offset": 631320, - "size": 1870, - }, - "FileWithEmbeddedBlockMapDifferentialDownloader.js.map": { - "offset": 633180, - "size": 3220, - }, - "GenericDifferentialDownloader.js": { - "offset": 636400, - "size": 530, - }, - "GenericDifferentialDownloader.js.map": { - "offset": 636920, - "size": 710, - }, - "ProgressDifferentialDownloadCallbackTransform.js": { - "offset": 637630, - "size": 3830, - }, - "ProgressDifferentialDownloadCallbackTransform.js.map": { - "offset": 641450, - "size": 6590, - }, - "downloadPlanBuilder.js": { - "offset": 648040, - "size": 5520, - }, - "downloadPlanBuilder.js.map": { - "offset": 653560, - "size": 10250, - }, - "multipleRangeDownloader.js": { - "offset": 663810, - "size": 5070, - }, - "multipleRangeDownloader.js.map": { - "offset": 668870, - "size": 9250, - }, - }, - }, - "electronHttpExecutor.js": { - "offset": 678120, - "size": 3260, - }, - "electronHttpExecutor.js.map": { - "offset": 681380, - "size": 5550, - }, - "main.js": { - "offset": 686930, - "size": 4500, - }, - "main.js.map": { - "offset": 691420, - "size": 4430, - }, - "providerFactory.js": { - "offset": 695850, - "size": 3370, - }, - "providerFactory.js.map": { - "offset": 699210, - "size": 5450, - }, - "providers": { - "files": { - "BitbucketProvider.js": { - "offset": 704660, - "size": 1970, - }, - "BitbucketProvider.js.map": { - "offset": 706630, - "size": 3460, - }, - "GenericProvider.js": { - "offset": 710080, - "size": 2260, - }, - "GenericProvider.js.map": { - "offset": 712330, - "size": 3780, - }, - "GitHubProvider.js": { - "offset": 716110, - "size": 9960, - }, - "GitHubProvider.js.map": { - "offset": 726060, - "size": 17120, - }, - "GitLabProvider.js": { - "offset": 743180, - "size": 13420, - }, - "GitLabProvider.js.map": { - "offset": 756600, - "size": 21900, - }, - "KeygenProvider.js": { - "offset": 778490, - "size": 2210, - }, - "KeygenProvider.js.map": { - "offset": 780700, - "size": 3900, - }, - "PrivateGitHubProvider.js": { - "offset": 784590, - "size": 4160, - }, - "PrivateGitHubProvider.js.map": { - "offset": 788740, - "size": 7790, - }, - "Provider.js": { - "offset": 796530, - "size": 6010, - }, - "Provider.js.map": { - "offset": 802530, - "size": 11700, - }, - }, - }, - "types.js": { - "offset": 814220, - "size": 1560, - }, - "types.js.map": { - "offset": 815770, - "size": 3620, - }, - "util.js": { - "offset": 819390, - "size": 1280, - }, - "util.js.map": { - "offset": 820670, - "size": 2040, - }, - "windowsExecutableCodeSignatureVerifier.js": { - "offset": 822710, - "size": 7540, - }, - "windowsExecutableCodeSignatureVerifier.js.map": { - "offset": 830250, - "size": 11370, - }, - }, - }, - "package.json": { - "offset": 841610, - "size": 1040, - }, - }, - }, - "fs-extra": { - "files": { - "LICENSE": { - "offset": 842650, - "size": 1090, - }, - "lib": { - "files": { - "copy": { - "files": { - "copy-sync.js": { - "offset": 843740, - "size": 5780, - }, - "copy.js": { - "offset": 849510, - "size": 7760, - }, - "index.js": { - "offset": 857270, - "size": 150, - }, - }, - }, - "empty": { - "files": { - "index.js": { - "offset": 857410, - "size": 750, - }, - }, - }, - "ensure": { - "files": { - "file.js": { - "offset": 858160, - "size": 1710, - }, - "index.js": { - "offset": 859870, - "size": 550, - }, - "link.js": { - "offset": 860410, - "size": 1660, - }, - "symlink-paths.js": { - "offset": 862060, - "size": 3380, - }, - "symlink-type.js": { - "offset": 865440, - "size": 700, - }, - "symlink.js": { - "offset": 866130, - "size": 2530, - }, - }, - }, - "fs": { - "files": { - "index.js": { - "offset": 868650, - "size": 3380, - }, - }, - }, - "index.js": { - "offset": 872030, - "size": 360, - }, - "json": { - "files": { - "index.js": { - "offset": 872390, - "size": 510, - }, - "jsonfile.js": { - "offset": 872890, - "size": 240, - }, - "output-json-sync.js": { - "offset": 873130, - "size": 280, - }, - "output-json.js": { - "offset": 873410, - "size": 280, - }, - }, - }, - "mkdirs": { - "files": { - "index.js": { - "offset": 873680, - "size": 330, - }, - "make-dir.js": { - "offset": 874010, - "size": 550, - }, - "utils.js": { - "offset": 874560, - "size": 1660, - }, - }, - }, - "move": { - "files": { - "index.js": { - "offset": 876210, - "size": 150, - }, - "move-sync.js": { - "offset": 876360, - "size": 1490, - }, - "move.js": { - "offset": 877840, - "size": 2010, - }, - }, - }, - "output-file": { - "files": { - "index.js": { - "offset": 879850, - "size": 950, - }, - }, - }, - "path-exists": { - "files": { - "index.js": { - "offset": 880800, - "size": 270, - }, - }, - }, - "remove": { - "files": { - "index.js": { - "offset": 881060, - "size": 490, - }, - "rimraf.js": { - "offset": 881550, - "size": 7450, - }, - }, - }, - "util": { - "files": { - "stat.js": { - "offset": 889000, - "size": 5230, - }, - "utimes.js": { - "offset": 894220, - "size": 620, - }, - }, - }, - }, - }, - "package.json": { - "offset": 894840, - "size": 950, - }, - }, - }, - "graceful-fs": { - "files": { - "LICENSE": { - "offset": 895790, - "size": 800, - }, - "clone.js": { - "offset": 896580, - "size": 500, - }, - "graceful-fs.js": { - "offset": 897070, - "size": 12680, - }, - "legacy-streams.js": { - "offset": 909750, - "size": 2660, - }, - "package.json": { - "offset": 912410, - "size": 600, - }, - "polyfills.js": { - "offset": 913010, - "size": 10150, - }, - }, - }, - "js-yaml": { - "files": { - "LICENSE": { - "offset": 923150, - "size": 1090, - }, - "bin": { - "files": { - "js-yaml.js": { - "executable": true, - "offset": 924230, - "size": 2740, - }, - }, - }, - "dist": { - "files": { - "js-yaml.js": { - "offset": 926970, - "size": 114590, - }, - "js-yaml.min.js": { - "offset": 1041560, - "size": 39520, - }, - "js-yaml.mjs": { - "offset": 1081070, - "size": 107750, - }, - }, - }, - "index.js": { - "offset": 1188810, - "size": 1800, - }, - "lib": { - "files": { - "common.js": { - "offset": 1190610, - "size": 1180, - }, - "dumper.js": { - "offset": 1191780, - "size": 31900, - }, - "exception.js": { - "offset": 1223680, - "size": 1300, - }, - "loader.js": { - "offset": 1224970, - "size": 47360, - }, - "schema": { - "files": { - "core.js": { - "offset": 1275710, - "size": 290, - }, - "default.js": { - "offset": 1276000, - "size": 540, - }, - "failsafe.js": { - "offset": 1276540, - "size": 280, - }, - "json.js": { - "offset": 1276820, - "size": 530, - }, - }, - }, - "schema.js": { - "offset": 1272330, - "size": 3390, - }, - "snippet.js": { - "offset": 1277340, - "size": 3090, - }, - "type": { - "files": { - "binary.js": { - "offset": 1282280, - "size": 2920, - }, - "bool.js": { - "offset": 1285190, - "size": 980, - }, - "float.js": { - "offset": 1286160, - "size": 2470, - }, - "int.js": { - "offset": 1288630, - "size": 3700, - }, - "map.js": { - "offset": 1292320, - "size": 190, - }, - "merge.js": { - "offset": 1292510, - "size": 230, - }, - "null.js": { - "offset": 1292740, - "size": 810, - }, - "omap.js": { - "offset": 1293550, - "size": 1030, - }, - "pairs.js": { - "offset": 1294570, - "size": 1090, - }, - "seq.js": { - "offset": 1295650, - "size": 200, - }, - "set.js": { - "offset": 1295850, - "size": 550, - }, - "str.js": { - "offset": 1296390, - "size": 190, + }, + }, + "unpacked": true, + }, + "winpty.gyp": { + "size": 7690, + "unpacked": true, + }, + }, + "unpacked": true, }, - "timestamp.js": { - "offset": 1296580, - "size": 2580, + "vcbuild.bat": { + "size": 2430, + "unpacked": true, }, }, - }, - "type.js": { - "offset": 1280430, - "size": 1850, - }, - }, - }, - "package.json": { - "offset": 1299150, - "size": 1080, - }, - }, - }, - "jsonfile": { - "files": { - "LICENSE": { - "offset": 1300230, - "size": 1110, - }, - "index.js": { - "offset": 1301340, - "size": 2020, - }, - "package.json": { - "offset": 1303350, - "size": 560, - }, - "utils.js": { - "offset": 1303910, - "size": 500, - }, - }, - }, - "lazy-val": { - "files": { - "out": { - "files": { - "main.js": { - "offset": 1304410, - "size": 610, - }, - "main.js.map": { - "offset": 1305010, - "size": 1160, + "unpacked": true, }, }, - }, - "package.json": { - "offset": 1306170, - "size": 330, - }, - }, - }, - "lodash.escaperegexp": { - "files": { - "LICENSE": { - "offset": 1306500, - "size": 1960, - }, - "index.js": { - "offset": 1308450, - "size": 4400, - }, - "package.json": { - "offset": 1312850, - "size": 360, - }, - }, - }, - "lodash.isequal": { - "files": { - "LICENSE": { - "offset": 1313200, - "size": 1950, - }, - "index.js": { - "offset": 1315150, - "size": 49600, - }, - "package.json": { - "offset": 1364750, - "size": 350, - }, - }, - }, - "ms": { - "files": { - "index.js": { - "offset": 1365100, - "size": 3030, - }, - "license.md": { - "offset": 1368120, - "size": 1080, - }, - "package.json": { - "offset": 1369200, - "size": 500, - }, - }, - }, - "sax": { - "files": { - "LICENSE.md": { - "offset": 1369700, - "size": 1560, + "unpacked": true, }, "lib": { "files": { - "sax.js": { - "offset": 1371250, - "size": 50150, + "conpty_console_list_agent.js": { + "size": 780, + "unpacked": true, }, - }, - }, - "package.json": { - "offset": 1421400, - "size": 570, - }, - }, - }, - "semver": { - "files": { - "LICENSE": { - "offset": 1421960, - "size": 770, - }, - "bin": { - "files": { - "semver.js": { - "executable": true, - "offset": 1422730, - "size": 4750, + "conpty_console_list_agent.js.map": { + "size": 570, + "unpacked": true, }, - }, - }, - "classes": { - "files": { - "comparator.js": { - "offset": 1427470, - "size": 3640, + "eventEmitter2.js": { + "size": 1600, + "unpacked": true, }, - "index.js": { - "offset": 1431100, - "size": 150, + "eventEmitter2.js.map": { + "size": 1160, + "unpacked": true, }, - "range.js": { - "offset": 1431250, - "size": 14980, + "eventEmitter2.test.js": { + "size": 1270, + "unpacked": true, }, - "semver.js": { - "offset": 1446220, - "size": 9480, + "eventEmitter2.test.js.map": { + "size": 1400, + "unpacked": true, }, - }, - }, - "functions": { - "files": { - "clean.js": { - "offset": 1455700, - "size": 210, + "index.js": { + "size": 1980, + "unpacked": true, }, - "cmp.js": { - "offset": 1455910, + "index.js.map": { "size": 970, + "unpacked": true, }, - "coerce.js": { - "offset": 1456870, - "size": 2010, + "interfaces.js": { + "size": 240, + "unpacked": true, }, - "compare-build.js": { - "offset": 1458870, - "size": 290, + "interfaces.js.map": { + "size": 130, + "unpacked": true, }, - "compare-loose.js": { - "offset": 1459160, - "size": 140, + "shared": { + "files": { + "conout.js": { + "size": 350, + "unpacked": true, + }, + "conout.js.map": { + "size": 210, + "unpacked": true, + }, + }, + "unpacked": true, }, - "compare.js": { - "offset": 1459290, - "size": 170, + "terminal.js": { + "size": 7460, + "unpacked": true, }, - "diff.js": { - "offset": 1459460, - "size": 1430, + "terminal.js.map": { + "size": 5850, + "unpacked": true, }, - "eq.js": { - "offset": 1460880, - "size": 130, + "terminal.test.js": { + "size": 6250, + "unpacked": true, }, - "gt.js": { - "offset": 1461010, - "size": 130, + "terminal.test.js.map": { + "size": 4150, + "unpacked": true, }, - "gte.js": { - "offset": 1461130, - "size": 130, + "testUtils.test.js": { + "size": 810, + "unpacked": true, }, - "inc.js": { - "offset": 1461260, - "size": 480, + "testUtils.test.js.map": { + "size": 630, + "unpacked": true, }, - "lt.js": { - "offset": 1461740, - "size": 130, + "types.js": { + "size": 230, + "unpacked": true, }, - "lte.js": { - "offset": 1461860, - "size": 130, + "types.js.map": { + "size": 120, + "unpacked": true, }, - "major.js": { - "offset": 1461990, - "size": 140, + "unixTerminal.js": { + "size": 10240, + "unpacked": true, }, - "minor.js": { - "offset": 1462120, - "size": 140, + "unixTerminal.js.map": { + "size": 7980, + "unpacked": true, }, - "neq.js": { - "offset": 1462260, - "size": 130, + "unixTerminal.test.js": { + "size": 19450, + "unpacked": true, }, - "parse.js": { - "offset": 1462390, - "size": 340, + "unixTerminal.test.js.map": { + "size": 11480, + "unpacked": true, }, - "patch.js": { - "offset": 1462720, - "size": 140, + "utils.js": { + "size": 580, + "unpacked": true, }, - "prerelease.js": { - "offset": 1462850, - "size": 240, + "utils.js.map": { + "size": 450, + "unpacked": true, }, - "rcompare.js": { - "offset": 1463090, - "size": 140, + "windowsConoutConnection.js": { + "size": 6020, + "unpacked": true, }, - "rsort.js": { - "offset": 1463220, - "size": 170, + "windowsConoutConnection.js.map": { + "size": 1600, + "unpacked": true, }, - "satisfies.js": { - "offset": 1463380, - "size": 250, + "windowsPtyAgent.js": { + "size": 12470, + "unpacked": true, }, - "sort.js": { - "offset": 1463630, - "size": 170, + "windowsPtyAgent.js.map": { + "size": 8890, + "unpacked": true, }, - "valid.js": { - "offset": 1463790, - "size": 180, + "windowsPtyAgent.test.js": { + "size": 4150, + "unpacked": true, }, - }, - }, - "index.js": { - "offset": 1463970, - "size": 2630, - }, - "internal": { - "files": { - "constants.js": { - "offset": 1466600, - "size": 880, + "windowsPtyAgent.test.js.map": { + "size": 2960, + "unpacked": true, }, - "debug.js": { - "offset": 1467470, - "size": 240, + "windowsTerminal.js": { + "size": 7990, + "unpacked": true, }, - "identifiers.js": { - "offset": 1467710, - "size": 530, + "windowsTerminal.js.map": { + "size": 5130, + "unpacked": true, }, - "lrucache.js": { - "offset": 1468230, - "size": 810, + "windowsTerminal.test.js": { + "size": 9840, + "unpacked": true, }, - "parse-options.js": { - "offset": 1469040, - "size": 340, + "windowsTerminal.test.js.map": { + "size": 8010, + "unpacked": true, }, - "re.js": { - "offset": 1469370, - "size": 8140, + "worker": { + "files": { + "conoutSocketWorker.js": { + "size": 850, + "unpacked": true, + }, + "conoutSocketWorker.js.map": { + "size": 640, + "unpacked": true, + }, + }, + "unpacked": true, }, }, + "unpacked": true, }, - "package.json": { - "offset": 1477510, - "size": 1350, - }, - "preload.js": { - "offset": 1478860, - "size": 90, + "node-addon-api": { + "files": { + "node_addon_api.Makefile": { + "size": 160, + "unpacked": true, + }, + }, + "unpacked": true, }, - "range.bnf": { - "offset": 1478950, - "size": 620, + "package.json": { + "size": 890, + "unpacked": true, }, - "ranges": { + "scripts": { "files": { - "gtr.js": { - "offset": 1479560, - "size": 240, + "post-install.js": { + "size": 1220, + "unpacked": true, }, - "intersects.js": { - "offset": 1479800, - "size": 230, + "publish.js": { + "size": 2370, + "unpacked": true, }, - "ltr.js": { - "offset": 1480020, - "size": 230, + }, + "unpacked": true, + }, + "src": { + "files": { + "conpty_console_list_agent.ts": { + "size": 700, + "unpacked": true, }, - "max-satisfying.js": { - "offset": 1480250, - "size": 600, + "eventEmitter2.test.ts": { + "size": 980, + "unpacked": true, }, - "min-satisfying.js": { - "offset": 1480840, - "size": 600, + "eventEmitter2.ts": { + "size": 1120, + "unpacked": true, }, - "min-version.js": { - "offset": 1481430, - "size": 1520, + "index.ts": { + "size": 2120, + "unpacked": true, }, - "outside.js": { - "offset": 1482940, - "size": 2210, + "interfaces.ts": { + "size": 2850, + "unpacked": true, }, - "simplify.js": { - "offset": 1485150, - "size": 1360, + "shared": { + "files": { + "conout.ts": { + "size": 300, + "unpacked": true, + }, + }, + "unpacked": true, }, - "subset.js": { - "offset": 1486500, - "size": 7530, + "terminal.test.ts": { + "size": 4350, + "unpacked": true, }, - "to-comparators.js": { - "offset": 1494030, - "size": 290, + "terminal.ts": { + "size": 6670, + "unpacked": true, }, - "valid.js": { - "offset": 1494310, + "testUtils.test.ts": { + "size": 570, + "unpacked": true, + }, + "tsconfig.json": { "size": 330, + "unpacked": true, + }, + "types.ts": { + "size": 310, + "unpacked": true, + }, + "unixTerminal.test.ts": { + "size": 13210, + "unpacked": true, + }, + "unixTerminal.ts": { + "size": 8200, + "unpacked": true, + }, + "utils.ts": { + "size": 300, + "unpacked": true, + }, + "win": { + "files": { + "path_util.h": { + "size": 700, + "unpacked": true, + }, + }, + "unpacked": true, + }, + "windowsConoutConnection.ts": { + "size": 2690, + "unpacked": true, + }, + "windowsPtyAgent.test.ts": { + "size": 3420, + "unpacked": true, + }, + "windowsPtyAgent.ts": { + "size": 10360, + "unpacked": true, + }, + "windowsTerminal.test.ts": { + "size": 7560, + "unpacked": true, + }, + "windowsTerminal.ts": { + "size": 5790, + "unpacked": true, + }, + "worker": { + "files": { + "conoutSocketWorker.ts": { + "size": 730, + "unpacked": true, + }, + }, + "unpacked": true, }, }, + "unpacked": true, }, }, + "unpacked": true, }, - "tiny-typed-emitter": { + }, + }, + "package.json": { + "offset": 399670, + "size": 270, + }, + }, +} +`; + +exports[`node_module collectors > yarn two package.json without node_modules 1`] = ` +{ + "linux": [], +} +`; + +exports[`node_module collectors > yarn two package.json without node_modules 2`] = ` +{ + "files": { + "index.html": { + "offset": 5150, + "size": 380, + }, + "index.js": { + "offset": 5530, + "size": 620, + }, + "node_modules": { + "files": { + "is-number": { "files": { "LICENSE": { - "offset": 1494640, - "size": 1110, + "offset": 0, + "size": 1090, }, - "lib": { - "files": { - "index.js": { - "offset": 1495740, - "size": 140, - }, - }, + "index.js": { + "offset": 1090, + "size": 670, }, "package.json": { - "offset": 1495870, - "size": 400, + "offset": 1750, + "size": 880, }, }, }, - "universalify": { + "is-odd": { "files": { "LICENSE": { - "offset": 1496270, + "offset": 2630, "size": 1100, }, "index.js": { - "offset": 1497370, - "size": 710, + "offset": 3720, + "size": 550, }, "package.json": { - "offset": 1498070, - "size": 620, + "offset": 4260, + "size": 900, }, }, }, }, }, "package.json": { - "offset": 1499690, - "size": 320, + "offset": 6150, + "size": 310, }, }, } diff --git a/test/src/HoistedNodeModuleTest.ts b/test/src/HoistedNodeModuleTest.ts index 0ecd1b708df..ceadd1f10ad 100644 --- a/test/src/HoistedNodeModuleTest.ts +++ b/test/src/HoistedNodeModuleTest.ts @@ -98,8 +98,7 @@ describe.ifNotWindows("node_module collectors", () => { projectDirCreated: async (projectDir, _tmpDir, testEnv) => { await modifyPackageJson(projectDir, data => { data.dependencies = { - "electron-updater": "6.8.3", - express: "4.0.0", + "is-odd": "3.0.1", } data.devDependencies = { electron: ELECTRON_VERSION, @@ -150,7 +149,7 @@ describe.ifNotWindows("node_module collectors", () => { projectDirCreated: async (projectDir, _tmpDir, testEnv) => { await modifyPackageJson(projectDir, data => { data.dependencies = { - "electron-updater": "6.8.3", + "is-odd": "3.0.1", } data.devDependencies = { electron: ELECTRON_VERSION, @@ -472,7 +471,7 @@ describe.ifNotWindows("node_module collectors", () => { "electron-clear-data": "1.0.5", } data.devDependencies = { - electron: "34.0.2", + electron: ELECTRON_VERSION, } }) await spawn("yarn", ["install"], { diff --git a/test/src/updater/blackboxUpdateTest.ts b/test/src/updater/blackboxUpdateTest.ts index 0f6b499d82f..a6be9048785 100644 --- a/test/src/updater/blackboxUpdateTest.ts +++ b/test/src/updater/blackboxUpdateTest.ts @@ -237,14 +237,16 @@ async function doBuild( "node-addon-api": "^8", } const electronUpdaterPath = (pkg: string) => path.resolve(__dirname, "../../../packages", pkg) + const updaterPath = electronUpdaterPath("electron-updater") + const utilPath = electronUpdaterPath("builder-util-runtime") data.dependencies = { ...data.dependencies, sqlite3: "5.1.7", // for testing native dependency handling in auto-update "@electron/remote": "2.1.3", // for debugging live application with GUI so that app.getVersion is accessible in renderer process - "electron-updater": `link:${electronUpdaterPath("electron-updater")}`, - ...readJsonSync(path.join(electronUpdaterPath("electron-updater"), "package.json")).dependencies, - "builder-util-runtime": `link:${electronUpdaterPath("builder-util-runtime")}`, // needs to be last to overwrite electron-updater's builder-util-runtime dependency for testing with workspace version of builder-util-runtime (workspace:* doesn't resolve and needs to be linked explicitly) - ...readJsonSync(path.join(electronUpdaterPath("builder-util-runtime"), "package.json")).dependencies, + "electron-updater": `link:${updaterPath}`, + ...readJsonSync(path.join(updaterPath, "package.json")).dependencies, + "builder-util-runtime": `link:${utilPath}`, // needs to be last to overwrite electron-updater's builder-util-runtime dependency for testing with workspace version of builder-util-runtime (workspace:* doesn't resolve and needs to be linked explicitly) + ...readJsonSync(path.join(utilPath, "package.json")).dependencies, } }, true From a4f2d98a64087a0fc822e574d033b7770697b09e Mon Sep 17 00:00:00 2001 From: Mike Maietta Date: Mon, 27 Apr 2026 10:28:14 -0700 Subject: [PATCH 59/61] fix(nsis): removing windows azure trusted signing preflight checks to use tool logging (#9687) --- .changeset/odd-pots-post.md | 5 ++ .../src/codeSign/windowsSignAzureManager.ts | 54 +------------------ 2 files changed, 7 insertions(+), 52 deletions(-) create mode 100644 .changeset/odd-pots-post.md diff --git a/.changeset/odd-pots-post.md b/.changeset/odd-pots-post.md new file mode 100644 index 00000000000..bc4720f6b71 --- /dev/null +++ b/.changeset/odd-pots-post.md @@ -0,0 +1,5 @@ +--- +"app-builder-lib": patch +--- + +fix(nsis): removing windows azure trusted signing preflight checks since TrustedSigning module has its own logging diff --git a/packages/app-builder-lib/src/codeSign/windowsSignAzureManager.ts b/packages/app-builder-lib/src/codeSign/windowsSignAzureManager.ts index 6051a5a1d81..ba81309a33c 100644 --- a/packages/app-builder-lib/src/codeSign/windowsSignAzureManager.ts +++ b/packages/app-builder-lib/src/codeSign/windowsSignAzureManager.ts @@ -1,4 +1,4 @@ -import { asArray, InvalidConfigurationError, log } from "builder-util" +import { asArray, log } from "builder-util" import { MemoLazy } from "builder-util-runtime" import { Lazy } from "lazy-val" import { WindowsAzureSigningConfiguration, WindowsConfiguration } from "../options/winOptions" @@ -41,58 +41,8 @@ export class WindowsSignAzureManager implements SignManager { } await vm.exec(ps, ["-NoProfile", "-NonInteractive", "-Command", "Install-Module -Name TrustedSigning -MinimumVersion 0.5.0 -Force -Repository PSGallery -Scope CurrentUser"]) - // Preemptively check env vars once during initialization + // If signing has been misconfigured it, the error from the TrustedSigning module should be descriptive enough to help them fix their configuration. // Options: https://learn.microsoft.com/en-us/dotnet/api/azure.identity.environmentcredential?view=azure-dotnet#definition - log.info(null, "verifying env vars for authenticating to Microsoft Entra ID") - this.verifyRequiredEnvVars() - if (!(this.verifyPrincipleSecretEnv() || this.verifyPrincipleCertificateEnv() || this.verifyUsernamePasswordEnv())) { - throw new InvalidConfigurationError( - `Unable to find valid azure env configuration for signing. Missing field(s) can be debugged via "DEBUG=electron-builder". Please refer to: https://learn.microsoft.com/en-us/dotnet/api/azure.identity.environmentcredential?view=azure-dotnet#definition` - ) - } - } - - verifyRequiredEnvVars() { - ;["AZURE_TENANT_ID", "AZURE_CLIENT_ID"].forEach(field => { - if (!process.env[field]) { - throw new InvalidConfigurationError( - `Unable to find valid azure env field ${field} for signing. Please refer to: https://learn.microsoft.com/en-us/dotnet/api/azure.identity.environmentcredential?view=azure-dotnet#definition` - ) - } - }) - } - - verifyPrincipleSecretEnv() { - if (!process.env.AZURE_CLIENT_SECRET) { - log.debug({ envVar: "AZURE_CLIENT_SECRET" }, "no secret found for authenticating to Microsoft Entra ID") - return false - } - return true - } - - verifyPrincipleCertificateEnv() { - if (!process.env.AZURE_CLIENT_CERTIFICATE_PATH) { - log.debug({ envVar: "AZURE_CLIENT_CERTIFICATE_PATH" }, "no path found for signing certificate for authenticating to Microsoft Entra ID") - return false - } - if (!process.env.AZURE_CLIENT_CERTIFICATE_PASSWORD) { - log.debug({ envVar: "AZURE_CLIENT_CERTIFICATE_PASSWORD" }, "(optional) certificate password not found, assuming no password") - } - if (!process.env.AZURE_CLIENT_SEND_CERTIFICATE_CHAIN) { - log.debug({ envVar: "AZURE_CLIENT_SEND_CERTIFICATE_CHAIN" }, "(optional) certificate chain not found") - } - return true - } - - verifyUsernamePasswordEnv() { - if (!process.env.AZURE_USERNAME) { - log.debug({ envVar: "AZURE_USERNAME" }, "no username found for authenticating to Microsoft Entra ID") - if (!process.env.AZURE_PASSWORD) { - log.debug({ envVar: "AZURE_PASSWORD" }, "no password found for authenticating to Microsoft Entra ID") - } - return false - } - return true } computePublisherName(): Promise { From 14b492541063729f5b67ad8b4c91b2cfc4594786 Mon Sep 17 00:00:00 2001 From: Mike Maietta Date: Tue, 28 Apr 2026 14:12:03 -0700 Subject: [PATCH 60/61] fix somethings --- packages/electron-builder/package.json | 1 + packages/electron-publish/package.json | 3 +++ packages/electron-publish/src/gitlabPublisher.ts | 4 +--- packages/electron-updater/package.json | 3 +++ pnpm-lock.yaml | 3 +++ test/src/linux/linuxPackagerTest.ts | 2 +- 6 files changed, 12 insertions(+), 4 deletions(-) diff --git a/packages/electron-builder/package.json b/packages/electron-builder/package.json index b040296c0e3..b729f49e1db 100644 --- a/packages/electron-builder/package.json +++ b/packages/electron-builder/package.json @@ -57,6 +57,7 @@ "app-builder-lib": "workspace:*", "builder-util": "workspace:*", "builder-util-runtime": "workspace:*", + "electron-publish": "workspace:*", "chalk": "^4.1.2", "ci-info": "^4.2.0", "dmg-builder": "workspace:*", diff --git a/packages/electron-publish/package.json b/packages/electron-publish/package.json index 8536e4b32c9..c1263733fcb 100644 --- a/packages/electron-publish/package.json +++ b/packages/electron-publish/package.json @@ -30,5 +30,8 @@ "typings": "./out/index.d.ts", "devDependencies": { "@types/mime": "2.0.3" + }, + "scripts": { + "compile": "tsc -b" } } diff --git a/packages/electron-publish/src/gitlabPublisher.ts b/packages/electron-publish/src/gitlabPublisher.ts index f7f3d704682..b42ebf538b4 100644 --- a/packages/electron-publish/src/gitlabPublisher.ts +++ b/packages/electron-publish/src/gitlabPublisher.ts @@ -121,9 +121,7 @@ export class GitlabPublisher extends HttpPublisher { const releaseName = this.releaseName || defaultName const branchName = await this.getDefaultBranch() - const description = this.releaseBody - ? trimStringWithWarn(this.releaseBody, 100000, "release body exceeds GitLab limit, truncating") - : `Release ${releaseName}` + const description = this.releaseBody ? trimStringWithWarn(this.releaseBody, 100000, "release body exceeds GitLab limit, truncating") : `Release ${releaseName}` const releaseData = { tag_name: this.tag, diff --git a/packages/electron-updater/package.json b/packages/electron-updater/package.json index 1f5c93eb371..61448cfc6d9 100644 --- a/packages/electron-updater/package.json +++ b/packages/electron-updater/package.json @@ -42,5 +42,8 @@ }, "engines": { "node": ">=22.12.0" + }, + "scripts": { + "compile": "tsc" } } diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index caaa3731435..cd88ed68426 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -442,6 +442,9 @@ importers: dmg-builder: specifier: workspace:* version: link:../dmg-builder + electron-publish: + specifier: workspace:* + version: link:../electron-publish fs-extra: specifier: ^11.3.4 version: 11.3.4 diff --git a/test/src/linux/linuxPackagerTest.ts b/test/src/linux/linuxPackagerTest.ts index fe4fae5b74f..2b69d44348c 100644 --- a/test/src/linux/linuxPackagerTest.ts +++ b/test/src/linux/linuxPackagerTest.ts @@ -6,7 +6,7 @@ import * as path from "path" import { assertThat } from "../helpers/fileAssert.js" import { app, appThrows, copyTestAsset, modifyPackageJson } from "../helpers/packTester.js" import { ELECTRON_VERSION } from "../helpers/testConfig.js" -import { ToolsetConfig } from "app-builder-lib/src" +import { ToolsetConfig } from "app-builder-lib" const appImageTarget = Platform.LINUX.createTarget("appimage", Arch.x64) From eac86628d925d485a7918f30c239b65ef24307db Mon Sep 17 00:00:00 2001 From: Mike Maietta Date: Tue, 28 Apr 2026 14:15:00 -0700 Subject: [PATCH 61/61] everything but tests compile --- .../src/targets/appimage/appImageUtil.ts | 14 +++++++------- packages/app-builder-lib/src/toolsets/linux.ts | 4 ++-- 2 files changed, 9 insertions(+), 9 deletions(-) diff --git a/packages/app-builder-lib/src/targets/appimage/appImageUtil.ts b/packages/app-builder-lib/src/targets/appimage/appImageUtil.ts index b6433e98a9d..1916792dde0 100644 --- a/packages/app-builder-lib/src/targets/appimage/appImageUtil.ts +++ b/packages/app-builder-lib/src/targets/appimage/appImageUtil.ts @@ -1,14 +1,14 @@ import { Arch, copyDir, copyFile, exec, exists, InvalidConfigurationError, log } from "builder-util" import * as fs from "fs-extra" import * as path from "path" -import { FileAssociation } from "../../options/FileAssociation" -import { IconInfo } from "../../platformPackager" -import { getAppImageTools } from "../../toolsets/linux" -import { copyIcons, copyMimeTypes } from "./appLauncher" -import { appendBlockmap } from "../differentialUpdateInfoBuilder" +import { FileAssociation } from "../../options/FileAssociation.js" +import { IconInfo } from "../../platformPackager.js" +import { getAppImageTools } from "../../toolsets/linux.js" +import { copyIcons, copyMimeTypes } from "./appLauncher.js" +import { appendBlockmap } from "../differentialUpdateInfoBuilder.js" import { BlockMapDataHolder } from "builder-util-runtime" -import { APP_RUN_ENTRYPOINT } from "./AppImageTarget" -import { ToolsetConfig } from "app-builder-lib/src/configuration" +import { APP_RUN_ENTRYPOINT } from "./AppImageTarget.js" +import { ToolsetConfig } from "../../configuration.js" interface Options { productName: string diff --git a/packages/app-builder-lib/src/toolsets/linux.ts b/packages/app-builder-lib/src/toolsets/linux.ts index c8250fac2d6..3055b1e501a 100644 --- a/packages/app-builder-lib/src/toolsets/linux.ts +++ b/packages/app-builder-lib/src/toolsets/linux.ts @@ -1,7 +1,7 @@ import { Arch } from "builder-util" import * as path from "path" -import { downloadArtifact, getBinFromUrl } from "../binDownload" -import { ToolsetConfig } from "../configuration" +import { downloadArtifact, getBinFromUrl } from "../binDownload.js" +import { ToolsetConfig } from "../configuration.js" // It's just easier to copy the map of checksums here rather than adding them to within each if-statement. Also, easy copy-paste from the releases page const fpmChecksums = {