wix-incubator / lerna-script

Lerna addon for adding custom tasks
MIT License
164 stars 13 forks source link

Update dependency prettier to v2.0.3 #382

Closed renovate[bot] closed 4 years ago

renovate[bot] commented 4 years ago

This PR contains the following updates:

Package Type Update Change
prettier (source) devDependencies patch 2.0.2 -> 2.0.3

Release Notes

prettier/prettier ### [`v2.0.3`](https://togithub.com/prettier/prettier/blob/master/CHANGELOG.md#​203) [Compare Source](https://togithub.com/prettier/prettier/compare/2.0.2...2.0.3) [diff](https://togithub.com/prettier/prettier/compare/2.0.2...2.0.3) ##### JavaScript ##### Fix `prettier-ignore` inside JSX ([#​7877](https://togithub.com/prettier/prettier/pull/7877) by [@​fisker](https://togithub.com/fisker)) ```jsx // Input
{ /* prettier-ignore */ x ? : }
; // Prettier 2.0.2 (first output)
{/* prettier-ignore */ x ? : }
; // Prettier 2.0.2 (second output)
{/* prettier-ignore */ x ? : }
; // Prettier 2.0.3
{ /* prettier-ignore */ x ? : }
; ``` ##### Fix regressions in styled-components template literals ([#​7883](https://togithub.com/prettier/prettier/pull/7883) by [@​thorn0](https://togithub.com/thorn0)) ```js // Input const Icon = styled.div` background: var(--${background}); ${Link}:not(:first-child) { fill: rebeccapurple; } `; // Prettier 2.0.2 const Icon = styled.div` background: var(-- ${background}); ${Link}:not (:first-child) { fill: rebeccapurple; } `; // Prettier 2.0.3 const Icon = styled.div` background: var(--${background}); ${Link}:not(:first-child) { fill: rebeccapurple; } `; ``` ##### Fix: line endings were not always converted properly in multiline strings and comments ([#​7891](https://togithub.com/prettier/prettier/pull/7891) by [@​sidharthv96](https://togithub.com/sidharthv96)) // Input export const IAmIncredibleLongFunctionName = IAmAnotherFunctionName( (_0: IAmIncredibleLongParameterType) => { setTimeout(() => { /* Multiline comment Multiline comment Multiline comment */ console.log( "Multiline string\ Multiline string\ Multiline string" ); }); } ); // Prettier 2.0.2 export const IAmIncredibleLongFunctionName = IAmAnotherFunctionName( (_0: IAmIncredibleLongParameterType) => { setTimeout(() => { /* Multiline comment Multiline comment Multiline comment */ console.log( "Multiline string\ Multiline string\ Multiline string" ); }); } ); // Prettier 2.0.3: same as input ##### Fix bug with holes in array literals ([#​7911](https://togithub.com/prettier/prettier/pull/7911) by [@​bakkot](https://togithub.com/bakkot)) ```jsx // Input new Test() .test() .test([, 0]) .test(); // Prettier 2.0.2 [error] in.js: TypeError: Cannot read property 'type' of null // Prettier 2.0.3 new Test().test().test([, 0]).test(); ``` ##### TypeScript ##### Wrap TSAsExpression ([#​7869](https://togithub.com/prettier/prettier/pull/7869) by [@​sosukesuzuki](https://togithub.com/sosukesuzuki)) ```ts // Input const value = thisIsAnIdentifier as ThisIsAReallyReallyReallyReallyReallyReallyReallyReallyReallyReallyReallyLongInterface; // Prettier 2.0.2 const value = thisIsAnIdentifier as ThisIsAReallyReallyReallyReallyReallyReallyReallyReallyReallyReallyReallyLongInterface; // Prettier 2.0.3 const value = thisIsAnIdentifier as ThisIsAReallyReallyReallyReallyReallyReallyReallyReallyReallyReallyReallyLongInterface; ``` ##### Flow ##### Print dangling comments for inexact object type ([#​7892](https://togithub.com/prettier/prettier/pull/7892) by [@​sosukesuzuki](https://togithub.com/sosukesuzuki)) ```js // Input type Foo = { // comment ..., }; // Prettier 2.0.2 Error: Comment "comment" was not printed. Please report this error! // Prettier 2.0.3 type Foo = { // comment ..., }; ``` ##### Do not add comma for explicit inexact object with indexer property or no properties ([#​7923](https://togithub.com/prettier/prettier/pull/7923) by [@​DmitryGonchar](https://togithub.com/DmitryGonchar)) ```jsx // Input type T = { [string]: number, ..., } type T = { // comment ..., } // Prettier 2.0.2 type T = { [string]: number, ..., } type T = { // comment ..., } // Prettier 2.0.3 type T = { [string]: number, ... } type T = { // comment ... } ``` ##### HTML ##### Fix printing of ignored empty inline elements ([#​7867](https://togithub.com/prettier/prettier/pull/7867) by [@​fisker](https://togithub.com/fisker)) ```html _ _ _ _ ``` ##### Format `script` and `style` inside tags with a colon in the name ([#​7916](https://togithub.com/prettier/prettier/pull/7916) by [@​fisker](https://togithub.com/fisker)) ```html ``` ##### Other changes - Workaround for `require.resolve` in prettier-vscode ([#​7951](https://togithub.com/prettier/prettier/pull/7951) by [@​thorn0](https://togithub.com/thorn0)) - Fix unstable Angular expression binding ([#​7924](https://togithub.com/prettier/prettier/pull/7924) by [@​fisker](https://togithub.com/fisker)) - Update `isSCSS` regex ([#​7922](https://togithub.com/prettier/prettier/pull/7922) by [@​fisker](https://togithub.com/fisker)) - Fix formatting of empty files ([#​7921](https://togithub.com/prettier/prettier/pull/7921) by [@​fisker](https://togithub.com/fisker))

Renovate configuration

:date: Schedule: At any time (no schedule defined).

:vertical_traffic_light: Automerge: Enabled.

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

:no_bell: 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.