Skip to content

Commit

Permalink
Update dependency prettier to v3.4.1
Browse files Browse the repository at this point in the history
| datasource | package  | from  | to    |
| ---------- | -------- | ----- | ----- |
| npm        | prettier | 3.3.3 | 3.4.1 |


## [v3.4.1](https://github.com/prettier/prettier/blob/HEAD/CHANGELOG.md#341)

[diff](prettier/prettier@3.4.0...3.4.1)

##### Remove unnecessary parentheses around assignment in `v-on` ([#16887](prettier/prettier#16887) by [@fisker](https://github.com/fisker))

<!-- prettier-ignore -->

```vue
<!-- Input -->
<template>
  <button @click="foo += 2">Click</button>
</template>

<!-- Prettier 3.4.0 -->
<template>
  <button @click="(foo += 2)">Click</button>
</template>

<!-- Prettier 3.4.1 -->
<template>
  <button @click="foo += 2">Click</button>
</template>
```


## [v3.4.0](https://github.com/prettier/prettier/blob/HEAD/CHANGELOG.md#340)

[diff](prettier/prettier@3.3.3...3.4.0)

🔗 [Release Notes](https://prettier.io/blog/2024/11/26/3.4.0.html)
  • Loading branch information
renovate[bot] authored Nov 27, 2024
1 parent 440d3e2 commit 10adc5f
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@
"jest": "29.7.0",
"license-checker": "25.0.1",
"octokit": "4.0.2",
"prettier": "3.3.3",
"prettier": "3.4.1",
"react": "17.0.2",
"react-dom": "17.0.2",
"strong-mock": "~8.0.1",
Expand Down
16 changes: 8 additions & 8 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 10adc5f

Please sign in to comment.