UNPKG

laravel-mix-glob

Version:

Laravel mix extension that add support for globs usage with an extensive concise api. For a more natural boosted productivity and dynamic. Configure once and forget about adding the files each time.

10 lines (9 loc) 430 B
import type { Options } from 'fast-glob'; export type TGlobPattern = string | string[]; export interface IGlobObj { pattern: TGlobPattern; options?: Omit<Options, 'objectMode'>; } export type TFastGlobSyncFunc = (source: string | string[], options?: Options) => string[]; export type TGlobFunc = (_fglbSync: TFastGlobSyncFunc) => string[]; export type TGlobResolveGlobParam = TGlobPattern | IGlobObj | TGlobFunc;