repowise 0.1.84 → 0.1.85
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/dist/bin/repowise.js +7 -0
- package/package.json +1 -1
package/dist/bin/repowise.js
CHANGED
|
@@ -1499,6 +1499,13 @@ async function startListener() {
|
|
|
1499
1499
|
if (response.latestCliVersion) {
|
|
1500
1500
|
latestCliVersion = response.latestCliVersion;
|
|
1501
1501
|
}
|
|
1502
|
+
if (shouldReconcile) {
|
|
1503
|
+
try {
|
|
1504
|
+
const freshConfig = await getListenerConfig();
|
|
1505
|
+
config2.repos = freshConfig.repos;
|
|
1506
|
+
} catch {
|
|
1507
|
+
}
|
|
1508
|
+
}
|
|
1502
1509
|
if (response.activeRepos && response.activeRepos.length > 0) {
|
|
1503
1510
|
try {
|
|
1504
1511
|
const result = reconcileRepos(config2.repos, response.activeRepos, state, group.apiUrl, {
|