You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have not done a bunch of exploratory work here, but I think a few changes would be needed here to support yarn --pnp apps. I've been exploring what it would take for ember-cli to support this out of the box over in ember-cli/ember-cli#8164.
Some general things to address:
When useYarn: true we should detect ./.pnp.js and add --pnp option
Handle the scenario where there is no node_modules folder
The text was updated successfully, but these errors were encountered:
Fyi, the easiest no-config way to detect whether Plug'n'Play should be enabled or not is to simply check whether you're running under it or not. This can be easily checked using process.versions.pnp:
I have not done a bunch of exploratory work here, but I think a few changes would be needed here to support yarn --pnp apps. I've been exploring what it would take for ember-cli to support this out of the box over in ember-cli/ember-cli#8164.
Some general things to address:
useYarn: true
we should detect./.pnp.js
and add--pnp
optionnode_modules
folderThe text was updated successfully, but these errors were encountered: