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
{{ message }}
This repository has been archived by the owner on Jun 24, 2020. It is now read-only.
There are several tasks with similar names (ship, release, deploy) in the gruntfile. Is this cruft from when we were beta testing the site? Can we fold them into one or two tasks? If we can't, can someone document their purposes in the README?
The text was updated successfully, but these errors were encountered:
It looks like build and release are the two main tasks. ship is used in conjunction with both of those.
default = build + ship deploy = release + ship
One of the more obvious differences between build and release is that release is more picky about what it copies into dist. This is cool because you can merge files into the repo without having them go live. If you want something to go live you need to update the copy:release task.
It would be nice if the build server used grunt instead of grunt deploy so that the build server shows all files, not just the ones going live.
This process would be more straightforward if we could keep master as the deployable production-ready branch and could build feature branches to see our changes and share them.
There are several tasks with similar names (
ship
,release
,deploy
) in the gruntfile. Is this cruft from when we were beta testing the site? Can we fold them into one or two tasks? If we can't, can someone document their purposes in the README?The text was updated successfully, but these errors were encountered: