From d9a13469a039bfca94939ecac6201973990b7b96 Mon Sep 17 00:00:00 2001 From: Alan Agius Date: Mon, 15 Aug 2022 14:00:45 +0000 Subject: [PATCH] fix(@nguniversal/express-engine): remove default value of `appDir` option This option is no longer used by the universal schematic. Fixes #2779 --- modules/express-engine/schematics/install/schema.json | 2 +- modules/express-engine/schematics/install/schema.ts | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/modules/express-engine/schematics/install/schema.json b/modules/express-engine/schematics/install/schema.json index b503f033e..4ec114260 100644 --- a/modules/express-engine/schematics/install/schema.json +++ b/modules/express-engine/schematics/install/schema.json @@ -37,7 +37,7 @@ "type": "string", "format": "path", "description": "The name of the application directory.", - "default": "app" + "x-deprecated": "This option has no effect." }, "rootModuleFileName": { "type": "string", diff --git a/modules/express-engine/schematics/install/schema.ts b/modules/express-engine/schematics/install/schema.ts index 58fcd4819..e6b8bd5c2 100644 --- a/modules/express-engine/schematics/install/schema.ts +++ b/modules/express-engine/schematics/install/schema.ts @@ -29,6 +29,7 @@ export interface Schema { serverPort?: number; /** * The name of the application directory. + * @deprecated This option has no longer any effect */ appDir?: string; /**