Skip to content

Commit

Permalink
chore: bump nodejs to 20
Browse files Browse the repository at this point in the history
  • Loading branch information
slowbackspace committed Dec 5, 2023
1 parent 5986f44 commit 8c55d0e
Show file tree
Hide file tree
Showing 26 changed files with 157 additions and 165 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,12 @@ jobs:

strategy:
matrix:
node-version: [16.x]
node-version: [20.x]

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- run: yarn
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/nix.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- uses: cachix/install-nix-action@v13
with:
nix_path: nixpkgs=channel:nixos-unstable
Expand Down
133 changes: 64 additions & 69 deletions .pnp.cjs

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
"keyhash",
"tailwindcss",
"to",
"txids",
"uninstantiated",
"utxos"
],
Expand Down
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
10 changes: 5 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,9 @@
"dependencies": {
"@blockfrost/blockfrost-js": "5.4.0",
"@emurgo/cardano-serialization-lib-nodejs": "^11.4.0",
"@sentry/integrations": "^7.60.1",
"@sentry/node": "^7.60.1",
"@sentry/tracing": "^7.60.1",
"@sentry/integrations": "^7.85.0",
"@sentry/node": "^7.85.0",
"@sentry/tracing": "^7.85.0",
"bignumber.js": "9.1.1",
"date-fns": "^2.30.0",
"dotenv": "^16.0.3",
Expand All @@ -34,7 +34,7 @@
"devDependencies": {
"@types/express": "^4.17.17",
"@types/memoizee": "^0.4.8",
"@types/node": "^18.0.3",
"@types/node": "^20",
"@types/sinon": "^10.0.15",
"@types/uuid": "^9.0.1",
"@types/ws": "^8.5.4",
Expand All @@ -56,7 +56,7 @@
"vitest": "^0.33.0"
},
"engines": {
"node": ">=16"
"node": ">=20"
},
"type": "module",
"main": "dist/server.js",
Expand Down
6 changes: 3 additions & 3 deletions tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
{
"compilerOptions": {
"outDir": "dist",
"target": "ES2021",
"module": "node16",
"rootDir": "src",
"target": "ES2022",
"module": "Node16",
"moduleResolution": "node16",
"rootDir": "src",
"declaration": false,
"isolatedModules": true,
"strict": true,
Expand Down
Loading

0 comments on commit 8c55d0e

Please sign in to comment.