Skip to content

Commit

Permalink
fix: allow array of strings for library.root
Browse files Browse the repository at this point in the history
  • Loading branch information
byzyk committed May 3, 2018
1 parent 00f77fd commit d50f00d
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion schemas/WebpackOptions.json
Expand Up @@ -492,7 +492,14 @@
"properties": {
"root": {
"description": "Name of the property exposed globally by a UMD library",
"type": "string"
"anyOf": [
{
"type": "string"
},
{
"$ref": "#/definitions/common.arrayOfStringValues"
}
]
},
"amd": {
"description": "Name of the exposed AMD library in the UMD",
Expand Down

0 comments on commit d50f00d

Please sign in to comment.