We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 28b2cd1 commit ad69281Copy full SHA for ad69281
packages/angular_devkit/core/src/workspace/json/reader.ts
@@ -222,7 +222,10 @@ function parseProject(
222
break;
223
default:
224
if (!context.unprefixedProjectExtensions.has(name) && !/^[a-z]{1,3}-.*/.test(name)) {
225
- context.warn(`Project extension with invalid name (${name}) found.`, name);
+ context.warn(
226
+ `Project '${projectName}' contains extension with invalid name (${name}).`,
227
+ name,
228
+ );
229
}
230
if (extensions) {
231
extensions[name] = value;
0 commit comments