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": {
|
"files": {
|
||||||
"ignoreUnknown": false,
|
"ignoreUnknown": false,
|
||||||
"ignore": ["./dist"]
|
"ignore": [
|
||||||
|
"./dist"
|
||||||
|
]
|
||||||
},
|
},
|
||||||
"formatter": {
|
"formatter": {
|
||||||
"enabled": true,
|
"enabled": true,
|
||||||
|
@ -27,4 +29,4 @@
|
||||||
"quoteStyle": "double"
|
"quoteStyle": "double"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
32
build.ts
32
build.ts
|
@ -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);
|
||||||
|
|
4
index.ts
4
index.ts
|
@ -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();
|
||||||
|
|
|
@ -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"
|
||||||
|
]
|
||||||
|
}
|
|
@ -58,4 +58,4 @@
|
||||||
font-style: italic;
|
font-style: italic;
|
||||||
font-weight: 500;
|
font-weight: 500;
|
||||||
font-display: swap;
|
font-display: swap;
|
||||||
}
|
}
|
||||||
|
|
|
@ -2,4 +2,4 @@
|
||||||
scroll-snap-type: y mandatory;
|
scroll-snap-type: y mandatory;
|
||||||
overflow: scroll;
|
overflow: scroll;
|
||||||
height: 100vh;
|
height: 100vh;
|
||||||
}
|
}
|
||||||
|
|
|
@ -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;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue