mirror of
https://github.com/coollabsio/coolify.git
synced 2026-03-11 08:55:47 +00:00
chore(tooling): rename composer scripts for clarity
This commit is contained in:
parent
50ecb2efc4
commit
0a3e1477b5
1 changed files with 12 additions and 11 deletions
|
|
@ -68,20 +68,21 @@
|
|||
"bunx concurrently -c \"#93c5fd,#c4b5fd,#fb7185,#fdba74\" \"php artisan serve\" \"php artisan queue:listen --tries=1\" \"php artisan pail --timeout=0\" \"bun run dev\" --names=server,queue,logs,vite"
|
||||
],
|
||||
"refactor": "rector",
|
||||
"typos": "peck",
|
||||
"types": "phpstan --memory-limit=1G",
|
||||
"lint": "pint",
|
||||
"test": "pest",
|
||||
"test:test-coverage": "pest --parallel --coverage --exactly=100",
|
||||
"test:type-coverage": "pest --type-coverage --memory-limit=1G --min=100",
|
||||
"format": "pint",
|
||||
"lint": "phpstan --memory-limit=1G",
|
||||
"test": [
|
||||
"@php artisan config:clear --ansi",
|
||||
"XDEBUG_MODE=coverage pest --parallel --coverage --exactly=100"
|
||||
],
|
||||
"test:refactor": "rector --dry-run",
|
||||
"test:types": "phpstan --memory-limit=1G",
|
||||
"test:lint": "pint --test",
|
||||
"test:format": "pint --test",
|
||||
"test:typos": "peck",
|
||||
"test:type-coverage": "pest --parallel --type-coverage --memory-limit=1G --min=100",
|
||||
"test:all": [
|
||||
"@test:refactor",
|
||||
"@test:types",
|
||||
"@test:lint",
|
||||
"@test:test-coverage",
|
||||
"@test:format",
|
||||
"@lint",
|
||||
"@test",
|
||||
"@test:type-coverage"
|
||||
]
|
||||
},
|
||||
|
|
|
|||
Loading…
Reference in a new issue