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