From f3fe05933550d66b06d3934c08a98bc86fcd8f47 Mon Sep 17 00:00:00 2001 From: wont-stream Date: Mon, 20 Jan 2025 16:42:20 -0500 Subject: [PATCH] Formatting. - DevilBro --- biome.json | 6 +++-- build.ts | 32 ++++++++++++------------ index.ts | 4 +-- package.json | 6 +++-- src/Font.css | 2 +- src/components/App.css | 2 +- src/components/IconAnchor/IconAnchor.css | 6 ++--- 7 files changed, 31 insertions(+), 27 deletions(-) diff --git a/biome.json b/biome.json index 2ed983c..ace8d03 100644 --- a/biome.json +++ b/biome.json @@ -7,7 +7,9 @@ }, "files": { "ignoreUnknown": false, - "ignore": ["./dist"] + "ignore": [ + "./dist" + ] }, "formatter": { "enabled": true, @@ -27,4 +29,4 @@ "quoteStyle": "double" } } -} +} \ No newline at end of file diff --git a/build.ts b/build.ts index 70527ac..78b51ee 100644 --- a/build.ts +++ b/build.ts @@ -1,20 +1,20 @@ const build = async (minify: boolean) => { - const start = Date.now(); - const built = await Bun.build({ - entrypoints: ["./src/index.html"], - outdir: "./dist", - html: true, - experimentalCss: true, - splitting: true, - sourcemap: "linked", - minify, - loader: { - ".woff2": "file", - } - }); - const end = Date.now(); - console.log("Did build", built.success, built.logs); - console.log("Build time:", end - start, "ms"); + const start = Date.now(); + const built = await Bun.build({ + entrypoints: ["./src/index.html"], + outdir: "./dist", + html: true, + experimentalCss: true, + splitting: true, + sourcemap: "linked", + minify, + loader: { + ".woff2": "file", + }, + }); + const end = Date.now(); + console.log("Did build", built.success, built.logs); + console.log("Build time:", end - start, "ms"); }; await build(true); diff --git a/index.ts b/index.ts index 701ef44..0349942 100644 --- a/index.ts +++ b/index.ts @@ -4,7 +4,7 @@ const build = async () => { const build = await import("./build"); await build.default(false); -} +}; watch(import.meta.dir, { recursive: true }, async (_, file) => { if (file?.startsWith("dist")) return; @@ -21,4 +21,4 @@ Bun.serve({ }, }); -await build(); \ No newline at end of file +await build(); diff --git a/package.json b/package.json index 50d3937..d12aa6e 100644 --- a/package.json +++ b/package.json @@ -22,5 +22,7 @@ "react-dom": "npm:@preact/compat", "react-icons": "^5.4.0" }, - "trustedDependencies": ["@biomejs/biome"] -} + "trustedDependencies": [ + "@biomejs/biome" + ] +} \ No newline at end of file diff --git a/src/Font.css b/src/Font.css index e6ef06b..e0fa040 100644 --- a/src/Font.css +++ b/src/Font.css @@ -58,4 +58,4 @@ font-style: italic; font-weight: 500; font-display: swap; -} \ No newline at end of file +} diff --git a/src/components/App.css b/src/components/App.css index f71f0dd..7942305 100644 --- a/src/components/App.css +++ b/src/components/App.css @@ -2,4 +2,4 @@ scroll-snap-type: y mandatory; overflow: scroll; height: 100vh; -} \ No newline at end of file +} diff --git a/src/components/IconAnchor/IconAnchor.css b/src/components/IconAnchor/IconAnchor.css index 3fe373a..a2b07ba 100644 --- a/src/components/IconAnchor/IconAnchor.css +++ b/src/components/IconAnchor/IconAnchor.css @@ -3,7 +3,7 @@ } a { - color: #DCDCDC; + color: #dcdcdc; text-decoration: none; } @@ -12,5 +12,5 @@ a:hover { } a:active { - color: #A9A9A9; -} \ No newline at end of file + color: #a9a9a9; +}