From d65fa934b23fc91f2a0d6657de4025a28ece4e1e Mon Sep 17 00:00:00 2001 From: Jon Surrell Date: Mon, 13 May 2024 20:21:28 +0200 Subject: [PATCH] Fix parseConfig return type --- packages/env/lib/config/parse-config.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/env/lib/config/parse-config.js b/packages/env/lib/config/parse-config.js index 3f69bb78b81f26..5da05396ec468c 100644 --- a/packages/env/lib/config/parse-config.js +++ b/packages/env/lib/config/parse-config.js @@ -108,7 +108,7 @@ const DEFAULT_ENVIRONMENT_CONFIG = { * @param {string} configDirectoryPath A path to the directory we are parsing the config for. * @param {string} cacheDirectoryPath Path to the work directory located in ~/.wp-env. * - * @return {WPRootConfig} Parsed config. + * @return {Promise} Parsed config. */ async function parseConfig( configDirectoryPath, cacheDirectoryPath ) { // The local config will be used to override any defaults.