Skip to content
Open
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
32 changes: 27 additions & 5 deletions backend/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion backend/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
"dotenv": "^16.6.1",
"ffmpeg-static": "^5.3.0",
"ffprobe-static": "^3.1.0",
"js-yaml": "^4.2.0",
"js-yaml": "^5.2.3",

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

P1 Badge Use named js-yaml imports for the map crawler

With js-yaml v5, Node resolves dynamic import('js-yaml') through the package's ESM entry, which exposes named exports rather than the v4 CommonJS-style default; backend/restaurant-crawling/scripts/05-map-url-crawling.js still does const { default: yaml } = await import('js-yaml') and then calls yaml.load(config), so every run of the map URL crawler will throw before loading channels.yaml after this dependency bump. Please update that crawler to use the module namespace or named load import as part of the upgrade.

Useful? React with 👍 / 👎.

"pg": "^8.20.0",
"puppeteer": "^24.35.0",
"puppeteer-extra": "^3.3.6",
Expand Down
Loading