fifa-wc26 0.3.0 → 0.3.1

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.
Files changed (2) hide show
  1. package/dist/cli.js +1 -1
  2. package/package.json +1 -1
package/dist/cli.js CHANGED
@@ -957,7 +957,7 @@ var FootballDataProvider = class {
957
957
  const out = [];
958
958
  for (const s of data.standings ?? []) {
959
959
  if (s.type && s.type !== "TOTAL") continue;
960
- const label = (s.group ?? "").replace(/^GROUP_/i, "").trim().toUpperCase().slice(0, 1);
960
+ const label = (s.group ?? "").replace(/^GROUP[_\s]+/i, "").trim().toUpperCase().slice(0, 1);
961
961
  if (!label) continue;
962
962
  out.push({
963
963
  group: label,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "fifa-wc26",
3
- "version": "0.3.0",
3
+ "version": "0.3.1",
4
4
  "description": "FIFA World Cup 2026 CLI: fixtures, live scores, group standings, ASCII bracket, team lookup. Keyless providers, smart cache, terminal-friendly output.",
5
5
  "type": "module",
6
6
  "bin": {