From 0204010b75b960a9be6fd2f7093bbabad50df5fd Mon Sep 17 00:00:00 2001 From: Christopher Allford Date: Mon, 4 Apr 2022 15:18:30 -0700 Subject: [PATCH] Moved `wp-env` File Rather than having a root `wp-env` environment, each project should define what it needs. This prevents problems with shared WordPress installations and plugin conflicts during development. --- .wp-env.json => plugins/woocommerce/.wp-env.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) rename .wp-env.json => plugins/woocommerce/.wp-env.json (80%) diff --git a/.wp-env.json b/plugins/woocommerce/.wp-env.json similarity index 80% rename from .wp-env.json rename to plugins/woocommerce/.wp-env.json index 76975dbd699..848e60698c8 100644 --- a/.wp-env.json +++ b/plugins/woocommerce/.wp-env.json @@ -1,7 +1,7 @@ { "phpVersion": "7.4", "core": null, - "plugins": [ "./plugins/woocommerce" ], + "plugins": [ "." ], "config": { "JETPACK_AUTOLOAD_DEV": true, "WP_DEBUG_LOG": true,