Skip to content
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

Declare drivers as optionalDependencies (Fix #3059) #3081

Merged
merged 1 commit into from Oct 29, 2019

Conversation

kapouer
Copy link
Contributor

@kapouer kapouer commented Mar 3, 2019

Fix #3059

This is a simpler approach using optionalDependencies.
It's already supported by npm, and yarn --pnp is happy with it.

@elhigu
Copy link
Member

elhigu commented Mar 3, 2019

So what does yarn --pnp does in this case? pack all the optional drivers to .pnp.js ? I asked those questions in #3059 because I really would like to know what actually happens :)

@kapouer
Copy link
Contributor Author

kapouer commented Mar 3, 2019

I PR'd this to be more explicit about the changes involved. Also that made me actually check what was happening in practice, as you asked.

The problem with optionalDependencies is that npm or yarn (even in --prod mode) try to install all of them and don't fail if they can't.

That's why the "peerDependencies" + "peerDependenciesMeta" was implemented by yarn: it silence the warnings about uninstallable peer dependencies, and do both the job of not installing the modules that are not already installed, and properly setup .pnp.js with the peerDependencies that are actually available.

@kapouer
Copy link
Contributor Author

kapouer commented Mar 3, 2019

Please don't merge this PR, it's work in progress.

@kapouer
Copy link
Contributor Author

kapouer commented Mar 3, 2019

The problem with peerDependenciesMeta is that it's not supported by npm, and there is no sign showing it will be soon. However missing peerDependencies only shows warnings, not failures, and i think most npm users just use them as hints when something goes wrong.

@larixer
Copy link

larixer commented May 9, 2019

@kapouer Is this PR still work in progress? And if yes, what are the blockers?

@kapouer
Copy link
Contributor Author

kapouer commented May 9, 2019

It can be merged, however it might make npm users yell about the warnings.

@jthn
Copy link

jthn commented Oct 29, 2019

Wondering if this could get merged. I'd like to migrate a project to using Yarn PnP, and I'd love to be able to use it without forking this project.

@kapouer
Copy link
Contributor Author

kapouer commented Oct 29, 2019

Update: npm/cli#224 now peerDependenciesMeta is supported by npm !

@kibertoad
Copy link
Collaborator

Woohoo!
Not sure that declaring drivers as peerDependencies is correct approach, though, because it contradicts the original intent of peerDependencies: stating dependencies that consumer of the library is supposed to satisfy.

@kibertoad
Copy link
Collaborator

Wait, peerDependenciesMeta actually solves that. Then it's OK to merge, after driver versions are brought up-to-date

Copy link
Collaborator

@kibertoad kibertoad left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please bump driver versions

@kapouer
Copy link
Contributor Author

kapouer commented Oct 29, 2019

Done. I supposed no new driver has been added since march 2019.

@kibertoad
Copy link
Collaborator

Thanks!

@kibertoad kibertoad merged commit a5c23a4 into knex:master Oct 29, 2019
@kibertoad
Copy link
Collaborator

@jthn Released in 0.20.1

@kapouer
Copy link
Contributor Author

kapouer commented Oct 29, 2019

It's supported but still prints a WARNing.
If that's okay, it'd be safer to keep it that way until npm is fixed: It's a freshly deployed feature there, it might have been rolled back for any other reason.
I've notified upstream (in npm/cli#224) just in case.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

yarn plug and play and optional peerDependencies
5 participants