kiln: bump poke no longer takes args

This commit is contained in:
tomholford 2022-11-03 22:34:39 -07:00
parent bb97306432
commit 965db2fff3

View File

@ -63,14 +63,11 @@ export function kilnRevive(
};
}
export function kilnBump(force = false, except = [] as string[]) {
export function kilnBump() {
return {
app: 'hood',
mark: 'kiln-bump',
json: {
force,
except
}
json: {}
};
}