1
0
Fork 0

fix(lab): Prebuild org as part of lab start

This commit is contained in:
Joost De Cock 2023-10-12 22:57:19 +02:00
parent a812e63192
commit 176aebb087
2 changed files with 2 additions and 2 deletions

View file

@ -86,7 +86,7 @@ lab:
i18n: 'SITE=lab node --conditions=internal ../shared/prebuild/i18n-only.mjs' i18n: 'SITE=lab node --conditions=internal ../shared/prebuild/i18n-only.mjs'
lint: *nextLint lint: *nextLint
prebuild: *sitePrebuild prebuild: *sitePrebuild
start: *nextStart start: 'cd ../org && yarn prebuild && cd - && yarn prebuild && yarn dev'
sde: sde:
build: *nextBuild build: *nextBuild

View file

@ -21,7 +21,7 @@
"i18n": "SITE=lab node --conditions=internal ../shared/prebuild/i18n-only.mjs", "i18n": "SITE=lab node --conditions=internal ../shared/prebuild/i18n-only.mjs",
"lint": "next lint", "lint": "next lint",
"prebuild": "node --conditions=internal --experimental-json-modules ./prebuild.mjs", "prebuild": "node --conditions=internal --experimental-json-modules ./prebuild.mjs",
"start": "yarn prebuild && yarn dev", "start": "cd ../org && yarn prebuild && cd - && yarn prebuild && yarn dev",
"wbuild": "next build", "wbuild": "next build",
"prewbuild": "node --conditions=internal --experimental-json-modules ./prebuild.mjs" "prewbuild": "node --conditions=internal --experimental-json-modules ./prebuild.mjs"
}, },