Go to repository

Interface TaskCopyOptions

This type represents the options that you can pass to the copy task.

interface TaskCopyOptions {
    cwd?: string;
    dest: string;
    rename?: string;
    src: string;
}

Properties

Properties

Optional
cwd?: string

The current directory from where to copy.

dest: string

The destination folder on which to copy the files to.

Optional
rename?: string

A rename patter to apply to the files.

src: string

The source file, or folder or glob pattern to copy.