@junobuild/cli-tools 0.0.15 → 0.0.16
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -1,11 +1,10 @@
|
|
|
1
|
-
/// <reference types="node" />
|
|
2
1
|
import type { SatelliteConfig } from '@junobuild/config';
|
|
3
2
|
export declare const gunzipFile: ({ source }: {
|
|
4
3
|
source: Buffer;
|
|
5
4
|
}) => Promise<Buffer>;
|
|
6
5
|
export declare const gzipFiles: ({ sourceFiles, gzip }: {
|
|
7
6
|
sourceFiles: string[];
|
|
8
|
-
} & Required<Pick<SatelliteConfig,
|
|
7
|
+
} & Required<Pick<SatelliteConfig, "gzip">>) => Promise<string[]>;
|
|
9
8
|
export declare const gzipFile: ({ source, destination }: {
|
|
10
9
|
source: string;
|
|
11
10
|
destination?: string;
|
|
@@ -5,4 +5,4 @@ export declare const fullPath: ({ file, sourceAbsolutePath }: {
|
|
|
5
5
|
}) => string;
|
|
6
6
|
export declare const listSourceFiles: ({ sourceAbsolutePath, ignore }: {
|
|
7
7
|
sourceAbsolutePath: string;
|
|
8
|
-
} & Required<Pick<SatelliteConfig,
|
|
8
|
+
} & Required<Pick<SatelliteConfig, "ignore">>) => string[];
|