Merge remote-tracking branch 'origin/main' into fix-slot-layout-sync

This commit is contained in:
Benjamin Lu
2025-09-05 09:52:53 -07:00
5 changed files with 2 additions and 817 deletions

View File

@@ -1,12 +0,0 @@
{
"mcpServers": {
"playwright": {
"command": "npx",
"args": ["-y", "@executeautomation/playwright-mcp-server"]
},
"context7": {
"command": "npx",
"args": ["-y", "@upstash/context7-mcp"]
}
}
}

View File

@@ -26,7 +26,6 @@ const config: KnipConfig = {
'tailwindcss', 'tailwindcss',
'tailwindcss-primeui', // Need to figure out why tailwind plugin isn't applying 'tailwindcss-primeui', // Need to figure out why tailwind plugin isn't applying
// Dev // Dev
'@executeautomation/playwright-mcp-server',
'@trivago/prettier-plugin-sort-imports' '@trivago/prettier-plugin-sort-imports'
], ],
ignore: [ ignore: [

View File

@@ -1,7 +1,7 @@
{ {
"name": "@comfyorg/comfyui-frontend", "name": "@comfyorg/comfyui-frontend",
"private": true, "private": true,
"version": "1.27.0", "version": "1.27.1",
"type": "module", "type": "module",
"repository": "https://github.com/Comfy-Org/ComfyUI_frontend", "repository": "https://github.com/Comfy-Org/ComfyUI_frontend",
"homepage": "https://comfy.org", "homepage": "https://comfy.org",
@@ -39,7 +39,6 @@
}, },
"devDependencies": { "devDependencies": {
"@eslint/js": "^9.8.0", "@eslint/js": "^9.8.0",
"@executeautomation/playwright-mcp-server": "^1.0.6",
"@iconify/tailwind": "^1.2.0", "@iconify/tailwind": "^1.2.0",
"@intlify/eslint-plugin-vue-i18n": "^3.2.0", "@intlify/eslint-plugin-vue-i18n": "^3.2.0",
"@lobehub/i18n-cli": "^1.25.1", "@lobehub/i18n-cli": "^1.25.1",

801
pnpm-lock.yaml generated

File diff suppressed because it is too large Load Diff

View File

@@ -71,7 +71,7 @@ export function useSlotLayoutSync() {
if (!graph) return false if (!graph) return false
// Initial registration for all nodes in the current graph // Initial registration for all nodes in the current graph
for (const node of graph._nodes) { for (const node of graph.nodes) {
computeAndRegisterSlots(node) computeAndRegisterSlots(node)
} }