1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
From 4138c95d051d0568d04f80b34a8e5369c74fb3c8 Mon Sep 17 00:00:00 2001
From: txtsd <code@ihavea.quest>
Date: Thu, 31 Oct 2024 22:02:48 +0530
Subject: [PATCH 2/2] Remove need for npm/npx
Signed-off-by: txtsd <code@ihavea.quest>
---
package.json | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/package.json b/package.json
index edfe683a..8da4cac2 100644
--- a/package.json
+++ b/package.json
@@ -3,7 +3,7 @@
"version": "0.1.0",
"private": true,
"scripts": {
- "preinstall": "npx only-allow pnpm",
+ "preinstall": "",
"postinstall": "node postinstall-win.js",
"dev": "nodemon -e ts --watch server --watch overseerr-api.yml -e .json,.ts,.yml -x ts-node -r tsconfig-paths/register --files --project server/tsconfig.json server/index.ts",
"build:server": "tsc --project server/tsconfig.json && copyfiles -u 2 server/templates/**/*.{html,pug} dist/templates && tsc-alias -p server/tsconfig.json",
--
2.47.0
|