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"],
"options": {
"commands": [
"echo \"🌁 GENERATE OG IMAGES COMMAND 🌁\"",
"nx run nx-dev:generate-og-images",
"echo \"BUILD COMMAND\"",
"nx run nx-dev:build"
{
"command": "nx run nx-dev:generate-og-images",
"description": "OG images generation"
},
{
"command": "nx run nx-dev:build",
"description": "NextJs build step"
}
],
"parallel": false
"color": true,
"parallel": true
}
},
"export": {