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 c40ea8c commit eb17741Copy full SHA for eb17741
scripts/verify-ci-config.js
@@ -68,7 +68,7 @@ function checkPlugins (yamlPath) {
68
const instRanges = Array.from(rangesPerPluginFromInst[pluginName])
69
const yamlVersions = getMatchingVersions(pluginName, yamlRanges)
70
const instVersions = getMatchingVersions(pluginName, instRanges)
71
- if (pluginName !== 'next' && !util.isDeepStrictEqual(yamlVersions, instVersions)) {
+ if (!util.isDeepStrictEqual(yamlVersions, instVersions)) {
72
const opts = { colors: true }
73
const colors = x => util.inspect(x, opts)
74
pluginErrorMsg(pluginName, 'Mismatch', `
0 commit comments