Change to .disabled property for disabling autorefs

This commit is contained in:
Norbert de Langen 2020-07-01 13:33:37 +02:00
parent b973c84884
commit db7da2bfd1
No known key found for this signature in database
GPG Key ID: 976651DA156C2825

View File

@ -70,7 +70,7 @@ async function getManagerWebpackConfig(options, presets) {
if (definedRefs) {
Object.entries(definedRefs).forEach(([key, value]) => {
if (value === null) {
if (value?.disabled) {
delete refs[key];
return;
}