We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2bdc2f0 commit 7070618Copy full SHA for 7070618
lib/src/deprecations.ts
@@ -130,6 +130,7 @@ function isFatal(
130
for (const fatal of options.fatalDeprecations ?? []) {
131
if (fatal instanceof Version) {
132
if (versionNumber === null) continue;
133
+ if (deprecation.obsoleteIn !== null) continue;
134
if (
135
versionNumber <=
136
fatal.major * 1000000 + fatal.minor * 1000 + fatal.patch
0 commit comments