nordnet / nordnet-ui-kit

Nordnet UI Kit
https://nordnet.github.io/nordnet-ui-kit/
106 stars 28 forks source link

chore(deps): update dependency prettier to v1.19.1 #616

Open renovate[bot] opened 5 years ago

renovate[bot] commented 5 years ago

WhiteSource Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
prettier (source) 1.16.4 -> 1.19.1 age adoption passing confidence

Release Notes

prettier/prettier ### [`v1.19.1`](https://togithub.com/prettier/prettier/blob/master/CHANGELOG.md#​1191) [Compare Source](https://togithub.com/prettier/prettier/compare/1.19.0...1.19.1) [diff](https://togithub.com/prettier/prettier/compare/1.19.0...1.19.1) ##### CLI ##### Fix `--stdin` regression in 1.19.0 ([#​6894](https://togithub.com/prettier/prettier/pull/6894) by [@​lydell](https://togithub.com/lydell)) // Prettier stable $ echo "test" | prettier --stdin --parser babel [error] regeneratorRuntime is not defined // Prettier master $ echo "test" | prettier --stdin --parser babel test; ##### TypeScript ##### Fix formatting of union type as arrow function return type ([#​6896](https://togithub.com/prettier/prettier/pull/6896) by [@​thorn0](https://togithub.com/thorn0)) ```jsx // Input export const getVehicleDescriptor = async ( vehicleId: string, ): Promise => {} // Prettier stable export const getVehicleDescriptor = async ( vehicleId: string ): Promise<| Collections.Parts.PrintedCircuitBoardAssembly["attributes"] | undefined> => {}; // Prettier master export const getVehicleDescriptor = async ( vehicleId: string ): Promise< Collections.Parts.PrintedCircuitBoardAssembly["attributes"] | undefined > => {}; ``` ### [`v1.19.0`](https://togithub.com/prettier/prettier/blob/master/CHANGELOG.md#​1190) [Compare Source](https://togithub.com/prettier/prettier/compare/1.18.2...1.19.0) [diff](https://togithub.com/prettier/prettier/compare/1.18.2...1.19.0) 🔗 [Release Notes](https://prettier.io/blog/2019/11/09/1.19.0.html) ### [`v1.18.2`](https://togithub.com/prettier/prettier/blob/master/CHANGELOG.md#​1182) [Compare Source](https://togithub.com/prettier/prettier/compare/1.18.1...1.18.2) [diff](https://togithub.com/prettier/prettier/compare/1.18.1...1.18.2) - TypeScript: only add trailing commas in tuples for `--trailing-comma=all` ([#​6199] by [@​duailibe]) In Prettier 1.18 we added trailing commas in tuples when `--trailing-comma=all`, but it was also adding for `--trailing-comma=es5`. [#​6199]: https://togithub.com/prettier/prettier/pull/6199 [@​duailibe]: https://togithub.com/duailibe ### [`v1.18.1`](https://togithub.com/prettier/prettier/blob/master/CHANGELOG.md#​1181) [Compare Source](https://togithub.com/prettier/prettier/compare/1.18.0...1.18.1) [diff](https://togithub.com/prettier/prettier/compare/1.18.0...1.18.1) - TypeScript: Add trailing comma in tsx, only for arrow function ([#​6190] by [@​sosukesuzuki]) Prettier inserts a trailing comma to single type parameter for arrow functions in tsx, since v 1.18. But, this feature inserts a trailing comma to type parameter for besides arrow functions too (e.g, function , interface). This change fix it. ```tsx // Input interface Interface1 { one: "one"; } function function1() { return "one"; } // Output (Prettier 1.18.0) interface Interface1 { one: "one"; } function function1() { return "one"; } // Output (Prettier 1.18.1) interface Interface1 { one: "one"; } function function1() { return "one"; } ``` - Config: Match dotfiles in config overrides ([#​6194] by [@​duailibe]) When using [`overrides`](https://prettier.io/docs/en/configuration.html#configuration-overrides) in the config file, Prettier was not matching dotfiles (files that start with `.`). This was fixed in 1.18.1 [#​6190]: https://togithub.com/prettier/prettier/pull/6190 [#​6194]: https://togithub.com/prettier/prettier/pull/6194 [@​duailibe]: https://togithub.com/duailibe [@​sosukesuzuki]: https://togithub.com/sosukesuzuki ### [`v1.18.0`](https://togithub.com/prettier/prettier/blob/master/CHANGELOG.md#​1180) [Compare Source](https://togithub.com/prettier/prettier/compare/1.17.1...1.18.0) [diff](https://togithub.com/prettier/prettier/compare/1.17.1...1.18.0) 🔗 [Release Notes](https://prettier.io/blog/2019/06/06/1.18.0.html) ### [`v1.17.1`](https://togithub.com/prettier/prettier/blob/master/CHANGELOG.md#​1171) [Compare Source](https://togithub.com/prettier/prettier/compare/1.17.0...1.17.1) [diff](https://togithub.com/prettier/prettier/compare/1.17.0...1.17.1) - Range: Fix ranged formatting not using the correct line width ([#​6050] by [@​mathieulj]) ```js // Input function f() { if (true) { call("this line is 79 chars", "long", "it should", "stay as single line"); } } // Output (Prettier 1.17.0 run with --range-start 30 --range-end 110) function f() { if (true) { call( "this line is 79 chars", "long", "it should", "stay as single line" ); } } // Output (Prettier 1.17.0 run without range) function f() { if (true) { call("this line is 79 chars", "long", "it should", "stay as single line"); } } // Output (Prettier 1.17.1 with and without range) function f() { if (true) { call("this line is 79 chars", "long", "it should", "stay as single line"); } } ``` - JavaScript: Fix closure compiler typecasts (\[[#​5947](https://togithub.com/prettier/prettier/issues/5947)] by [@​jridgewell]) If a closing parenthesis follows after a typecast in an inner expression, the typecast would wrap everything to the that following parenthesis. ```js // Input test(/** @​type {!Array} */(arrOrString).length); test(/** @​type {!Array} */((arrOrString)).length + 1); // Output (Prettier 1.17.0) test(/** @​type {!Array} */ (arrOrString.length)); test(/** @​type {!Array} */ (arrOrString.length + 1)); // Output (Prettier 1.17.1) test(/** @​type {!Array} */ (arrOrString).length); test(/** @​type {!Array} */ (arrOrString).length + 1); ``` - JavaScript: respect parenthesis around optional chaining before await ([#​6087] by [@​evilebottnawi]) ```js // Input async function myFunction() { var x = (await foo.bar.blah)?.hi; } // Output (Prettier 1.17.0) async function myFunction() { var x = await foo.bar.blah?.hi; } // Output (Prettier 1.17.1) async function myFunction() { var x = (await foo.bar.blah)?.hi; } ``` - Handlebars: Fix {{else}}{{#if}} into {{else if}} merging ([#​6080] by [@​dcyriller]) // Input {{#if a}} a {{else}} {{#if c}} c {{/if}} e {{/if}} // Output (Prettier 1.17.0) {{#if a}} a {{else if c}} c e {{/if}} // Output (Prettier 1.17.1) Code Sample {{#if a}} a {{else}} {{#if c}} c {{/if}} e {{/if}} - JavaScript: Improved multiline closure compiler typecast comment detection ([#​6070] by [@​yangsu]) Previously, multiline closure compiler typecast comments with lines that start with \* weren't flagged correctly and the subsequent parenthesis were stripped. Prettier 1.17.1 fixes this issue. ```js // Input const style =/** * @​type {{ * width: number, * }} */({ width, }); // Output (Prettier 1.17.0) const style =/** * @​type {{ * width: number, * }} */ { width, }; // Output (Prettier 1.17.1) const style =/** * @​type {{ * width: number, * }} */({ width, }); ``` [@​mathieulj]: https://togithub.com/mathieulj [@​yangsu]: https://togithub.com/yangsu [@​dcyriller]: https://togithub.com/dcyriller [@​jridgewell]: https://togithub.com/jridgewell [@​evilebottnawi]: https://togithub.com/evilebottnawi [#​6050]: https://togithub.com/prettier/prettier/pull/6050 [#​6070]: https://togithub.com/prettier/prettier/pull/6070 [#​6080]: https://togithub.com/prettier/prettier/pull/6080 [#​6087]: https://togithub.com/prettier/prettier/pull/6087 ### [`v1.17.0`](https://togithub.com/prettier/prettier/blob/master/CHANGELOG.md#​1170) [Compare Source](https://togithub.com/prettier/prettier/compare/1.16.4...1.17.0) [diff](https://togithub.com/prettier/prettier/compare/1.16.2...1.17.0) 🔗 [Release Notes](https://prettier.io/blog/2019/04/12/1.17.0.html)

Configuration

📅 Schedule: "before 3am on Monday" (UTC).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.



This PR has been generated by WhiteSource Renovate. View repository job log here.

vercel[bot] commented 5 years ago

This pull request is being automatically deployed with ZEIT Now (learn more). To see the status of your deployment, click below or on the icon next to each commit.

🔍 Inspect: https://zeit.co/nordnet/nordnet-ui-kit/2x8ccqkqa 🌍 Preview: https://nordnet-ui-kit-git-renovate-prettier-1x.nordnet1.now.sh

codecov[bot] commented 5 years ago

Codecov Report

Merging #616 into master will increase coverage by 0.05%. The diff coverage is n/a.

@@            Coverage Diff             @@
##           master     #616      +/-   ##
==========================================
+ Coverage   84.07%   84.12%   +0.05%     
==========================================
  Files         213      212       -1     
  Lines        1557     1556       -1     
  Branches      295      294       -1     
==========================================
  Hits         1309     1309              
+ Misses        213      212       -1     
  Partials       35       35
codecov[bot] commented 5 years ago

Codecov Report

Merging #616 into master will increase coverage by 0.05%. The diff coverage is n/a.

@@            Coverage Diff             @@
##           master     #616      +/-   ##
==========================================
+ Coverage   84.01%   84.07%   +0.05%     
==========================================
  Files         213      213              
  Lines        1558     1557       -1     
  Branches      296      295       -1     
==========================================
  Hits         1309     1309              
+ Misses        214      213       -1     
  Partials       35       35
codecov[bot] commented 5 years ago

Codecov Report

Merging #616 into master will decrease coverage by 0.02%. The diff coverage is n/a.

@@            Coverage Diff             @@
##           master     #616      +/-   ##
==========================================
- Coverage   84.03%   84.01%   -0.03%     
==========================================
  Files         213      213              
  Lines        1560     1558       -2     
  Branches      296      296              
==========================================
- Hits         1311     1309       -2     
  Misses        214      214              
  Partials       35       35
codecov[bot] commented 5 years ago

Codecov Report

Merging #616 into master will not change coverage. The diff coverage is n/a.

@@           Coverage Diff           @@
##           master     #616   +/-   ##
=======================================
  Coverage   84.03%   84.03%           
=======================================
  Files         213      213           
  Lines        1560     1560           
  Branches      296      296           
=======================================
  Hits         1311     1311           
  Misses        214      214           
  Partials       35       35