Commit 61f3804
authored
Update dependency prettier to v3.6.2
| datasource | package | from | to |
| ---------- | -------- | ----- | ----- |
| npm | prettier | 3.5.3 | 3.6.2 |
## [v3.6.2](https://github.com/prettier/prettier/blob/HEAD/CHANGELOG.md#362)
[diff](prettier/prettier@3.6.1...3.6.2)
##### Markdown: Add missing blank line around code block ([#17675](prettier/prettier#17675) by [@fisker](https://github.com/fisker))
<!-- prettier-ignore -->
````md
<!-- Input -->
1. Some text, and code block below, with newline after code block
```yaml
---
foo: bar
```
1. Another
2. List
<!-- Prettier 3.6.1 -->
1. Some text, and code block below, with newline after code block
```yaml
---
foo: bar
```
1. Another
2. List
<!-- Prettier 3.6.2 -->
1. Some text, and code block below, with newline after code block
```yaml
---
foo: bar
```
1. Another
2. List
````
## [v3.6.1](https://github.com/prettier/prettier/blob/HEAD/CHANGELOG.md#361)
[diff](prettier/prettier@3.6.0...3.6.1)
##### TypeScript: Allow const without initializer ([#17650](prettier/prettier#17650), [#17654](prettier/prettier#17654) by [@fisker](https://github.com/fisker))
<!-- prettier-ignore -->
```jsx
// Input
export const version: string;
// Prettier 3.6.0 (--parser=babel-ts)
SyntaxError: Unexpected token (1:21)
> 1 | export const version: string;
| ^
// Prettier 3.6.0 (--parser=oxc-ts)
SyntaxError: Missing initializer in const declaration (1:14)
> 1 | export const version: string;
| ^^^^^^^^^^^^^^^
// Prettier 3.6.1
export const version: string;
```
##### Miscellaneous: Avoid closing files multiple times ([#17665](prettier/prettier#17665) by [@43081j](https://github.com/43081j))
When reading a file to infer the interpreter from a shebang, we use the
`n-readlines` library to read the first line in order to get the shebang.
This library closes files when it reaches EOF, and we later try close the same
files again. We now close files only if `n-readlines` did not already close
them.
## [v3.6.0](https://github.com/prettier/prettier/blob/HEAD/CHANGELOG.md#360)
[diff](prettier/prettier@3.5.3...3.6.0)
🔗 [Release Notes](https://prettier.io/blog/2025/06/23/3.6.0)1 parent 8bb8299 commit 61f3804
2 files changed
+9
-9
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
47 | 47 | | |
48 | 48 | | |
49 | 49 | | |
50 | | - | |
| 50 | + | |
51 | 51 | | |
52 | 52 | | |
53 | 53 | | |
| |||
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
0 commit comments