Skip to content

Commit

Permalink
fix: add missing element to schema (#19) (#20)
Browse files Browse the repository at this point in the history
This contained the preContent section, but the postContent section was missing.
  • Loading branch information
gep13 authored Dec 2, 2021
1 parent 1bfc3c2 commit b2e6b57
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions bin/config-manager.js
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,16 @@ function validateConfig(config) {
format: { type: 'array', items: { type: 'object' } }
}
}
},
postContent: {
type: 'array',
items: {
type: 'object',
properties: {
raw: { type: 'string' },
format: { type: 'array', items: { type: 'object' } }
}
}
}
}
}
Expand Down

0 comments on commit b2e6b57

Please sign in to comment.