Skip to content

Commit c162788

Browse files
CMCDragonkaiaddievo
authored andcommitted
ci: updated to node 20
WIPO Adding matrix packages to package.json WIP Changing dir WIP * Errors added new error type and sig dec for RPCServer RPCServer rewritten without PK dependency. * New utils with isObj and promise methods implemented middleware import fix WIP * Apparently fixing RPCServer.ts fixed all of import issues of RPCClient.ts as well, and client has no PK related imports now, so its fixed? #COPE WIP cping tests from pk to js-rpc experimental Decorators and changing logger version experimental Decorators and changing logger version sleep in utils.ts WIP Test resolve wip wip
1 parent ed54a37 commit c162788

24 files changed

+6105
-6
lines changed

package.json

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -54,5 +54,14 @@
5454
"tsconfig-paths": "^3.9.0",
5555
"typedoc": "^0.23.21",
5656
"typescript": "^4.9.3"
57+
},
58+
"dependencies": {
59+
"@fast-check/jest": "^1.7.2",
60+
"@matrixai/async-init": "^1.9.1",
61+
"@matrixai/contexts": "^1.2.0",
62+
"@matrixai/id": "^3.3.6",
63+
"@matrixai/logger": "^3.1.0",
64+
"@streamparser/json": "^0.0.17",
65+
"ix": "^5.0.0"
5766
}
5867
}

scripts/brew-install.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,5 +10,5 @@ export HOMEBREW_NO_INSTALLED_DEPENDENTS_CHECK=1
1010
export HOMEBREW_NO_AUTO_UPDATE=1
1111
export HOMEBREW_NO_ANALYTICS=1
1212

13-
brew install node@18
14-
brew link --overwrite node@18
13+
brew reinstall node@20
14+
brew link --overwrite node@20

scripts/choco-install.ps1

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,10 +21,10 @@ if ( $null -eq $env:ChocolateyInstall ) {
2121
New-Item -Path "${PSScriptRoot}\..\tmp\chocolatey" -ItemType "directory" -ErrorAction:SilentlyContinue
2222
choco source add --name="cache" --source="${PSScriptRoot}\..\tmp\chocolatey" --priority=1
2323

24-
# Install nodejs v18.15.0 (will use cache if exists)
24+
# Install nodejs v20.5.1 (will use cache if exists)
2525
$nodejs = "nodejs.install"
26-
choco install "$nodejs" --version="18.15.0" --require-checksums -y
26+
choco install "$nodejs" --version="20.5.1" --require-checksums -y
2727
# 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) ) {
2929
Save-ChocoPackage -PackageName $nodejs
3030
}

0 commit comments

Comments
 (0)