From 956bb84d570190e8273e1f90f0c3cbbe645cf8a2 Mon Sep 17 00:00:00 2001 From: Matt Venables Date: Mon, 28 Aug 2023 12:34:26 -0400 Subject: [PATCH] Add 'neutral' to schema.json platform options The `platform` configuration option allows for `node`, `browser`, and `neutral`. This adds `neutral` as a valid option in the schema.json file, which was missing. --- schema.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/schema.json b/schema.json index 0402482e7..40f9a6e5d 100644 --- a/schema.json +++ b/schema.json @@ -326,7 +326,7 @@ "description": "Target platform", "type": "string", "default": "node", - "enum": ["node", "browser"] + "enum": ["node", "browser", "neutral"] }, "config": { "markdownDescription": "Disable config file with `false` or pass a custom config filename",