mirror of
https://github.com/ivuorinen/base-configs.git
synced 2026-01-27 17:39:49 +00:00
Compare commits
15 Commits
@ivuorinen
...
@ivuorinen
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
1a5966d05b | ||
|
|
b7e8c449ce | ||
| c11bac54e2 | |||
| 8f989917c9 | |||
|
|
7ce1d576c3 | ||
|
|
345c8d7039 | ||
|
|
f36f6a4446 | ||
|
|
b2dc81f843 | ||
|
|
de987c2127 | ||
|
|
a69425d98b | ||
|
|
c07f5d763a | ||
|
|
e91a9abda2 | ||
| 89bae3f8a5 | |||
|
|
f84127b129 | ||
|
|
48f76ef9d6 |
2
.github/workflows/pr.yml
vendored
2
.github/workflows/pr.yml
vendored
@@ -24,7 +24,7 @@ jobs:
|
|||||||
uses: actions/setup-node@v4.1.0
|
uses: actions/setup-node@v4.1.0
|
||||||
with:
|
with:
|
||||||
always-auth: true
|
always-auth: true
|
||||||
node-version: 20
|
node-version-file: '.nvmrc'
|
||||||
registry-url: 'https://registry.npmjs.org'
|
registry-url: 'https://registry.npmjs.org'
|
||||||
scope: '@ivuorinen'
|
scope: '@ivuorinen'
|
||||||
|
|
||||||
|
|||||||
6
.github/workflows/publish.yml
vendored
6
.github/workflows/publish.yml
vendored
@@ -25,7 +25,7 @@ jobs:
|
|||||||
uses: actions/setup-node@v4.1.0
|
uses: actions/setup-node@v4.1.0
|
||||||
with:
|
with:
|
||||||
always-auth: true
|
always-auth: true
|
||||||
node-version: 20
|
node-version-file: '.nvmrc'
|
||||||
registry-url: 'https://registry.npmjs.org'
|
registry-url: 'https://registry.npmjs.org'
|
||||||
scope: '@ivuorinen'
|
scope: '@ivuorinen'
|
||||||
|
|
||||||
@@ -42,8 +42,8 @@ jobs:
|
|||||||
|
|
||||||
- name: Config Git User
|
- name: Config Git User
|
||||||
run: |
|
run: |
|
||||||
git config --global user.name "${{ github.actor }}"
|
git config --global user.name "fiximus"
|
||||||
git config --global user.email "${{ github.actor }}@users.noreply.github.com"
|
git config --global user.email "189535814+fiximus@users.noreply.github.com"
|
||||||
|
|
||||||
- name: Bootstrap Lerna
|
- name: Bootstrap Lerna
|
||||||
run: yarn lerna:bootstrap:ci
|
run: yarn lerna:bootstrap:ci
|
||||||
|
|||||||
47
.github/workflows/update-browserslist.yaml
vendored
Normal file
47
.github/workflows/update-browserslist.yaml
vendored
Normal file
@@ -0,0 +1,47 @@
|
|||||||
|
---
|
||||||
|
name: Update Browserslist database
|
||||||
|
|
||||||
|
on:
|
||||||
|
schedule:
|
||||||
|
# At 02:00 on day-of-month 1 and 15.
|
||||||
|
- cron: '0 2 1,15 * *'
|
||||||
|
workflow_dispatch:
|
||||||
|
|
||||||
|
permissions:
|
||||||
|
contents: write
|
||||||
|
pull-requests: write
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
update-browserslist-database:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- name: Checkout repository
|
||||||
|
uses: actions/checkout@v4
|
||||||
|
with:
|
||||||
|
fetch-depth: 0
|
||||||
|
|
||||||
|
- name: Setup Node.js Environment
|
||||||
|
uses: actions/setup-node@v4.1.0
|
||||||
|
with:
|
||||||
|
always-auth: true
|
||||||
|
node-version-file: '.nvmrc'
|
||||||
|
registry-url: 'https://registry.npmjs.org'
|
||||||
|
scope: '@ivuorinen'
|
||||||
|
|
||||||
|
- name: Configure git
|
||||||
|
run: |
|
||||||
|
git config user.name "fiximus"
|
||||||
|
git config user.email "189535814+fiximus@users.noreply.github.com"
|
||||||
|
|
||||||
|
- name: Update Browserslist database and create PR if applies
|
||||||
|
uses: c2corg/browserslist-update-action@v2.5.0
|
||||||
|
with:
|
||||||
|
directory: ./packages/browserslist-config/
|
||||||
|
github_token: ${{ secrets.GITHUB_TOKEN }}
|
||||||
|
branch: ${{ vars.BROWSERSLIST_UPDATE_BRANCH || 'browserslist-update' }}
|
||||||
|
base_branch: ${{ vars.DEFAULT_BRANCH || 'main' }}
|
||||||
|
commit_message: 'chore(deps): update browserslist database'
|
||||||
|
title: 'chore(deps): update browserslist database'
|
||||||
|
body: Auto-generated by [browserslist-update-action](https://github.com/c2corg/browserslist-update-action/)
|
||||||
|
labels: 'maintenance'
|
||||||
|
reviewers: 'ivuorinen'
|
||||||
@@ -3,6 +3,30 @@
|
|||||||
All notable changes to this project will be documented in this file.
|
All notable changes to this project will be documented in this file.
|
||||||
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
||||||
|
|
||||||
|
## [2.0.19](https://github.com/ivuorinen/base-configs/compare/@ivuorinen/base-configs@2.0.18...@ivuorinen/base-configs@2.0.19) (2024-12-16)
|
||||||
|
|
||||||
|
**Note:** Version bump only for package @ivuorinen/base-configs
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
## [2.0.18](https://github.com/ivuorinen/base-configs/compare/@ivuorinen/base-configs@2.0.17...@ivuorinen/base-configs@2.0.18) (2024-12-16)
|
||||||
|
|
||||||
|
**Note:** Version bump only for package @ivuorinen/base-configs
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
## [2.0.17](https://github.com/ivuorinen/base-configs/compare/@ivuorinen/base-configs@2.0.16...@ivuorinen/base-configs@2.0.17) (2024-12-16)
|
||||||
|
|
||||||
|
**Note:** Version bump only for package @ivuorinen/base-configs
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
## [2.0.16](https://github.com/ivuorinen/base-configs/compare/@ivuorinen/base-configs@2.0.15...@ivuorinen/base-configs@2.0.16) (2024-12-09)
|
## [2.0.16](https://github.com/ivuorinen/base-configs/compare/@ivuorinen/base-configs@2.0.15...@ivuorinen/base-configs@2.0.16) (2024-12-09)
|
||||||
|
|
||||||
**Note:** Version bump only for package @ivuorinen/base-configs
|
**Note:** Version bump only for package @ivuorinen/base-configs
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "@ivuorinen/base-configs",
|
"name": "@ivuorinen/base-configs",
|
||||||
"version": "2.0.16",
|
"version": "2.0.19",
|
||||||
"type": "module",
|
"type": "module",
|
||||||
"description": "ivuorinen's shareable configurations meta package",
|
"description": "ivuorinen's shareable configurations meta package",
|
||||||
"author": {
|
"author": {
|
||||||
@@ -28,7 +28,7 @@
|
|||||||
"url": "git+https://github.com/ivuorinen/base-configs.git"
|
"url": "git+https://github.com/ivuorinen/base-configs.git"
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@ivuorinen/browserslist-config": "^0.4.2",
|
"@ivuorinen/browserslist-config": "^0.4.3",
|
||||||
"@ivuorinen/commitlint-config": "^0.3.8",
|
"@ivuorinen/commitlint-config": "^0.3.8",
|
||||||
"@ivuorinen/eslint-config": "^0.5.8",
|
"@ivuorinen/eslint-config": "^0.5.8",
|
||||||
"@ivuorinen/markdownlint-config": "^0.3.9",
|
"@ivuorinen/markdownlint-config": "^0.3.9",
|
||||||
|
|||||||
@@ -355,18 +355,18 @@
|
|||||||
resolved "https://registry.yarnpkg.com/@isaacs/string-locale-compare/-/string-locale-compare-1.1.0.tgz#291c227e93fd407a96ecd59879a35809120e432b"
|
resolved "https://registry.yarnpkg.com/@isaacs/string-locale-compare/-/string-locale-compare-1.1.0.tgz#291c227e93fd407a96ecd59879a35809120e432b"
|
||||||
integrity sha512-SQ7Kzhh9+D+ZW9MA0zkYv3VXhIDNx+LzM6EJ+/65I3QY+enU6Itte7E5XX7EWrqLW2FN4n06GWzBnPoC3th2aQ==
|
integrity sha512-SQ7Kzhh9+D+ZW9MA0zkYv3VXhIDNx+LzM6EJ+/65I3QY+enU6Itte7E5XX7EWrqLW2FN4n06GWzBnPoC3th2aQ==
|
||||||
|
|
||||||
"@ivuorinen/browserslist-config@^0.4.1":
|
"@ivuorinen/browserslist-config@^0.4.2":
|
||||||
version "0.4.1"
|
version "0.4.2"
|
||||||
resolved "https://registry.yarnpkg.com/@ivuorinen/browserslist-config/-/browserslist-config-0.4.1.tgz#a84c91582797a851ceb86a7b7e4c24585fab0d2f"
|
resolved "https://registry.yarnpkg.com/@ivuorinen/browserslist-config/-/browserslist-config-0.4.2.tgz#bba4f084dfebcdb7fad045da71f6a19796361989"
|
||||||
integrity sha512-wf0tD7WK04RKNQDF6b2DvRSL9ch3ioUqL59Gcg9+sxp1Cz0iZh3+E58QrN4J5he3UDLeXZywIyZ4gKsOo04Z4g==
|
integrity sha512-TZgKCHFJH6WFzSq/cZk1Uu/iL3OAJRJ6BBdIM/BJpBXO6lIMdCxwgtXFxOUiJh7GB5/IuzusoLYaQMySks6w/Q==
|
||||||
dependencies:
|
dependencies:
|
||||||
"@ivuorinen/config-checker" "^1.1.9"
|
"@ivuorinen/config-checker" "^1.1.9"
|
||||||
browserslist "^4.24.2"
|
browserslist "^4.24.2"
|
||||||
|
|
||||||
"@ivuorinen/commitlint-config@^0.3.7":
|
"@ivuorinen/commitlint-config@^0.3.8":
|
||||||
version "0.3.7"
|
version "0.3.8"
|
||||||
resolved "https://registry.yarnpkg.com/@ivuorinen/commitlint-config/-/commitlint-config-0.3.7.tgz#cb68b643a54eef722838ed172ac276f76271bbd5"
|
resolved "https://registry.yarnpkg.com/@ivuorinen/commitlint-config/-/commitlint-config-0.3.8.tgz#bd3a4dd8d4298e8cc86a929f585b79384f9fee3c"
|
||||||
integrity sha512-FTPfWNYLAuq6judJD+MCexb3S8T5qsTiBOwOyqMpqqZtcwfwqn8K/N1MTwFl32YHrTXco26r5u57di/4bCUQzA==
|
integrity sha512-VKpLL2GYRbjDDDEsl5A1I05rKQEI7sb95ez7A2sEXlxkh0RZAI7adR3Chi2itqVSqjErQK5aP4pGjQ0v2IKQgA==
|
||||||
dependencies:
|
dependencies:
|
||||||
"@commitlint/cli" "^19"
|
"@commitlint/cli" "^19"
|
||||||
"@commitlint/config-conventional" "^19"
|
"@commitlint/config-conventional" "^19"
|
||||||
@@ -402,10 +402,10 @@
|
|||||||
"@ivuorinen/config-checker" "^1.1.9"
|
"@ivuorinen/config-checker" "^1.1.9"
|
||||||
markdownlint-cli "^0.43.0"
|
markdownlint-cli "^0.43.0"
|
||||||
|
|
||||||
"@ivuorinen/prettier-config@^0.3.7":
|
"@ivuorinen/prettier-config@^0.3.8":
|
||||||
version "0.3.7"
|
version "0.3.8"
|
||||||
resolved "https://registry.yarnpkg.com/@ivuorinen/prettier-config/-/prettier-config-0.3.7.tgz#a66db3d38e7c68cf272793884b7fff1ff3b03bf4"
|
resolved "https://registry.yarnpkg.com/@ivuorinen/prettier-config/-/prettier-config-0.3.8.tgz#8ff7e79e1d2bbd463a0579da6f40f3355ae340b6"
|
||||||
integrity sha512-YmS2OzUaPD+AzKTPU5y3A3nThOdHJFT4FyJ5oSl/8xdsizs10udptcb5W5tBpizGIOuZNYqI3YKjbQ7uYld1jA==
|
integrity sha512-gZc6YZ9PI4hiSh9P97ZbX1Bl2PRxSZaZ9DqIHZaK+lLGTcp/5EVXZHXYdWAQfAenfnFrvKXdVjHXQv8hIw5RMA==
|
||||||
dependencies:
|
dependencies:
|
||||||
"@ivuorinen/config-checker" "^1.1.9"
|
"@ivuorinen/config-checker" "^1.1.9"
|
||||||
prettier "^3"
|
prettier "^3"
|
||||||
@@ -1326,12 +1326,12 @@ brace-expansion@^2.0.1:
|
|||||||
dependencies:
|
dependencies:
|
||||||
balanced-match "^1.0.0"
|
balanced-match "^1.0.0"
|
||||||
|
|
||||||
braces@^3.0.2:
|
braces@^3.0.3:
|
||||||
version "3.0.2"
|
version "3.0.3"
|
||||||
resolved "https://registry.yarnpkg.com/braces/-/braces-3.0.2.tgz#3454e1a462ee8d599e236df336cd9ea4f8afe107"
|
resolved "https://registry.yarnpkg.com/braces/-/braces-3.0.3.tgz#490332f40919452272d55a8480adc0c441358789"
|
||||||
integrity sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==
|
integrity sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==
|
||||||
dependencies:
|
dependencies:
|
||||||
fill-range "^7.0.1"
|
fill-range "^7.1.1"
|
||||||
|
|
||||||
browserslist@^4.24.2:
|
browserslist@^4.24.2:
|
||||||
version "4.24.2"
|
version "4.24.2"
|
||||||
@@ -2433,10 +2433,10 @@ file-entry-cache@^8.0.0:
|
|||||||
dependencies:
|
dependencies:
|
||||||
flat-cache "^4.0.0"
|
flat-cache "^4.0.0"
|
||||||
|
|
||||||
fill-range@^7.0.1:
|
fill-range@^7.1.1:
|
||||||
version "7.0.1"
|
version "7.1.1"
|
||||||
resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-7.0.1.tgz#1919a6a7c75fe38b2c7c77e5198535da9acdda40"
|
resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-7.1.1.tgz#44265d3cac07e3ea7dc247516380643754a05292"
|
||||||
integrity sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==
|
integrity sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==
|
||||||
dependencies:
|
dependencies:
|
||||||
to-regex-range "^5.0.1"
|
to-regex-range "^5.0.1"
|
||||||
|
|
||||||
@@ -3921,11 +3921,11 @@ merge2@^1.3.0:
|
|||||||
integrity sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==
|
integrity sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==
|
||||||
|
|
||||||
micromatch@^4.0.0, micromatch@^4.0.2, micromatch@^4.0.4:
|
micromatch@^4.0.0, micromatch@^4.0.2, micromatch@^4.0.4:
|
||||||
version "4.0.5"
|
version "4.0.8"
|
||||||
resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-4.0.5.tgz#bc8999a7cbbf77cdc89f132f6e467051b49090c6"
|
resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-4.0.8.tgz#d66fa18f3a47076789320b9b1af32bd86d9fa202"
|
||||||
integrity sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==
|
integrity sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA==
|
||||||
dependencies:
|
dependencies:
|
||||||
braces "^3.0.2"
|
braces "^3.0.3"
|
||||||
picomatch "^2.3.1"
|
picomatch "^2.3.1"
|
||||||
|
|
||||||
mime@^4.0.0:
|
mime@^4.0.0:
|
||||||
|
|||||||
@@ -3,6 +3,14 @@
|
|||||||
All notable changes to this project will be documented in this file.
|
All notable changes to this project will be documented in this file.
|
||||||
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
||||||
|
|
||||||
|
## [0.4.3](https://github.com/ivuorinen/base-configs/compare/@ivuorinen/browserslist-config@0.4.2...@ivuorinen/browserslist-config@0.4.3) (2024-12-16)
|
||||||
|
|
||||||
|
**Note:** Version bump only for package @ivuorinen/browserslist-config
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
## [0.4.2](https://github.com/ivuorinen/base-configs/compare/@ivuorinen/browserslist-config@0.4.1...@ivuorinen/browserslist-config@0.4.2) (2024-12-09)
|
## [0.4.2](https://github.com/ivuorinen/base-configs/compare/@ivuorinen/browserslist-config@0.4.1...@ivuorinen/browserslist-config@0.4.2) (2024-12-09)
|
||||||
|
|
||||||
**Note:** Version bump only for package @ivuorinen/browserslist-config
|
**Note:** Version bump only for package @ivuorinen/browserslist-config
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "@ivuorinen/browserslist-config",
|
"name": "@ivuorinen/browserslist-config",
|
||||||
"version": "0.4.2",
|
"version": "0.4.3",
|
||||||
"description": "ivuorinen's shareable configuration for Browserslist.",
|
"description": "ivuorinen's shareable configuration for Browserslist.",
|
||||||
"type": "module",
|
"type": "module",
|
||||||
"author": {
|
"author": {
|
||||||
|
|||||||
@@ -18,9 +18,9 @@ browserslist@^4.24.2:
|
|||||||
update-browserslist-db "^1.1.1"
|
update-browserslist-db "^1.1.1"
|
||||||
|
|
||||||
caniuse-lite@^1.0.30001669:
|
caniuse-lite@^1.0.30001669:
|
||||||
version "1.0.30001680"
|
version "1.0.30001688"
|
||||||
resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001680.tgz#5380ede637a33b9f9f1fc6045ea99bd142f3da5e"
|
resolved "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001688.tgz"
|
||||||
integrity sha512-rPQy70G6AGUMnbwS1z6Xg+RkHYPAi18ihs47GH0jcxIG7wArmPgY3XbS2sRdBbxJljp3thdT8BIqv9ccCypiPA==
|
integrity sha512-Nmqpru91cuABu/DTCXbM2NSRHzM2uVHfPnhJ/1zEAJx/ILBRVmz3pzH4N7DZqbdG0gWClsCC05Oj0mJ/1AWMbA==
|
||||||
|
|
||||||
electron-to-chromium@^1.5.41:
|
electron-to-chromium@^1.5.41:
|
||||||
version "1.5.62"
|
version "1.5.62"
|
||||||
|
|||||||
@@ -3,6 +3,30 @@
|
|||||||
All notable changes to this project will be documented in this file.
|
All notable changes to this project will be documented in this file.
|
||||||
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
||||||
|
|
||||||
|
## [0.3.11](https://github.com/ivuorinen/base-configs/compare/@ivuorinen/stylelint-config@0.3.10...@ivuorinen/stylelint-config@0.3.11) (2024-12-10)
|
||||||
|
|
||||||
|
**Note:** Version bump only for package @ivuorinen/stylelint-config
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
## [0.3.10](https://github.com/ivuorinen/base-configs/compare/@ivuorinen/stylelint-config@0.3.9...@ivuorinen/stylelint-config@0.3.10) (2024-12-10)
|
||||||
|
|
||||||
|
**Note:** Version bump only for package @ivuorinen/stylelint-config
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
## [0.3.9](https://github.com/ivuorinen/base-configs/compare/@ivuorinen/stylelint-config@0.3.8...@ivuorinen/stylelint-config@0.3.9) (2024-12-10)
|
||||||
|
|
||||||
|
**Note:** Version bump only for package @ivuorinen/stylelint-config
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
## [0.3.8](https://github.com/ivuorinen/base-configs/compare/@ivuorinen/stylelint-config@0.3.7...@ivuorinen/stylelint-config@0.3.8) (2024-12-09)
|
## [0.3.8](https://github.com/ivuorinen/base-configs/compare/@ivuorinen/stylelint-config@0.3.7...@ivuorinen/stylelint-config@0.3.8) (2024-12-09)
|
||||||
|
|
||||||
**Note:** Version bump only for package @ivuorinen/stylelint-config
|
**Note:** Version bump only for package @ivuorinen/stylelint-config
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "@ivuorinen/stylelint-config",
|
"name": "@ivuorinen/stylelint-config",
|
||||||
"version": "0.3.8",
|
"version": "0.3.11",
|
||||||
"type": "module",
|
"type": "module",
|
||||||
"description": "ivuorinen's shareable configuration for stylelint.",
|
"description": "ivuorinen's shareable configuration for stylelint.",
|
||||||
"author": {
|
"author": {
|
||||||
|
|||||||
@@ -124,13 +124,6 @@ balanced-match@^2.0.0:
|
|||||||
resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-2.0.0.tgz#dc70f920d78db8b858535795867bf48f820633d9"
|
resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-2.0.0.tgz#dc70f920d78db8b858535795867bf48f820633d9"
|
||||||
integrity sha512-1ugUSr8BHXRnK23KfuYS+gVMC3LB8QGH9W1iGtDPsNWoQbgtXSExkBu2aDR4epiGWZOjZsj6lDl/N/AqqTC3UA==
|
integrity sha512-1ugUSr8BHXRnK23KfuYS+gVMC3LB8QGH9W1iGtDPsNWoQbgtXSExkBu2aDR4epiGWZOjZsj6lDl/N/AqqTC3UA==
|
||||||
|
|
||||||
braces@^3.0.2:
|
|
||||||
version "3.0.2"
|
|
||||||
resolved "https://registry.yarnpkg.com/braces/-/braces-3.0.2.tgz#3454e1a462ee8d599e236df336cd9ea4f8afe107"
|
|
||||||
integrity sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==
|
|
||||||
dependencies:
|
|
||||||
fill-range "^7.0.1"
|
|
||||||
|
|
||||||
braces@^3.0.3:
|
braces@^3.0.3:
|
||||||
version "3.0.3"
|
version "3.0.3"
|
||||||
resolved "https://registry.yarnpkg.com/braces/-/braces-3.0.3.tgz#490332f40919452272d55a8480adc0c441358789"
|
resolved "https://registry.yarnpkg.com/braces/-/braces-3.0.3.tgz#490332f40919452272d55a8480adc0c441358789"
|
||||||
@@ -291,13 +284,6 @@ file-entry-cache@^9.1.0:
|
|||||||
dependencies:
|
dependencies:
|
||||||
flat-cache "^5.0.0"
|
flat-cache "^5.0.0"
|
||||||
|
|
||||||
fill-range@^7.0.1:
|
|
||||||
version "7.0.1"
|
|
||||||
resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-7.0.1.tgz#1919a6a7c75fe38b2c7c77e5198535da9acdda40"
|
|
||||||
integrity sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==
|
|
||||||
dependencies:
|
|
||||||
to-regex-range "^5.0.1"
|
|
||||||
|
|
||||||
fill-range@^7.1.1:
|
fill-range@^7.1.1:
|
||||||
version "7.1.1"
|
version "7.1.1"
|
||||||
resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-7.1.1.tgz#44265d3cac07e3ea7dc247516380643754a05292"
|
resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-7.1.1.tgz#44265d3cac07e3ea7dc247516380643754a05292"
|
||||||
@@ -517,15 +503,7 @@ merge2@^1.3.0, merge2@^1.4.1:
|
|||||||
resolved "https://registry.yarnpkg.com/merge2/-/merge2-1.4.1.tgz#4368892f885e907455a6fd7dc55c0c9d404990ae"
|
resolved "https://registry.yarnpkg.com/merge2/-/merge2-1.4.1.tgz#4368892f885e907455a6fd7dc55c0c9d404990ae"
|
||||||
integrity sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==
|
integrity sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==
|
||||||
|
|
||||||
micromatch@^4.0.4:
|
micromatch@^4.0.4, micromatch@^4.0.8:
|
||||||
version "4.0.5"
|
|
||||||
resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-4.0.5.tgz#bc8999a7cbbf77cdc89f132f6e467051b49090c6"
|
|
||||||
integrity sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==
|
|
||||||
dependencies:
|
|
||||||
braces "^3.0.2"
|
|
||||||
picomatch "^2.3.1"
|
|
||||||
|
|
||||||
micromatch@^4.0.8:
|
|
||||||
version "4.0.8"
|
version "4.0.8"
|
||||||
resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-4.0.8.tgz#d66fa18f3a47076789320b9b1af32bd86d9fa202"
|
resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-4.0.8.tgz#d66fa18f3a47076789320b9b1af32bd86d9fa202"
|
||||||
integrity sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA==
|
integrity sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA==
|
||||||
@@ -539,9 +517,9 @@ ms@^2.1.3:
|
|||||||
integrity sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==
|
integrity sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==
|
||||||
|
|
||||||
nanoid@^3.3.7:
|
nanoid@^3.3.7:
|
||||||
version "3.3.7"
|
version "3.3.8"
|
||||||
resolved "https://registry.yarnpkg.com/nanoid/-/nanoid-3.3.7.tgz#d0c301a691bc8d54efa0a2226ccf3fe2fd656bd8"
|
resolved "https://registry.yarnpkg.com/nanoid/-/nanoid-3.3.8.tgz#b1be3030bee36aaff18bacb375e5cce521684baf"
|
||||||
integrity sha512-eSRppjcPIatRIMC1U6UngP8XFcz8MQWGQdt1MTBQ7NaAmvXDfvNxbvWV3x2y6CdEUciCSsDHDQZbhYaB8QEo2g==
|
integrity sha512-WNLf5Sd8oZxOm+TzppcYk8gVOgP+l58xNy58D0nbUnOxOWRWvlcCV4kUF7ltmI6PsrLl/BgKEyS4mqsGChFN0w==
|
||||||
|
|
||||||
normalize-path@^3.0.0:
|
normalize-path@^3.0.0:
|
||||||
version "3.0.0"
|
version "3.0.0"
|
||||||
|
|||||||
Reference in New Issue
Block a user