function createInteractiveTemplates()

in inflation-explorer/harness/update-harness.js [154:162]


function createInteractiveTemplates(html) {
  for (const key in WEIGHTING) {
    let template = prepareTemplate(html, WEIGHTING[key])

    let path = WEIGHTING[key].target
    console.log("Writing interactive template to " + path)
    fs.writeFileSync(path, template)
  }
}