Skip to content

Commit

Permalink
add: concurrently (#330)
Browse files Browse the repository at this point in the history
Co-authored-by: Flip van Haaren <flip@shareworks.nl>
  • Loading branch information
LemonardoD and flipvh authored Jan 6, 2025
1 parent 5a7d5af commit 3aa82f5
Show file tree
Hide file tree
Showing 3 changed files with 48 additions and 5 deletions.
5 changes: 3 additions & 2 deletions backend/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
"scripts": {
"quick": "cross-env PGLITE=true tsx scripts/quick.ts && cross-env PGLITE=true pnpm dev",
"start": "tsx dist/index.js",
"dev": "pnpm run studio & tsup --watch --onSuccess \"tsx dist/index.js\"",
"dev": "concurrently \"pnpm run studio\" \"tsup --watch --onSuccess \\\"tsx dist/index.js\\\"\"",
"check:types": "tsc",
"build": "cross-env NODE_ENV=production tsup",
"build:dev": "tsup",
Expand Down Expand Up @@ -100,7 +100,8 @@
"papaparse": "^5.4.1",
"tsup": "^8.3.5",
"tsx": "^4.19.2",
"typescript": "^5.7.2"
"typescript": "^5.7.2",
"concurrently": "^9.1.2"
},
"imports": {
"#/*": ["./dist/src/*"]
Expand Down
5 changes: 3 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
},
"scripts": {
"prepare": "node prepare.js",
"quick": "pnpm --filter backend run quick & turbo dev --filter frontend --filter tus",
"quick": "concurrently \"pnpm --filter backend run quick\" \"turbo dev --filter frontend --filter tus\"",
"docker": "pnpm --filter backend run docker:up --detach",
"generate": "pnpm --filter backend run generate",
"clean": "rimraf backend/dist frontend/dist frontend/stats",
Expand All @@ -42,7 +42,8 @@
"tsx": "^4.19.2",
"turbo": "^2.3.3",
"typescript": "^5.7.2",
"vitest": "^2.1.8"
"vitest": "^2.1.8",
"concurrently": "^9.1.2"
},
"packageManager": "pnpm@9.1.2",
"dependencies": {
Expand Down
43 changes: 42 additions & 1 deletion pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 3aa82f5

Please sign in to comment.