Improve Local Dev Setup by Reducing Setup Commands (#226)

* Improve Local Dev Setup by Reducing Setup Commands

* Adds Code Owners Configuration for Pull Requests
isekai
Tim Nolte 4 years ago committed by GitHub
parent f8a844b4bc
commit 776d4b1895
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -0,0 +1,2 @@
# The default owners for everything in the repo.
* @daggerhart @timnolte

1
.gitignore vendored

@ -12,6 +12,7 @@
# Local Development files/folders. # Local Development files/folders.
.env .env
.wp-env.override.json
phpcs.xml phpcs.xml
phpstan.neon phpstan.neon
phpunit.xml phpunit.xml

@ -53,6 +53,10 @@
"welcome-build-command": "npm run env start" "welcome-build-command": "npm run env start"
}, },
"scripts": { "scripts": {
"setup": "composer install && npm install && cd wordpress && composer install && npm install && npm run build && cd .. && composer install --optimize-autoloader",
"start": "wp-env start",
"stop": "wp-env stop",
"restart": "npm run wp-env stop && npm run wp-env start",
"grunt": "node_modules/.bin/grunt", "grunt": "node_modules/.bin/grunt",
"test": "npm run grunt test", "test": "npm run grunt test",
"build": "npm run grunt build", "build": "npm run grunt build",

Loading…
Cancel
Save