You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
console.error(`Error: Could not parse version range from '${highestAlias.key}': ${highestAliasValue}`);
43
+
hasError=true;
44
+
}elseif(baseVersion!==highestRange){
45
+
console.error(
46
+
`Error: Version of '${SFDX_LOCAL_DEV_DIST_BASE}' (${baseVersion}) must be the same as the version of the highest-numbered alias '${highestAlias.key}' (${highestRange}).`,
47
+
);
48
+
hasError=true;
49
+
}
50
+
}
51
+
}
52
+
20
53
// Iterate through each API version defined in metadata
0 commit comments