From 261fb1b34d138d32a6b743f9a7251fe0ea239f4b Mon Sep 17 00:00:00 2001 From: Alexander Brown <448862+DrJKL@users.noreply.github.com> Date: Mon, 19 Jan 2026 16:33:16 -0800 Subject: [PATCH] fix: use directory path instead of glob for oxfmt --- .claude/commands/create-hotfix-release.md | 1 + .github/workflows/ci-lint-format.yaml | 6 +-- .../tabs/terminal/BaseTerminal.vue | 13 +++--- .../components/common/LanguageSelector.vue | 12 ++++-- .../src/components/common/RefreshButton.vue | 12 ++++-- .../src/components/common/StartupDisplay.vue | 9 +++-- .../src/components/common/UrlInput.vue | 4 +- .../install/DesktopSettingsConfiguration.vue | 26 +++++++----- .../src/components/install/HardwareOption.vue | 22 ++++++---- .../src/components/install/InstallFooter.vue | 25 ++++++++---- .../install/InstallLocationPicker.vue | 40 +++++++++++++------ .../components/install/MigrationPicker.vue | 36 ++++++++++++----- .../components/install/mirror/MirrorItem.vue | 24 +++++++---- .../src/components/maintenance/TaskCard.vue | 4 +- .../components/maintenance/TaskListItem.vue | 18 ++++++--- .../components/maintenance/TaskListPanel.vue | 4 +- .../src/views/DesktopDialogView.vue | 6 +-- .../src/views/DesktopUpdateView.vue | 6 +-- apps/desktop-ui/src/views/DownloadGitView.vue | 4 +- apps/desktop-ui/src/views/InstallView.vue | 15 ++++--- apps/desktop-ui/src/views/MaintenanceView.vue | 28 ++++++++----- .../src/views/ManualConfigurationView.vue | 6 ++- .../src/views/MetricsConsentView.vue | 21 ++++++---- .../desktop-ui/src/views/NotSupportedView.vue | 6 +-- apps/desktop-ui/src/views/ServerStartView.vue | 20 ++++++---- apps/desktop-ui/src/views/WelcomeView.vue | 6 +-- .../src/views/layouts/LayoutDefault.vue | 2 +- .../src/views/templates/BaseViewTemplate.vue | 15 ++++--- package.json | 12 ++---- packages/design-system/src/icons/README.md | 12 +++--- .../dialog/content/MissingNodesFooter.vue | 8 +--- .../sidebar/tabs/AssetsSidebarTab.vue | 8 +--- .../UploadModelUpgradeModalFooter.vue | 4 +- 33 files changed, 267 insertions(+), 168 deletions(-) diff --git a/.claude/commands/create-hotfix-release.md b/.claude/commands/create-hotfix-release.md index 247c86e59..8c68ef888 100644 --- a/.claude/commands/create-hotfix-release.md +++ b/.claude/commands/create-hotfix-release.md @@ -353,6 +353,7 @@ python main.py --front-end-version Comfy-Org/ComfyUI_frontend@${NEW_VERSION} - Fix: [Brief description of hotfixes included] EOF )" + ``` ``` diff --git a/.github/workflows/ci-lint-format.yaml b/.github/workflows/ci-lint-format.yaml index 3224fa926..ad5bd4e93 100644 --- a/.github/workflows/ci-lint-format.yaml +++ b/.github/workflows/ci-lint-format.yaml @@ -42,7 +42,7 @@ jobs: - name: Run Stylelint with auto-fix run: pnpm stylelint:fix - - name: Run Prettier with auto-format + - name: Run oxfmt with auto-format run: pnpm format - name: Check for changes @@ -60,7 +60,7 @@ jobs: git config --local user.email "action@github.com" git config --local user.name "GitHub Action" git add . - git commit -m "[automated] Apply ESLint and Prettier fixes" + git commit -m "[automated] Apply ESLint and oxfmt fixes" git push - name: Final validation @@ -80,7 +80,7 @@ jobs: issue_number: context.issue.number, owner: context.repo.owner, repo: context.repo.repo, - body: '## 🔧 Auto-fixes Applied\n\nThis PR has been automatically updated to fix linting and formatting issues.\n\n**⚠️ Important**: Your local branch is now behind. Run `git pull` before making additional changes to avoid conflicts.\n\n### Changes made:\n- ESLint auto-fixes\n- Prettier formatting' + body: '## 🔧 Auto-fixes Applied\n\nThis PR has been automatically updated to fix linting and formatting issues.\n\n**⚠️ Important**: Your local branch is now behind. Run `git pull` before making additional changes to avoid conflicts.\n\n### Changes made:\n- ESLint auto-fixes\n- oxfmt formatting' }) - name: Comment on PR about manual fix needed diff --git a/apps/desktop-ui/src/components/bottomPanel/tabs/terminal/BaseTerminal.vue b/apps/desktop-ui/src/components/bottomPanel/tabs/terminal/BaseTerminal.vue index ca0dcf34e..f0b71307d 100644 --- a/apps/desktop-ui/src/components/bottomPanel/tabs/terminal/BaseTerminal.vue +++ b/apps/desktop-ui/src/components/bottomPanel/tabs/terminal/BaseTerminal.vue @@ -1,10 +1,13 @@