patch in legacy builds

This commit is contained in:
Wojciech Duda
2024-07-04 17:48:42 +02:00
committed by VitoAlbano
parent f2e916c940
commit 4878b3a23c

View File

@@ -27,12 +27,25 @@
}
}
},
"build-all": {
"executor": "nx:run-commands",
"options": {
"commands": [
"npm run js_api_build"
]
}
},
"publish": {
"executor": "nx:run-commands",
"options": {
"command": "node tools/scripts/publish.mjs lib-js-api {args.ver} {args.tag}"
},
"dependsOn": ["build"]
"dependsOn": [
{
"projects": "self",
"target": "build-all"
}
]
},
"lint": {
"executor": "@nrwl/linter:eslint",
@@ -66,7 +79,7 @@
"dependsOn": [
{
"projects": "self",
"target": "build"
"target": "build-all"
}
]
},