Compare commits

..

20 Commits

Author SHA1 Message Date
github-actions[bot] f5ff24c1fd chore(build): update dist 2024-09-21 04:38:20 +00:00
renovate[bot] a0b1655bf4
chore(deps): pin dependencies 2024-09-21 04:37:10 +00:00
Amin Yahyaabadi 88f2cb4b22
Merge pull request #301 from aminya/renovate/pnpm-9.x [skip ci] 2024-09-20 19:58:03 -07:00
renovate[bot] 52acadc64a
chore(deps): update pnpm to v9.11.0 2024-09-20 19:38:53 -07:00
Amin Yahyaabadi ff4c8289ac
Merge pull request #300 from aminya/renovate/devdependencies [skip ci] 2024-09-20 19:35:22 -07:00
Amin Yahyaabadi d511d1fb52
chore(renovate): pin the ignored packages [skip ci] 2024-09-20 19:31:25 -07:00
github-actions[bot] ea49034e9a chore(build): update dist 2024-09-21 02:22:59 +00:00
Amin Yahyaabadi b2a7ceb1aa
ci: check out the branch in the build job 2024-09-20 19:21:33 -07:00
Amin Yahyaabadi efdf36d38c
ci: commit the dist after the build 2024-09-20 19:18:02 -07:00
renovate[bot] 48bca6ce1e
chore(deps): update devdependencies 2024-09-21 01:05:27 +00:00
Amin Yahyaabadi 898e68dbc3
chore: add ignored deps for renovate [skip ci] 2024-09-20 18:04:45 -07:00
Amin Yahyaabadi 45b558c2a6
chore: use matchPackageNames for renovate [skip ci] 2024-09-20 18:01:48 -07:00
Amin Yahyaabadi 1034f25a9b
Merge pull request #286 from aminya/renovate/devdependencies [skip ci]
fix(deps): update dependencies
2024-09-20 17:58:08 -07:00
Amin Yahyaabadi 9d702fc974
fix: downgrade execa to 7 2024-09-20 16:44:43 -07:00
Amin Yahyaabadi 77859ef9f3
fix: disable unsafe-math optimizations 2024-09-20 16:24:50 -07:00
Amin Yahyaabadi 32a534716d
fix: downgrade numerous + update @types/node 2024-09-20 16:17:38 -07:00
Amin Yahyaabadi 72f96bf6fe
fix: polyfil timers/promise 2024-09-20 16:00:03 -07:00
Amin Yahyaabadi 654b790525
fix: update execa to 9.4.0 2024-09-20 15:48:10 -07:00
Amin Yahyaabadi be3c5a5688
fix: use setup-python patch for smaller binaries 2024-09-20 15:43:39 -07:00
Amin Yahyaabadi f6458ee4e1
fix: fix the build + downgrade eslint to 8 2024-09-20 15:29:42 -07:00
35 changed files with 205 additions and 303 deletions

View File

@ -8,14 +8,18 @@
"matchUpdateTypes": ["major", "minor", "patch", "pin", "digest", "lockFileMaintenance", "rollback", "bump"],
"groupName": "devDependencies",
"semanticCommitType": "chore",
"automerge": true,
"ignoreDeps": ["eslint"]
"automerge": true
},
{
"matchDepTypes": ["dependencies"],
"matchUpdateTypes": ["major", "minor", "patch", "pin", "digest", "lockFileMaintenance", "rollback", "bump"],
"groupName": "dependencies",
"semanticCommitType": "fix"
},
{
"matchDatasources": ["npm"],
"matchPackageNames": ["eslint", "numerous", "execa"],
"rangeStrategy": "pin"
}
]
}

View File

@ -29,9 +29,11 @@ jobs:
node:
- 22.6.0
pnpm:
- 9.10.0
- 9.11.0
steps:
- uses: actions/checkout@v4
with:
ref: ${{ github.head_ref || github.ref_name }}
- name: Setup Node
uses: actions/setup-node@v4
@ -56,13 +58,17 @@ jobs:
run: |
pnpm run test.lint
- name: Validate Dist
- name: Update Dist
run: |
if [ "$(git diff --ignore-space-at-eol --text dist/ | wc -l)" -gt "0" ]; then
echo "Detected uncommitted changes after build. See status below:"
git diff --ignore-space-at-eol --text dist/ ':(exclude)*.js.map'
exit 1
git config user.name "github-actions[bot]"
git config user.email "41898282+github-actions[bot]@users.noreply.github.com"
git add dist/
git commit -m "chore(build): update dist"
git push
fi
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Upload Dist
uses: actions/upload-artifact@v3
@ -91,7 +97,7 @@ jobs:
node:
- 22
pnpm:
- 9.10.0
- 9.11.0
steps:
- uses: actions/checkout@v4
@ -158,7 +164,7 @@ jobs:
node:
- 22
pnpm:
- 9.10.0
- 9.11.0
steps:
- uses: actions/checkout@v4
with:
@ -239,7 +245,7 @@ jobs:
node:
- 22
pnpm:
- 9.10.0
- 9.11.0
container:
- { file: "ubuntu-llvm.dockerfile", image: "setup-cpp-ubuntu-llvm", tag: "22.04-0.43.0" }
- { file: "fedora-llvm.dockerfile", image: "setup-cpp-fedora-llvm", tag: "40-0.43.0" }

View File

@ -1,2 +1,5 @@
import { buildTerserOptions } from "terser-config-atomic/dist/builder.js"
export default buildTerserOptions(process.env.NODE_ENV, undefined, true)
const config = buildTerserOptions(process.env.NODE_ENV, undefined, true)
config.compress.unsafe_math = false
export default config

View File

@ -78,6 +78,7 @@ words:
- nodistro
- NOPASSWD
- noprogressbar
- noreply
- nothrow
- npmrc
- Opencppcoverage

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@ -30,7 +30,7 @@
"build.vite": "cross-env NODE_ENV=production vite build",
"build.vite.legacy": "cross-env NODE_ENV=production TARGET=legacy vite build",
"build.json": "shx cp ./src/*/*.json ./dist/legacy/ && shx cp ./dist/legacy/*.json ./dist/modern && minijson --file ./dist/**/*.json",
"bump": "ncu -u -x numerous,execa,prettier,@types/node,eslint,@types/eslint && pnpm update && pnpx typesync && pnpm run clean",
"bump": "ncu -u -x execa,numerous,eslint,@types/eslint && pnpm update && pnpx typesync && pnpm run clean",
"clean": "shx rm -rf ./dist ./packages/*/dist ./exe ./.parcel-cache && shx mkdir -p ./dist/legacy ./dist/modern ./dist/modern ",
"dev.vite": "cross-env NODE_ENV=development vite build --watch",
"dev.packages": "turbo dev",
@ -98,10 +98,10 @@
"escape-path-with-spaces": "^1.0.2",
"escape-quotes": "^1.0.2",
"escape-string-regexp": "^5.0.0",
"eslint": "^8.57.1",
"eslint": "8.57.1",
"eslint-config-atomic": "^1.22.1",
"exec-powershell": "workspace:*",
"execa": "^9.4.0",
"execa": "7.2.0",
"is-url-online": "^1.5.0",
"jest": "^29.7.0",
"lefthook": "^1.7.15",
@ -126,12 +126,13 @@
"semver": "7.6.3",
"setup-apt": "workspace:*",
"setup-brew": "workspace:*",
"setup-python": "github:aminya/setup-python#65d7f2d534ac1bc67fcd62888c5f4f3d2cb2b236",
"setup-python": "github:aminya/setup-python#9700887",
"shx": "0.3.4",
"simple-update-notifier": "^2.0.0",
"terser": "^5.33.0",
"terser-config-atomic": "^1.0.0",
"time-delta": "github:aminya/time-delta#d732dbc4fe991ab323cfa9075df8a7988537926e",
"time-delta": "github:aminya/time-delta#69d91a4",
"timers-browserify": "^2.0.12",
"ts-node": "^10.9.2",
"ts-readme": "^1.1.3",
"turbo": "2.1.2",
@ -179,13 +180,14 @@
"ubuntu-version",
"untildify-user",
"util.types",
"web-streams-polyfill"
"web-streams-polyfill",
"timers-browserify"
],
"engines": {
"node": ">=12.x",
"pnpm": "^9"
},
"packageManager": "pnpm@9.10.0",
"packageManager": "pnpm@9.11.0",
"workspaces": [
"packages/*"
],

View File

@ -18,7 +18,7 @@
},
"dependencies": {
"@actions/core": "^1.10.1",
"@types/node": "^12",
"@types/node": "22.5.5",
"admina": "^1.0.1",
"ci-info": "^4.0.0",
"escape-path-with-spaces": "^1.0.2",

View File

@ -18,7 +18,7 @@ export function execPowershell(
command: string,
startupFlags: string[] = ["-NoProfile", "-NoLogo", "-NonInteractive"],
execOptions: execa.Options = { stdio: "inherit" },
): execa.ExecaChildProcess<string> {
) {
return execa.execa(getPowerShell(), [...startupFlags, "-c", command], execOptions)
}
@ -36,7 +36,7 @@ export function execPowershellSync(
command: string,
startupFlags: string[] = ["-NoProfile", "-NoLogo", "-NonInteractive"],
execOptions: execa.SyncOptions = { stdio: "inherit" },
): execa.ExecaSyncReturnValue<string> {
) {
return execa.execaSync(getPowerShell(), [...startupFlags, "-c", command], execOptions)
}

View File

@ -17,14 +17,14 @@
"prepublishOnly": "pnpm run build"
},
"dependencies": {
"@types/node": "^12",
"@types/node": "22.5.5",
"admina": "^1.0.1",
"ci-info": "^4.0.0",
"path-exists": "^5.0.0",
"ci-log": "workspace:*",
"envosman": "workspace:*",
"which": "4.0.0",
"execa": "^7.2.0",
"execa": "^7",
"escape-string-regexp": "^5.0.0",
"node-downloader-helper": "2.1.9",
"memoizee": "^0.4.17"

View File

@ -104,7 +104,7 @@ export async function installAptPack(packages: AptPackage[], update = false): Pr
})
} catch (err) {
if (isExecaError(err)) {
if (retryErrors.some((error) => err.stderr.includes(error))) {
if (retryErrors.some((error) => typeof err.stderr === "string" && err.stderr.includes(error))) {
warning(`Failed to install packages ${needToInstall}. Retrying...`)
execRootSync(
apt,

View File

@ -18,11 +18,11 @@
"test": "jest --coverage"
},
"dependencies": {
"@types/node": "^12",
"@types/node": "22.5.5",
"ci-log": "workspace:*",
"envosman": "workspace:*",
"which": "4.0.0",
"execa": "^7.2.0",
"execa": "^7",
"setup-apt": "workspace:*",
"node-downloader-helper": "2.1.9"
},

View File

@ -45,7 +45,7 @@ importers:
version: 2.2.5
'@liuli-util/vite-plugin-node':
specifier: ^0.9.0
version: 0.9.0(@types/node@22.5.5)(rollup@4.22.0)(typescript@5.6.2)(vite@5.4.6(@types/node@22.5.5)(lightningcss@1.26.0)(terser@5.33.0))
version: 0.9.0(@types/node@22.5.5)(rollup@4.22.2)(typescript@5.6.2)(vite@5.4.7(@types/node@22.5.5)(lightningcss@1.26.0)(terser@5.33.0))
'@octokit/core':
specifier: ^6.1.2
version: 6.1.2
@ -143,7 +143,7 @@ importers:
specifier: ^5.0.0
version: 5.0.0
eslint:
specifier: ^8.57.1
specifier: 8.57.1
version: 8.57.1
eslint-config-atomic:
specifier: ^1.22.1
@ -152,8 +152,8 @@ importers:
specifier: workspace:*
version: link:packages/exec-powershell
execa:
specifier: ^9.4.0
version: 9.4.0
specifier: 7.2.0
version: 7.2.0
is-url-online:
specifier: ^1.5.0
version: 1.5.0
@ -213,7 +213,7 @@ importers:
version: 7.0.4
rollup:
specifier: ^4.22.0
version: 4.22.0
version: 4.22.2
safe-stable-stringify:
specifier: ^2.5.0
version: 2.5.0
@ -227,8 +227,8 @@ importers:
specifier: workspace:*
version: link:packages/setup-brew
setup-python:
specifier: github:aminya/setup-python#65d7f2d534ac1bc67fcd62888c5f4f3d2cb2b236
version: https://codeload.github.com/aminya/setup-python/tar.gz/65d7f2d534ac1bc67fcd62888c5f4f3d2cb2b236(encoding@0.1.13)
specifier: github:aminya/setup-python#9700887
version: https://codeload.github.com/aminya/setup-python/tar.gz/9700887(encoding@0.1.13)
shx:
specifier: 0.3.4
version: 0.3.4
@ -242,8 +242,11 @@ importers:
specifier: ^1.0.0
version: 1.0.0
time-delta:
specifier: github:aminya/time-delta#d732dbc4fe991ab323cfa9075df8a7988537926e
version: https://codeload.github.com/aminya/time-delta/tar.gz/d732dbc4fe991ab323cfa9075df8a7988537926e
specifier: github:aminya/time-delta#69d91a4
version: https://codeload.github.com/aminya/time-delta/tar.gz/69d91a4
timers-browserify:
specifier: ^2.0.12
version: 2.0.12
ts-node:
specifier: ^10.9.2
version: 10.9.2(@swc/core@1.7.23(@swc/helpers@0.5.13))(@types/node@22.5.5)(typescript@5.6.2)
@ -267,10 +270,10 @@ importers:
version: 0.0.2
vite:
specifier: ^5.4.6
version: 5.4.6(@types/node@22.5.5)(lightningcss@1.26.0)(terser@5.33.0)
version: 5.4.7(@types/node@22.5.5)(lightningcss@1.26.0)(terser@5.33.0)
vite-plugin-babel:
specifier: ^1.2.0
version: 1.2.0(@babel/core@7.25.2)(vite@5.4.6(@types/node@22.5.5)(lightningcss@1.26.0)(terser@5.33.0))
version: 1.2.0(@babel/core@7.25.2)(vite@5.4.7(@types/node@22.5.5)(lightningcss@1.26.0)(terser@5.33.0))
web-streams-polyfill:
specifier: ^4.0.0
version: 4.0.0
@ -293,8 +296,8 @@ importers:
specifier: ^1.10.1
version: 1.10.1
'@types/node':
specifier: ^12
version: 12.20.55
specifier: 22.5.5
version: 22.5.5
admina:
specifier: ^1.0.1
version: 1.0.1
@ -349,8 +352,8 @@ importers:
packages/setup-apt:
dependencies:
'@types/node':
specifier: ^12
version: 12.20.55
specifier: 22.5.5
version: 22.5.5
admina:
specifier: ^1.0.1
version: 1.0.1
@ -367,7 +370,7 @@ importers:
specifier: ^5.0.0
version: 5.0.0
execa:
specifier: ^7.2.0
specifier: ^7
version: 7.2.0
memoizee:
specifier: ^0.4.17
@ -392,8 +395,8 @@ importers:
packages/setup-brew:
dependencies:
'@types/node':
specifier: ^12
version: 12.20.55
specifier: 22.5.5
version: 22.5.5
ci-log:
specifier: workspace:*
version: link:../ci-log
@ -401,7 +404,7 @@ importers:
specifier: workspace:*
version: link:../envosman
execa:
specifier: ^7.2.0
specifier: ^7
version: 7.2.0
node-downloader-helper:
specifier: 2.1.9
@ -449,11 +452,8 @@ packages:
'@actions/glob@0.1.2':
resolution: {integrity: sha512-SclLR7Ia5sEqjkJTPs7Sd86maMDw43p769YxBOxvPvEWuPEhpAnBsQfENOpXjFYMmhCqd127bmf+YdvJqVqR4A==}
'@actions/glob@0.2.1':
resolution: {integrity: sha512-OqseGbxR8vVikg6rfdKST21GX3QYGq2Nz7/gX3UxZb2Mw1ujJ2S3U5CsYUvYHwxbYguU+HNhfE3930oo5nprXQ==}
'@actions/http-client@1.0.11':
resolution: {integrity: sha512-VRYHGQV1rqnROJqdMvGUbY/Kn8vriQe/F9HR2AlYHzmKuM/p3kjNuXhmdBfcVgsvRWTz5C5XW5xvndZrVBuAYg==}
'@actions/glob@0.4.0':
resolution: {integrity: sha512-+eKIGFhsFa4EBwaf/GMyzCdWrXWymGXfFmZU3FHQvYS8mPcHtTtZONbkcqqUMzw9mJ/pImEBFET1JNifhqGsAQ==}
'@actions/http-client@2.2.3':
resolution: {integrity: sha512-mx8hyJi/hjFvbPokCg4uRd4ZX78t+YyRPtnKWwIl+RzNaVuFpQHfmlGVfsKEJN8LwTCvL+DfVgAM04XaHkm6bA==}
@ -461,9 +461,6 @@ packages:
'@actions/io@1.1.3':
resolution: {integrity: sha512-wi9JjgKLYS7U/z8PPbco+PvTb/nRWjeoFlJ1Qer83k/3C5PHQi28hiVdeE2kHXmIL99mQFawx8qt/JPjZilJ8Q==}
'@actions/tool-cache@1.7.2':
resolution: {integrity: sha512-GYlcgg/PK2RWBrGG2sFg6s7im3S94LMKuqAv8UPDq/pGTZbuEvmN4a95Fn1Z19OE+vt7UbUHeewOD5tEBT+4TQ==}
'@actions/tool-cache@2.0.1':
resolution: {integrity: sha512-iPU+mNwrbA8jodY8eyo/0S/QqCKDajiR8OxWTnSk/SnYg0sj8Hp4QcUEVC1YFpHWXtrfbQrE13Jz4k4HXJQKcA==}
@ -1198,6 +1195,9 @@ packages:
'@iarna/toml@2.2.5':
resolution: {integrity: sha512-trnsAYxU3xnS1gPHPyU961coFyLkh4gAD/0zQ5mymY4yOZ+CYvsPqUbOFSw0aDM4y0tV7tiFxL/1XfXPNC6IPg==}
'@iarna/toml@3.0.0':
resolution: {integrity: sha512-td6ZUkz2oS3VeleBcN+m//Q6HlCFCPrnI0FZhrt/h4XqLEdOyYp2u21nd8MdsR+WJy5r9PTDaHTDDfhf4H4l6Q==}
'@istanbuljs/load-nyc-config@1.1.0':
resolution: {integrity: sha512-VjeHSlIzpv/NyD3N0YuHfXOPDIixcA1q2ZV98wsMqcYlPmv2n3Yb2lYP9XMElnaFVXg5A7YLTeLu6V84uQDjmQ==}
engines: {node: '>=8'}
@ -1411,83 +1411,83 @@ packages:
rollup:
optional: true
'@rollup/rollup-android-arm-eabi@4.22.0':
resolution: {integrity: sha512-/IZQvg6ZR0tAkEi4tdXOraQoWeJy9gbQ/cx4I7k9dJaCk9qrXEcdouxRVz5kZXt5C2bQ9pILoAA+KB4C/d3pfw==}
'@rollup/rollup-android-arm-eabi@4.22.2':
resolution: {integrity: sha512-8Ao+EDmTPjZ1ZBABc1ohN7Ylx7UIYcjReZinigedTOnGFhIctyGPxY2II+hJ6gD2/vkDKZTyQ0e7++kwv6wDrw==}
cpu: [arm]
os: [android]
'@rollup/rollup-android-arm64@4.22.0':
resolution: {integrity: sha512-ETHi4bxrYnvOtXeM7d4V4kZWixib2jddFacJjsOjwbgYSRsyXYtZHC4ht134OsslPIcnkqT+TKV4eU8rNBKyyQ==}
'@rollup/rollup-android-arm64@4.22.2':
resolution: {integrity: sha512-I+B1v0a4iqdS9DvYt1RJZ3W+Oh9EVWjbY6gp79aAYipIbxSLEoQtFQlZEnUuwhDXCqMxJ3hluxKAdPD+GiluFQ==}
cpu: [arm64]
os: [android]
'@rollup/rollup-darwin-arm64@4.22.0':
resolution: {integrity: sha512-ZWgARzhSKE+gVUX7QWaECoRQsPwaD8ZR0Oxb3aUpzdErTvlEadfQpORPXkKSdKbFci9v8MJfkTtoEHnnW9Ulng==}
'@rollup/rollup-darwin-arm64@4.22.2':
resolution: {integrity: sha512-BTHO7rR+LC67OP7I8N8GvdvnQqzFujJYWo7qCQ8fGdQcb8Gn6EQY+K1P+daQLnDCuWKbZ+gHAQZuKiQkXkqIYg==}
cpu: [arm64]
os: [darwin]
'@rollup/rollup-darwin-x64@4.22.0':
resolution: {integrity: sha512-h0ZAtOfHyio8Az6cwIGS+nHUfRMWBDO5jXB8PQCARVF6Na/G6XS2SFxDl8Oem+S5ZsHQgtsI7RT4JQnI1qrlaw==}
'@rollup/rollup-darwin-x64@4.22.2':
resolution: {integrity: sha512-1esGwDNFe2lov4I6GsEeYaAMHwkqk0IbuGH7gXGdBmd/EP9QddJJvTtTF/jv+7R8ZTYPqwcdLpMTxK8ytP6k6Q==}
cpu: [x64]
os: [darwin]
'@rollup/rollup-linux-arm-gnueabihf@4.22.0':
resolution: {integrity: sha512-9pxQJSPwFsVi0ttOmqLY4JJ9pg9t1gKhK0JDbV1yUEETSx55fdyCjt39eBQ54OQCzAF0nVGO6LfEH1KnCPvelA==}
'@rollup/rollup-linux-arm-gnueabihf@4.22.2':
resolution: {integrity: sha512-GBHuY07x96OTEM3OQLNaUSUwrOhdMea/LDmlFHi/HMonrgF6jcFrrFFwJhhe84XtA1oK/Qh4yFS+VMREf6dobg==}
cpu: [arm]
os: [linux]
'@rollup/rollup-linux-arm-musleabihf@4.22.0':
resolution: {integrity: sha512-YJ5Ku5BmNJZb58A4qSEo3JlIG4d3G2lWyBi13ABlXzO41SsdnUKi3HQHe83VpwBVG4jHFTW65jOQb8qyoR+qzg==}
'@rollup/rollup-linux-arm-musleabihf@4.22.2':
resolution: {integrity: sha512-Dbfa9Sc1G1lWxop0gNguXOfGhaXQWAGhZUcqA0Vs6CnJq8JW/YOw/KvyGtQFmz4yDr0H4v9X248SM7bizYj4yQ==}
cpu: [arm]
os: [linux]
'@rollup/rollup-linux-arm64-gnu@4.22.0':
resolution: {integrity: sha512-U4G4u7f+QCqHlVg1Nlx+qapZy+QoG+NV6ux+upo/T7arNGwKvKP2kmGM4W5QTbdewWFgudQxi3kDNST9GT1/mg==}
'@rollup/rollup-linux-arm64-gnu@4.22.2':
resolution: {integrity: sha512-Z1YpgBvFYhZIyBW5BoopwSg+t7yqEhs5HCei4JbsaXnhz/eZehT18DaXl957aaE9QK7TRGFryCAtStZywcQe1A==}
cpu: [arm64]
os: [linux]
'@rollup/rollup-linux-arm64-musl@4.22.0':
resolution: {integrity: sha512-aQpNlKmx3amwkA3a5J6nlXSahE1ijl0L9KuIjVOUhfOh7uw2S4piR3mtpxpRtbnK809SBtyPsM9q15CPTsY7HQ==}
'@rollup/rollup-linux-arm64-musl@4.22.2':
resolution: {integrity: sha512-66Zszr7i/JaQ0u/lefcfaAw16wh3oT72vSqubIMQqWzOg85bGCPhoeykG/cC5uvMzH80DQa2L539IqKht6twVA==}
cpu: [arm64]
os: [linux]
'@rollup/rollup-linux-powerpc64le-gnu@4.22.0':
resolution: {integrity: sha512-9fx6Zj/7vve/Fp4iexUFRKb5+RjLCff6YTRQl4CoDhdMfDoobWmhAxQWV3NfShMzQk1Q/iCnageFyGfqnsmeqQ==}
'@rollup/rollup-linux-powerpc64le-gnu@4.22.2':
resolution: {integrity: sha512-HpJCMnlMTfEhwo19bajvdraQMcAq3FX08QDx3OfQgb+414xZhKNf3jNvLFYKbbDSGBBrQh5yNwWZrdK0g0pokg==}
cpu: [ppc64]
os: [linux]
'@rollup/rollup-linux-riscv64-gnu@4.22.0':
resolution: {integrity: sha512-VWQiCcN7zBgZYLjndIEh5tamtnKg5TGxyZPWcN9zBtXBwfcGSZ5cHSdQZfQH/GB4uRxk0D3VYbOEe/chJhPGLQ==}
'@rollup/rollup-linux-riscv64-gnu@4.22.2':
resolution: {integrity: sha512-/egzQzbOSRef2vYCINKITGrlwkzP7uXRnL+xU2j75kDVp3iPdcF0TIlfwTRF8woBZllhk3QaxNOEj2Ogh3t9hg==}
cpu: [riscv64]
os: [linux]
'@rollup/rollup-linux-s390x-gnu@4.22.0':
resolution: {integrity: sha512-EHmPnPWvyYqncObwqrosb/CpH3GOjE76vWVs0g4hWsDRUVhg61hBmlVg5TPXqF+g+PvIbqkC7i3h8wbn4Gp2Fg==}
'@rollup/rollup-linux-s390x-gnu@4.22.2':
resolution: {integrity: sha512-qgYbOEbrPfEkH/OnUJd1/q4s89FvNJQIUldx8X2F/UM5sEbtkqZpf2s0yly2jSCKr1zUUOY1hnTP2J1WOzMAdA==}
cpu: [s390x]
os: [linux]
'@rollup/rollup-linux-x64-gnu@4.22.0':
resolution: {integrity: sha512-tsSWy3YQzmpjDKnQ1Vcpy3p9Z+kMFbSIesCdMNgLizDWFhrLZIoN21JSq01g+MZMDFF+Y1+4zxgrlqPjid5ohg==}
'@rollup/rollup-linux-x64-gnu@4.22.2':
resolution: {integrity: sha512-a0lkvNhFLhf+w7A95XeBqGQaG0KfS3hPFJnz1uraSdUe/XImkp/Psq0Ca0/UdD5IEAGoENVmnYrzSC9Y2a2uKQ==}
cpu: [x64]
os: [linux]
'@rollup/rollup-linux-x64-musl@4.22.0':
resolution: {integrity: sha512-anr1Y11uPOQrpuU8XOikY5lH4Qu94oS6j0xrulHk3NkLDq19MlX8Ng/pVipjxBJ9a2l3+F39REZYyWQFkZ4/fw==}
'@rollup/rollup-linux-x64-musl@4.22.2':
resolution: {integrity: sha512-sSWBVZgzwtsuG9Dxi9kjYOUu/wKW+jrbzj4Cclabqnfkot8Z3VEHcIgyenA3lLn/Fu11uDviWjhctulkhEO60g==}
cpu: [x64]
os: [linux]
'@rollup/rollup-win32-arm64-msvc@4.22.0':
resolution: {integrity: sha512-7LB+Bh+Ut7cfmO0m244/asvtIGQr5pG5Rvjz/l1Rnz1kDzM02pSX9jPaS0p+90H5I1x4d1FkCew+B7MOnoatNw==}
'@rollup/rollup-win32-arm64-msvc@4.22.2':
resolution: {integrity: sha512-t/YgCbZ638R/r7IKb9yCM6nAek1RUvyNdfU0SHMDLOf6GFe/VG1wdiUAsxTWHKqjyzkRGg897ZfCpdo1bsCSsA==}
cpu: [arm64]
os: [win32]
'@rollup/rollup-win32-ia32-msvc@4.22.0':
resolution: {integrity: sha512-+3qZ4rer7t/QsC5JwMpcvCVPRcJt1cJrYS/TMJZzXIJbxWFQEVhrIc26IhB+5Z9fT9umfVc+Es2mOZgl+7jdJQ==}
'@rollup/rollup-win32-ia32-msvc@4.22.2':
resolution: {integrity: sha512-kTmX5uGs3WYOA+gYDgI6ITkZng9SP71FEMoHNkn+cnmb9Zuyyay8pf0oO5twtTwSjNGy1jlaWooTIr+Dw4tIbw==}
cpu: [ia32]
os: [win32]
'@rollup/rollup-win32-x64-msvc@4.22.0':
resolution: {integrity: sha512-YdicNOSJONVx/vuPkgPTyRoAPx3GbknBZRCOUkK84FJ/YTfs/F0vl/YsMscrB6Y177d+yDRcj+JWMPMCgshwrA==}
'@rollup/rollup-win32-x64-msvc@4.22.2':
resolution: {integrity: sha512-Yy8So+SoRz8I3NS4Bjh91BICPOSVgdompTIPYTByUqU66AXSIOgmW3Lv1ke3NORPqxdF+RdrZET+8vYai6f4aA==}
cpu: [x64]
os: [win32]
@ -1538,9 +1538,6 @@ packages:
'@rushstack/ts-command-line@4.22.8':
resolution: {integrity: sha512-XbFjOoV7qZHJnSuFUHv0pKaFA4ixyCuki+xMjsMfDwfvQjs5MYG0IK5COal3tRnG7KCDe2l/G+9LrzYE/RJhgg==}
'@sec-ant/readable-stream@0.4.1':
resolution: {integrity: sha512-831qok9r2t8AlxLko40y2ebgSDhenenCatLVeW/uBtnHPyhHOvG0C7TvfgecV+wHzIm5KUICgzmVpWS+IMEAeg==}
'@shockpkg/archive-files@https://codeload.github.com/aminya/archive-files/tar.gz/54ec59fad46aca736ac6feb6c7bb526528141b9d':
resolution: {tarball: https://codeload.github.com/aminya/archive-files/tar.gz/54ec59fad46aca736ac6feb6c7bb526528141b9d}
version: 3.2.2
@ -1557,10 +1554,6 @@ packages:
'@sinclair/typebox@0.27.8':
resolution: {integrity: sha512-+Fj43pSMwJs4KRrH/938Uf+uAELIgVBmQzg/q1YG10djyfA3TnrU8N8XzqCh/okZdszqBQTZf96idMfE5lnwTA==}
'@sindresorhus/merge-streams@4.0.0':
resolution: {integrity: sha512-tlqY9xq5ukxTUZBmoOp+m61cqwQD5pHJtFY3Mn8CA8ps6yghLH/Hw8UPdqg4OLmFW3IFlcXnQNmo/dh8HzXYIQ==}
engines: {node: '>=18'}
'@sinonjs/commons@3.0.1':
resolution: {integrity: sha512-K3mCHKQ9sVh8o1C9cxkwxaOmXoAMlDxC1mYyHrjqOWEcBjYr76t96zL2zlj5dUGZ3HSw240X1qgH3Mjf1yJWpQ==}
@ -1741,9 +1734,6 @@ packages:
'@types/ms@0.7.34':
resolution: {integrity: sha512-nG96G3Wp6acyAgJqGasjODb+acrI7KltPiRxzHPXnP3NgI28bpQDRv53olbqGXbfcgF5aiiHmO3xpwEpS5Ld9g==}
'@types/node@12.20.55':
resolution: {integrity: sha512-J8xLz7q2OFulZ2cyGTLE1TbbZcjpno7FaN6zdJNrgAdrJ+DZzh/uFR6YrTb4C+nXakvud8Q4+rbhoIWlYQbUFQ==}
'@types/node@14.18.63':
resolution: {integrity: sha512-fAtCfv4jJg+ExtXhvCkCqUKZ+4ok/JQk01qDKhL5BDDoS3AxKXhV5/MAVUZyQnSEd2GT92fkgZl0pz0Q0AzcIQ==}
@ -3043,10 +3033,6 @@ packages:
resolution: {integrity: sha512-UduyVP7TLB5IcAQl+OzLyLcS/l32W/GLg+AhHJ+ow40FOk2U3SAllPwR44v4vmdFwIWqpdwxxpQbF1n5ta9seA==}
engines: {node: ^14.18.0 || ^16.14.0 || >=18.0.0}
execa@9.4.0:
resolution: {integrity: sha512-yKHlle2YGxZE842MERVIplWwNH5VYmqqcPFgtnlU//K8gxuFFXu0pwd/CrfXTumFpeEiufsP7+opT/bPJa1yVw==}
engines: {node: ^18.19.0 || >=20.5.0}
exit@0.1.2:
resolution: {integrity: sha512-Zk/eNKV2zbjpKzrsQ+n1G6poVbErQxJ0LBOJXaKZ1EViLzH+hrLu9cdXI4zw9dBQJslwBEpbQ2P1oS7nDxs6jQ==}
engines: {node: '>= 0.8.0'}
@ -3096,10 +3082,6 @@ packages:
resolution: {integrity: sha512-yaduQFRKLXYOGgEn6AZau90j3ggSOyiqXU0F9JZfeXYhNa+Jk4X+s45A2zg5jns87GAFa34BBm2kXw4XpNcbdg==}
engines: {node: '>=8'}
figures@6.1.0:
resolution: {integrity: sha512-d+l3qxjSesT4V7v2fh+QnmFnUWv9lSpjarhShNTgBOfA0ttejbQUAlHLitbjkoRiDulW0OPoQPYIGhIC8ohejg==}
engines: {node: '>=18'}
file-entry-cache@6.0.1:
resolution: {integrity: sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==}
engines: {node: ^10.12.0 || >=12.0.0}
@ -3206,10 +3188,6 @@ packages:
resolution: {integrity: sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==}
engines: {node: '>=10'}
get-stream@9.0.1:
resolution: {integrity: sha512-kVCxPF3vQM/N0B1PmoqVUqgHP+EeVjmZSQn+1oCRPxd2P21P2F19lIgbR3HBosbB1PUhOAoctJnfEn2GbN2eZA==}
engines: {node: '>=18'}
get-symbol-description@1.0.2:
resolution: {integrity: sha512-g0QYk1dZBxGwk+Ngc+ltRH2IBp2f7zBkBMBJZCDerh6EhlhSR6+9irMCuT/09zD6qkarHUSn529sK/yL4S27mg==}
engines: {node: '>= 0.4'}
@ -3369,10 +3347,6 @@ packages:
resolution: {integrity: sha512-nZXjEF2nbo7lIw3mgYjItAfgQXog3OjJogSbKa2CQIIvSGWcKgeJnQlNXip6NglNzYH45nSRiEVimMvYL8DDqQ==}
engines: {node: '>=14.18.0'}
human-signals@8.0.0:
resolution: {integrity: sha512-/1/GPCpDUCCYwlERiYjxoczfP0zfvZMU/OWgQPMya9AbAE24vseigFdhAMObpc8Q4lc/kjutPfUddDYyAmejnA==}
engines: {node: '>=18.18.0'}
iconv-lite@0.4.24:
resolution: {integrity: sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==}
engines: {node: '>=0.10.0'}
@ -3576,10 +3550,6 @@ packages:
resolution: {integrity: sha512-LnQR4bZ9IADDRSkvpqMGvt/tEJWclzklNgSw48V5EAaAeDd6qGvN8ei6k5p0tvxSR171VmGyHuTiAOfxAbr8kA==}
engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
is-stream@4.0.1:
resolution: {integrity: sha512-Dnz92NInDqYckGEUJv689RbRiTSEHCQ7wOVeALbkOz999YpqT46yMRIGtSNl2iCL1waAZSx40+h59NV/EwzV/A==}
engines: {node: '>=18'}
is-string@1.0.7:
resolution: {integrity: sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg==}
engines: {node: '>= 0.4'}
@ -3592,10 +3562,6 @@ packages:
resolution: {integrity: sha512-uZ25/bUAlUY5fR4OKT4rZQEBrzQWYV9ZJYGGsUmEJ6thodVJ1HX64ePQ6Z0qPWP+m+Uq6e9UugrE38jeYsDSMw==}
engines: {node: '>= 0.4'}
is-unicode-supported@2.1.0:
resolution: {integrity: sha512-mE00Gnza5EEB3Ds0HfMyllZzbBrmLOX3vfWoj9A9PEnTfratQ/BcaJOuMhnkhjXvb2+FkY3VuHqtAGpTPmglFQ==}
engines: {node: '>=18'}
is-url-online@1.5.0:
resolution: {integrity: sha512-uN7eZhWzxuiJs0OeMIzzMcU5OqUrS0OBoLrorPi3gExjsIO1zkaT5kXfsSbai7FmPzLNg2j8NdbJqgr5l8S2xw==}
@ -4340,10 +4306,6 @@ packages:
resolution: {integrity: sha512-ppwTtiJZq0O/ai0z7yfudtBpWIoxM8yE6nHi1X47eFR2EWORqfbu6CnPlNsjeN683eT0qG6H/Pyf9fCcvjnnnQ==}
engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
npm-run-path@6.0.0:
resolution: {integrity: sha512-9qny7Z9DsQU8Ou39ERsPU4OZQlSTP47ShQzuKZ6PRXpYLtIFgl/DEBYEXKlvcEa+9tHVcK8CF81Y2V72qaZhWA==}
engines: {node: '>=18'}
numerous@1.0.3:
resolution: {integrity: sha512-jN2WTpfdMmR1d5ClpYguln+XAvgW7B0te6wlsyaZhyev7E2CyOmvXq5LTIV/p9mt9WrPW9Xw1g5+28iZh8BhFQ==}
@ -4454,10 +4416,6 @@ packages:
resolution: {integrity: sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==}
engines: {node: '>=8'}
parse-ms@4.0.0:
resolution: {integrity: sha512-TXfryirbmq34y8QBwgqCVLi+8oA3oWx2eAnSn62ITyEhEYaWRlVZ2DvMM9eZbMs/RfxPu/PK/aBLyGj4IrqMHw==}
engines: {node: '>=18'}
path-browserify@1.0.1:
resolution: {integrity: sha512-b7uo2UCUOYZcnF/3ID0lulOJi/bafxa1xPe7ZPsammBSpjSWQkjNxlt635YGS2MiR9GjvuXCtz2emr3jbsz98g==}
@ -4574,10 +4532,6 @@ packages:
resolution: {integrity: sha512-Pdlw/oPxN+aXdmM9R00JVC9WVFoCLTKJvDVLgmJ+qAffBMxsV85l/Lu7sNx4zSzPyoL2euImuEwHhOXdEgNFZQ==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
pretty-ms@9.1.0:
resolution: {integrity: sha512-o1piW0n3tgKIKCwk2vpM/vOV13zjJzvP37Ioze54YlTHE06m4tjEbzg9WsKkvTuyYln2DHjo5pY4qrZGI0otpw==}
engines: {node: '>=18'}
process-nextick-args@2.0.1:
resolution: {integrity: sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==}
@ -4746,8 +4700,8 @@ packages:
peerDependencies:
rollup: ^3.0.0 || ^4.0.0
rollup@4.22.0:
resolution: {integrity: sha512-W21MUIFPZ4+O2Je/EU+GP3iz7PH4pVPUXSbEZdatQnxo29+3rsUjgrJmzuAZU24z7yRAnFN6ukxeAhZh/c7hzg==}
rollup@4.22.2:
resolution: {integrity: sha512-JWWpTrZmqQGQWt16xvNn6KVIUz16VtZwl984TKw0dfqqRpFwtLJYYk1/4BTgplndMQKWUk/yB4uOShYmMzA2Vg==}
engines: {node: '>=18.0.0', npm: '>=8.0.0'}
hasBin: true
@ -4818,9 +4772,12 @@ packages:
resolution: {integrity: sha512-7PGFlmtwsEADb0WYyvCMa1t+yke6daIG4Wirafur5kcf+MhUnPms1UeR0CKQdTZD81yESwMHbtn+TR+dMviakQ==}
engines: {node: '>= 0.4'}
setup-python@https://codeload.github.com/aminya/setup-python/tar.gz/65d7f2d534ac1bc67fcd62888c5f4f3d2cb2b236:
resolution: {tarball: https://codeload.github.com/aminya/setup-python/tar.gz/65d7f2d534ac1bc67fcd62888c5f4f3d2cb2b236}
version: 4.0.0
setimmediate@1.0.5:
resolution: {integrity: sha512-MATJdZp8sLqDl/68LfQmbP8zKPLQNV6BIZoIgrscFDQ+RsvK/BxeDQOgyxKKoh0y/8h3BqVFnCqQ/gd+reiIXA==}
setup-python@https://codeload.github.com/aminya/setup-python/tar.gz/9700887:
resolution: {tarball: https://codeload.github.com/aminya/setup-python/tar.gz/9700887}
version: 5.0.0
shebang-command@2.0.0:
resolution: {integrity: sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==}
@ -4850,10 +4807,6 @@ packages:
signal-exit@3.0.7:
resolution: {integrity: sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==}
signal-exit@4.1.0:
resolution: {integrity: sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==}
engines: {node: '>=14'}
simple-update-notifier@2.0.0:
resolution: {integrity: sha512-a2B9Y0KlNXl9u/vsW6sTIu9vGEpfKu2wRV6l1H3XEas/0gUIzGzBoP/IouTcUQbm9JWZLH3COxyn03TYlFax6w==}
engines: {node: '>=10'}
@ -4991,10 +4944,6 @@ packages:
resolution: {integrity: sha512-dOESqjYr96iWYylGObzd39EuNTa5VJxyvVAEm5Jnh7KGo75V43Hk1odPQkNDyXNmUR6k+gEiDVXnjB8HJ3crXw==}
engines: {node: '>=12'}
strip-final-newline@4.0.0:
resolution: {integrity: sha512-aulFJcD6YK8V1G7iRB5tigAP4TsHBZZrOV8pjV++zdUwmeV8uzbY7yn6h9MswN62adStNZFuCIx4haBnRuMDaw==}
engines: {node: '>=18'}
strip-json-comments@1.0.4:
resolution: {integrity: sha512-AOPG8EBc5wAikaG1/7uFCNFJwnKOuQwFTpYBdTW6OvWHeZBQBrAA/amefHGrEiOnCPcLFZK6FUPtWVKpQVIRgg==}
engines: {node: '>=0.8.0'}
@ -5068,11 +5017,15 @@ packages:
through@2.3.8:
resolution: {integrity: sha512-w89qg7PI8wAdvX60bMDP+bFoD5Dvhm9oLheFp5O4a2QF0cSBGsBX4qZmadPMvVqlLJBBci+WqGGOAPvcDeNSVg==}
time-delta@https://codeload.github.com/aminya/time-delta/tar.gz/d732dbc4fe991ab323cfa9075df8a7988537926e:
resolution: {tarball: https://codeload.github.com/aminya/time-delta/tar.gz/d732dbc4fe991ab323cfa9075df8a7988537926e}
time-delta@https://codeload.github.com/aminya/time-delta/tar.gz/69d91a4:
resolution: {tarball: https://codeload.github.com/aminya/time-delta/tar.gz/69d91a4}
version: 1.0.0
engines: {node: '>=12'}
timers-browserify@2.0.12:
resolution: {integrity: sha512-9phl76Cqm6FhSX9Xe1ZUAMLtm1BLkKj2Qd5ApyWkXzsMRaA7dgr81kf4wJmQf/hAvg8EEyJxDo3du/0KlhPiKQ==}
engines: {node: '>=0.6.0'}
timers-ext@0.1.8:
resolution: {integrity: sha512-wFH7+SEAcKfJpfLPkrgMPvvwnEtj8W4IurvEyrKsDleXnKLCDw71w8jltvfLa8Rm4qQxxT4jmDBYbJG/z7qoww==}
engines: {node: '>=0.12'}
@ -5286,10 +5239,6 @@ packages:
resolution: {integrity: sha512-72RFADWFqKmUb2hmmvNODKL3p9hcB6Gt2DOQMis1SEBaV6a4MH8soBvzg+95CYhCKPFedut2JY9bMfrDl9D23g==}
engines: {node: '>=14.0'}
unicorn-magic@0.3.0:
resolution: {integrity: sha512-+QBBXBCvifc56fsbuxZQ6Sic3wqqc3WWaqxs58gvJrcOuN83HGTCwz3oS5phzU9LthRNE9VrJCFCLUgHeeFnfA==}
engines: {node: '>=18'}
unique-string@2.0.0:
resolution: {integrity: sha512-uNaeirEPvpZWSgzwsPGtU2zVSTrn/8L5q/IexZmH0eH6SA73CmAA5U4GwORTxQAZs95TAXLNqeLoPPNO5gZfWg==}
engines: {node: '>=8'}
@ -5362,8 +5311,8 @@ packages:
vite:
optional: true
vite@5.4.6:
resolution: {integrity: sha512-IeL5f8OO5nylsgzd9tq4qD2QqI0k2CQLGrWD0rCN0EQJZpBK5vJAx0I+GDkMOXxQX/OfFHMuLIx6ddAxGX/k+Q==}
vite@5.4.7:
resolution: {integrity: sha512-5l2zxqMEPVENgvzTuBpHer2awaetimj2BGkhBPdnwKbPNOlHsODU+oiazEZzLK7KhAnOrO+XGYJYn4ZlUhDtDQ==}
engines: {node: ^18.0.0 || >=20.0.0}
hasBin: true
peerDependencies:
@ -5545,10 +5494,6 @@ packages:
resolution: {integrity: sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==}
engines: {node: '>=10'}
yoctocolors@2.1.1:
resolution: {integrity: sha512-GQHQqAopRhwU8Kt1DDM8NjibDXHC8eoh1erhGAJPEyveY9qqVeXvVikNKrDz69sHowPMorbPUrH/mx8c50eiBQ==}
engines: {node: '>=18'}
z-schema@5.0.5:
resolution: {integrity: sha512-D7eujBWkLa3p2sIpJA0d1pr7es+a7m0vFAnZLlCEKq/Ij2k0MLi9Br2UPxoxdYystm5K1yeBGzub0FlYUEWj2Q==}
engines: {node: '>=8.0.0'}
@ -5590,15 +5535,11 @@ snapshots:
'@actions/core': 1.10.1
minimatch: 3.1.2
'@actions/glob@0.2.1':
'@actions/glob@0.4.0':
dependencies:
'@actions/core': 1.10.1
minimatch: 3.1.2
'@actions/http-client@1.0.11':
dependencies:
tunnel: 0.0.6
'@actions/http-client@2.2.3(patch_hash=gqcf2jay7nqqezf3jni6mxu74u)':
dependencies:
tunnel: 0.0.6
@ -5606,15 +5547,6 @@ snapshots:
'@actions/io@1.1.3': {}
'@actions/tool-cache@1.7.2':
dependencies:
'@actions/core': 1.10.1
'@actions/exec': 1.1.1
'@actions/http-client': 1.0.11
'@actions/io': 1.1.3
semver: 6.3.1
uuid: 3.4.0
'@actions/tool-cache@2.0.1':
dependencies:
'@actions/core': 1.10.1
@ -6323,6 +6255,8 @@ snapshots:
'@iarna/toml@2.2.5': {}
'@iarna/toml@3.0.0': {}
'@istanbuljs/load-nyc-config@1.1.0':
dependencies:
camelcase: 5.3.1
@ -6526,14 +6460,14 @@ snapshots:
'@jridgewell/resolve-uri': 3.1.2
'@jridgewell/sourcemap-codec': 1.5.0
'@liuli-util/vite-plugin-node@0.9.0(@types/node@22.5.5)(rollup@4.22.0)(typescript@5.6.2)(vite@5.4.6(@types/node@22.5.5)(lightningcss@1.26.0)(terser@5.33.0))':
'@liuli-util/vite-plugin-node@0.9.0(@types/node@22.5.5)(rollup@4.22.2)(typescript@5.6.2)(vite@5.4.7(@types/node@22.5.5)(lightningcss@1.26.0)(terser@5.33.0))':
dependencies:
'@microsoft/api-extractor': 7.47.9(@types/node@22.5.5)
magic-string: 0.30.11
pathe: 1.1.2
rollup-plugin-node-externals: 7.1.3(rollup@4.22.0)
vite: 5.4.6(@types/node@22.5.5)(lightningcss@1.26.0)(terser@5.33.0)
vite-plugin-dts: 3.9.1(@types/node@22.5.5)(rollup@4.22.0)(typescript@5.6.2)(vite@5.4.6(@types/node@22.5.5)(lightningcss@1.26.0)(terser@5.33.0))
rollup-plugin-node-externals: 7.1.3(rollup@4.22.2)
vite: 5.4.7(@types/node@22.5.5)(lightningcss@1.26.0)(terser@5.33.0)
vite-plugin-dts: 3.9.1(@types/node@22.5.5)(rollup@4.22.2)(typescript@5.6.2)(vite@5.4.7(@types/node@22.5.5)(lightningcss@1.26.0)(terser@5.33.0))
transitivePeerDependencies:
- '@types/node'
- rollup
@ -6689,60 +6623,60 @@ snapshots:
'@pkgr/core@0.1.1': {}
'@rollup/pluginutils@5.1.0(rollup@4.22.0)':
'@rollup/pluginutils@5.1.0(rollup@4.22.2)':
dependencies:
'@types/estree': 1.0.6
estree-walker: 2.0.2
picomatch: 2.3.1
optionalDependencies:
rollup: 4.22.0
rollup: 4.22.2
'@rollup/rollup-android-arm-eabi@4.22.0':
'@rollup/rollup-android-arm-eabi@4.22.2':
optional: true
'@rollup/rollup-android-arm64@4.22.0':
'@rollup/rollup-android-arm64@4.22.2':
optional: true
'@rollup/rollup-darwin-arm64@4.22.0':
'@rollup/rollup-darwin-arm64@4.22.2':
optional: true
'@rollup/rollup-darwin-x64@4.22.0':
'@rollup/rollup-darwin-x64@4.22.2':
optional: true
'@rollup/rollup-linux-arm-gnueabihf@4.22.0':
'@rollup/rollup-linux-arm-gnueabihf@4.22.2':
optional: true
'@rollup/rollup-linux-arm-musleabihf@4.22.0':
'@rollup/rollup-linux-arm-musleabihf@4.22.2':
optional: true
'@rollup/rollup-linux-arm64-gnu@4.22.0':
'@rollup/rollup-linux-arm64-gnu@4.22.2':
optional: true
'@rollup/rollup-linux-arm64-musl@4.22.0':
'@rollup/rollup-linux-arm64-musl@4.22.2':
optional: true
'@rollup/rollup-linux-powerpc64le-gnu@4.22.0':
'@rollup/rollup-linux-powerpc64le-gnu@4.22.2':
optional: true
'@rollup/rollup-linux-riscv64-gnu@4.22.0':
'@rollup/rollup-linux-riscv64-gnu@4.22.2':
optional: true
'@rollup/rollup-linux-s390x-gnu@4.22.0':
'@rollup/rollup-linux-s390x-gnu@4.22.2':
optional: true
'@rollup/rollup-linux-x64-gnu@4.22.0':
'@rollup/rollup-linux-x64-gnu@4.22.2':
optional: true
'@rollup/rollup-linux-x64-musl@4.22.0':
'@rollup/rollup-linux-x64-musl@4.22.2':
optional: true
'@rollup/rollup-win32-arm64-msvc@4.22.0':
'@rollup/rollup-win32-arm64-msvc@4.22.2':
optional: true
'@rollup/rollup-win32-ia32-msvc@4.22.0':
'@rollup/rollup-win32-ia32-msvc@4.22.2':
optional: true
'@rollup/rollup-win32-x64-msvc@4.22.0':
'@rollup/rollup-win32-x64-msvc@4.22.2':
optional: true
'@rtsao/scc@1.1.0': {}
@ -6813,8 +6747,6 @@ snapshots:
transitivePeerDependencies:
- '@types/node'
'@sec-ant/readable-stream@0.4.1': {}
'@shockpkg/archive-files@https://codeload.github.com/aminya/archive-files/tar.gz/54ec59fad46aca736ac6feb6c7bb526528141b9d':
dependencies:
'@shockpkg/hdi-mac': 3.1.4
@ -6832,8 +6764,6 @@ snapshots:
'@sinclair/typebox@0.27.8': {}
'@sindresorhus/merge-streams@4.0.0': {}
'@sinonjs/commons@3.0.1':
dependencies:
type-detect: 4.0.8
@ -7003,8 +6933,6 @@ snapshots:
'@types/ms@0.7.34': {}
'@types/node@12.20.55': {}
'@types/node@14.18.63': {}
'@types/node@18.19.50':
@ -8805,21 +8733,6 @@ snapshots:
signal-exit: 3.0.7
strip-final-newline: 3.0.0
execa@9.4.0:
dependencies:
'@sindresorhus/merge-streams': 4.0.0
cross-spawn: 7.0.3
figures: 6.1.0
get-stream: 9.0.1
human-signals: 8.0.0
is-plain-obj: 4.1.0
is-stream: 4.0.1
npm-run-path: 6.0.0
pretty-ms: 9.1.0
signal-exit: 4.1.0
strip-final-newline: 4.0.0
yoctocolors: 2.1.1
exit@0.1.2: {}
expect@29.7.0:
@ -8876,10 +8789,6 @@ snapshots:
dependencies:
escape-string-regexp: 1.0.5
figures@6.1.0:
dependencies:
is-unicode-supported: 2.1.0
file-entry-cache@6.0.1:
dependencies:
flat-cache: 3.2.0
@ -8985,11 +8894,6 @@ snapshots:
get-stream@6.0.1: {}
get-stream@9.0.1:
dependencies:
'@sec-ant/readable-stream': 0.4.1
is-stream: 4.0.1
get-symbol-description@1.0.2:
dependencies:
call-bind: 1.0.7
@ -9165,8 +9069,6 @@ snapshots:
human-signals@4.3.1: {}
human-signals@8.0.0: {}
iconv-lite@0.4.24:
dependencies:
safer-buffer: 2.1.2
@ -9347,8 +9249,6 @@ snapshots:
is-stream@3.0.0: {}
is-stream@4.0.1: {}
is-string@1.0.7:
dependencies:
has-tostringtag: 1.0.2
@ -9361,8 +9261,6 @@ snapshots:
dependencies:
which-typed-array: 1.1.15
is-unicode-supported@2.1.0: {}
is-url-online@1.5.0: {}
is-valid-path@0.1.1:
@ -10330,11 +10228,6 @@ snapshots:
dependencies:
path-key: 4.0.0
npm-run-path@6.0.0:
dependencies:
path-key: 4.0.0
unicorn-magic: 0.3.0
numerous@1.0.3: {}
numerous@2.0.0:
@ -10461,8 +10354,6 @@ snapshots:
json-parse-even-better-errors: 2.3.1
lines-and-columns: 1.2.4
parse-ms@4.0.0: {}
path-browserify@1.0.1: {}
path-exists@4.0.0: {}
@ -10559,10 +10450,6 @@ snapshots:
ansi-styles: 5.2.0
react-is: 18.3.1
pretty-ms@9.1.0:
dependencies:
parse-ms: 4.0.0
process-nextick-args@2.0.1: {}
process@0.11.10:
@ -10742,30 +10629,30 @@ snapshots:
dependencies:
glob: 7.2.3
rollup-plugin-node-externals@7.1.3(rollup@4.22.0):
rollup-plugin-node-externals@7.1.3(rollup@4.22.2):
dependencies:
rollup: 4.22.0
rollup: 4.22.2
rollup@4.22.0:
rollup@4.22.2:
dependencies:
'@types/estree': 1.0.5
optionalDependencies:
'@rollup/rollup-android-arm-eabi': 4.22.0
'@rollup/rollup-android-arm64': 4.22.0
'@rollup/rollup-darwin-arm64': 4.22.0
'@rollup/rollup-darwin-x64': 4.22.0
'@rollup/rollup-linux-arm-gnueabihf': 4.22.0
'@rollup/rollup-linux-arm-musleabihf': 4.22.0
'@rollup/rollup-linux-arm64-gnu': 4.22.0
'@rollup/rollup-linux-arm64-musl': 4.22.0
'@rollup/rollup-linux-powerpc64le-gnu': 4.22.0
'@rollup/rollup-linux-riscv64-gnu': 4.22.0
'@rollup/rollup-linux-s390x-gnu': 4.22.0
'@rollup/rollup-linux-x64-gnu': 4.22.0
'@rollup/rollup-linux-x64-musl': 4.22.0
'@rollup/rollup-win32-arm64-msvc': 4.22.0
'@rollup/rollup-win32-ia32-msvc': 4.22.0
'@rollup/rollup-win32-x64-msvc': 4.22.0
'@rollup/rollup-android-arm-eabi': 4.22.2
'@rollup/rollup-android-arm64': 4.22.2
'@rollup/rollup-darwin-arm64': 4.22.2
'@rollup/rollup-darwin-x64': 4.22.2
'@rollup/rollup-linux-arm-gnueabihf': 4.22.2
'@rollup/rollup-linux-arm-musleabihf': 4.22.2
'@rollup/rollup-linux-arm64-gnu': 4.22.2
'@rollup/rollup-linux-arm64-musl': 4.22.2
'@rollup/rollup-linux-powerpc64le-gnu': 4.22.2
'@rollup/rollup-linux-riscv64-gnu': 4.22.2
'@rollup/rollup-linux-s390x-gnu': 4.22.2
'@rollup/rollup-linux-x64-gnu': 4.22.2
'@rollup/rollup-linux-x64-musl': 4.22.2
'@rollup/rollup-win32-arm64-msvc': 4.22.2
'@rollup/rollup-win32-ia32-msvc': 4.22.2
'@rollup/rollup-win32-x64-msvc': 4.22.2
fsevents: 2.3.3
run-async@2.4.1: {}
@ -10834,16 +10721,18 @@ snapshots:
functions-have-names: 1.2.3
has-property-descriptors: 1.0.2
setup-python@https://codeload.github.com/aminya/setup-python/tar.gz/65d7f2d534ac1bc67fcd62888c5f4f3d2cb2b236(encoding@0.1.13):
setimmediate@1.0.5: {}
setup-python@https://codeload.github.com/aminya/setup-python/tar.gz/9700887(encoding@0.1.13):
dependencies:
'@actions/cache': 3.2.4(encoding@0.1.13)
'@actions/core': 1.10.1
'@actions/exec': 1.1.1
'@actions/glob': 0.2.1
'@actions/http-client': 1.0.11
'@actions/glob': 0.4.0
'@actions/http-client': 2.2.3(patch_hash=gqcf2jay7nqqezf3jni6mxu74u)
'@actions/io': 1.1.3
'@actions/tool-cache': 1.7.2
'@iarna/toml': 2.2.5
'@actions/tool-cache': 2.0.1
'@iarna/toml': 3.0.0
semver: 7.6.3
transitivePeerDependencies:
- encoding
@ -10877,8 +10766,6 @@ snapshots:
signal-exit@3.0.7: {}
signal-exit@4.1.0: {}
simple-update-notifier@2.0.0:
dependencies:
semver: 7.6.3
@ -11042,8 +10929,6 @@ snapshots:
strip-final-newline@3.0.0: {}
strip-final-newline@4.0.0: {}
strip-json-comments@1.0.4: {}
strip-json-comments@3.1.1: {}
@ -11117,11 +11002,15 @@ snapshots:
through@2.3.8: {}
time-delta@https://codeload.github.com/aminya/time-delta/tar.gz/d732dbc4fe991ab323cfa9075df8a7988537926e:
time-delta@https://codeload.github.com/aminya/time-delta/tar.gz/69d91a4:
dependencies:
is-node: 1.0.2
numerous: 1.0.3
timers-browserify@2.0.12:
dependencies:
setimmediate: 1.0.5
timers-ext@0.1.8:
dependencies:
es5-ext: 0.10.64
@ -11330,8 +11219,6 @@ snapshots:
dependencies:
'@fastify/busboy': 2.1.1
unicorn-magic@0.3.0: {}
unique-string@2.0.0:
dependencies:
crypto-random-string: 2.0.0
@ -11381,15 +11268,15 @@ snapshots:
validator@13.12.0: {}
vite-plugin-babel@1.2.0(@babel/core@7.25.2)(vite@5.4.6(@types/node@22.5.5)(lightningcss@1.26.0)(terser@5.33.0)):
vite-plugin-babel@1.2.0(@babel/core@7.25.2)(vite@5.4.7(@types/node@22.5.5)(lightningcss@1.26.0)(terser@5.33.0)):
dependencies:
'@babel/core': 7.25.2
vite: 5.4.6(@types/node@22.5.5)(lightningcss@1.26.0)(terser@5.33.0)
vite: 5.4.7(@types/node@22.5.5)(lightningcss@1.26.0)(terser@5.33.0)
vite-plugin-dts@3.9.1(@types/node@22.5.5)(rollup@4.22.0)(typescript@5.6.2)(vite@5.4.6(@types/node@22.5.5)(lightningcss@1.26.0)(terser@5.33.0)):
vite-plugin-dts@3.9.1(@types/node@22.5.5)(rollup@4.22.2)(typescript@5.6.2)(vite@5.4.7(@types/node@22.5.5)(lightningcss@1.26.0)(terser@5.33.0)):
dependencies:
'@microsoft/api-extractor': 7.43.0(@types/node@22.5.5)
'@rollup/pluginutils': 5.1.0(rollup@4.22.0)
'@rollup/pluginutils': 5.1.0(rollup@4.22.2)
'@vue/language-core': 1.8.27(typescript@5.6.2)
debug: 4.3.7
kolorist: 1.8.0
@ -11397,17 +11284,17 @@ snapshots:
typescript: 5.6.2
vue-tsc: 1.8.27(typescript@5.6.2)
optionalDependencies:
vite: 5.4.6(@types/node@22.5.5)(lightningcss@1.26.0)(terser@5.33.0)
vite: 5.4.7(@types/node@22.5.5)(lightningcss@1.26.0)(terser@5.33.0)
transitivePeerDependencies:
- '@types/node'
- rollup
- supports-color
vite@5.4.6(@types/node@22.5.5)(lightningcss@1.26.0)(terser@5.33.0):
vite@5.4.7(@types/node@22.5.5)(lightningcss@1.26.0)(terser@5.33.0):
dependencies:
esbuild: 0.21.5
postcss: 8.4.47
rollup: 4.22.0
rollup: 4.22.2
optionalDependencies:
'@types/node': 22.5.5
fsevents: 2.3.3
@ -11596,8 +11483,6 @@ snapshots:
yocto-queue@0.1.0: {}
yoctocolors@2.1.1: {}
z-schema@5.0.5:
dependencies:
lodash.get: 4.4.2

View File

@ -4,9 +4,9 @@
import { GITHUB_ACTIONS, isCI } from "ci-info"
import { error, info, success, warning } from "ci-log"
import { finalizeRC } from "envosman"
import * as numerous from "numerous"
import numerous from "numerous"
import numerousLocale from "numerous/locales/en.js"
import * as timeDelta from "time-delta"
import timeDelta from "time-delta"
import timeDeltaLocale from "time-delta/locales/en.js"
import { untildifyUser } from "untildify-user"
import { checkUpdates } from "./check-updates.js"

View File

@ -31,6 +31,7 @@ const viteConfig = defineConfig({
"stream/promises": "./src/utils/compat/stream/promises.ts",
"stream/web": "web-streams-polyfill/dist/ponyfill.mjs",
"util/types": "util.types/index.js",
"timers/promises": "timers-browserify",
diagnostics_channel: "diagnostics_channel/index.js",
}
: {}),