ng2-dragula icon indicating copy to clipboard operation
ng2-dragula copied to clipboard

[bug report] Invalid package version in version 5.0.2

Open sebastiencrevier opened this issue 1 year ago • 3 comments

REQUIRED: Before filing a bug report

Change each [ ] to [x] when you have done it.

Describe the bug (required)

Wrong package version on npm install:

Invalid tag name ">=^16.0.0 <=^17.0.0" of package "@angular/animations@>=^16.0.0 <=^17.0.0": Tags may not have any characters that encodeURIComponent encodes.

To Reproduce (required)

Steps to reproduce the behavior:

  1. npm install

Versions (required)

Please state which versions of the following packages you have installed:

  • @angular/core: 17.0.8
  • ng2-dragula: 5.0.2

sebastiencrevier avatar Feb 06 '24 17:02 sebastiencrevier

Could we anticipate an update regarding this issue in the near future?

jelenaseovic avatar Mar 01 '24 11:03 jelenaseovic

would this just be a tweak to instead use ">=16.0.0 <18.0.0" for the Angular dependencies, @valorkin / @joeskeen ?

without it, can't upgrade app to Angular 17

kut avatar Apr 01 '24 17:04 kut

I've just added this to my package.json in the meantime:

  "overrides": {
    "ng2-dragula": {
      "@angular/common": "$@angular/common",
      "@angular/core": "$@angular/core",
      "@angular/animations": "$@angular/animations"
    }
  }

You'll probably have to use --force when running the update command found at https://update.angular.io

joeskeen avatar Apr 01 '24 17:04 joeskeen