From 8f1fae814149654dc7472daf990cdaa4ab903a65 Mon Sep 17 00:00:00 2001 From: mkelvers Date: Sun, 21 Jun 2026 02:04:18 +0200 Subject: [PATCH] style: sort package scripts --- package.json | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/package.json b/package.json index 0202606..9213d98 100644 --- a/package.json +++ b/package.json @@ -3,17 +3,17 @@ "private": true, "type": "module", "scripts": { - "build:css": "bunx --bun @tailwindcss/cli -i ./static/assets/style.css -o ./dist/tailwind.css", - "watch:css": "bunx --bun @tailwindcss/cli -i ./static/assets/style.css -o ./dist/tailwind.css --watch", - "typecheck": "bunx tsc -p tsconfig.json --noEmit", "build:assets": "bun run build:css", + "build:css": "bunx --bun @tailwindcss/cli -i ./static/assets/style.css -o ./dist/tailwind.css", "build:ts": "bun run ./scripts/build-ts.ts", "format": "bunx oxfmt", "format:check": "bunx oxfmt --check", "lint": "bun run lint:ts && bun run lint:go", + "lint:go": "golangci-lint run ./...", "lint:ts": "bunx oxlint --ignore-path .oxlintignore static --tsconfig ./tsconfig.json --type-aware --max-warnings 0", "lint:ts:fix": "bunx oxlint --ignore-path .oxlintignore static --tsconfig ./tsconfig.json --type-aware --max-warnings 0 --fix", - "lint:go": "golangci-lint run ./..." + "typecheck": "bunx tsc -p tsconfig.json --noEmit", + "watch:css": "bunx --bun @tailwindcss/cli -i ./static/assets/style.css -o ./dist/tailwind.css --watch" }, "dependencies": { "hls.js": "^1.6.16",