fix: do not warn when lerna subdirectories not found (#762)

This commit is contained in:
Rhys Arkins 2017-09-01 11:40:12 +02:00 committed by GitHub
parent 1a395a3dd9
commit 47df66143b

View file

@ -65,7 +65,7 @@ async function checkForLerna(config) {
} }
return { lernaPackages }; return { lernaPackages };
} catch (err) { } catch (err) {
config.logger.warn('lerna getSubDirectories error'); config.logger.info('could not find any lerna subdirectories');
return {}; return {};
} }
} }