Compare commits

...

15 Commits

Author SHA1 Message Date
ivuorinen
3cf835ada8 chore(release): publish
- @ivuorinen/base-configs@1.1.97
 - @ivuorinen/browserslist-config@0.2.8
 - @ivuorinen/commitlint-config@0.2.23
 - @ivuorinen/config-checker@1.1.4
 - @ivuorinen/eslint-config@0.4.44
 - @ivuorinen/markdownlint-config@0.2.9
 - @ivuorinen/prettier-config@0.2.15
 - @ivuorinen/semantic-release-config@0.2.23
 - @ivuorinen/stylelint-config@0.2.30
2024-07-02 11:07:36 +00:00
ivuorinen
e0c7475389 chore: 🤖 bump versions and publish packages 2024-07-02 11:07:33 +00:00
Ismo Vuorinen
3cc07cf3ff fix(workflows): commit lint fix 2024-07-02 14:06:53 +03:00
Ismo Vuorinen
bbbbdf049f fix(workflows): tweak publish jobs run order 2024-07-02 14:04:59 +03:00
Ismo Vuorinen
b4b41a9056 Workflow changes (#269)
* feat(workflows): pr actions workflow
* fix(workflows): split version bump and publish
2024-07-02 14:02:49 +03:00
renovate[bot]
5ccf62bf86 fix(deps): update stylelint-config-standard to 36.0.1 (#267)
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-07-02 09:17:39 +03:00
renovate[bot]
b40f77373e fix(deps): update eslint to 9.6.0 (#268) 2024-07-01 23:49:10 +03:00
ivuorinen
89fa547656 chore(release): publish
- @ivuorinen/stylelint-config@0.2.29
2024-06-22 22:42:19 +00:00
2bf43815df chore(deps): update yarn packages 2024-06-23 01:41:40 +03:00
renovate[bot]
2ca84826c4 fix(deps): update stylelint-scss to 6.3.2 (#266)
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-06-23 01:32:45 +03:00
renovate[bot]
e031d154b5 chore(deps): update eslint-plugin-unicorn to 54.0.0 (#265)
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-06-18 10:49:41 +03:00
ivuorinen
3352d0a93b chore(release): publish
- @ivuorinen/base-configs@1.1.96
 - @ivuorinen/eslint-config@0.4.43
2024-06-18 07:47:47 +00:00
renovate[bot]
0c0ac2abe9 fix(deps): update eslint to 9.5.0 (#264)
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-06-18 10:47:08 +03:00
renovate[bot]
6d66a87656 chore(release): publish
- @ivuorinen/base-configs@1.1.95
 - @ivuorinen/prettier-config@0.2.14
2024-06-15 04:26:54 +00:00
renovate[bot]
62ff7930de fix(deps): update dependency prettier to v3.3.2
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-06-15 04:26:19 +00:00
22 changed files with 266 additions and 50 deletions

52
.github/workflows/pr.yml vendored Normal file
View File

@@ -0,0 +1,52 @@
---
name: PR Actions
on:
pull_request:
permissions:
contents: write
issues: write
pull-requests: write
jobs:
pr:
name: PR Actions
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4.1.7
with:
fetch-depth: 0
- name: Setup Node.js Environment
uses: actions/setup-node@v4.0.2
with:
always-auth: true
node-version: 20
registry-url: 'https://registry.npmjs.org'
scope: '@ivuorinen'
- name: Cache Node Modules
uses: actions/cache@v4.0.2
id: cache
with:
path: node_modules
key: node-modules-${{ hashFiles('**/yarn.lock') }}
- name: Install Dependencies
if: steps.cache.outputs.cache-hit != 'true'
run: yarn install
- name: Yarn Lock Changes
# Please use `main` as version before the stable release will be published as `v1`.
uses: Simek/yarn-lock-changes@main
with:
token: ${{ secrets.GITHUB_TOKEN }}
# Optional inputs, can be deleted safely if you are happy with default values.
collapsibleThreshold: 25
failOnDowngrade: false
path: yarn.lock
updateComment: true
groupByType: false

View File

@@ -48,10 +48,20 @@ jobs:
- name: Bootstrap Lerna
run: yarn lerna:bootstrap:ci
- name: Bump Versions and Publish Packages
- name: Auto Commit Changes
uses: stefanzweifel/git-auto-commit-action@v5
with:
commit_message: 'chore: 🤖 bump versions and publish packages'
commit_options: '--no-verify'
- name: Bump Versions
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
run: |
yarn lerna:version
yarn lerna:publish
run: yarn lerna:version
- name: Publish Packages
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
run: yarn lerna:publish

View File

@@ -64,7 +64,7 @@
"eslint-plugin-prettier": "^5.0.1",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-sonarjs": "^1.0.0",
"eslint-plugin-unicorn": "^53.0.0",
"eslint-plugin-unicorn": "^54.0.0",
"lerna": "^8.0.0",
"lerna-update-wizard": "^1.1.2",
"markdownlint-cli": "^0.41.0",

View File

@@ -2,6 +2,20 @@
All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
## 1.1.97 (2024-07-02)
### Bug Fixes
- **workflows:** commit lint fix ([3cc07cf](https://github.com/ivuorinen/base-configs/commit/3cc07cf3ffd8743860a07bb85aa4d275bb63094e))
## [1.1.96](https://github.com/ivuorinen/base-configs/compare/@ivuorinen/base-configs@1.1.95...@ivuorinen/base-configs@1.1.96) (2024-06-18)
**Note:** Version bump only for package @ivuorinen/base-configs
## [1.1.95](https://github.com/ivuorinen/base-configs/compare/@ivuorinen/base-configs@1.1.94...@ivuorinen/base-configs@1.1.95) (2024-06-15)
**Note:** Version bump only for package @ivuorinen/base-configs
## [1.1.94](https://github.com/ivuorinen/base-configs/compare/@ivuorinen/base-configs@1.1.93...@ivuorinen/base-configs@1.1.94) (2024-06-14)
**Note:** Version bump only for package @ivuorinen/base-configs

View File

@@ -1,6 +1,6 @@
{
"name": "@ivuorinen/base-configs",
"version": "1.1.94",
"version": "1.1.97",
"description": "ivuorinen's shareable configurations meta package",
"author": {
"name": "Ismo Vuorinen",
@@ -27,12 +27,12 @@
"url": "git+https://github.com/ivuorinen/base-configs.git"
},
"dependencies": {
"@ivuorinen/browserslist-config": "^0.2.7",
"@ivuorinen/commitlint-config": "^0.2.22",
"@ivuorinen/eslint-config": "^0.4.42",
"@ivuorinen/markdownlint-config": "^0.2.8",
"@ivuorinen/prettier-config": "^0.2.13",
"@ivuorinen/semantic-release-config": "^0.2.22",
"@ivuorinen/browserslist-config": "^0.2.8",
"@ivuorinen/commitlint-config": "^0.2.23",
"@ivuorinen/eslint-config": "^0.4.44",
"@ivuorinen/markdownlint-config": "^0.2.9",
"@ivuorinen/prettier-config": "^0.2.15",
"@ivuorinen/semantic-release-config": "^0.2.23",
"eslint-plugin-n": "^17.0.0"
}
}

View File

@@ -2,6 +2,12 @@
All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
## 0.2.8 (2024-07-02)
### Bug Fixes
- **workflows:** commit lint fix ([3cc07cf](https://github.com/ivuorinen/base-configs/commit/3cc07cf3ffd8743860a07bb85aa4d275bb63094e))
## [0.2.7](https://github.com/ivuorinen/base-configs/compare/@ivuorinen/browserslist-config@0.2.6...@ivuorinen/browserslist-config@0.2.7) (2024-06-12)
### Bug Fixes

View File

@@ -1,6 +1,6 @@
{
"name": "@ivuorinen/browserslist-config",
"version": "0.2.7",
"version": "0.2.8",
"description": "ivuorinen's shareable configuration for Browserslist.",
"author": {
"name": "Ismo Vuorinen",
@@ -36,7 +36,7 @@
"postinstall": "node scripts/postinstall.js"
},
"dependencies": {
"@ivuorinen/config-checker": "^1.1.3",
"@ivuorinen/config-checker": "^1.1.4",
"browserslist": "4.23.1"
},
"gitHead": "23d15f15743fb59c1dbe658615ef2ed51c54d230"

View File

@@ -2,6 +2,12 @@
All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
## 0.2.23 (2024-07-02)
### Bug Fixes
- **workflows:** commit lint fix ([3cc07cf](https://github.com/ivuorinen/base-configs/commit/3cc07cf3ffd8743860a07bb85aa4d275bb63094e))
## [0.2.22](https://github.com/ivuorinen/base-configs/compare/@ivuorinen/commitlint-config@0.2.21...@ivuorinen/commitlint-config@0.2.22) (2024-06-04)
**Note:** Version bump only for package @ivuorinen/commitlint-config

View File

@@ -1,6 +1,6 @@
{
"name": "@ivuorinen/commitlint-config",
"version": "0.2.22",
"version": "0.2.23",
"description": "ivuorinen's shareable configuration for commitlint.",
"author": {
"name": "Ismo Vuorinen",
@@ -37,7 +37,7 @@
"dependencies": {
"@commitlint/cli": "19.3.0",
"@commitlint/config-conventional": "19.2.2",
"@ivuorinen/config-checker": "^1.1.3",
"@ivuorinen/config-checker": "^1.1.4",
"@types/node": "*",
"typescript": ">=4"
},

View File

@@ -2,6 +2,12 @@
All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
## 1.1.4 (2024-07-02)
### Bug Fixes
- **workflows:** commit lint fix ([3cc07cf](https://github.com/ivuorinen/base-configs/commit/3cc07cf3ffd8743860a07bb85aa4d275bb63094e))
## [1.1.3](https://github.com/ivuorinen/base-configs/compare/@ivuorinen/config-checker@1.1.2...@ivuorinen/config-checker@1.1.3) (2024-05-05)
### Bug Fixes

View File

@@ -1,6 +1,6 @@
{
"name": "@ivuorinen/config-checker",
"version": "1.1.3",
"version": "1.1.4",
"description": "Checks the commonly used configuration locations for configuration files",
"keywords": [
"check-config",

View File

@@ -2,6 +2,18 @@
All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
## 0.4.44 (2024-07-02)
### Bug Fixes
- **workflows:** commit lint fix ([3cc07cf](https://github.com/ivuorinen/base-configs/commit/3cc07cf3ffd8743860a07bb85aa4d275bb63094e))
## [0.4.43](https://github.com/ivuorinen/base-configs/compare/@ivuorinen/eslint-config@0.4.42...@ivuorinen/eslint-config@0.4.43) (2024-06-18)
### Bug Fixes
- **deps:** update eslint to 9.5.0 ([#264](https://github.com/ivuorinen/base-configs/issues/264)) ([0c0ac2a](https://github.com/ivuorinen/base-configs/commit/0c0ac2abe9f345df6a84b6988a27d64a1d7a59a4))
## [0.4.42](https://github.com/ivuorinen/base-configs/compare/@ivuorinen/eslint-config@0.4.41...@ivuorinen/eslint-config@0.4.42) (2024-06-14)
**Note:** Version bump only for package @ivuorinen/eslint-config

View File

@@ -1,6 +1,6 @@
{
"name": "@ivuorinen/eslint-config",
"version": "0.4.42",
"version": "0.4.44",
"description": "ivuorinen's shareable configuration for ESLint.",
"author": {
"name": "Ismo Vuorinen",
@@ -36,8 +36,8 @@
"postinstall": "node scripts/postinstall.js"
},
"dependencies": {
"@ivuorinen/config-checker": "^1.1.3",
"eslint": "9.4.0",
"@ivuorinen/config-checker": "^1.1.4",
"eslint": "9.6.0",
"eslint-config-prettier": "^9",
"eslint-config-standard": "^17",
"eslint-plugin-import": "^2",

View File

@@ -2,6 +2,12 @@
All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
## 0.2.9 (2024-07-02)
### Bug Fixes
- **workflows:** commit lint fix ([3cc07cf](https://github.com/ivuorinen/base-configs/commit/3cc07cf3ffd8743860a07bb85aa4d275bb63094e))
## [0.2.8](https://github.com/ivuorinen/base-configs/compare/@ivuorinen/markdownlint-config@0.2.7...@ivuorinen/markdownlint-config@0.2.8) (2024-06-14)
**Note:** Version bump only for package @ivuorinen/markdownlint-config

View File

@@ -1,6 +1,6 @@
{
"name": "@ivuorinen/markdownlint-config",
"version": "0.2.8",
"version": "0.2.9",
"description": "ivuorinen's shareable configuration for markdownlint.",
"author": {
"name": "Ismo Vuorinen",
@@ -36,7 +36,7 @@
"postinstall": "node scripts/postinstall.js"
},
"dependencies": {
"@ivuorinen/config-checker": "^1.1.3",
"@ivuorinen/config-checker": "^1.1.4",
"markdownlint-cli": "0.41.0"
},
"gitHead": "23d15f15743fb59c1dbe658615ef2ed51c54d230"

View File

@@ -2,6 +2,18 @@
All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
## 0.2.15 (2024-07-02)
### Bug Fixes
- **workflows:** commit lint fix ([3cc07cf](https://github.com/ivuorinen/base-configs/commit/3cc07cf3ffd8743860a07bb85aa4d275bb63094e))
## [0.2.14](https://github.com/ivuorinen/base-configs/compare/@ivuorinen/prettier-config@0.2.13...@ivuorinen/prettier-config@0.2.14) (2024-06-15)
### Bug Fixes
- **deps:** update dependency prettier to v3.3.2 ([62ff793](https://github.com/ivuorinen/base-configs/commit/62ff7930de55c29e08975faaed1b22df8c85ba44))
## [0.2.13](https://github.com/ivuorinen/base-configs/compare/@ivuorinen/prettier-config@0.2.12...@ivuorinen/prettier-config@0.2.13) (2024-06-14)
**Note:** Version bump only for package @ivuorinen/prettier-config

View File

@@ -1,6 +1,6 @@
{
"name": "@ivuorinen/prettier-config",
"version": "0.2.13",
"version": "0.2.15",
"description": "ivuorinen's shareable configuration for Prettier.",
"author": {
"name": "Ismo Vuorinen",
@@ -36,8 +36,8 @@
"postinstall": "node scripts/postinstall.js"
},
"dependencies": {
"@ivuorinen/config-checker": "^1.1.3",
"prettier": "3.3.1"
"@ivuorinen/config-checker": "^1.1.4",
"prettier": "3.3.2"
},
"gitHead": "23d15f15743fb59c1dbe658615ef2ed51c54d230"
}

View File

@@ -2,6 +2,12 @@
All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
## 0.2.23 (2024-07-02)
### Bug Fixes
- **workflows:** commit lint fix ([3cc07cf](https://github.com/ivuorinen/base-configs/commit/3cc07cf3ffd8743860a07bb85aa4d275bb63094e))
## [0.2.22](https://github.com/ivuorinen/base-configs/compare/@ivuorinen/semantic-release-config@0.2.21...@ivuorinen/semantic-release-config@0.2.22) (2024-06-04)
### Bug Fixes

View File

@@ -1,6 +1,6 @@
{
"name": "@ivuorinen/semantic-release-config",
"version": "0.2.22",
"version": "0.2.23",
"description": "ivuorinen's shareable configuration for semantic-release.",
"author": {
"name": "Ismo Vuorinen",
@@ -36,7 +36,7 @@
"postinstall": "node scripts/postinstall.js"
},
"dependencies": {
"@ivuorinen/config-checker": "^1.1.3",
"@ivuorinen/config-checker": "^1.1.4",
"@semantic-release/changelog": "6.0.3",
"@semantic-release/git": "10.0.1",
"semantic-release": "24.0.0"

View File

@@ -2,6 +2,18 @@
All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
## 0.2.30 (2024-07-02)
### Bug Fixes
- **workflows:** commit lint fix ([3cc07cf](https://github.com/ivuorinen/base-configs/commit/3cc07cf3ffd8743860a07bb85aa4d275bb63094e))
## [0.2.29](https://github.com/ivuorinen/base-configs/compare/@ivuorinen/stylelint-config@0.2.28...@ivuorinen/stylelint-config@0.2.29) (2024-06-22)
### Bug Fixes
- **deps:** update stylelint-scss to 6.3.2 ([#266](https://github.com/ivuorinen/base-configs/issues/266)) ([2ca8482](https://github.com/ivuorinen/base-configs/commit/2ca84826c4c481f332925336a7291542a393dfe5))
## [0.2.28](https://github.com/ivuorinen/base-configs/compare/@ivuorinen/stylelint-config@0.2.27...@ivuorinen/stylelint-config@0.2.28) (2024-06-14)
**Note:** Version bump only for package @ivuorinen/stylelint-config

View File

@@ -1,6 +1,6 @@
{
"name": "@ivuorinen/stylelint-config",
"version": "0.2.28",
"version": "0.2.30",
"description": "ivuorinen's shareable configuration for stylelint.",
"author": {
"name": "Ismo Vuorinen",
@@ -37,13 +37,13 @@
"postinstall": "node scripts/postinstall.js"
},
"dependencies": {
"@ivuorinen/config-checker": "^1.1.3",
"@ivuorinen/config-checker": "^1.1.4",
"postcss": "^8.4.2",
"stylelint": "16.6.1",
"stylelint-config-recommended-scss": "14.0.0",
"stylelint-config-standard": "36.0.0",
"stylelint-config-standard": "36.0.1",
"stylelint-order": "6.0.4",
"stylelint-scss": "6.3.1"
"stylelint-scss": "6.3.2"
},
"gitHead": "23d15f15743fb59c1dbe658615ef2ed51c54d230"
}

112
yarn.lock
View File

@@ -232,6 +232,15 @@
debug "^4.3.1"
minimatch "^3.0.5"
"@eslint/config-array@^0.17.0":
version "0.17.0"
resolved "https://registry.yarnpkg.com/@eslint/config-array/-/config-array-0.17.0.tgz#ff305e1ee618a00e6e5d0485454c8d92d94a860d"
integrity sha512-A68TBu6/1mHHuc5YJL0U0VVeGNiklLAL6rRmhTCP2B5XjWLMnrX+HkO+IAXyHvks5cyyY1jjK5ITPQ1HGS2EVA==
dependencies:
"@eslint/object-schema" "^2.1.4"
debug "^4.3.1"
minimatch "^3.1.2"
"@eslint/eslintrc@^3.0.2", "@eslint/eslintrc@^3.1.0":
version "3.1.0"
resolved "https://registry.yarnpkg.com/@eslint/eslintrc/-/eslintrc-3.1.0.tgz#dbd3482bfd91efa663cbe7aa1f506839868207b6"
@@ -252,7 +261,12 @@
resolved "https://registry.yarnpkg.com/@eslint/js/-/js-9.4.0.tgz#96a2edd37ec0551ce5f9540705be23951c008a0c"
integrity sha512-fdI7VJjP3Rvc70lC4xkFXHB0fiPeojiL1PxVG6t1ZvXQrarj893PweuBTujxDUFk0Fxj4R7PIIAZ/aiiyZPZcg==
"@eslint/object-schema@^2.1.3":
"@eslint/js@9.6.0":
version "9.6.0"
resolved "https://registry.yarnpkg.com/@eslint/js/-/js-9.6.0.tgz#5b0cb058cc13d9c92d4e561d3538807fa5127c95"
integrity sha512-D9B0/3vNg44ZeWbYMpBoXqNP4j6eQD5vNwIlGAuFRRzK/WtT/jvDQW3Bi9kkf3PMDMlM7Yi+73VLUsn5bJcl8A==
"@eslint/object-schema@^2.1.3", "@eslint/object-schema@^2.1.4":
version "2.1.4"
resolved "https://registry.yarnpkg.com/@eslint/object-schema/-/object-schema-2.1.4.tgz#9e69f8bb4031e11df79e03db09f9dbbae1740843"
integrity sha512-BsWiH1yFGjXXS2yvrf5LyuoSIIbPrGUWob917o+BTKuZ7qJdxX8aJLRxs1fS9n6r7vESrq1OUqb68dANcFXuQQ==
@@ -1275,7 +1289,7 @@ acorn-jsx@^5.3.2:
resolved "https://registry.yarnpkg.com/acorn-jsx/-/acorn-jsx-5.3.2.tgz#7ed5bb55908b3b2f1bc55c6af1653bada7f07937"
integrity sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==
acorn@^8.11.3:
acorn@^8.11.3, acorn@^8.12.0:
version "8.12.0"
resolved "https://registry.yarnpkg.com/acorn/-/acorn-8.12.0.tgz#1627bfa2e058148036133b8d9b51a700663c294c"
integrity sha512-RTvkC4w+KNXrM39/lWCUaG0IbRkWdCv7W/IOW9oU6SawyxulvkQy5HQPVTKxEjczcUvapcrw3cFx/60VN/NRNw==
@@ -2736,10 +2750,10 @@ eslint-plugin-sonarjs@^1, eslint-plugin-sonarjs@^1.0.0:
resolved "https://registry.yarnpkg.com/eslint-plugin-sonarjs/-/eslint-plugin-sonarjs-1.0.3.tgz#423de6f9244c886633ff36183c6fbc9fb1ed867d"
integrity sha512-6s41HLPYPyDrp+5+7Db5yFYbod6h9pC7yx+xfcNwHRcLe1EZwbbQT/tdOAkR7ekVUkNGEvN3GmYakIoQUX7dEg==
eslint-plugin-unicorn@^53.0.0:
version "53.0.0"
resolved "https://registry.yarnpkg.com/eslint-plugin-unicorn/-/eslint-plugin-unicorn-53.0.0.tgz#df3a5c9ecabeb759e6fd867b2d84198466ac8c4d"
integrity sha512-kuTcNo9IwwUCfyHGwQFOK/HjJAYzbODHN3wP0PgqbW+jbXqpNWxNVpVhj2tO9SixBwuAdmal8rVcWKBxwFnGuw==
eslint-plugin-unicorn@^54.0.0:
version "54.0.0"
resolved "https://registry.yarnpkg.com/eslint-plugin-unicorn/-/eslint-plugin-unicorn-54.0.0.tgz#ce3ea853e8fd7ca2bda2fd6065bf065adb5d8b6d"
integrity sha512-XxYLRiYtAWiAjPv6z4JREby1TAE2byBC7wlh0V4vWDCpccOSU1KovWV//jqPXF6bq3WKxqX9rdjoRQ1EhdmNdQ==
dependencies:
"@babel/helper-validator-identifier" "^7.24.5"
"@eslint-community/eslint-utils" "^4.4.0"
@@ -2781,7 +2795,47 @@ eslint-visitor-keys@^4.0.0:
resolved "https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-4.0.0.tgz#e3adc021aa038a2a8e0b2f8b0ce8f66b9483b1fb"
integrity sha512-OtIRv/2GyiF6o/d8K7MYKKbXrOUBIK6SfkIRM4Z0dY3w+LiQ0vy3F57m0Z71bjbyeiWFiHJ8brqnmE6H6/jEuw==
eslint@9.4.0, eslint@^9.0.0:
eslint@9.6.0:
version "9.6.0"
resolved "https://registry.yarnpkg.com/eslint/-/eslint-9.6.0.tgz#9f54373afa15e1ba356656a8d96233182027fb49"
integrity sha512-ElQkdLMEEqQNM9Njff+2Y4q2afHk7JpkPvrd7Xh7xefwgQynqPxwf55J7di9+MEibWUGdNjFF9ITG9Pck5M84w==
dependencies:
"@eslint-community/eslint-utils" "^4.2.0"
"@eslint-community/regexpp" "^4.6.1"
"@eslint/config-array" "^0.17.0"
"@eslint/eslintrc" "^3.1.0"
"@eslint/js" "9.6.0"
"@humanwhocodes/module-importer" "^1.0.1"
"@humanwhocodes/retry" "^0.3.0"
"@nodelib/fs.walk" "^1.2.8"
ajv "^6.12.4"
chalk "^4.0.0"
cross-spawn "^7.0.2"
debug "^4.3.2"
escape-string-regexp "^4.0.0"
eslint-scope "^8.0.1"
eslint-visitor-keys "^4.0.0"
espree "^10.1.0"
esquery "^1.5.0"
esutils "^2.0.2"
fast-deep-equal "^3.1.3"
file-entry-cache "^8.0.0"
find-up "^5.0.0"
glob-parent "^6.0.2"
ignore "^5.2.0"
imurmurhash "^0.1.4"
is-glob "^4.0.0"
is-path-inside "^3.0.3"
json-stable-stringify-without-jsonify "^1.0.1"
levn "^0.4.1"
lodash.merge "^4.6.2"
minimatch "^3.1.2"
natural-compare "^1.4.0"
optionator "^0.9.3"
strip-ansi "^6.0.1"
text-table "^0.2.0"
eslint@^9.0.0:
version "9.4.0"
resolved "https://registry.yarnpkg.com/eslint/-/eslint-9.4.0.tgz#79150c3610ae606eb131f1d648d5f43b3d45f3cd"
integrity sha512-sjc7Y8cUD1IlwYcTS9qPSvGjAC8Ne9LctpxKKu3x/1IC9bnOg98Zy6GxEJUfr1NojMgVPlyANXYns8oE2c1TAA==
@@ -2830,6 +2884,15 @@ espree@^10.0.1:
acorn-jsx "^5.3.2"
eslint-visitor-keys "^4.0.0"
espree@^10.1.0:
version "10.1.0"
resolved "https://registry.yarnpkg.com/espree/-/espree-10.1.0.tgz#8788dae611574c0f070691f522e4116c5a11fc56"
integrity sha512-M1M6CpiE6ffoigIOWYO9UDP8TMUw9kqb21tf+08IgDYjCsOvCuDt4jQcZmoYxx+w7zlKw9/N0KXfto+I8/FrXA==
dependencies:
acorn "^8.12.0"
acorn-jsx "^5.3.2"
eslint-visitor-keys "^4.0.0"
esprima@^4.0.0:
version "4.0.1"
resolved "https://registry.yarnpkg.com/esprima/-/esprima-4.0.1.tgz#13b04cdb3e6c5d19df91ab6987a8695619b0aa71"
@@ -6241,12 +6304,7 @@ prettier-linter-helpers@^1.0.0:
dependencies:
fast-diff "^1.1.2"
prettier@3.3.1:
version "3.3.1"
resolved "https://registry.yarnpkg.com/prettier/-/prettier-3.3.1.tgz#e68935518dd90bb7ec4821ba970e68f8de16e1ac"
integrity sha512-7CAwy5dRsxs8PHXT3twixW9/OEll8MLE0VRPCJyl7CkS6VHGPSlsVaWTiASPTyGyYRyApxlaWTzwUxVNrhcwDg==
prettier@^3.0.0:
prettier@3.3.2, prettier@^3.0.0:
version "3.3.2"
resolved "https://registry.yarnpkg.com/prettier/-/prettier-3.3.2.tgz#03ff86dc7c835f2d2559ee76876a3914cec4a90a"
integrity sha512-rAVeHYMcv8ATV5d508CFdn+8/pHPpXeIid1DdrPwXnaAdH7cqjVbpJaT5eq4yRAFU/lsbwYwSF/n5iNrdJHPQA==
@@ -7194,12 +7252,17 @@ stylelint-config-recommended@^14.0.0:
resolved "https://registry.yarnpkg.com/stylelint-config-recommended/-/stylelint-config-recommended-14.0.0.tgz#b395c7014838d2aaca1755eebd914d0bb5274994"
integrity sha512-jSkx290CglS8StmrLp2TxAppIajzIBZKYm3IxT89Kg6fGlxbPiTiyH9PS5YUuVAFwaJLl1ikiXX0QWjI0jmgZQ==
stylelint-config-standard@36.0.0:
version "36.0.0"
resolved "https://registry.yarnpkg.com/stylelint-config-standard/-/stylelint-config-standard-36.0.0.tgz#6704c044d611edc12692d4a5e37b039a441604d4"
integrity sha512-3Kjyq4d62bYFp/Aq8PMKDwlgUyPU4nacXsjDLWJdNPRUgpuxALu1KnlAHIj36cdtxViVhXexZij65yM0uNIHug==
stylelint-config-recommended@^14.0.1:
version "14.0.1"
resolved "https://registry.yarnpkg.com/stylelint-config-recommended/-/stylelint-config-recommended-14.0.1.tgz#d25e86409aaf79ee6c6085c2c14b33c7e23c90c6"
integrity sha512-bLvc1WOz/14aPImu/cufKAZYfXs/A/owZfSMZ4N+16WGXLoX5lOir53M6odBxvhgmgdxCVnNySJmZKx73T93cg==
stylelint-config-standard@36.0.1:
version "36.0.1"
resolved "https://registry.yarnpkg.com/stylelint-config-standard/-/stylelint-config-standard-36.0.1.tgz#727cbb2a1ef3e210f5ce8329cde531129f156609"
integrity sha512-8aX8mTzJ6cuO8mmD5yon61CWuIM4UD8Q5aBcWKGSf6kg+EC3uhB+iOywpTK4ca6ZL7B49en8yanOFtUW0qNzyw==
dependencies:
stylelint-config-recommended "^14.0.0"
stylelint-config-recommended "^14.0.1"
stylelint-order@6.0.4:
version "6.0.4"
@@ -7209,7 +7272,18 @@ stylelint-order@6.0.4:
postcss "^8.4.32"
postcss-sorting "^8.0.2"
stylelint-scss@6.3.1, stylelint-scss@^6.0.0:
stylelint-scss@6.3.2:
version "6.3.2"
resolved "https://registry.yarnpkg.com/stylelint-scss/-/stylelint-scss-6.3.2.tgz#085072e774e5a31e65aa2acefaad5417a29d6ec1"
integrity sha512-pNk9mXOVKkQtd+SROPC9io8ISSgX+tOVPhFdBE+LaKQnJMLdWPbGKAGYv4Wmf/RrnOjkutunNTN9kKMhkdE5qA==
dependencies:
known-css-properties "^0.31.0"
postcss-media-query-parser "^0.2.3"
postcss-resolve-nested-selector "^0.1.1"
postcss-selector-parser "^6.1.0"
postcss-value-parser "^4.2.0"
stylelint-scss@^6.0.0:
version "6.3.1"
resolved "https://registry.yarnpkg.com/stylelint-scss/-/stylelint-scss-6.3.1.tgz#eb56f23f4d3e0896647365ab1681653a00bdbc2b"
integrity sha512-w/czBoWUZxJNk5fBRPODcXSN4qcPv3WHjTSSpFovVY+TE3MZTMR0yRlbmaDYrm8tTWHvpwQAuEBZ0lk2wwkboQ==