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 +1 -1
- package/src/config/loader.js +3 -2
package/package.json
CHANGED
package/src/config/loader.js
CHANGED
|
@@ -71,8 +71,9 @@ function loadConfig(projectRoot) {
|
|
|
71
71
|
return null;
|
|
72
72
|
}
|
|
73
73
|
|
|
74
|
-
// Migrate old format if needed
|
|
75
|
-
|
|
74
|
+
// Migrate old format if needed, then validate
|
|
75
|
+
const migrated = migrateConfig(raw);
|
|
76
|
+
return validateConfig(migrated);
|
|
76
77
|
}
|
|
77
78
|
|
|
78
79
|
/**
|