Skip to content

Commit 4559ba1

Browse files
aster-voidnakaterm
authored andcommitted
hack: remove frozen lockfile (#638)
# PRの概要 ## 具体的な変更内容 ## 影響範囲 ## 動作要件 ## 補足 ## レビューリクエストを出す前にチェック! - [ ] 改めてセルフレビューしたか - [ ] 手動での動作検証を行ったか - [ ] server の機能追加ならば、テストを書いたか - 理由: 書いた | server の機能追加ではない - [ ] 間違った使い方が存在するならば、それのドキュメントをコメントで書いたか - 理由: 書いた | 間違った使い方は存在しない - [ ] わかりやすいPRになっているか <!-- レビューリクエスト後は、Slackでもメンションしてお願いすることを推奨します。 -->
1 parent ab23221 commit 4559ba1

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

Makefile

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -91,18 +91,18 @@ dev-db:
9191
# Sync (install/update packages, generate prisma, etc)
9292

9393
sync-web:
94-
cd web; bun install --frozen-lockfile
94+
cd web; bun install
9595
# copy .env.sample -> .env only if .env is not there
9696

9797
sync-server:
98-
cd server; bun install --frozen-lockfile
98+
cd server; bun install
9999
cd server; if command -v prisma; then prisma generate; else bunx prisma generate; fi
100100
# copy .env.sample -> .env only if .env is not there
101101

102102
sync-root:
103-
bun install --frozen-lockfile
103+
bun install
104104
sync-common:
105-
cd common; bun install --frozen-lockfile
105+
cd common; bun install
106106

107107

108108
# Static checks

0 commit comments

Comments
 (0)