Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions .cursor/commands/deslop.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
# Remove AI code slop

Check the diff against main, and remove all AI generated slop introduced in this branch.
Comment thread
Kitenite marked this conversation as resolved.

This includes:
- Extra comments that a human wouldn't add or is inconsistent with the rest of the file
- Extra defensive checks or try/catch blocks that are abnormal for that area of the codebase (especially if called by trusted / validated codepaths)
- Casts to any to get around type issues
- Any other style that is inconsistent with the file

Report at the end with only a 1-3 sentence summary of what you changed
9 changes: 9 additions & 0 deletions apps/desktop/electron.vite.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -88,6 +88,15 @@ export default defineConfig({
}),
],

// Monaco editor worker configuration
worker: {
format: "es",
},

optimizeDeps: {
include: ["monaco-editor"],
},

publicDir: resolve(resources, "public"),

build: {
Expand Down
4 changes: 4 additions & 0 deletions apps/desktop/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@
"@dnd-kit/core": "^6.3.1",
"@dnd-kit/sortable": "^10.0.0",
"@dnd-kit/utilities": "^3.2.2",
"@monaco-editor/react": "^4.7.0",
"@radix-ui/react-dialog": "^1.1.15",
"@radix-ui/react-label": "^2.1.8",
"@superset/ui": "workspace:*",
Expand All @@ -51,6 +52,7 @@
"@xterm/addon-webgl": "^0.18.0",
"@xterm/xterm": "^5.5.0",
"clsx": "^2.1.1",
"culori": "^4.0.2",
"date-fns": "^4.1.0",
"dnd-core": "^16.0.1",
"dotenv": "^17.2.3",
Expand All @@ -64,6 +66,7 @@
"line-column-path": "^3.0.0",
"lodash": "^4.17.21",
"lowdb": "^7.0.1",
"monaco-editor": "^0.55.1",
"nanoid": "^5.1.6",
"node-pty": "1.1.0-beta30",
"react": "^19.1.1",
Expand All @@ -90,6 +93,7 @@
"devDependencies": {
"@biomejs/biome": "^2.3.8",
"@tailwindcss/vite": "^4.0.9",
"@types/culori": "^4.0.1",
"@types/http-proxy": "^1.17.17",
"@types/lodash": "^4.17.20",
"@types/node": "^24.9.1",
Expand Down
Loading
Loading