-
-
Notifications
You must be signed in to change notification settings - Fork 5.2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking βSign up for GitHubβ, you agree to our terms of service and privacy statement. Weβll occasionally send you account related emails.
Already on GitHub? Sign in to your account
fix(types): don't pin webpack types to exact version #23531
Conversation
|
Codecov ReportAll modified lines are covered by tests β
Additional details and impacted files@@ Coverage Diff @@
## 2.x #23531 +/- ##
=======================================
Coverage 66.13% 66.13%
=======================================
Files 93 93
Lines 4125 4125
Branches 1171 1171
=======================================
Hits 2728 2728
Misses 1130 1130
Partials 267 267
Flags with carried forward coverage won't be shown. Click here to find out more. β View full report in Codecov by Sentry. |
CI here also started failing because of that issue. |
@@ -23,7 +23,7 @@ | |||
"@types/pug": "2.0.6", | |||
"@types/serve-static": "1.15.2", | |||
"@types/terser-webpack-plugin": "4.2.1", | |||
"@types/webpack": "4.41.33", | |||
"@types/webpack": "^4.41.33", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Maybe?
"@types/webpack": "^4.41.33", | |
"@types/webpack": "~4.41.33", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Should be fine for now if you prefer that but could cause a similar issue in the future.
For reference, there seemed to be an issue with @types/webpack-hot-middleware
before that broke types in a patch release (#18827) but I'm not aware of there being any issues with @types/webpack
.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@danielroe so would you prefer to use ~
? I'm a bit skeptical because then it's guaranteed to break once webpack types update the minor version. I'd rather trust and hope that they don't break types in minor revision.
π Linked issue
β Type of change
π Description
Since the current convention in
@nuxt/types
is to pin all dependencies to exact versions, I'm pretty sure this is not an acceptable solution but I wanted to raise an issue with the current approach.The
@types/webpack
is pinned to4.41.33
. Since4.41.34
is now the latest version, if I doyarn upgrade
in my project, this will introduce both4.41.33
and4.41.34
and then the shim that extendswebpack
from@nuxt/types/shims.d.ts
will stop working. A code like:should show that
MultiStats
that the shim is supposed to introduce is not present.It works if only
4.41.33
is installed in the project.I'm not sure what to do with this problem. Clearly there was a reason for going with exact versions but as evident here, this is also not a good solution. Ideally a range should be allowed and as long as packages follow semver, it should not cause issues (but clearly did in the past).
@danielroe
π Checklist