Open
Description
I just downloaded a REPL example and the main.js included this:
if (module.hot) {
const { configure, register, reload } = require('/home/travis/build/sveltejs/svelte.technology/node_modules/svelte-loader/lib/hot-api.js');
module.hot.accept();
if (!module.hot.data) {
// initial load
configure({});
app = register("src/routes/repl/_components/AppControls.html", app);
} else {
// hot update
app = reload("src/routes/repl/_components/AppControls.html", app);
}
}
I have no freaking idea where that's coming from.