Skip to content
Snippets Groups Projects
Commit 70415861 authored by Rhys Arkins's avatar Rhys Arkins
Browse files

fix: delete child description in onboarding

parent 05fa91e9
No related branches found
No related tags found
No related merge requests found
......@@ -61,6 +61,14 @@ async function resolveConfigPresets(inputConfig, existingPresets = []) {
fetchedPreset,
existingPresets.concat([preset])
);
// istanbul ignore if
if (
inputConfig &&
inputConfig.ignoreDeps &&
inputConfig.ignoreDeps.length === 0
) {
delete presetConfig.description;
}
config = configParser.mergeChildConfig(config, presetConfig);
}
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment