ng2-dragula
ng2-dragula copied to clipboard
[bug report] Invalid package version in version 5.0.2
REQUIRED: Before filing a bug report
Change each [ ] to [x] when you have done it.
- [x] My issue title starts with
[bug report] - [x] I have read the README, especially the 'classic blunders' section, and the dragula docs.
- [x] I have searched through the
ng2-dragulaissues for related problems, including closed issues. - [x] I have browsed through the issues labeled "future reference" for problems that have been solved before or have a known workaround.
- [x] I am using the latest version of
ng2-dragula.
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:
- npm install
Versions (required)
Please state which versions of the following packages you have installed:
@angular/core: 17.0.8ng2-dragula: 5.0.2
Could we anticipate an update regarding this issue in the near future?
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
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