diff --git a/www/docs/static/schema-pro.json b/www/docs/static/schema-pro.json index ca0aab326..6c7eed5d1 100644 --- a/www/docs/static/schema-pro.json +++ b/www/docs/static/schema-pro.json @@ -384,6 +384,9 @@ "$ref": "#/$defs/TemplatedExtraFile" }, "type": "array" + }, + "if": { + "type": "string" } }, "additionalProperties": false, @@ -486,7 +489,14 @@ "type": "string" }, "no_unique_dist_dir": { - "type": "string" + "oneOf": [ + { + "type": "string" + }, + { + "type": "boolean" + } + ] }, "no_main_check": { "type": "boolean" diff --git a/www/docs/static/schema.json b/www/docs/static/schema.json index e6617c2e4..3ed3706b1 100644 --- a/www/docs/static/schema.json +++ b/www/docs/static/schema.json @@ -409,7 +409,14 @@ "type": "string" }, "no_unique_dist_dir": { - "type": "string" + "oneOf": [ + { + "type": "string" + }, + { + "type": "boolean" + } + ] }, "no_main_check": { "type": "boolean"