We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6f2857c commit 34e520cCopy full SHA for 34e520c
packages/cli/src/index.ts
@@ -21,7 +21,10 @@ const IONIC_MIGRATION_GUIDE_URL =
21
"https://www.ionicframework.com/docs/angular/build-options#migrating-from-modules-to-standalone";
22
const IONIC_REPOSITORY_ISSUES_URL =
23
"https://github.com/ionic-team/ionic-angular-standalone-codemods/issues";
24
-const isInteractive = (): boolean => (TERMINAL_INFO.tty && !TERMINAL_INFO.ci) && (!process.argv.includes('--non-interactive'));
+const isInteractive = (): boolean =>
25
+ TERMINAL_INFO.tty &&
26
+ !TERMINAL_INFO.ci &&
27
+ !process.argv.includes("--non-interactive");
28
29
async function main() {
30
console.clear();
0 commit comments