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 3202410 commit 86150d9Copy full SHA for 86150d9
packages/angular_devkit/core/src/workspace/json/reader.ts
@@ -218,7 +218,10 @@ function parseProject(
218
break;
219
default:
220
if (!context.unprefixedProjectExtensions.has(name) && !/^[a-z]{1,3}-.*/.test(name)) {
221
- context.warn(`Project extension with invalid name (${name}) found.`, name);
+ context.warn(
222
+ `Project '${projectName}' contains extension with invalid name (${name}).`,
223
+ name,
224
+ );
225
}
226
if (extensions) {
227
extensions[name] = value;
0 commit comments