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 c786d9e commit 208b990Copy full SHA for 208b990
packages/optimizely-cms-cli/src/service/utils.ts
@@ -250,8 +250,16 @@ export function normalizePropertyGroups(
250
);
251
}
252
253
+ const deduplicatedGroups = Array.from(groupMap.values());
254
+
255
+ // Log found property groups
256
+ if (deduplicatedGroups.length > 0) {
257
+ const groupKeys = deduplicatedGroups.map((g) => g.displayName).join(', ');
258
+ console.log('Property Groups found: %s', chalk.bold.cyan(`[${groupKeys}]`));
259
+ }
260
261
// Return deduplicated array in the order they were last seen
- return Array.from(groupMap.values());
262
+ return deduplicatedGroups;
263
264
265
/**
0 commit comments