humpty
Version:
Makes sure your changelogs mention your breaking changes
31 lines (29 loc) • 584 B
JavaScript
import { PROP_TYPE_CHANGED, PROP_REMOVED } from "../../../src/changeTypes";
export default {
unmentionedChanges: [
{
isDefaultExport: true,
apiChanges: [
{
changeType: PROP_TYPE_CHANGED,
propName: "age",
oldType: "string",
newType: "number"
}
]
},
{
isDefaultExport: false,
name: "Dog",
apiChanges: [
{
changeType: PROP_REMOVED,
propName: "age"
}
]
}
],
unmentionedChangeCount: 2,
oldApi: "aaaa1111",
newApi: "ffff9999"
};