@aspruyt/xfg 3.7.5 → 3.7.6

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -372,10 +372,10 @@ function formatFullConfig(ruleset, indent = 2) {
372
372
  lines.push(style.color(`${pad}+ ${key}:`));
373
373
  for (const item of value) {
374
374
  if (typeof item === "object" && item !== null) {
375
- lines.push(style.color(`${pad} - ${JSON.stringify(item)}`));
375
+ lines.push(style.color(`${pad} + ${JSON.stringify(item)}`));
376
376
  }
377
377
  else {
378
- lines.push(style.color(`${pad} - ${formatValue(item)}`));
378
+ lines.push(style.color(`${pad} + ${formatValue(item)}`));
379
379
  }
380
380
  }
381
381
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aspruyt/xfg",
3
- "version": "3.7.5",
3
+ "version": "3.7.6",
4
4
  "description": "CLI tool for repository-as-code",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",