ADD ability for users to disable auto refs by setting the same key to null

This commit is contained in:
Norbert de Langen 2020-06-30 14:56:35 +02:00
parent e6bd4fe838
commit 48ca052263
No known key found for this signature in database
GPG Key ID: 976651DA156C2825

View File

@ -70,6 +70,10 @@ async function getManagerWebpackConfig(options, presets) {
if (definedRefs) {
Object.entries(definedRefs).forEach(([key, value]) => {
if (value === null) {
delete refs[key];
}
const url = typeof value === 'string' ? value : value.url;
const rest =
typeof value === 'string'