-
Notifications
You must be signed in to change notification settings - Fork 295
chore: re-add query-string dependency #1703
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
Conversation
Several of our plugins still rely on this, though it should be removed ASAP
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## master #1703 +/- ##
=======================================
Coverage 90.41% 90.41%
=======================================
Files 343 343
Lines 5779 5779
Branches 1346 1387 +41
=======================================
Hits 5225 5225
+ Misses 537 535 -2
- Partials 17 19 +2 ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
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.
Fine as a hotfix, but if the plugins depend on something like query-string they should be fixed to specify that in their own package.json dependencies.
Question, our plugins do currently specify this as below but are still breaking. Is there a different way to specify that dependency that would cause it not to break? "peerDependencies": {
....
"query-string": "*",
"react": "*"
...
}, |
Which is to say, in my mind this should work, but what I'm observing is that it isn't sufficient to actually ensure those dependencies are installed, based on how our framework / builds are setup. |
|
I would have thought that would be enough. Perhaps the plugins aren't being installed correctly? |
Several of our plugins still rely on this, though it should be removed ASAP
#1676 removed the
query-stringpackage. Several of our plugins still rely on this, though it should still be removed.