Skip to content

Commit

Permalink
fix(root): immutable-cache 적용 (#16)
Browse files Browse the repository at this point in the history
  • Loading branch information
kimulchan committed Nov 9, 2022
1 parent 1931634 commit 3bdc993
Show file tree
Hide file tree
Showing 7 changed files with 16 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
node-version: 16

- name: Install packages
run: yarn install --immutable
run: yarn install --immutable --immutable-cache

- name: Build packages
run: yarn build:all
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
node-version: 16

- name: Install Dependencies
run: yarn install --immutable
run: yarn install --immutable --immutable-cache
- name: Creating .npmrc
run: |
cat << EOF > "$HOME/.npmrc"
Expand Down
Binary file not shown.
Binary file not shown.
11 changes: 11 additions & 0 deletions .yarnrc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,16 @@ plugins:
spec: "@yarnpkg/plugin-workspace-tools"
- path: .yarn/plugins/@yarnpkg/plugin-typescript.cjs
spec: "@yarnpkg/plugin-typescript"
checksumBehavior: "update"
supportedArchitectures:
cpu:
- x64
- arm64
libc:
- glibc
- musl
os:
- darwin
- linux

yarnPath: .yarn/releases/yarn-3.2.4.cjs
2 changes: 1 addition & 1 deletion packages/styled-components-theme/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
},
"packageManager": "yarn@3.2.4",
"dependencies": {
"@team-comit/foundation": "1.0.1",
"@team-comit/foundation": "workspace:*",
"react": "^18.2.0",
"react-is": "^18.2.0",
"styled-components": "^5.3.6"
Expand Down
4 changes: 2 additions & 2 deletions yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -560,7 +560,7 @@ __metadata:
languageName: node
linkType: hard

"@team-comit/foundation@1.0.0, @team-comit/foundation@workspace:packages/foundation":
"@team-comit/foundation@workspace:*, @team-comit/foundation@workspace:packages/foundation":
version: 0.0.0-use.local
resolution: "@team-comit/foundation@workspace:packages/foundation"
dependencies:
Expand All @@ -573,7 +573,7 @@ __metadata:
version: 0.0.0-use.local
resolution: "@team-comit/styled-components-theme@workspace:packages/styled-components-theme"
dependencies:
"@team-comit/foundation": 1.0.0
"@team-comit/foundation": "workspace:*"
"@types/react": ^18.0.21
"@types/react-dom": ^18
"@types/styled-components": ^5.1.26
Expand Down

0 comments on commit 3bdc993

Please sign in to comment.