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
When installing the @wordpress/env package, it installs the new version of the [docker-compose|https://www.npmjs.com/package/docker-compose] dependency (0.24.4), which results in an error that says dockerCompose.down is not a function. It works flawlessly with the version 0.24.3.
❯ mkdir new-project
❯ cd new-project
❯ npm init -y
❯ npm install @wordpress/env --save-dev
❯ npx wp-env start
✖ dockerCompose.down is not a function
TypeError: dockerCompose.down is not a function
at stop (/Users/.../node_modules/@wordpress/env/lib/commands/stop.js:27:22)
at async start (/Users/.../node_modules/@wordpress/env/lib/commands/start.js:111:3)
Environment info
macOS 14.2.1
Node.js v18.19.1
Please confirm that you have searched existing issues in the repo.
Yes
Please confirm that you have tested with all plugins deactivated except Gutenberg.
Yes
The text was updated successfully, but these errors were encountered:
The problem is that in the destroy.js and in the stop.js the function compose.down is used, but this function was renamed with docker-compose v0.24.4 to compose.downAll .
Description
When installing the @wordpress/env package, it installs the new version of the [docker-compose|https://www.npmjs.com/package/docker-compose] dependency (0.24.4), which results in an error that says
dockerCompose.down is not a function
. It works flawlessly with the version 0.24.3.Step-by-step reproduction instructions
npm init -y
npm install @wordpress/env --save-dev
npx wp-env start
Screenshots, screen recording, code snippet
Environment info
macOS 14.2.1
Node.js v18.19.1
Please confirm that you have searched existing issues in the repo.
Yes
Please confirm that you have tested with all plugins deactivated except Gutenberg.
Yes
The text was updated successfully, but these errors were encountered: