Skip to content

Commit

Permalink
install-and-buildスクリプトを修正し、node_modulesとbun.lockbを削除してから依存関係を再インストールす…
Browse files Browse the repository at this point in the history
…るように変更 (#468)
  • Loading branch information
ttizze authored Dec 25, 2024
2 parents 1674624 + b49bb3f commit 2a18196
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion web/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"type": "module",
"scripts": {
"build": "remix vite:build",
"install-and-build": "bun install && bun run build",
"install-and-build": "rm -rf node_modules bun.lockb && bun install && bun run build",
"dev": "remix vite:dev --host 0.0.0.0",
"start": "NODE_OPTIONS='--import ./instrumentation.server.mjs' remix-serve ./build/server/index.js",
"typecheck": "tsc --noEmit",
Expand Down

0 comments on commit 2a18196

Please sign in to comment.