aboutsummaryrefslogtreecommitdiffstats
path: root/apps
diff options
context:
space:
mode:
authorMohamedBassem <me@mbassem.com>2025-07-27 14:54:29 +0100
committerMohamedBassem <me@mbassem.com>2025-07-27 15:06:22 +0100
commit77ae89b22238429cbbbb7851ece2826c91d4e21f (patch)
tree92008321bc960b9e5b202d410d8a25c808dd2ffc /apps
parent8f1cb065d77c55dfb2e4d0df08a17160e7a8bc3f (diff)
downloadkarakeep-77ae89b22238429cbbbb7851ece2826c91d4e21f.tar.zst
chore: More turbo fixes
Diffstat (limited to 'apps')
-rw-r--r--apps/browser-extension/package.json6
-rw-r--r--apps/browser-extension/tsconfig.json3
-rw-r--r--apps/cli/package.json4
-rw-r--r--apps/landing/package.json4
-rw-r--r--apps/landing/tsconfig.json3
-rw-r--r--apps/mcp/package.json4
-rw-r--r--apps/mobile/package.json4
-rw-r--r--apps/web/package.json4
-rw-r--r--apps/web/tsconfig.json3
-rw-r--r--apps/workers/package.json4
10 files changed, 21 insertions, 18 deletions
diff --git a/apps/browser-extension/package.json b/apps/browser-extension/package.json
index 92bd3856..62a0f49e 100644
--- a/apps/browser-extension/package.json
+++ b/apps/browser-extension/package.json
@@ -1,13 +1,13 @@
{
- "name": "browser-extension",
+ "name": "@karakeep/browser-extension",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
- "format": "prettier .",
- "format:fix": "prettier . --write",
+ "format": "prettier . --cache --check",
+ "format:fix": "prettier . --cache --write",
"lint": "oxlint .",
"lint:fix": "oxlint . --fix",
"preview": "vite preview",
diff --git a/apps/browser-extension/tsconfig.json b/apps/browser-extension/tsconfig.json
index ddc2d870..df1a9844 100644
--- a/apps/browser-extension/tsconfig.json
+++ b/apps/browser-extension/tsconfig.json
@@ -18,7 +18,8 @@
"strict": true,
"noUnusedLocals": false,
"noUnusedParameters": true,
- "noFallthroughCasesInSwitch": true
+ "noFallthroughCasesInSwitch": true,
+ "tsBuildInfoFile": "node_modules/.cache/tsbuildinfo.json"
},
"include": ["src", "vite.config.ts"],
"exclude": ["node_modules"]
diff --git a/apps/cli/package.json b/apps/cli/package.json
index f7aeeaa8..9edbec09 100644
--- a/apps/cli/package.json
+++ b/apps/cli/package.json
@@ -36,8 +36,8 @@
"run": "tsx src/index.ts",
"lint": "oxlint .",
"lint:fix": "oxlint . --fix",
- "format": "prettier . --ignore-path ../../.prettierignore",
- "format:fix": "prettier . --write --ignore-path ../../.prettierignore",
+ "format": "prettier . --cache --ignore-path ../../.prettierignore --check",
+ "format:fix": "prettier . --cache --write --ignore-path ../../.prettierignore",
"typecheck": "tsc --noEmit"
},
"repository": {
diff --git a/apps/landing/package.json b/apps/landing/package.json
index 2ffa198b..3343a542 100644
--- a/apps/landing/package.json
+++ b/apps/landing/package.json
@@ -10,8 +10,8 @@
"preview": "vite preview",
"lint": "oxlint .",
"lint:fix": "oxlint . --fix",
- "format": "prettier . --ignore-path ../../.prettierignore",
- "format:fix": "prettier . --ignore-path ../../.prettierignore --write",
+ "format": "prettier . --cache --ignore-path ../../.prettierignore --check",
+ "format:fix": "prettier . --cache --ignore-path ../../.prettierignore --write",
"typecheck": "tsc --noEmit"
},
"dependencies": {
diff --git a/apps/landing/tsconfig.json b/apps/landing/tsconfig.json
index 0fb0017a..10775d56 100644
--- a/apps/landing/tsconfig.json
+++ b/apps/landing/tsconfig.json
@@ -5,7 +5,8 @@
"baseUrl": ".",
"paths": {
"@/*": ["./*"]
- }
+ },
+ "tsBuildInfoFile": "node_modules/.cache/tsbuildinfo.json"
},
"include": ["next-env.d.ts", "**/*.ts", "**/*.tsx", ".next/types/**/*.ts", "vite.config.ts"],
"exclude": ["node_modules"]
diff --git a/apps/mcp/package.json b/apps/mcp/package.json
index 9eaa2feb..9e34146b 100644
--- a/apps/mcp/package.json
+++ b/apps/mcp/package.json
@@ -27,8 +27,8 @@
"run": "tsx src/index.ts",
"lint": "oxlint .",
"lint:fix": "oxlint . --fix",
- "format": "prettier . --ignore-path ../../.prettierignore",
- "format:fix": "prettier . --write --ignore-path ../../.prettierignore",
+ "format": "prettier . --cache --ignore-path ../../.prettierignore --check",
+ "format:fix": "prettier . --cache --write --ignore-path ../../.prettierignore",
"typecheck": "tsc --noEmit"
},
"repository": {
diff --git a/apps/mobile/package.json b/apps/mobile/package.json
index 3713202f..f66a64c4 100644
--- a/apps/mobile/package.json
+++ b/apps/mobile/package.json
@@ -9,8 +9,8 @@
"android": "expo run:android",
"ios": "expo run:ios",
"web": "expo start --web",
- "format": "prettier .",
- "format:fix": "prettier . --write",
+ "format": "prettier . --cache --check",
+ "format:fix": "prettier . --cache --write",
"lint": "oxlint .",
"lint:fix": "oxlint . --fix",
"typecheck": "tsc --noEmit"
diff --git a/apps/web/package.json b/apps/web/package.json
index b5fb1a50..3721d3b2 100644
--- a/apps/web/package.json
+++ b/apps/web/package.json
@@ -13,8 +13,8 @@
"lint:fix": "oxlint . --fix",
"test": "vitest",
"typecheck": "tsc --noEmit",
- "format": "prettier --check . --ignore-path ../../.gitignore",
- "format:fix": "prettier --write . --ignore-path ../../.gitignore"
+ "format": "prettier --cache --check . --ignore-path ../../.gitignore",
+ "format:fix": "prettier --cache --write . --ignore-path ../../.gitignore"
},
"dependencies": {
"@auth/drizzle-adapter": "~1.5.0",
diff --git a/apps/web/tsconfig.json b/apps/web/tsconfig.json
index fb5492e4..308aeaad 100644
--- a/apps/web/tsconfig.json
+++ b/apps/web/tsconfig.json
@@ -10,7 +10,8 @@
],
"paths": {
"@/*": ["./*"]
- }
+ },
+ "tsBuildInfoFile": "node_modules/.cache/tsbuildinfo.json"
},
"include": ["next-env.d.ts", "**/*.ts", "**/*.tsx", ".next/types/**/*.ts"],
"exclude": ["node_modules", ".next"]
diff --git a/apps/workers/package.json b/apps/workers/package.json
index 1b047950..aa30878a 100644
--- a/apps/workers/package.json
+++ b/apps/workers/package.json
@@ -61,8 +61,8 @@
"build:watch": "tsdown --watch",
"lint": "oxlint .",
"lint:fix": "oxlint . --fix",
- "format": "prettier . --ignore-path ../../.prettierignore",
- "format:fix": "prettier . --ignore-path ../../.prettierignore --write",
+ "format": "prettier . --cache --ignore-path ../../.prettierignore --check",
+ "format:fix": "prettier . --cache --ignore-path ../../.prettierignore --write",
"typecheck": "tsc --noEmit"
},
"prettier": "@karakeep/prettier-config"