Skip to content

Commit

Permalink
fix(Variables): Unconditionally deprecate old vars engine extensions
Browse files Browse the repository at this point in the history
  • Loading branch information
medikoo committed Aug 11, 2021
1 parent dc74f41 commit b7f4e08
Showing 1 changed file with 1 addition and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -48,10 +48,7 @@ module.exports = (configuration, resolverConfiguration, externalPlugins) => {
resolverConfiguration.sources[sourceName] = sourceConfig;
resolverConfiguration.fulfilledSources.add(sourceName);
}
} else if (
externalPlugin.variableResolvers &&
configuration.variablesResolutionMode < 20210326
) {
} else if (externalPlugin.variableResolvers) {
logDeprecation(
'NEW_VARIABLES_RESOLVER',
`Plugin "${pluginName}" attempts to extend old variables resolver. ` +
Expand Down

0 comments on commit b7f4e08

Please sign in to comment.