mirror of
https://github.com/imputnet/cobalt.git
synced 2026-03-09 15:24:14 -05:00
package.json links a git:// dependency that can't be used without authentication #380
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @sertraline on GitHub (Aug 1, 2024).
bug description
This commit
6626d74746has linkedyoutubei.jsto a commit, but the URL starts with git://.The issue is that unauthenticated git users will be unable to run
npm installoryarn install, as Github does not allow unauthenticated users to use the 9418 port.The solution is to replace
git://withhttps://.screenshots
Moreover, this commit fails to build. Relevant bug report: https://github.com/LuanRT/YouTube.js/issues/716
@wukko commented on GitHub (Aug 1, 2024):
i've updated the dependency to npm package version that includes the needed commit in 50f312f, so the issue should be resolved now
@wukko commented on GitHub (Aug 1, 2024):
lmk if it's actually fixed
@sertraline commented on GitHub (Aug 1, 2024):
it is fixed. Thanks