Skip to content

Commit 630fdd4

Browse files
authored
feat(): support v8 (#47)
1 parent 166d335 commit 630fdd4

File tree

1 file changed

+2
-1
lines changed
  • packages/cli/src/angular/migrations/standalone

1 file changed

+2
-1
lines changed

packages/cli/src/angular/migrations/standalone/index.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,8 @@ async function checkInstalledIonicVersion(dir: string) {
116116
return false;
117117
}
118118

119-
if (minorVersion < 5) {
119+
// only need to add if is major v7 then compare with minor 5.
120+
if (majorVersion == 7 && minorVersion < 5) {
120121
logVersionError();
121122
return false;
122123
}

0 commit comments

Comments
 (0)