Skip to content

Commit

Permalink
adjust default audits
Browse files Browse the repository at this point in the history
  • Loading branch information
Jamesclark32 committed Jan 15, 2025
1 parent 4b9d6ef commit 0c99e08
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 2 deletions.
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,15 @@

All notable changes to `dev-audit` will be documented in this file.

## 1.0.2 - 2025-01-15

Adjust default configuration by switching from phpunit to pest and adding peck

## 1.0.1 - 2024-09-21

Added dev:lint command along with --lint flag on dev:audit


## 1.0.0 - 2024-08-25

Initial Release
8 changes: 6 additions & 2 deletions config/dev-audit.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@
],
'audits' => [
[
'title' => 'PHPUnit',
'command' => './vendor/bin/phpunit -d memory_limit=-1 --no-progress --configuration phpunit.xml;',
'title' => 'Pest',
'command' => './vendor/bin/pest -d memory_limit=-1 --no-progress --configuration phpunit.xml;',
'failure_hint' => 'Run tests using "php artisan test --stop-on-error" to help discover code issues in isolation.',
],
[
Expand All @@ -33,6 +33,10 @@
'title' => 'NPM Audit',
'command' => 'npm audit',
],
[
'title' => 'Peck',
'command' => './vendor/bin/peck',
],
],
'linters' => [
[
Expand Down

0 comments on commit 0c99e08

Please sign in to comment.