Interface LiftOptions

interface LiftOptions {
    bin?: string;
    defaults?: boolean;
    mode?:
        | "confirm"
        | "fix"
        | "dry"
        | "audit";
    multitask?: boolean;
    purge?: boolean | LiftPurgeOptions;
}

Properties

bin?: string

Name of kpo's executable

defaults?: boolean

Lift default tasks and subtasks by their own

mode?:
    | "confirm"
    | "fix"
    | "dry"
    | "audit"

Lift mode of operation:

  • 'confirm': prints the changes and waits for confirmation before a write.
  • 'fix': produces an immediate write.
  • 'dry': prints the expected changes.
  • 'audit': prints the expected changes and fails if there are pending changes.
multitask?: boolean

Whether kpo's executable allows running multiple tasks.

purge?: boolean | LiftPurgeOptions

Remove all non lifted scripts