Skip to content

Commit

Permalink
fix: add neutral value to platform options in schema.json (#982)
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
venables authored Sep 17, 2024
1 parent 28b9ce9 commit a03db4c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down

0 comments on commit a03db4c

Please sign in to comment.