Skip to content

Instantly share code, notes, and snippets.

@KyleAMathews
Created June 12, 2019 17:44
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save KyleAMathews/9172576f387ce7ec9fd5112289c7c5e0 to your computer and use it in GitHub Desktop.
Save KyleAMathews/9172576f387ce7ec9fd5112289c7c5e0 to your computer and use it in GitHub Desktop.
Incremental Builds
Incremental Builds
Running Full Build
finished build -> Deployed
Running Incremental Build
finished build -> Deployed
Deployed
data change not affecting static queries -> Running Incremental Build
data change affecting static queries -> Running Full Build
code change -> Running Full Build
function render(model){
let current_state_name = model.active_states[0].name;
return $("h1",
{style: {color: "darkBlue"}},
`The current state is: ${current_state_name}`);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment