Skip to content

Commit

Permalink
Add missing changelog for prettier#13016 (prettier#13812)
Browse files Browse the repository at this point in the history
* Add missing changelog

* Fix
  • Loading branch information
sosukesuzuki authored and medikoo committed Jan 4, 2024
1 parent f72d0b4 commit 5ab6bff
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions changelog_unreleased/cli/13016.md
@@ -0,0 +1,29 @@
#### Fix `--cache` set only if with `--write` or `--no-different` (#13016 by @Milly)

Do not save formatted cache if without `--write` option and the file is modifies by prettier.

Before fixed, always save formatted cache if with `--cache` option.
Therefore, unformatted files will never be formatted.

**2.7:**

```
> prettier --cache foo.js
# Show formatted contents of `foo.js`.
# Then the cache is created and `foo.js` is flagged as already formatted.
> prettier --cache --write foo.js
foo.js 2ms (cached)
# "... (cached)" means that the file is already formatted and do nothing this time.
```

**2.8:**

```
> prettier --cache foo.js
# Show formatted contents of `foo.js`.
> prettier --cache --write foo.js
foo.js 2ms
# `foo.js` has
```

0 comments on commit 5ab6bff

Please sign in to comment.