Cleanup
This commit is contained in:
parent
ead6309ecf
commit
57c98fb5af
|
@ -1,9 +1,9 @@
|
|||
import {buildCSS, buildJS} from "./bundler.ts"
|
||||
|
||||
console.debug("Building css...")
|
||||
console.info("Building css...")
|
||||
await buildCSS.rebuild();
|
||||
buildCSS.dispose();
|
||||
|
||||
console.debug("Building javascript...")
|
||||
console.info("Building javascript...")
|
||||
await buildJS.rebuild();
|
||||
buildJS.dispose();
|
|
@ -2,4 +2,4 @@ import {buildCSS, buildJS} from "./bundler.ts"
|
|||
|
||||
await buildCSS.watch();
|
||||
await buildJS.watch();
|
||||
console.debug("esbuild is watching...")
|
||||
console.info("esbuild is watching...")
|
|
@ -222,7 +222,6 @@ const fillModal = (buttonDOM) => {
|
|||
const item = document.querySelector("template#item").content.cloneNode(true)
|
||||
.children[0];
|
||||
|
||||
console.debug(file.name);
|
||||
item.querySelector(".file-link").href = file.url;
|
||||
item.querySelector(".file-link").innerText = file.name;
|
||||
item.querySelector(".file-size").innerText = `(${filesize(
|
||||
|
|
Loading…
Reference in New Issue