Skip to content
This repository was archived by the owner on Dec 5, 2023. It is now read-only.

chore(deps): update eslint and prettier (patch) #277

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

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Aug 30, 2023

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
eslint-plugin-storybook 0.6.13 -> 0.6.15 age adoption passing confidence
prettier (source) 3.0.2 -> 3.0.3 age adoption passing confidence

Release Notes

storybookjs/eslint-plugin-storybook (eslint-plugin-storybook)

v0.6.15

Compare Source

🐛 Bug Fix
  • no-uninstalled-addons: support satisfies operator and default reexport #​139 (@​hjoelh)
Authors: 1

v0.6.14

Compare Source

🐛 Bug Fix
Authors: 1

prettier/prettier (prettier)

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: Enabled.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.


  • 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 re-taro as a code owner August 30, 2023 00:54
@renovate renovate bot added the renovate label Aug 30, 2023
@reg-suit
Copy link

reg-suit bot commented Aug 30, 2023

reg-suit detected visual differences.

Check this report, and review them.

⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪⚪

What do the circles mean? The number of circles represent the number of changed images.
🔴 : Changed items, ⚪ : New items, ⚫ : Deleted items, and 🔵 Passed items

How can I change the check status? If reviewers approve this PR, the reg context status will be green automatically.

@renovate renovate bot force-pushed the renovate/patch-eslint-and-prettier branch from a580631 to 7b8bd32 Compare August 30, 2023 03:20
@renovate renovate bot force-pushed the renovate/patch-eslint-and-prettier branch from 7b8bd32 to 3ac5fed Compare August 30, 2023 06:25
@renovate renovate bot force-pushed the renovate/patch-eslint-and-prettier branch from 3ac5fed to fbefffc Compare August 30, 2023 10:03
@renovate renovate bot force-pushed the renovate/patch-eslint-and-prettier branch from fbefffc to f3cd430 Compare August 30, 2023 13:06
@renovate renovate bot force-pushed the renovate/patch-eslint-and-prettier branch from f3cd430 to 494cd44 Compare August 30, 2023 17:29
@renovate renovate bot force-pushed the renovate/patch-eslint-and-prettier branch from 494cd44 to 5239778 Compare August 30, 2023 19:04
@renovate renovate bot changed the title chore(deps): update dependency prettier to v3.0.3 chore(deps): update eslint and prettier (patch) Sep 20, 2023
@renovate renovate bot force-pushed the renovate/patch-eslint-and-prettier branch from 5239778 to b60f923 Compare September 20, 2023 21:16
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants