From c9dacf504cacbfe1973b1c23deadce20be5c4b44 Mon Sep 17 00:00:00 2001 From: HonkingGoose <34918129+HonkingGoose@users.noreply.github.com> Date: Mon, 26 Jun 2023 14:32:26 +0200 Subject: [PATCH] docs: replace comment with improved sentence --- docs/development/adding-a-package-manager.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/development/adding-a-package-manager.md b/docs/development/adding-a-package-manager.md index 87937afd3edcf6..6c70ba8e00fe60 100644 --- a/docs/development/adding-a-package-manager.md +++ b/docs/development/adding-a-package-manager.md @@ -66,7 +66,7 @@ For example the npm and Yarn package manager must process the `package.json` and This allows features like Lerna and Workspaces to work. This means that for npm or Yarn we need to iterate through all package files after the initial parsing. -As another example, Gradle needs to call a command via a child process in order to extract dependencies, so that must be done first. //Unclear what that must be done first refers to here... +As another example, in order for Gradle to extract dependencies Renovate must first call a command via a child process. The `extractAllPackageFiles` function takes an array of filenames as input. It returns an array of filenames and dependencies.