Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
The diff you're trying to view is too large. We only load the first 3000 changed files.
9 changes: 8 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
.DS_Store

.htaccess
index.php

# Ignore entire wordpress directory
Expand All @@ -19,9 +20,15 @@ wordpress/wp-content/*
wordpress/wp-content/themes/*
wordpress/wp-content/plugins/*

# Allow specific theme and plugin
# Theme specific files
wordpress/wp-content/themes/monorepo-theme/build

!wordpress/wp-content/themes/monorepo-theme/
!wordpress/wp-content/themes/monorepo-theme/index.php

# Plugin specific files
!wordpress/wp-content/plugins/monorepo-plugin/build

!wordpress/wp-content/plugins/monorepo-plugin/

# Turbo
Expand Down
3 changes: 1 addition & 2 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
{
"require-dev": {
"squizlabs/php_codesniffer": "^3.12.0",
"wp-coding-standards/wpcs": "^3.1",
"dealerdirect/phpcodesniffer-composer-installer": "v1.0.0"
"wp-coding-standards/wpcs": "^3.1"
},
"config": {
"allow-plugins": {
Expand Down
47 changes: 26 additions & 21 deletions composer.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading