mobx 6.1.7 → 6.1.8

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -3419,7 +3419,17 @@
3419
3419
  if (target[inferredAnnotationsSymbol]) {
3420
3420
  target[inferredAnnotationsSymbol].forEach(function (value, key) {
3421
3421
  return adm.make_(key, value);
3422
- });
3422
+ }); // Overrides are not cached, unless `true`, see #2832
3423
+
3424
+ if (overrides) {
3425
+ ownKeys(overrides).forEach(function (key) {
3426
+ var annotation = overrides[key];
3427
+
3428
+ if (annotation !== true) {
3429
+ adm.make_(key, annotation);
3430
+ }
3431
+ });
3432
+ }
3423
3433
  } else {
3424
3434
  var _ignoreKeys;
3425
3435