Skip to content

Commit 365035c

Browse files
AgentEnderclydin
authored andcommitted
fix(@angular-devkit/core): update workspace extension warning to use correct phrasing
(cherry picked from commit db17eac)
1 parent ea91854 commit 365035c

File tree

1 file changed

+1
-1
lines changed
  • packages/angular_devkit/core/src/workspace/json

1 file changed

+1
-1
lines changed

packages/angular_devkit/core/src/workspace/json/reader.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@ function parseWorkspace(workspaceNode: Node, context: ParserContext): WorkspaceD
120120
projects = parseProjectsObject(nodes, context);
121121
} else {
122122
if (!context.unprefixedWorkspaceExtensions.has(name) && !/^[a-z]{1,3}-.*/.test(name)) {
123-
context.warn(`Project extension with invalid name (${name}) found.`, name);
123+
context.warn(`Workspace extension with invalid name (${name}) found.`, name);
124124
}
125125
if (extensions) {
126126
extensions[name] = value;

0 commit comments

Comments
 (0)