mirror of
https://github.com/Alfresco/alfresco-content-app.git
synced 2025-07-24 17:31:52 +00:00
Release 2.2.0 (#1870)
* update package versions script * update package versions script * generate reports script * bump versions to 2.2.0 * audits * upgrade to final ADF * update docs * update app config
This commit is contained in:
22
scripts/update-package-version.sh
Executable file
22
scripts/update-package-version.sh
Executable file
@@ -0,0 +1,22 @@
|
||||
#!/usr/bin/env bash
|
||||
|
||||
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )/.." && pwd )"
|
||||
VERSION=$1
|
||||
|
||||
eval packages=(
|
||||
"$DIR"
|
||||
"$DIR/projects/aca-about"
|
||||
"$DIR/projects/aca-settings"
|
||||
"$DIR/projects/aca-shared"
|
||||
"$DIR/projects/aca-testing-shared"
|
||||
"$DIR/projects/adf-office-services-ext"
|
||||
)
|
||||
packagesLength=${#packages[@]}
|
||||
|
||||
for (( j=0; j<${packagesLength}; j++ ));
|
||||
do
|
||||
PACKAGE_PATH="${packages[$j]}"
|
||||
echo "====== UPDATE PACKAGE VERSION of ${packages[$j]} to ${VERSION} ======"
|
||||
cd $PACKAGE_PATH;
|
||||
npm version --no-git-tag-version $VERSION
|
||||
done
|
Reference in New Issue
Block a user