scope rotation

This commit is contained in:
Boof2015
2026-07-10 21:08:29 -04:00
parent 4a9b325532
commit 7a1a799266
20 changed files with 695 additions and 191 deletions
+6 -1
View File
@@ -351,7 +351,12 @@ export class FileBackedProfileLibrary {
throw new Error(`Unsupported profile format in ${basename(filePath)}.`)
}
if (candidate.version !== 1 && candidate.version !== 2 && candidate.version !== PROFILE_FILE_VERSION) {
if (
candidate.version !== 1
&& candidate.version !== 2
&& candidate.version !== 3
&& candidate.version !== PROFILE_FILE_VERSION
) {
throw new Error(`Unsupported profile version in ${basename(filePath)}.`)
}