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": { "publish": {
"executor": "nx:run-commands", "executor": "nx:run-commands",
"options": { "options": {
"command": "node tools/scripts/publish.mjs lib-js-api {args.ver} {args.tag}" "command": "node tools/scripts/publish.mjs lib-js-api {args.ver} {args.tag}"
}, },
"dependsOn": ["build"] "dependsOn": [
{
"projects": "self",
"target": "build-all"
}
]
}, },
"lint": { "lint": {
"executor": "@nrwl/linter:eslint", "executor": "@nrwl/linter:eslint",
@@ -66,7 +79,7 @@
"dependsOn": [ "dependsOn": [
{ {
"projects": "self", "projects": "self",
"target": "build" "target": "build-all"
} }
] ]
}, },