From c876001f2961dcbf2585d44ec320f4044ea90468 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 4 Mar 2024 02:09:52 +0000 Subject: [PATCH 1/2] Bump stylelint-config-recess-order from 4.6.0 to 5.0.0 Bumps [stylelint-config-recess-order](https://github.com/stormwarning/stylelint-config-recess-order) from 4.6.0 to 5.0.0. - [Release notes](https://github.com/stormwarning/stylelint-config-recess-order/releases) - [Changelog](https://github.com/stormwarning/stylelint-config-recess-order/blob/main/CHANGELOG.md) - [Commits](https://github.com/stormwarning/stylelint-config-recess-order/compare/v4.6.0...v5.0.0) --- updated-dependencies: - dependency-name: stylelint-config-recess-order dependency-type: direct:development update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- package.json | 2 +- yarn.lock | 12 ++++++------ 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/package.json b/package.json index 5fbac47f644..ab62f9c4f77 100644 --- a/package.json +++ b/package.json @@ -22,7 +22,7 @@ "standard": "^17.1.0", "stylelint": "^16.2.1", "stylelint-config-gds": "^2.0.0", - "stylelint-config-recess-order": "^4.6.0", + "stylelint-config-recess-order": "^5.0.0", "stylelint-order": "^6.0.4" }, "scripts": { diff --git a/yarn.lock b/yarn.lock index 079d091e73f..74c46bb0658 100644 --- a/yarn.lock +++ b/yarn.lock @@ -8793,12 +8793,12 @@ stylelint-config-gds@^2.0.0: stylelint-config-standard "^36.0.0" stylelint-config-standard-scss "^13.0.0" -stylelint-config-recess-order@^4.6.0: - version "4.6.0" - resolved "https://registry.yarnpkg.com/stylelint-config-recess-order/-/stylelint-config-recess-order-4.6.0.tgz#b4c851c490b4e626b14712686b1eab1e4b17e253" - integrity sha512-V76fhv3YtcNXh/hyAuAdSzi5FmcrG54Mp2AThJ3D/PTMTSYzUPd7GIhP6z9mTqnRhmkk6YTfcu/JWB8h+Yrcaw== +stylelint-config-recess-order@^5.0.0: + version "5.0.0" + resolved "https://registry.yarnpkg.com/stylelint-config-recess-order/-/stylelint-config-recess-order-5.0.0.tgz#34882a0ec585b22ca4345d1127f087e5be62e8be" + integrity sha512-D+/Got844O96No2mj/H2NhLjj555iKAy/Mea+JCerfKB9TBKQW3/IudSVkTCxE4QiRDLldfH15x6FH1D1Anjhw== dependencies: - stylelint-order "6.x" + stylelint-order "^6.0.4" stylelint-config-recommended-scss@^14.0.0: version "14.0.0" @@ -8829,7 +8829,7 @@ stylelint-config-standard@^36.0.0: dependencies: stylelint-config-recommended "^14.0.0" -stylelint-order@6.x, stylelint-order@^6.0.4: +stylelint-order@^6.0.4: version "6.0.4" resolved "https://registry.yarnpkg.com/stylelint-order/-/stylelint-order-6.0.4.tgz#3e80d876c61a98d2640de181433686f24284748b" integrity sha512-0UuKo4+s1hgQ/uAxlYU4h0o0HS4NiQDud0NAUNI0aa8FJdmYHA5ZZTFHiV5FpmE3071e9pZx5j0QpVJW5zOCUA== From ea44c6a6274e8e5c293e5925dab0817f1fcd6000 Mon Sep 17 00:00:00 2001 From: Iain McNulty Date: Mon, 4 Mar 2024 12:21:52 +0000 Subject: [PATCH 2/2] Update stylelintrc to ESM --- .stylelintrc.js => .stylelintrc.mjs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) rename .stylelintrc.js => .stylelintrc.mjs (82%) diff --git a/.stylelintrc.js b/.stylelintrc.mjs similarity index 82% rename from .stylelintrc.js rename to .stylelintrc.mjs index 720f6d46303..0163a5fc92e 100644 --- a/.stylelintrc.js +++ b/.stylelintrc.mjs @@ -1,6 +1,6 @@ -const propertyGroups = require("stylelint-config-recess-order/groups"); +import propertyGroups from "stylelint-config-recess-order/groups"; -module.exports = { +export default { extends: ["stylelint-config-gds/scss", "stylelint-config-recess-order"], plugins: ["stylelint-order"], rules: {