Skip to content
This repository was archived by the owner on Nov 22, 2024. It is now read-only.

Commit d9a1346

Browse files
committed
fix(@nguniversal/express-engine): remove default value of appDir option
This option is no longer used by the universal schematic. Fixes #2779
1 parent 6dcce85 commit d9a1346

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

modules/express-engine/schematics/install/schema.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@
3737
"type": "string",
3838
"format": "path",
3939
"description": "The name of the application directory.",
40-
"default": "app"
40+
"x-deprecated": "This option has no effect."
4141
},
4242
"rootModuleFileName": {
4343
"type": "string",

modules/express-engine/schematics/install/schema.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@ export interface Schema {
2929
serverPort?: number;
3030
/**
3131
* The name of the application directory.
32+
* @deprecated This option has no longer any effect
3233
*/
3334
appDir?: string;
3435
/**

0 commit comments

Comments
 (0)