From f8eaaf68bd1216a119404fe126b5ac0c5db78ace Mon Sep 17 00:00:00 2001 From: Peter B Smith Date: Thu, 4 Jan 2018 09:41:15 -0500 Subject: [PATCH] feat(schematics): alias for container, store, action --- modules/schematics/collection.json | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/modules/schematics/collection.json b/modules/schematics/collection.json index e44997e058..45ecbea086 100644 --- a/modules/schematics/collection.json +++ b/modules/schematics/collection.json @@ -1,6 +1,7 @@ { "schematics": { "action": { + "aliases": [ "a" ], "factory": "./src/action", "schema": "./src/action/schema.json", "description": "Add store actions" @@ -17,6 +18,7 @@ }, "container": { + "aliases": [ "co" ], "factory": "./src/container", "schema": "./src/container/schema.json", "description": "Add store container component" @@ -51,7 +53,7 @@ "factory": "./src/feature", "schema": "./src/feature/schema.json", "description": "Add feature state" - }, + }, "guard": { "aliases": [ "g" ], @@ -85,6 +87,7 @@ }, "store": { + "aliases": [ "st" ], "factory": "./src/store", "schema": "./src/store/schema.json", "description": "Adds initial setup for state managment"