-
-
Notifications
You must be signed in to change notification settings - Fork 10
Description
Environments:*
- Prettier Version: 3.6.0
- Running Prettier via: CLI
- Runtime:
- Operating System: Windows
Steps to reproduce:
prettier 3.5.3 works with this command line:
..\node_modules\.bin\prettier.cmd --ignore-path ../.prettierignore --cache --cache-strategy metadata --cache-location ../node_modules/.cache/prettier/.prettier-cache --check .
Prettier 3.6.0
..\node_modules\.bin\prettier.cmd --ignore-path ../.prettierignore --experimental-cli --cache --cache-strategy metadata --cache-location ../node_modules/.cache/prettier/.prettier-cache --check .
The "--cache-strategy" option has been deleted, since the "metadata" strategy is no longer supported
Ah, ok. changed strategy:
..\node_modules\.bin\prettier.cmd --ignore-path ../.prettierignore --experimental-cli --cache --cache-strategy content --cache-location ../node_modules/.cache/prettier/.prettier-cache --check .
The "--cache-strategy" option has been deleted, since the "metadata" strategy is no longer supported
Hu?
..\node_modules\.bin\prettier.cmd --ignore-path ../.prettierignore --experimental-cli --cache --cache-location ../node_modules/.cache/prettier/.prettier-cache --check .
works...