UNPKG

@baseplate-dev/sync

Version:

Library for syncing Baseplate descriptions

15 lines 590 B
import type { PostWriteCommand } from './types.js'; /** * Filter post-write commands * * @param commands - The commands to filter * @param options - Filter options * @param options.modifiedRelativePaths - The modified relative paths * @param options.rerunCommands - The rerun commands * @returns The filtered commands */ export declare function filterPostWriteCommands(commands: PostWriteCommand[], { modifiedRelativePaths, rerunCommands, }: { modifiedRelativePaths: Set<string>; rerunCommands: string[]; }): PostWriteCommand[]; //# sourceMappingURL=filter-commands.d.ts.map