Merge pull request #157 from aminya/update

This commit is contained in:
Amin Yahyaabadi 2023-01-15 01:48:48 -08:00 committed by GitHub
commit 215d816608
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
16 changed files with 1217 additions and 994 deletions

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

@ -71,7 +71,7 @@
"quote-unquote": "^1.0.0", "quote-unquote": "^1.0.0",
"retry-as-promised": "^7.0.3", "retry-as-promised": "^7.0.3",
"semver": "7.3.8", "semver": "7.3.8",
"setup-python": "github:actions/setup-python#v4.3.1", "setup-python": "github:actions/setup-python#v4.5.0",
"time-delta": "github:aminya/time-delta#69d91a41cef28e569be9a2991129f5f7d1f0d00e", "time-delta": "github:aminya/time-delta#69d91a41cef28e569be9a2991129f5f7d1f0d00e",
"ubuntu-version": "^2.0.0", "ubuntu-version": "^2.0.0",
"untildify-user": "workspace:1.0.0", "untildify-user": "workspace:1.0.0",
@ -80,28 +80,28 @@
}, },
"devDependencies": { "devDependencies": {
"@types/cross-spawn": "^6.0.2", "@types/cross-spawn": "^6.0.2",
"@types/jest": "^29.2.4", "@types/jest": "^29.2.5",
"@types/mri": "^1.1.1", "@types/mri": "^1.1.1",
"@types/node": "^18.11.15", "@types/node": "^18.11.18",
"@types/semver": "^7.3.13", "@types/semver": "^7.3.13",
"@types/which": "^2.0.1", "@types/which": "^2.0.1",
"caxa": "^3.0.1", "caxa": "^3.0.1",
"cross-env": "7.0.3", "cross-env": "7.0.3",
"cross-spawn": "^7.0.3", "cross-spawn": "^7.0.3",
"cspell": "^6.17.0", "cspell": "^6.18.1",
"eslint": "^8.29.0", "eslint": "^8.32.0",
"eslint-config-atomic": "^1.18.1", "eslint-config-atomic": "^1.18.2",
"gen-readme": "^1.6.0", "gen-readme": "^1.6.0",
"jest": "^29.3.1", "jest": "^29.3.1",
"npm-check-updates": "^16.6.0", "npm-check-updates": "^16.6.2",
"npm-run-all2": "^6.0.4", "npm-run-all2": "^6.0.4",
"parcel": "2.8.1", "parcel": "2.8.2",
"prettier": "2.7.1", "prettier": "2.7.1",
"prettier-config-atomic": "^3.1.0", "prettier-config-atomic": "^3.1.0",
"readme-md-generator": "^1.0.0", "readme-md-generator": "^1.0.0",
"shx": "0.3.4", "shx": "0.3.4",
"terser-config-atomic": "^0.1.1", "terser-config-atomic": "^0.1.1",
"ts-jest": "^29.0.3", "ts-jest": "^29.0.5",
"ts-node": "^10.9.1", "ts-node": "^10.9.1",
"ts-readme": "^1.1.3", "ts-readme": "^1.1.3",
"typescript": "^4.9.4" "typescript": "^4.9.4"

File diff suppressed because it is too large Load Diff

View File

@ -93,7 +93,7 @@ async function addPathSystem(path: string) {
case "win32": { case "win32": {
// We do not use `execa.sync(`setx PATH "${path};%PATH%"`)` because of its character limit and also because %PATH% is different for user and system // We do not use `execa.sync(`setx PATH "${path};%PATH%"`)` because of its character limit and also because %PATH% is different for user and system
await execPowershell( await execPowershell(
`$USER_PATH=([Environment]::GetEnvironmentVariable("patha", "User")); [Environment]::SetEnvironmentVariable("patha", "${path};$USER_PATH", "User")` `$USER_PATH=([Environment]::GetEnvironmentVariable("PATH", "User")); [Environment]::SetEnvironmentVariable("PATH", "${path};$USER_PATH", "User")`
) )
info(`"${path}" was added to the PATH.`) info(`"${path}" was added to the PATH.`)
return return

View File

@ -20,13 +20,13 @@ export const DefaultVersions: Record<string, string> = {
clangtidy: getLLVMDefault(), clangtidy: getLLVMDefault(),
clangformat: getLLVMDefault(), clangformat: getLLVMDefault(),
ninja: "1.11.1", // https://github.com/ninja-build/ninja/releases ninja: "1.11.1", // https://github.com/ninja-build/ninja/releases
cmake: "3.25.0", // https://github.com/Kitware/CMake/releases cmake: "3.25.1", // https://github.com/Kitware/CMake/releases
gcovr: "5.2", // https://pypi.org/project/gcovr/ gcovr: "5.2", // https://pypi.org/project/gcovr/
conan: "1.54.0", // https://github.com/conan-io/conan/releases conan: "1.57.0", // https://github.com/conan-io/conan/releases
meson: "0.64.0", // https://github.com/mesonbuild/meson/releases meson: "1.0.0", // https://github.com/mesonbuild/meson/releases
kcov: "40", // https://github.com/SimonKagstrom/kcov/releases kcov: "40", // https://github.com/SimonKagstrom/kcov/releases
task: "3.18.0", // https://github.com/go-task/task/releases task: "3.20.0", // https://github.com/go-task/task/releases
doxygen: isArch() ? "1.9.5-1" : "1.9.5", // 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/ doxygen: isArch() ? "1.9.6-1" : "1.9.6", // 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: isArch() ? "11" : "12", // https://github.com/brechtsanders/winlibs_mingw/releases and // https://packages.ubuntu.com/search?suite=all&arch=any&searchon=names&keywords=gcc gcc: isArch() ? "11" : "12", // https://github.com/brechtsanders/winlibs_mingw/releases and // https://packages.ubuntu.com/search?suite=all&arch=any&searchon=names&keywords=gcc
} }
@ -68,7 +68,7 @@ export const DefaultLinuxVersion: Record<string, Record<number, string>> = {
18: "5.0", 18: "5.0",
}, },
meson: { meson: {
20: "0.63.3", 20: "1.0.0",
18: "0.61.4", 18: "0.61.4",
}, },
nala: { nala: {