Merge branch 'main' into clean-navbar

This commit is contained in:
mr. m 2025-06-28 22:41:58 +02:00 committed by GitHub
commit 43c71e830d
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -18,6 +18,7 @@
}, },
"build": { "build": {
"cache": true, "cache": true,
"inputs": ["src"],
"outputs": ["dist/**"] "outputs": ["dist/**"]
}, },
"test": { "test": {
@ -27,13 +28,13 @@
}, },
"spell": { "spell": {
"cache": true, "cache": true,
"inputs": ["src/**/*.{ts,tsx,js,jsx,astro,md,json,yml,yaml}"], "inputs": ["**/*.{ts,tsx,js,jsx,astro,md,json,yml,yaml}"],
"outputs": [] "outputs": []
}, },
"test:playwright": { "test:playwright": {
"cache": true, "cache": true,
"dependsOn": ["build"], "dependsOn": ["build"],
"inputs": ["**/*.{ts,tsx,js,jsx,astro}"], "inputs": ["src"],
"outputs": ["playwright-report/**", "test-results/**"] "outputs": ["playwright-report/**", "test-results/**"]
} }
}, },