Closed black7375 closed 2 months ago
Latest commit: 39c8e9c3716c1f32a31c52da16942d929595d27b
Merging this PR will not cause a version bump for any packages. If these changes should not result in a new version, you're good to go. If these changes should result in a version bump, you need to add a changeset.
Click here to learn what changesets are, and how to add one.
Click here if you're a maintainer who wants to add a changeset to this PR
This update enhances dependency management and project configuration with several important changes. Notably, the .github/dependabot.yml
now ignores updates for the rimraf
package version 6.0.x
, while the .gitignore
file excludes the _release
directory. ESLint configurations have been updated for better compatibility with Prettier, and multiple packages—including Yarn, TypeScript, and various ESLint-related packages—have been upgraded, ensuring improved functionality and adherence to modern standards.
File | Change Summary |
---|---|
.github/dependabot.yml |
Added ignore for rimraf version 6.0.x to manage updates. |
.gitignore |
Added _release/ to ignore specified directory. |
.yarnrc.yml |
Updated yarnPath from yarn-4.3.1.cjs to yarn-4.4.0.cjs . |
configs/eslint-config-custom/eslint.config.base.js |
Added import for eslint-config-prettier and updated config to include Prettier settings; added _release/** to ignores. |
configs/eslint-config-custom/package.json |
Upgraded @typescript-eslint/parser and typescript-eslint from 7.16.1 to 8.1.0 . |
configs/vite-config-custom/package.json |
Upgraded vite-plugin-dts from 3.9.1 to 4.0.3 and vite-tsconfig-paths from 4.3.2 to 5.0.1 . |
examples/react-swc/eslint.config.js |
Removed tsPlugin from @typescript-eslint/eslint-plugin . |
examples/react-swc/package.json |
Upgraded TypeScript-related packages and vite to newer versions. |
package.json |
Updated several dependencies, including rimraf , terser , and vite , along with the package manager version. |
packages/css-additional-types/tsconfig.json |
Included global.d.ts in include and added _release to exclude . |
packages/css/tsconfig.json |
Added _release to exclude paths. |
packages/debug-log/package.json |
Specified @types/deep-diff version from ^1 to ^1.0.5 . |
packages/debug-log/tsconfig.json |
Added _release to exclude paths. |
packages/transform-to-vanilla/src/transform-object/index.ts |
Replaced ternary operator with if-else for readability in transformValueStyle . |
packages/transform-to-vanilla/src/types/simple-pseudo.ts |
Renamed simplePseudoMap to _simplePseudoMap and updated type alias accordingly. |
packages/transform-to-vanilla/src/types/style-rule.ts |
Added comment to disable ESLint rule on empty object types. |
packages/transform-to-vanilla/tsconfig.json |
Added _release to exclude paths. |
In the garden of code, where dependencies grow,
A rabbit hops lightly, with changes to show.
Rimraf takes a break, while Yarn's on the rise,
ESLint and Prettier dance under bright skies.
With each little tweak, our project feels spry,
Hooray for these updates! Let's all hop high! 🐰✨
Thank you for using CodeRabbit. We offer it for free to the OSS community and would appreciate your support in helping us grow. If you find it useful, would you consider giving us a shout-out on your favorite social media?
Triggered from https://github.com/mincho-js/mincho/pull/74 by @​black7375.
Checking if we can fast forward main
(91e23b87b88448b05d0dacaa1a35cab3882e77c0) to bump
(39c8e9c3716c1f32a31c52da16942d929595d27b).
Target branch (main
):
commit 91e23b87b88448b05d0dacaa1a35cab3882e77c0 (HEAD -> main, origin/main, origin/HEAD)
Author: alstjr7375 <alstjr7375@daum.net>
Date: Sat Aug 17 13:45:35 2024 +0900
Fix: Trigger when a release workflow is merged #69
Pull request (bump
):
commit 39c8e9c3716c1f32a31c52da16942d929595d27b (pull_request/bump)
Author: alstjr7375 <alstjr7375@daum.net>
Date: Sat Aug 17 15:03:43 2024 +0900
Chore: Bump packages #32 #67 #68
- rimraf seems to have regressed in 6.0.1
See https://github.com/isaacs/rimraf/issues/317
It is possible to fast forward main
(91e23b87b88448b05d0dacaa1a35cab3882e77c0) to bump
(39c8e9c3716c1f32a31c52da16942d929595d27b). If you have write access to the target repository, you can add a comment with /fast-forward
to fast forward main
to bump
.
/fast-forward
Triggered from https://github.com/mincho-js/mincho/pull/74#issuecomment-2294682175 by @​black7375.
Trying to fast forward main
(91e23b87b88448b05d0dacaa1a35cab3882e77c0) to bump
(39c8e9c3716c1f32a31c52da16942d929595d27b).
Target branch (main
):
commit 91e23b87b88448b05d0dacaa1a35cab3882e77c0 (HEAD -> main, origin/main, origin/HEAD)
Author: alstjr7375 <alstjr7375@daum.net>
Date: Sat Aug 17 13:45:35 2024 +0900
Fix: Trigger when a release workflow is merged #69
Pull request (bump
):
commit 39c8e9c3716c1f32a31c52da16942d929595d27b (pull_request/bump)
Author: alstjr7375 <alstjr7375@daum.net>
Date: Sat Aug 17 15:03:43 2024 +0900
Chore: Bump packages #32 #67 #68
- rimraf seems to have regressed in 6.0.1
See https://github.com/isaacs/rimraf/issues/317
Fast forwarding main
(91e23b87b88448b05d0dacaa1a35cab3882e77c0) to bump
(39c8e9c3716c1f32a31c52da16942d929595d27b).
$ git push origin 39c8e9c3716c1f32a31c52da16942d929595d27b:main
To https://github.com/mincho-js/mincho.git
91e23b8..39c8e9c 39c8e9c3716c1f32a31c52da16942d929595d27b -> main
Description
Related Issue
Summary by CodeRabbit
New Features
rimraf
dependency in Dependabot configuration.Bug Fixes
rimraf
and TypeScript-related packages.Documentation
Chores
.gitignore
to exclude the_release
directory from version control._release
directory from compilation processes.Additional context
Checklist