Skip to content

Commit

Permalink
Merge pull request #30 from sebbrousse/patch-1
Browse files Browse the repository at this point in the history
Ajout du typage des assets
  • Loading branch information
greglebonniec authored Nov 23, 2018
2 parents c3adeb1 + efe1f16 commit 411237a
Showing 1 changed file with 8 additions and 4 deletions.
12 changes: 8 additions & 4 deletions packages/schemas/BlockConfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -155,28 +155,32 @@
"type": "array",
"items": {
"title": "Js assets",
"description": "JS URL"
"description": "JS URL",
"type": "string"
}
},
"css": {
"type": "array",
"items": {
"title": "Css assets",
"description": "CSS URL"
"description": "CSS URL",
"type": "string"
}
},
"fonts": {
"type": "array",
"items": {
"title": "Fonts assets",
"description": "Font URL"
"description": "Font URL",
"type": "string"
}
},
"images": {
"type": "array",
"items": {
"title": "Images assets",
"description": "Image URL - this type of assets if deprecated - please do not use it"
"description": "Image URL - this type of assets if deprecated - please do not use it",
"type": "string"
}
}
}
Expand Down

0 comments on commit 411237a

Please sign in to comment.