diff --git a/biome.json b/biome.json new file mode 100644 index 0000000..2ed983c --- /dev/null +++ b/biome.json @@ -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" + } + } +} diff --git a/bun.lockb b/bun.lockb index 1f20f45..2025bc0 100644 Binary files a/bun.lockb and b/bun.lockb differ diff --git a/index.ts b/index.ts index 9f10acf..cffd9eb 100644 --- a/index.ts +++ b/index.ts @@ -17,7 +17,7 @@ const build = async () => { experimentalCss: true, splitting: true, sourcemap: "linked", - ...(NOWATCH ? {minify: true} : {}) + ...(NOWATCH ? { minify: true } : {}), }); const end = Date.now(); if (NOWATCH) await cleanOldFiles(built.outputs); diff --git a/package.json b/package.json index b5a2f66..ff9f014 100644 --- a/package.json +++ b/package.json @@ -1,24 +1,26 @@ { - "name": "bunhtml", - "module": "index.ts", - "type": "module", - "scripts": { - "build": "NOWATCH=1 bun .", - "start": "bun ." - }, - "devDependencies": { - "@types/bun": "latest" - }, - "peerDependencies": { - "typescript": "^5.0.0" - }, - "dependencies": { - "lucide-preact": "^0.473.0", - "lucide-static": "^0.473.0", - "modern-normalize": "^3.0.1", - "preact": "^10.25.4", - "react": "npm:@preact/compat", - "react-dom": "npm:@preact/compat", - "react-icons": "^5.4.0" - } -} \ No newline at end of file + "name": "bunhtml", + "module": "index.ts", + "type": "module", + "scripts": { + "build": "NOWATCH=1 bun .", + "start": "bun ." + }, + "devDependencies": { + "@biomejs/biome": "1.9.4", + "@types/bun": "latest" + }, + "peerDependencies": { + "typescript": "^5.0.0" + }, + "dependencies": { + "lucide-preact": "^0.473.0", + "lucide-static": "^0.473.0", + "modern-normalize": "^3.0.1", + "preact": "^10.25.4", + "react": "npm:@preact/compat", + "react-dom": "npm:@preact/compat", + "react-icons": "^5.4.0" + }, + "trustedDependencies": ["@biomejs/biome"] +}