Skip to content

Commit

Permalink
Remove additional config files in deploy script
Browse files Browse the repository at this point in the history
Updated the deploy script to delete `eslint.config.js` and `bud.config.js` files along with other configuration files. Also added mentions of ESLint and PHPCS in the README for better clarity on included tools.
  • Loading branch information
JUVOJustin committed Aug 11, 2024
1 parent 2ed4c31 commit d1f6b92
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ jobs:
find . -name "composer.json" -type f -delete && find . -name "composer.lock" -type f -delete
find . -name "package.json" -type f -delete && find . -name "package-lock.json" -type f -delete
find . -name "constants.php" && find . -name "README.md"
rm -rf phpunit.xml.dist phpcs.xml phpstan.neon phpcs-report.xml
rm -rf phpunit.xml.dist phpcs.xml phpstan.neon phpcs-report.xml eslint.config.js bud.config.js
rm -rf .git && find . -name ".gitignore" -type f -delete
rm -rf .github
rm -rf tests
Expand Down
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,9 @@ This boilerplate is a fork of [WordPress Boilerplate](https://github.com/DevinVi
- Automatic Namespace prefixing with [Strauss](https://github.com/BrianHenryIE/strauss)
- Easy Shortcode, CLI Command Registration through the loader
- PHPStan with ready-made Github actions
- PHPCS with ready-made Github actions
- [Bud.js](https://bud.js.org/) for simple bundling and build of assets
- ESLint built in
- Ready made Github actions, for building and bundling

# Setup
Expand Down

0 comments on commit d1f6b92

Please sign in to comment.