From bbee735b7463c4317380b7855f47d85f130b6918 Mon Sep 17 00:00:00 2001 From: fvrvz Date: Sun, 12 Apr 2026 15:33:32 +0530 Subject: [PATCH 1/2] fix: update cache-dependency-path in GitHub Actions workflow --- .github/workflows/deploy-pages.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/deploy-pages.yml b/.github/workflows/deploy-pages.yml index 367ba5e..a109a87 100644 --- a/.github/workflows/deploy-pages.yml +++ b/.github/workflows/deploy-pages.yml @@ -43,7 +43,7 @@ jobs: with: node-version: 22 cache: "pnpm" - cache-dependency-path: frontend/pnpm-lock.yaml + cache-dependency-path: pnpm-lock.yaml - name: Install dependencies run: pnpm install --frozen-lockfile From 792d159c888a782345e82fd587101b77de5062f1 Mon Sep 17 00:00:00 2001 From: fvrvz Date: Sun, 12 Apr 2026 15:33:40 +0530 Subject: [PATCH 2/2] fix: add explicit import organization in VSCode settings --- .vscode/settings.json | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.vscode/settings.json b/.vscode/settings.json index 6e28b78..d351dad 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -1,5 +1,8 @@ { "editor.formatOnSave": true, + "editor.codeActionsOnSave": { + "source.organizeImports": "explicit" + }, "[svelte]": { "editor.tabSize": 2, "editor.insertSpaces": false,