mirror of
https://github.com/aminya/setup-cpp
synced 2024-11-30 21:22:30 +08:00
Compare commits
14 Commits
0ad9460a52
...
3c6f758b8a
Author | SHA1 | Date | |
---|---|---|---|
|
3c6f758b8a | ||
|
5dd9d98206 | ||
|
e0e749b984 | ||
|
ac7fe2df3f | ||
|
780290387b | ||
|
905cc44d65 | ||
|
50b145e467 | ||
|
094e4c470d | ||
|
3f505ba05e | ||
|
24f9b03dc4 | ||
|
d485b24c12 | ||
|
9935084e22 | ||
|
2a67ff955e | ||
|
76f06a9dda |
54
.github/workflows/CI.yml
vendored
54
.github/workflows/CI.yml
vendored
@ -20,16 +20,11 @@ jobs:
|
||||
Build:
|
||||
runs-on: ${{ matrix.os }}
|
||||
name: Build
|
||||
if: ${{ !contains(github.event.head_commit.message, '[skip ci]') }}
|
||||
strategy:
|
||||
fail-fast: false
|
||||
matrix:
|
||||
os:
|
||||
- ubuntu-22.04
|
||||
node:
|
||||
- 22.6.0
|
||||
pnpm:
|
||||
- 9.11.0
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
with:
|
||||
@ -38,12 +33,10 @@ jobs:
|
||||
- name: Setup Node
|
||||
uses: actions/setup-node@v4
|
||||
with:
|
||||
node-version: ${{ matrix.node }}
|
||||
node-version-file: "./.nvmrc"
|
||||
|
||||
- name: Setup Pnpm
|
||||
uses: pnpm/action-setup@v2
|
||||
with:
|
||||
version: ${{ matrix.pnpm }}
|
||||
uses: pnpm/action-setup@v4
|
||||
|
||||
- name: Install
|
||||
run: |
|
||||
@ -84,7 +77,6 @@ jobs:
|
||||
BuildExecutable:
|
||||
name: Build-Executable-${{ matrix.os }}
|
||||
needs: [Build]
|
||||
if: ${{ !contains(github.event.head_commit.message, '[skip ci]') }}
|
||||
runs-on: ${{ matrix.os }}
|
||||
strategy:
|
||||
fail-fast: false
|
||||
@ -94,10 +86,6 @@ jobs:
|
||||
- ubuntu-24.04
|
||||
- macos-13
|
||||
- macos-14 # arm64
|
||||
node:
|
||||
- 22
|
||||
pnpm:
|
||||
- 9.11.0
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
|
||||
@ -109,12 +97,10 @@ jobs:
|
||||
- name: Setup Node
|
||||
uses: actions/setup-node@v4
|
||||
with:
|
||||
node-version: ${{ matrix.node }}
|
||||
node-version-file: "./.nvmrc"
|
||||
|
||||
- name: Setup Pnpm
|
||||
uses: pnpm/action-setup@v2
|
||||
with:
|
||||
version: ${{ matrix.pnpm }}
|
||||
uses: pnpm/action-setup@v4
|
||||
|
||||
- name: Cache node_modules
|
||||
uses: actions/cache@v4
|
||||
@ -123,7 +109,7 @@ jobs:
|
||||
~/.pnpm-store
|
||||
D:\.pnpm-store
|
||||
./node_modules
|
||||
key: "setupcpp-node_modules-cache-OS:${{ matrix.os }}-node:${{ matrix.node }}-pnpm:${{ matrix.pnpm }}-${{ hashFiles('./.npmrc') }}-deps:${{ hashFiles('./package.json') }}"
|
||||
key: "setupcpp-node_modules-cache-OS:${{ matrix.os }}-${{ hashFiles('./.npmrc', './package.json', '.nvmrc', './packages/*/package.json') }}"
|
||||
restore-keys: |
|
||||
"setupcpp-node_modules-cache-OS:${{ matrix.os }}-"
|
||||
|
||||
@ -146,7 +132,6 @@ jobs:
|
||||
|
||||
Test:
|
||||
name: Test-${{ matrix.os }}
|
||||
if: ${{ !contains(github.event.head_commit.message, '[skip ci]') }}
|
||||
needs: [Build]
|
||||
runs-on: ${{ matrix.os }}
|
||||
strategy:
|
||||
@ -161,10 +146,6 @@ jobs:
|
||||
- macos-14
|
||||
- macos-13
|
||||
- macos-12
|
||||
node:
|
||||
- 22
|
||||
pnpm:
|
||||
- 9.11.0
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
with:
|
||||
@ -178,12 +159,10 @@ jobs:
|
||||
- name: Setup Node
|
||||
uses: actions/setup-node@v4
|
||||
with:
|
||||
node-version: ${{ matrix.node }}
|
||||
node-version-file: "./.nvmrc"
|
||||
|
||||
- name: Setup Pnpm
|
||||
uses: pnpm/action-setup@v2
|
||||
with:
|
||||
version: ${{ matrix.pnpm }}
|
||||
uses: pnpm/action-setup@v4
|
||||
|
||||
- name: Cache node_modules
|
||||
uses: actions/cache@v4
|
||||
@ -192,7 +171,7 @@ jobs:
|
||||
~/.pnpm-store
|
||||
D:\.pnpm-store
|
||||
./node_modules
|
||||
key: "setupcpp-node_modules-cache-OS:${{ matrix.os }}-node:${{ matrix.node }}-pnpm:${{ matrix.pnpm }}-${{ hashFiles('./.npmrc') }}-deps:${{ hashFiles('./package.json') }}"
|
||||
key: "setupcpp-node_modules-cache-OS:${{ matrix.os }}-${{ hashFiles('./.npmrc', './package.json', '.nvmrc', './packages/*/package.json') }}"
|
||||
restore-keys: |
|
||||
"setupcpp-node_modules-cache-OS:${{ matrix.os }}-"
|
||||
|
||||
@ -234,7 +213,6 @@ jobs:
|
||||
|
||||
Docker:
|
||||
name: Docker-${{ matrix.container.image }}
|
||||
if: ${{ !contains(github.event.head_commit.message, '[skip ci]') }}
|
||||
needs: [Build]
|
||||
runs-on: ${{ matrix.os }}
|
||||
strategy:
|
||||
@ -242,17 +220,13 @@ jobs:
|
||||
matrix:
|
||||
os:
|
||||
- ubuntu-24.04
|
||||
node:
|
||||
- 22
|
||||
pnpm:
|
||||
- 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" }
|
||||
- { file: "arch-llvm.dockerfile", image: "setup-cpp-arch-llvm", tag: "base-0.43.0" }
|
||||
- { file: "ubuntu-mingw.dockerfile", image: "setup-cpp-ubuntu-mingw", tag: "22.04-0.43.0" }
|
||||
# - { file: "fedora-mingw.dockerfile", image: "setup-cpp-fedora-mingw", tag: "40-0.43.0" }
|
||||
# - { file: "arch-mingw.dockerfile", image: "setup-cpp-arch-mingw", tag: "base-0.43.0" }
|
||||
- { file: "ubuntu-llvm.dockerfile", image: "setup-cpp-ubuntu-llvm", tag: "22.04-0.44.0" }
|
||||
- { file: "fedora-llvm.dockerfile", image: "setup-cpp-fedora-llvm", tag: "40-0.44.0" }
|
||||
- { file: "arch-llvm.dockerfile", image: "setup-cpp-arch-llvm", tag: "base-0.44.0" }
|
||||
- { file: "ubuntu-mingw.dockerfile", image: "setup-cpp-ubuntu-mingw", tag: "22.04-0.44.0" }
|
||||
# - { file: "fedora-mingw.dockerfile", image: "setup-cpp-fedora-mingw", tag: "40-0.44.0" }
|
||||
# - { file: "arch-mingw.dockerfile", image: "setup-cpp-arch-mingw", tag: "base-0.44.0" }
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
with:
|
||||
|
3
.vscode/settings.json
vendored
3
.vscode/settings.json
vendored
@ -26,6 +26,9 @@
|
||||
"[yaml]": {
|
||||
"editor.defaultFormatter": "dprint.dprint"
|
||||
},
|
||||
"[github-actions-workflow]": {
|
||||
"editor.defaultFormatter": "dprint.dprint"
|
||||
},
|
||||
"cSpell.advanced.feature.useReferenceProviderWithRename": true,
|
||||
"cSpell.checkOnlyEnabledFileTypes": false,
|
||||
"cSpell.numSuggestions": 3,
|
||||
|
38
README.md
38
README.md
@ -57,22 +57,22 @@ NOTE: setup-cpp requires Nodejs 12 or higher. If Nodejs shipped with your distri
|
||||
|
||||
#### With executable
|
||||
|
||||
Download the executable for your platform from [here](https://github.com/aminya/setup-cpp/releases/tag/v0.43.0), and run it with the available options. You can also automate downloading using `curl`, or other similar tools.
|
||||
Download the executable for your platform from [here](https://github.com/aminya/setup-cpp/releases/tag/v0.44.0), and run it with the available options. You can also automate downloading using `curl`, or other similar tools.
|
||||
|
||||
```shell
|
||||
# windows x64
|
||||
curl -o ./setup-cpp.exe -LJ "https://github.com/aminya/setup-cpp/releases/download/v0.43.0/setup-cpp-x64-windows.exe"
|
||||
curl -o ./setup-cpp.exe -LJ "https://github.com/aminya/setup-cpp/releases/download/v0.44.0/setup-cpp-x64-windows.exe"
|
||||
|
||||
# linux x64
|
||||
curl -o ./setup-cpp -LJ "https://github.com/aminya/setup-cpp/releases/download/v0.43.0/setup-cpp-x64-linux"
|
||||
curl -o ./setup-cpp -LJ "https://github.com/aminya/setup-cpp/releases/download/v0.44.0/setup-cpp-x64-linux"
|
||||
chmod +x ./setup-cpp
|
||||
|
||||
# macos arm64
|
||||
curl -o ./setup-cpp -LJ "https://github.com/aminya/setup-cpp/releases/download/v0.43.0/setup-cpp-arm64-macos"
|
||||
curl -o ./setup-cpp -LJ "https://github.com/aminya/setup-cpp/releases/download/v0.44.0/setup-cpp-arm64-macos"
|
||||
chmod +x ./setup-cpp
|
||||
|
||||
# macos x64
|
||||
curl -o ./setup-cpp -LJ "https://github.com/aminya/setup-cpp/releases/download/v0.43.0/setup-cpp-x64-macos"
|
||||
curl -o ./setup-cpp -LJ "https://github.com/aminya/setup-cpp/releases/download/v0.44.0/setup-cpp-x64-macos"
|
||||
chmod +x ./setup-cpp
|
||||
```
|
||||
|
||||
@ -131,13 +131,19 @@ jobs:
|
||||
uses: actions/cache@v3
|
||||
with:
|
||||
path: |
|
||||
./build/
|
||||
~/vcpkg
|
||||
./build/vcpkg_installed
|
||||
${{ env.HOME }}/.cache/vcpkg/archives
|
||||
~/.cache/vcpkg/archives
|
||||
${{ env.LOCALAPPDATA }}/vcpkg/archives
|
||||
${{ env.APPDATA }}/vcpkg/archives
|
||||
${{ env.XDG_CACHE_HOME }}/vcpkg/archives
|
||||
${{ env.LOCALAPPDATA }}\vcpkg\archives
|
||||
${{ env.APPDATA }}\vcpkg\archives
|
||||
key: ${{ runner.os }}-${{ matrix.compiler }}-${{ env.BUILD_TYPE }}-${{ hashFiles('**/CMakeLists.txt') }}-${{ hashFiles('./vcpkg.json')}}
|
||||
~/.cache/ccache
|
||||
~/.ccache
|
||||
~/.config/ccache
|
||||
~/Library/Caches/ccache
|
||||
${{ env.LOCALAPPDATA }}/ccache
|
||||
${{ env.XDG_CACHE_HOME }}/ccache
|
||||
key: ${{ runner.os }}-${{ matrix.compiler }}-${{ env.BUILD_TYPE }}-${{ hashFiles('**/CMakeLists.txt', './vcpkg.json') }}
|
||||
restore-keys: |
|
||||
${{ runner.os }}-${{ env.BUILD_TYPE }}-
|
||||
|
||||
@ -161,19 +167,19 @@ To provide fast development environments, `setup-cpp` provides several prebuilt
|
||||
You can use these images as a base image for your project.
|
||||
|
||||
```dockerfile
|
||||
FROM aminya/setup-cpp-ubuntu-llvm:22.04-0.43.0 AS builder
|
||||
FROM aminya/setup-cpp-ubuntu-llvm:22.04-0.44.0 AS builder
|
||||
```
|
||||
|
||||
```dockerfile
|
||||
FROM aminya/setup-cpp-ubuntu-mingw:22.04-0.43.0 AS builder
|
||||
FROM aminya/setup-cpp-ubuntu-mingw:22.04-0.44.0 AS builder
|
||||
```
|
||||
|
||||
```dockerfile
|
||||
FROM aminya/setup-cpp-fedora-llvm:40-0.43.0 AS builder
|
||||
FROM aminya/setup-cpp-fedora-llvm:40-0.44.0 AS builder
|
||||
```
|
||||
|
||||
```dockerfile
|
||||
FROM aminya/setup-cpp-arch-llvm:base-0.43.0 AS builder
|
||||
FROM aminya/setup-cpp-arch-llvm:base-0.44.0 AS builder
|
||||
```
|
||||
|
||||
The names are in the format `aminya/setup-cpp-<platform>-<compiler>:<platform_version>-<setup_cpp_version>`.
|
||||
@ -192,7 +198,7 @@ RUN apt-get update -qq && \
|
||||
# install nodejs
|
||||
apt-get install -y --no-install-recommends nodejs npm && \
|
||||
# install setup-cpp
|
||||
npm install -g setup-cpp@v0.43.0 && \
|
||||
npm install -g setup-cpp@v0.44.0 && \
|
||||
# install the compiler and tools
|
||||
setup-cpp \
|
||||
--nala true \
|
||||
@ -301,7 +307,7 @@ stages:
|
||||
apt-get install -y --no-install-recommends nodejs npm
|
||||
|
||||
# install setup-cpp
|
||||
npm install -g setup-cpp@v0.43.0
|
||||
npm install -g setup-cpp@v0.44.0
|
||||
|
||||
# install the compiler and tools
|
||||
./setup-cpp-x64-linux --compiler $compiler --cmake true --ninja true --ccache true --vcpkg true
|
||||
|
@ -81,6 +81,7 @@ words:
|
||||
- noreply
|
||||
- nothrow
|
||||
- npmrc
|
||||
- nvmrc
|
||||
- Opencppcoverage
|
||||
- OSSDK
|
||||
- papm
|
||||
|
@ -6,7 +6,7 @@ RUN pacman -Syuu --noconfirm && \
|
||||
# install nodejs
|
||||
pacman -S --noconfirm --needed nodejs npm && \
|
||||
# install setup-cpp
|
||||
npm install -g setup-cpp@v0.43.0 && \
|
||||
npm install -g setup-cpp@v0.44.0 && \
|
||||
# install the compiler and tools
|
||||
setup-cpp \
|
||||
--compiler llvm \
|
||||
|
@ -6,7 +6,7 @@ RUN pacman -Syuu --noconfirm && \
|
||||
# install nodejs
|
||||
pacman -S --noconfirm --needed nodejs npm && \
|
||||
# install setup-cpp
|
||||
npm install -g setup-cpp@v0.43.0 && \
|
||||
npm install -g setup-cpp@v0.44.0 && \
|
||||
# install the compiler and tools
|
||||
setup-cpp \
|
||||
--compiler mingw \
|
||||
|
@ -4,7 +4,7 @@ FROM fedora:40 AS setup-cpp-fedora
|
||||
# install nodejs
|
||||
RUN dnf -y install nodejs npm && \
|
||||
# install setup-cpp
|
||||
npm install -g setup-cpp@v0.43.0 && \
|
||||
npm install -g setup-cpp@v0.44.0 && \
|
||||
# install the compiler and tools
|
||||
setup-cpp \
|
||||
--compiler llvm \
|
||||
|
@ -4,7 +4,7 @@ FROM fedora:40 AS setup-cpp-fedora-mingw
|
||||
# install nodejs
|
||||
RUN dnf -y install nodejs npm && \
|
||||
# install setup-cpp
|
||||
npm install -g setup-cpp@v0.43.0 && \
|
||||
npm install -g setup-cpp@v0.44.0 && \
|
||||
# install the compiler and tools
|
||||
setup-cpp \
|
||||
--compiler mingw \
|
||||
|
@ -11,7 +11,7 @@ RUN apt-get update -qq && \
|
||||
apt-get update -qq && \
|
||||
apt-get install -y --no-install-recommends nodejs && \
|
||||
# install setup-cpp
|
||||
npm install -g setup-cpp@v0.43.0 && \
|
||||
npm install -g setup-cpp@v0.44.0 && \
|
||||
# install the compiler and tools
|
||||
setup-cpp \
|
||||
--nala true \
|
||||
|
@ -5,7 +5,7 @@ RUN apt-get update -qq && \
|
||||
# install nodejs
|
||||
apt-get install -y --no-install-recommends nodejs npm && \
|
||||
# install setup-cpp
|
||||
npm install -g setup-cpp@v0.43.0 && \
|
||||
npm install -g setup-cpp@v0.44.0 && \
|
||||
# install the compiler and tools
|
||||
setup-cpp \
|
||||
--nala true \
|
||||
|
@ -5,7 +5,7 @@ RUN apt-get update -qq && \
|
||||
# install nodejs
|
||||
apt-get install -y --no-install-recommends nodejs npm && \
|
||||
# install setup-cpp
|
||||
npm install -g setup-cpp@v0.43.0 && \
|
||||
npm install -g setup-cpp@v0.44.0 && \
|
||||
# install the compiler and tools
|
||||
setup-cpp \
|
||||
--nala true \
|
||||
|
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
2
dist/legacy/setup-cpp.js
vendored
2
dist/legacy/setup-cpp.js
vendored
File diff suppressed because one or more lines are too long
2
dist/legacy/setup-cpp.js.map
vendored
2
dist/legacy/setup-cpp.js.map
vendored
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
2
dist/modern/setup-cpp.mjs
vendored
2
dist/modern/setup-cpp.mjs
vendored
File diff suppressed because one or more lines are too long
2
dist/modern/setup-cpp.mjs.map
vendored
2
dist/modern/setup-cpp.mjs.map
vendored
File diff suppressed because one or more lines are too long
@ -1,4 +1,4 @@
|
||||
{
|
||||
"name": "setup-cpp",
|
||||
"version": "0.43.0"
|
||||
"version": "0.44.0"
|
||||
}
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "setup-cpp",
|
||||
"version": "0.43.0",
|
||||
"version": "0.44.0",
|
||||
"description": "Install all the tools required for building and testing C++/C projects.",
|
||||
"repository": "https://github.com/aminya/setup-cpp",
|
||||
"license": "Apache-2.0",
|
||||
@ -187,7 +187,7 @@
|
||||
"node": ">=12.x",
|
||||
"pnpm": "^9"
|
||||
},
|
||||
"packageManager": "pnpm@9.11.0",
|
||||
"packageManager": "pnpm@9.12.2",
|
||||
"workspaces": [
|
||||
"packages/*"
|
||||
],
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "ci-log",
|
||||
"version": "1.0.1",
|
||||
"version": "1.0.2",
|
||||
"description": "Colorful logging and print for any environment including GitHub Actions",
|
||||
"repository": "https://github.com/aminya/setup-cpp",
|
||||
"homepage": "https://github.com/aminya/setup-cpp/tree/master/packages/ci-log",
|
||||
|
@ -1,5 +1,6 @@
|
||||
import * as core from "@actions/core"
|
||||
import { GITHUB_ACTIONS } from "ci-info"
|
||||
import ciInfo from "ci-info"
|
||||
const { GITHUB_ACTIONS } = ciInfo
|
||||
|
||||
export function error(err: string | Error) {
|
||||
return GITHUB_ACTIONS ? core.error(err) : console.log(`\x1b[31m${err}\x1b[0m`)
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "envosman",
|
||||
"version": "1.0.2",
|
||||
"version": "1.0.3",
|
||||
"description": "Manage environment variables, PATH, and rc files",
|
||||
"repository": "https://github.com/aminya/setup-cpp",
|
||||
"homepage": "https://github.com/aminya/setup-cpp/tree/master/packages/envosman",
|
||||
@ -18,7 +18,7 @@
|
||||
},
|
||||
"dependencies": {
|
||||
"@actions/core": "^1.10.1",
|
||||
"@types/node": "22.7.4",
|
||||
"@types/node": "22.8.1",
|
||||
"admina": "^1.0.1",
|
||||
"ci-info": "^4.0.0",
|
||||
"escape-path-with-spaces": "^1.0.2",
|
||||
|
@ -1,6 +1,7 @@
|
||||
import { promises } from "fs"
|
||||
import { exportVariable as ghExportVariable } from "@actions/core"
|
||||
import { GITHUB_ACTIONS } from "ci-info"
|
||||
import ciInfo from "ci-info"
|
||||
const { GITHUB_ACTIONS } = ciInfo
|
||||
import { error, info } from "ci-log"
|
||||
import { execPowershell } from "exec-powershell"
|
||||
import { defaultRcPath, sourceRCInRc } from "./rc-file.js"
|
||||
|
@ -1,7 +1,8 @@
|
||||
import { promises } from "fs"
|
||||
import { delimiter } from "path"
|
||||
import { addPath as ghAddPath } from "@actions/core"
|
||||
import { GITHUB_ACTIONS } from "ci-info"
|
||||
import ciInfo from "ci-info"
|
||||
const { GITHUB_ACTIONS } = ciInfo
|
||||
import { error, info } from "ci-log"
|
||||
import { execPowershell } from "exec-powershell"
|
||||
import { defaultRcPath, sourceRCInRc } from "./rc-file.js"
|
||||
|
@ -17,8 +17,8 @@
|
||||
"prepublishOnly": "pnpm run build"
|
||||
},
|
||||
"dependencies": {
|
||||
"execa": "9.4.0",
|
||||
"which": "^4.0.0",
|
||||
"execa": "9.4.1",
|
||||
"which": "^5.0.0",
|
||||
"@types/node": "^22.0.0"
|
||||
},
|
||||
"devDependencies": {
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "setup-apt",
|
||||
"version": "2.0.0",
|
||||
"version": "2.0.2",
|
||||
"description": "Setup apt packages and repositories in Debian/Ubuntu-based distributions",
|
||||
"repository": "https://github.com/aminya/setup-cpp",
|
||||
"homepage": "https://github.com/aminya/setup-cpp/tree/master/packages/setup-apt",
|
||||
@ -9,6 +9,11 @@
|
||||
"main": "./dist/index.js",
|
||||
"source": "./src/index.ts",
|
||||
"type": "module",
|
||||
"files": [
|
||||
"dist",
|
||||
"src",
|
||||
"tsconfig.json"
|
||||
],
|
||||
"scripts": {
|
||||
"build": "tsc --pretty",
|
||||
"dev": "tsc --watch --pretty",
|
||||
@ -17,14 +22,14 @@
|
||||
"prepublishOnly": "pnpm run build"
|
||||
},
|
||||
"dependencies": {
|
||||
"@types/node": "22.7.4",
|
||||
"@types/node": "22.8.1",
|
||||
"admina": "^1.0.1",
|
||||
"ci-info": "^4.0.0",
|
||||
"path-exists": "^5.0.0",
|
||||
"ci-log": "workspace:*",
|
||||
"envosman": "workspace:*",
|
||||
"which": "4.0.0",
|
||||
"execa": "9.4.0",
|
||||
"which": "5.0.0",
|
||||
"execa": "9.4.1",
|
||||
"escape-string-regexp": "^5.0.0",
|
||||
"node-downloader-helper": "2.1.9",
|
||||
"memoizee": "^0.4.17"
|
||||
|
@ -1,6 +1,7 @@
|
||||
import { promises } from "fs"
|
||||
import { execRoot } from "admina"
|
||||
import { GITHUB_ACTIONS } from "ci-info"
|
||||
import ciInfo from "ci-info"
|
||||
const { GITHUB_ACTIONS } = ciInfo
|
||||
import { sourceRC } from "envosman"
|
||||
import type { RcOptions } from "envosman/dist/rc-file.js"
|
||||
const { appendFile } = promises
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "setup-brew",
|
||||
"version": "1.0.1",
|
||||
"version": "1.0.2",
|
||||
"description": "Setup brew and brew packages",
|
||||
"repository": "https://github.com/aminya/setup-cpp",
|
||||
"homepage": "https://github.com/aminya/setup-cpp/tree/master/packages/setup-brew",
|
||||
@ -9,6 +9,11 @@
|
||||
"main": "./dist/index.js",
|
||||
"source": "./src/index.ts",
|
||||
"type": "module",
|
||||
"files": [
|
||||
"dist",
|
||||
"src",
|
||||
"tsconfig.json"
|
||||
],
|
||||
"scripts": {
|
||||
"build": "tsc --pretty",
|
||||
"dev": "tsc --watch --pretty",
|
||||
@ -18,11 +23,11 @@
|
||||
"test": "jest --coverage"
|
||||
},
|
||||
"dependencies": {
|
||||
"@types/node": "22.7.4",
|
||||
"@types/node": "22.8.1",
|
||||
"ci-log": "workspace:*",
|
||||
"envosman": "workspace:*",
|
||||
"which": "4.0.0",
|
||||
"execa": "9.4.0",
|
||||
"which": "5.0.0",
|
||||
"execa": "9.4.1",
|
||||
"setup-apt": "workspace:*",
|
||||
"node-downloader-helper": "2.1.9"
|
||||
},
|
||||
|
262
pnpm-lock.yaml
262
pnpm-lock.yaml
@ -18,7 +18,7 @@ importers:
|
||||
version: 3.2.4(encoding@0.1.13)
|
||||
'@actions/core':
|
||||
specifier: ^1.10.1
|
||||
version: 1.10.1
|
||||
version: 1.11.1
|
||||
'@actions/exec':
|
||||
specifier: ^1.1.1
|
||||
version: 1.1.1
|
||||
@ -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.7.4)(rollup@4.22.2)(typescript@5.6.2)(vite@5.4.7(@types/node@22.7.4)(lightningcss@1.26.0)(terser@5.33.0))
|
||||
version: 0.9.0(@types/node@22.8.1)(rollup@4.22.2)(typescript@5.6.2)(vite@5.4.7(@types/node@22.8.1)(lightningcss@1.26.0)(terser@5.33.0))
|
||||
'@octokit/core':
|
||||
specifier: ^6.1.2
|
||||
version: 6.1.2
|
||||
@ -93,7 +93,7 @@ importers:
|
||||
version: 0.4.11
|
||||
'@types/node':
|
||||
specifier: ^22.5.5
|
||||
version: 22.7.4
|
||||
version: 22.8.1
|
||||
'@types/semver':
|
||||
specifier: ^7.5.8
|
||||
version: 7.5.8
|
||||
@ -159,7 +159,7 @@ importers:
|
||||
version: 1.5.0
|
||||
jest:
|
||||
specifier: ^29.7.0
|
||||
version: 29.7.0(@types/node@22.7.4)(ts-node@10.9.2(@swc/core@1.7.23(@swc/helpers@0.5.13))(@types/node@22.7.4)(typescript@5.6.2))
|
||||
version: 29.7.0(@types/node@22.8.1)(ts-node@10.9.2(@swc/core@1.7.23(@swc/helpers@0.5.13))(@types/node@22.8.1)(typescript@5.6.2))
|
||||
lefthook:
|
||||
specifier: ^1.7.15
|
||||
version: 1.7.15
|
||||
@ -249,7 +249,7 @@ importers:
|
||||
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.7.4)(typescript@5.6.2)
|
||||
version: 10.9.2(@swc/core@1.7.23(@swc/helpers@0.5.13))(@types/node@22.8.1)(typescript@5.6.2)
|
||||
ts-readme:
|
||||
specifier: ^1.1.3
|
||||
version: 1.1.3(typescript@5.6.2)
|
||||
@ -270,10 +270,10 @@ importers:
|
||||
version: 0.0.2
|
||||
vite:
|
||||
specifier: ^5.4.6
|
||||
version: 5.4.7(@types/node@22.7.4)(lightningcss@1.26.0)(terser@5.33.0)
|
||||
version: 5.4.7(@types/node@22.8.1)(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.7(@types/node@22.7.4)(lightningcss@1.26.0)(terser@5.33.0))
|
||||
version: 1.2.0(@babel/core@7.25.2)(vite@5.4.7(@types/node@22.8.1)(lightningcss@1.26.0)(terser@5.33.0))
|
||||
web-streams-polyfill:
|
||||
specifier: ^4.0.0
|
||||
version: 4.0.0
|
||||
@ -285,7 +285,7 @@ importers:
|
||||
dependencies:
|
||||
'@actions/core':
|
||||
specifier: ^1.10.1
|
||||
version: 1.10.1
|
||||
version: 1.11.1
|
||||
ci-info:
|
||||
specifier: ^4.0.0
|
||||
version: 4.0.0
|
||||
@ -294,10 +294,10 @@ importers:
|
||||
dependencies:
|
||||
'@actions/core':
|
||||
specifier: ^1.10.1
|
||||
version: 1.10.1
|
||||
version: 1.11.1
|
||||
'@types/node':
|
||||
specifier: 22.7.4
|
||||
version: 22.7.4
|
||||
specifier: 22.8.1
|
||||
version: 22.8.1
|
||||
admina:
|
||||
specifier: ^1.0.1
|
||||
version: 1.0.1
|
||||
@ -337,13 +337,13 @@ importers:
|
||||
dependencies:
|
||||
'@types/node':
|
||||
specifier: ^22.0.0
|
||||
version: 22.7.4
|
||||
version: 22.8.1
|
||||
execa:
|
||||
specifier: 9.4.0
|
||||
version: 9.4.0
|
||||
specifier: 9.4.1
|
||||
version: 9.4.1
|
||||
which:
|
||||
specifier: ^4.0.0
|
||||
version: 4.0.0
|
||||
specifier: ^5.0.0
|
||||
version: 5.0.0
|
||||
devDependencies:
|
||||
'@types/which':
|
||||
specifier: ^3.0.0
|
||||
@ -352,8 +352,8 @@ importers:
|
||||
packages/setup-apt:
|
||||
dependencies:
|
||||
'@types/node':
|
||||
specifier: 22.7.4
|
||||
version: 22.7.4
|
||||
specifier: 22.8.1
|
||||
version: 22.8.1
|
||||
admina:
|
||||
specifier: ^1.0.1
|
||||
version: 1.0.1
|
||||
@ -370,8 +370,8 @@ importers:
|
||||
specifier: ^5.0.0
|
||||
version: 5.0.0
|
||||
execa:
|
||||
specifier: 9.4.0
|
||||
version: 9.4.0
|
||||
specifier: 9.4.1
|
||||
version: 9.4.1
|
||||
memoizee:
|
||||
specifier: ^0.4.17
|
||||
version: 0.4.17
|
||||
@ -382,8 +382,8 @@ importers:
|
||||
specifier: ^5.0.0
|
||||
version: 5.0.0
|
||||
which:
|
||||
specifier: 4.0.0
|
||||
version: 4.0.0
|
||||
specifier: 5.0.0
|
||||
version: 5.0.0
|
||||
devDependencies:
|
||||
'@types/memoizee':
|
||||
specifier: 0.4.11
|
||||
@ -395,8 +395,8 @@ importers:
|
||||
packages/setup-brew:
|
||||
dependencies:
|
||||
'@types/node':
|
||||
specifier: 22.7.4
|
||||
version: 22.7.4
|
||||
specifier: 22.8.1
|
||||
version: 22.8.1
|
||||
ci-log:
|
||||
specifier: workspace:*
|
||||
version: link:../ci-log
|
||||
@ -404,8 +404,8 @@ importers:
|
||||
specifier: workspace:*
|
||||
version: link:../envosman
|
||||
execa:
|
||||
specifier: 9.4.0
|
||||
version: 9.4.0
|
||||
specifier: 9.4.1
|
||||
version: 9.4.1
|
||||
node-downloader-helper:
|
||||
specifier: 2.1.9
|
||||
version: 2.1.9
|
||||
@ -413,8 +413,8 @@ importers:
|
||||
specifier: workspace:*
|
||||
version: link:../setup-apt
|
||||
which:
|
||||
specifier: 4.0.0
|
||||
version: 4.0.0
|
||||
specifier: 5.0.0
|
||||
version: 5.0.0
|
||||
devDependencies:
|
||||
'@types/cross-spawn':
|
||||
specifier: ~6.0.6
|
||||
@ -443,8 +443,8 @@ packages:
|
||||
'@actions/cache@3.2.4':
|
||||
resolution: {integrity: sha512-RuHnwfcDagtX+37s0ZWy7clbOfnZ7AlDJQ7k/9rzt2W4Gnwde3fa/qjSjVuz4vLcLIpc7fUob27CMrqiWZytYA==}
|
||||
|
||||
'@actions/core@1.10.1':
|
||||
resolution: {integrity: sha512-3lBR9EDAY+iYIpTnTIXmWcNbX3T2kCkAEQGIQx4NVQ0575nk2k3GRZDTPQG+vVtS2izSLmINlxXf0uLtnrTP+g==}
|
||||
'@actions/core@1.11.1':
|
||||
resolution: {integrity: sha512-hXJCSrkwfA46Vd9Z3q4cpEpHB1rL5NG04+/rbqW9d3+CSvtB1tYe8UTpAlixa1vj0m/ULglfEK2UKxMGxCxv5A==}
|
||||
|
||||
'@actions/exec@1.1.1':
|
||||
resolution: {integrity: sha512-+sCcHHbVdk93a0XT19ECtO/gIXoxvdsgQLzb2fE2/5sIZmWQuluYyjPQtrtTHdU1YzTZ7bAPN4sITq2xi1679w==}
|
||||
@ -1741,11 +1741,11 @@ packages:
|
||||
'@types/ms@0.7.34':
|
||||
resolution: {integrity: sha512-nG96G3Wp6acyAgJqGasjODb+acrI7KltPiRxzHPXnP3NgI28bpQDRv53olbqGXbfcgF5aiiHmO3xpwEpS5Ld9g==}
|
||||
|
||||
'@types/node@18.19.54':
|
||||
resolution: {integrity: sha512-+BRgt0G5gYjTvdLac9sIeE0iZcJxi4Jc4PV5EUzqi+88jmQLr+fRZdv2tCTV7IHKSGxM6SaLoOXQWWUiLUItMw==}
|
||||
'@types/node@18.19.59':
|
||||
resolution: {integrity: sha512-vizm2EqwV/7Zay+A6J3tGl9Lhr7CjZe2HmWS988sefiEmsyP9CeXEleho6i4hJk/8UtZAo0bWN4QPZZr83RxvQ==}
|
||||
|
||||
'@types/node@22.7.4':
|
||||
resolution: {integrity: sha512-y+NPi1rFzDs1NdQHHToqeiX2TIS79SWEAw9GYhkkx8bD0ChpfqC+n2j5OXOCpzfojBEBt6DnEnnG9MY0zk1XLg==}
|
||||
'@types/node@22.8.1':
|
||||
resolution: {integrity: sha512-k6Gi8Yyo8EtrNtkHXutUu2corfDf9su95VYVP10aGYMMROM6SAItZi0w1XszA6RtWTHSVp5OeFof37w0IEqCQg==}
|
||||
|
||||
'@types/normalize-package-data@2.4.4':
|
||||
resolution: {integrity: sha512-37i+OaWTh9qeK4LSHPsyRC7NahnGotNuZvjLSgcPzblpHB3rrCJxAOgI5gCdKm7coonsaX1Of0ILiTcnZjbfxA==}
|
||||
@ -2976,6 +2976,7 @@ packages:
|
||||
eslint@8.57.1:
|
||||
resolution: {integrity: sha512-ypowyDxpVSYpkXr9WPv2PAZCtNip1Mv5KTW0SCurXv/9iOpcrH9PaqUElksqEB6pChqHGDRCFTyrZlGhnLNGiA==}
|
||||
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
|
||||
deprecated: This version is no longer supported. Please see https://eslint.org/version-support for other options.
|
||||
hasBin: true
|
||||
|
||||
esniff@2.0.1:
|
||||
@ -3037,8 +3038,8 @@ 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==}
|
||||
execa@9.4.1:
|
||||
resolution: {integrity: sha512-5eo/BRqZm3GYce+1jqX/tJ7duA2AnE39i88fuedNFUV8XxGxUpF3aWkBRfbUcjV49gCkvS/pzc0YrCPhaIewdg==}
|
||||
engines: {node: ^18.19.0 || >=20.5.0}
|
||||
|
||||
exit@0.1.2:
|
||||
@ -5141,6 +5142,9 @@ packages:
|
||||
tslib@2.7.0:
|
||||
resolution: {integrity: sha512-gLXCKdN1/j47AiHiOkJN69hJmcbGTHI0ImLmbYLHykhgeN0jVGola9yVjFgzCUklsZQMW55o+dW7IXv3RCXDzA==}
|
||||
|
||||
tslib@2.8.0:
|
||||
resolution: {integrity: sha512-jWVzBLplnCmoaTr13V9dYbiQ99wvZRd0vNWaDRg+aVYRcjDF3nDksxFDE/+fkXnKhpnUUkmx5pK/v8mCtLVqZA==}
|
||||
|
||||
tsutils@3.21.0:
|
||||
resolution: {integrity: sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA==}
|
||||
engines: {node: '>= 6'}
|
||||
@ -5458,6 +5462,11 @@ packages:
|
||||
engines: {node: ^16.13.0 || >=18.0.0}
|
||||
hasBin: true
|
||||
|
||||
which@5.0.0:
|
||||
resolution: {integrity: sha512-JEdGzHwwkrbWoGOlIHqQ5gtprKGOenpDHpxE9zVR1bWbOtYRyPPHMe9FaP6x61CmNaTThSkb0DAJte5jD+DmzQ==}
|
||||
engines: {node: ^18.17.0 || >=20.5.0}
|
||||
hasBin: true
|
||||
|
||||
widest-line@3.1.0:
|
||||
resolution: {integrity: sha512-NsmoXalsWVDMGupxZ5R08ka9flZjjiLvHVAWYOKtiKM8ujtZWr9cRffak+uSE48+Ob8ObalXpwyeUiyDD6QFgg==}
|
||||
engines: {node: '>=8'}
|
||||
@ -5559,7 +5568,7 @@ snapshots:
|
||||
|
||||
'@actions/cache@3.2.4(encoding@0.1.13)':
|
||||
dependencies:
|
||||
'@actions/core': 1.10.1
|
||||
'@actions/core': 1.11.1
|
||||
'@actions/exec': 1.1.1
|
||||
'@actions/glob': 0.1.2
|
||||
'@actions/http-client': 2.2.3(patch_hash=gqcf2jay7nqqezf3jni6mxu74u)
|
||||
@ -5573,10 +5582,10 @@ snapshots:
|
||||
- encoding
|
||||
- supports-color
|
||||
|
||||
'@actions/core@1.10.1':
|
||||
'@actions/core@1.11.1':
|
||||
dependencies:
|
||||
'@actions/exec': 1.1.1
|
||||
'@actions/http-client': 2.2.3(patch_hash=gqcf2jay7nqqezf3jni6mxu74u)
|
||||
uuid: 8.3.2
|
||||
|
||||
'@actions/exec@1.1.1':
|
||||
dependencies:
|
||||
@ -5584,12 +5593,12 @@ snapshots:
|
||||
|
||||
'@actions/glob@0.1.2':
|
||||
dependencies:
|
||||
'@actions/core': 1.10.1
|
||||
'@actions/core': 1.11.1
|
||||
minimatch: 3.1.2
|
||||
|
||||
'@actions/glob@0.4.0':
|
||||
dependencies:
|
||||
'@actions/core': 1.10.1
|
||||
'@actions/core': 1.11.1
|
||||
minimatch: 3.1.2
|
||||
|
||||
'@actions/http-client@2.2.3(patch_hash=gqcf2jay7nqqezf3jni6mxu74u)':
|
||||
@ -5601,7 +5610,7 @@ snapshots:
|
||||
|
||||
'@actions/tool-cache@2.0.1':
|
||||
dependencies:
|
||||
'@actions/core': 1.10.1
|
||||
'@actions/core': 1.11.1
|
||||
'@actions/exec': 1.1.1
|
||||
'@actions/http-client': 2.2.3(patch_hash=gqcf2jay7nqqezf3jni6mxu74u)
|
||||
'@actions/io': 1.1.3
|
||||
@ -6322,27 +6331,27 @@ snapshots:
|
||||
'@jest/console@29.7.0':
|
||||
dependencies:
|
||||
'@jest/types': 29.6.3
|
||||
'@types/node': 22.7.4
|
||||
'@types/node': 22.8.1
|
||||
chalk: 4.1.2
|
||||
jest-message-util: 29.7.0
|
||||
jest-util: 29.7.0
|
||||
slash: 3.0.0
|
||||
|
||||
'@jest/core@29.7.0(ts-node@10.9.2(@swc/core@1.7.23(@swc/helpers@0.5.13))(@types/node@22.7.4)(typescript@5.6.2))':
|
||||
'@jest/core@29.7.0(ts-node@10.9.2(@swc/core@1.7.23(@swc/helpers@0.5.13))(@types/node@22.8.1)(typescript@5.6.2))':
|
||||
dependencies:
|
||||
'@jest/console': 29.7.0
|
||||
'@jest/reporters': 29.7.0
|
||||
'@jest/test-result': 29.7.0
|
||||
'@jest/transform': 29.7.0
|
||||
'@jest/types': 29.6.3
|
||||
'@types/node': 22.7.4
|
||||
'@types/node': 22.8.1
|
||||
ansi-escapes: 4.3.2
|
||||
chalk: 4.1.2
|
||||
ci-info: 3.9.0
|
||||
exit: 0.1.2
|
||||
graceful-fs: 4.2.11
|
||||
jest-changed-files: 29.7.0
|
||||
jest-config: 29.7.0(@types/node@22.7.4)(ts-node@10.9.2(@swc/core@1.7.23(@swc/helpers@0.5.13))(@types/node@22.7.4)(typescript@5.6.2))
|
||||
jest-config: 29.7.0(@types/node@22.8.1)(ts-node@10.9.2(@swc/core@1.7.23(@swc/helpers@0.5.13))(@types/node@22.8.1)(typescript@5.6.2))
|
||||
jest-haste-map: 29.7.0
|
||||
jest-message-util: 29.7.0
|
||||
jest-regex-util: 29.6.3
|
||||
@ -6371,7 +6380,7 @@ snapshots:
|
||||
dependencies:
|
||||
'@jest/fake-timers': 29.7.0
|
||||
'@jest/types': 29.6.3
|
||||
'@types/node': 22.7.4
|
||||
'@types/node': 22.8.1
|
||||
jest-mock: 29.7.0
|
||||
|
||||
'@jest/expect-utils@29.7.0':
|
||||
@ -6389,7 +6398,7 @@ snapshots:
|
||||
dependencies:
|
||||
'@jest/types': 29.6.3
|
||||
'@sinonjs/fake-timers': 10.3.0
|
||||
'@types/node': 22.7.4
|
||||
'@types/node': 22.8.1
|
||||
jest-message-util: 29.7.0
|
||||
jest-mock: 29.7.0
|
||||
jest-util: 29.7.0
|
||||
@ -6411,7 +6420,7 @@ snapshots:
|
||||
'@jest/transform': 29.7.0
|
||||
'@jest/types': 29.6.3
|
||||
'@jridgewell/trace-mapping': 0.3.25
|
||||
'@types/node': 22.7.4
|
||||
'@types/node': 22.8.1
|
||||
chalk: 4.1.2
|
||||
collect-v8-coverage: 1.0.2
|
||||
exit: 0.1.2
|
||||
@ -6481,7 +6490,7 @@ snapshots:
|
||||
'@jest/schemas': 29.6.3
|
||||
'@types/istanbul-lib-coverage': 2.0.6
|
||||
'@types/istanbul-reports': 3.0.4
|
||||
'@types/node': 22.7.4
|
||||
'@types/node': 22.8.1
|
||||
'@types/yargs': 17.0.33
|
||||
chalk: 4.1.2
|
||||
|
||||
@ -6512,45 +6521,45 @@ snapshots:
|
||||
'@jridgewell/resolve-uri': 3.1.2
|
||||
'@jridgewell/sourcemap-codec': 1.5.0
|
||||
|
||||
'@liuli-util/vite-plugin-node@0.9.0(@types/node@22.7.4)(rollup@4.22.2)(typescript@5.6.2)(vite@5.4.7(@types/node@22.7.4)(lightningcss@1.26.0)(terser@5.33.0))':
|
||||
'@liuli-util/vite-plugin-node@0.9.0(@types/node@22.8.1)(rollup@4.22.2)(typescript@5.6.2)(vite@5.4.7(@types/node@22.8.1)(lightningcss@1.26.0)(terser@5.33.0))':
|
||||
dependencies:
|
||||
'@microsoft/api-extractor': 7.47.9(@types/node@22.7.4)
|
||||
'@microsoft/api-extractor': 7.47.9(@types/node@22.8.1)
|
||||
magic-string: 0.30.11
|
||||
pathe: 1.1.2
|
||||
rollup-plugin-node-externals: 7.1.3(rollup@4.22.2)
|
||||
vite: 5.4.7(@types/node@22.7.4)(lightningcss@1.26.0)(terser@5.33.0)
|
||||
vite-plugin-dts: 3.9.1(@types/node@22.7.4)(rollup@4.22.2)(typescript@5.6.2)(vite@5.4.7(@types/node@22.7.4)(lightningcss@1.26.0)(terser@5.33.0))
|
||||
vite: 5.4.7(@types/node@22.8.1)(lightningcss@1.26.0)(terser@5.33.0)
|
||||
vite-plugin-dts: 3.9.1(@types/node@22.8.1)(rollup@4.22.2)(typescript@5.6.2)(vite@5.4.7(@types/node@22.8.1)(lightningcss@1.26.0)(terser@5.33.0))
|
||||
transitivePeerDependencies:
|
||||
- '@types/node'
|
||||
- rollup
|
||||
- supports-color
|
||||
- typescript
|
||||
|
||||
'@microsoft/api-extractor-model@7.28.13(@types/node@22.7.4)':
|
||||
'@microsoft/api-extractor-model@7.28.13(@types/node@22.8.1)':
|
||||
dependencies:
|
||||
'@microsoft/tsdoc': 0.14.2
|
||||
'@microsoft/tsdoc-config': 0.16.2
|
||||
'@rushstack/node-core-library': 4.0.2(@types/node@22.7.4)
|
||||
'@rushstack/node-core-library': 4.0.2(@types/node@22.8.1)
|
||||
transitivePeerDependencies:
|
||||
- '@types/node'
|
||||
|
||||
'@microsoft/api-extractor-model@7.29.8(@types/node@22.7.4)':
|
||||
'@microsoft/api-extractor-model@7.29.8(@types/node@22.8.1)':
|
||||
dependencies:
|
||||
'@microsoft/tsdoc': 0.15.0
|
||||
'@microsoft/tsdoc-config': 0.17.0
|
||||
'@rushstack/node-core-library': 5.9.0(@types/node@22.7.4)
|
||||
'@rushstack/node-core-library': 5.9.0(@types/node@22.8.1)
|
||||
transitivePeerDependencies:
|
||||
- '@types/node'
|
||||
|
||||
'@microsoft/api-extractor@7.43.0(@types/node@22.7.4)':
|
||||
'@microsoft/api-extractor@7.43.0(@types/node@22.8.1)':
|
||||
dependencies:
|
||||
'@microsoft/api-extractor-model': 7.28.13(@types/node@22.7.4)
|
||||
'@microsoft/api-extractor-model': 7.28.13(@types/node@22.8.1)
|
||||
'@microsoft/tsdoc': 0.14.2
|
||||
'@microsoft/tsdoc-config': 0.16.2
|
||||
'@rushstack/node-core-library': 4.0.2(@types/node@22.7.4)
|
||||
'@rushstack/node-core-library': 4.0.2(@types/node@22.8.1)
|
||||
'@rushstack/rig-package': 0.5.2
|
||||
'@rushstack/terminal': 0.10.0(@types/node@22.7.4)
|
||||
'@rushstack/ts-command-line': 4.19.1(@types/node@22.7.4)
|
||||
'@rushstack/terminal': 0.10.0(@types/node@22.8.1)
|
||||
'@rushstack/ts-command-line': 4.19.1(@types/node@22.8.1)
|
||||
lodash: 4.17.21
|
||||
minimatch: 3.0.8
|
||||
resolve: 1.22.8
|
||||
@ -6560,15 +6569,15 @@ snapshots:
|
||||
transitivePeerDependencies:
|
||||
- '@types/node'
|
||||
|
||||
'@microsoft/api-extractor@7.47.9(@types/node@22.7.4)':
|
||||
'@microsoft/api-extractor@7.47.9(@types/node@22.8.1)':
|
||||
dependencies:
|
||||
'@microsoft/api-extractor-model': 7.29.8(@types/node@22.7.4)
|
||||
'@microsoft/api-extractor-model': 7.29.8(@types/node@22.8.1)
|
||||
'@microsoft/tsdoc': 0.15.0
|
||||
'@microsoft/tsdoc-config': 0.17.0
|
||||
'@rushstack/node-core-library': 5.9.0(@types/node@22.7.4)
|
||||
'@rushstack/node-core-library': 5.9.0(@types/node@22.8.1)
|
||||
'@rushstack/rig-package': 0.5.3
|
||||
'@rushstack/terminal': 0.14.2(@types/node@22.7.4)
|
||||
'@rushstack/ts-command-line': 4.22.8(@types/node@22.7.4)
|
||||
'@rushstack/terminal': 0.14.2(@types/node@22.8.1)
|
||||
'@rushstack/ts-command-line': 4.22.8(@types/node@22.8.1)
|
||||
lodash: 4.17.21
|
||||
minimatch: 3.0.8
|
||||
resolve: 1.22.8
|
||||
@ -6733,7 +6742,7 @@ snapshots:
|
||||
|
||||
'@rtsao/scc@1.1.0': {}
|
||||
|
||||
'@rushstack/node-core-library@4.0.2(@types/node@22.7.4)':
|
||||
'@rushstack/node-core-library@4.0.2(@types/node@22.8.1)':
|
||||
dependencies:
|
||||
fs-extra: 7.0.1
|
||||
import-lazy: 4.0.0
|
||||
@ -6742,9 +6751,9 @@ snapshots:
|
||||
semver: 7.5.4
|
||||
z-schema: 5.0.5
|
||||
optionalDependencies:
|
||||
'@types/node': 22.7.4
|
||||
'@types/node': 22.8.1
|
||||
|
||||
'@rushstack/node-core-library@5.9.0(@types/node@22.7.4)':
|
||||
'@rushstack/node-core-library@5.9.0(@types/node@22.8.1)':
|
||||
dependencies:
|
||||
ajv: 8.13.0
|
||||
ajv-draft-04: 1.0.0(ajv@8.13.0)
|
||||
@ -6755,7 +6764,7 @@ snapshots:
|
||||
resolve: 1.22.8
|
||||
semver: 7.5.4
|
||||
optionalDependencies:
|
||||
'@types/node': 22.7.4
|
||||
'@types/node': 22.8.1
|
||||
|
||||
'@rushstack/rig-package@0.5.2':
|
||||
dependencies:
|
||||
@ -6767,32 +6776,32 @@ snapshots:
|
||||
resolve: 1.22.8
|
||||
strip-json-comments: 3.1.1
|
||||
|
||||
'@rushstack/terminal@0.10.0(@types/node@22.7.4)':
|
||||
'@rushstack/terminal@0.10.0(@types/node@22.8.1)':
|
||||
dependencies:
|
||||
'@rushstack/node-core-library': 4.0.2(@types/node@22.7.4)
|
||||
'@rushstack/node-core-library': 4.0.2(@types/node@22.8.1)
|
||||
supports-color: 8.1.1
|
||||
optionalDependencies:
|
||||
'@types/node': 22.7.4
|
||||
'@types/node': 22.8.1
|
||||
|
||||
'@rushstack/terminal@0.14.2(@types/node@22.7.4)':
|
||||
'@rushstack/terminal@0.14.2(@types/node@22.8.1)':
|
||||
dependencies:
|
||||
'@rushstack/node-core-library': 5.9.0(@types/node@22.7.4)
|
||||
'@rushstack/node-core-library': 5.9.0(@types/node@22.8.1)
|
||||
supports-color: 8.1.1
|
||||
optionalDependencies:
|
||||
'@types/node': 22.7.4
|
||||
'@types/node': 22.8.1
|
||||
|
||||
'@rushstack/ts-command-line@4.19.1(@types/node@22.7.4)':
|
||||
'@rushstack/ts-command-line@4.19.1(@types/node@22.8.1)':
|
||||
dependencies:
|
||||
'@rushstack/terminal': 0.10.0(@types/node@22.7.4)
|
||||
'@rushstack/terminal': 0.10.0(@types/node@22.8.1)
|
||||
'@types/argparse': 1.0.38
|
||||
argparse: 1.0.10
|
||||
string-argv: 0.3.2
|
||||
transitivePeerDependencies:
|
||||
- '@types/node'
|
||||
|
||||
'@rushstack/ts-command-line@4.22.8(@types/node@22.7.4)':
|
||||
'@rushstack/ts-command-line@4.22.8(@types/node@22.8.1)':
|
||||
dependencies:
|
||||
'@rushstack/terminal': 0.14.2(@types/node@22.7.4)
|
||||
'@rushstack/terminal': 0.14.2(@types/node@22.8.1)
|
||||
'@types/argparse': 1.0.38
|
||||
argparse: 1.0.10
|
||||
string-argv: 0.3.2
|
||||
@ -6879,7 +6888,7 @@ snapshots:
|
||||
|
||||
'@swc/helpers@0.5.13':
|
||||
dependencies:
|
||||
tslib: 2.7.0
|
||||
tslib: 2.8.0
|
||||
optional: true
|
||||
|
||||
'@swc/jest@0.2.36(@swc/core@1.7.23(@swc/helpers@0.5.13))':
|
||||
@ -6930,7 +6939,7 @@ snapshots:
|
||||
|
||||
'@types/cross-spawn@6.0.6':
|
||||
dependencies:
|
||||
'@types/node': 22.7.4
|
||||
'@types/node': 22.8.1
|
||||
|
||||
'@types/debug@4.1.12':
|
||||
dependencies:
|
||||
@ -6950,15 +6959,15 @@ snapshots:
|
||||
'@types/glob@7.2.0':
|
||||
dependencies:
|
||||
'@types/minimatch': 5.1.2
|
||||
'@types/node': 22.7.4
|
||||
'@types/node': 22.8.1
|
||||
|
||||
'@types/graceful-fs@4.1.9':
|
||||
dependencies:
|
||||
'@types/node': 22.7.4
|
||||
'@types/node': 22.8.1
|
||||
|
||||
'@types/iarna__toml@2.0.5':
|
||||
dependencies:
|
||||
'@types/node': 22.7.4
|
||||
'@types/node': 22.8.1
|
||||
|
||||
'@types/istanbul-lib-coverage@2.0.6': {}
|
||||
|
||||
@ -6989,12 +6998,12 @@ snapshots:
|
||||
|
||||
'@types/ms@0.7.34': {}
|
||||
|
||||
'@types/node@18.19.54':
|
||||
'@types/node@18.19.59':
|
||||
dependencies:
|
||||
undici-types: 5.26.5
|
||||
optional: true
|
||||
|
||||
'@types/node@22.7.4':
|
||||
'@types/node@22.8.1':
|
||||
dependencies:
|
||||
undici-types: 6.19.8
|
||||
|
||||
@ -7845,13 +7854,13 @@ snapshots:
|
||||
crc-32: 1.2.2
|
||||
readable-stream: 3.6.2
|
||||
|
||||
create-jest@29.7.0(@types/node@22.7.4)(ts-node@10.9.2(@swc/core@1.7.23(@swc/helpers@0.5.13))(@types/node@22.7.4)(typescript@5.6.2)):
|
||||
create-jest@29.7.0(@types/node@22.8.1)(ts-node@10.9.2(@swc/core@1.7.23(@swc/helpers@0.5.13))(@types/node@22.8.1)(typescript@5.6.2)):
|
||||
dependencies:
|
||||
'@jest/types': 29.6.3
|
||||
chalk: 4.1.2
|
||||
exit: 0.1.2
|
||||
graceful-fs: 4.2.11
|
||||
jest-config: 29.7.0(@types/node@22.7.4)(ts-node@10.9.2(@swc/core@1.7.23(@swc/helpers@0.5.13))(@types/node@22.7.4)(typescript@5.6.2))
|
||||
jest-config: 29.7.0(@types/node@22.8.1)(ts-node@10.9.2(@swc/core@1.7.23(@swc/helpers@0.5.13))(@types/node@22.8.1)(typescript@5.6.2))
|
||||
jest-util: 29.7.0
|
||||
prompts: 2.4.2
|
||||
transitivePeerDependencies:
|
||||
@ -8787,7 +8796,7 @@ snapshots:
|
||||
signal-exit: 3.0.7
|
||||
strip-final-newline: 3.0.0
|
||||
|
||||
execa@9.4.0:
|
||||
execa@9.4.1:
|
||||
dependencies:
|
||||
'@sindresorhus/merge-streams': 4.0.0
|
||||
cross-spawn: 7.0.3
|
||||
@ -9463,7 +9472,7 @@ snapshots:
|
||||
'@jest/expect': 29.7.0
|
||||
'@jest/test-result': 29.7.0
|
||||
'@jest/types': 29.6.3
|
||||
'@types/node': 22.7.4
|
||||
'@types/node': 22.8.1
|
||||
chalk: 4.1.2
|
||||
co: 4.6.0
|
||||
dedent: 1.5.3
|
||||
@ -9483,16 +9492,16 @@ snapshots:
|
||||
- babel-plugin-macros
|
||||
- supports-color
|
||||
|
||||
jest-cli@29.7.0(@types/node@22.7.4)(ts-node@10.9.2(@swc/core@1.7.23(@swc/helpers@0.5.13))(@types/node@22.7.4)(typescript@5.6.2)):
|
||||
jest-cli@29.7.0(@types/node@22.8.1)(ts-node@10.9.2(@swc/core@1.7.23(@swc/helpers@0.5.13))(@types/node@22.8.1)(typescript@5.6.2)):
|
||||
dependencies:
|
||||
'@jest/core': 29.7.0(ts-node@10.9.2(@swc/core@1.7.23(@swc/helpers@0.5.13))(@types/node@22.7.4)(typescript@5.6.2))
|
||||
'@jest/core': 29.7.0(ts-node@10.9.2(@swc/core@1.7.23(@swc/helpers@0.5.13))(@types/node@22.8.1)(typescript@5.6.2))
|
||||
'@jest/test-result': 29.7.0
|
||||
'@jest/types': 29.6.3
|
||||
chalk: 4.1.2
|
||||
create-jest: 29.7.0(@types/node@22.7.4)(ts-node@10.9.2(@swc/core@1.7.23(@swc/helpers@0.5.13))(@types/node@22.7.4)(typescript@5.6.2))
|
||||
create-jest: 29.7.0(@types/node@22.8.1)(ts-node@10.9.2(@swc/core@1.7.23(@swc/helpers@0.5.13))(@types/node@22.8.1)(typescript@5.6.2))
|
||||
exit: 0.1.2
|
||||
import-local: 3.2.0
|
||||
jest-config: 29.7.0(@types/node@22.7.4)(ts-node@10.9.2(@swc/core@1.7.23(@swc/helpers@0.5.13))(@types/node@22.7.4)(typescript@5.6.2))
|
||||
jest-config: 29.7.0(@types/node@22.8.1)(ts-node@10.9.2(@swc/core@1.7.23(@swc/helpers@0.5.13))(@types/node@22.8.1)(typescript@5.6.2))
|
||||
jest-util: 29.7.0
|
||||
jest-validate: 29.7.0
|
||||
yargs: 17.7.2
|
||||
@ -9502,7 +9511,7 @@ snapshots:
|
||||
- supports-color
|
||||
- ts-node
|
||||
|
||||
jest-config@29.7.0(@types/node@22.7.4)(ts-node@10.9.2(@swc/core@1.7.23(@swc/helpers@0.5.13))(@types/node@22.7.4)(typescript@5.6.2)):
|
||||
jest-config@29.7.0(@types/node@22.8.1)(ts-node@10.9.2(@swc/core@1.7.23(@swc/helpers@0.5.13))(@types/node@22.8.1)(typescript@5.6.2)):
|
||||
dependencies:
|
||||
'@babel/core': 7.25.2
|
||||
'@jest/test-sequencer': 29.7.0
|
||||
@ -9527,8 +9536,8 @@ snapshots:
|
||||
slash: 3.0.0
|
||||
strip-json-comments: 3.1.1
|
||||
optionalDependencies:
|
||||
'@types/node': 22.7.4
|
||||
ts-node: 10.9.2(@swc/core@1.7.23(@swc/helpers@0.5.13))(@types/node@22.7.4)(typescript@5.6.2)
|
||||
'@types/node': 22.8.1
|
||||
ts-node: 10.9.2(@swc/core@1.7.23(@swc/helpers@0.5.13))(@types/node@22.8.1)(typescript@5.6.2)
|
||||
transitivePeerDependencies:
|
||||
- babel-plugin-macros
|
||||
- supports-color
|
||||
@ -9557,7 +9566,7 @@ snapshots:
|
||||
'@jest/environment': 29.7.0
|
||||
'@jest/fake-timers': 29.7.0
|
||||
'@jest/types': 29.6.3
|
||||
'@types/node': 22.7.4
|
||||
'@types/node': 22.8.1
|
||||
jest-mock: 29.7.0
|
||||
jest-util: 29.7.0
|
||||
|
||||
@ -9567,7 +9576,7 @@ snapshots:
|
||||
dependencies:
|
||||
'@jest/types': 29.6.3
|
||||
'@types/graceful-fs': 4.1.9
|
||||
'@types/node': 22.7.4
|
||||
'@types/node': 22.8.1
|
||||
anymatch: 3.1.3
|
||||
fb-watchman: 2.0.2
|
||||
graceful-fs: 4.2.11
|
||||
@ -9606,7 +9615,7 @@ snapshots:
|
||||
jest-mock@29.7.0:
|
||||
dependencies:
|
||||
'@jest/types': 29.6.3
|
||||
'@types/node': 22.7.4
|
||||
'@types/node': 22.8.1
|
||||
jest-util: 29.7.0
|
||||
|
||||
jest-pnp-resolver@1.2.3(jest-resolve@29.7.0):
|
||||
@ -9641,7 +9650,7 @@ snapshots:
|
||||
'@jest/test-result': 29.7.0
|
||||
'@jest/transform': 29.7.0
|
||||
'@jest/types': 29.6.3
|
||||
'@types/node': 22.7.4
|
||||
'@types/node': 22.8.1
|
||||
chalk: 4.1.2
|
||||
emittery: 0.13.1
|
||||
graceful-fs: 4.2.11
|
||||
@ -9669,7 +9678,7 @@ snapshots:
|
||||
'@jest/test-result': 29.7.0
|
||||
'@jest/transform': 29.7.0
|
||||
'@jest/types': 29.6.3
|
||||
'@types/node': 22.7.4
|
||||
'@types/node': 22.8.1
|
||||
chalk: 4.1.2
|
||||
cjs-module-lexer: 1.4.1
|
||||
collect-v8-coverage: 1.0.2
|
||||
@ -9715,7 +9724,7 @@ snapshots:
|
||||
jest-util@29.7.0:
|
||||
dependencies:
|
||||
'@jest/types': 29.6.3
|
||||
'@types/node': 22.7.4
|
||||
'@types/node': 22.8.1
|
||||
chalk: 4.1.2
|
||||
ci-info: 3.9.0
|
||||
graceful-fs: 4.2.11
|
||||
@ -9734,7 +9743,7 @@ snapshots:
|
||||
dependencies:
|
||||
'@jest/test-result': 29.7.0
|
||||
'@jest/types': 29.6.3
|
||||
'@types/node': 22.7.4
|
||||
'@types/node': 22.8.1
|
||||
ansi-escapes: 4.3.2
|
||||
chalk: 4.1.2
|
||||
emittery: 0.13.1
|
||||
@ -9743,17 +9752,17 @@ snapshots:
|
||||
|
||||
jest-worker@29.7.0:
|
||||
dependencies:
|
||||
'@types/node': 22.7.4
|
||||
'@types/node': 22.8.1
|
||||
jest-util: 29.7.0
|
||||
merge-stream: 2.0.0
|
||||
supports-color: 8.1.1
|
||||
|
||||
jest@29.7.0(@types/node@22.7.4)(ts-node@10.9.2(@swc/core@1.7.23(@swc/helpers@0.5.13))(@types/node@22.7.4)(typescript@5.6.2)):
|
||||
jest@29.7.0(@types/node@22.8.1)(ts-node@10.9.2(@swc/core@1.7.23(@swc/helpers@0.5.13))(@types/node@22.8.1)(typescript@5.6.2)):
|
||||
dependencies:
|
||||
'@jest/core': 29.7.0(ts-node@10.9.2(@swc/core@1.7.23(@swc/helpers@0.5.13))(@types/node@22.7.4)(typescript@5.6.2))
|
||||
'@jest/core': 29.7.0(ts-node@10.9.2(@swc/core@1.7.23(@swc/helpers@0.5.13))(@types/node@22.8.1)(typescript@5.6.2))
|
||||
'@jest/types': 29.6.3
|
||||
import-local: 3.2.0
|
||||
jest-cli: 29.7.0(@types/node@22.7.4)(ts-node@10.9.2(@swc/core@1.7.23(@swc/helpers@0.5.13))(@types/node@22.7.4)(typescript@5.6.2))
|
||||
jest-cli: 29.7.0(@types/node@22.8.1)(ts-node@10.9.2(@swc/core@1.7.23(@swc/helpers@0.5.13))(@types/node@22.8.1)(typescript@5.6.2))
|
||||
transitivePeerDependencies:
|
||||
- '@types/node'
|
||||
- babel-plugin-macros
|
||||
@ -10255,7 +10264,7 @@ snapshots:
|
||||
|
||||
msvc-dev-cmd@https://codeload.github.com/aminya/msvc-dev-cmd/tar.gz/c01f519bd995460228ed3dec4df51df92dc290fd:
|
||||
dependencies:
|
||||
'@actions/core': 1.10.1
|
||||
'@actions/core': 1.11.1
|
||||
|
||||
muggle-string@0.3.1: {}
|
||||
|
||||
@ -10462,7 +10471,7 @@ snapshots:
|
||||
escape-string-regexp: 5.0.0
|
||||
replace-ext: 2.0.0
|
||||
optionalDependencies:
|
||||
'@types/node': 18.19.54
|
||||
'@types/node': 18.19.59
|
||||
'@types/replace-ext': 2.0.2
|
||||
path-browserify: 1.0.1
|
||||
process: 0.11.10
|
||||
@ -10817,7 +10826,7 @@ snapshots:
|
||||
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/core': 1.11.1
|
||||
'@actions/exec': 1.1.1
|
||||
'@actions/glob': 0.4.0
|
||||
'@actions/http-client': 2.2.3(patch_hash=gqcf2jay7nqqezf3jni6mxu74u)
|
||||
@ -11140,14 +11149,14 @@ snapshots:
|
||||
dependencies:
|
||||
typescript: 5.6.2
|
||||
|
||||
ts-node@10.9.2(@swc/core@1.7.23(@swc/helpers@0.5.13))(@types/node@22.7.4)(typescript@5.6.2):
|
||||
ts-node@10.9.2(@swc/core@1.7.23(@swc/helpers@0.5.13))(@types/node@22.8.1)(typescript@5.6.2):
|
||||
dependencies:
|
||||
'@cspotcode/source-map-support': 0.8.1
|
||||
'@tsconfig/node10': 1.0.11
|
||||
'@tsconfig/node12': 1.0.11
|
||||
'@tsconfig/node14': 1.0.3
|
||||
'@tsconfig/node16': 1.0.4
|
||||
'@types/node': 22.7.4
|
||||
'@types/node': 22.8.1
|
||||
acorn: 8.12.1
|
||||
acorn-walk: 8.3.4
|
||||
arg: 4.1.3
|
||||
@ -11180,6 +11189,9 @@ snapshots:
|
||||
|
||||
tslib@2.7.0: {}
|
||||
|
||||
tslib@2.8.0:
|
||||
optional: true
|
||||
|
||||
tsutils@3.21.0(typescript@5.6.2):
|
||||
dependencies:
|
||||
tslib: 1.14.1
|
||||
@ -11365,14 +11377,14 @@ snapshots:
|
||||
|
||||
validator@13.12.0: {}
|
||||
|
||||
vite-plugin-babel@1.2.0(@babel/core@7.25.2)(vite@5.4.7(@types/node@22.7.4)(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.8.1)(lightningcss@1.26.0)(terser@5.33.0)):
|
||||
dependencies:
|
||||
'@babel/core': 7.25.2
|
||||
vite: 5.4.7(@types/node@22.7.4)(lightningcss@1.26.0)(terser@5.33.0)
|
||||
vite: 5.4.7(@types/node@22.8.1)(lightningcss@1.26.0)(terser@5.33.0)
|
||||
|
||||
vite-plugin-dts@3.9.1(@types/node@22.7.4)(rollup@4.22.2)(typescript@5.6.2)(vite@5.4.7(@types/node@22.7.4)(lightningcss@1.26.0)(terser@5.33.0)):
|
||||
vite-plugin-dts@3.9.1(@types/node@22.8.1)(rollup@4.22.2)(typescript@5.6.2)(vite@5.4.7(@types/node@22.8.1)(lightningcss@1.26.0)(terser@5.33.0)):
|
||||
dependencies:
|
||||
'@microsoft/api-extractor': 7.43.0(@types/node@22.7.4)
|
||||
'@microsoft/api-extractor': 7.43.0(@types/node@22.8.1)
|
||||
'@rollup/pluginutils': 5.1.0(rollup@4.22.2)
|
||||
'@vue/language-core': 1.8.27(typescript@5.6.2)
|
||||
debug: 4.3.7
|
||||
@ -11381,19 +11393,19 @@ snapshots:
|
||||
typescript: 5.6.2
|
||||
vue-tsc: 1.8.27(typescript@5.6.2)
|
||||
optionalDependencies:
|
||||
vite: 5.4.7(@types/node@22.7.4)(lightningcss@1.26.0)(terser@5.33.0)
|
||||
vite: 5.4.7(@types/node@22.8.1)(lightningcss@1.26.0)(terser@5.33.0)
|
||||
transitivePeerDependencies:
|
||||
- '@types/node'
|
||||
- rollup
|
||||
- supports-color
|
||||
|
||||
vite@5.4.7(@types/node@22.7.4)(lightningcss@1.26.0)(terser@5.33.0):
|
||||
vite@5.4.7(@types/node@22.8.1)(lightningcss@1.26.0)(terser@5.33.0):
|
||||
dependencies:
|
||||
esbuild: 0.21.5
|
||||
postcss: 8.4.47
|
||||
rollup: 4.22.2
|
||||
optionalDependencies:
|
||||
'@types/node': 22.7.4
|
||||
'@types/node': 22.8.1
|
||||
fsevents: 2.3.3
|
||||
lightningcss: 1.26.0
|
||||
terser: 5.33.0
|
||||
@ -11491,6 +11503,10 @@ snapshots:
|
||||
dependencies:
|
||||
isexe: 3.1.1
|
||||
|
||||
which@5.0.0:
|
||||
dependencies:
|
||||
isexe: 3.1.1
|
||||
|
||||
widest-line@3.1.0:
|
||||
dependencies:
|
||||
string-width: 4.2.3
|
||||
|
@ -1,4 +1,5 @@
|
||||
import { GITHUB_ACTIONS } from "ci-info"
|
||||
import ciInfo from "ci-info"
|
||||
const { GITHUB_ACTIONS } = ciInfo
|
||||
import { cleanupTmpDir, setupTmpDir, testBin } from "../../utils/tests/test-helpers.js"
|
||||
import { getVersion } from "../../versions/versions.js"
|
||||
import { setupCmake } from "../cmake.js"
|
||||
|
@ -1,6 +1,7 @@
|
||||
import path from "path"
|
||||
import { fileURLToPath } from "url"
|
||||
import { GITHUB_ACTIONS } from "ci-info"
|
||||
import ciInfo from "ci-info"
|
||||
const { GITHUB_ACTIONS } = ciInfo
|
||||
import { error, info, warning } from "ci-log"
|
||||
import { addEnv } from "envosman"
|
||||
import { execa } from "execa"
|
||||
|
@ -1,6 +1,7 @@
|
||||
import path, { join } from "path"
|
||||
import { fileURLToPath } from "url"
|
||||
import { GITHUB_ACTIONS } from "ci-info"
|
||||
import ciInfo from "ci-info"
|
||||
const { GITHUB_ACTIONS } = ciInfo
|
||||
import { info } from "ci-log"
|
||||
import { addEnv, addPath } from "envosman"
|
||||
import { pathExists } from "path-exists"
|
||||
|
@ -2,7 +2,8 @@ import { tmpdir } from "os"
|
||||
import path, { delimiter, join } from "path"
|
||||
import { fileURLToPath } from "url"
|
||||
import { execRootSync } from "admina"
|
||||
import { GITHUB_ACTIONS } from "ci-info"
|
||||
import ciInfo from "ci-info"
|
||||
const { GITHUB_ACTIONS } = ciInfo
|
||||
import { info, warning } from "ci-log"
|
||||
import { addEnv } from "envosman"
|
||||
import memoize from "memoizee"
|
||||
|
@ -2,7 +2,8 @@ import path, { join } from "path"
|
||||
import { fileURLToPath } from "url"
|
||||
// eslint-disable-next-line @typescript-eslint/ban-ts-comment
|
||||
// @ts-ignore
|
||||
import { GITHUB_ACTIONS } from "ci-info"
|
||||
import ciInfo from "ci-info"
|
||||
const { GITHUB_ACTIONS } = ciInfo
|
||||
import { error, info, warning } from "ci-log"
|
||||
import { findVcvarsall, vsversion_to_versionnumber } from "msvc-dev-cmd/lib.js"
|
||||
import { pathExists } from "path-exists"
|
||||
|
@ -1,4 +1,5 @@
|
||||
import { GITHUB_ACTIONS } from "ci-info"
|
||||
import ciInfo from "ci-info"
|
||||
const { GITHUB_ACTIONS } = ciInfo
|
||||
import { cleanupTmpDir, setupTmpDir, testBin } from "../../utils/tests/test-helpers.js"
|
||||
import { getVersion } from "../../versions/versions.js"
|
||||
import { setupNinja } from "../ninja.js"
|
||||
|
@ -1,4 +1,5 @@
|
||||
import { GITHUB_ACTIONS } from "ci-info"
|
||||
import ciInfo from "ci-info"
|
||||
const { GITHUB_ACTIONS } = ciInfo
|
||||
import { cleanupTmpDir, setupTmpDir, testBin } from "../../utils/tests/test-helpers.js"
|
||||
import { getVersion } from "../../versions/versions.js"
|
||||
import { setupPowershell } from "../powershell.js"
|
||||
|
@ -1,4 +1,5 @@
|
||||
import { GITHUB_ACTIONS } from "ci-info"
|
||||
import ciInfo from "ci-info"
|
||||
const { GITHUB_ACTIONS } = ciInfo
|
||||
import { info } from "ci-log"
|
||||
import { ubuntuVersion } from "../../utils/env/ubuntu_version.js"
|
||||
import { cleanupTmpDir, setupTmpDir, testBin } from "../../utils/tests/test-helpers.js"
|
||||
|
@ -1,7 +1,8 @@
|
||||
import path, { join } from "path"
|
||||
import { fileURLToPath } from "url"
|
||||
import { debug } from "@actions/core"
|
||||
import { GITHUB_ACTIONS } from "ci-info"
|
||||
import ciInfo from "ci-info"
|
||||
const { GITHUB_ACTIONS } = ciInfo
|
||||
import { info, warning } from "ci-log"
|
||||
import { pathExists } from "path-exists"
|
||||
import { findPyPyVersion } from "setup-python/src/find-pypy.js"
|
||||
|
@ -2,7 +2,8 @@ import assert from "assert"
|
||||
import { homedir } from "os"
|
||||
import { dirname, join, parse as pathParse } from "path"
|
||||
import { getExecOutput } from "@actions/exec"
|
||||
import { GITHUB_ACTIONS } from "ci-info"
|
||||
import ciInfo from "ci-info"
|
||||
const { GITHUB_ACTIONS } = ciInfo
|
||||
import { info, warning } from "ci-log"
|
||||
import { addPath } from "envosman"
|
||||
import { execa } from "execa"
|
||||
|
@ -1,4 +1,5 @@
|
||||
import { GITHUB_ACTIONS } from "ci-info"
|
||||
import ciInfo from "ci-info"
|
||||
const { GITHUB_ACTIONS } = ciInfo
|
||||
import { cleanupTmpDir, setupTmpDir, testBin } from "../../utils/tests/test-helpers.js"
|
||||
import { getVersion } from "../../versions/versions.js"
|
||||
import { setupTask } from "../task.js"
|
||||
|
2
src/utils/env/arch.ts
vendored
2
src/utils/env/arch.ts
vendored
@ -1,4 +1,4 @@
|
||||
export const x86_64 = ["x64", "amd64", "x86_64", "win64", "64"]
|
||||
export const x86_64 = ["x64", "amd64", "x86_64", "win64", "64", "amd64_x86"]
|
||||
export const x86 = ["x86", "i386", "ia32", "win32", "32", "x32"]
|
||||
export const arm64 = ["aarch64", "arm64", "woa64", "arm"]
|
||||
export const armv7 = ["armv7", "armv7a"]
|
||||
|
@ -1,7 +1,8 @@
|
||||
import { tmpdir } from "os"
|
||||
import { basename, join } from "path"
|
||||
import { cacheDir, downloadTool, find } from "@actions/tool-cache"
|
||||
import { GITHUB_ACTIONS } from "ci-info"
|
||||
import ciInfo from "ci-info"
|
||||
const { GITHUB_ACTIONS } = ciInfo
|
||||
import { info, warning } from "ci-log"
|
||||
import { addPath } from "envosman"
|
||||
import { chmod } from "fs/promises"
|
||||
|
@ -18,8 +18,7 @@ export const DefaultVersions: Record<string, string | undefined> = {
|
||||
"clang-format": defaultLLVM,
|
||||
clangformat: defaultLLVM,
|
||||
ninja: "1.12.1", // https://github.com/ninja-build/ninja/releases
|
||||
cmake: "3.30.3", // https://github.com/Kitware/CMake/releases
|
||||
conan: "1.65.0", // 2.7.1 // https://github.com/conan-io/conan/releases
|
||||
cmake: "3.30.4", // https://github.com/Kitware/CMake/releases
|
||||
meson: "1.5.2", // https://github.com/mesonbuild/meson/releases
|
||||
kcov: "42", // https://github.com/SimonKagstrom/kcov/releases
|
||||
task: "3.39.2", // https://github.com/go-task/task/releases
|
||||
|
Loading…
Reference in New Issue
Block a user