Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 6911dc1

Browse files
committed
chore: update pnpm to v9
1 parent eafa8f5 commit 6911dc1

File tree

3 files changed

+35
-115
lines changed

3 files changed

+35
-115
lines changed

dogfood/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -206,7 +206,7 @@ RUN apt-get update && \
206206
google-chrome-stable microsoft-edge-beta && \
207207
# Pre-install system dependencies that Playwright needs. npx doesn't work here
208208
# for some reason. See https://github.com/microsoft/playwright-cli/issues/136
209-
npm i -g [email protected] pnpm@^8 corepack && playwright install-deps && \
209+
npm i -g [email protected] pnpm@^9 corepack && playwright install-deps && \
210210
npm cache clean --force
211211

212212
# Ensure PostgreSQL binaries are in the users $PATH.

flake.lock

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

flake.nix

Lines changed: 13 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,16 @@
44
inputs = {
55
nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable";
66
flake-utils.url = "github:numtide/flake-utils";
7-
pnpm2nix.url = "github:nzbr/pnpm2nix-nzbr";
8-
drpc.url = "github:storj/drpc/v0.0.33";
7+
pnpm2nix = {
8+
url = "github:nzbr/pnpm2nix-nzbr";
9+
inputs.nixpkgs.follows = "nixpkgs";
10+
inputs.flake-utils.follows = "flake-utils";
11+
};
12+
drpc = {
13+
url = "github:storj/drpc/v0.0.34";
14+
inputs.nixpkgs.follows = "nixpkgs";
15+
inputs.flake-utils.follows = "flake-utils";
16+
};
917
};
1018

1119
outputs = { self, nixpkgs, flake-utils, drpc, pnpm2nix }:
@@ -52,7 +60,7 @@
5260
mockgen
5361
nfpm
5462
nodejs
55-
nodejs.pkgs.pnpm
63+
pnpm
5664
openssh
5765
openssl
5866
pango
@@ -63,7 +71,8 @@
6371
protobuf
6472
protoc-gen-go
6573
ripgrep
66-
sapling
74+
# This doesn't build on latest nixpkgs for me for some reason
75+
# sapling
6776
shellcheck
6877
shfmt
6978
sqlc

0 commit comments

Comments
 (0)