mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2026-03-13 10:22:08 +08:00
66 lines
1.6 KiB
Bash
Executable File
66 lines
1.6 KiB
Bash
Executable File
|
|
# adapted from Angular's bower script
|
|
# Script for updating the Ionic bower repos from current build
|
|
|
|
echo "#################################"
|
|
echo "#### Update bower ###############"
|
|
echo "#################################"
|
|
|
|
ARG_DEFS=(
|
|
)
|
|
|
|
function init {
|
|
TMP_DIR=$SCRIPT_DIR/../../tmp
|
|
BUILD_DIR=$SCRIPT_DIR/../../dist
|
|
PROJECT_DIR=$SCRIPT_DIR/../..
|
|
|
|
BOWER_DIR=$TMP_DIR/bower-ionic
|
|
}
|
|
|
|
function run {
|
|
|
|
VERSION=$(readJsonProp "$PROJECT_DIR/package.json" "version")
|
|
CODENAME=$(readJsonProp "$PROJECT_DIR/package.json" "codename")
|
|
|
|
rm -rf $BOWER_DIR
|
|
mkdir -p $BOWER_DIR
|
|
|
|
echo "-- Cloning bower-ionic..."
|
|
git clone https://$GH_ORG:$GH_TOKEN@github.com/$GH_ORG/bower-ionic.git $BOWER_DIR
|
|
|
|
# move the files from the build
|
|
echo "-- Putting build files in bower-ionic..."
|
|
|
|
cd $BOWER_DIR
|
|
cp -Rf $BUILD_DIR/* $BOWER_DIR
|
|
|
|
# Angular dependencies are managed by bower, don't include them
|
|
rm -rf $BOWER_DIR/js/angular*
|
|
|
|
# update bower.json
|
|
# tag each repo
|
|
echo "-- Updating version in bower-ionic to $VERSION"
|
|
replaceJsonProp "bower.json" "version" "$VERSION"
|
|
|
|
echo "-- Updating codename in bower-ionic to $CODENAME"
|
|
replaceJsonProp "bower.json" "codename" "$CODENAME"
|
|
|
|
echo "-- Committing and tagging bower-ionic"
|
|
git add -A
|
|
git commit -m "release: v$VERSION"
|
|
git tag v$VERSION
|
|
|
|
echo "-- Pushing bower-ionic"
|
|
cd $BOWER_DIR
|
|
|
|
git push -q origin master
|
|
git push -q origin v$VERSION
|
|
|
|
echo "-- Published bower-ionic to v$VERSION successfully!"
|
|
|
|
# Go back to the script to make things 'safe'
|
|
cd $SCRIPT_DIR
|
|
}
|
|
|
|
source $(dirname $0)/../utils.inc
|