Add a setting to disable the version update nag message (#5449)

This commit is contained in:
Billy Biggs 2025-08-03 11:20:55 -07:00 committed by GitHub
parent 820169ba2e
commit bedcbb9feb
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 15 additions and 0 deletions

View file

@ -22,6 +22,10 @@ export function handleAutoUpdate(
return;
}
if (settings.merged.disableUpdateNag) {
return;
}
const installationInfo = getInstallationInfo(
projectRoot,
settings.merged.disableAutoUpdate ?? false,