Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions apps/overige-objecten-api/vercel.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
{
"$schema": "https://openapi.vercel.sh/vercel.json",
"buildCommand": "cd ../.. && pnpm run build",
"framework": "vite",
"installCommand": "cd ../.. && pnpm install --frozen-lockfile",
"relatedProjects": ["prj_Kvn4W8zKiyR07V4aPYZCgLAQu2d9", "prj_8J3yBLJmsotvT5j3zolPrhTZNRgO"]
}
6 changes: 6 additions & 0 deletions apps/pdc-dashboard/vercel.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
"$schema": "https://openapi.vercel.sh/vercel.json",
"buildCommand": "cd ../.. && pnpm run build",
"installCommand": "cd ../.. && pnpm install --frozen-lockfile",
"relatedProjects": ["prj_Kvn4W8zKiyR07V4aPYZCgLAQu2d9", "prj_Kvn4W8zKiyR07V4aPYZCgLAQu2d9"]
}
7 changes: 7 additions & 0 deletions apps/pdc-frontend/vercel.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
{
"$schema": "https://openapi.vercel.sh/vercel.json",
"buildCommand": "cd ../.. && pnpm run build",
"framework": "nextjs",
"installCommand": "cd ../.. && pnpm install --frozen-lockfile",
"relatedProjects": ["prj_lCkIDvZnn4NudPf31jFBlZ7hxQRx", "prj_Kvn4W8zKiyR07V4aPYZCgLAQu2d9"]
}
11 changes: 7 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,8 @@
},
"keywords": [],
"scripts": {
"start": "turbo start",
"start": "pnpm run --if-present --parallel --recursive start",
"turbo-start": "turbo start",
"start:pdc-frontend": "pnpm --filter @frameless/pdc-frontend start",
"start:vth-frontend": "pnpm --filter @frameless/vth-frontend start",
"start:pdc-dashboard": "pnpm --filter @frameless/pdc-dashboard start",
Expand All @@ -19,7 +20,8 @@
"strapi-admin-extensions": "pnpm --filter @frameless/strapi-admin-extensions start",
"start:pdc-sc": "pnpm --filter @frameless/pdc-sc start",
"start:overige-objecten-api": "pnpm --filter @frameless/overige-objecten-api start",
"build": "turbo build",
"build": "pnpm run --if-present --recursive build",
"turbo-build": "turbo build",
"generate-env-docs": "node scripts/generate-env-docs.mjs",
"build:frontend": "pnpm --filter @frameless/${APP} build",
"build:strapi": "pnpm --filter @frameless/${APP} build",
Expand All @@ -31,8 +33,9 @@
"start:frontend": "pnpm --filter @frameless/${APP} start",
"start:strapi": "pnpm --filter @frameless/${APP} start",
"start:both": "turbo start --filter=@frameless/${APP1} --filter=@frameless/${APP2}",
"test": "turbo test",
"clean": "turbo clean",
"test": "pnpm run --if-present --parallel test",
"turbo-test": "turbo test",
"clean": "pnpm run --if-present --recursive clean",
"clean-node_modules": "pnpm -r exec rimraf node_modules && rimraf node_modules",
"init:env": "node scripts/env-init.mjs",
"lint": "npm-run-all --parallel lint:js lint:css lint:prettier lint:md",
Expand Down
Loading