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

Update dependency prettier to ^1.18.2 #60

Merged
merged 1 commit into from
Jun 19, 2019

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Jun 6, 2019

This PR contains the following updates:

Package Type Update Change
prettier (source) devDependencies minor ^1.17.1 -> ^1.18.2

Release Notes

prettier/prettier

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


Renovate configuration

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

🚦 Automerge: Enabled.

♻️ Rebasing: Whenever PR becomes conflicted, or if you modify the PR title to begin with "rebase!".

🔕 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. View repository job log here.

@codecov
Copy link

codecov bot commented Jun 6, 2019

Codecov Report

Merging #60 into develop will not change coverage.
The diff coverage is n/a.

Impacted file tree graph

@@          Coverage Diff           @@
##           develop    #60   +/-   ##
======================================
  Coverage      100%   100%           
======================================
  Files            1      1           
  Lines           52     52           
  Branches         7      7           
======================================
  Hits            52     52

Continue to review full report at Codecov.

Legend - Click here to learn more
Δ = absolute <relative> (impact), ø = not affected, ? = missing data
Powered by Codecov. Last update df1937b...920a0cb. Read the comment docs.

@renovate renovate bot force-pushed the feature/renovate-prettier-1.x branch from 0696044 to c918237 Compare June 7, 2019 13:07
@renovate renovate bot changed the title Update dependency prettier to ^1.18.0 Update dependency prettier to ^1.18.1 Jun 7, 2019
@renovate renovate bot force-pushed the feature/renovate-prettier-1.x branch from c918237 to 920a0cb Compare June 7, 2019 15:06
@renovate renovate bot changed the title Update dependency prettier to ^1.18.1 Update dependency prettier to ^1.18.2 Jun 7, 2019
@eaviles eaviles merged commit a2f51bf into develop Jun 19, 2019
@renovate renovate bot deleted the feature/renovate-prettier-1.x branch June 19, 2019 18:32
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Development

Successfully merging this pull request may close these issues.

2 participants