Formatting. - DevilBro

This commit is contained in:
Seth 2025-01-20 16:42:20 -05:00
parent de69ea470e
commit f3fe059335
No known key found for this signature in database
GPG key ID: 8B7A2C60CDF65CAC
7 changed files with 31 additions and 27 deletions

View file

@ -7,7 +7,9 @@
}, },
"files": { "files": {
"ignoreUnknown": false, "ignoreUnknown": false,
"ignore": ["./dist"] "ignore": [
"./dist"
]
}, },
"formatter": { "formatter": {
"enabled": true, "enabled": true,
@ -27,4 +29,4 @@
"quoteStyle": "double" "quoteStyle": "double"
} }
} }
} }

View file

@ -1,20 +1,20 @@
const build = async (minify: boolean) => { const build = async (minify: boolean) => {
const start = Date.now(); const start = Date.now();
const built = await Bun.build({ const built = await Bun.build({
entrypoints: ["./src/index.html"], entrypoints: ["./src/index.html"],
outdir: "./dist", outdir: "./dist",
html: true, html: true,
experimentalCss: true, experimentalCss: true,
splitting: true, splitting: true,
sourcemap: "linked", sourcemap: "linked",
minify, minify,
loader: { loader: {
".woff2": "file", ".woff2": "file",
} },
}); });
const end = Date.now(); const end = Date.now();
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");
}; };
await build(true); await build(true);

View file

@ -4,7 +4,7 @@ const build = async () => {
const build = await import("./build"); const build = await import("./build");
await build.default(false); await build.default(false);
} };
watch(import.meta.dir, { recursive: true }, async (_, file) => { watch(import.meta.dir, { recursive: true }, async (_, file) => {
if (file?.startsWith("dist")) return; if (file?.startsWith("dist")) return;
@ -21,4 +21,4 @@ Bun.serve({
}, },
}); });
await build(); await build();

View file

@ -22,5 +22,7 @@
"react-dom": "npm:@preact/compat", "react-dom": "npm:@preact/compat",
"react-icons": "^5.4.0" "react-icons": "^5.4.0"
}, },
"trustedDependencies": ["@biomejs/biome"] "trustedDependencies": [
} "@biomejs/biome"
]
}

View file

@ -58,4 +58,4 @@
font-style: italic; font-style: italic;
font-weight: 500; font-weight: 500;
font-display: swap; font-display: swap;
} }

View file

@ -2,4 +2,4 @@
scroll-snap-type: y mandatory; scroll-snap-type: y mandatory;
overflow: scroll; overflow: scroll;
height: 100vh; height: 100vh;
} }

View file

@ -3,7 +3,7 @@
} }
a { a {
color: #DCDCDC; color: #dcdcdc;
text-decoration: none; text-decoration: none;
} }
@ -12,5 +12,5 @@ a:hover {
} }
a:active { a:active {
color: #A9A9A9; color: #a9a9a9;
} }