Skip to content

Commit 22d58af

Browse files
committed
Update nodejs
1 parent af30b12 commit 22d58af

File tree

5 files changed

+9
-9
lines changed

5 files changed

+9
-9
lines changed

extras/lbf-nix/lbf-typescript.nix

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -48,8 +48,8 @@ lbfTypescriptOpts@{
4848
text = ''
4949
{
5050
"compilerOptions": {
51-
"target": "es2020",
52-
"module": "node16",
51+
"target": "es2020",
52+
"module": "node16",
5353
"moduleResolution": "node16",
5454
"rootDir": "./src",
5555
"declaration": true,
@@ -75,7 +75,7 @@ lbfTypescriptOpts@{
7575
"noPropertyAccessFromIndexSignature": true,
7676
"noImplicitReturns": true,
7777
"noFallthroughCasesInSwitch": true,
78-
"noUnusedLocals": true,
78+
"noUnusedLocals": true,
7979
"noUnusedParameters": true,
8080
}
8181
}
@@ -201,7 +201,7 @@ let
201201
];
202202
buildInputs = [
203203
pkgs.jq
204-
pkgs.nodejs-18_x
204+
pkgs.nodejs
205205
];
206206
buildPhase = ''
207207
export HOME=$(mktemp -d)
@@ -218,7 +218,7 @@ let
218218
# characters. Probably should write a quick check for this..
219219
220220
# Note(jaredponn):
221-
# What is going on here? We create a JQ filter which
221+
# What is going on here? We create a JQ filter which
222222
# - For every `LambdaBuffers/Module/Generated.mts`,
223223
# - Add `exports."./LambdaBuffers/Module/Generated.mts": "./dist/LambdaBuffers/Module/Generated.mts"` to `package.json`
224224

runtimes/purescript/lbr-plutus/build.nix

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
withRuntime = false;
2121
packageLockOnly = true;
2222
packages = [
23-
pkgs.nodejs-18_x
23+
pkgs.nodejs
2424
pkgs.bashInteractive
2525
pkgs.fd
2626
] ++ config.settings.shell.tools;

runtimes/purescript/lbr-prelude/build.nix

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
withRuntime = false;
2121
packageLockOnly = true;
2222
packages = [
23-
pkgs.nodejs-18_x
23+
pkgs.nodejs
2424
pkgs.bashInteractive
2525
pkgs.fd
2626
] ++ config.settings.shell.tools;

testsuites/lbt-plutus/lbt-plutus-purescript/build.nix

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434
withRuntime = false;
3535
packageLockOnly = true;
3636
packages = [
37-
pkgs.nodejs-18_x
37+
pkgs.nodejs
3838
pkgs.bashInteractive
3939
pkgs.fd
4040
] ++ config.settings.shell.tools;

testsuites/lbt-prelude/lbt-prelude-purescript/build.nix

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
withRuntime = false;
3333
packageLockOnly = true;
3434
packages = [
35-
pkgs.nodejs-18_x
35+
pkgs.nodejs
3636
pkgs.bashInteractive
3737
pkgs.fd
3838
] ++ config.settings.shell.tools;

0 commit comments

Comments
 (0)