From 426c1da8a0ffdf79ffe7c9a995b72cbe52ff9ab5 Mon Sep 17 00:00:00 2001 From: Alan Agius Date: Mon, 19 Aug 2019 21:20:23 +0200 Subject: [PATCH] feat(@schematics/angular): hide universal schematic The universal schematic by itself doesn't get you a working server application. BREAKING CHANGE: universal schematic is now hidden and cannot be used with the `ng generate` command. Users who want a working universal application should use `ng add @nguniversal/express-engine` or `ng add @nguniversal/hapi-engine` Closes: #15166 --- packages/schematics/angular/collection.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/packages/schematics/angular/collection.json b/packages/schematics/angular/collection.json index 75f507d8346d..76778ddc947c 100644 --- a/packages/schematics/angular/collection.json +++ b/packages/schematics/angular/collection.json @@ -87,7 +87,8 @@ "universal": { "factory": "./universal", "description": "Create an Angular universal app.", - "schema": "./universal/schema.json" + "schema": "./universal/schema.json", + "hidden": true }, "appShell": { "aliases": [ "app-shell" ],