refactor: deprecate universalProject in app-shell schematics as it's unused

This commit is contained in:
Alan Agius 2019-08-21 10:41:55 +02:00 committed by Keen Yee Liau
parent a05148e9f5
commit ec8fb3712f
2 changed files with 3 additions and 4 deletions

View File

@ -19,7 +19,6 @@ describe('App Shell Schematic', () => {
const defaultOptions: AppShellOptions = { const defaultOptions: AppShellOptions = {
name: 'foo', name: 'foo',
clientProject: 'bar', clientProject: 'bar',
universalProject: 'universal',
}; };
const workspaceOptions: WorkspaceOptions = { const workspaceOptions: WorkspaceOptions = {

View File

@ -12,7 +12,8 @@
}, },
"universalProject": { "universalProject": {
"type": "string", "type": "string",
"description": "The name of related Universal app." "description": "The name of related Universal app.",
"x-deprecated": "This option has no effect."
}, },
"route": { "route": {
"type": "string", "type": "string",
@ -98,7 +99,6 @@
} }
}, },
"required": [ "required": [
"clientProject", "clientProject"
"universalProject"
] ]
} }