export async function precondition({readPkg, assert}) {
    const pkgjson = await readPkg();
    const expected = JSON.stringify(pkgjson.babel);
    const actual = JSON.stringify(format(pkgjson).babel);
    assert.notDeepStrictEqual(actual, expected);