element-plus / element-plus-playground

Element Plus Playground
https://element-plus.run
MIT License
172 stars 54 forks source link

chore(deps): update all non-major dependencies #208

Closed renovate[bot] closed 1 year ago

renovate[bot] commented 1 year ago

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@types/prettier (source) ^2.7.0 -> ^2.7.1 age adoption passing confidence
@unocss/transformer-directives (source) ^0.45.21 -> ^0.45.22 age adoption passing confidence
eslint (source) ^8.23.1 -> ^8.24.0 age adoption passing confidence
sass ^1.54.9 -> ^1.55.0 age adoption passing confidence
unocss ^0.45.21 -> ^0.45.22 age adoption passing confidence
vite-plugin-inspect ^0.7.2 -> ^0.7.3 age adoption passing confidence

Release Notes

antfu/unocss ### [`v0.45.22`](https://togithub.com/unocss/unocss/releases/tag/v0.45.22) [Compare Source](https://togithub.com/antfu/unocss/compare/v0.45.21...v0.45.22) #####    🚀 Features - Support vite 3.1  -  by [@​antfu](https://togithub.com/antfu) [(16c8c)](https://togithub.com/unocss/unocss/commit/16c8c557) - Add `preflight` option for presets  -  by [@​chris-zhu](https://togithub.com/chris-zhu) in [https://github.com/unocss/unocss/issues/1616](https://togithub.com/unocss/unocss/issues/1616) - **cli**: Support for transformers  -  by [@​wkeylin](https://togithub.com/wkeylin) and [@​antfu](https://togithub.com/antfu) in [https://github.com/unocss/unocss/issues/1592](https://togithub.com/unocss/unocss/issues/1592) #####    🐞 Bug Fixes - **cli**: Handle error for watch mode  -  by [@​sudongyuer](https://togithub.com/sudongyuer) and [@​antfu](https://togithub.com/antfu) in [https://github.com/unocss/unocss/issues/1609](https://togithub.com/unocss/unocss/issues/1609) - **transformer-attributify-jsx**: Ignore the className part  -  by [@​Flower-F](https://togithub.com/Flower-F) in [https://github.com/unocss/unocss/issues/1582](https://togithub.com/unocss/unocss/issues/1582) #####     [View changes on GitHub](https://togithub.com/unocss/unocss/compare/v0.45.21...v0.45.22)
eslint/eslint ### [`v8.24.0`](https://togithub.com/eslint/eslint/releases/tag/v8.24.0) [Compare Source](https://togithub.com/eslint/eslint/compare/v8.23.1...v8.24.0) #### Features - [`1729f9e`](https://togithub.com/eslint/eslint/commit/1729f9ea4d7b2945b2b701d72027fd4aace954cf) feat: account for `sourceType: "commonjs"` in the strict rule ([#​16308](https://togithub.com/eslint/eslint/issues/16308)) (Milos Djermanovic) - [`b0d72c9`](https://togithub.com/eslint/eslint/commit/b0d72c96b2a9cde7a5798c2b08ec4e70683c6aca) feat: add rule logical-assignment-operators ([#​16102](https://togithub.com/eslint/eslint/issues/16102)) (fnx) - [`f02bcd9`](https://togithub.com/eslint/eslint/commit/f02bcd91bf89b6c167d5346a36677fdb854f0c05) feat: `array-callback-return` support `findLast` and `findLastIndex` ([#​16314](https://togithub.com/eslint/eslint/issues/16314)) (Sosuke Suzuki) #### Documentation - [`2c152ff`](https://togithub.com/eslint/eslint/commit/2c152ff0fb709b99e62c19ecd2c95689efacbe4c) docs: note false positive `Object.getOwnPropertyNames` in prefer-reflect ([#​16317](https://togithub.com/eslint/eslint/issues/16317)) (AnnAngela) - [`bf7bd88`](https://togithub.com/eslint/eslint/commit/bf7bd885a92046a6b6bcbcaaa1e78e9f2c4b482f) docs: fix warn severity description for new config files ([#​16324](https://togithub.com/eslint/eslint/issues/16324)) (Nitin Kumar) - [`8cc0bbe`](https://togithub.com/eslint/eslint/commit/8cc0bbe440dc5e6af6ef02f00d0514a40ca07c24) docs: use more clean link syntax ([#​16309](https://togithub.com/eslint/eslint/issues/16309)) (Percy Ma) - [`6ba269e`](https://togithub.com/eslint/eslint/commit/6ba269ed673f965d081287b769c12beeb5f98887) docs: fix typo ([#​16288](https://togithub.com/eslint/eslint/issues/16288)) (jjangga0214) #### Chores - [`131e646`](https://togithub.com/eslint/eslint/commit/131e646e227b9aca3937fe287343bf2c3df408af) chore: Upgrade [@​humanwhocodes/config-array](https://togithub.com/humanwhocodes/config-array) for perf ([#​16339](https://togithub.com/eslint/eslint/issues/16339)) (Nicholas C. Zakas) - [`504fe59`](https://togithub.com/eslint/eslint/commit/504fe59b0e0f4f5a2afb6a69aaed5cb4ca631012) perf: switch from object spread to `Object.assign` when merging globals ([#​16311](https://togithub.com/eslint/eslint/issues/16311)) (Milos Djermanovic)
sass/dart-sass ### [`v1.55.0`](https://togithub.com/sass/dart-sass/blob/HEAD/CHANGELOG.md#​1550) [Compare Source](https://togithub.com/sass/dart-sass/compare/1.54.9...1.55.0) - **Potentially breaking bug fix:** Sass numbers are now universally stored as 64-bit floating-point numbers, rather than sometimes being stored as integers. This will generally make arithmetic with very large numbers more reliable and more consistent across platforms, but it does mean that numbers between nine quadrillion and nine quintillion will no longer be represented with full accuracy when compiling Sass on the Dart VM. - **Potentially breaking bug fix:** Sass equality is now properly [transitive]. Two numbers are now considered equal (after doing unit conversions) if they round to the same `1e-11`th. Previously, numbers were considered equal if they were within `1e-11` of one another, which led to some circumstances where `$a == $b` and `$b == $c` but `$a != $b`. [transitive]: https://en.wikipedia.org/wiki/Transitive_property - **Potentially breaking bug fix:** Various functions in `sass:math` no longer treat floating-point numbers that are very close (but not identical) to integers as integers. Instead, these functions now follow the floating-point specification exactly. For example, `math.pow(0.000000000001, -1)` now returns `1000000000000` instead of `Infinity`. - Emit a deprecation warning for `$a -$b` and `$a +$b`, since these look like they could be unary operations but they're actually parsed as binary operations. Either explicitly write `$a - $b` or `$a (-$b)`. See https://sass-lang.com/d/strict-unary for more details. ##### Dart API - Add an optional `argumentName` parameter to `SassScriptException()` to make it easier to throw exceptions associated with particular argument names. - Most APIs that previously returned `num` now return `double`. All APIs continue to *accept* `num`, although in Dart 2.0.0 these APIs will be changed to accept only `double`. ##### JS API - Fix a bug in which certain warning spans would not have their properties accessible by the JS API.
unocss/unocss ### [`v0.45.22`](https://togithub.com/unocss/unocss/releases/tag/v0.45.22) [Compare Source](https://togithub.com/unocss/unocss/compare/v0.45.21...v0.45.22) #####    🚀 Features - Support vite 3.1  -  by [@​antfu](https://togithub.com/antfu) [(16c8c)](https://togithub.com/unocss/unocss/commit/16c8c557) - Add `preflight` option for presets  -  by [@​chris-zhu](https://togithub.com/chris-zhu) in [https://github.com/unocss/unocss/issues/1616](https://togithub.com/unocss/unocss/issues/1616) - **cli**: Support for transformers  -  by [@​wkeylin](https://togithub.com/wkeylin) and [@​antfu](https://togithub.com/antfu) in [https://github.com/unocss/unocss/issues/1592](https://togithub.com/unocss/unocss/issues/1592) #####    🐞 Bug Fixes - **cli**: Handle error for watch mode  -  by [@​sudongyuer](https://togithub.com/sudongyuer) and [@​antfu](https://togithub.com/antfu) in [https://github.com/unocss/unocss/issues/1609](https://togithub.com/unocss/unocss/issues/1609) - **transformer-attributify-jsx**: Ignore the className part  -  by [@​Flower-F](https://togithub.com/Flower-F) in [https://github.com/unocss/unocss/issues/1582](https://togithub.com/unocss/unocss/issues/1582) #####     [View changes on GitHub](https://togithub.com/unocss/unocss/compare/v0.45.21...v0.45.22)
antfu/vite-plugin-inspect ### [`v0.7.3`](https://togithub.com/antfu/vite-plugin-inspect/releases/tag/v0.7.3) [Compare Source](https://togithub.com/antfu/vite-plugin-inspect/compare/v0.7.2...v0.7.3) #####    🚀 Features - HMR for module page and plugins-metric page  -  by [@​GODLiangCY](https://togithub.com/GODLiangCY) in [https://github.com/antfu/vite-plugin-inspect/issues/42](https://togithub.com/antfu/vite-plugin-inspect/issues/42) #####     [View changes on GitHub](https://togithub.com/antfu/vite-plugin-inspect/compare/v0.7.2...v0.7.3)

Configuration

📅 Schedule: Branch creation - "before 3am on Monday" (UTC), 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.

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



This PR has been generated by Mend Renovate. View repository job log here.