From 6cdacd62778879ff8d69f7e456b0dc5ee55056ff Mon Sep 17 00:00:00 2001 From: aster <137767097+aster-void@users.noreply.github.com> Date: Tue, 11 Feb 2025 18:07:52 +0900 Subject: [PATCH] hack: remove frozen lockfile --- Makefile | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Makefile b/Makefile index 0e1075ce..8b0a0402 100644 --- a/Makefile +++ b/Makefile @@ -91,18 +91,18 @@ dev-db: # Sync (install/update packages, generate prisma, etc) sync-web: - cd web; bun install --frozen-lockfile + cd web; bun install # copy .env.sample -> .env only if .env is not there sync-server: - cd server; bun install --frozen-lockfile + cd server; bun install cd server; if command -v prisma; then prisma generate; else bunx prisma generate; fi # copy .env.sample -> .env only if .env is not there sync-root: - bun install --frozen-lockfile + bun install sync-common: - cd common; bun install --frozen-lockfile + cd common; bun install # Static checks