From 78163482b172dddac703bea44a98f72dd43b4ca4 Mon Sep 17 00:00:00 2001 From: William Fischer Date: Mon, 3 Jun 2024 01:55:25 -0700 Subject: [PATCH] fix: require at least one product to be defined in manifest.schema.json (#82) --- assets/manifest.schema.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/assets/manifest.schema.json b/assets/manifest.schema.json index b29934d..8bfdeae 100644 --- a/assets/manifest.schema.json +++ b/assets/manifest.schema.json @@ -99,7 +99,8 @@ "uniqueItems": true, "items": { "type": "string" - } + }, + "minItems": 1 }, "keywords": { "type": "array",