git-watchtower 1.11.4 → 1.11.5

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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "git-watchtower",
3
- "version": "1.11.4",
3
+ "version": "1.11.5",
4
4
  "description": "Terminal-based Git branch monitor with activity sparklines and optional dev server with live reload",
5
5
  "main": "bin/git-watchtower.js",
6
6
  "bin": {
@@ -71,8 +71,9 @@ function loadConfig(projectRoot) {
71
71
  return null;
72
72
  }
73
73
 
74
- // Migrate old format if needed
75
- return migrateConfig(raw);
74
+ // Migrate old format if needed, then validate
75
+ const migrated = migrateConfig(raw);
76
+ return validateConfig(migrated);
76
77
  }
77
78
 
78
79
  /**