Skip to content

Commit

Permalink
Upgrade [email protected] & yarn dedupe (#2247)
Browse files Browse the repository at this point in the history
<!--
  How to write a good PR title:
- Follow [the Conventional Commits
specification](https://www.conventionalcommits.org/en/v1.0.0/).
  - Give as much context as necessary and as little as possible
  - Prefix it with [WIP] while it’s a work in progress
-->

## Self Checklist

- [x] I wrote a PR title in **English** and added an appropriate
**label** to the PR.
- [x] I wrote the commit message in **English** and to follow [**the
Conventional Commits
specification**](https://www.conventionalcommits.org/en/v1.0.0/).
- [x] I [added the
**changeset**](https://github.com/changesets/changesets/blob/main/docs/adding-a-changeset.md)
about the changes that needed to be released. (or didn't have to)
- [x] I wrote or updated **documentation** related to the changes. (or
didn't have to)
- [x] I wrote or updated **tests** related to the changes. (or didn't
have to)
- [x] I tested the changes in various browsers. (or didn't have to)
  - Windows: Chrome, Edge, (Optional) Firefox
  - macOS: Chrome, Edge, Safari, (Optional) Firefox

## Summary

<!-- Please brief explanation of the changes made -->

Upgrade [email protected] & yarn dedupe

## Details

<!-- Please elaborate description of the changes -->

- yarn 버전을 최신화하고, 중복 의존성을 제거했습니다.
- bezier-tokens에서 빌드 에러가 나는 것을 확인하여 수정했습니다.

### Breaking change? (Yes/No)

<!-- If Yes, please describe the impact and migration path for users -->

No
  • Loading branch information
sungik-choi authored May 29, 2024
1 parent 4f52ac9 commit 8136579
Show file tree
Hide file tree
Showing 5 changed files with 342 additions and 871 deletions.
593 changes: 297 additions & 296 deletions .yarn/releases/yarn-4.1.1.cjs → .yarn/releases/yarn-4.2.2.cjs

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion .yarnrc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,4 @@ plugins:
- path: .yarn/plugins/@yarnpkg/plugin-engines.cjs
spec: 'https://raw.githubusercontent.com/devoto13/yarn-plugin-engines/main/bundles/%40yarnpkg/plugin-engines.js'

yarnPath: .yarn/releases/yarn-4.1.1.cjs
yarnPath: .yarn/releases/yarn-4.2.2.cjs
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -46,13 +46,13 @@
},
"engines": {
"node": "18.20.3",
"yarn": "4.1.1"
"yarn": "4.2.2"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"packageManager": "yarn@4.1.1",
"packageManager": "yarn@4.2.2",
"prettier": "@channel.io/prettier-config"
}
2 changes: 1 addition & 1 deletion packages/bezier-tokens/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@
],
"scripts": {
"build": "run-s clean:build build:tokens build:types",
"build:tokens": "ts-node-esm scripts/build-tokens.ts",
"build:tokens": "ts-node scripts/build-tokens.ts",
"build:types": "tsc -p tsconfig.build.json",
"lint": "TIMING=1 eslint --cache .",
"typecheck": "tsc --noEmit",
Expand Down
Loading

0 comments on commit 8136579

Please sign in to comment.