diff --git a/biome.json b/biome.json deleted file mode 100644 index ee9d72f687a3..000000000000 --- a/biome.json +++ /dev/null @@ -1,106 +0,0 @@ -{ - "$schema": "https://biomejs.dev/schemas/2.0.5/schema.json", - "files": { - "maxSize": 16000000, - "includes": [ - "{packages,lib,scripts,tests,private,clients}/**/*.{mjs,js,ts,json}", - "!**/dist-{cjs,es,types}/**", - "!**/ruleset.ts" - ] - }, - "overrides": [ - { - "includes": ["{private,clients}/**/*.{mjs,js,ts,json}"], - "linter": { - "rules": { - "recommended": true, - "complexity": { - "noForEach": "off" - }, - "correctness": { - "noUndeclaredVariables": "off", - "noUnusedVariables": "off", - "noInvalidBuiltinInstantiation": "error", - "noSwitchDeclarations": "off" - }, - "style": "off", - "nursery": "off", - "suspicious": "off" - } - } - } - ], - "formatter": { - "enabled": true, - "indentStyle": "space", - "lineWidth": 120, - "indentWidth": 2, - "lineEnding": "lf", - "bracketSpacing": true, - "bracketSameLine": false - }, - "assist": { - "enabled": true, - "actions": { - "source": { - "organizeImports": "on" - } - } - }, - "linter": { - "rules": { - "recommended": true, - "complexity": { - "noForEach": "off" - }, - "correctness": { - "noUndeclaredVariables": "off", - "noUnusedVariables": "info", - "noInvalidBuiltinInstantiation": "error", - "noSwitchDeclarations": "info", - "noUnusedFunctionParameters": "info" - }, - "style": { - "noNamespace": "error", - "useConsistentArrayType": { - "level": "info", - "options": { - "syntax": "shorthand" - } - }, - "noParameterAssign": "info", - "useAsConstAssertion": "info", - "useDefaultParameterLast": "info", - "useEnumInitializers": "error", - "useSingleVarDeclarator": "error", - "noUnusedTemplateLiteral": "info", - "useNumberNamespace": "info", - "noInferrableTypes": "info", - "noUselessElse": "info" - }, - "nursery": { - "useIterableCallbackReturn": "off" - }, - "suspicious": { - "noEmptyBlockStatements": "info", - "noExplicitAny": "info", - "noImplicitAnyLet": "info", - "noEmptyBlock": "info", - "noEmptyInterface": "info", - "noAssignInExpressions": "info", - "noSparseArray": "info", - "noShadowRestrictedNames": "info" - } - } - }, - "javascript": { - "formatter": { - "trailingCommas": "es5" - } - }, - "vcs": { - "enabled": true, - "clientKind": "git", - "useIgnoreFile": true - } -} diff --git a/clients/biome.json b/clients/biome.json deleted file mode 100644 index e1eda9629d67..000000000000 --- a/clients/biome.json +++ /dev/null @@ -1,26 +0,0 @@ -{ - "$schema": "https://biomejs.dev/schemas/2.0.0/schema.json", - "extends": "//", - "files": { - "maxSize": 16000000, - "includes": ["**/*.{mjs,js,ts,json}", "!**/dist-{cjs,es,types}/**", "!**/ruleset.ts"] - }, - "linter": { - "rules": { - "recommended": true, - "complexity": { - "noForEach": "off" - }, - "correctness": { - "noUndeclaredVariables": "off", - "noUnusedVariables": "off", - "noInvalidBuiltinInstantiation": "error", - "noSwitchDeclarations": "off", - "noUnusedFunctionParameters": "off" - }, - "style": "off", - "nursery": "off", - "suspicious": "off" - } - } -} diff --git a/package.json b/package.json index 8d550b229151..cdc07b2543f3 100644 --- a/package.json +++ b/package.json @@ -63,9 +63,6 @@ }, "license": "UNLICENSED", "devDependencies": { - "@biomejs/biome": "2.0.5", - "@biomejs/cli-darwin-arm64": "2.0.5", - "@biomejs/cli-linux-x64-musl": "2.0.5", "@commitlint/cli": "17.0.2", "@commitlint/config-conventional": "17.0.2", "@cucumber/cucumber": "8.5.3", @@ -115,11 +112,10 @@ "turbo": "2.5.8", "typescript": "~5.8.3", "verdaccio": "5.25.0", - "vite": "7.0.6", + "vite": "^7.1.11", "vitest": "^3.2.4", "webpack": "5.101.0", "webpack-cli": "4.10.0", - "xmldom": "^0.6.0", "yargs": "17.5.1" }, "overrides": { diff --git a/packages/middleware-sdk-s3/src/s3-express/middleware-s3-express.e2e.spec.ts b/packages/middleware-sdk-s3/src/s3-express/middleware-s3-express.e2e.spec.ts index a1fab6fc37e4..750484cadcf5 100644 --- a/packages/middleware-sdk-s3/src/s3-express/middleware-s3-express.e2e.spec.ts +++ b/packages/middleware-sdk-s3/src/s3-express/middleware-s3-express.e2e.spec.ts @@ -88,11 +88,11 @@ describe("s3 express CRUD test suite", () => { readWriteDeleteRecorder = JSON.parse(JSON.stringify(recorder.calls)); reset(); - }); + }, 120_000); afterAll(async () => { await emptyAndDeleteBucket(controller, bucketName); - }); + }, 120_000); it("can create a bucket", () => { expect(createRecorder).toEqual({ diff --git a/scripts/biome/repair.js b/scripts/biome/repair.js deleted file mode 100644 index 5aab0e2cfb68..000000000000 --- a/scripts/biome/repair.js +++ /dev/null @@ -1,34 +0,0 @@ -const { spawnProcess } = require("../utils/spawn-process"); - -const path = require("node:path"); -const fs = require("node:fs"); - -const root = path.join(__dirname, "..", ".."); - -/** - * This script allows Biome CLI to run in AL2 by replacing the linux-x64 - * file with the linux-x64-musl file from GitHub. - * - * Except it doesn't work because it hangs indefinitely. Giving up for now. - */ -(async () => { - const pkgJson = require(path.join(root, "package.json")); - const biomeVersion = pkgJson.devDependencies["@biomejs/biome"]; - - const localTarget = path.join(root, "node_modules", "@biomejs", "cli-linux-x64", "biome"); - - if (fs.existsSync(localTarget)) { - const download = "https://github.com/biomejs/biome/releases/download"; - const githubDistribution = `${download}/%40biomejs%2Fbiome%40${biomeVersion}/biome-linux-x64-musl`; - console.log(`curl -L ${githubDistribution} -o ${localTarget}`); - await spawnProcess("curl", ["-L", githubDistribution, "-o", localTarget]); - console.log(`chmod +x ${localTarget}`); - await spawnProcess("chmod", ["+x", localTarget]); - } else { - console.log("No target", localTarget); - } - - const npxBin = path.join(root, "node_modules", ".bin", "biome"); - console.log(`chmod +x ${npxBin}`); - await spawnProcess("chmod", ["+x", npxBin]); -})(); diff --git a/yarn.lock b/yarn.lock index 7e020f465eac..79119f2a4766 100644 --- a/yarn.lock +++ b/yarn.lock @@ -25242,99 +25242,6 @@ __metadata: languageName: node linkType: hard -"@biomejs/biome@npm:2.0.5": - version: 2.0.5 - resolution: "@biomejs/biome@npm:2.0.5" - dependencies: - "@biomejs/cli-darwin-arm64": "npm:2.0.5" - "@biomejs/cli-darwin-x64": "npm:2.0.5" - "@biomejs/cli-linux-arm64": "npm:2.0.5" - "@biomejs/cli-linux-arm64-musl": "npm:2.0.5" - "@biomejs/cli-linux-x64": "npm:2.0.5" - "@biomejs/cli-linux-x64-musl": "npm:2.0.5" - "@biomejs/cli-win32-arm64": "npm:2.0.5" - "@biomejs/cli-win32-x64": "npm:2.0.5" - dependenciesMeta: - "@biomejs/cli-darwin-arm64": - optional: true - "@biomejs/cli-darwin-x64": - optional: true - "@biomejs/cli-linux-arm64": - optional: true - "@biomejs/cli-linux-arm64-musl": - optional: true - "@biomejs/cli-linux-x64": - optional: true - "@biomejs/cli-linux-x64-musl": - optional: true - "@biomejs/cli-win32-arm64": - optional: true - "@biomejs/cli-win32-x64": - optional: true - bin: - biome: bin/biome - checksum: 10c0/850b5bbcdf4f4d964c25785f2eb8121657873acd57bc4d943663a402faf74f6c2c2be3e8d3c6cd4b67a0d63211980c35ebcde7ecd3e7b86866f32234bde80fd1 - languageName: node - linkType: hard - -"@biomejs/cli-darwin-arm64@npm:2.0.5": - version: 2.0.5 - resolution: "@biomejs/cli-darwin-arm64@npm:2.0.5" - checksum: 10c0/0ff323d033dcbbd5b3ca36db38797710ae334e75979b59cb2c9a507d54a86864312425144583534132c26be03f874adb51ccf28b767687afda0e69e79c37558d - conditions: os=darwin & cpu=arm64 - languageName: node - linkType: hard - -"@biomejs/cli-darwin-x64@npm:2.0.5": - version: 2.0.5 - resolution: "@biomejs/cli-darwin-x64@npm:2.0.5" - conditions: os=darwin & cpu=x64 - languageName: node - linkType: hard - -"@biomejs/cli-linux-arm64-musl@npm:2.0.5": - version: 2.0.5 - resolution: "@biomejs/cli-linux-arm64-musl@npm:2.0.5" - conditions: os=linux & cpu=arm64 & libc=musl - languageName: node - linkType: hard - -"@biomejs/cli-linux-arm64@npm:2.0.5": - version: 2.0.5 - resolution: "@biomejs/cli-linux-arm64@npm:2.0.5" - conditions: os=linux & cpu=arm64 & libc=glibc - languageName: node - linkType: hard - -"@biomejs/cli-linux-x64-musl@npm:2.0.5": - version: 2.0.5 - resolution: "@biomejs/cli-linux-x64-musl@npm:2.0.5" - checksum: 10c0/f70b57ca309e00398078f88b4873108626d01262fd8e28f4b8719a709e778ab45d28b4bd4277d059c79c3cf45aca5c020b482701e49a34598d202427057e658b - conditions: os=linux & cpu=x64 & libc=musl - languageName: node - linkType: hard - -"@biomejs/cli-linux-x64@npm:2.0.5": - version: 2.0.5 - resolution: "@biomejs/cli-linux-x64@npm:2.0.5" - conditions: os=linux & cpu=x64 & libc=glibc - languageName: node - linkType: hard - -"@biomejs/cli-win32-arm64@npm:2.0.5": - version: 2.0.5 - resolution: "@biomejs/cli-win32-arm64@npm:2.0.5" - conditions: os=win32 & cpu=arm64 - languageName: node - linkType: hard - -"@biomejs/cli-win32-x64@npm:2.0.5": - version: 2.0.5 - resolution: "@biomejs/cli-win32-x64@npm:2.0.5" - conditions: os=win32 & cpu=x64 - languageName: node - linkType: hard - "@cnakazawa/watch@npm:^1.0.3": version: 1.0.4 resolution: "@cnakazawa/watch@npm:1.0.4" @@ -28400,13 +28307,6 @@ __metadata: languageName: node linkType: hard -"@rollup/rollup-android-arm-eabi@npm:4.46.2": - version: 4.46.2 - resolution: "@rollup/rollup-android-arm-eabi@npm:4.46.2" - conditions: os=android & cpu=arm - languageName: node - linkType: hard - "@rollup/rollup-android-arm-eabi@npm:4.46.4": version: 4.46.4 resolution: "@rollup/rollup-android-arm-eabi@npm:4.46.4" @@ -28414,13 +28314,6 @@ __metadata: languageName: node linkType: hard -"@rollup/rollup-android-arm64@npm:4.46.2": - version: 4.46.2 - resolution: "@rollup/rollup-android-arm64@npm:4.46.2" - conditions: os=android & cpu=arm64 - languageName: node - linkType: hard - "@rollup/rollup-android-arm64@npm:4.46.4": version: 4.46.4 resolution: "@rollup/rollup-android-arm64@npm:4.46.4" @@ -28428,13 +28321,6 @@ __metadata: languageName: node linkType: hard -"@rollup/rollup-darwin-arm64@npm:4.46.2": - version: 4.46.2 - resolution: "@rollup/rollup-darwin-arm64@npm:4.46.2" - conditions: os=darwin & cpu=arm64 - languageName: node - linkType: hard - "@rollup/rollup-darwin-arm64@npm:4.46.4": version: 4.46.4 resolution: "@rollup/rollup-darwin-arm64@npm:4.46.4" @@ -28442,13 +28328,6 @@ __metadata: languageName: node linkType: hard -"@rollup/rollup-darwin-x64@npm:4.46.2": - version: 4.46.2 - resolution: "@rollup/rollup-darwin-x64@npm:4.46.2" - conditions: os=darwin & cpu=x64 - languageName: node - linkType: hard - "@rollup/rollup-darwin-x64@npm:4.46.4": version: 4.46.4 resolution: "@rollup/rollup-darwin-x64@npm:4.46.4" @@ -28456,13 +28335,6 @@ __metadata: languageName: node linkType: hard -"@rollup/rollup-freebsd-arm64@npm:4.46.2": - version: 4.46.2 - resolution: "@rollup/rollup-freebsd-arm64@npm:4.46.2" - conditions: os=freebsd & cpu=arm64 - languageName: node - linkType: hard - "@rollup/rollup-freebsd-arm64@npm:4.46.4": version: 4.46.4 resolution: "@rollup/rollup-freebsd-arm64@npm:4.46.4" @@ -28470,13 +28342,6 @@ __metadata: languageName: node linkType: hard -"@rollup/rollup-freebsd-x64@npm:4.46.2": - version: 4.46.2 - resolution: "@rollup/rollup-freebsd-x64@npm:4.46.2" - conditions: os=freebsd & cpu=x64 - languageName: node - linkType: hard - "@rollup/rollup-freebsd-x64@npm:4.46.4": version: 4.46.4 resolution: "@rollup/rollup-freebsd-x64@npm:4.46.4" @@ -28484,13 +28349,6 @@ __metadata: languageName: node linkType: hard -"@rollup/rollup-linux-arm-gnueabihf@npm:4.46.2": - version: 4.46.2 - resolution: "@rollup/rollup-linux-arm-gnueabihf@npm:4.46.2" - conditions: os=linux & cpu=arm & libc=glibc - languageName: node - linkType: hard - "@rollup/rollup-linux-arm-gnueabihf@npm:4.46.4": version: 4.46.4 resolution: "@rollup/rollup-linux-arm-gnueabihf@npm:4.46.4" @@ -28498,13 +28356,6 @@ __metadata: languageName: node linkType: hard -"@rollup/rollup-linux-arm-musleabihf@npm:4.46.2": - version: 4.46.2 - resolution: "@rollup/rollup-linux-arm-musleabihf@npm:4.46.2" - conditions: os=linux & cpu=arm & libc=musl - languageName: node - linkType: hard - "@rollup/rollup-linux-arm-musleabihf@npm:4.46.4": version: 4.46.4 resolution: "@rollup/rollup-linux-arm-musleabihf@npm:4.46.4" @@ -28512,13 +28363,6 @@ __metadata: languageName: node linkType: hard -"@rollup/rollup-linux-arm64-gnu@npm:4.46.2": - version: 4.46.2 - resolution: "@rollup/rollup-linux-arm64-gnu@npm:4.46.2" - conditions: os=linux & cpu=arm64 & libc=glibc - languageName: node - linkType: hard - "@rollup/rollup-linux-arm64-gnu@npm:4.46.4": version: 4.46.4 resolution: "@rollup/rollup-linux-arm64-gnu@npm:4.46.4" @@ -28526,13 +28370,6 @@ __metadata: languageName: node linkType: hard -"@rollup/rollup-linux-arm64-musl@npm:4.46.2": - version: 4.46.2 - resolution: "@rollup/rollup-linux-arm64-musl@npm:4.46.2" - conditions: os=linux & cpu=arm64 & libc=musl - languageName: node - linkType: hard - "@rollup/rollup-linux-arm64-musl@npm:4.46.4": version: 4.46.4 resolution: "@rollup/rollup-linux-arm64-musl@npm:4.46.4" @@ -28540,13 +28377,6 @@ __metadata: languageName: node linkType: hard -"@rollup/rollup-linux-loongarch64-gnu@npm:4.46.2": - version: 4.46.2 - resolution: "@rollup/rollup-linux-loongarch64-gnu@npm:4.46.2" - conditions: os=linux & cpu=loong64 & libc=glibc - languageName: node - linkType: hard - "@rollup/rollup-linux-loongarch64-gnu@npm:4.46.4": version: 4.46.4 resolution: "@rollup/rollup-linux-loongarch64-gnu@npm:4.46.4" @@ -28554,13 +28384,6 @@ __metadata: languageName: node linkType: hard -"@rollup/rollup-linux-ppc64-gnu@npm:4.46.2": - version: 4.46.2 - resolution: "@rollup/rollup-linux-ppc64-gnu@npm:4.46.2" - conditions: os=linux & cpu=ppc64 & libc=glibc - languageName: node - linkType: hard - "@rollup/rollup-linux-ppc64-gnu@npm:4.46.4": version: 4.46.4 resolution: "@rollup/rollup-linux-ppc64-gnu@npm:4.46.4" @@ -28568,13 +28391,6 @@ __metadata: languageName: node linkType: hard -"@rollup/rollup-linux-riscv64-gnu@npm:4.46.2": - version: 4.46.2 - resolution: "@rollup/rollup-linux-riscv64-gnu@npm:4.46.2" - conditions: os=linux & cpu=riscv64 & libc=glibc - languageName: node - linkType: hard - "@rollup/rollup-linux-riscv64-gnu@npm:4.46.4": version: 4.46.4 resolution: "@rollup/rollup-linux-riscv64-gnu@npm:4.46.4" @@ -28582,13 +28398,6 @@ __metadata: languageName: node linkType: hard -"@rollup/rollup-linux-riscv64-musl@npm:4.46.2": - version: 4.46.2 - resolution: "@rollup/rollup-linux-riscv64-musl@npm:4.46.2" - conditions: os=linux & cpu=riscv64 & libc=musl - languageName: node - linkType: hard - "@rollup/rollup-linux-riscv64-musl@npm:4.46.4": version: 4.46.4 resolution: "@rollup/rollup-linux-riscv64-musl@npm:4.46.4" @@ -28596,13 +28405,6 @@ __metadata: languageName: node linkType: hard -"@rollup/rollup-linux-s390x-gnu@npm:4.46.2": - version: 4.46.2 - resolution: "@rollup/rollup-linux-s390x-gnu@npm:4.46.2" - conditions: os=linux & cpu=s390x & libc=glibc - languageName: node - linkType: hard - "@rollup/rollup-linux-s390x-gnu@npm:4.46.4": version: 4.46.4 resolution: "@rollup/rollup-linux-s390x-gnu@npm:4.46.4" @@ -28610,13 +28412,6 @@ __metadata: languageName: node linkType: hard -"@rollup/rollup-linux-x64-gnu@npm:4.46.2": - version: 4.46.2 - resolution: "@rollup/rollup-linux-x64-gnu@npm:4.46.2" - conditions: os=linux & cpu=x64 & libc=glibc - languageName: node - linkType: hard - "@rollup/rollup-linux-x64-gnu@npm:4.46.4": version: 4.46.4 resolution: "@rollup/rollup-linux-x64-gnu@npm:4.46.4" @@ -28624,13 +28419,6 @@ __metadata: languageName: node linkType: hard -"@rollup/rollup-linux-x64-musl@npm:4.46.2": - version: 4.46.2 - resolution: "@rollup/rollup-linux-x64-musl@npm:4.46.2" - conditions: os=linux & cpu=x64 & libc=musl - languageName: node - linkType: hard - "@rollup/rollup-linux-x64-musl@npm:4.46.4": version: 4.46.4 resolution: "@rollup/rollup-linux-x64-musl@npm:4.46.4" @@ -28638,13 +28426,6 @@ __metadata: languageName: node linkType: hard -"@rollup/rollup-win32-arm64-msvc@npm:4.46.2": - version: 4.46.2 - resolution: "@rollup/rollup-win32-arm64-msvc@npm:4.46.2" - conditions: os=win32 & cpu=arm64 - languageName: node - linkType: hard - "@rollup/rollup-win32-arm64-msvc@npm:4.46.4": version: 4.46.4 resolution: "@rollup/rollup-win32-arm64-msvc@npm:4.46.4" @@ -28652,13 +28433,6 @@ __metadata: languageName: node linkType: hard -"@rollup/rollup-win32-ia32-msvc@npm:4.46.2": - version: 4.46.2 - resolution: "@rollup/rollup-win32-ia32-msvc@npm:4.46.2" - conditions: os=win32 & cpu=ia32 - languageName: node - linkType: hard - "@rollup/rollup-win32-ia32-msvc@npm:4.46.4": version: 4.46.4 resolution: "@rollup/rollup-win32-ia32-msvc@npm:4.46.4" @@ -28666,13 +28440,6 @@ __metadata: languageName: node linkType: hard -"@rollup/rollup-win32-x64-msvc@npm:4.46.2": - version: 4.46.2 - resolution: "@rollup/rollup-win32-x64-msvc@npm:4.46.2" - conditions: os=win32 & cpu=x64 - languageName: node - linkType: hard - "@rollup/rollup-win32-x64-msvc@npm:4.46.4": version: 4.46.4 resolution: "@rollup/rollup-win32-x64-msvc@npm:4.46.4" @@ -30997,9 +30764,6 @@ __metadata: version: 0.0.0-use.local resolution: "aws-sdk-js-v3@workspace:." dependencies: - "@biomejs/biome": "npm:2.0.5" - "@biomejs/cli-darwin-arm64": "npm:2.0.5" - "@biomejs/cli-linux-x64-musl": "npm:2.0.5" "@commitlint/cli": "npm:17.0.2" "@commitlint/config-conventional": "npm:17.0.2" "@cucumber/cucumber": "npm:8.5.3" @@ -31049,11 +30813,10 @@ __metadata: turbo: "npm:2.5.8" typescript: "npm:~5.8.3" verdaccio: "npm:5.25.0" - vite: "npm:7.0.6" + vite: "npm:^7.1.11" vitest: "npm:^3.2.4" webpack: "npm:5.101.0" webpack-cli: "npm:4.10.0" - xmldom: "npm:^0.6.0" yargs: "npm:17.5.1" languageName: unknown linkType: soft @@ -33965,7 +33728,7 @@ __metadata: languageName: node linkType: hard -"fdir@npm:^6.4.4, fdir@npm:^6.4.6": +"fdir@npm:^6.4.4": version: 6.4.6 resolution: "fdir@npm:6.4.6" peerDependencies: @@ -39748,81 +39511,6 @@ __metadata: languageName: node linkType: hard -"rollup@npm:^4.40.0": - version: 4.46.2 - resolution: "rollup@npm:4.46.2" - dependencies: - "@rollup/rollup-android-arm-eabi": "npm:4.46.2" - "@rollup/rollup-android-arm64": "npm:4.46.2" - "@rollup/rollup-darwin-arm64": "npm:4.46.2" - "@rollup/rollup-darwin-x64": "npm:4.46.2" - "@rollup/rollup-freebsd-arm64": "npm:4.46.2" - "@rollup/rollup-freebsd-x64": "npm:4.46.2" - "@rollup/rollup-linux-arm-gnueabihf": "npm:4.46.2" - "@rollup/rollup-linux-arm-musleabihf": "npm:4.46.2" - "@rollup/rollup-linux-arm64-gnu": "npm:4.46.2" - "@rollup/rollup-linux-arm64-musl": "npm:4.46.2" - "@rollup/rollup-linux-loongarch64-gnu": "npm:4.46.2" - "@rollup/rollup-linux-ppc64-gnu": "npm:4.46.2" - "@rollup/rollup-linux-riscv64-gnu": "npm:4.46.2" - "@rollup/rollup-linux-riscv64-musl": "npm:4.46.2" - "@rollup/rollup-linux-s390x-gnu": "npm:4.46.2" - "@rollup/rollup-linux-x64-gnu": "npm:4.46.2" - "@rollup/rollup-linux-x64-musl": "npm:4.46.2" - "@rollup/rollup-win32-arm64-msvc": "npm:4.46.2" - "@rollup/rollup-win32-ia32-msvc": "npm:4.46.2" - "@rollup/rollup-win32-x64-msvc": "npm:4.46.2" - "@types/estree": "npm:1.0.8" - fsevents: "npm:~2.3.2" - dependenciesMeta: - "@rollup/rollup-android-arm-eabi": - optional: true - "@rollup/rollup-android-arm64": - optional: true - "@rollup/rollup-darwin-arm64": - optional: true - "@rollup/rollup-darwin-x64": - optional: true - "@rollup/rollup-freebsd-arm64": - optional: true - "@rollup/rollup-freebsd-x64": - optional: true - "@rollup/rollup-linux-arm-gnueabihf": - optional: true - "@rollup/rollup-linux-arm-musleabihf": - optional: true - "@rollup/rollup-linux-arm64-gnu": - optional: true - "@rollup/rollup-linux-arm64-musl": - optional: true - "@rollup/rollup-linux-loongarch64-gnu": - optional: true - "@rollup/rollup-linux-ppc64-gnu": - optional: true - "@rollup/rollup-linux-riscv64-gnu": - optional: true - "@rollup/rollup-linux-riscv64-musl": - optional: true - "@rollup/rollup-linux-s390x-gnu": - optional: true - "@rollup/rollup-linux-x64-gnu": - optional: true - "@rollup/rollup-linux-x64-musl": - optional: true - "@rollup/rollup-win32-arm64-msvc": - optional: true - "@rollup/rollup-win32-ia32-msvc": - optional: true - "@rollup/rollup-win32-x64-msvc": - optional: true - fsevents: - optional: true - bin: - rollup: dist/bin/rollup - checksum: 10c0/f428497fe119fe7c4e34f1020d45ba13e99b94c9aa36958d88823d932b155c9df3d84f53166f3ee913ff68ea6c7599a9ab34861d88562ad9d8420f64ca5dad4c - languageName: node - linkType: hard - "rollup@npm:^4.43.0": version: 4.46.4 resolution: "rollup@npm:4.46.4" @@ -41047,6 +40735,16 @@ __metadata: languageName: node linkType: hard +"tinyglobby@npm:^0.2.15": + version: 0.2.15 + resolution: "tinyglobby@npm:0.2.15" + dependencies: + fdir: "npm:^6.5.0" + picomatch: "npm:^4.0.3" + checksum: 10c0/869c31490d0d88eedb8305d178d4c75e7463e820df5a9b9d388291daf93e8b1eb5de1dad1c1e139767e4269fe75f3b10d5009b2cc14db96ff98986920a186844 + languageName: node + linkType: hard + "tinypool@npm:^1.1.1": version: 1.1.1 resolution: "tinypool@npm:1.1.1" @@ -41911,16 +41609,16 @@ __metadata: languageName: node linkType: hard -"vite@npm:7.0.6": - version: 7.0.6 - resolution: "vite@npm:7.0.6" +"vite@npm:^5.0.0 || ^6.0.0 || ^7.0.0-0": + version: 7.1.3 + resolution: "vite@npm:7.1.3" dependencies: esbuild: "npm:^0.25.0" - fdir: "npm:^6.4.6" + fdir: "npm:^6.5.0" fsevents: "npm:~2.3.3" picomatch: "npm:^4.0.3" postcss: "npm:^8.5.6" - rollup: "npm:^4.40.0" + rollup: "npm:^4.43.0" tinyglobby: "npm:^0.2.14" peerDependencies: "@types/node": ^20.19.0 || >=22.12.0 @@ -41962,13 +41660,13 @@ __metadata: optional: true bin: vite: bin/vite.js - checksum: 10c0/3b14dfa661281b4843789884199ba2a9cca940a7666970036fe3fb1abff52b88e63e8be5ab419dd04d9f96c0415ee0f1e3ec8ebe357041648af7ccd8e348b6ad + checksum: 10c0/a0aa418beab80673dc9a3e9d1fa49472955d6ef9d41a4c9c6bd402953f411346f612864dae267adfb2bb8ceeb894482369316ffae5816c84fd45990e352b727d languageName: node linkType: hard -"vite@npm:^5.0.0 || ^6.0.0 || ^7.0.0-0": - version: 7.1.3 - resolution: "vite@npm:7.1.3" +"vite@npm:^7.1.11": + version: 7.1.11 + resolution: "vite@npm:7.1.11" dependencies: esbuild: "npm:^0.25.0" fdir: "npm:^6.5.0" @@ -41976,7 +41674,7 @@ __metadata: picomatch: "npm:^4.0.3" postcss: "npm:^8.5.6" rollup: "npm:^4.43.0" - tinyglobby: "npm:^0.2.14" + tinyglobby: "npm:^0.2.15" peerDependencies: "@types/node": ^20.19.0 || >=22.12.0 jiti: ">=1.21.0" @@ -42017,7 +41715,7 @@ __metadata: optional: true bin: vite: bin/vite.js - checksum: 10c0/a0aa418beab80673dc9a3e9d1fa49472955d6ef9d41a4c9c6bd402953f411346f612864dae267adfb2bb8ceeb894482369316ffae5816c84fd45990e352b727d + checksum: 10c0/c4aa7f47b1fb07f734ed6f4f605d73e5acf7ff9754d75b4adbfbdddf0e520413019834620c1f7b4a207bce7e1d20a2636c584db2b1b17f5a3ba2cd23d47e50ab languageName: node linkType: hard @@ -42464,13 +42162,6 @@ __metadata: languageName: node linkType: hard -"xmldom@npm:^0.6.0": - version: 0.6.0 - resolution: "xmldom@npm:0.6.0" - checksum: 10c0/93cbb4854f73f431a402e7942baa87a59e8445fd0b4ae6bf6af3a1007809e849da8ac70bbe1509242212bce5d19e30b55ea282cbd9d87281701d1bdc13b74623 - languageName: node - linkType: hard - "xtend@npm:^4.0.0, xtend@npm:^4.0.2, xtend@npm:~4.0.0, xtend@npm:~4.0.1": version: 4.0.2 resolution: "xtend@npm:4.0.2"