redxtech / vue-plyr

A Vue component for the plyr (https://github.com/sampotts/plyr) video & audio player.
Other
768 stars 136 forks source link

Installation of dependency sampotts/plyr extremely slow #494

Open marcoliverteschke opened 2 years ago

marcoliverteschke commented 2 years ago

Hi,

when I add vue-plyr as a dependency as-is, my npm install time goes from under a minute to 10 minutes and longer, simply because it retries fetching sampotts/plyr many times.

After some looking around I found that if the dependency to plyr in vue-plyr's package.json is changed from

"plyr": "github:sampotts/plyr#develop",

to

"plyr": "git+https://github.com/sampotts/plyr.git#develop",

the installation time is back to a few seconds again.

Would it be possible to change this?