diff --git a/.github/CODEOWNERS b/.github/CODEOWNERS new file mode 100644 index 0000000..19a579c --- /dev/null +++ b/.github/CODEOWNERS @@ -0,0 +1,2 @@ +# The default owners for everything in the repo. +* @daggerhart @timnolte diff --git a/.gitignore b/.gitignore index 374ac51..64fd9bd 100644 --- a/.gitignore +++ b/.gitignore @@ -12,6 +12,7 @@ # Local Development files/folders. .env +.wp-env.override.json phpcs.xml phpstan.neon phpunit.xml diff --git a/package.json b/package.json index da63705..14384d4 100644 --- a/package.json +++ b/package.json @@ -53,6 +53,10 @@ "welcome-build-command": "npm run env start" }, "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", "test": "npm run grunt test", "build": "npm run grunt build",