Bump eslint-plugin-react-refresh from 0.3.5 to 0.4.1 in /client #1

Merged
dependabot[bot] merged 1 commits from dependabot/npm_and_yarn/client/eslint-plugin-react-refresh-0.4.1 into main 2023-05-08 18:11:55 +00:00
dependabot[bot] commented 2023-05-08 18:08:22 +00:00 (Migrated from github.com)

Bumps eslint-plugin-react-refresh from 0.3.5 to 0.4.1.

Release notes

Sourced from eslint-plugin-react-refresh's releases.

v0.4.1

  • Ignore export type * (fixes #12)
  • Support for all-uppercase function wrapped in forwardRef/memo (#11)

v0.4.0

Add allowConstantExport option (fixes #8)

This option allow to don't warn when a constant (string, number, boolean, templateLiteral) is exported aside one or more components.

This should be enabled if the fast refresh implementation correctly handles this case (HMR when the constant doesn't change, propagate update to importers when the constant changes). Vite supports it, PR welcome if you notice other integrations works well.

Allow all-uppercase function exports (fixes #11)

This only works when using direct export. So this pattern doesn't warn anymore:

export const CMS = () => <></>;

But this one will still warn:

const CMS = () => <></>;
export default CMS;
Changelog

Sourced from eslint-plugin-react-refresh's changelog.

0.4.1

  • Ignore export type * (fixes #12)
  • Support for all-uppercase function wrapped in forwardRef/memo (#11)

0.4.0

Add allowConstantExport option (fixes #8)

This option allow to don't warn when a constant (string, number, boolean, templateLiteral) is exported aside one or more components.

This should be enabled if the fast refresh implementation correctly handles this case (HMR when the constant doesn't change, propagate update to importers when the constant changes). Vite supports it, PR welcome if you notice other integrations works well.

Allow all-uppercase function exports (fixes #11)

This only works when using direct export. So this pattern doesn't warn anymore:

export const CMS = () => <></>;

But this one will still warn:

const CMS = () => <></>;
export default CMS;
Commits
  • c0d156b Support for all-uppercase function wrapped in forwardRef/memo (#11) [publish]
  • 35cfa85 Ignore export type * (fixes #12)
  • add5efb Release 0.4.0 [publish]
  • 774976b Bump dev deps & use bun as test runner
  • ba7d589 Add allowConstantExport option (fixes #8)
  • d6514de Allow all-uppercase functions exports (fixes #11)
  • See full diff in compare view

Dependabot compatibility score

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
Bumps [eslint-plugin-react-refresh](https://github.com/ArnaudBarre/eslint-plugin-react-refresh) from 0.3.5 to 0.4.1. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/ArnaudBarre/eslint-plugin-react-refresh/releases">eslint-plugin-react-refresh's releases</a>.</em></p> <blockquote> <h2>v0.4.1</h2> <ul> <li>Ignore <code>export type *</code> (fixes <a href="https://redirect.github.com/ArnaudBarre/eslint-plugin-react-refresh/issues/12">#12</a>)</li> <li>Support for all-uppercase function wrapped in forwardRef/memo (<a href="https://redirect.github.com/ArnaudBarre/eslint-plugin-react-refresh/issues/11">#11</a>)</li> </ul> <h2>v0.4.0</h2> <h3>Add <code>allowConstantExport</code> option (fixes <a href="https://redirect.github.com/ArnaudBarre/eslint-plugin-react-refresh/issues/8">#8</a>)</h3> <p>This option allow to don't warn when a constant (string, number, boolean, templateLiteral) is exported aside one or more components.</p> <p>This should be enabled if the fast refresh implementation correctly handles this case (HMR when the constant doesn't change, propagate update to importers when the constant changes). Vite supports it, PR welcome if you notice other integrations works well.</p> <h3>Allow all-uppercase function exports (fixes <a href="https://redirect.github.com/ArnaudBarre/eslint-plugin-react-refresh/issues/11">#11</a>)</h3> <p>This only works when using direct export. So this pattern doesn't warn anymore:</p> <pre lang="jsx"><code>export const CMS = () =&gt; &lt;&gt;&lt;/&gt;; </code></pre> <p>But this one will still warn:</p> <pre lang="jsx"><code>const CMS = () =&gt; &lt;&gt;&lt;/&gt;; export default CMS; </code></pre> </blockquote> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/ArnaudBarre/eslint-plugin-react-refresh/blob/main/CHANGELOG.md">eslint-plugin-react-refresh's changelog</a>.</em></p> <blockquote> <h2>0.4.1</h2> <ul> <li>Ignore <code>export type *</code> (fixes <a href="https://redirect.github.com/ArnaudBarre/eslint-plugin-react-refresh/issues/12">#12</a>)</li> <li>Support for all-uppercase function wrapped in forwardRef/memo (<a href="https://redirect.github.com/ArnaudBarre/eslint-plugin-react-refresh/issues/11">#11</a>)</li> </ul> <h2>0.4.0</h2> <h3>Add <code>allowConstantExport</code> option (fixes <a href="https://redirect.github.com/ArnaudBarre/eslint-plugin-react-refresh/issues/8">#8</a>)</h3> <p>This option allow to don't warn when a constant (string, number, boolean, templateLiteral) is exported aside one or more components.</p> <p>This should be enabled if the fast refresh implementation correctly handles this case (HMR when the constant doesn't change, propagate update to importers when the constant changes). Vite supports it, PR welcome if you notice other integrations works well.</p> <h3>Allow all-uppercase function exports (fixes <a href="https://redirect.github.com/ArnaudBarre/eslint-plugin-react-refresh/issues/11">#11</a>)</h3> <p>This only works when using direct export. So this pattern doesn't warn anymore:</p> <pre lang="jsx"><code>export const CMS = () =&gt; &lt;&gt;&lt;/&gt;; </code></pre> <p>But this one will still warn:</p> <pre lang="jsx"><code>const CMS = () =&gt; &lt;&gt;&lt;/&gt;; export default CMS; </code></pre> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/ArnaudBarre/eslint-plugin-react-refresh/commit/c0d156b84bb79bc31b75dc525c2f1ae560563fb3"><code>c0d156b</code></a> Support for all-uppercase function wrapped in forwardRef/memo (<a href="https://redirect.github.com/ArnaudBarre/eslint-plugin-react-refresh/issues/11">#11</a>) [publish]</li> <li><a href="https://github.com/ArnaudBarre/eslint-plugin-react-refresh/commit/35cfa852695ebea57453c5eb34a9ba22f1414699"><code>35cfa85</code></a> Ignore <code>export type *</code> (fixes <a href="https://redirect.github.com/ArnaudBarre/eslint-plugin-react-refresh/issues/12">#12</a>)</li> <li><a href="https://github.com/ArnaudBarre/eslint-plugin-react-refresh/commit/add5efba30007d1078d248def58c44ceb72f90dc"><code>add5efb</code></a> Release 0.4.0 [publish]</li> <li><a href="https://github.com/ArnaudBarre/eslint-plugin-react-refresh/commit/774976b7fded42c4d40f3a84f51538d33b230c06"><code>774976b</code></a> Bump dev deps &amp; use bun as test runner</li> <li><a href="https://github.com/ArnaudBarre/eslint-plugin-react-refresh/commit/ba7d589e4564612340a27ff5f4c02c86940b3db8"><code>ba7d589</code></a> Add allowConstantExport option (fixes <a href="https://redirect.github.com/ArnaudBarre/eslint-plugin-react-refresh/issues/8">#8</a>)</li> <li><a href="https://github.com/ArnaudBarre/eslint-plugin-react-refresh/commit/d6514dee21e8203eb815fe72652d740a94bb8800"><code>d6514de</code></a> Allow all-uppercase functions exports (fixes <a href="https://redirect.github.com/ArnaudBarre/eslint-plugin-react-refresh/issues/11">#11</a>)</li> <li>See full diff in <a href="https://github.com/ArnaudBarre/eslint-plugin-react-refresh/compare/v0.3.5...v0.4.1">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=eslint-plugin-react-refresh&package-manager=npm_and_yarn&previous-version=0.3.5&new-version=0.4.1)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`. [//]: # (dependabot-automerge-start) [//]: # (dependabot-automerge-end) --- <details> <summary>Dependabot commands and options</summary> <br /> You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself) </details>
cloudflare-workers-and-pages[bot] commented 2023-05-08 18:08:23 +00:00 (Migrated from github.com)

Deploying with  Cloudflare Pages  Cloudflare Pages

Latest commit: 9a33a57
Status:   Deploy successful!
Preview URL: https://4f5d7091.powertools.pages.dev
Branch Preview URL: https://dependabot-npm-and-yarn-clie.powertools.pages.dev

View logs

## Deploying with &nbsp;<a href="https://pages.dev"><img alt="Cloudflare Pages" src="https://user-images.githubusercontent.com/23264/106598434-9e719e00-654f-11eb-9e59-6167043cfa01.png" width="16"></a> &nbsp;Cloudflare Pages <table><tr><td><strong>Latest commit:</strong> </td><td> <code>9a33a57</code> </td></tr> <tr><td><strong>Status:</strong></td><td>&nbsp;✅&nbsp; Deploy successful!</td></tr> <tr><td><strong>Preview URL:</strong></td><td> <a href='https://4f5d7091.powertools.pages.dev'>https://4f5d7091.powertools.pages.dev</a> </td></tr> <tr><td><strong>Branch Preview URL:</strong></td><td> <a href='https://dependabot-npm-and-yarn-clie.powertools.pages.dev'>https://dependabot-npm-and-yarn-clie.powertools.pages.dev</a> </td></tr> </table> [View logs](https://dash.cloudflare.com/?to=/:account/pages/view/powertools/4f5d7091-bf37-44fa-920f-d425457c4557)
This repo is archived. You cannot comment on pull requests.
No description provided.