From b15e827580d6d3159c49521eb9b5d2b6d8ca2502 Mon Sep 17 00:00:00 2001 From: Alan Agius Date: Thu, 10 Aug 2023 08:24:38 +0000 Subject: [PATCH] refactor(@schematics/angular): remove deprecated appId option Remove deprecated unused options from schematics. BREAKING CHANGE: App-shell and Universal schematics deprecated unused `appId` option has been removed. --- packages/schematics/angular/app-shell/schema.json | 7 ------- packages/schematics/angular/universal/schema.json | 7 ------- 2 files changed, 14 deletions(-) diff --git a/packages/schematics/angular/app-shell/schema.json b/packages/schematics/angular/app-shell/schema.json index 3f688b564f..aada27d608 100644 --- a/packages/schematics/angular/app-shell/schema.json +++ b/packages/schematics/angular/app-shell/schema.json @@ -18,13 +18,6 @@ "description": "Route path used to produce the application shell.", "default": "shell" }, - "appId": { - "type": "string", - "format": "html-selector", - "description": "The application ID to use in withServerTransition().", - "default": "serverApp", - "x-deprecated": "This option is no longer used." - }, "main": { "type": "string", "description": "The name of the main entry-point file.", diff --git a/packages/schematics/angular/universal/schema.json b/packages/schematics/angular/universal/schema.json index 88e73027aa..1ad12fbfbf 100644 --- a/packages/schematics/angular/universal/schema.json +++ b/packages/schematics/angular/universal/schema.json @@ -13,13 +13,6 @@ "$source": "projectName" } }, - "appId": { - "type": "string", - "format": "html-selector", - "description": "The application identifier to use for transition.", - "default": "serverApp", - "x-deprecated": "This option is no longer used." - }, "main": { "type": "string", "format": "path",