Skip to content

Commit 9ace9de

Browse files
committed
Update development lockfile and use pnpm
1 parent aaed054 commit 9ace9de

File tree

4 files changed

+10
-10
lines changed

4 files changed

+10
-10
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88

99
strategy:
1010
matrix:
11-
node-version: [18.x, 20.x]
11+
node-version: [18.x, 20.x, 22.x]
1212
os: [ubuntu-latest]
1313

1414
steps:

flake.lock

Lines changed: 6 additions & 6 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

flake.nix

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,8 @@
2121
packages =
2222
rec {
2323
bash = pkgs.bash;
24-
nodejs = pkgs.nodejs_20;
25-
pnpm = pkgs.nodePackages.pnpm;
24+
nodejs = pkgs.nodejs_22;
25+
corepack = pkgs.corepack_22;
2626
};
2727

2828
devShell = pkgs.mkShell {

packages/test-apps/simple-react/helpers.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ export function slash(p: string): string {
1010

1111
const logs: string[] = ((global as any).browserLogs = [])
1212
const onConsole = (msg: ConsoleMessage) => {
13-
console.log('browser log', msg.text())
13+
// console.log('browser log', msg.text())
1414
logs.push(msg.text())
1515
}
1616
let pages: Page[] = []

0 commit comments

Comments
 (0)