builder-util
Advanced tools
Comparing version 26.0.0-alpha.0 to 26.0.0-alpha.1
@@ -12,3 +12,8 @@ import { Stats } from "fs"; | ||
export type FileTransformer = (file: string) => Promise<null | string | Buffer | CopyFileTransformer> | null | string | Buffer | CopyFileTransformer; | ||
export type Filter = (file: string, stat: Stats) => boolean; | ||
export interface FilterStats extends Stats { | ||
relativeNodeModulesPath?: string; | ||
relativeLink?: string; | ||
linkRelativeToFile?: string; | ||
} | ||
export type Filter = (file: string, stat: FilterStats) => boolean; | ||
export declare function unlinkIfExists(file: string): Promise<void>; | ||
@@ -15,0 +20,0 @@ export declare function statOrNull(file: string): Promise<Stats | null>; |
{ | ||
"name": "builder-util", | ||
"version": "26.0.0-alpha.0", | ||
"version": "26.0.0-alpha.1", | ||
"main": "out/util.js", | ||
@@ -5,0 +5,0 @@ "author": "Vladimir Krivosheev", |
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
131064
1335