We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 942b1a1 commit 42814a0Copy full SHA for 42814a0
api/package.json
@@ -201,6 +201,13 @@
201
"overrides": {
202
"eslint": {
203
"jiti": "2"
204
+ },
205
+ "@as-integrations/fastify": {
206
+ "fastify": "$fastify"
207
208
+ "nest-authz": {
209
+ "@nestjs/common": "$@nestjs/common",
210
+ "@nestjs/core": "$@nestjs/core"
211
}
212
},
213
"private": true,
api/scripts/build.ts
@@ -52,7 +52,7 @@ try {
52
53
const sudoCheck = await $`command -v sudo`.nothrow();
54
const SUDO = sudoCheck.exitCode === 0 ? 'sudo' : '';
55
- await $`${SUDO} chown -R 0:0 ../.pnpm-store`;
+ await $`${SUDO} chown -R 0:0 node_modules`;
56
57
await $`XZ_OPT=-5 tar -cJf packed-node-modules.tar.xz node_modules`;
58
await $`mv packed-node-modules.tar.xz ../`;
0 commit comments