File tree Expand file tree Collapse file tree 3 files changed +4
-3
lines changed
Expand file tree Collapse file tree 3 files changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -9,5 +9,5 @@ public-hoist-pattern[]=@redis/*
99# Auto-install peers to prevent missing peer dependency warnings
1010auto-install-peers = true
1111
12- # Use strict peer dependencies to maintain dependency integrity
12+ # Disable strict peer dependency checking to allow auto-install-peers to resolve mismatches
1313strict-peer-dependencies = false
Original file line number Diff line number Diff line change @@ -35,8 +35,9 @@ RUN apk update && apk upgrade && \
3535 rm -rf /var/cache/apk/*
3636
3737# Enable and install pnpm via corepack
38+ # Note: Version must match packageManager field in package.json (currently 9.15.4)
3839RUN corepack enable && \
39- corepack prepare pnpm@latest --activate
40+ corepack prepare pnpm@9.15.4 --activate
4041
4142# Set working directory for all subsequent stages
4243WORKDIR /usr/src/app
Original file line number Diff line number Diff line change 2121 "main" : " dist/app.js" ,
2222 "engines" : {
2323 "node" : " >=20.0.0" ,
24- "pnpm" : " >=8.0.0 "
24+ "pnpm" : " 9.15.4 "
2525 },
2626 "scripts" : {
2727 "preinstall" : " npx only-allow pnpm" ,
You can’t perform that action at this time.
0 commit comments