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.

18 lines (17 loc) 761 B
export * from "../Glob/Helpers"; export { resolveExtension, EXTENSION_FILE_MAPPING, } from "../MixGlob/OutManager/extensionMapping"; export { MIX_DEFAULT_FUNCTIONS_SETTINGS, SRC_OUT_FUNCTIONS, } from "../MixFunctionSettings"; /** * Remove specifier from a path file * @param srcFile path to remove the specifier from * @param specifier * @returns resolved path */ export declare function removeSpecifier(srcFile: string, specifier: string): string; /** * replace src file extension with another one * @param srcFile path to replace extension in * @param newExtension extension to replace with * @returns resolved file with replaced extension */ export declare function replaceExtension(srcFile: string, newExtension: string): string;