Skip to content

Commit 54f0821

Browse files
deps: bump the dependency-updates group with 2 updates (#1399)
Bumps the dependency-updates group with 2 updates: [framer-motion](https://github.com/framer/motion) and [eslint-import-resolver-typescript](https://github.com/import-js/eslint-import-resolver-typescript). Updates `framer-motion` from 11.12.0 to 11.13.1 <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/motiondivision/motion/blob/main/CHANGELOG.md">framer-motion's changelog</a>.</em></p> <blockquote> <h2>[11.13.1] 2024-12-03</h2> <h3>Fixed</h3> <ul> <li>SVG elements (like <code>motion.text</code>) now update when given a <code>MotionValue</code> as children, matching HTML element behavior.</li> <li>Exporting <code>DynamicAnimationOptions</code> type.</li> </ul> <h2>[11.13.0] 2024-12-03</h2> <h3>Added</h3> <ul> <li>Vanilla <code>hover</code> gesture in Motion+ early access.</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/motiondivision/motion/commit/d8b700a89e9f2f0c9b03c2a6f83a5933a5eda3a6"><code>d8b700a</code></a> v11.13.1</li> <li><a href="https://github.com/motiondivision/motion/commit/7c66534225a6a5f2ab33438201278a7e107fa03c"><code>7c66534</code></a> SVG elements (like motion.text) now update when given a MotionValue as childr...</li> <li><a href="https://github.com/motiondivision/motion/commit/7c6b1744593093b8c67dbd9adb3ab015408ba720"><code>7c6b174</code></a> exports DynamicAnimationOptions and DOMKeyframesDefinition (<a href="https://redirect.github.com/framer/motion/issues/2892">#2892</a>)</li> <li><a href="https://github.com/motiondivision/motion/commit/718c2190fe4f89573c18000f3af123a3ec6d5710"><code>718c219</code></a> docs: update README.md (<a href="https://redirect.github.com/framer/motion/issues/2882">#2882</a>)</li> <li><a href="https://github.com/motiondivision/motion/commit/54f3c53d9e606002e68dcebd05b33a4895ff0bb0"><code>54f3c53</code></a> Fixing</li> <li><a href="https://github.com/motiondivision/motion/commit/dcb5fc56f994a9f22c99000fb92f6bd5979d3d44"><code>dcb5fc5</code></a> Updating yarn lock</li> <li><a href="https://github.com/motiondivision/motion/commit/46d662e89d5575baf8487ae425f249d2226ee046"><code>46d662e</code></a> Updating Three.js (<a href="https://redirect.github.com/framer/motion/issues/2922">#2922</a>)</li> <li><a href="https://github.com/motiondivision/motion/commit/25105a539c04b7185e4e573515b809db1833dac9"><code>25105a5</code></a> Fixing typo</li> <li><a href="https://github.com/motiondivision/motion/commit/4b9e61e58727794f7621803ff96db014917c589d"><code>4b9e61e</code></a> docs: fix typos and update links in documentation files (<a href="https://redirect.github.com/framer/motion/issues/2910">#2910</a>)</li> <li><a href="https://github.com/motiondivision/motion/commit/c6ea900aecfec3e946a0f33db4672e0194f3048b"><code>c6ea900</code></a> Updating versions</li> <li>Additional commits viewable in <a href="https://github.com/framer/motion/compare/v11.12.0...v11.13.1">compare view</a></li> </ul> </details> <br /> Updates `eslint-import-resolver-typescript` from 3.6.3 to 3.7.0 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/import-js/eslint-import-resolver-typescript/releases">eslint-import-resolver-typescript's releases</a>.</em></p> <blockquote> <h2>v3.7.0</h2> <h3>Minor Changes</h3> <ul> <li> <p><a href="https://redirect.github.com/import-js/eslint-import-resolver-typescript/pull/326">#326</a> <a href="https://github.com/import-js/eslint-import-resolver-typescript/commit/93ea1305d0317db62a71edf029688eb410c2d261"><code>93ea130</code></a> Thanks <a href="https://github.com/SukkaW"><code>@​SukkaW</code></a>! - This version has implemented the <code>eslint-plugin-import-x</code>'s v3 resolver interface. This allows you to use import/require to reference <code>eslint-import-resolver-typescript</code> directly in your ESLint flat config:</p> <p><strong>Previously</strong></p> <pre lang="js"><code>// eslint.config.js module.exports = { settings: { 'import-x/resolver': { typescript: { alwaysTryTypes: true, }, // or require.resolve('eslint-import-resolver-typescript'): alwaysTryTypes: true, } } } } </code></pre> <p><strong>Now</strong></p> <pre lang="js"><code>// eslint.config.js const { createTypeScriptImportResolver, } = require('eslint-import-resolver-typescript') <p>module.exports = {<br /> settings: {<br /> 'import-x/resolver-next': [<br /> createTypeScriptImportResolver({<br /> alwaysTryTypes: true,<br /> }),<br /> ],<br /> },<br /> }<br /> </code></pre></p> <p>Note that this only works with <code>eslint-plugin-import-x@&gt;=4.5.0</code>. You can't use <code>createTypeScriptImportResolver</code> with the older versions of <code>eslint-plugin-import-x</code> or any existing versions of <code>eslint-plugin-import</code>.</p> </li> </ul> </blockquote> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/import-js/eslint-import-resolver-typescript/blob/master/CHANGELOG.md">eslint-import-resolver-typescript's changelog</a>.</em></p> <blockquote> <h2>3.7.0</h2> <h3>Minor Changes</h3> <ul> <li> <p><a href="https://redirect.github.com/import-js/eslint-import-resolver-typescript/pull/326">#326</a> <a href="https://github.com/import-js/eslint-import-resolver-typescript/commit/93ea1305d0317db62a71edf029688eb410c2d261"><code>93ea130</code></a> Thanks <a href="https://github.com/SukkaW"><code>@​SukkaW</code></a>! - This version has implemented the <code>eslint-plugin-import-x</code>'s v3 resolver interface. This allows you to use import/require to reference <code>eslint-import-resolver-typescript</code> directly in your ESLint flat config:</p> <p><strong>Previously</strong></p> <pre lang="js"><code>// eslint.config.js module.exports = { settings: { 'import-x/resolver': { typescript: { alwaysTryTypes: true, }, // or require.resolve('eslint-import-resolver-typescript'): alwaysTryTypes: true, } } } } </code></pre> <p><strong>Now</strong></p> <pre lang="js"><code>// eslint.config.js const { createTypeScriptImportResolver, } = require('eslint-import-resolver-typescript') <p>module.exports = {<br /> settings: {<br /> 'import-x/resolver-next': [<br /> createTypeScriptImportResolver({<br /> alwaysTryTypes: true,<br /> }),<br /> ],<br /> },<br /> }<br /> </code></pre></p> <p>Note that this only works with <code>eslint-plugin-import-x@&gt;=4.5.0</code>. You can't use <code>createTypeScriptImportResolver</code> with the older versions of <code>eslint-plugin-import-x</code> or any existing versions of <code>eslint-plugin-import</code>.</p> </li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/import-js/eslint-import-resolver-typescript/commit/c5da7003c3e98400be91fb2c38a988fbe3dab124"><code>c5da700</code></a> chore: release eslint-import-resolver-typescript (<a href="https://redirect.github.com/import-js/eslint-import-resolver-typescript/issues/327">#327</a>)</li> <li><a href="https://github.com/import-js/eslint-import-resolver-typescript/commit/93ea1305d0317db62a71edf029688eb410c2d261"><code>93ea130</code></a> feat: implement import-x resolver interface v3 (<a href="https://redirect.github.com/import-js/eslint-import-resolver-typescript/issues/326">#326</a>)</li> <li><a href="https://github.com/import-js/eslint-import-resolver-typescript/commit/e6256b7860e886583ec5a7614b001d021e1086a2"><code>e6256b7</code></a> chore(deps): update dependency simple-git-hooks to ^2.11.1 (<a href="https://redirect.github.com/import-js/eslint-import-resolver-typescript/issues/325">#325</a>)</li> <li><a href="https://github.com/import-js/eslint-import-resolver-typescript/commit/da56f17bd02cd7f5078210bed0df6eb07745ed24"><code>da56f17</code></a> chore(deps): update dependency react to ^18.3.1 (<a href="https://redirect.github.com/import-js/eslint-import-resolver-typescript/issues/324">#324</a>)</li> <li><a href="https://github.com/import-js/eslint-import-resolver-typescript/commit/88a6d44d4009a16c3709e96527e3f1c84dcfb354"><code>88a6d44</code></a> chore(deps): update node.js to v18.20.5 (<a href="https://redirect.github.com/import-js/eslint-import-resolver-typescript/issues/323">#323</a>)</li> <li><a href="https://github.com/import-js/eslint-import-resolver-typescript/commit/bed664f539cd7dc8e0d551d26ea7032711923ac5"><code>bed664f</code></a> chore(deps): update dependency <code>@​changesets/cli</code> to ^2.27.10 (<a href="https://redirect.github.com/import-js/eslint-import-resolver-typescript/issues/322">#322</a>)</li> <li><a href="https://github.com/import-js/eslint-import-resolver-typescript/commit/42e7cc3eb413dda56683c1b2b2483e4756e0bd62"><code>42e7cc3</code></a> chore(deps): update dependency <code>@​types/node</code> to ^18.19.63 (<a href="https://redirect.github.com/import-js/eslint-import-resolver-typescript/issues/320">#320</a>)</li> <li><a href="https://github.com/import-js/eslint-import-resolver-typescript/commit/13fa760ddd08697d1e9fc4a1b119241f1619e7cb"><code>13fa760</code></a> chore(deps): update dependency <code>@​changesets/cli</code> to ^2.27.9 (<a href="https://redirect.github.com/import-js/eslint-import-resolver-typescript/issues/319">#319</a>)</li> <li><a href="https://github.com/import-js/eslint-import-resolver-typescript/commit/5ee5879b4428f42edbc262d66e192c76202b7f47"><code>5ee5879</code></a> fix(deps): update dependency debug to ^4.3.7 (<a href="https://redirect.github.com/import-js/eslint-import-resolver-typescript/issues/316">#316</a>)</li> <li><a href="https://github.com/import-js/eslint-import-resolver-typescript/commit/f5b09f5f192b432a31c19f75a513003b6c17e03a"><code>f5b09f5</code></a> chore(deps): update dependency eslint to ^8.57.1 (<a href="https://redirect.github.com/import-js/eslint-import-resolver-typescript/issues/315">#315</a>)</li> <li>Additional commits viewable in <a href="https://github.com/import-js/eslint-import-resolver-typescript/compare/v3.6.3...v3.7.0">compare view</a></li> </ul> </details> <br /> 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 show <dependency name> ignore conditions` will show all of the ignore conditions of the specified dependency - `@dependabot ignore <dependency name> major version` will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself) - `@dependabot ignore <dependency name> minor version` will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself) - `@dependabot ignore <dependency name>` will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself) - `@dependabot unignore <dependency name>` will remove all of the ignore conditions of the specified dependency - `@dependabot unignore <dependency name> <ignore condition>` will remove the ignore condition of the specified dependency and ignore conditions </details> Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent be608de commit 54f0821

File tree

1 file changed

+27
-9
lines changed

1 file changed

+27
-9
lines changed

package-lock.json

Lines changed: 27 additions & 9 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)