mirror of
https://github.com/sourcebot-dev/sourcebot.git
synced 2025-12-11 20:05:25 +00:00
Add build:deps command for building workspace package dependencies
This commit is contained in:
parent
2398debfd0
commit
78ec512770
2 changed files with 3 additions and 1 deletions
1
Makefile
1
Makefile
|
|
@ -5,6 +5,7 @@ ALL: $(CMDS)
|
|||
|
||||
yarn:
|
||||
yarn install
|
||||
yarn build:deps
|
||||
|
||||
zoekt:
|
||||
mkdir -p bin
|
||||
|
|
|
|||
|
|
@ -13,7 +13,8 @@
|
|||
"dev:web": "yarn with-env yarn workspace @sourcebot/web dev",
|
||||
"dev:prisma:migrate:dev": "yarn with-env yarn workspace @sourcebot/db prisma:migrate:dev",
|
||||
"dev:prisma:studio": "yarn with-env yarn workspace @sourcebot/db prisma:studio",
|
||||
"dev:prisma:migrate:reset": "yarn with-env yarn workspace @sourcebot/db prisma:migrate:reset"
|
||||
"dev:prisma:migrate:reset": "yarn with-env yarn workspace @sourcebot/db prisma:migrate:reset",
|
||||
"build:deps": "yarn workspaces foreach -R --from '{@sourcebot/schemas,@sourcebot/error,@sourcebot/crypto,@sourcebot/db}' run build"
|
||||
},
|
||||
"devDependencies": {
|
||||
"cross-env": "^7.0.3",
|
||||
|
|
|
|||
Loading…
Reference in a new issue