From f4520a20f7626e7d5784f3d0f02ca79458623391 Mon Sep 17 00:00:00 2001 From: Brandon Roberts Date: Sun, 6 May 2018 14:50:29 -0500 Subject: [PATCH] fix(Schematics): Remove aliases for state and stateInterface options BREAKING CHANGE: Aliases for `state` and `stateInterface` were removed due to conflicts with component aliases without reasonable alternatives. --- modules/schematics/src/container/schema.json | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/modules/schematics/src/container/schema.json b/modules/schematics/src/container/schema.json index b771f1fa86..e45a296b81 100644 --- a/modules/schematics/src/container/schema.json +++ b/modules/schematics/src/container/schema.json @@ -91,14 +91,12 @@ }, "state": { "type": "string", - "description": "Specifies the path to the state exports.", - "alias": "s" + "description": "Specifies the path to the state exports." }, "stateInterface": { "type": "string", "default": "State", - "description": "Specifies the interface for the state.", - "alias": "si" + "description": "Specifies the interface for the state." } }, "required": []