我怎样才能让Heroku察觉到干扰

3pvhb19x  于 2022-11-13  发布在  其他
关注(0)|答案(1)|浏览(104)
-----> Installing dependencies
       Installing node modules (package.json)
       npm ERR! code ETARGET
       npm ERR! notarget No matching version found for @distube/soundcloud@^0.8.0.
       npm ERR! notarget In most cases you or one of your dependencies are requesting
       npm ERR! notarget a package version that doesn't exist.
       
       npm ERR! A complete log of this run can be found in:
       npm ERR!     /tmp/npmcache.iyUJC/_logs/2022-10-15T23_44_56_907Z-debug-0.log
-----> Build failed
       
       We're sorry this build is failing! You can troubleshoot common issues here:
       https://devcenter.heroku.com/articles/troubleshooting-node-deploys
       
       If you're stuck, please submit a ticket so we can help:
       https://help.heroku.com/
wztqucjr

wztqucjr1#

您从哪里获得0.8.0版本标记?

No matching version found for @distube/soundcloud@^0.8.0

Heroku是正确的:that version does not exist on NPMGitHub agrees。看起来这个项目从0.2.2直接跳到了1.0.0:

  • 1.2.2(电流)
  • 1.2.1
  • 1.2.0
  • 1.1.1
    *第1.0.0版
    *第0.2.2节
  • 0.2.1
  • ...

更新依赖项,使其指向可用版本(最好是最新版本),然后重新部署。

相关问题