docs(nxdev): deploy-build task improvements (#9005)

This commit is contained in:
Benjamin Cabanes 2022-02-16 16:11:13 -05:00 committed by GitHub
parent 1cae869ff0
commit 2f78f29483
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -66,12 +66,17 @@
"outputs": ["nx-dev/nx-dev/public/documentation"], "outputs": ["nx-dev/nx-dev/public/documentation"],
"options": { "options": {
"commands": [ "commands": [
"echo \"🌁 GENERATE OG IMAGES COMMAND 🌁\"", {
"nx run nx-dev:generate-og-images", "command": "nx run nx-dev:generate-og-images",
"echo \"BUILD COMMAND\"", "description": "OG images generation"
"nx run nx-dev:build" },
{
"command": "nx run nx-dev:build",
"description": "NextJs build step"
}
], ],
"parallel": false "color": true,
"parallel": true
} }
}, },
"export": { "export": {