Skip to content

Commit

Permalink
use copyfiles instead of cp (#376)
Browse files Browse the repository at this point in the history
  • Loading branch information
andnorda committed Jul 5, 2024
1 parent c385e20 commit 7df4673
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
Binary file modified bun.lockb
Binary file not shown.
3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
"test": "bun run --cwd packages/shared test && bun run --cwd packages/client test && bun run --cwd packages/server test",
"dev": "concurrently \"bun run --cwd packages/client dev\" \"bun run --cwd packages/server dev\"",
"build": "bun run --cwd packages/client build && bun run --cwd packages/server build && bun run copy-assets",
"copy-assets": "mkdir -p packages/server/public && cp -r packages/client/dist/assets packages/server/public/",
"copy-assets": "mkdir -p packages/server/public && copyfiles -u 3 packages/client/dist/assets/**/* packages/server/public/",
"prepare": "husky",
"benchmarking": "./benchmarking/run",
"clean": "rm -rf node_modules packages/**/node_modules bun.lockb packages/**/bun.lockb",
Expand Down Expand Up @@ -44,6 +44,7 @@
"@typescript-eslint/eslint-plugin": "7.9.0",
"@typescript-eslint/parser": "7.9.0",
"concurrently": "8.2.2",
"copyfiles": "2.4.1",
"eslint": "8.57.0",
"husky": "9.0.11",
"lint-staged": "15.2.2",
Expand Down

0 comments on commit 7df4673

Please sign in to comment.