Skip to content

Commit

Permalink
[FIX] add parentheses around arrow function arguments in generateFlex…
Browse files Browse the repository at this point in the history
…ChangesBundle
  • Loading branch information
Lonwyr committed Apr 18, 2024
1 parent 7d718f5 commit 1004610
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/tasks/bundlers/generateFlexChangesBundle.js
Original file line number Diff line number Diff line change
Expand Up @@ -85,8 +85,8 @@ export default async function({workspace, taskUtil, options = {}}) {
`${pathPrefix}/changes/*.{change,variant,ctrl_variant,ctrl_variant_change,ctrl_variant_management_change}`);
if (allResources.length > 0) {
const versionArray = await readManifestMinUI5Version();
const versions = versionArray.map(version => semver.coerce(version));
const versionsAllSuitableForFlexBundle = versions.every(version => semver.compare(version, "1.73.0") >= 0);
const versions = versionArray.map((version) => semver.coerce(version));
const versionsAllSuitableForFlexBundle = versions.every((version) => semver.compare(version, "1.73.0") >= 0);
let hasFlexBundleVersion = false;
let flexBundle = {};
if (versionsAllSuitableForFlexBundle) {
Expand Down

0 comments on commit 1004610

Please sign in to comment.