[PRODENG-211] improved ADF CLI compilation (#9105)

* reduce npm log noise to errors

* remove unused ts config

* improve CLI build config

* use monorepo libs when building CLI

* [ci:force] minor polishing
This commit is contained in:
Denys Vuika
2023-11-22 13:51:20 +00:00
committed by GitHub
parent e97333aabd
commit 3309ea63f6
13 changed files with 135 additions and 19 deletions

View File

@@ -77,7 +77,7 @@ update_library_version() {
fi
cd $DESTDIR
npm version --allow-same-version --no-git-tag-version --force $VERSION
npm version --allow-same-version --no-git-tag-version --force --loglevel=error $VERSION
}
update_dependency_version() {
@@ -156,10 +156,9 @@ then
exit 1
fi
echo "====== UPDATE COMPONENT LIBRARIES ======"
cd "$DIR/../"
echo "====== UPDATE COMPONENTS ======"
for PROJECT in ${projects[@]}
do
update_library_version $PROJECT
@@ -185,10 +184,10 @@ if $JS_API == true; then
fi
# bump root package.json
npm version --allow-same-version --no-git-tag-version --force $VERSION
npm version --allow-same-version --no-git-tag-version --force --loglevel=error $VERSION
echo "====== UPDATE DEMO SHELL ======"
DESTDIR="$DIR/../demo-shell/"
cd $DESTDIR
npm version --allow-same-version --no-git-tag-version --force $VERSION
npm version --allow-same-version --no-git-tag-version --force --loglevel=error $VERSION