Formatting & add biome
This commit is contained in:
parent
5b0716930f
commit
5f8a7ad79f
4 changed files with 56 additions and 24 deletions
30
biome.json
Normal file
30
biome.json
Normal file
|
@ -0,0 +1,30 @@
|
||||||
|
{
|
||||||
|
"$schema": "https://biomejs.dev/schemas/1.9.4/schema.json",
|
||||||
|
"vcs": {
|
||||||
|
"enabled": false,
|
||||||
|
"clientKind": "git",
|
||||||
|
"useIgnoreFile": false
|
||||||
|
},
|
||||||
|
"files": {
|
||||||
|
"ignoreUnknown": false,
|
||||||
|
"ignore": ["./dist"]
|
||||||
|
},
|
||||||
|
"formatter": {
|
||||||
|
"enabled": true,
|
||||||
|
"indentStyle": "tab"
|
||||||
|
},
|
||||||
|
"organizeImports": {
|
||||||
|
"enabled": true
|
||||||
|
},
|
||||||
|
"linter": {
|
||||||
|
"enabled": true,
|
||||||
|
"rules": {
|
||||||
|
"recommended": true
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"javascript": {
|
||||||
|
"formatter": {
|
||||||
|
"quoteStyle": "double"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
BIN
bun.lockb
BIN
bun.lockb
Binary file not shown.
2
index.ts
2
index.ts
|
@ -17,7 +17,7 @@ const build = async () => {
|
||||||
experimentalCss: true,
|
experimentalCss: true,
|
||||||
splitting: true,
|
splitting: true,
|
||||||
sourcemap: "linked",
|
sourcemap: "linked",
|
||||||
...(NOWATCH ? {minify: true} : {})
|
...(NOWATCH ? { minify: true } : {}),
|
||||||
});
|
});
|
||||||
const end = Date.now();
|
const end = Date.now();
|
||||||
if (NOWATCH) await cleanOldFiles(built.outputs);
|
if (NOWATCH) await cleanOldFiles(built.outputs);
|
||||||
|
|
48
package.json
48
package.json
|
@ -1,24 +1,26 @@
|
||||||
{
|
{
|
||||||
"name": "bunhtml",
|
"name": "bunhtml",
|
||||||
"module": "index.ts",
|
"module": "index.ts",
|
||||||
"type": "module",
|
"type": "module",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"build": "NOWATCH=1 bun .",
|
"build": "NOWATCH=1 bun .",
|
||||||
"start": "bun ."
|
"start": "bun ."
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@types/bun": "latest"
|
"@biomejs/biome": "1.9.4",
|
||||||
},
|
"@types/bun": "latest"
|
||||||
"peerDependencies": {
|
},
|
||||||
"typescript": "^5.0.0"
|
"peerDependencies": {
|
||||||
},
|
"typescript": "^5.0.0"
|
||||||
"dependencies": {
|
},
|
||||||
"lucide-preact": "^0.473.0",
|
"dependencies": {
|
||||||
"lucide-static": "^0.473.0",
|
"lucide-preact": "^0.473.0",
|
||||||
"modern-normalize": "^3.0.1",
|
"lucide-static": "^0.473.0",
|
||||||
"preact": "^10.25.4",
|
"modern-normalize": "^3.0.1",
|
||||||
"react": "npm:@preact/compat",
|
"preact": "^10.25.4",
|
||||||
"react-dom": "npm:@preact/compat",
|
"react": "npm:@preact/compat",
|
||||||
"react-icons": "^5.4.0"
|
"react-dom": "npm:@preact/compat",
|
||||||
}
|
"react-icons": "^5.4.0"
|
||||||
}
|
},
|
||||||
|
"trustedDependencies": ["@biomejs/biome"]
|
||||||
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue