Skip to content

Commit 433b6b4

Browse files
committed
docs: remove redundant default empty strings values
(cherry picked from commit 3d928c0)
1 parent d0407b3 commit 433b6b4

File tree

5 files changed

+4
-12
lines changed

5 files changed

+4
-12
lines changed

packages/angular_devkit/build_angular/src/builders/browser/schema.json

+1-2
Original file line numberDiff line numberDiff line change
@@ -197,8 +197,7 @@
197197
},
198198
"resourcesOutputPath": {
199199
"type": "string",
200-
"description": "The path where style resources will be placed, relative to outputPath.",
201-
"default": ""
200+
"description": "The path where style resources will be placed, relative to outputPath."
202201
},
203202
"aot": {
204203
"type": "boolean",

packages/angular_devkit/build_angular/src/builders/server/schema.json

+1-2
Original file line numberDiff line numberDiff line change
@@ -74,8 +74,7 @@
7474
},
7575
"resourcesOutputPath": {
7676
"type": "string",
77-
"description": "The path where style resources will be placed, relative to outputPath.",
78-
"default": ""
77+
"description": "The path where style resources will be placed, relative to outputPath."
7978
},
8079
"sourceMap": {
8180
"description": "Output source maps for scripts and styles. For more information, see https://angular.io/guide/workspace-config#source-map-configuration.",

packages/schematics/angular/class/schema.json

+1-2
Original file line numberDiff line numberDiff line change
@@ -36,8 +36,7 @@
3636
},
3737
"type": {
3838
"type": "string",
39-
"description": "Adds a developer-defined type to the filename, in the format \"name.type.ts\".",
40-
"default": ""
39+
"description": "Adds a developer-defined type to the filename, in the format \"name.type.ts\"."
4140
}
4241
},
4342
"required": ["name"]

packages/schematics/angular/interface/schema.json

-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,6 @@
3030
},
3131
"prefix": {
3232
"type": "string",
33-
"default": "",
3433
"description": "A prefix to apply to generated selectors."
3534
},
3635
"type": {

tests/angular_devkit/core/json/schema/serializers/schema_benchmark.json

+1-5
Original file line numberDiff line numberDiff line change
@@ -55,17 +55,14 @@
5555
"properties": {
5656
"glob": {
5757
"type": "string",
58-
"default": "",
5958
"description": "The pattern to match."
6059
},
6160
"input": {
6261
"type": "string",
63-
"default": "",
6462
"description": "The dir to search within."
6563
},
6664
"output": {
6765
"type": "string",
68-
"default": "",
6966
"description": "The output path (relative to the outDir)."
7067
}
7168
},
@@ -395,8 +392,7 @@
395392
"properties": {
396393
"prefix": {
397394
"description": "Prefix to apply to interface names. (i.e. I)",
398-
"type": "string",
399-
"default": ""
395+
"type": "string"
400396
}
401397
}
402398
},

0 commit comments

Comments
 (0)