From 1343a33b6f17fea29598909aed3ee946cd202a1d Mon Sep 17 00:00:00 2001 From: longwei Date: Tue, 7 Jun 2022 20:26:21 +0800 Subject: [PATCH] fix apiversion and js for schema Signed-off-by: longwei Change-Id: I5e52be2d68ffe59371cb289b65b1d831bd712216 --- configcheck/configSchema_rich.json | 5 ++--- modulecheck/module.json | 3 +-- 2 files changed, 3 insertions(+), 5 deletions(-) diff --git a/configcheck/configSchema_rich.json b/configcheck/configSchema_rich.json index ae295ecc..01ff8a3a 100755 --- a/configcheck/configSchema_rich.json +++ b/configcheck/configSchema_rich.json @@ -2867,7 +2867,7 @@ }, "properties": { "apiVersion": { - "description": "Indicates the supported apiVersion range. The value can be 3, 4, or 5. This label is optional.", + "description": "Indicates the supported apiVersion range. This label is optional.", "type": "object", "propertyNames": { "enum": [ @@ -3242,11 +3242,10 @@ "description": "Indicates the syntax type of JS Component.Default is hml", "type": "string", "enum": [ - "js", "ets", "hml" ], - "default": "js" + "default": "hml" }, "testRunner": { "description": "This tag is used for configure the test properties.", diff --git a/modulecheck/module.json b/modulecheck/module.json index 519f7eb7..02cfe382 100644 --- a/modulecheck/module.json +++ b/modulecheck/module.json @@ -158,11 +158,10 @@ "description": "Indicates the syntax type of JS Component.Default is hml", "type": "string", "enum": [ - "js", "ets", "hml" ], - "default": "js" + "default": "hml" }, "pages": { "description": "Used to list the information of each page in JS Component.", -- Gitee