Skip to main content

Weekly engineering june 2 2020

Joe Curlee: If you have rebased your branch, be mindful that you will also need to rebuild staging before pushing to staging. To rebuild staging + merge your branch and push to heroku:

git checkout master
git pull
git branch -D staging
git checkout -b staging
git merge --squash <your branch>
git push --set-upstream origin staging --force

...

Ben Ross: how to stop making useless css files and not slow down deploy time

Anuarbek Zakiryanov: forceUpdateComponent and reactUpdateRequest https://powr.gitlab.io/docs/engineering/377