mirror of
https://github.com/transloadit/uppy.git
synced 2026-07-31 22:11:28 +00:00
build(deps-dev): bump vite from 7.0.6 to 7.0.7 (#5962)
Bumps [vite](https://github.com/vitejs/vite/tree/HEAD/packages/vite) from 7.0.6 to 7.0.7. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/vitejs/vite/releases">vite's releases</a>.</em></p> <blockquote> <h2>v7.0.7</h2> <p>Please refer to <a href="https://github.com/vitejs/vite/blob/v7.0.7/packages/vite/CHANGELOG.md">CHANGELOG.md</a> for details.</p> </blockquote> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/vitejs/vite/blob/v7.0.7/packages/vite/CHANGELOG.md">vite's changelog</a>.</em></p> <blockquote> <h2><!-- raw HTML omitted --><a href="https://github.com/vitejs/vite/compare/v7.0.6...v7.0.7">7.0.7</a> (2025-09-08)<!-- raw HTML omitted --></h2> <h3>Bug Fixes</h3> <ul> <li>apply <code>fs.strict</code> check to HTML files (<a href="https://redirect.github.com/vitejs/vite/issues/20736">#20736</a>) (<a href="6f01ff4fe0">6f01ff4</a>)</li> <li>upgrade sirv to 3.0.2 (<a href="https://redirect.github.com/vitejs/vite/issues/20735">#20735</a>) (<a href="63e2a5d232">63e2a5d</a>)</li> </ul> <h3>Tests</h3> <ul> <li>detect ts support via <code>process.features</code> (<a href="https://redirect.github.com/vitejs/vite/issues/20544">#20544</a>) (<a href="45fdb16581">45fdb16</a>)</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="f88a1c0999"><code>f88a1c0</code></a> release: v7.0.7</li> <li><a href="45fdb16581"><code>45fdb16</code></a> test: detect ts support via <code>process.features</code> (<a href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/20544">#20544</a>)</li> <li><a href="63e2a5d232"><code>63e2a5d</code></a> fix: upgrade sirv to 3.0.2 (<a href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/20735">#20735</a>)</li> <li><a href="6f01ff4fe0"><code>6f01ff4</code></a> fix: apply <code>fs.strict</code> check to HTML files (<a href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/20736">#20736</a>)</li> <li>See full diff in <a href="https://github.com/vitejs/vite/commits/v7.0.7/packages/vite">compare view</a></li> </ul> </details> <br /> [](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`. [//]: # (dependabot-automerge-start) [//]: # (dependabot-automerge-end) --- <details> <summary>Dependabot commands and options</summary> <br /> You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@dependabot show <dependency name> ignore conditions` will show all of the ignore conditions of the specified dependency - `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself) You can disable automated security fix PRs for this repo from the [Security Alerts page](https://github.com/transloadit/uppy/network/alerts). </details> Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
This commit is contained in:
parent
4b6a76cbf4
commit
fc3e483fcb
12 changed files with 276 additions and 29 deletions
|
|
@ -18,7 +18,7 @@
|
|||
"express": "^4.19.2",
|
||||
"express-session": "^1.17.3",
|
||||
"npm-run-all": "^4.1.5",
|
||||
"vite": "^7.0.6"
|
||||
"vite": "^7.0.7"
|
||||
},
|
||||
"private": true,
|
||||
"engines": {
|
||||
|
|
|
|||
|
|
@ -22,7 +22,7 @@
|
|||
"express": "^4.19.2",
|
||||
"express-session": "^1.15.6",
|
||||
"npm-run-all": "^4.1.2",
|
||||
"vite": "^7.0.6"
|
||||
"vite": "^7.0.7"
|
||||
},
|
||||
"scripts": {
|
||||
"start": "npm-run-all --parallel start:server start:client",
|
||||
|
|
|
|||
|
|
@ -12,7 +12,7 @@
|
|||
"devDependencies": {
|
||||
"dotenv": "^16.0.1",
|
||||
"express": "^4.19.2",
|
||||
"vite": "^7.0.6"
|
||||
"vite": "^7.0.7"
|
||||
},
|
||||
"private": true,
|
||||
"scripts": {
|
||||
|
|
|
|||
|
|
@ -27,7 +27,7 @@
|
|||
"@vitest/browser": "^3.2.4",
|
||||
"playwright": "1.54.1",
|
||||
"typescript": "^5.7.3",
|
||||
"vite": "^7.0.6",
|
||||
"vite": "^7.0.7",
|
||||
"vitest": "^3.2.4",
|
||||
"vitest-browser-react": "^1.0.0"
|
||||
}
|
||||
|
|
|
|||
|
|
@ -4,7 +4,7 @@
|
|||
"type": "module",
|
||||
"devDependencies": {
|
||||
"npm-run-all": "^4.1.5",
|
||||
"vite": "^7.0.6"
|
||||
"vite": "^7.0.7"
|
||||
},
|
||||
"dependencies": {
|
||||
"@uppy/core": "workspace:*",
|
||||
|
|
|
|||
|
|
@ -25,7 +25,7 @@
|
|||
"@vitest/browser": "^3.2.4",
|
||||
"playwright": "1.54.1",
|
||||
"tailwindcss": "^4.0.0",
|
||||
"vite": "^7.0.6",
|
||||
"vite": "^7.0.7",
|
||||
"vitest": "^3.2.4",
|
||||
"vitest-browser-vue": "^1.0.0"
|
||||
}
|
||||
|
|
|
|||
|
|
@ -11,7 +11,7 @@
|
|||
},
|
||||
"devDependencies": {
|
||||
"npm-run-all": "^4.1.5",
|
||||
"vite": "^7.0.6"
|
||||
"vite": "^7.0.7"
|
||||
},
|
||||
"private": true,
|
||||
"scripts": {
|
||||
|
|
|
|||
|
|
@ -11,7 +11,7 @@
|
|||
},
|
||||
"devDependencies": {
|
||||
"npm-run-all": "^4.1.3",
|
||||
"vite": "^7.0.6"
|
||||
"vite": "^7.0.7"
|
||||
},
|
||||
"private": true,
|
||||
"scripts": {
|
||||
|
|
|
|||
|
|
@ -10,7 +10,7 @@
|
|||
},
|
||||
"devDependencies": {
|
||||
"npm-run-all": "^4.1.3",
|
||||
"vite": "^7.0.6"
|
||||
"vite": "^7.0.7"
|
||||
},
|
||||
"private": true,
|
||||
"scripts": {
|
||||
|
|
|
|||
|
|
@ -10,7 +10,7 @@
|
|||
},
|
||||
"devDependencies": {
|
||||
"npm-run-all": "^4.1.3",
|
||||
"vite": "^7.0.6"
|
||||
"vite": "^7.0.7"
|
||||
},
|
||||
"private": true,
|
||||
"scripts": {
|
||||
|
|
|
|||
|
|
@ -10,7 +10,7 @@
|
|||
"@uppy/companion": "workspace:^"
|
||||
},
|
||||
"devDependencies": {
|
||||
"vite": "^7.0.6"
|
||||
"vite": "^7.0.7"
|
||||
},
|
||||
"private": true,
|
||||
"type": "module",
|
||||
|
|
|
|||
283
yarn.lock
283
yarn.lock
|
|
@ -6263,6 +6263,13 @@ __metadata:
|
|||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@rollup/rollup-android-arm-eabi@npm:4.50.1":
|
||||
version: 4.50.1
|
||||
resolution: "@rollup/rollup-android-arm-eabi@npm:4.50.1"
|
||||
conditions: os=android & cpu=arm
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@rollup/rollup-android-arm64@npm:4.34.8":
|
||||
version: 4.34.8
|
||||
resolution: "@rollup/rollup-android-arm64@npm:4.34.8"
|
||||
|
|
@ -6291,6 +6298,13 @@ __metadata:
|
|||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@rollup/rollup-android-arm64@npm:4.50.1":
|
||||
version: 4.50.1
|
||||
resolution: "@rollup/rollup-android-arm64@npm:4.50.1"
|
||||
conditions: os=android & cpu=arm64
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@rollup/rollup-darwin-arm64@npm:4.34.8":
|
||||
version: 4.34.8
|
||||
resolution: "@rollup/rollup-darwin-arm64@npm:4.34.8"
|
||||
|
|
@ -6319,6 +6333,13 @@ __metadata:
|
|||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@rollup/rollup-darwin-arm64@npm:4.50.1":
|
||||
version: 4.50.1
|
||||
resolution: "@rollup/rollup-darwin-arm64@npm:4.50.1"
|
||||
conditions: os=darwin & cpu=arm64
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@rollup/rollup-darwin-x64@npm:4.34.8":
|
||||
version: 4.34.8
|
||||
resolution: "@rollup/rollup-darwin-x64@npm:4.34.8"
|
||||
|
|
@ -6347,6 +6368,13 @@ __metadata:
|
|||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@rollup/rollup-darwin-x64@npm:4.50.1":
|
||||
version: 4.50.1
|
||||
resolution: "@rollup/rollup-darwin-x64@npm:4.50.1"
|
||||
conditions: os=darwin & cpu=x64
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@rollup/rollup-freebsd-arm64@npm:4.34.8":
|
||||
version: 4.34.8
|
||||
resolution: "@rollup/rollup-freebsd-arm64@npm:4.34.8"
|
||||
|
|
@ -6375,6 +6403,13 @@ __metadata:
|
|||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@rollup/rollup-freebsd-arm64@npm:4.50.1":
|
||||
version: 4.50.1
|
||||
resolution: "@rollup/rollup-freebsd-arm64@npm:4.50.1"
|
||||
conditions: os=freebsd & cpu=arm64
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@rollup/rollup-freebsd-x64@npm:4.34.8":
|
||||
version: 4.34.8
|
||||
resolution: "@rollup/rollup-freebsd-x64@npm:4.34.8"
|
||||
|
|
@ -6403,6 +6438,13 @@ __metadata:
|
|||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@rollup/rollup-freebsd-x64@npm:4.50.1":
|
||||
version: 4.50.1
|
||||
resolution: "@rollup/rollup-freebsd-x64@npm:4.50.1"
|
||||
conditions: os=freebsd & cpu=x64
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@rollup/rollup-linux-arm-gnueabihf@npm:4.34.8":
|
||||
version: 4.34.8
|
||||
resolution: "@rollup/rollup-linux-arm-gnueabihf@npm:4.34.8"
|
||||
|
|
@ -6431,6 +6473,13 @@ __metadata:
|
|||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@rollup/rollup-linux-arm-gnueabihf@npm:4.50.1":
|
||||
version: 4.50.1
|
||||
resolution: "@rollup/rollup-linux-arm-gnueabihf@npm:4.50.1"
|
||||
conditions: os=linux & cpu=arm & libc=glibc
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@rollup/rollup-linux-arm-musleabihf@npm:4.34.8":
|
||||
version: 4.34.8
|
||||
resolution: "@rollup/rollup-linux-arm-musleabihf@npm:4.34.8"
|
||||
|
|
@ -6459,6 +6508,13 @@ __metadata:
|
|||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@rollup/rollup-linux-arm-musleabihf@npm:4.50.1":
|
||||
version: 4.50.1
|
||||
resolution: "@rollup/rollup-linux-arm-musleabihf@npm:4.50.1"
|
||||
conditions: os=linux & cpu=arm & libc=musl
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@rollup/rollup-linux-arm64-gnu@npm:4.34.8":
|
||||
version: 4.34.8
|
||||
resolution: "@rollup/rollup-linux-arm64-gnu@npm:4.34.8"
|
||||
|
|
@ -6487,6 +6543,13 @@ __metadata:
|
|||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@rollup/rollup-linux-arm64-gnu@npm:4.50.1":
|
||||
version: 4.50.1
|
||||
resolution: "@rollup/rollup-linux-arm64-gnu@npm:4.50.1"
|
||||
conditions: os=linux & cpu=arm64 & libc=glibc
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@rollup/rollup-linux-arm64-musl@npm:4.34.8":
|
||||
version: 4.34.8
|
||||
resolution: "@rollup/rollup-linux-arm64-musl@npm:4.34.8"
|
||||
|
|
@ -6515,6 +6578,13 @@ __metadata:
|
|||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@rollup/rollup-linux-arm64-musl@npm:4.50.1":
|
||||
version: 4.50.1
|
||||
resolution: "@rollup/rollup-linux-arm64-musl@npm:4.50.1"
|
||||
conditions: os=linux & cpu=arm64 & libc=musl
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@rollup/rollup-linux-loongarch64-gnu@npm:4.34.8":
|
||||
version: 4.34.8
|
||||
resolution: "@rollup/rollup-linux-loongarch64-gnu@npm:4.34.8"
|
||||
|
|
@ -6543,6 +6613,13 @@ __metadata:
|
|||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@rollup/rollup-linux-loongarch64-gnu@npm:4.50.1":
|
||||
version: 4.50.1
|
||||
resolution: "@rollup/rollup-linux-loongarch64-gnu@npm:4.50.1"
|
||||
conditions: os=linux & cpu=loong64 & libc=glibc
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@rollup/rollup-linux-powerpc64le-gnu@npm:4.34.8":
|
||||
version: 4.34.8
|
||||
resolution: "@rollup/rollup-linux-powerpc64le-gnu@npm:4.34.8"
|
||||
|
|
@ -6571,6 +6648,13 @@ __metadata:
|
|||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@rollup/rollup-linux-ppc64-gnu@npm:4.50.1":
|
||||
version: 4.50.1
|
||||
resolution: "@rollup/rollup-linux-ppc64-gnu@npm:4.50.1"
|
||||
conditions: os=linux & cpu=ppc64 & libc=glibc
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@rollup/rollup-linux-riscv64-gnu@npm:4.34.8":
|
||||
version: 4.34.8
|
||||
resolution: "@rollup/rollup-linux-riscv64-gnu@npm:4.34.8"
|
||||
|
|
@ -6599,6 +6683,13 @@ __metadata:
|
|||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@rollup/rollup-linux-riscv64-gnu@npm:4.50.1":
|
||||
version: 4.50.1
|
||||
resolution: "@rollup/rollup-linux-riscv64-gnu@npm:4.50.1"
|
||||
conditions: os=linux & cpu=riscv64 & libc=glibc
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@rollup/rollup-linux-riscv64-musl@npm:4.39.0":
|
||||
version: 4.39.0
|
||||
resolution: "@rollup/rollup-linux-riscv64-musl@npm:4.39.0"
|
||||
|
|
@ -6620,6 +6711,13 @@ __metadata:
|
|||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@rollup/rollup-linux-riscv64-musl@npm:4.50.1":
|
||||
version: 4.50.1
|
||||
resolution: "@rollup/rollup-linux-riscv64-musl@npm:4.50.1"
|
||||
conditions: os=linux & cpu=riscv64 & libc=musl
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@rollup/rollup-linux-s390x-gnu@npm:4.34.8":
|
||||
version: 4.34.8
|
||||
resolution: "@rollup/rollup-linux-s390x-gnu@npm:4.34.8"
|
||||
|
|
@ -6648,6 +6746,13 @@ __metadata:
|
|||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@rollup/rollup-linux-s390x-gnu@npm:4.50.1":
|
||||
version: 4.50.1
|
||||
resolution: "@rollup/rollup-linux-s390x-gnu@npm:4.50.1"
|
||||
conditions: os=linux & cpu=s390x & libc=glibc
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@rollup/rollup-linux-x64-gnu@npm:4.34.8":
|
||||
version: 4.34.8
|
||||
resolution: "@rollup/rollup-linux-x64-gnu@npm:4.34.8"
|
||||
|
|
@ -6676,6 +6781,13 @@ __metadata:
|
|||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@rollup/rollup-linux-x64-gnu@npm:4.50.1":
|
||||
version: 4.50.1
|
||||
resolution: "@rollup/rollup-linux-x64-gnu@npm:4.50.1"
|
||||
conditions: os=linux & cpu=x64 & libc=glibc
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@rollup/rollup-linux-x64-musl@npm:4.34.8":
|
||||
version: 4.34.8
|
||||
resolution: "@rollup/rollup-linux-x64-musl@npm:4.34.8"
|
||||
|
|
@ -6704,6 +6816,20 @@ __metadata:
|
|||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@rollup/rollup-linux-x64-musl@npm:4.50.1":
|
||||
version: 4.50.1
|
||||
resolution: "@rollup/rollup-linux-x64-musl@npm:4.50.1"
|
||||
conditions: os=linux & cpu=x64 & libc=musl
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@rollup/rollup-openharmony-arm64@npm:4.50.1":
|
||||
version: 4.50.1
|
||||
resolution: "@rollup/rollup-openharmony-arm64@npm:4.50.1"
|
||||
conditions: os=openharmony & cpu=arm64
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@rollup/rollup-win32-arm64-msvc@npm:4.34.8":
|
||||
version: 4.34.8
|
||||
resolution: "@rollup/rollup-win32-arm64-msvc@npm:4.34.8"
|
||||
|
|
@ -6732,6 +6858,13 @@ __metadata:
|
|||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@rollup/rollup-win32-arm64-msvc@npm:4.50.1":
|
||||
version: 4.50.1
|
||||
resolution: "@rollup/rollup-win32-arm64-msvc@npm:4.50.1"
|
||||
conditions: os=win32 & cpu=arm64
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@rollup/rollup-win32-ia32-msvc@npm:4.34.8":
|
||||
version: 4.34.8
|
||||
resolution: "@rollup/rollup-win32-ia32-msvc@npm:4.34.8"
|
||||
|
|
@ -6760,6 +6893,13 @@ __metadata:
|
|||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@rollup/rollup-win32-ia32-msvc@npm:4.50.1":
|
||||
version: 4.50.1
|
||||
resolution: "@rollup/rollup-win32-ia32-msvc@npm:4.50.1"
|
||||
conditions: os=win32 & cpu=ia32
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@rollup/rollup-win32-x64-msvc@npm:4.34.8":
|
||||
version: 4.34.8
|
||||
resolution: "@rollup/rollup-win32-x64-msvc@npm:4.34.8"
|
||||
|
|
@ -6788,6 +6928,13 @@ __metadata:
|
|||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@rollup/rollup-win32-x64-msvc@npm:4.50.1":
|
||||
version: 4.50.1
|
||||
resolution: "@rollup/rollup-win32-x64-msvc@npm:4.50.1"
|
||||
conditions: os=win32 & cpu=x64
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@rollup/wasm-node@npm:^4.24.0":
|
||||
version: 4.39.0
|
||||
resolution: "@rollup/wasm-node@npm:4.39.0"
|
||||
|
|
@ -9047,7 +9194,7 @@ __metadata:
|
|||
resolution: "@uppy-dev/dev@workspace:private/dev"
|
||||
dependencies:
|
||||
"@uppy/companion": "workspace:^"
|
||||
vite: "npm:^7.0.6"
|
||||
vite: "npm:^7.0.7"
|
||||
languageName: unknown
|
||||
linkType: soft
|
||||
|
||||
|
|
@ -13825,7 +13972,7 @@ __metadata:
|
|||
express: "npm:^4.19.2"
|
||||
express-session: "npm:^1.17.3"
|
||||
npm-run-all: "npm:^4.1.5"
|
||||
vite: "npm:^7.0.6"
|
||||
vite: "npm:^7.0.7"
|
||||
languageName: unknown
|
||||
linkType: soft
|
||||
|
||||
|
|
@ -13877,7 +14024,7 @@ __metadata:
|
|||
express-session: "npm:^1.15.6"
|
||||
npm-run-all: "npm:^4.1.2"
|
||||
preact: "npm:^10.5.13"
|
||||
vite: "npm:^7.0.6"
|
||||
vite: "npm:^7.0.7"
|
||||
languageName: unknown
|
||||
linkType: soft
|
||||
|
||||
|
|
@ -13892,7 +14039,7 @@ __metadata:
|
|||
cors: "npm:^2.8.5"
|
||||
dotenv: "npm:^16.0.1"
|
||||
express: "npm:^4.19.2"
|
||||
vite: "npm:^7.0.6"
|
||||
vite: "npm:^7.0.7"
|
||||
languageName: unknown
|
||||
linkType: soft
|
||||
|
||||
|
|
@ -13928,7 +14075,7 @@ __metadata:
|
|||
react-dom: "npm:^19.0.0"
|
||||
tailwindcss: "npm:^4.0.9"
|
||||
typescript: "npm:^5.7.3"
|
||||
vite: "npm:^7.0.6"
|
||||
vite: "npm:^7.0.7"
|
||||
vitest: "npm:^3.2.4"
|
||||
vitest-browser-react: "npm:^1.0.0"
|
||||
languageName: unknown
|
||||
|
|
@ -13975,7 +14122,7 @@ __metadata:
|
|||
express: "npm:^4.19.2"
|
||||
he: "npm:^1.2.0"
|
||||
npm-run-all: "npm:^4.1.5"
|
||||
vite: "npm:^7.0.6"
|
||||
vite: "npm:^7.0.7"
|
||||
languageName: unknown
|
||||
linkType: soft
|
||||
|
||||
|
|
@ -13995,7 +14142,7 @@ __metadata:
|
|||
"@vitest/browser": "npm:^3.2.4"
|
||||
playwright: "npm:1.54.1"
|
||||
tailwindcss: "npm:^4.0.0"
|
||||
vite: "npm:^7.0.6"
|
||||
vite: "npm:^7.0.7"
|
||||
vitest: "npm:^3.2.4"
|
||||
vitest-browser-vue: "npm:^1.0.0"
|
||||
vue: "npm:^3.5.14"
|
||||
|
|
@ -14013,7 +14160,7 @@ __metadata:
|
|||
express: "npm:^4.19.2"
|
||||
multer: "npm:^2.0.2"
|
||||
npm-run-all: "npm:^4.1.5"
|
||||
vite: "npm:^7.0.6"
|
||||
vite: "npm:^7.0.7"
|
||||
languageName: unknown
|
||||
linkType: soft
|
||||
|
||||
|
|
@ -14027,7 +14174,7 @@ __metadata:
|
|||
"@uppy/xhr-upload": "workspace:*"
|
||||
formidable: "npm:^3.2.4"
|
||||
npm-run-all: "npm:^4.1.3"
|
||||
vite: "npm:^7.0.6"
|
||||
vite: "npm:^7.0.7"
|
||||
languageName: unknown
|
||||
linkType: soft
|
||||
|
||||
|
|
@ -14040,7 +14187,7 @@ __metadata:
|
|||
"@uppy/webcam": "workspace:*"
|
||||
"@uppy/xhr-upload": "workspace:*"
|
||||
npm-run-all: "npm:^4.1.3"
|
||||
vite: "npm:^7.0.6"
|
||||
vite: "npm:^7.0.7"
|
||||
languageName: unknown
|
||||
linkType: soft
|
||||
|
||||
|
|
@ -14053,7 +14200,7 @@ __metadata:
|
|||
"@uppy/webcam": "workspace:*"
|
||||
"@uppy/xhr-upload": "workspace:*"
|
||||
npm-run-all: "npm:^4.1.3"
|
||||
vite: "npm:^7.0.6"
|
||||
vite: "npm:^7.0.7"
|
||||
languageName: unknown
|
||||
linkType: soft
|
||||
|
||||
|
|
@ -14398,6 +14545,18 @@ __metadata:
|
|||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"fdir@npm:^6.5.0":
|
||||
version: 6.5.0
|
||||
resolution: "fdir@npm:6.5.0"
|
||||
peerDependencies:
|
||||
picomatch: ^3 || ^4
|
||||
peerDependenciesMeta:
|
||||
picomatch:
|
||||
optional: true
|
||||
checksum: 10/14ca1c9f0a0e8f4f2e9bf4e8551065a164a09545dae548c12a18d238b72e51e5a7b39bd8e5494b56463a0877672d0a6c1ef62c6fa0677db1b0c847773be939b1
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"fetch-blob@npm:^3.1.2, fetch-blob@npm:^3.1.4":
|
||||
version: 3.2.0
|
||||
resolution: "fetch-blob@npm:3.2.0"
|
||||
|
|
@ -21632,6 +21791,84 @@ __metadata:
|
|||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"rollup@npm:^4.43.0":
|
||||
version: 4.50.1
|
||||
resolution: "rollup@npm:4.50.1"
|
||||
dependencies:
|
||||
"@rollup/rollup-android-arm-eabi": "npm:4.50.1"
|
||||
"@rollup/rollup-android-arm64": "npm:4.50.1"
|
||||
"@rollup/rollup-darwin-arm64": "npm:4.50.1"
|
||||
"@rollup/rollup-darwin-x64": "npm:4.50.1"
|
||||
"@rollup/rollup-freebsd-arm64": "npm:4.50.1"
|
||||
"@rollup/rollup-freebsd-x64": "npm:4.50.1"
|
||||
"@rollup/rollup-linux-arm-gnueabihf": "npm:4.50.1"
|
||||
"@rollup/rollup-linux-arm-musleabihf": "npm:4.50.1"
|
||||
"@rollup/rollup-linux-arm64-gnu": "npm:4.50.1"
|
||||
"@rollup/rollup-linux-arm64-musl": "npm:4.50.1"
|
||||
"@rollup/rollup-linux-loongarch64-gnu": "npm:4.50.1"
|
||||
"@rollup/rollup-linux-ppc64-gnu": "npm:4.50.1"
|
||||
"@rollup/rollup-linux-riscv64-gnu": "npm:4.50.1"
|
||||
"@rollup/rollup-linux-riscv64-musl": "npm:4.50.1"
|
||||
"@rollup/rollup-linux-s390x-gnu": "npm:4.50.1"
|
||||
"@rollup/rollup-linux-x64-gnu": "npm:4.50.1"
|
||||
"@rollup/rollup-linux-x64-musl": "npm:4.50.1"
|
||||
"@rollup/rollup-openharmony-arm64": "npm:4.50.1"
|
||||
"@rollup/rollup-win32-arm64-msvc": "npm:4.50.1"
|
||||
"@rollup/rollup-win32-ia32-msvc": "npm:4.50.1"
|
||||
"@rollup/rollup-win32-x64-msvc": "npm:4.50.1"
|
||||
"@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-openharmony-arm64":
|
||||
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: 10/99f47dc64ea5bc15056a9af49a10a287ec1c49550563ce7827d85d2c03a4a46e42ad2fd48f91b647193e849a22e01a66a782c8311bcefd4246932f02cc437e74
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"rrweb-cssom@npm:^0.8.0":
|
||||
version: 0.8.0
|
||||
resolution: "rrweb-cssom@npm:0.8.0"
|
||||
|
|
@ -23211,6 +23448,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: 10/d72bd826a8b0fa5fa3929e7fe5ba48fceb2ae495df3a231b6c5408cd7d8c00b58ab5a9c2a76ba56a62ee9b5e083626f1f33599734bed1ffc4b792406408f0ca2
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"tinypool@npm:^1.1.1":
|
||||
version: 1.1.1
|
||||
resolution: "tinypool@npm:1.1.1"
|
||||
|
|
@ -24320,17 +24567,17 @@ __metadata:
|
|||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"vite@npm:^7.0.6":
|
||||
version: 7.0.6
|
||||
resolution: "vite@npm:7.0.6"
|
||||
"vite@npm:^7.0.7":
|
||||
version: 7.1.5
|
||||
resolution: "vite@npm:7.1.5"
|
||||
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"
|
||||
tinyglobby: "npm:^0.2.14"
|
||||
rollup: "npm:^4.43.0"
|
||||
tinyglobby: "npm:^0.2.15"
|
||||
peerDependencies:
|
||||
"@types/node": ^20.19.0 || >=22.12.0
|
||||
jiti: ">=1.21.0"
|
||||
|
|
@ -24371,7 +24618,7 @@ __metadata:
|
|||
optional: true
|
||||
bin:
|
||||
vite: bin/vite.js
|
||||
checksum: 10/729ddefd6710b0b5aa38a62a537f3dc28577edaf57958c815a1964f1e348a1c7cb17ce8f708675668d7e80d95fb62f7c433b718fe12d80dd8a756ccec519bc2a
|
||||
checksum: 10/59edeef7e98757a668b2ad8a1731a5657fa83e22a165a36b7359225ea98a9be39b2f486710c0cf5085edb85daee7c8b6b6b0bd85d0ef32a1aa84aef71aabd0f0
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue