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

Update dependency prettier to v2.4.1#572

Open
renovate[bot] wants to merge 1 commit intomasterfrom
renovate/prettier-2.x
Open

Update dependency prettier to v2.4.1#572
renovate[bot] wants to merge 1 commit intomasterfrom
renovate/prettier-2.x

Conversation

@renovate
Copy link
Copy Markdown

@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 force-pushed the renovate/prettier-2.x branch from 115fdba to 273fca0 Compare September 16, 2020 01:29
@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 6 times, most recently from 191ee7b to abc1013 Compare October 29, 2020 21:39
@renovate renovate Bot force-pushed the renovate/prettier-2.x branch 7 times, most recently from d86eb18 to d510876 Compare November 9, 2020 15:29
@renovate renovate Bot force-pushed the renovate/prettier-2.x branch 5 times, most recently from f90adf7 to e55c8c4 Compare November 18, 2020 14:12
@renovate renovate Bot force-pushed the renovate/prettier-2.x branch 3 times, most recently from 6cc3e7c to abfaa03 Compare November 20, 2020 04:55
@renovate renovate Bot changed the title Update dependency prettier to v2.1.2 Update dependency prettier to v2.2.0 Nov 20, 2020
@renovate renovate Bot force-pushed the renovate/prettier-2.x branch 7 times, most recently from 9e69801 to 6fe41e1 Compare November 27, 2020 19:16
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.

1 participant