| We need to ensure that the environment cache persists throughout a compile. If we re-create an environment during each deploy, a compile running with an old version of the environment could then be accessing new settings/info from cache. One potential solution would be to create brand new environments for each deploy, e.g. production_<sha1>, production_<sha2>, etc. as opposed to recreating production on each deploy. |