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