Formatting. - DevilBro
This commit is contained in:
parent
de69ea470e
commit
ec06a3f642
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,
|
||||||
|
|
2
build.ts
2
build.ts
|
@ -10,7 +10,7 @@ const build = async (minify: boolean) => {
|
||||||
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);
|
||||||
|
|
2
index.ts
2
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;
|
||||||
|
|
|
@ -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"
|
||||||
|
]
|
||||||
}
|
}
|
|
@ -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