Skip to content

Commit dcca7a6

Browse files
renovate[bot]evenchange4
authored andcommitted
chore(deps): update dependency prettier to v1.16.2 (#42)
This PR contains the following updates: | Package | Type | Update | Change | References | |---|---|---|---|---| | prettier | devDependencies | patch | `1.16.1` -> `1.16.2` | [homepage](https://prettier.io), [source](https://togithub.com/prettier/prettier) | --- ### Release Notes <details> <summary>prettier/prettier</summary> ### [`v1.16.2`](https://togithub.com/prettier/prettier/blob/master/CHANGELOG.md#&#8203;1162) [Compare Source](https://togithub.com/prettier/prettier/compare/1.16.1...1.16.2) [diff](https://togithub.com/prettier/prettier/compare/1.16.1...1.16.2) - CLI: Fix CI detection to avoid unwanted TTY behavior ([#&#8203;5804] by [@&#8203;kachkaev]) In Prettier 1.16.0 and 1.16.1, `--list-different` and `--check` logged every file in some CI environments, instead of just unformatted files. This unwanted behavior is now fixed. - HTML: Do not format non-normal whitespace as normal whitespace ([#&#8203;5797] by [@&#8203;ikatyang]) Previously, only non-breaking whitespaces (U+00A0) are marked as non-normal whitespace, which means other non-normal whitespaces such as non-breaking narrow whitespaces (U+202F) could be formatted as normal whitespaces, which breaks the output. We now follow the spec to exclude all non-[ASCII whitespace](https://infra.spec.whatwg.org/#ascii-whitespace) from whitespace normalization. (`·` represents a non-breaking narrow whitespace) <!-- prettier-ignore --> ```html <!-- Input --> Prix·:·32·€ <!-- Output (Prettier 1.16.1) --> Prix : 32 € <!-- Output (Prettier 1.16.2) --> Prix·:·32·€ ``` - JavaScript: Fix record type cast comment detection ([#&#8203;5793] by [@&#8203;yangsu]) Previously, type cast comments with record types were ignored and prettier stripped the subsequent parens. Prettier 1.16.2 handles these cases correctly. <!-- prettier-ignore --> ```js // Input const v = /** @&#8203;type {{key: number}} */ (value); // Output (Prettier 1.16.1) const v = /** @&#8203;type {{key: number}} */ value; // Output (Prettier 1.16.2) const v = /** @&#8203;type {{key: number}} */ (value); ``` [@&#8203;ikatyang]: https://togithub.com/ikatyang [@&#8203;kachkaev]: https://togithub.com/kachkaev [@&#8203;yangsu]: https://togithub.com/yangsu [#&#8203;5793]: https://togithub.com/prettier/prettier/pull/5793 [#&#8203;5797]: https://togithub.com/prettier/prettier/pull/5797 [#&#8203;5804]: https://togithub.com/prettier/prettier/pull/5804 </details> --- ### Renovate configuration :date: **Schedule**: At any time (no schedule defined). :vertical_traffic_light: **Automerge**: Disabled by config. Please merge this manually once you are satisfied. :recycle: **Rebasing**: Whenever PR becomes conflicted, or if you modify the PR title to begin with "`rebase!`". :no_bell: **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- renovate-rebase -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Renovate Bot](https://togithub.com/marketplace/renovate). View repository job log [here](https://renovatebot.com/dashboard#evenchange4/michaelhsu).
1 parent 944b05f commit dcca7a6

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@
4848
"husky": "1.3.1",
4949
"jest": "24.0.0",
5050
"lint-staged": "8.1.1",
51-
"prettier": "1.16.1"
51+
"prettier": "1.16.2"
5252
},
5353
"jest": {
5454
"setupFilesAfterEnv": [

yarn.lock

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5576,10 +5576,10 @@ prettier-linter-helpers@^1.0.0:
55765576
dependencies:
55775577
fast-diff "^1.1.2"
55785578

5579-
prettier@1.16.1:
5580-
version "1.16.1"
5581-
resolved "https://registry.yarnpkg.com/prettier/-/prettier-1.16.1.tgz#534c2c9d7853f8845e5e078384e71973bd74089f"
5582-
integrity sha512-XXUITwIkGb3CPJ2hforHah/zTINRyie5006Jd2HKy2qz7snEJXl0KLfsJZW/wst9g6R2rFvqba3VpNYdu1hDcA==
5579+
prettier@1.16.2:
5580+
version "1.16.2"
5581+
resolved "https://registry.yarnpkg.com/prettier/-/prettier-1.16.2.tgz#f60bc5929a7f9a05260cc88d5430391100092414"
5582+
integrity sha512-vBMdCn1LjrFi2CpBsiWVKOq+WP9poXDTIGPe2sG3eE33LQ3b6IUgmaMjLZKKY+frD/8FqPeEK1qAx9mOV8iruA==
55835583

55845584
pretty-format@^24.0.0:
55855585
version "24.0.0"

0 commit comments

Comments
 (0)