From f974933fcbc2954c72a7f3218449a8127afc11a8 Mon Sep 17 00:00:00 2001 From: badasswp Date: Sun, 20 Jul 2025 09:55:12 +0100 Subject: [PATCH] feat: add deployignore file to plugin setup --- repo/.deployignore | 8 ++++++++ src/plugin/utils.js | 1 + 2 files changed, 9 insertions(+) create mode 100644 repo/.deployignore diff --git a/repo/.deployignore b/repo/.deployignore new file mode 100644 index 0000000..970164e --- /dev/null +++ b/repo/.deployignore @@ -0,0 +1,8 @@ +.editorconfig +.gitignore +.wp-env.json +package.json +phpcs.xml +phpunit.xml +README.md +tests diff --git a/src/plugin/utils.js b/src/plugin/utils.js index 67a97d9..f818996 100644 --- a/src/plugin/utils.js +++ b/src/plugin/utils.js @@ -67,6 +67,7 @@ export const getPluginDefaults = name => { */ export const getPluginFiles = () => { return [ + '.deployignore', '.editorconfig', '.npmignore', '.gitignore',