diff --git a/scripts/affected-libs.sh b/scripts/affected-libs.sh index 89dc7c0c73..2b32f48fd6 100755 --- a/scripts/affected-libs.sh +++ b/scripts/affected-libs.sh @@ -118,6 +118,15 @@ do fi done +#testing +for i in "${libs[@]}" +do + if [ "$i" == "testing" ] ; then + AFFECTED_LIBS=$AFFECTED_LIBS" testing$" + fi +done + + #process-services-cloud for i in "${libs[@]}" do diff --git a/scripts/npm-build-all.sh b/scripts/npm-build-all.sh index 587f8941e0..082fce1376 100755 --- a/scripts/npm-build-all.sh +++ b/scripts/npm-build-all.sh @@ -18,6 +18,7 @@ eval EXECLINT=true eval projects=( "core" "content-services" "insights" + "testing" "process-services" "process-services-cloud" "extensions" ) diff --git a/scripts/npm-check-bundles.sh b/scripts/npm-check-bundles.sh index df7683a7c6..f03c02b8c2 100755 --- a/scripts/npm-check-bundles.sh +++ b/scripts/npm-check-bundles.sh @@ -8,6 +8,7 @@ eval projects=( "adf-core" "adf-insights" "adf-content-services" "adf-extensions" + "adf-testing" "adf-process-services" "adf-process-services-cloud" ) diff --git a/scripts/npm-publish.sh b/scripts/npm-publish.sh index babe72ca09..96c8c1c3b4 100755 --- a/scripts/npm-publish.sh +++ b/scripts/npm-publish.sh @@ -19,6 +19,7 @@ eval EXEC_BUILD=true eval projects=( "core" "insights" + "testing" "content-services" "process-services" "process-services-cloud" diff --git a/scripts/smart-build.sh b/scripts/smart-build.sh index 00cda50608..62545781f2 100755 --- a/scripts/smart-build.sh +++ b/scripts/smart-build.sh @@ -78,3 +78,11 @@ do ./scripts/build-insights.sh || exit 1; fi done + +#testing +for i in "${libs[@]}" +do + if [ "$i" == "testing$" ] ; then + ./scripts/build-testing.sh || exit 1; + fi +done \ No newline at end of file diff --git a/scripts/update-version.sh b/scripts/update-version.sh index 7f3087f3f4..e09cf71742 100755 --- a/scripts/update-version.sh +++ b/scripts/update-version.sh @@ -13,6 +13,7 @@ eval projects=( "core" "process-services" "process-services-cloud" "insights" + "testing" "extensions" ) cd `dirname $0`