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 v3.1.0 #204

Merged
merged 1 commit into from
Nov 13, 2023

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Aug 29, 2023

Mend Renovate logo banner

This PR contains the following updates:

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

Release Notes

prettier/prettier (prettier)

v3.1.0

Compare Source

diff

🔗 Release Notes

v3.0.3

Compare Source

diff

Add preferUnplugged: true to package.json (#​15169 by @​fisker and @​so1ve)

Prettier v3 uses dynamic imports, user will need to unplug Prettier when Yarn's PnP mode is enabled, add preferUnplugged: true to package.json, so Yarn will install Prettier as unplug by default.

Support shared config that forbids require() (#​15233 by @​fisker)

If an external shared config package is used, and the package exports don't have require or default export.

In Prettier 3.0.2 Prettier fails when attempt to require() the package, and throws an error.

Error [ERR_PACKAGE_PATH_NOT_EXPORTED]: No "exports" main defined in <packageName>/package.json
Allow argument of require() to break (#​15256 by @​fisker)
// Input
const plugin = require(
  global.STANDALONE
    ? path.join(__dirname, "../standalone.js")
    : path.join(__dirname, "..")
);

// Prettier 3.0.2
const plugin = require(global.STANDALONE
  ? path.join(__dirname, "../standalone.js")
  : path.join(__dirname, ".."));

// Prettier 3.0.3
const plugin = require(
  global.STANDALONE
    ? path.join(__dirname, "../standalone.js")
    : path.join(__dirname, "..")
);
Do not print trailing commas in arrow function type parameter lists in ts code blocks (#​15286 by @​sosukesuzuki)
<!-- Input -->
```ts
const foo = <T>() => {}
```

<!-- Prettier 3.0.2 -->
```ts
const foo = <T,>() => {}
```

<!-- Prettier 3.0.3 -->
```ts
const foo = <T>() => {}
```
Support TypeScript 5.2 using / await using declaration (#​15321 by @​sosukesuzuki)

Support for the upcoming Explicit Resource Management feature in ECMAScript. using / await using declaration

{
   using foo = new Foo();
   await using bar = new Bar();
}

Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - 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 Mend Renovate. View repository job log here.

@renovate renovate bot requested a review from toddbaert as a code owner August 29, 2023 14:47
@renovate renovate bot force-pushed the renovate/prettier-3.x-lockfile branch 2 times, most recently from d5a61b5 to 4faebd0 Compare August 29, 2023 19:45
@renovate renovate bot force-pushed the renovate/prettier-3.x-lockfile branch from 4faebd0 to 35c2b72 Compare September 12, 2023 14:54
@renovate renovate bot force-pushed the renovate/prettier-3.x-lockfile branch from 35c2b72 to f649969 Compare September 26, 2023 13:19
@renovate renovate bot force-pushed the renovate/prettier-3.x-lockfile branch from f649969 to f1ec8ca Compare October 25, 2023 16:46
@renovate renovate bot changed the title chore(deps): update dependency prettier to v3.0.3 chore(deps): update dependency prettier to v3.1.0 Nov 13, 2023
@renovate renovate bot force-pushed the renovate/prettier-3.x-lockfile branch from f1ec8ca to 480cf22 Compare November 13, 2023 03:17
@renovate renovate bot force-pushed the renovate/prettier-3.x-lockfile branch from 480cf22 to d2e7cf8 Compare November 13, 2023 17:41
@beeme1mr beeme1mr merged commit 8166017 into main Nov 13, 2023
6 checks passed
@beeme1mr beeme1mr deleted the renovate/prettier-3.x-lockfile branch November 13, 2023 19:32
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.

1 participant