Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 2 additions & 5 deletions biome.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"$schema": "https://biomejs.dev/schemas/2.4.11/schema.json",
"$schema": "https://biomejs.dev/schemas/2.5.0/schema.json",
"assist": {
"actions": {
"source": {
Expand All @@ -24,10 +24,7 @@
}
},
"linter": {
"enabled": true,
"rules": {
"recommended": true
}
"enabled": true
},
"vcs": {
"clientKind": "git",
Expand Down
18 changes: 0 additions & 18 deletions bun.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 1 addition & 5 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,23 +7,19 @@
"scripts": {
"build": "bun build src/index.html --outdir dist",
"check": "bun run check:format && bun run check:tsc",
"check:format": "biome check --write",
"check:format": "biome check .",
"check:tsc": "tsc --noEmit",
"dev": "bun --hot src/index.html",
"format": "biome format --write",
"preview": "bun run build && bun dist/index.html"
},
"dependencies": {
"@picocss/pico": "^2.1.1",
"clsx": "^2.1.1",
"es-toolkit": "^1.47.1",
"react": "^19.2.7",
"react-dom": "^19.2.7"
},
"devDependencies": {
"@biomejs/biome": "^2.5.0",
"@tsconfig/bun": "^1.0.10",
"@types/bun": "1.3.14",
"@types/react-dom": "^19.2.3",
"typescript": "^6.0.3"
}
Expand Down
1 change: 0 additions & 1 deletion src/global.d.ts

This file was deleted.

1 change: 0 additions & 1 deletion src/index.css
Original file line number Diff line number Diff line change
@@ -1 +0,0 @@
@import '@picocss/pico/css/pico.min.css';
4 changes: 2 additions & 2 deletions src/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<link href="index.css" rel="stylesheet" />
</head>
<body>
<div id="root" />
<script type="module" src="./index.tsx" />
<div id="root"></div>
<script type="module" src="./index.tsx"></script>
</body>
</html>
3 changes: 1 addition & 2 deletions tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
"$schema": "https://www.schemastore.org/tsconfig",
"extends": "@tsconfig/bun/tsconfig.json",
"compilerOptions": {
"lib": ["dom", "esnext"],
"types": ["bun"]
"lib": ["dom", "esnext"]
}
}