You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: packages/@ionic/cli/src/commands/serve.ts
+4Lines changed: 4 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -100,6 +100,10 @@ Try the ${input('--lab')} option to see multiple platforms at once.`;
100
100
options['lab']=true;
101
101
}
102
102
103
+
if(options['lab']){
104
+
this.env.log.warn(`The ${input('--lab')} option has been deprecated and will be removed in an upcoming major release of the Ionic CLI. Please visit ${strong('https://ionicframework.com/docs/developing/previewing')} for alternatives to Ionic Lab.`);
105
+
}
106
+
103
107
if(options['nolivereload']){
104
108
this.env.log.warn(`The ${input('--nolivereload')} option has been deprecated. Please use ${input('--no-livereload')}.`);
0 commit comments