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 64d1750 commit bd158e9Copy full SHA for bd158e9
packages/angular/cli/models/parser.ts
@@ -211,6 +211,13 @@ function _assignOption(
211
errors.push(error);
212
ignored.push(arg);
213
}
214
+
215
+ if (/^[a-z]+[A-Z]/.test(key)) {
216
+ warnings.push(
217
+ 'Support for camel case arguments has been deprecated and will be removed in a future major version.\n' +
218
+ `Use '--${strings.dasherize(key)}' instead of '--${key}'.`,
219
+ );
220
+ }
221
222
223
return consumedNextArg;
0 commit comments