-
Notifications
You must be signed in to change notification settings - Fork 8
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
update to drupal 11 #27
base: 11-0
Are you sure you want to change the base?
Conversation
fix a typo in the `ddev remove` doc.
@byrond I already have some of those changes in an 11-0 branch. We should reconcile the two. |
# is returned as 1.22.22 when Yarn starts, before switching directories. | ||
cd $DDEV_DOCROOT/core | ||
yarn install | ||
cd - |
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.
@byrond This change suggests a fail elsewhere. How do I trigger that failure?
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.
This happened during ddev install
:
yarn install v1.22.22
[1/5] Validating package.json...
error Drupal@: The engine "yarn" is incompatible with this module. Expected version ">= 4.1.1". Got "1.22.22"
error Found incompatible module.
info Visit https://yarnpkg.com/en/docs/cli/install for documentation about this command.
I believe it's because the required Yarn version isn't known until changing into the core directory, after Yarn has already started with the global version installed in the container.
The later version of Yarn is required now since I changed DDEV's nodejs_version
to 22
as is now required by Drupal 11. The minimum version is 20
, but I updated to the current LTS.
No description provided.