From 9720495d8f9b1f779062881d9270f447a27149be Mon Sep 17 00:00:00 2001 From: "renovate[bot]" Date: Wed, 30 Jan 2019 17:12:33 +0800 Subject: [PATCH] chore(deps): update dependency prettier to v1.16.2 (#59) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 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
prettier/prettier ### [`v1.16.2`](https://togithub.com/prettier/prettier/blob/master/CHANGELOG.md#​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 ([#​5804] by [@​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 ([#​5797] by [@​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) ```html Prix·:·32·€ Prix : 32 € Prix·:·32·€ ``` - JavaScript: Fix record type cast comment detection ([#​5793] by [@​yangsu]) Previously, type cast comments with record types were ignored and prettier stripped the subsequent parens. Prettier 1.16.2 handles these cases correctly. ```js // Input const v = /** @​type {{key: number}} */ (value); // Output (Prettier 1.16.1) const v = /** @​type {{key: number}} */ value; // Output (Prettier 1.16.2) const v = /** @​type {{key: number}} */ (value); ``` [@​ikatyang]: https://togithub.com/ikatyang [@​kachkaev]: https://togithub.com/kachkaev [@​yangsu]: https://togithub.com/yangsu [#​5793]: https://togithub.com/prettier/prettier/pull/5793 [#​5797]: https://togithub.com/prettier/prettier/pull/5797 [#​5804]: https://togithub.com/prettier/prettier/pull/5804
--- ### 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. --- - [ ] 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/graphql.macro). --- package.json | 2 +- yarn.lock | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/package.json b/package.json index 1f4f28b..fc5fdfe 100644 --- a/package.json +++ b/package.json @@ -38,7 +38,7 @@ "husky": "1.3.1", "jest": "24.0.0", "lint-staged": "8.1.1", - "prettier": "1.16.1" + "prettier": "1.16.2" }, "jest": { "collectCoverageFrom": [ diff --git a/yarn.lock b/yarn.lock index 38736a6..ecf5510 100644 --- a/yarn.lock +++ b/yarn.lock @@ -5261,10 +5261,10 @@ prettier-linter-helpers@^1.0.0: dependencies: fast-diff "^1.1.2" -prettier@1.16.1: - version "1.16.1" - resolved "https://registry.yarnpkg.com/prettier/-/prettier-1.16.1.tgz#534c2c9d7853f8845e5e078384e71973bd74089f" - integrity sha512-XXUITwIkGb3CPJ2hforHah/zTINRyie5006Jd2HKy2qz7snEJXl0KLfsJZW/wst9g6R2rFvqba3VpNYdu1hDcA== +prettier@1.16.2: + version "1.16.2" + resolved "https://registry.yarnpkg.com/prettier/-/prettier-1.16.2.tgz#f60bc5929a7f9a05260cc88d5430391100092414" + integrity sha512-vBMdCn1LjrFi2CpBsiWVKOq+WP9poXDTIGPe2sG3eE33LQ3b6IUgmaMjLZKKY+frD/8FqPeEK1qAx9mOV8iruA== pretty-format-ast@^1.0.1: version "1.0.1"