Skip to content
This repository has been archived by the owner on Sep 25, 2021. It is now read-only.

Update dependency prettier to v2.4.1 #572

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Conversation

renovate[bot]
Copy link

@renovate renovate bot commented Aug 26, 2020

WhiteSource Renovate

This PR contains the following updates:

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

Release Notes

prettier/prettier

v2.4.1

Compare Source

diff

Fix wildcard syntax in @forward (#​11482) (#​11487 by @​niksy)
// Input
@​forward "library" as btn-*;

// Prettier 2.4.0
@​forward "library" as btn- *;

// Prettier 2.4.1
@​forward "library" as btn-*;
Add new CLI option debug-print-ast (#​11514 by @​sosukesuzuki)

A new --debug-print-ast CLI flag for debugging.

v2.4.0

Compare Source

diff

🔗 Release Notes

v2.3.2

Compare Source

diff

Fix failure on dir with trailing slash (#​11000 by @​fisker)
$ ls
1.js  1.unknown

v2.3.1

Compare Source

$ prettier . -l
1.js
$ prettier ./ -l
[error] No supported files were found in the directory: "./".

v2.3.0

Compare Source

diff

🔗 Release Notes

v2.2.1

Compare Source

diff

Fix formatting for AssignmentExpression with ClassExpression (#​9741 by @​sosukesuzuki)
// Input
module.exports = class A extends B {
  method() {
    console.log("foo");
  }
};

// Prettier 2.2.0
module.exports = class A extends (
  B
) {
  method() {
    console.log("foo");
  }
};

// Prettier 2.2.1
module.exports = class A extends B {
  method() {
    console.log("foo");
  }
};

v2.2.0

Compare Source

diff

🔗 Release Notes

v2.1.2

Compare Source

diff

Fix formatting for directives in fields (#​9116 by @​sosukesuzuki)

v2.1.1

Compare Source

diff

Fix format on html with frontMatter (#​9043 by @​fisker)
<!-- Input -->
---
layout: foo
---

Test <a
href="https://prettier.io">abc</a>.

<!-- Prettier stable -->
TypeError: Cannot read property 'end' of undefined
  ...

<!-- Prettier master -->
---
layout: foo
---

Test <a href="https://prettier.io">abc</a>.
Fix broken format for ...infer T (#​9044 by @​fisker)
// Input
type Tail<T extends any[]> = T extends [infer U, ...infer R] ? R : never;

// Prettier stable
type Tail<T extends any[]> = T extends [infer U, ...(infer R)] ? R : never;

// Prettier master
type Tail<T extends any[]> = T extends [infer U, ...infer R] ? R : never;
Fix format on style[lang="sass"] (#​9051 by @​fisker)
<!-- Input -->
<style lang="sass">
.hero
  @&#8203;include background-centered
</style>

<!-- Prettier stable -->
<style lang="sass">
.hero @&#8203;include background-centered;
</style>

<!-- Prettier master -->
<style lang="sass">
  .hero
    @&#8203;include background-centered
</style>
Fix self-closing blocks and blocks with src attribute format (#​9052, #​9055 by @​fisker)
<!-- Input -->
<custom lang="markdown" src="./foo.md"></custom>
<custom lang="markdown" src="./foo.md" />
<custom lang="markdown" />

<!-- Prettier stable -->
<custom lang="markdown" src="./foo.md">

</custom>
<custom lang="markdown" src="./foo.md"

/>
<custom lang="markdown"

/>

<!-- Prettier master -->
<custom lang="markdown" src="./foo.md"></custom>
<custom lang="markdown" src="./foo.md" />
<custom lang="markdown" />

Configuration

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

🚦 Automerge: Enabled.

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-2.x branch 2 times, most recently from f5e8d3f to c59d846 Compare September 2, 2020 20:22
@renovate renovate bot force-pushed the renovate/prettier-2.x branch 3 times, most recently from b282295 to 115fdba Compare September 12, 2020 00:51
@renovate renovate bot changed the title Update dependency prettier to v2.1.1 Update dependency prettier to v2.1.2 Sep 16, 2020
@renovate renovate bot force-pushed the renovate/prettier-2.x branch 3 times, most recently from 9b149c4 to 67fb62c Compare September 19, 2020 07:27
@renovate renovate bot force-pushed the renovate/prettier-2.x branch 7 times, most recently from fc23ca2 to 708e099 Compare October 6, 2020 15:52
@renovate renovate bot force-pushed the renovate/prettier-2.x branch 13 times, most recently from ab84222 to d37859b Compare October 15, 2020 15:15
@renovate renovate bot force-pushed the renovate/prettier-2.x branch 4 times, most recently from fb5b9fd to 955aa07 Compare August 12, 2021 01:55
@renovate renovate bot force-pushed the renovate/prettier-2.x branch 4 times, most recently from 8caf1da to b1a0bfa Compare August 19, 2021 15:35
@renovate renovate bot force-pushed the renovate/prettier-2.x branch 4 times, most recently from 3a8ef45 to d07683e Compare August 28, 2021 04:54
@renovate renovate bot force-pushed the renovate/prettier-2.x branch 4 times, most recently from 7e06d1b to 40281d1 Compare September 9, 2021 10:16
@renovate renovate bot changed the title Update dependency prettier to v2.3.2 Update dependency prettier to v2.4.0 Sep 9, 2021
@renovate renovate bot force-pushed the renovate/prettier-2.x branch 5 times, most recently from dbdb0b4 to 88b7c95 Compare September 16, 2021 08:21
@renovate renovate bot changed the title Update dependency prettier to v2.4.0 Update dependency prettier to v2.4.1 Sep 16, 2021
@renovate renovate bot force-pushed the renovate/prettier-2.x branch 5 times, most recently from 8ea6090 to 7029343 Compare September 21, 2021 23:13
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

1 participant