We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1d08fcd commit a1587c5Copy full SHA for a1587c5
packages/angular_devkit/core/src/workspace/workspace-schema.json
@@ -19,7 +19,7 @@
19
},
20
"defaultProject": {
21
"type": "string",
22
- "description": "The default project."
+ "description": "(DEPRECATED) The default project."
23
24
"cli": {
25
"$ref": "#/definitions/tool",
packages/angular_devkit/core/src/workspace/workspace-schema.ts
@@ -20,6 +20,7 @@ export interface WorkspaceSchema {
*/
newProjectRoot?: string;
/**
+ * @deprecated From 7.0.0
* The default project.
26
defaultProject?: string;
packages/angular_devkit/core/src/workspace/workspace.ts
@@ -140,6 +140,9 @@ export class Workspace {
140
return workspaceProjectClone;
141
}
142
143
+ /**
144
145
+ */
146
getDefaultProjectName(): string | null {
147
this._assertLoaded();
148
0 commit comments