From a03db4c1abbc030fd855b8ee4efe7d8a1ad6f68b Mon Sep 17 00:00:00 2001 From: Matt Venables Date: Tue, 17 Sep 2024 01:45:08 -0400 Subject: [PATCH] fix: add `neutral` value to platform options in `schema.json` (#982) 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 a033bf76..b0682cfd 100644 --- a/schema.json +++ b/schema.json @@ -325,7 +325,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",