-
Notifications
You must be signed in to change notification settings - Fork 673
chore(deps): consume the desktop bridge types from npm #15320
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -15,6 +15,7 @@ catalog: | |
| '@astrojs/mdx': ^6.0.3 | ||
| '@astrojs/sitemap': ^3.7.3 | ||
| '@astrojs/vue': ^6.0.1 | ||
| '@comfyorg/comfyui-desktop-bridge-types': 0.2.0 | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 🩺 Stability & Availability | 🟠 Major | ⚡ Quick win 🧩 Analysis chain🏁 Script executed: #!/bin/bash
set -euo pipefail
test "$(pnpm view `@comfyorg/comfyui-desktop-bridge-types`@0.2.0 version)" = "0.2.0"Repository: Comfy-Org/ComfyUI_frontend Length of output: 490 🏁 Script executed: #!/bin/bash
set -euo pipefail
printf '%s\n' '--- workspace entry ---'
sed -n '1,30p' pnpm-workspace.yaml
printf '%s\n' '--- package metadata from npm registry ---'
curl --fail --silent --show-error \
https://registry.npmjs.org/@comfyorg%2fcomfyui-desktop-bridge-types/0.2.0 |
jq -r '[.name, .version, .dist.tarball] | `@tsv`'Repository: Comfy-Org/ComfyUI_frontend Length of output: 1103 🏁 Script executed: #!/bin/bash
set -euo pipefail
python3 - <<'PY'
import json
import urllib.error
import urllib.request
for url in (
"https://registry.npmjs.org/@comfyorg%2fcomfyui-desktop-bridge-types",
"https://registry.npmjs.org/@comfyorg%2fcomfyui-desktop-bridge-types/0.2.0",
):
try:
with urllib.request.urlopen(url) as response:
data = json.load(response)
print(url, response.status)
if "versions" in data:
print("versions:", sorted(data["versions"]))
else:
print("name:", data.get("name"))
print("version:", data.get("version"))
except urllib.error.HTTPError as error:
print(url, error.code, error.reason)
PYRepository: Comfy-Org/ComfyUI_frontend Length of output: 2451 🏁 Script executed: #!/bin/bash
set -euo pipefail
for url in \
'https://registry.npmjs.org/@comfyorg%2fcomfyui-desktop-bridge-types' \
'https://registry.npmjs.org/@comfyorg%2fcomfyui-desktop-bridge-types/0.2.0'
do
printf '\n--- %s ---\n' "$url"
curl --insecure --silent --show-error --dump-header - --output /tmp/npm-response "$url" |
sed -n '1,12p'
jq -r 'if has("versions") then ["name=" + (.name // ""), "versions=" + ((.versions | keys) | join(","))] | .[] else ["name=" + (.name // ""), "version=" + (.version // "")] | .[] end' /tmp/npm-response 2>/dev/null || cat /tmp/npm-response
doneRepository: Comfy-Org/ComfyUI_frontend Length of output: 1023 🏁 Script executed: #!/bin/bash
set -euo pipefail
rg -n --glob 'package.json' --glob 'pnpm-workspace.yaml' \
'"name"[[:space:]]*:[[:space:]]*"`@comfyorg/comfyui-desktop-bridge-types`"' \
'"`@comfyorg/comfyui-desktop-bridge-types`"[[:space:]]*:' .Repository: Comfy-Org/ComfyUI_frontend Length of output: 262 🏁 Script executed: #!/bin/bash
set -euo pipefail
rg -n -e '"name"[[:space:]]*:[[:space:]]*"`@comfyorg/comfyui-desktop-bridge-types`"' \
-e '"`@comfyorg/comfyui-desktop-bridge-types`"[[:space:]]*:' \
--glob 'package.json' --glob 'pnpm-workspace.yaml' .Repository: Comfy-Org/ComfyUI_frontend Length of output: 240 Publish The npm registry lists only versions 🤖 Prompt for AI AgentsSource: Coding guidelines |
||
| '@comfyorg/comfyui-electron-types': 0.6.2 | ||
| '@customerio/cdp-analytics-browser': ^0.5.3 | ||
| '@datadog/browser-rum': ^6.33.0 | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
🩺 Stability & Availability | 🟠 Major | ⚡ Quick win
🧩 Analysis chain
🏁 Script executed:
Repository: Comfy-Org/ComfyUI_frontend
Length of output: 246
🏁 Script executed:
Repository: Comfy-Org/ComfyUI_frontend
Length of output: 6442
Update or remove the stale type-preparation path.
build:typesstill invokesscripts/prepare-types.js, which reads the missingpackages/comfyui-desktop-bridge-types/package.jsonand fails withENOENT. Use the published package metadata or remove the obsolete step.🤖 Prompt for AI Agents
🩺 Stability & Availability | 🟠 Major | ⚡ Quick win
🧩 Analysis chain
🏁 Script executed:
Repository: Comfy-Org/ComfyUI_frontend
Length of output: 1925
🏁 Script executed:
Repository: Comfy-Org/ComfyUI_frontend
Length of output: 5840
🏁 Script executed:
Repository: Comfy-Org/ComfyUI_frontend
Length of output: 20414
Commit the regenerated lockfile.
pnpm-lock.yamlmust recordspecifier: 'catalog:'and the catalog version0.2.0for@comfyorg/comfyui-desktop-bridge-types. Frozen installs currently fail because the lockfile recordsworkspace:*and a local link.🤖 Prompt for AI Agents
Source: Coding guidelines