Formatting. :trolley:

This commit is contained in:
Seth 2025-01-17 18:16:22 -05:00
parent e9b9175d51
commit b8362d2d30
No known key found for this signature in database
GPG key ID: 8B7A2C60CDF65CAC
7 changed files with 149 additions and 142 deletions

View file

@ -14,32 +14,32 @@ const build = async () => {
html: true, html: true,
experimentalCss: true, experimentalCss: true,
splitting: true, splitting: true,
sourcemap: "linked" sourcemap: "linked",
//minify: true, //minify: true,
}) });
const end = Date.now(); const end = Date.now();
await cleanOldFiles(built.outputs); await cleanOldFiles(built.outputs);
console.log("Did build", built.success, built.logs) console.log("Did build", built.success, built.logs);
console.log("Build time:", end - start, "ms"); console.log("Build time:", end - start, "ms");
} };
const cleanOldFiles = async (outputs: BuildArtifact[]) => { const cleanOldFiles = async (outputs: BuildArtifact[]) => {
let distFiles: string[] = [] let distFiles: string[] = [];
for await (const file of glob.scan("./dist")) { for await (const file of glob.scan("./dist")) {
distFiles.push(file) distFiles.push(file);
} }
for await (const output of outputs) { for await (const output of outputs) {
const arr = output.path.split("\\") const arr = output.path.split("\\");
const file = arr[arr.length - 1] const file = arr[arr.length - 1];
distFiles = distFiles.filter(item => item !== file); distFiles = distFiles.filter((item) => item !== file);
} }
return await Promise.all( return await Promise.all(
Array.from(distFiles).map(file => unlink(join("dist", file))) Array.from(distFiles).map((file) => unlink(join("dist", file))),
); );
} };
if (process.env.NOWATCH !== "1") { if (process.env.NOWATCH !== "1") {
watch(import.meta.dir, { recursive: true }, async (_, file) => { watch(import.meta.dir, { recursive: true }, async (_, file) => {
@ -53,9 +53,9 @@ if (process.env.NOWATCH !== "1") {
const file = pathname === "/" ? "/index.html" : pathname; const file = pathname === "/" ? "/index.html" : pathname;
return new Response(Bun.file(`dist${file}`)) return new Response(Bun.file(`dist${file}`));
} },
}) });
} }
await build(); await build();

View file

@ -1,7 +1,7 @@
import Hero from "./Hero"; import Hero from "./Hero";
import IconAnchor from "./IconAnchor"; import IconAnchor from "./IconAnchor";
import { Music, } from "lucide-preact"; import { Music } from "lucide-preact";
import { SiGithub, SiForgejo, SiInstagram } from "react-icons/si"; import { SiGithub, SiForgejo, SiInstagram } from "react-icons/si";
import "./App.css"; import "./App.css";

View file

@ -27,7 +27,7 @@
position: relative; position: relative;
z-index: 1; z-index: 1;
font-size: 2rem; font-size: 2rem;
color: #DEDEDE color: #dedede;
} }
.waves-header { .waves-header {
@ -38,7 +38,7 @@
height: 150px; height: 150px;
background-repeat: no-repeat; background-repeat: no-repeat;
background-size: cover; background-size: cover;
background-image: url("./header.svg") background-image: url("./header.svg");
} }
.waves-footer { .waves-footer {
@ -49,5 +49,5 @@
height: 200px; height: 200px;
background-repeat: no-repeat; background-repeat: no-repeat;
background-size: cover; background-size: cover;
background-image: url("./footer.svg") background-image: url("./footer.svg");
} }

View file

@ -2,8 +2,15 @@ import type { VNode } from "preact";
import "./IconAnchor.css"; import "./IconAnchor.css";
export default (props: {icon: VNode; link: string; title: string;}) => { export default (props: { icon: VNode; link: string; title: string }) => {
return ( return (
<a class="IconAnchor" href={props.link} title={props.title} rel="noreferrer noopener">{props.icon}</a> <a
class="IconAnchor"
href={props.link}
title={props.title}
rel="noreferrer noopener"
>
{props.icon}
</a>
); );
} };