Formatting. - DevilBro
This commit is contained in:
parent
de69ea470e
commit
f3fe059335
7 changed files with 31 additions and 27 deletions
|
@ -7,7 +7,9 @@
|
|||
},
|
||||
"files": {
|
||||
"ignoreUnknown": false,
|
||||
"ignore": ["./dist"]
|
||||
"ignore": [
|
||||
"./dist"
|
||||
]
|
||||
},
|
||||
"formatter": {
|
||||
"enabled": true,
|
||||
|
|
32
build.ts
32
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);
|
||||
|
|
2
index.ts
2
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;
|
||||
|
|
|
@ -22,5 +22,7 @@
|
|||
"react-dom": "npm:@preact/compat",
|
||||
"react-icons": "^5.4.0"
|
||||
},
|
||||
"trustedDependencies": ["@biomejs/biome"]
|
||||
"trustedDependencies": [
|
||||
"@biomejs/biome"
|
||||
]
|
||||
}
|
|
@ -3,7 +3,7 @@
|
|||
}
|
||||
|
||||
a {
|
||||
color: #DCDCDC;
|
||||
color: #dcdcdc;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
|
@ -12,5 +12,5 @@ a:hover {
|
|||
}
|
||||
|
||||
a:active {
|
||||
color: #A9A9A9;
|
||||
color: #a9a9a9;
|
||||
}
|
Loading…
Add table
Reference in a new issue