mirror of https://github.com/aminya/setup-cpp
Merge pull request #102 from aminya/updates [skip ci]
This commit is contained in:
commit
ff922a9c5e
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
18
package.json
18
package.json
|
@ -57,7 +57,7 @@
|
|||
"msvc-dev-cmd": "github:aminya/msvc-dev-cmd#9f672c1",
|
||||
"numerous": "1.0.3",
|
||||
"semver": "7.3.7",
|
||||
"setup-python": "github:actions/setup-python#f0bcf8be037eba11327da6eaf40cd99a2a092494",
|
||||
"setup-python": "github:actions/setup-python#c474c82340438924daab9282d07300bfe7e3692d",
|
||||
"time-delta": "github:aminya/time-delta#69d91a41cef28e569be9a2991129f5f7d1f0d00e",
|
||||
"ubuntu-version": "^2.0.0",
|
||||
"untildify": "^4.0.0",
|
||||
|
@ -65,27 +65,27 @@
|
|||
},
|
||||
"devDependencies": {
|
||||
"@types/cross-spawn": "^6.0.2",
|
||||
"@types/jest": "^28.1.3",
|
||||
"@types/jest": "^28.1.6",
|
||||
"@types/mri": "^1.1.1",
|
||||
"@types/node": "^18.0.0",
|
||||
"@types/node": "^18.0.5",
|
||||
"@types/semver": "^7.3.10",
|
||||
"@types/which": "^2.0.1",
|
||||
"caxa": "^2.1.0",
|
||||
"cross-env": "7.0.3",
|
||||
"cross-spawn": "^7.0.3",
|
||||
"cspell": "^6.1.2",
|
||||
"eslint": "^8.18.0",
|
||||
"cspell": "^6.2.3",
|
||||
"eslint": "^8.20.0",
|
||||
"eslint-config-atomic": "^1.18.1",
|
||||
"jest": "^28.1.1",
|
||||
"jest": "^28.1.3",
|
||||
"loose-ts-check": "^1.2.0",
|
||||
"npm-check-updates": "^14.1.1",
|
||||
"npm-check-updates": "^15.3.4",
|
||||
"npm-run-all2": "^6.0.1",
|
||||
"parcel": "2.6.2",
|
||||
"prettier": "2.7.1",
|
||||
"prettier-config-atomic": "^3.0.10",
|
||||
"shx": "0.3.4",
|
||||
"terser-config-atomic": "^0.1.1",
|
||||
"ts-jest": "^28.0.5",
|
||||
"ts-jest": "^28.0.7",
|
||||
"typescript": "^4.7.4"
|
||||
},
|
||||
"engines": {
|
||||
|
@ -113,7 +113,7 @@
|
|||
"pnpm": {
|
||||
"overrides": {
|
||||
"semver": "7.3.7",
|
||||
"eslint": "^8.18.0",
|
||||
"eslint": "^8.20.0",
|
||||
"prettier": "2.7.1",
|
||||
"lru-cache": "7.8.1",
|
||||
"core-js": "*",
|
||||
|
|
2155
pnpm-lock.yaml
2155
pnpm-lock.yaml
File diff suppressed because it is too large
Load Diff
|
@ -11,10 +11,10 @@ const DefaultVersions: Record<string, string> = {
|
|||
ninja: "1.11.0", // https://github.com/ninja-build/ninja/releases
|
||||
cmake: "3.23.2", // https://github.com/Kitware/CMake/releases
|
||||
gcovr: "5.1", // https://pypi.org/project/gcovr/
|
||||
conan: "1.48.2", // https://github.com/conan-io/conan/releases
|
||||
meson: "0.62.2", // https://github.com/mesonbuild/meson/releases
|
||||
conan: "1.50.0", // https://github.com/conan-io/conan/releases
|
||||
meson: "0.63.0", // https://github.com/mesonbuild/meson/releases
|
||||
kcov: "40", // https://github.com/SimonKagstrom/kcov/releases
|
||||
task: "3.12.1", // https://github.com/go-task/task/releases
|
||||
task: "3.14.0", // https://github.com/go-task/task/releases
|
||||
doxygen: isArch() ? "1.9.3-1" : "1.9.4", // https://www.doxygen.nl/download.html // https://packages.ubuntu.com/search?suite=all&arch=any&searchon=names&keywords=doxygen // https://formulae.brew.sh/formula/doxygen // https://archlinux.org/packages/extra/x86_64/doxygen/
|
||||
gcc: "11", // https://github.com/brechtsanders/winlibs_mingw/releases and // https://packages.ubuntu.com/search?suite=all&arch=any&searchon=names&keywords=gcc
|
||||
}
|
||||
|
@ -46,7 +46,7 @@ const DefaultUbuntuVersion: Record<string, Record<number, string>> = {
|
|||
18: "5.0",
|
||||
},
|
||||
meson: {
|
||||
20: "0.62.1",
|
||||
20: "0.63.0",
|
||||
18: "0.61.4",
|
||||
},
|
||||
doxygen: {
|
||||
|
|
|
@ -68,6 +68,9 @@ export const VERSIONS: Set<string> = getVersions([
|
|||
"14.0.1",
|
||||
"14.0.2",
|
||||
"14.0.3",
|
||||
"14.0.4",
|
||||
"14.0.5",
|
||||
"14.0.6",
|
||||
])
|
||||
|
||||
//================================================
|
||||
|
|
Loading…
Reference in New Issue