blob: 5f56dff81d35ee5ceda1670c0e9bbf00ecb36724 (
about) (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
The Hoarder project uses a very specific version of pnpm (9.0.0-alpha.8) and
will fail to build with other pnpm versions. Instead of adding this pnpm
version to nixpkgs, we override this requirement and use the latest v9 release.
---
--- a/package.json
+++ b/package.json
@@ -33,7 +33,7 @@
"turbo": "^2.1.2"
},
"prettier": "@hoarder/prettier-config",
- "packageManager": "pnpm@9.0.0-alpha.8+sha256.a433a59569b00389a951352956faf25d1fdf43b568213fbde591c36274d4bc30",
+ "packageManager": "pnpm",
"pnpm": {
"patchedDependencies": {
"xcode@3.0.1": "patches/xcode@3.0.1.patch"
--- a/pnpm-lock.yaml
+++ b/pnpm-lock.yaml
@@ -1,4 +1,4 @@
-lockfileVersion: '7.0'
+lockfileVersion: '9.0'
settings:
autoInstallPeers: true
|