From e90649634ef00b26535dcbb044e29d4578f39b69 Mon Sep 17 00:00:00 2001 From: lanhaoyu Date: Wed, 14 May 2025 15:13:23 +0800 Subject: [PATCH] add resizeable Signed-off-by: lanhaoyu --- modulecheck/module.json | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/modulecheck/module.json b/modulecheck/module.json index 7c277dbc..a31a229d 100644 --- a/modulecheck/module.json +++ b/modulecheck/module.json @@ -1523,7 +1523,8 @@ "type": "object", "propertyNames": { "enum": [ - "preloads" + "preloads", + "resizeable" ] }, "properties": { @@ -1546,6 +1547,11 @@ } } } + }, + "resizeable": { + "description": "Indicates whether atomicService can be resize.The \"true\" indicates the atomicService can be resize.The \"false\" indicates the atomicService cannot be resize.This tag is optional. The default value is false.", + "type": "boolean", + "default": false } } }, -- Gitee