Skip to content

Commit

Permalink
fix(@angular-devkit/core): update workspace extension warning to use …
Browse files Browse the repository at this point in the history
…correct phrasing

(cherry picked from commit db17eac)
  • Loading branch information
AgentEnder authored and clydin committed Aug 11, 2022
1 parent ea91854 commit 365035c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/angular_devkit/core/src/workspace/json/reader.ts
Expand Up @@ -120,7 +120,7 @@ function parseWorkspace(workspaceNode: Node, context: ParserContext): WorkspaceD
projects = parseProjectsObject(nodes, context);
} else {
if (!context.unprefixedWorkspaceExtensions.has(name) && !/^[a-z]{1,3}-.*/.test(name)) {
context.warn(`Project extension with invalid name (${name}) found.`, name);
context.warn(`Workspace extension with invalid name (${name}) found.`, name);
}
if (extensions) {
extensions[name] = value;
Expand Down

0 comments on commit 365035c

Please sign in to comment.