Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

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

Merged
merged 1 commit into from
Jul 3, 2020

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Jun 3, 2019

This PR contains the following updates:

Package Type Update Change
prettier (source) devDependencies minor 1.17.0 -> 1.19.1

Release Notes

prettier/prettier

v1.19.1

Compare Source

diff

CLI
Fix --stdin regression in 1.19.0 (#​6894 by @​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 by @​thorn0)
// Input
export const getVehicleDescriptor = async (
  vehicleId: string,
): Promise<Collections.Parts.PrintedCircuitBoardAssembly['attributes'] | undefined> => {}

// 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

Compare Source

diff

🔗 Release Notes

v1.18.2

Compare Source

diff

v1.18.1

Compare Source

diff

  • 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.

    // Input
    interface Interface1<T> {
      one: "one";
    }
    function function1<T>() {
      return "one";
    }
    
    // Output (Prettier 1.18.0)
    interface Interface1<T,> {
      one: "one";
    }
    function function1<T,>() {
      return "one";
    }
    
    // Output (Prettier 1.18.1)
    interface Interface1<T> {
      one: "one";
    }
    function function1<T>() {
      return "one";
    }
  • Config: Match dotfiles in config overrides (#​6194 by @​duailibe)

    When using overrides in the config file, Prettier was not matching dotfiles (files that start with .). This was fixed in 1.18.1

v1.18.0

Compare Source

diff

🔗 Release Notes

v1.17.1

Compare Source

diff

  • Range: Fix ranged formatting not using the correct line width (#​6050 by @​mathieulj)

    // 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] by @​jridgewell)

    If a closing parenthesis follows after a typecast in an inner expression, the typecast would wrap everything to the that following parenthesis.

    // Input
    test(/** @&#8203;type {!Array} */(arrOrString).length);
    test(/** @&#8203;type {!Array} */((arrOrString)).length + 1);
    
    // Output (Prettier 1.17.0)
    test(/** @&#8203;type {!Array} */ (arrOrString.length));
    test(/** @&#8203;type {!Array} */ (arrOrString.length + 1));
    
    // Output (Prettier 1.17.1)
    test(/** @&#8203;type {!Array} */ (arrOrString).length);
    test(/** @&#8203;type {!Array} */ (arrOrString).length + 1);
  • JavaScript: respect parenthesis around optional chaining before await (#​6087 by @​evilebottnawi)

    // 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.

    // Input
    const style =/**
     * @&#8203;type {{
     *   width: number,
     * }}
    */({
      width,
    });
    
    // Output (Prettier 1.17.0)
    const style =/**
     * @&#8203;type {{
     *   width: number,
     * }}
    */ {
      width,
    };
    
    // Output (Prettier 1.17.1)
    const style =/**
     * @&#8203;type {{
     *   width: number,
     * }}
    */({
      width,
    });

Renovate configuration

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

🚦 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.


  • If you want to rebase/retry this PR, check this box

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

@renovate renovate bot force-pushed the renovate/prettier-1.x branch 2 times, most recently from c7d7d55 to 06c6da4 Compare June 6, 2019 11:45
@renovate renovate bot changed the title chore(deps): update dependency prettier to v1.17.1 chore(deps): update dependency prettier to v1.18.0 Jun 6, 2019
@renovate renovate bot changed the title chore(deps): update dependency prettier to v1.18.0 chore(deps): update dependency prettier to v1.18.1 Jun 7, 2019
@renovate renovate bot changed the title chore(deps): update dependency prettier to v1.18.1 chore(deps): update dependency prettier to v1.18.2 Jun 7, 2019
@renovate renovate bot force-pushed the renovate/prettier-1.x branch 2 times, most recently from c3ba448 to 5a9be90 Compare June 14, 2019 16:30
@renovate renovate bot force-pushed the renovate/prettier-1.x branch 4 times, most recently from e38f3aa to 6d26e61 Compare July 8, 2019 14:25
@renovate renovate bot force-pushed the renovate/prettier-1.x branch 3 times, most recently from 1b54c82 to b9741ad Compare July 15, 2019 19:43
@renovate renovate bot force-pushed the renovate/prettier-1.x branch 6 times, most recently from 34e4df7 to b00fd5f Compare July 25, 2019 17:59
@renovate renovate bot force-pushed the renovate/prettier-1.x branch 4 times, most recently from 5d0171c to e025702 Compare August 2, 2019 02:57
@renovate renovate bot force-pushed the renovate/prettier-1.x branch 3 times, most recently from 5a53bc1 to 677aa7b Compare August 8, 2019 23:04
@renovate renovate bot force-pushed the renovate/prettier-1.x branch 2 times, most recently from b38942d to c5b080f Compare November 9, 2019 12:25
@renovate renovate bot changed the title chore(deps): update dependency prettier to v1.19.0 chore(deps): update dependency prettier to v1.19.1 Nov 9, 2019
@renovate renovate bot force-pushed the renovate/prettier-1.x branch 4 times, most recently from 69df3e5 to c3e8610 Compare December 18, 2019 20:13
@renovate renovate bot force-pushed the renovate/prettier-1.x branch 3 times, most recently from b29045c to 89d232d Compare January 28, 2020 21:27
@renovate renovate bot force-pushed the renovate/prettier-1.x branch 2 times, most recently from d5249aa to 9d2327b Compare March 26, 2020 17:31
@renovate renovate bot force-pushed the renovate/prettier-1.x branch 2 times, most recently from af339d9 to 7f25541 Compare April 12, 2020 19:06
@renovate renovate bot force-pushed the renovate/prettier-1.x branch 2 times, most recently from 2cb5b3e to c094c1c Compare July 2, 2020 17:36
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

2 participants