File tree 7 files changed +78
-59
lines changed
7 files changed +78
-59
lines changed Original file line number Diff line number Diff line change @@ -165,6 +165,7 @@ build:windows:
165
165
- windows
166
166
before_script :
167
167
- mkdir -Force "$CI_PROJECT_DIR/tmp"
168
+ - Import-Module $env:ChocolateyInstall\helpers\chocolateyProfile.psm1
168
169
script :
169
170
- .\scripts\choco-install.ps1
170
171
- refreshenv
Original file line number Diff line number Diff line change 37
37
"bench" : " tsc -p ./tsconfig.build.json && shx rm -rf ./benches/results && tsx ./benches/index.ts"
38
38
},
39
39
"devDependencies" : {
40
- "@swc/core" : " ^ 1.3.76 " ,
40
+ "@swc/core" : " 1.3.82 " ,
41
41
"@swc/jest" : " ^0.2.29" ,
42
42
"@types/jest" : " ^29.5.2" ,
43
- "@types/node" : " ^18.15.0 " ,
43
+ "@types/node" : " ^20.5.7 " ,
44
44
"@typescript-eslint/eslint-plugin" : " ^5.61.0" ,
45
45
"@typescript-eslint/parser" : " ^5.61.0" ,
46
46
"benny" : " ^3.7.1" ,
Original file line number Diff line number Diff line change 1
1
import (
2
- let rev = "f294325aed382b66c7a188482101b0f336d1d7db " ; in
2
+ let rev = "ea5234e7073d5f44728c499192544a84244bf35a " ; in
3
3
builtins . fetchTarball "https://github.com/NixOS/nixpkgs/archive/${ rev } .tar.gz"
4
4
)
Original file line number Diff line number Diff line change @@ -10,5 +10,5 @@ export HOMEBREW_NO_INSTALLED_DEPENDENTS_CHECK=1
10
10
export HOMEBREW_NO_AUTO_UPDATE=1
11
11
export HOMEBREW_NO_ANALYTICS=1
12
12
13
- brew install node@18
14
- brew link --overwrite node@18
13
+ brew reinstall node@20
14
+ brew link --overwrite node@20
Original file line number Diff line number Diff line change @@ -21,10 +21,10 @@ if ( $null -eq $env:ChocolateyInstall ) {
21
21
New-Item - Path " ${PSScriptRoot} \..\tmp\chocolatey" - ItemType " directory" - ErrorAction:SilentlyContinue
22
22
choco source add -- name= " cache" -- source= " ${PSScriptRoot} \..\tmp\chocolatey" -- priority= 1
23
23
24
- # Install nodejs v18.15.0 (will use cache if exists)
25
- $nodejs = " nodejs.install "
26
- choco install " $nodejs " -- version= " 18.15.0 " -- require- checksums - y
24
+ # Install nodejs v20.5.1 (will use cache if exists)
25
+ $nodejs = " nodejs"
26
+ choco install " $nodejs " -- version= " 20.5.1 " -- require- checksums - y
27
27
# Internalise nodejs to cache if doesn't exist
28
- if ( -not (Test-Path - Path " ${PSScriptRoot} \..\tmp\chocolatey\$nodejs \$nodejs .18.15.0 .nupkg" - PathType Leaf) ) {
28
+ if ( -not (Test-Path - Path " ${PSScriptRoot} \..\tmp\chocolatey\$nodejs \$nodejs .20.5.1 .nupkg" - PathType Leaf) ) {
29
29
Save-ChocoPackage - PackageName $nodejs
30
30
}
Original file line number Diff line number Diff line change 3
3
with pkgs ;
4
4
mkShell {
5
5
nativeBuildInputs = [
6
- nodejs
6
+ nodejs_20
7
7
shellcheck
8
8
gitAndTools . gh
9
9
] ;
You can’t perform that action at this time.
0 commit comments