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.
2 parents 4d645cb + 3999e57 commit 6f2857cCopy full SHA for 6f2857c
packages/cli/src/index.ts
@@ -21,7 +21,7 @@ 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;
+const isInteractive = (): boolean => (TERMINAL_INFO.tty && !TERMINAL_INFO.ci) && (!process.argv.includes('--non-interactive'));
25
26
async function main() {
27
console.clear();
0 commit comments