You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Tim Officer edited this page Apr 24, 2015
·
6 revisions
##Updating Bower
Follow these steps to update our bower component.
Make any changes needed to the SDK.
Bump up the version of the SDK in both the bower.json and package.json.
Run gulp in your shell.
This will run our default gulp task which will create a release build of the SDK, run jshint, and run out unit tests. Fix any errors you might get from jshint or broken tests.
Commit the changes to your local repository
git commit -m your commit comment here
Create a tag of your commit
git tag -a version# -m bump
Push your changes
git push
Push your tags
git push --tags
You should see a message saing a new tag was created. To verify your tag was created click Here.
Now bower will be able to find the new version of our SDK with all of your changes. To use the latest version of the SDK in another project (web, or partners, etc...) just bump the package version number in bower.json and run bower update