You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hello,
On BuildCommand if we have a package/repository filter, we load all packages to dump them with the PackagesBuilder :
if ($packageSelection->hasFilterForPackages() || $packageSelection->hasRepositoryFilter()) {
// in case of an active filter we need to load the dumped packages.json and merge the
// updated packages in
$oldPackages = $packageSelection->load();
$packages += $oldPackages;
ksort($packages);
}
$packagesBuilder = new PackagesBuilder($output, $outputDir, $config, $skipErrors);
$packagesBuilder->dump($packages);
Is it really needed if providers option is enabled ?
If no, I can create a pull request to change the code
The text was updated successfully, but these errors were encountered:
glickel
changed the title
Do we need to load packages each times with providers enabled ?
Do we need to load all packages each times with providers enabled ?
Jul 26, 2019
Hello,
On BuildCommand if we have a package/repository filter, we load all packages to dump them with the PackagesBuilder :
Is it really needed if providers option is enabled ?
If no, I can create a pull request to change the code
The text was updated successfully, but these errors were encountered: