vue-plyr icon indicating copy to clipboard operation
vue-plyr copied to clipboard

Vue Plyr 7.0.0 causes npm ci in Docker fail with error 401

Open Rusinas opened this issue 2 years ago • 3 comments

It's weird, but I can't run npm ci in our pipeline (using docker), when I have Vue Plyr 7.0.0 installed. Removing it solves the issue

Rusinas avatar Jul 04 '22 06:07 Rusinas

Seems like that's the reason: image

Rusinas avatar Jul 04 '22 06:07 Rusinas

@redxtech hey mate, thanks for this great project! Question, why are you not importing plyr package using npm instead? 🤔 I'm asking about this line

jdnichollsc avatar Jul 11 '22 17:07 jdnichollsc

You can try adding the following block into the root of your package.json

  "overrides": {
    "vue-plyr": {
      "plyr": "^3.7.0"
    }
  }

and update or remove your package-lock.json file

OSA413 avatar Sep 14 '23 07:09 OSA413