diff --git a/.github/workflows/pr.yml b/.github/workflows/pr.yml index 1f8b282..606b731 100644 --- a/.github/workflows/pr.yml +++ b/.github/workflows/pr.yml @@ -11,32 +11,38 @@ jobs: steps: - uses: actions/checkout@v4 - uses: ./.github/actions/quickstart - - uses: wagoid/commitlint-github-action@v5 - env: - NODE_PATH: ${{ github.workspace }}/node_modules + - run: | + type pnpm + type npm + echo $PATH + echo $GITHUB_PATH + cat $HOME/.bash_profile + cat $HOME/.bashrc - validate: - needs: init - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v4 - - uses: ./.github/actions/quickstart - - run: pnpm --filter="@chakra-icons/*" --filter="create-*" run lint + mkdir -p $GITHUB_WORKSPACE/kdnj/bin - test: - needs: init - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v4 - - uses: ./.github/actions/quickstart - - run: pnpm run test + echo -e '#!/bin/bash\npnpm "$@"' > $GITHUB_WORKSPACE/kdnj/bin/npm && \ + chmod +x $GITHUB_WORKSPACE/kdnj/bin/npm - build: - env: - NODE_OPTIONS: --max_old_space_size=8192 - needs: init - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v4 - - uses: ./.github/actions/quickstart - - run: pnpm run build + echo "$GITHUB_WORKSPACE/kdnj/bin" >> $GITHUB_PATH + + echo REAL_PATH $PATH + echo GITHUB_PATH $GITHUB_PATH + + type pnpm + type npm + + rc=/tmp/rcfile + + echo 'shopt -s expand_aliases' > $rc + echo 'alias ll="ls -l" ' >> $rc + echo 'alias npm="$GITHUB_WORKSPACE/kdnj/bin/npm"' >> $rc + + source $rc + + type pnpm + type npm + + npm version + + npm --help diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 9a069f4..4cad619 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -59,4 +59,14 @@ jobs: GIT_COMMITTER_NAME: "@kdnjbot" TURBO_TEAM: ${{ secrets.TURBO_TEAM }} TURBO_TOKEN: ${{ secrets.TURBO_TOKEN }} - run: pnpm run release + run: | + # PATCH: replace workspace:* to * + # multi-semantic-release (especially @semrel-extra/npm not supported version `workspace:*`. + # So, need to replace it before release + echo -e '#!/bin/bash\npnpm "$@"' > npm && chmod +x npm + echo "$GITHUB_WORKSPACE" >> $GITHUB_PATH + pnpm config set auto-install-peers true + pnpm install + find . -type f -name "package.json" -not -path './node_modules*' -not -path './.git*' -exec sed -i 's/workspace:\*/\*/g' {} \; + npm version + pnpm run release diff --git a/README.md b/README.md index a889a53..bec9a8f 100644 --- a/README.md +++ b/README.md @@ -16,7 +16,7 @@ | ---- | ----------- | ------- | | [create-chakra-icons](https://github.com/kodingdotninja/chakra-icons/tree/main/packages/create-chakra-icons) | ✅ | [![create-chakra-icons](https://badgen.net/npm/v/create-chakra-icons?color=green)](https://www.npmjs.com/package/create-chakra-icons) | | [@tooling/msrconfig](https://github.com/kodingdotninja/chakra-icons/tree/main/tooling/msr.conf) | ❌ | | -| [@chakra-icons/cli](https://github.com/kodingdotninja/chakra-icons/tree/main/tooling/cli) | ✅ | [![@chakra-icons/cli](https://badgen.net/npm/v/@chakra-icons/cli?color=green)](https://www.npmjs.com/package/@chakra-icons/cli) | +| [@chakra-icons/cli](https://github.com/kodingdotninja/chakra-icons/tree/main/tooling/cli) | ❌ | [![@chakra-icons/cli](https://badgen.net/npm/v/@chakra-icons/cli?color=green)](https://www.npmjs.com/package/@chakra-icons/cli) | | [@chakra-icons/bootstrap](https://github.com/kodingdotninja/chakra-icons/tree/main/packages/@chakra-icons/bootstrap) | ✅ | [![@chakra-icons/bootstrap version](https://badgen.net/npm/v/@chakra-icons/bootstrap?color=green)](https://www.npmjs.com/package/@chakra-icons/bootstrap) [![@chakra-icons/bootstrap treeshakeble](https://badgen.net/bundlephobia/tree-shaking/@chakra-icons/bootstrap?color=blue)](https://bundlephobia.com/package/@chakra-icons/bootstrap) | | [@chakra-icons/carbon](https://github.com/kodingdotninja/chakra-icons/tree/main/packages/@chakra-icons/carbon) | ✅ | [![@chakra-icons/carbon version](https://badgen.net/npm/v/@chakra-icons/carbon?color=green)](https://www.npmjs.com/package/@chakra-icons/carbon) [![@chakra-icons/carbon treeshakeble](https://badgen.net/bundlephobia/tree-shaking/@chakra-icons/carbon?color=blue)](https://bundlephobia.com/package/@chakra-icons/carbon) | | [@chakra-icons/cryptocurrency-icons](https://github.com/kodingdotninja/chakra-icons/tree/main/packages/@chakra-icons/cryptocurrency-icons) | ✅ | [![@chakra-icons/cryptocurrency-icons version](https://badgen.net/npm/v/@chakra-icons/cryptocurrency-icons?color=green)](https://www.npmjs.com/package/@chakra-icons/cryptocurrency-icons) [![@chakra-icons/cryptocurrency-icons treeshakeble](https://badgen.net/bundlephobia/tree-shaking/@chakra-icons/cryptocurrency-icons?color=blue)](https://bundlephobia.com/package/@chakra-icons/cryptocurrency-icons) | diff --git a/package.json b/package.json index dfa34e7..0bd592c 100644 --- a/package.json +++ b/package.json @@ -8,7 +8,7 @@ "packages/@chakra-icons/*", "website", "!website/**", - "!tooling/*.conf/**" + "!tooling/*" ], "scripts": { "# general commands": "--------------------------------------------------", @@ -41,11 +41,17 @@ "@types/react": "^18.2.21", "@types/react-dom": "^18.2.7", "commitlint-config-squash-pr": "^1.1.0", + "eslint": "^8.47.0", "husky": "^8.0.3", "multi-semantic-release": "^3.0.2", "plop": "^3.1.2", + "prettier": "^3.0.3", "shx": "^0.3.4", - "turbo": "^1.10.13" + "turbo": "^1.10.13", + "typescript": "^5.2.2" + }, + "resolutions": { + "@semantic-release/npm": "@semrel-extra/npm" }, "prettier": "@kodingdotninja/style-guide/prettier", "private": true diff --git a/packages/@chakra-icons/bootstrap/.releaserc.js b/packages/@chakra-icons/bootstrap/.releaserc.js index 13d7db5..fca146d 100644 --- a/packages/@chakra-icons/bootstrap/.releaserc.js +++ b/packages/@chakra-icons/bootstrap/.releaserc.js @@ -1 +1 @@ -module.exports = require("@tooling/msrconfig"); +module.exports = require("../../../tooling/msr.conf") diff --git a/packages/@chakra-icons/bootstrap/package.json b/packages/@chakra-icons/bootstrap/package.json index 63a9d29..d6b6762 100644 --- a/packages/@chakra-icons/bootstrap/package.json +++ b/packages/@chakra-icons/bootstrap/package.json @@ -22,7 +22,6 @@ ], "devDependencies": { "@chakra-icons/cli": "*", - "@tooling/msrconfig": "workspace:*", "tsup": "^7.2.0" }, "peerDependencies": { diff --git a/packages/@chakra-icons/carbon/.releaserc.js b/packages/@chakra-icons/carbon/.releaserc.js index 13d7db5..fca146d 100644 --- a/packages/@chakra-icons/carbon/.releaserc.js +++ b/packages/@chakra-icons/carbon/.releaserc.js @@ -1 +1 @@ -module.exports = require("@tooling/msrconfig"); +module.exports = require("../../../tooling/msr.conf") diff --git a/packages/@chakra-icons/carbon/package.json b/packages/@chakra-icons/carbon/package.json index 13ba19a..e501aa3 100644 --- a/packages/@chakra-icons/carbon/package.json +++ b/packages/@chakra-icons/carbon/package.json @@ -22,7 +22,6 @@ ], "devDependencies": { "@chakra-icons/cli": "*", - "@tooling/msrconfig": "workspace:*", "tsup": "^7.2.0" }, "peerDependencies": { diff --git a/packages/@chakra-icons/cryptocurrency-icons/.releaserc.js b/packages/@chakra-icons/cryptocurrency-icons/.releaserc.js index 13d7db5..fca146d 100644 --- a/packages/@chakra-icons/cryptocurrency-icons/.releaserc.js +++ b/packages/@chakra-icons/cryptocurrency-icons/.releaserc.js @@ -1 +1 @@ -module.exports = require("@tooling/msrconfig"); +module.exports = require("../../../tooling/msr.conf") diff --git a/packages/@chakra-icons/cryptocurrency-icons/package.json b/packages/@chakra-icons/cryptocurrency-icons/package.json index e074c7c..1364e8b 100644 --- a/packages/@chakra-icons/cryptocurrency-icons/package.json +++ b/packages/@chakra-icons/cryptocurrency-icons/package.json @@ -22,7 +22,6 @@ ], "devDependencies": { "@chakra-icons/cli": "*", - "@tooling/msrconfig": "workspace:*", "tsup": "^7.2.0" }, "peerDependencies": { diff --git a/packages/@chakra-icons/feather/.releaserc.js b/packages/@chakra-icons/feather/.releaserc.js index 13d7db5..fca146d 100644 --- a/packages/@chakra-icons/feather/.releaserc.js +++ b/packages/@chakra-icons/feather/.releaserc.js @@ -1 +1 @@ -module.exports = require("@tooling/msrconfig"); +module.exports = require("../../../tooling/msr.conf") diff --git a/packages/@chakra-icons/feather/package.json b/packages/@chakra-icons/feather/package.json index 9124aac..dcc851f 100644 --- a/packages/@chakra-icons/feather/package.json +++ b/packages/@chakra-icons/feather/package.json @@ -22,7 +22,6 @@ ], "devDependencies": { "@chakra-icons/cli": "*", - "@tooling/msrconfig": "workspace:*", "tsup": "^7.2.0" }, "peerDependencies": { diff --git a/packages/@chakra-icons/flat-icon/.releaserc.js b/packages/@chakra-icons/flat-icon/.releaserc.js index 13d7db5..fca146d 100644 --- a/packages/@chakra-icons/flat-icon/.releaserc.js +++ b/packages/@chakra-icons/flat-icon/.releaserc.js @@ -1 +1 @@ -module.exports = require("@tooling/msrconfig"); +module.exports = require("../../../tooling/msr.conf") diff --git a/packages/@chakra-icons/flat-icon/package.json b/packages/@chakra-icons/flat-icon/package.json index ca50ee5..f518bb2 100644 --- a/packages/@chakra-icons/flat-icon/package.json +++ b/packages/@chakra-icons/flat-icon/package.json @@ -22,7 +22,6 @@ ], "devDependencies": { "@chakra-icons/cli": "*", - "@tooling/msrconfig": "workspace:*", "tsup": "^7.2.0" }, "peerDependencies": { diff --git a/packages/@chakra-icons/ionicons/.releaserc.js b/packages/@chakra-icons/ionicons/.releaserc.js index 13d7db5..fca146d 100644 --- a/packages/@chakra-icons/ionicons/.releaserc.js +++ b/packages/@chakra-icons/ionicons/.releaserc.js @@ -1 +1 @@ -module.exports = require("@tooling/msrconfig"); +module.exports = require("../../../tooling/msr.conf") diff --git a/packages/@chakra-icons/ionicons/package.json b/packages/@chakra-icons/ionicons/package.json index 446f1d1..e2c4049 100644 --- a/packages/@chakra-icons/ionicons/package.json +++ b/packages/@chakra-icons/ionicons/package.json @@ -22,7 +22,6 @@ ], "devDependencies": { "@chakra-icons/cli": "*", - "@tooling/msrconfig": "workspace:*", "tsup": "^7.2.0" }, "peerDependencies": { diff --git a/packages/@chakra-icons/octicons/.releaserc.js b/packages/@chakra-icons/octicons/.releaserc.js index 13d7db5..fca146d 100644 --- a/packages/@chakra-icons/octicons/.releaserc.js +++ b/packages/@chakra-icons/octicons/.releaserc.js @@ -1 +1 @@ -module.exports = require("@tooling/msrconfig"); +module.exports = require("../../../tooling/msr.conf") diff --git a/packages/@chakra-icons/octicons/package.json b/packages/@chakra-icons/octicons/package.json index c787aee..5c1900e 100644 --- a/packages/@chakra-icons/octicons/package.json +++ b/packages/@chakra-icons/octicons/package.json @@ -22,7 +22,6 @@ ], "devDependencies": { "@chakra-icons/cli": "*", - "@tooling/msrconfig": "workspace:*", "tsup": "^7.2.0" }, "peerDependencies": { diff --git a/packages/@chakra-icons/octicons/snapshot.json b/packages/@chakra-icons/octicons/snapshot.json index 99b0ad9..d04c8b8 100644 --- a/packages/@chakra-icons/octicons/snapshot.json +++ b/packages/@chakra-icons/octicons/snapshot.json @@ -2088,6 +2088,11 @@ "svg": ".chakraIcons/icons/feed-merged-16.svg", "code": "src/FeedMerged16.tsx" }, + { + "name": "FeedIssueReopen16", + "svg": ".chakraIcons/icons/feed-issue-reopen-16.svg", + "code": "src/FeedIssueReopen16.tsx" + }, { "name": "FeedIssueOpen16", "svg": ".chakraIcons/icons/feed-issue-open-16.svg", diff --git a/packages/@chakra-icons/simple-line-icons/.releaserc.js b/packages/@chakra-icons/simple-line-icons/.releaserc.js index 13d7db5..fca146d 100644 --- a/packages/@chakra-icons/simple-line-icons/.releaserc.js +++ b/packages/@chakra-icons/simple-line-icons/.releaserc.js @@ -1 +1 @@ -module.exports = require("@tooling/msrconfig"); +module.exports = require("../../../tooling/msr.conf") diff --git a/packages/@chakra-icons/simple-line-icons/package.json b/packages/@chakra-icons/simple-line-icons/package.json index 118ba96..327cb99 100644 --- a/packages/@chakra-icons/simple-line-icons/package.json +++ b/packages/@chakra-icons/simple-line-icons/package.json @@ -22,7 +22,6 @@ ], "devDependencies": { "@chakra-icons/cli": "*", - "@tooling/msrconfig": "workspace:*", "tsup": "^7.2.0" }, "peerDependencies": { diff --git a/packages/@chakra-icons/tabler-icons/.releaserc.js b/packages/@chakra-icons/tabler-icons/.releaserc.js index 13d7db5..fca146d 100644 --- a/packages/@chakra-icons/tabler-icons/.releaserc.js +++ b/packages/@chakra-icons/tabler-icons/.releaserc.js @@ -1 +1 @@ -module.exports = require("@tooling/msrconfig"); +module.exports = require("../../../tooling/msr.conf") diff --git a/packages/@chakra-icons/tabler-icons/package.json b/packages/@chakra-icons/tabler-icons/package.json index be56aa2..a0058cd 100644 --- a/packages/@chakra-icons/tabler-icons/package.json +++ b/packages/@chakra-icons/tabler-icons/package.json @@ -22,7 +22,6 @@ ], "devDependencies": { "@chakra-icons/cli": "*", - "@tooling/msrconfig": "workspace:*", "tsup": "^7.2.0" }, "peerDependencies": { diff --git a/packages/@chakra-icons/tabler-icons/snapshot.json b/packages/@chakra-icons/tabler-icons/snapshot.json index 3c0ff81..4138364 100644 --- a/packages/@chakra-icons/tabler-icons/snapshot.json +++ b/packages/@chakra-icons/tabler-icons/snapshot.json @@ -6298,6 +6298,11 @@ "svg": ".chakraIcons/icons/pentagon.svg", "code": "src/Pentagon.tsx" }, + { + "name": "PentagonX", + "svg": ".chakraIcons/icons/pentagon-x.svg", + "code": "src/PentagonX.tsx" + }, { "name": "PentagonPlus", "svg": ".chakraIcons/icons/pentagon-plus.svg", @@ -6308,6 +6313,56 @@ "svg": ".chakraIcons/icons/pentagon-off.svg", "code": "src/PentagonOff.tsx" }, + { + "name": "PentagonNumber9", + "svg": ".chakraIcons/icons/pentagon-number-9.svg", + "code": "src/PentagonNumber9.tsx" + }, + { + "name": "PentagonNumber8", + "svg": ".chakraIcons/icons/pentagon-number-8.svg", + "code": "src/PentagonNumber8.tsx" + }, + { + "name": "PentagonNumber7", + "svg": ".chakraIcons/icons/pentagon-number-7.svg", + "code": "src/PentagonNumber7.tsx" + }, + { + "name": "PentagonNumber6", + "svg": ".chakraIcons/icons/pentagon-number-6.svg", + "code": "src/PentagonNumber6.tsx" + }, + { + "name": "PentagonNumber5", + "svg": ".chakraIcons/icons/pentagon-number-5.svg", + "code": "src/PentagonNumber5.tsx" + }, + { + "name": "PentagonNumber4", + "svg": ".chakraIcons/icons/pentagon-number-4.svg", + "code": "src/PentagonNumber4.tsx" + }, + { + "name": "PentagonNumber3", + "svg": ".chakraIcons/icons/pentagon-number-3.svg", + "code": "src/PentagonNumber3.tsx" + }, + { + "name": "PentagonNumber2", + "svg": ".chakraIcons/icons/pentagon-number-2.svg", + "code": "src/PentagonNumber2.tsx" + }, + { + "name": "PentagonNumber1", + "svg": ".chakraIcons/icons/pentagon-number-1.svg", + "code": "src/PentagonNumber1.tsx" + }, + { + "name": "PentagonNumber0", + "svg": ".chakraIcons/icons/pentagon-number-0.svg", + "code": "src/PentagonNumber0.tsx" + }, { "name": "PentagonFilled", "svg": ".chakraIcons/icons/pentagon-filled.svg", @@ -6478,6 +6533,21 @@ "svg": ".chakraIcons/icons/password.svg", "code": "src/Password.tsx" }, + { + "name": "PasswordUser", + "svg": ".chakraIcons/icons/password-user.svg", + "code": "src/PasswordUser.tsx" + }, + { + "name": "PasswordMobilePhone", + "svg": ".chakraIcons/icons/password-mobile-phone.svg", + "code": "src/PasswordMobilePhone.tsx" + }, + { + "name": "PasswordFingerprint", + "svg": ".chakraIcons/icons/password-fingerprint.svg", + "code": "src/PasswordFingerprint.tsx" + }, { "name": "Parking", "svg": ".chakraIcons/icons/parking.svg", @@ -8018,6 +8088,11 @@ "svg": ".chakraIcons/icons/menorah.svg", "code": "src/Menorah.tsx" }, + { + "name": "Melon", + "svg": ".chakraIcons/icons/melon.svg", + "code": "src/Melon.tsx" + }, { "name": "Meeple", "svg": ".chakraIcons/icons/meeple.svg", @@ -8333,6 +8408,11 @@ "svg": ".chakraIcons/icons/map-search.svg", "code": "src/MapSearch.tsx" }, + { + "name": "MapRoute", + "svg": ".chakraIcons/icons/map-route.svg", + "code": "src/MapRoute.tsx" + }, { "name": "MapQuestion", "svg": ".chakraIcons/icons/map-question.svg", @@ -8763,6 +8843,11 @@ "svg": ".chakraIcons/icons/login.svg", "code": "src/Login.tsx" }, + { + "name": "Login2", + "svg": ".chakraIcons/icons/login-2.svg", + "code": "src/Login2.tsx" + }, { "name": "LogicXor", "svg": ".chakraIcons/icons/logic-xor.svg", @@ -15908,6 +15993,11 @@ "svg": ".chakraIcons/icons/cloud-off.svg", "code": "src/CloudOff.tsx" }, + { + "name": "CloudNetwork", + "svg": ".chakraIcons/icons/cloud-network.svg", + "code": "src/CloudNetwork.tsx" + }, { "name": "CloudMinus", "svg": ".chakraIcons/icons/cloud-minus.svg", @@ -16673,6 +16763,61 @@ "svg": ".chakraIcons/icons/circle-dashed.svg", "code": "src/CircleDashed.tsx" }, + { + "name": "CircleDashedX", + "svg": ".chakraIcons/icons/circle-dashed-x.svg", + "code": "src/CircleDashedX.tsx" + }, + { + "name": "CircleDashedNumber9", + "svg": ".chakraIcons/icons/circle-dashed-number-9.svg", + "code": "src/CircleDashedNumber9.tsx" + }, + { + "name": "CircleDashedNumber8", + "svg": ".chakraIcons/icons/circle-dashed-number-8.svg", + "code": "src/CircleDashedNumber8.tsx" + }, + { + "name": "CircleDashedNumber7", + "svg": ".chakraIcons/icons/circle-dashed-number-7.svg", + "code": "src/CircleDashedNumber7.tsx" + }, + { + "name": "CircleDashedNumber6", + "svg": ".chakraIcons/icons/circle-dashed-number-6.svg", + "code": "src/CircleDashedNumber6.tsx" + }, + { + "name": "CircleDashedNumber5", + "svg": ".chakraIcons/icons/circle-dashed-number-5.svg", + "code": "src/CircleDashedNumber5.tsx" + }, + { + "name": "CircleDashedNumber4", + "svg": ".chakraIcons/icons/circle-dashed-number-4.svg", + "code": "src/CircleDashedNumber4.tsx" + }, + { + "name": "CircleDashedNumber3", + "svg": ".chakraIcons/icons/circle-dashed-number-3.svg", + "code": "src/CircleDashedNumber3.tsx" + }, + { + "name": "CircleDashedNumber2", + "svg": ".chakraIcons/icons/circle-dashed-number-2.svg", + "code": "src/CircleDashedNumber2.tsx" + }, + { + "name": "CircleDashedNumber1", + "svg": ".chakraIcons/icons/circle-dashed-number-1.svg", + "code": "src/CircleDashedNumber1.tsx" + }, + { + "name": "CircleDashedNumber0", + "svg": ".chakraIcons/icons/circle-dashed-number-0.svg", + "code": "src/CircleDashedNumber0.tsx" + }, { "name": "CircleChevronsUp", "svg": ".chakraIcons/icons/circle-chevrons-up.svg", @@ -17548,6 +17693,11 @@ "svg": ".chakraIcons/icons/car-off.svg", "code": "src/CarOff.tsx" }, + { + "name": "CarGarage", + "svg": ".chakraIcons/icons/car-garage.svg", + "code": "src/CarGarage.tsx" + }, { "name": "CarCrash", "svg": ".chakraIcons/icons/car-crash.svg", @@ -19128,6 +19278,11 @@ "svg": ".chakraIcons/icons/brand-mercedes.svg", "code": "src/BrandMercedes.tsx" }, + { + "name": "BrandMeetup", + "svg": ".chakraIcons/icons/brand-meetup.svg", + "code": "src/BrandMeetup.tsx" + }, { "name": "BrandMedium", "svg": ".chakraIcons/icons/brand-medium.svg", @@ -22768,6 +22923,11 @@ "svg": ".chakraIcons/icons/alert-triangle.svg", "code": "src/AlertTriangle.tsx" }, + { + "name": "AlertTriangleOff", + "svg": ".chakraIcons/icons/alert-triangle-off.svg", + "code": "src/AlertTriangleOff.tsx" + }, { "name": "AlertTriangleFilled", "svg": ".chakraIcons/icons/alert-triangle-filled.svg", @@ -22783,6 +22943,11 @@ "svg": ".chakraIcons/icons/alert-square-rounded.svg", "code": "src/AlertSquareRounded.tsx" }, + { + "name": "AlertSquareRoundedOff", + "svg": ".chakraIcons/icons/alert-square-rounded-off.svg", + "code": "src/AlertSquareRoundedOff.tsx" + }, { "name": "AlertSquareRoundedFilled", "svg": ".chakraIcons/icons/alert-square-rounded-filled.svg", @@ -22798,6 +22963,11 @@ "svg": ".chakraIcons/icons/alert-small.svg", "code": "src/AlertSmall.tsx" }, + { + "name": "AlertSmallOff", + "svg": ".chakraIcons/icons/alert-small-off.svg", + "code": "src/AlertSmallOff.tsx" + }, { "name": "AlertOctagon", "svg": ".chakraIcons/icons/alert-octagon.svg", @@ -22813,6 +22983,11 @@ "svg": ".chakraIcons/icons/alert-hexagon.svg", "code": "src/AlertHexagon.tsx" }, + { + "name": "AlertHexagonOff", + "svg": ".chakraIcons/icons/alert-hexagon-off.svg", + "code": "src/AlertHexagonOff.tsx" + }, { "name": "AlertHexagonFilled", "svg": ".chakraIcons/icons/alert-hexagon-filled.svg", @@ -22823,6 +22998,11 @@ "svg": ".chakraIcons/icons/alert-circle.svg", "code": "src/AlertCircle.tsx" }, + { + "name": "AlertCircleOff", + "svg": ".chakraIcons/icons/alert-circle-off.svg", + "code": "src/AlertCircleOff.tsx" + }, { "name": "AlertCircleFilled", "svg": ".chakraIcons/icons/alert-circle-filled.svg", diff --git a/packages/@chakra-icons/typicons/.releaserc.js b/packages/@chakra-icons/typicons/.releaserc.js index 13d7db5..fca146d 100644 --- a/packages/@chakra-icons/typicons/.releaserc.js +++ b/packages/@chakra-icons/typicons/.releaserc.js @@ -1 +1 @@ -module.exports = require("@tooling/msrconfig"); +module.exports = require("../../../tooling/msr.conf") diff --git a/packages/@chakra-icons/typicons/package.json b/packages/@chakra-icons/typicons/package.json index 023a540..b877883 100644 --- a/packages/@chakra-icons/typicons/package.json +++ b/packages/@chakra-icons/typicons/package.json @@ -22,7 +22,6 @@ ], "devDependencies": { "@chakra-icons/cli": "*", - "@tooling/msrconfig": "workspace:*", "tsup": "^7.2.0" }, "peerDependencies": { diff --git a/packages/create-chakra-icons/.releaserc.js b/packages/create-chakra-icons/.releaserc.js index 13d7db5..ad9edad 100644 --- a/packages/create-chakra-icons/.releaserc.js +++ b/packages/create-chakra-icons/.releaserc.js @@ -1 +1 @@ -module.exports = require("@tooling/msrconfig"); +module.exports = require("../../tooling/msr.conf") diff --git a/packages/create-chakra-icons/package.json b/packages/create-chakra-icons/package.json index 1fd41b1..28f4dc9 100644 --- a/packages/create-chakra-icons/package.json +++ b/packages/create-chakra-icons/package.json @@ -33,7 +33,6 @@ "svg-parser": "^2.0.4" }, "devDependencies": { - "@tooling/msrconfig": "workspace:*", "eslint": "^8.47.0", "tsup": "^7.2.0" }, diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 1788174..382ca87 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -1,8 +1,7 @@ lockfileVersion: '6.0' -settings: - autoInstallPeers: true - excludeLinksFromLockfile: false +overrides: + '@semantic-release/npm': '@semrel-extra/npm' importers: @@ -19,7 +18,7 @@ importers: version: 17.7.1 '@kodingdotninja/style-guide': specifier: ^4.0.1 - version: 4.0.1(eslint@8.48.0)(prettier@3.0.2)(tailwindcss@3.3.3)(typescript@5.2.2) + version: 4.0.1(eslint@8.48.0)(prettier@3.0.3)(tailwindcss@3.3.3)(typescript@5.2.2) '@types/babel__generator': specifier: ^7.6.4 version: 7.6.4 @@ -38,6 +37,9 @@ importers: commitlint-config-squash-pr: specifier: ^1.1.0 version: 1.1.0 + eslint: + specifier: ^8.47.0 + version: 8.48.0 husky: specifier: ^8.0.3 version: 8.0.3 @@ -47,12 +49,18 @@ importers: plop: specifier: ^3.1.2 version: 3.1.2 + prettier: + specifier: ^3.0.3 + version: 3.0.3 shx: specifier: ^0.3.4 version: 0.3.4 turbo: specifier: ^1.10.13 version: 1.10.13 + typescript: + specifier: ^5.2.2 + version: 5.2.2 packages/@chakra-icons/bootstrap: dependencies: @@ -63,9 +71,6 @@ importers: '@chakra-icons/cli': specifier: '*' version: link:../../../tooling/cli - '@tooling/msrconfig': - specifier: workspace:* - version: link:../../../tooling/msr.conf tsup: specifier: ^7.2.0 version: 7.2.0(postcss@8.4.28)(ts-node@10.9.1)(typescript@5.2.2) @@ -79,9 +84,6 @@ importers: '@chakra-icons/cli': specifier: '*' version: link:../../../tooling/cli - '@tooling/msrconfig': - specifier: workspace:* - version: link:../../../tooling/msr.conf tsup: specifier: ^7.2.0 version: 7.2.0(postcss@8.4.28)(ts-node@10.9.1)(typescript@5.2.2) @@ -95,9 +97,6 @@ importers: '@chakra-icons/cli': specifier: '*' version: link:../../../tooling/cli - '@tooling/msrconfig': - specifier: workspace:* - version: link:../../../tooling/msr.conf tsup: specifier: ^7.2.0 version: 7.2.0(postcss@8.4.28)(ts-node@10.9.1)(typescript@5.2.2) @@ -111,9 +110,6 @@ importers: '@chakra-icons/cli': specifier: '*' version: link:../../../tooling/cli - '@tooling/msrconfig': - specifier: workspace:* - version: link:../../../tooling/msr.conf tsup: specifier: ^7.2.0 version: 7.2.0(postcss@8.4.28)(ts-node@10.9.1)(typescript@5.2.2) @@ -127,9 +123,6 @@ importers: '@chakra-icons/cli': specifier: '*' version: link:../../../tooling/cli - '@tooling/msrconfig': - specifier: workspace:* - version: link:../../../tooling/msr.conf tsup: specifier: ^7.2.0 version: 7.2.0(postcss@8.4.28)(ts-node@10.9.1)(typescript@5.2.2) @@ -143,9 +136,6 @@ importers: '@chakra-icons/cli': specifier: '*' version: link:../../../tooling/cli - '@tooling/msrconfig': - specifier: workspace:* - version: link:../../../tooling/msr.conf tsup: specifier: ^7.2.0 version: 7.2.0(postcss@8.4.28)(ts-node@10.9.1)(typescript@5.2.2) @@ -159,9 +149,6 @@ importers: '@chakra-icons/cli': specifier: '*' version: link:../../../tooling/cli - '@tooling/msrconfig': - specifier: workspace:* - version: link:../../../tooling/msr.conf tsup: specifier: ^7.2.0 version: 7.2.0(postcss@8.4.28)(ts-node@10.9.1)(typescript@5.2.2) @@ -175,9 +162,6 @@ importers: '@chakra-icons/cli': specifier: '*' version: link:../../../tooling/cli - '@tooling/msrconfig': - specifier: workspace:* - version: link:../../../tooling/msr.conf tsup: specifier: ^7.2.0 version: 7.2.0(postcss@8.4.28)(ts-node@10.9.1)(typescript@5.2.2) @@ -191,9 +175,6 @@ importers: '@chakra-icons/cli': specifier: '*' version: link:../../../tooling/cli - '@tooling/msrconfig': - specifier: workspace:* - version: link:../../../tooling/msr.conf tsup: specifier: ^7.2.0 version: 7.2.0(postcss@8.4.28)(ts-node@10.9.1)(typescript@5.2.2) @@ -207,9 +188,6 @@ importers: '@chakra-icons/cli': specifier: '*' version: link:../../../tooling/cli - '@tooling/msrconfig': - specifier: workspace:* - version: link:../../../tooling/msr.conf tsup: specifier: ^7.2.0 version: 7.2.0(postcss@8.4.28)(ts-node@10.9.1)(typescript@5.2.2) @@ -235,9 +213,6 @@ importers: specifier: ^2.0.4 version: 2.0.4 devDependencies: - '@tooling/msrconfig': - specifier: workspace:* - version: link:../../tooling/msr.conf eslint: specifier: ^8.47.0 version: 8.47.0 @@ -273,7 +248,7 @@ importers: specifier: ^4.1.2 version: 4.1.2 create-chakra-icons: - specifier: '*' + specifier: workspace:* version: link:../../packages/create-chakra-icons degit: specifier: npm:tiged @@ -307,14 +282,23 @@ importers: tooling/msr.conf: dependencies: '@semantic-release/changelog': - specifier: ^6.0.3 + specifier: ^6 version: 6.0.3(semantic-release@21.1.1) + '@semantic-release/commit-analyzer': + specifier: ^10 + version: 10.0.0(semantic-release@21.1.1) '@semantic-release/git': - specifier: ^10.0.1 + specifier: ^10 version: 10.0.1(semantic-release@21.1.1) + '@semantic-release/github': + specifier: ^9 + version: 9.0.0(semantic-release@21.1.1) + '@semantic-release/release-notes-generator': + specifier: ^11 + version: 11.0.0(semantic-release@21.1.1) '@semrel-extra/npm': - specifier: ^1.2.2 - version: 1.2.2 + specifier: ^1 + version: 1.0.0 website: dependencies: @@ -567,13 +551,13 @@ packages: engines: {node: '>=6.9.0'} dependencies: regenerator-runtime: 0.14.0 + dev: true /@babel/runtime@7.22.11: resolution: {integrity: sha512-ee7jVNlWN09+KftVOu9n7S8gQzD/Z6hN/I8VBRXW4P1+Xe7kJGXMwu8vds4aGIMHZnNbdpSWCfZZtinytpcAvA==} engines: {node: '>=6.9.0'} dependencies: regenerator-runtime: 0.14.0 - dev: true /@babel/template@7.22.5: resolution: {integrity: sha512-X7yV7eiwAxdj9k94NEylvbVHLiVG1nvzCV2EAowhxLTwODV1jl9UzZ48leOC0sH7OnuHrIkllaBgneUykIcZaw==} @@ -1922,7 +1906,7 @@ packages: resolution: {integrity: sha512-m4HEDZleaaCH+XgDDsPF15Ht6wTLsgDTeR3WYj9Q/k76JtWhrJjcP4+/XlG8LGT/Rol9qUfOIztXeA84ATpqPQ==} dependencies: '@babel/helper-module-imports': 7.22.5 - '@babel/runtime': 7.22.10 + '@babel/runtime': 7.22.11 '@emotion/hash': 0.9.1 '@emotion/memoize': 0.8.1 '@emotion/serialize': 1.1.2 @@ -1964,7 +1948,6 @@ packages: /@emotion/memoize@0.7.4: resolution: {integrity: sha512-Ja/Vfqe3HpuzRsG1oBtWTHk2PGZ7GR+2Vz5iYGelAw8dx32K0y7PjVuxK6z1nMpZOqAFsRUPCkK1YjJ56qJlgw==} - requiresBuild: true dev: false optional: true @@ -1981,7 +1964,7 @@ packages: '@types/react': optional: true dependencies: - '@babel/runtime': 7.22.10 + '@babel/runtime': 7.22.11 '@emotion/babel-plugin': 11.11.0 '@emotion/cache': 11.11.0 '@emotion/serialize': 1.1.2 @@ -2017,7 +2000,7 @@ packages: '@types/react': optional: true dependencies: - '@babel/runtime': 7.22.10 + '@babel/runtime': 7.22.11 '@emotion/babel-plugin': 11.11.0 '@emotion/is-prop-valid': 1.2.1 '@emotion/react': 11.11.1(@types/react@18.2.21)(react@18.2.0) @@ -2366,7 +2349,7 @@ packages: '@jridgewell/sourcemap-codec': 1.4.15 dev: true - /@kodingdotninja/style-guide@4.0.1(eslint@8.48.0)(prettier@3.0.2)(tailwindcss@3.3.3)(typescript@5.2.2): + /@kodingdotninja/style-guide@4.0.1(eslint@8.48.0)(prettier@3.0.3)(tailwindcss@3.3.3)(typescript@5.2.2): resolution: {integrity: sha512-AhRZrlLV7WEFNf0mqMCwQ5VRagCIt1yMk/t4KoTQsjrWxxnbwIWVPXAM70P8+CTuJ0/v+QxFhEEh72zqHLK31A==} peerDependencies: eslint: '>=8' @@ -2386,14 +2369,14 @@ packages: eslint-plugin-import: 2.28.1(@typescript-eslint/parser@6.4.1)(eslint-import-resolver-typescript@3.6.0)(eslint@8.48.0) eslint-plugin-jsx-a11y: 6.7.1(eslint@8.48.0) eslint-plugin-prefer-arrow-functions: 3.1.4(eslint@8.48.0) - eslint-plugin-prettier: 5.0.0(eslint-config-prettier@9.0.0)(eslint@8.48.0)(prettier@3.0.2) + eslint-plugin-prettier: 5.0.0(eslint-config-prettier@9.0.0)(eslint@8.48.0)(prettier@3.0.3) eslint-plugin-react: 7.33.2(eslint@8.48.0) eslint-plugin-react-hooks: 4.6.0(eslint@8.48.0) eslint-plugin-simple-import-sort: 10.0.0(eslint@8.48.0) eslint-plugin-tsdoc: 0.2.17 eslint-plugin-unicorn: 48.0.1(eslint@8.48.0) eslint-plugin-unused-imports: 3.0.0(@typescript-eslint/eslint-plugin@6.4.1)(eslint@8.48.0) - prettier: 3.0.2 + prettier: 3.0.3 typescript: 5.2.2 optionalDependencies: '@next/eslint-plugin-next': 13.4.19 @@ -2563,12 +2546,6 @@ packages: /@octokit/auth-token@3.0.4: resolution: {integrity: sha512-TWFX7cZF2LXoCvdmJWY7XVPi74aSY0+FfBZNSXEXFkMpjcqsQwDSYVv5FhRFaI0V1ECnwbz4j59T/G+rXNWaIQ==} engines: {node: '>= 14'} - dev: true - - /@octokit/auth-token@4.0.0: - resolution: {integrity: sha512-tY/msAuJo6ARbK6SPIxZrPBms3xPbfwBrulZe0Wtr/DIY9lje2HeV1uoebShn6mx7SjCHif6EjMvoREj+gZ+SA==} - engines: {node: '>= 18'} - dev: false /@octokit/core@4.2.4: resolution: {integrity: sha512-rYKilwgzQ7/imScn3M9/pFfUf4I1AZEH3KhyJmtPdE2zfaXAn2mFfUy4FbKewzc2We5y/LlKLj36fWJLKC2SIQ==} @@ -2583,20 +2560,6 @@ packages: universal-user-agent: 6.0.0 transitivePeerDependencies: - encoding - dev: true - - /@octokit/core@5.0.0: - resolution: {integrity: sha512-YbAtMWIrbZ9FCXbLwT9wWB8TyLjq9mxpKdgB3dUNxQcIVTf9hJ70gRPwAcqGZdY6WdJPZ0I7jLaaNDCiloGN2A==} - engines: {node: '>= 18'} - dependencies: - '@octokit/auth-token': 4.0.0 - '@octokit/graphql': 7.0.1 - '@octokit/request': 8.1.1 - '@octokit/request-error': 5.0.0 - '@octokit/types': 11.1.0 - before-after-hook: 2.2.3 - universal-user-agent: 6.0.0 - dev: false /@octokit/endpoint@7.0.6: resolution: {integrity: sha512-5L4fseVRUsDFGR00tMWD/Trdeeihn999rTMGRMC1G/Ldi1uWlWJzI98H4Iak5DB/RVvQuyMYKqSK/R6mbSOQyg==} @@ -2605,16 +2568,6 @@ packages: '@octokit/types': 9.3.2 is-plain-object: 5.0.0 universal-user-agent: 6.0.0 - dev: true - - /@octokit/endpoint@9.0.0: - resolution: {integrity: sha512-szrQhiqJ88gghWY2Htt8MqUDO6++E/EIXqJ2ZEp5ma3uGS46o7LZAzSLt49myB7rT+Hfw5Y6gO3LmOxGzHijAQ==} - engines: {node: '>= 18'} - dependencies: - '@octokit/types': 11.1.0 - is-plain-object: 5.0.0 - universal-user-agent: 6.0.0 - dev: false /@octokit/graphql@5.0.6: resolution: {integrity: sha512-Fxyxdy/JH0MnIB5h+UQ3yCoh1FG4kWXfFKkpWqjZHw/p+Kc8Y44Hu/kCgNBT6nU1shNumEchmW/sUO1JuQnPcw==} @@ -2625,16 +2578,6 @@ packages: universal-user-agent: 6.0.0 transitivePeerDependencies: - encoding - dev: true - - /@octokit/graphql@7.0.1: - resolution: {integrity: sha512-T5S3oZ1JOE58gom6MIcrgwZXzTaxRnxBso58xhozxHpOqSTgDS6YNeEUvZ/kRvXgPrRz/KHnZhtb7jUMRi9E6w==} - engines: {node: '>= 18'} - dependencies: - '@octokit/request': 8.1.1 - '@octokit/types': 11.1.0 - universal-user-agent: 6.0.0 - dev: false /@octokit/openapi-types@18.0.0: resolution: {integrity: sha512-V8GImKs3TeQRxRtXFpG2wl19V7444NIOTDF24AWuIbmNaNYOQMWRbjcGDXV5B+0n887fgDcuMNOmlul+k+oJtw==} @@ -2648,17 +2591,6 @@ packages: '@octokit/core': 4.2.4 '@octokit/tsconfig': 1.0.2 '@octokit/types': 9.3.2 - dev: true - - /@octokit/plugin-paginate-rest@8.0.0(@octokit/core@5.0.0): - resolution: {integrity: sha512-2xZ+baZWUg+qudVXnnvXz7qfrTmDeYPCzangBVq/1gXxii/OiS//4shJp9dnCCvj1x+JAm9ji1Egwm1BA47lPQ==} - engines: {node: '>= 18'} - peerDependencies: - '@octokit/core': '>=5' - dependencies: - '@octokit/core': 5.0.0 - '@octokit/types': 11.1.0 - dev: false /@octokit/plugin-retry@4.1.6(@octokit/core@4.2.4): resolution: {integrity: sha512-obkYzIgEC75r8+9Pnfiiqy3y/x1bc3QLE5B7qvv9wi9Kj0R5tGQFC6QMBg1154WQ9lAVypuQDGyp3hNpp15gQQ==} @@ -2669,19 +2601,6 @@ packages: '@octokit/core': 4.2.4 '@octokit/types': 9.3.2 bottleneck: 2.19.5 - dev: true - - /@octokit/plugin-retry@6.0.0(@octokit/core@5.0.0): - resolution: {integrity: sha512-a1/A4A+PB1QoAHQfLJxGHhLfSAT03bR1jJz3GgQJZvty2ozawFWs93MiBQXO7SL2YbO7CIq0Goj4qLOBj8JeMQ==} - engines: {node: '>= 18'} - peerDependencies: - '@octokit/core': '>=5' - dependencies: - '@octokit/core': 5.0.0 - '@octokit/request-error': 5.0.0 - '@octokit/types': 11.1.0 - bottleneck: 2.19.5 - dev: false /@octokit/plugin-throttling@5.2.3(@octokit/core@4.2.4): resolution: {integrity: sha512-C9CFg9mrf6cugneKiaI841iG8DOv6P5XXkjmiNNut+swePxQ7RWEdAZRp5rJoE1hjsIqiYcKa/ZkOQ+ujPI39Q==} @@ -2694,14 +2613,14 @@ packages: bottleneck: 2.19.5 dev: true - /@octokit/plugin-throttling@7.0.0(@octokit/core@5.0.0): - resolution: {integrity: sha512-KL2k/d0uANc8XqP5S64YcNFCudR3F5AaKO39XWdUtlJIjT9Ni79ekWJ6Kj5xvAw87udkOMEPcVf9xEge2+ahew==} + /@octokit/plugin-throttling@6.1.0(@octokit/core@4.2.4): + resolution: {integrity: sha512-JqMbTiPC0sUSTsLQsdq3JVx1mx8UtTo5mwR80YqPXE93+XhevvSyOR1rO2Z+NbO/r0TK4hqFJSSi/9oIZBxZTg==} engines: {node: '>= 18'} peerDependencies: - '@octokit/core': ^5.0.0 + '@octokit/core': ^4.0.0 dependencies: - '@octokit/core': 5.0.0 - '@octokit/types': 11.1.0 + '@octokit/core': 4.2.4 + '@octokit/types': 9.3.2 bottleneck: 2.19.5 dev: false @@ -2712,16 +2631,6 @@ packages: '@octokit/types': 9.3.2 deprecation: 2.3.1 once: 1.4.0 - dev: true - - /@octokit/request-error@5.0.0: - resolution: {integrity: sha512-1ue0DH0Lif5iEqT52+Rf/hf0RmGO9NWFjrzmrkArpG9trFfDM/efx00BJHdLGuro4BR/gECxCU2Twf5OKrRFsQ==} - engines: {node: '>= 18'} - dependencies: - '@octokit/types': 11.1.0 - deprecation: 2.3.1 - once: 1.4.0 - dev: false /@octokit/request@6.2.8: resolution: {integrity: sha512-ow4+pkVQ+6XVVsekSYBzJC0VTVvh/FCTUUgTsboGq+DTeWdyIFV8WSCdo0RIxk6wSkBTHqIK1mYuY7nOBXOchw==} @@ -2735,34 +2644,14 @@ packages: universal-user-agent: 6.0.0 transitivePeerDependencies: - encoding - dev: true - - /@octokit/request@8.1.1: - resolution: {integrity: sha512-8N+tdUz4aCqQmXl8FpHYfKG9GelDFd7XGVzyN8rc6WxVlYcfpHECnuRkgquzz+WzvHTK62co5di8gSXnzASZPQ==} - engines: {node: '>= 18'} - dependencies: - '@octokit/endpoint': 9.0.0 - '@octokit/request-error': 5.0.0 - '@octokit/types': 11.1.0 - is-plain-object: 5.0.0 - universal-user-agent: 6.0.0 - dev: false /@octokit/tsconfig@1.0.2: resolution: {integrity: sha512-I0vDR0rdtP8p2lGMzvsJzbhdOWy405HcGovrspJ8RRibHnyRgggUSNO5AIox5LmqiwmatHKYsvj6VGFHkqS7lA==} - dev: true - - /@octokit/types@11.1.0: - resolution: {integrity: sha512-Fz0+7GyLm/bHt8fwEqgvRBWwIV1S6wRRyq+V6exRKLVWaKGsuy6H9QFYeBVDV7rK6fO3XwHgQOPxv+cLj2zpXQ==} - dependencies: - '@octokit/openapi-types': 18.0.0 - dev: false /@octokit/types@9.3.2: resolution: {integrity: sha512-D4iHGTdAnEEVsB8fl95m1hiz7D5YiRdQ9b/OEb3BYRVwbLsGHcRVPz+u+BgRLNk0Q0/4iZCBqDN96j2XNxfXrA==} dependencies: '@octokit/openapi-types': 18.0.0 - dev: true /@pkgjs/parseargs@0.11.0: resolution: {integrity: sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg==} @@ -2783,24 +2672,6 @@ packages: tslib: 2.6.2 dev: true - /@pnpm/config.env-replace@1.1.0: - resolution: {integrity: sha512-htyl8TWnKL7K/ESFa1oW2UB5lVDxuF5DpM7tBi6Hu2LNL3mWkIzNLG6N4zoCUP1lCKNxWy/3iu8mS8MvToGd6w==} - engines: {node: '>=12.22.0'} - - /@pnpm/network.ca-file@1.0.2: - resolution: {integrity: sha512-YcPQ8a0jwYU9bTdJDpXjMi7Brhkr1mXsXrUJvjqM2mQDgkRiz8jFaQGOdaLxgjtUfQgZhKy/O3cG/YwmgKaxLA==} - engines: {node: '>=12.22.0'} - dependencies: - graceful-fs: 4.2.10 - - /@pnpm/npm-conf@2.2.2: - resolution: {integrity: sha512-UA91GwWPhFExt3IizW6bOeY/pQ0BkuNwKjk9iQW9KqxluGCrg4VenZ0/L+2Y0+ZOtme72EVvg6v0zo3AMQRCeA==} - engines: {node: '>=12'} - dependencies: - '@pnpm/config.env-replace': 1.1.0 - '@pnpm/network.ca-file': 1.0.2 - config-chain: 1.1.13 - /@popperjs/core@2.11.8: resolution: {integrity: sha512-P1st0aksCrn9sGZhp8GMYwBnQsbvAWsZAX44oXNNvLHGqAOcoVxmjZiohstwQ7SqKnbR47akdNi+uleWD8+g6A==} dev: false @@ -2822,15 +2693,15 @@ packages: semantic-release: 21.1.1 dev: false - /@semantic-release/commit-analyzer@10.0.1(semantic-release@21.1.1): - resolution: {integrity: sha512-9ejHzTAijYs9z246sY/dKBatmOPcd0GQ7lH4MgLCkv1q4GCiDZRkjHJkaQZXZVaK7mJybS+sH3Ng6G8i3pYMGQ==} + /@semantic-release/commit-analyzer@10.0.0(semantic-release@21.1.1): + resolution: {integrity: sha512-/Uolz2+G+VRjP0eudAn0ldnC/VkSHzlctUdeEXL7ys7E6mLSFZdwdsR5pKDlTIgDJq4eYlshOZpwBNrmqrNajg==} engines: {node: '>=18'} peerDependencies: semantic-release: '>=20.1.0' dependencies: - conventional-changelog-angular: 6.0.0 - conventional-commits-filter: 3.0.0 - conventional-commits-parser: 4.0.0 + conventional-changelog-angular: 5.0.13 + conventional-commits-filter: 2.0.7 + conventional-commits-parser: 3.2.4 debug: 4.3.4 import-from: 4.0.0 lodash-es: 4.17.21 @@ -2901,7 +2772,7 @@ packages: debug: 4.3.4 dir-glob: 3.0.1 fs-extra: 11.1.1 - globby: 11.0.4 + globby: 11.1.0 http-proxy-agent: 7.0.0 https-proxy-agent: 7.0.1 issue-parser: 6.0.0 @@ -2915,17 +2786,17 @@ packages: - supports-color dev: true - /@semantic-release/github@9.0.4(semantic-release@21.1.1): - resolution: {integrity: sha512-kQCGFAsBErvCR6hzNuzu63cj4erQN2krm9zQlg8vl4j5X0mL0d/Ras0wmL5Gkr1TuSS2lweME7M4J5zvtDDDSA==} + /@semantic-release/github@9.0.0(semantic-release@21.1.1): + resolution: {integrity: sha512-ZAZTB6RGhyVHRzzXJW9Hjj4Yxagx4Lx6NqXk0AbOtIIH/mKEIwqSTYZR3iTm/KOy4/Bm5oQXIcwJ+p4+SkNWPg==} engines: {node: '>=18'} peerDependencies: semantic-release: '>=20.1.0' dependencies: - '@octokit/core': 5.0.0 - '@octokit/plugin-paginate-rest': 8.0.0(@octokit/core@5.0.0) - '@octokit/plugin-retry': 6.0.0(@octokit/core@5.0.0) - '@octokit/plugin-throttling': 7.0.0(@octokit/core@5.0.0) - '@semantic-release/error': 4.0.0 + '@octokit/core': 4.2.4 + '@octokit/plugin-paginate-rest': 6.1.2(@octokit/core@4.2.4) + '@octokit/plugin-retry': 4.1.6(@octokit/core@4.2.4) + '@octokit/plugin-throttling': 6.1.0(@octokit/core@4.2.4) + '@semantic-release/error': 3.0.0 aggregate-error: 4.0.1 debug: 4.3.4 dir-glob: 3.0.1 @@ -2939,53 +2810,10 @@ packages: semantic-release: 21.1.1 url-join: 5.0.0 transitivePeerDependencies: + - encoding - supports-color dev: false - /@semantic-release/npm@10.0.5(semantic-release@21.1.1): - resolution: {integrity: sha512-cJnQ2M5pxJRwZEkb0A/+U3TG4UNmjrrLwV2PxJKljn5OPT0yJB8GzGgWbbKACayvxrT06YdTa4Amtq/piJcOIA==} - engines: {node: '>=18'} - peerDependencies: - semantic-release: '>=20.1.0' - dependencies: - '@semantic-release/error': 4.0.0 - aggregate-error: 4.0.1 - execa: 8.0.1 - fs-extra: 11.1.1 - lodash-es: 4.17.21 - nerf-dart: 1.0.0 - normalize-url: 8.0.0 - npm: 9.8.1 - rc: 1.2.8 - read-pkg: 8.1.0 - registry-auth-token: 5.0.2 - semantic-release: 21.1.1 - semver: 7.5.4 - tempy: 3.1.0 - dev: false - - /@semantic-release/npm@9.0.2(semantic-release@19.0.5): - resolution: {integrity: sha512-zgsynF6McdzxPnFet+a4iO9HpAlARXOM5adz7VGVCvj0ne8wtL2ZOQoDV2wZPDmdEotDIbVeJjafhelZjs9j6g==} - engines: {node: '>=16 || ^14.17'} - peerDependencies: - semantic-release: '>=19.0.0' - dependencies: - '@semantic-release/error': 3.0.0 - aggregate-error: 3.1.0 - execa: 5.1.1 - fs-extra: 11.1.1 - lodash: 4.17.21 - nerf-dart: 1.0.0 - normalize-url: 6.1.0 - npm: 8.19.4 - rc: 1.2.8 - read-pkg: 5.2.0 - registry-auth-token: 5.0.2 - semantic-release: 19.0.5 - semver: 7.5.4 - tempy: 1.0.1 - dev: true - /@semantic-release/release-notes-generator@10.0.3(semantic-release@19.0.5): resolution: {integrity: sha512-k4x4VhIKneOWoBGHkx0qZogNjCldLPRiAjnIpMnlUh6PtaWXp/T+C9U7/TaNDDtgDa5HMbHl4WlREdxHio6/3w==} engines: {node: '>=14.17'} @@ -3007,29 +2835,29 @@ packages: - supports-color dev: true - /@semantic-release/release-notes-generator@11.0.4(semantic-release@21.1.1): - resolution: {integrity: sha512-j0Znnwq9IdWTCGzqSlkLv4MpALTsVDZxcVESzJCNN8pK2BYQlYaKsdZ1Ea/+7RlppI3vjhEi33ZKmjSGY1FLKw==} + /@semantic-release/release-notes-generator@11.0.0(semantic-release@21.1.1): + resolution: {integrity: sha512-va/taCWCHK11QbVoALKPI8B+lVF3UNZ2xOQOHEeHRd8YPpsY/9lymlWEuUQaTWKQpkgYbGpZD/Sap/SRlqob5g==} engines: {node: '>=18'} peerDependencies: semantic-release: '>=20.1.0' dependencies: - conventional-changelog-angular: 6.0.0 - conventional-changelog-writer: 6.0.1 - conventional-commits-filter: 3.0.0 - conventional-commits-parser: 4.0.0 + conventional-changelog-angular: 5.0.13 + conventional-changelog-writer: 5.0.1 + conventional-commits-filter: 2.0.7 + conventional-commits-parser: 3.2.4 debug: 4.3.4 - get-stream: 7.0.1 + get-stream: 6.0.1 import-from: 4.0.0 into-stream: 7.0.0 lodash-es: 4.17.21 - read-pkg-up: 10.1.0 + read-pkg-up: 9.1.0 semantic-release: 21.1.1 transitivePeerDependencies: - supports-color dev: false - /@semrel-extra/npm@1.2.2: - resolution: {integrity: sha512-QoOJFUd00ORaqOQUe2wYmwPwa7NRdGGfUhzjZ9UEZqoqymXaBDVmFF2hE3h8mFaTa/iWpAyRrrjTsg8HbSpZyw==} + /@semrel-extra/npm@1.0.0: + resolution: {integrity: sha512-/6G0FiKek0injmrGQ5l8Lk2bYwa3NCzU+niOdrH1rMYdNdeTRyKcy07vq6BE2ONnlfsPrpfoZqQrJP4jhEG/7w==} dev: false /@svgr/hast-util-to-babel-ast@8.0.0: @@ -3722,7 +3550,7 @@ packages: resolution: {integrity: sha512-Cg7TFGpIr01vOQNODXOOaGz2NpCU5gl8x1qJFbb6hbZxR7XrcE2vtbAsTAbJ7/xwJtUuJEw8K8Zr/AE0LHlesg==} engines: {node: '>=10', npm: '>=6'} dependencies: - '@babel/runtime': 7.22.10 + '@babel/runtime': 7.22.11 cosmiconfig: 7.1.0 resolve: 1.22.4 dev: false @@ -3893,10 +3721,6 @@ packages: resolution: {integrity: sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==} engines: {node: '>=6'} - /caniuse-lite@1.0.30001522: - resolution: {integrity: sha512-TKiyTVZxJGhsTszLuzb+6vUZSjVOAhClszBr2Ta2k9IwtNBT/4dzmL6aywt0HCgEZlmwJzXJd8yNiob6HgwTRg==} - dev: false - /caniuse-lite@1.0.30001523: resolution: {integrity: sha512-I5q5cisATTPZ1mc588Z//pj/Ox80ERYDfR71YnvY7raS/NOk8xXlZcB0sF7JdqaV//kOaa6aus7lRfpdnt1eBA==} @@ -4112,12 +3936,6 @@ packages: /concat-map@0.0.1: resolution: {integrity: sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==} - /config-chain@1.1.13: - resolution: {integrity: sha512-qj+f8APARXHrM0hraqXYb2/bOVSV4PvJQlNZ/DVj0QrmNM2q2euizkeuVckQ57J+W0mRH6Hvi+k50M4Jul2VRQ==} - dependencies: - ini: 1.3.8 - proto-list: 1.2.4 - /constant-case@3.0.4: resolution: {integrity: sha512-I2hSBi7Vvs7BEuJDr5dDHfzb/Ruj3FyvFyh7KLilAjNQw3Be+xgqUBA2W6scVEcL0hL1dwPRtIqEPVUCKkSsyQ==} dependencies: @@ -4131,13 +3949,13 @@ packages: dependencies: compare-func: 2.0.0 q: 1.5.1 - dev: true /conventional-changelog-angular@6.0.0: resolution: {integrity: sha512-6qLgrBF4gueoC7AFVHu51nHL9pF9FRjXrH+ceVf7WmAfH3gs+gEYOkvxhjMPjZu57I4AGUGoNTY8V7Hrgf1uqg==} engines: {node: '>=14'} dependencies: compare-func: 2.0.0 + dev: true /conventional-changelog-conventionalcommits@6.1.0: resolution: {integrity: sha512-3cS3GEtR78zTfMzk0AizXKKIdN4OvSh7ibNz6/DPbhWWQu7LqE/8+/GqSodV+sywUR2gpJAdP/1JFf4XtN7Zpw==} @@ -4160,21 +3978,6 @@ packages: semver: 6.3.1 split: 1.0.1 through2: 4.0.2 - dev: true - - /conventional-changelog-writer@6.0.1: - resolution: {integrity: sha512-359t9aHorPw+U+nHzUXHS5ZnPBOizRxfQsWT5ZDHBfvfxQOAik+yfuhKXG66CN5LEWPpMNnIMHUTCKeYNprvHQ==} - engines: {node: '>=14'} - hasBin: true - dependencies: - conventional-commits-filter: 3.0.0 - dateformat: 3.0.3 - handlebars: 4.7.8 - json-stringify-safe: 5.0.1 - meow: 8.1.2 - semver: 7.5.4 - split: 1.0.1 - dev: false /conventional-commits-filter@2.0.7: resolution: {integrity: sha512-ASS9SamOP4TbCClsRHxIHXRfcGCnIoQqkvAzCSbZzTFLfcTqJVugB0agRgsEELsqaeWgsXv513eS116wnlSSPA==} @@ -4182,15 +3985,6 @@ packages: dependencies: lodash.ismatch: 4.4.0 modify-values: 1.0.1 - dev: true - - /conventional-commits-filter@3.0.0: - resolution: {integrity: sha512-1ymej8b5LouPx9Ox0Dw/qAO2dVdfpRFq28e5Y0jJEU8ZrLdy0vOSkkIInwmxErFGhg6SALro60ZrwYFVTUDo4Q==} - engines: {node: '>=14'} - dependencies: - lodash.ismatch: 4.4.0 - modify-values: 1.0.1 - dev: false /conventional-commits-parser@3.2.4: resolution: {integrity: sha512-nK7sAtfi+QXbxHCYfhpZsfRtaitZLIA6889kFIouLvz6repszQDgxBu7wf2WbU+Dco7sAnNCJYERCwt54WPC2Q==} @@ -4203,7 +3997,6 @@ packages: meow: 8.1.2 split2: 3.2.2 through2: 4.0.2 - dev: true /conventional-commits-parser@4.0.0: resolution: {integrity: sha512-WRv5j1FsVM5FISJkoYMR6tPk07fkKT0UodruX4je86V4owk451yjXAKzKAPOs9l7y59E2viHUS9eQ+dfUA9NSg==} @@ -4214,6 +4007,7 @@ packages: is-text-path: 1.0.1 meow: 8.1.2 split2: 3.2.2 + dev: true /convert-source-map@1.9.0: resolution: {integrity: sha512-ASFBup0Mz1uyiIjANan1jzLQami9z1PoYSZCiiYW2FczPbenXc45FZdBZLzOT+r6+iciuEModtmCti+hjaAk0A==} @@ -4273,18 +4067,6 @@ packages: shebang-command: 2.0.0 which: 2.0.2 - /crypto-random-string@2.0.0: - resolution: {integrity: sha512-v1plID3y9r/lPhviJ1wrXpLeyUIGAZ2SHNYTEapm7/8A9nLPoyvVp3RK/EPFqn5kEznyWgYZNsRtYYIWbuG8KA==} - engines: {node: '>=8'} - dev: true - - /crypto-random-string@4.0.0: - resolution: {integrity: sha512-x8dy3RnvYdlUcPOjkEHqozhiwzKNSq7GcPuXFbnyMOCHxX8V3OgIg/pYuabl2sbUPfIJaeAQB7PMOK8DFIdoRA==} - engines: {node: '>=12'} - dependencies: - type-fest: 1.4.0 - dev: false - /css-box-model@1.2.1: resolution: {integrity: sha512-a7Vr4Q/kd/aw96bnJG332W9V9LkJO69JRcaCYDUqjp6/z0w6VcZjgAcTbgFxEPfBgdnAwlh3iwu+hLopa+flJw==} dependencies: @@ -4346,10 +4128,6 @@ packages: resolution: {integrity: sha512-z2S+W9X73hAUUki+N+9Za2lBlun89zigOyGrsax+KUQ6wKW4ZoWpEYBkGhQjwAjjDCkWxhY0VKEhk8wzY7F5cA==} engines: {node: '>=0.10.0'} - /deep-extend@0.6.0: - resolution: {integrity: sha512-LOHxIOaPYdHlJRtCQfDIVZtfw/ufM8+rVj649RIHzcm/vGwQRXFt6OPqIFWsm2XEMrNIEtWR64sY1LEKD2vAOA==} - engines: {node: '>=4.0.0'} - /deep-is@0.1.4: resolution: {integrity: sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==} dev: true @@ -4894,7 +4672,7 @@ packages: eslint: 8.48.0 dev: true - /eslint-plugin-prettier@5.0.0(eslint-config-prettier@9.0.0)(eslint@8.48.0)(prettier@3.0.2): + /eslint-plugin-prettier@5.0.0(eslint-config-prettier@9.0.0)(eslint@8.48.0)(prettier@3.0.3): resolution: {integrity: sha512-AgaZCVuYDXHUGxj/ZGu1u8H8CYgDY3iG6w5kUFw4AzMVXzB7VvbKgYR4nATIN+OvUrghMbiDLeimVjVY5ilq3w==} engines: {node: ^14.18.0 || >=16.0.0} peerDependencies: @@ -4910,7 +4688,7 @@ packages: dependencies: eslint: 8.48.0 eslint-config-prettier: 9.0.0(eslint@8.48.0) - prettier: 3.0.2 + prettier: 3.0.3 prettier-linter-helpers: 1.0.0 synckit: 0.8.5 dev: true @@ -5593,11 +5371,6 @@ packages: resolution: {integrity: sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==} engines: {node: '>=10'} - /get-stream@7.0.1: - resolution: {integrity: sha512-3M8C1EOFN6r8AMUhwUAACIoXZJEOufDU5+0gFFN5uNs6XYOralD2Pqkl7m046va6x77FwposWXbAhPPIOus7mQ==} - engines: {node: '>=16'} - dev: false - /get-stream@8.0.1: resolution: {integrity: sha512-VaUJspBffn/LMCJVoMvSAdmscJyS1auj5Zulnn5UoYcY531UWmdwhRWkcGKnGU93m5HSXP9LP2usOryrBtQowA==} engines: {node: '>=16'} @@ -5661,7 +5434,7 @@ packages: hasBin: true dependencies: foreground-child: 3.1.1 - jackspeak: 2.3.0 + jackspeak: 2.3.3 minimatch: 9.0.3 minipass: 7.0.3 path-scurry: 1.10.1 @@ -5794,9 +5567,6 @@ packages: get-intrinsic: 1.2.1 dev: true - /graceful-fs@4.2.10: - resolution: {integrity: sha512-9ByhssR2fPVsNZj478qUUbKfmL0+t5BDVyjShtyZZLiK7ZDAArFFfopyOTj0M05wE2tJPisA4iTnnXl2YoPvOA==} - /graceful-fs@4.2.11: resolution: {integrity: sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==} @@ -6009,6 +5779,7 @@ packages: /ini@1.3.8: resolution: {integrity: sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==} + dev: true /inquirer@6.5.2: resolution: {integrity: sha512-cntlB5ghuB0iuO65Ovoi8ogLHiWGs/5yNrtUcKjFhSSiVeAIVpD7koaSU9RM8mpXw5YDi9RdYXGQMaOURB7ycQ==} @@ -6411,8 +6182,8 @@ packages: reflect.getprototypeof: 1.0.3 dev: true - /jackspeak@2.3.0: - resolution: {integrity: sha512-uKmsITSsF4rUWQHzqaRUuyAir3fZfW3f202Ee34lz/gZCi970CPZwyQXLGNgWJvvZbvFyzeyGq0+4fcG/mBKZg==} + /jackspeak@2.3.3: + resolution: {integrity: sha512-R2bUw+kVZFS/h1AZqBKrSgDmdmjApzgY0AlCPumopFiAlbUxE2gf+SCuBzQ0cP5hHmUmFYF5yw55T97Th5Kstg==} engines: {node: '>=14'} dependencies: '@isaacs/cliui': 8.0.2 @@ -6981,9 +6752,6 @@ packages: /neo-async@2.6.2: resolution: {integrity: sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw==} - /nerf-dart@1.0.0: - resolution: {integrity: sha512-EZSPZB70jiVsivaBLYDCyntd5eH8NTSMOn3rB+HxwdmKThGELLdYv8qVIMWvZEFy9w8ZZpW9h9OB32l1rGtj7g==} - /next@13.4.19(@babel/core@7.22.11)(react-dom@18.2.0)(react@18.2.0): resolution: {integrity: sha512-HuPSzzAbJ1T4BD8e0bs6B9C1kWQ6gv8ykZoRWs5AQoiIuqbGHHdQO7Ljuvg05Q0Z24E2ABozHe6FxDvI6HfyAw==} engines: {node: '>=16.8.0'} @@ -7002,7 +6770,7 @@ packages: '@next/env': 13.4.19 '@swc/helpers': 0.5.1 busboy: 1.6.0 - caniuse-lite: 1.0.30001522 + caniuse-lite: 1.0.30001523 postcss: 8.4.14 react: 18.2.0 react-dom: 18.2.0(react@18.2.0) @@ -7045,7 +6813,6 @@ packages: optional: true dependencies: whatwg-url: 5.0.0 - dev: true /node-plop@0.31.1: resolution: {integrity: sha512-qmXJJt3YETFt/e0dtMADVpvck6EvN01Jig086o+J3M6G++mWA7iJ3Pqz4m4kvlynh73Iz2/rcZzxq7xTiF+aIQ==} @@ -7108,16 +6875,6 @@ packages: engines: {node: '>=0.10.0'} dev: true - /normalize-url@6.1.0: - resolution: {integrity: sha512-DlL+XwOy3NxAQ8xuC0okPgK46iuVNAK01YN7RueYBqqFeGsBjV9XmCAzAdgt+667bCl5kPh9EqKKDwnaPG1I7A==} - engines: {node: '>=10'} - dev: true - - /normalize-url@8.0.0: - resolution: {integrity: sha512-uVFpKhj5MheNBJRTiMZ9pE/7hD1QTeEvugSJW/OmLzAp78PB5O6adfMNTvmfKhXBkvCzC+rqifWcVYpGFwTjnw==} - engines: {node: '>=14.16'} - dev: false - /npm-run-path@4.0.1: resolution: {integrity: sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==} engines: {node: '>=8'} @@ -7130,161 +6887,6 @@ packages: dependencies: path-key: 4.0.0 - /npm@8.19.4: - resolution: {integrity: sha512-3HANl8i9DKnUA89P4KEgVNN28EjSeDCmvEqbzOAuxCFDzdBZzjUl99zgnGpOUumvW5lvJo2HKcjrsc+tfyv1Hw==} - engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} - hasBin: true - dev: true - bundledDependencies: - - '@isaacs/string-locale-compare' - - '@npmcli/arborist' - - '@npmcli/ci-detect' - - '@npmcli/config' - - '@npmcli/fs' - - '@npmcli/map-workspaces' - - '@npmcli/package-json' - - '@npmcli/run-script' - - abbrev - - archy - - cacache - - chalk - - chownr - - cli-columns - - cli-table3 - - columnify - - fastest-levenshtein - - fs-minipass - - glob - - graceful-fs - - hosted-git-info - - ini - - init-package-json - - is-cidr - - json-parse-even-better-errors - - libnpmaccess - - libnpmdiff - - libnpmexec - - libnpmfund - - libnpmhook - - libnpmorg - - libnpmpack - - libnpmpublish - - libnpmsearch - - libnpmteam - - libnpmversion - - make-fetch-happen - - minimatch - - minipass - - minipass-pipeline - - mkdirp - - mkdirp-infer-owner - - ms - - node-gyp - - nopt - - npm-audit-report - - npm-install-checks - - npm-package-arg - - npm-pick-manifest - - npm-profile - - npm-registry-fetch - - npm-user-validate - - npmlog - - opener - - p-map - - pacote - - parse-conflict-json - - proc-log - - qrcode-terminal - - read - - read-package-json - - read-package-json-fast - - readdir-scoped-modules - - rimraf - - semver - - ssri - - tar - - text-table - - tiny-relative-date - - treeverse - - validate-npm-package-name - - which - - write-file-atomic - - /npm@9.8.1: - resolution: {integrity: sha512-AfDvThQzsIXhYgk9zhbk5R+lh811lKkLAeQMMhSypf1BM7zUafeIIBzMzespeuVEJ0+LvY36oRQYf7IKLzU3rw==} - engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} - hasBin: true - dev: false - bundledDependencies: - - '@isaacs/string-locale-compare' - - '@npmcli/arborist' - - '@npmcli/config' - - '@npmcli/fs' - - '@npmcli/map-workspaces' - - '@npmcli/package-json' - - '@npmcli/promise-spawn' - - '@npmcli/run-script' - - abbrev - - archy - - cacache - - chalk - - ci-info - - cli-columns - - cli-table3 - - columnify - - fastest-levenshtein - - fs-minipass - - glob - - graceful-fs - - hosted-git-info - - ini - - init-package-json - - is-cidr - - json-parse-even-better-errors - - libnpmaccess - - libnpmdiff - - libnpmexec - - libnpmfund - - libnpmhook - - libnpmorg - - libnpmpack - - libnpmpublish - - libnpmsearch - - libnpmteam - - libnpmversion - - make-fetch-happen - - minimatch - - minipass - - minipass-pipeline - - ms - - node-gyp - - nopt - - npm-audit-report - - npm-install-checks - - npm-package-arg - - npm-pick-manifest - - npm-profile - - npm-registry-fetch - - npm-user-validate - - npmlog - - p-map - - pacote - - parse-conflict-json - - proc-log - - qrcode-terminal - - read - - semver - - sigstore - - ssri - - supports-color - - tar - - text-table - - tiny-relative-date - - treeverse - - validate-npm-package-name - - which - - write-file-atomic - /object-assign@4.1.1: resolution: {integrity: sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==} engines: {node: '>=0.10.0'} @@ -7616,8 +7218,8 @@ packages: json-parse-even-better-errors: 2.3.1 lines-and-columns: 1.2.4 - /parse-json@7.0.0: - resolution: {integrity: sha512-kP+TQYAzAiVnzOlWOe0diD6L35s9bJh0SCn95PIbZFKrOYuIRQsQkeWEYxzVDuHTt9V9YqvYCJ2Qo4z9wdfZPw==} + /parse-json@7.1.0: + resolution: {integrity: sha512-ihtdrgbqdONYD156Ap6qTcaGcGdkdAxodO1wLqQ/j7HP1u2sFYppINiq4jyC8F+Nm+4fVufylCV00QmkTHkSUg==} engines: {node: '>=16'} dependencies: '@babel/code-frame': 7.22.10 @@ -7847,8 +7449,8 @@ packages: fast-diff: 1.3.0 dev: true - /prettier@3.0.2: - resolution: {integrity: sha512-o2YR9qtniXvwEZlOKbveKfDQVyqxbEIWn48Z8m3ZJjBjcCmUy3xZGIv+7AkaeuaTr6yPXJjwv07ZWlsWbEy1rQ==} + /prettier@3.0.3: + resolution: {integrity: sha512-L/4pUDMxcNa8R/EthV08Zt42WBO4h1rarVtK0K+QJG0X187OLo7l699jWw0GKuwzkPQ//jMFA/8Xm6Fh3J/DAg==} engines: {node: '>=14'} hasBin: true dev: true @@ -7868,9 +7470,6 @@ packages: object-assign: 4.1.1 react-is: 16.13.1 - /proto-list@1.2.4: - resolution: {integrity: sha512-vtK/94akxsTMhe0/cbfpR+syPuszcuwhqVjJq26CuNDgFGj682oRBXOP5MJpv2r7JtE8MsiepGIqvvOTBwn2vA==} - /pump@3.0.0: resolution: {integrity: sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww==} dependencies: @@ -7886,7 +7485,6 @@ packages: /q@1.5.1: resolution: {integrity: sha512-kV/CThkXo6xyFEZUugw/+pIOywXcDbFYgSct5cT3gqlbkBE1SJdwy6UQoZvodiWF/ckQLZyDE/Bu1M6gVu5lVw==} engines: {node: '>=0.6.0', teleport: '>=0.2.0'} - dev: true /queue-microtask@1.2.3: resolution: {integrity: sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==} @@ -7895,21 +7493,12 @@ packages: resolution: {integrity: sha512-ARhCpm70fzdcvNQfPoy49IaanKkTlRWF2JMzqhcJbhSFRZv7nPTvZJdcY7301IPmvW+/p0RgIWnQDLJxifsQ7g==} engines: {node: '>=8'} - /rc@1.2.8: - resolution: {integrity: sha512-y3bGgqKj3QBdxLbLkomlohkvsA8gdAiUQlSBJnBhfn+BPxg4bc62d8TcBW15wavDfgexCgccckhcZvywyQYPOw==} - hasBin: true - dependencies: - deep-extend: 0.6.0 - ini: 1.3.8 - minimist: 1.2.8 - strip-json-comments: 2.0.1 - /react-clientside-effect@1.2.6(react@18.2.0): resolution: {integrity: sha512-XGGGRQAKY+q25Lz9a/4EPqom7WRjz3z9R2k4jhVKA/puQFH/5Nt27vFZYql4m4NVNdUvX8PS3O7r/Zzm7cjUlg==} peerDependencies: react: ^15.3.0 || ^16.0.0 || ^17.0.0 || ^18.0.0 dependencies: - '@babel/runtime': 7.22.10 + '@babel/runtime': 7.22.11 react: 18.2.0 dev: false @@ -7936,7 +7525,7 @@ packages: '@types/react': optional: true dependencies: - '@babel/runtime': 7.22.10 + '@babel/runtime': 7.22.11 '@types/react': 18.2.21 focus-lock: 0.11.6 prop-types: 15.8.1 @@ -8021,7 +7610,7 @@ packages: dependencies: find-up: 6.3.0 read-pkg: 8.1.0 - type-fest: 4.2.0 + type-fest: 4.3.1 dev: false /read-pkg-up@7.0.1: @@ -8032,6 +7621,15 @@ packages: read-pkg: 5.2.0 type-fest: 0.8.1 + /read-pkg-up@9.1.0: + resolution: {integrity: sha512-vaMRR1AC1nrd5CQM0PhlRsO5oc2AAigqr7cCrZ/MW/Rsaflz4RlgzkpL4qoU/z1F6wrbd85iFv1OQj/y5RdGvg==} + engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} + dependencies: + find-up: 6.3.0 + read-pkg: 7.1.0 + type-fest: 2.19.0 + dev: false + /read-pkg@5.2.0: resolution: {integrity: sha512-Ug69mNOpfvKDAc2Q8DRpMjjzdtrnv9HcSMX+4VsZxD1aZ6ZzrIE7rlzXBtWTyhULSMKg076AW6WR5iZpD0JiOg==} engines: {node: '>=8'} @@ -8041,14 +7639,24 @@ packages: parse-json: 5.2.0 type-fest: 0.6.0 + /read-pkg@7.1.0: + resolution: {integrity: sha512-5iOehe+WF75IccPc30bWTbpdDQLOCc3Uu8bi3Dte3Eueij81yx1Mrufk8qBx/YAbR4uL1FdUr+7BKXDwEtisXg==} + engines: {node: '>=12.20'} + dependencies: + '@types/normalize-package-data': 2.4.1 + normalize-package-data: 3.0.3 + parse-json: 5.2.0 + type-fest: 2.19.0 + dev: false + /read-pkg@8.1.0: resolution: {integrity: sha512-PORM8AgzXeskHO/WEv312k9U03B8K9JSiWF/8N9sUuFjBa+9SF2u6K7VClzXwDXab51jCd8Nd36CNM+zR97ScQ==} engines: {node: '>=16'} dependencies: '@types/normalize-package-data': 2.4.1 normalize-package-data: 6.0.0 - parse-json: 7.0.0 - type-fest: 4.2.0 + parse-json: 7.1.0 + type-fest: 4.3.1 dev: false /read-yaml-file@1.1.0: @@ -8152,12 +7760,6 @@ packages: functions-have-names: 1.2.3 dev: true - /registry-auth-token@5.0.2: - resolution: {integrity: sha512-o/3ikDxtXaA59BmZuZrJZDJv8NMDGSj+6j6XaeBmHw8eY1i1qd9+6H+LjVvQXx3HN6aRCGa1cUdJ9RaJZUugnQ==} - engines: {node: '>=14'} - dependencies: - '@pnpm/npm-conf': 2.2.2 - /regjsparser@0.10.0: resolution: {integrity: sha512-qx+xQGZVsy55CH0a1hiVwHmqjLryfh7wQyF5HO07XJ9f7dQMY/gPQHhlyDkIzJKC+x2fUCpCcUODUUUFrm7SHA==} hasBin: true @@ -8350,7 +7952,7 @@ packages: '@semantic-release/commit-analyzer': 9.0.2(semantic-release@19.0.5) '@semantic-release/error': 3.0.0 '@semantic-release/github': 8.1.0(semantic-release@19.0.5) - '@semantic-release/npm': 9.0.2(semantic-release@19.0.5) + '@semantic-release/npm': link:@semrel-extra/npm '@semantic-release/release-notes-generator': 10.0.3(semantic-release@19.0.5) aggregate-error: 3.1.0 cosmiconfig: 7.1.0 @@ -8385,11 +7987,11 @@ packages: engines: {node: '>=18'} hasBin: true dependencies: - '@semantic-release/commit-analyzer': 10.0.1(semantic-release@21.1.1) + '@semantic-release/commit-analyzer': 10.0.0(semantic-release@21.1.1) '@semantic-release/error': 4.0.0 - '@semantic-release/github': 9.0.4(semantic-release@21.1.1) - '@semantic-release/npm': 10.0.5(semantic-release@21.1.1) - '@semantic-release/release-notes-generator': 11.0.4(semantic-release@21.1.1) + '@semantic-release/github': 9.0.0(semantic-release@21.1.1) + '@semantic-release/npm': link:@semrel-extra/npm + '@semantic-release/release-notes-generator': 11.0.0(semantic-release@21.1.1) aggregate-error: 4.0.1 cosmiconfig: 8.2.0 debug: 4.3.4 @@ -8414,6 +8016,7 @@ packages: signale: 1.4.0 yargs: 17.7.2 transitivePeerDependencies: + - encoding - supports-color dev: false @@ -8738,10 +8341,6 @@ packages: dependencies: min-indent: 1.0.1 - /strip-json-comments@2.0.1: - resolution: {integrity: sha512-4gB8na07fecVVkOI6Rs4e7T6NOTki5EmL7TUduTs6bu3EdnSycntVJ4re8kgZA+wx9IueI2Y11bfbgwtzuE0KQ==} - engines: {node: '>=0.10.0'} - /strip-json-comments@3.1.1: resolution: {integrity: sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==} engines: {node: '>=8'} @@ -8855,8 +8454,8 @@ packages: engines: {node: '>=6'} dev: true - /tar@6.1.15: - resolution: {integrity: sha512-/zKt9UyngnxIT/EAGYuxaMYgOIJiP81ab9ZfkILq4oNLPFX50qyYmu7jRj9qeXoxmJHjGlbH0+cm2uy1WCs10A==} + /tar@6.2.0: + resolution: {integrity: sha512-/Wo7DcT0u5HUV486xg675HtjNd3BXZ6xDbzsCUZPt5iw8bTQ63bP0Raut3mvro9u+CUyq7YQd8Cx55fsZXxqLQ==} engines: {node: '>=10'} dependencies: chownr: 2.0.0 @@ -8867,37 +8466,6 @@ packages: yallist: 4.0.0 dev: false - /temp-dir@2.0.0: - resolution: {integrity: sha512-aoBAniQmmwtcKp/7BzsH8Cxzv8OL736p7v1ihGb5e9DJ9kTwGWHrQrVB5+lfVDzfGrdRzXch+ig7LHaY1JTOrg==} - engines: {node: '>=8'} - dev: true - - /temp-dir@3.0.0: - resolution: {integrity: sha512-nHc6S/bwIilKHNRgK/3jlhDoIHcp45YgyiwcAk46Tr0LfEqGBVpmiAyuiuxeVE44m3mXnEeVhaipLOEWmH+Njw==} - engines: {node: '>=14.16'} - dev: false - - /tempy@1.0.1: - resolution: {integrity: sha512-biM9brNqxSc04Ee71hzFbryD11nX7VPhQQY32AdDmjFvodsRFz/3ufeoTZ6uYkRFfGo188tENcASNs3vTdsM0w==} - engines: {node: '>=10'} - dependencies: - del: 6.1.1 - is-stream: 2.0.1 - temp-dir: 2.0.0 - type-fest: 0.16.0 - unique-string: 2.0.0 - dev: true - - /tempy@3.1.0: - resolution: {integrity: sha512-7jDLIdD2Zp0bDe5r3D2qtkd1QOCacylBuL7oa4udvN6v2pqr4+LcCr67C8DR1zkpaZ8XosF5m1yQSabKAW6f2g==} - engines: {node: '>=14.16'} - dependencies: - is-stream: 3.0.0 - temp-dir: 3.0.0 - type-fest: 2.19.0 - unique-string: 3.0.0 - dev: false - /text-extensions@1.9.0: resolution: {integrity: sha512-wiBrwC1EhBelW12Zy26JeOUkQ5mRu+5o8rpsJk5+2t+Y5vE7e842qtZDQ2g1NpX/29HdyFeJ4nSIhI47ENSxlQ==} engines: {node: '>=0.10'} @@ -8929,7 +8497,6 @@ packages: resolution: {integrity: sha512-iOqSav00cVxEEICeD7TjLB1sueEL+81Wpzp2bY17uZjZN0pWZPuo4suZ/61VujxmqSGFfgOcNuTZ85QJwNZQpw==} dependencies: readable-stream: 3.6.2 - dev: true /through@2.3.8: resolution: {integrity: sha512-w89qg7PI8wAdvX60bMDP+bFoD5Dvhm9oLheFp5O4a2QF0cSBGsBX4qZmadPMvVqlLJBBci+WqGGOAPvcDeNSVg==} @@ -8946,7 +8513,7 @@ packages: https-proxy-agent: 5.0.0 mri: 1.1.6 rimraf: 3.0.2 - tar: 6.1.15 + tar: 6.2.0 tiny-glob: 0.2.8 transitivePeerDependencies: - supports-color @@ -8997,7 +8564,6 @@ packages: /tr46@0.0.3: resolution: {integrity: sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==} - dev: true /tr46@1.0.1: resolution: {integrity: sha512-dTpowEjclQ7Kgx5SdBkqRzVhERQXov8/l9Ft9dVM9fmg0W0KQSVaXX9T4i6twCPNtYiZM53lpSSUAwJbFPOHxA==} @@ -9206,11 +8772,6 @@ packages: prelude-ls: 1.2.1 dev: true - /type-fest@0.16.0: - resolution: {integrity: sha512-eaBzG6MxNzEn9kiwvtre90cXaNLkmadMWa1zQMs3XORCXNbsH/OewwbxC5ia9dCxIxnTAsSxXJaa/p5y8DlvJg==} - engines: {node: '>=10'} - dev: true - /type-fest@0.18.1: resolution: {integrity: sha512-OIAYXk8+ISY+qTOwkHtKqzAuxchoMiD9Udx+FSGQDuiRR+PJKJHc2NJAXlbhkGwTt/4/nKZxELY1w3ReWOL8mw==} engines: {node: '>=10'} @@ -9233,11 +8794,6 @@ packages: resolution: {integrity: sha512-4dbzIzqvjtgiM5rw1k5rEHtBANKmdudhGyBEajN01fEyhaAIhsoKNy6y7+IN93IfpFtwY9iqi7kD+xwKhQsNJA==} engines: {node: '>=8'} - /type-fest@1.4.0: - resolution: {integrity: sha512-yGSza74xk0UG8k+pLh5oeoYirvIiWo5t0/o3zHHAO2tRDiZcxWP7fywNlXhqb6/r6sWvwi+RsyQMWhVLe4BVuA==} - engines: {node: '>=10'} - dev: false - /type-fest@2.19.0: resolution: {integrity: sha512-RAH822pAdBgcNMAfWnCBU3CFZcfZ/i1eZjwFU/dsLKumyuuP3niueg2UAukXYF0E2AAoc82ZSSf9J0WQBinzHA==} engines: {node: '>=12.20'} @@ -9247,8 +8803,8 @@ packages: resolution: {integrity: sha512-tLq3bSNx+xSpwvAJnzrK0Ep5CLNWjvFTOp71URMaAEWBfRb9nnJiBoUe0tF8bI4ZFO3omgBR6NvnbzVUT3Ly4g==} engines: {node: '>=14.16'} - /type-fest@4.2.0: - resolution: {integrity: sha512-5zknd7Dss75pMSED270A1RQS3KloqRJA9XbXLe0eCxyw7xXFb3rd+9B0UQ/0E+LQT6lnrLviEolYORlRWamn4w==} + /type-fest@4.3.1: + resolution: {integrity: sha512-pphNW/msgOUSkJbH58x8sqpq8uQj6b0ZKGxEsLKMUnGorRcDjrUaLS+39+/ub41JNTwrrMyJcUB8+YZs3mbwqw==} engines: {node: '>=16'} dev: false @@ -9316,20 +8872,6 @@ packages: engines: {node: '>=0.10.0'} dev: true - /unique-string@2.0.0: - resolution: {integrity: sha512-uNaeirEPvpZWSgzwsPGtU2zVSTrn/8L5q/IexZmH0eH6SA73CmAA5U4GwORTxQAZs95TAXLNqeLoPPNO5gZfWg==} - engines: {node: '>=8'} - dependencies: - crypto-random-string: 2.0.0 - dev: true - - /unique-string@3.0.0: - resolution: {integrity: sha512-VGXBUVwxKMBUznyffQweQABPRRW1vHZAbadFZud4pLFAqRGvv/96vafgjWFqzourzr8YonlQiPgH0YCJfawoGQ==} - engines: {node: '>=12'} - dependencies: - crypto-random-string: 4.0.0 - dev: false - /universal-user-agent@6.0.0: resolution: {integrity: sha512-isyNax3wXoKaulPDZWHQqbmIx1k2tb9fb3GGDBRxCscfYV2Ch7WxPArBsFEG8s/safwXTT7H4QGhaIkTp9447w==} @@ -9454,7 +8996,6 @@ packages: /webidl-conversions@3.0.1: resolution: {integrity: sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==} - dev: true /webidl-conversions@4.0.2: resolution: {integrity: sha512-YQ+BmxuTgd6UXZW3+ICGfyqRyHXVlD5GtQr5+qjiNW7bF0cqrzX500HVXPBOvgXb5YnzDd+h0zqyv61KUD7+Sg==} @@ -9465,7 +9006,6 @@ packages: dependencies: tr46: 0.0.3 webidl-conversions: 3.0.1 - dev: true /whatwg-url@7.1.0: resolution: {integrity: sha512-WUu7Rg1DroM7oQvGWfOiAK21n74Gg+T4elXEQYkOhtyLeWiJFoOGLXPKI/9gzIie9CtwVLm8wtw6YJdKyxSjeg==} @@ -9643,3 +9183,7 @@ packages: /zod@3.21.4: resolution: {integrity: sha512-m46AKbrzKVzOzs/DZgVnG5H55N1sv1M8qZU3A8RIKbs3mrACDNeIOeilDymVb2HdmP8uwshOCF4uJ8uM9rCqJw==} dev: false + +settings: + autoInstallPeers: true + excludeLinksFromLockfile: false diff --git a/pnpm-workspace.yaml b/pnpm-workspace.yaml index c2d7460..49c8b0a 100644 --- a/pnpm-workspace.yaml +++ b/pnpm-workspace.yaml @@ -1,6 +1,6 @@ packages: - - "packages/*" - - "packages/@chakra-icons/*" - - "templates/*" - - "tooling/*" - - "website" + - 'packages/*' + - 'packages/@chakra-icons/*' + - 'templates/*' + - 'tooling/*' + - 'website' diff --git a/templates/@chakra-icons/.releaserc.js b/templates/@chakra-icons/.releaserc.js index 13d7db5..985008b 100644 --- a/templates/@chakra-icons/.releaserc.js +++ b/templates/@chakra-icons/.releaserc.js @@ -1 +1 @@ -module.exports = require("@tooling/msrconfig"); +module.exports = require.resolve("../../../tooling/msr.conf"); diff --git a/tooling/cli/.releaserc.js b/tooling/cli/.releaserc.js index 13d7db5..01fbaad 100644 --- a/tooling/cli/.releaserc.js +++ b/tooling/cli/.releaserc.js @@ -1 +1 @@ -module.exports = require("@tooling/msrconfig"); +module.exports = require.resolve("@tooling/msrconfig"); diff --git a/tooling/cli/dist/index.bin.js b/tooling/cli/dist/index.bin.js index 377d74d..cca29fb 100755 --- a/tooling/cli/dist/index.bin.js +++ b/tooling/cli/dist/index.bin.js @@ -31,7 +31,7 @@ var ruins = __toESM(require("ruins-ts")); var package_default = { name: "@chakra-icons/cli", description: "a tooling for manage everything in @chakra-icons", - version: "1.0.2", + version: "2.0.0", author: "ri7nz ", homepage: "https://github.com/kodingdotninja/chakra-icons", repository: "https://github.com/kodingdotninja/chakra-icons.git", @@ -102,16 +102,19 @@ var metaIconDefault = (name, repository, iconPath, clonePath, sourcePath) => ({ sourcePath, sources: [] }); -var hotfixNameMap = [ +var prefixWhenNumeric = (prefix) => (n) => /^\d.*$/.test(n) ? `${prefix}${n}` : n; +var moduleName = (0, import_function.flow)(prefixWhenNumeric("I"), import_change_case.pascalCase, S.replace(/[^A-Z0-9]/gi, "")); +var hotfixPkgIconNameReplace = [ [ /tabler-icons/i, { "device-game-pad": "device-dpad" + // prevent conflict with `device-gamepad` } ] ]; var hotfixName = (metaIcon) => (name) => (0, import_function.pipe)( - hotfixNameMap, + hotfixPkgIconNameReplace, A.findFirst(([pattern]) => pattern.test(metaIcon.repository)), O.fold( () => name, @@ -122,8 +125,6 @@ var hotfixName = (metaIcon) => (name) => (0, import_function.pipe)( ) ) ); -var prefixWhenNumeric = (prefix) => (n) => /^\d.*$/.test(n) ? `${prefix}${n}` : n; -var moduleName = (0, import_function.flow)(prefixWhenNumeric("I"), import_change_case.pascalCase, S.replace(/[^A-Z0-9]/gi, "")); var setSources = (metaIcon) => (beSources) => { const createSource = (sources, svg) => { const { dir, name: _name } = path.parse(svg); diff --git a/tooling/cli/package.json b/tooling/cli/package.json index b73df99..f7cd0a0 100644 --- a/tooling/cli/package.json +++ b/tooling/cli/package.json @@ -24,7 +24,7 @@ "@babel/types": "^7.22.11", "arg": "^5.0.2", "change-case": "^4.1.2", - "create-chakra-icons": "*", + "create-chakra-icons": "workspace:*", "degit": "npm:tiged", "fp-ts": "^2.16.1", "glob": "^10.3.3", diff --git a/tooling/msr.conf/index.js b/tooling/msr.conf/index.js index 25c294e..e0db233 100644 --- a/tooling/msr.conf/index.js +++ b/tooling/msr.conf/index.js @@ -21,7 +21,9 @@ module.exports = { ], "@semantic-release/release-notes-generator", "@semantic-release/changelog", + // monorepo "@semrel-extra/npm", + // "@semantic-release/npm", [ "@semantic-release/github", { diff --git a/tooling/msr.conf/package.json b/tooling/msr.conf/package.json index a16d46b..a715b1b 100644 --- a/tooling/msr.conf/package.json +++ b/tooling/msr.conf/package.json @@ -6,8 +6,11 @@ "source": "index.js", "license": "MIT", "dependencies": { - "@semantic-release/changelog": "^6.0.3", - "@semantic-release/git": "^10.0.1", - "@semrel-extra/npm": "^1.2.2" + "@semantic-release/changelog": "^6", + "@semantic-release/git": "^10", + "@semantic-release/github": "^9", + "@semrel-extra/npm": "^1", + "@semantic-release/release-notes-generator": "^11", + "@semantic-release/commit-analyzer": "^10" } }