UNPKG

@release-notes/schema

Version:

JSON Schema definitions of the release-notes specification - an easy to use, human readable and machine processable schema for release notes.

18 lines (15 loc) 482 B
'use strict'; const Modification = require('./definitions/modification.json'); const ModificationList = require('./definitions/modification-list.json'); const Release = require('./definitions/release.json'); const ReleaseNotes = require('./definitions/release-notes.json'); const Tag = require('./definitions/tag.json'); const TagList = require('./definitions/tag-list.json'); module.exports = { Modification, ModificationList, Release, ReleaseNotes, Tag, TagList, };