@basemaps/cli 8.9.0 → 8.10.3
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.
- package/build/cli/index.d.ts +6 -4
- package/package.json +7 -7
package/build/cli/index.d.ts
CHANGED
|
@@ -50,7 +50,8 @@ export declare const Cli: Partial<import("cmd-ts/dist/cjs/argparser.js").Registe
|
|
|
50
50
|
cutline: URL | undefined;
|
|
51
51
|
cutlineBlend: number;
|
|
52
52
|
paths: URL[];
|
|
53
|
-
preset:
|
|
53
|
+
preset: "lzw" | "webp" | "webp_80" | "lerc_1mm" | "lerc_10mm" | "zstd_17";
|
|
54
|
+
presetBand: string | undefined;
|
|
54
55
|
tileMatrix: string;
|
|
55
56
|
baseZoomOffset: number | undefined;
|
|
56
57
|
requireStacCollection: boolean;
|
|
@@ -83,6 +84,7 @@ export declare const Cli: Partial<import("cmd-ts/dist/cjs/argparser.js").Registe
|
|
|
83
84
|
title: string | undefined;
|
|
84
85
|
target: URL;
|
|
85
86
|
mapSeries: string;
|
|
87
|
+
format: string;
|
|
86
88
|
latestOnly: boolean;
|
|
87
89
|
output: URL | undefined;
|
|
88
90
|
paths: URL[];
|
|
@@ -94,7 +96,6 @@ export declare const Cli: Partial<import("cmd-ts/dist/cjs/argparser.js").Registe
|
|
|
94
96
|
args: {
|
|
95
97
|
source: URL | undefined;
|
|
96
98
|
target: URL;
|
|
97
|
-
tileMatrix: string;
|
|
98
99
|
cutline: URL;
|
|
99
100
|
backup: URL;
|
|
100
101
|
bufferPixels: number;
|
|
@@ -196,7 +197,8 @@ export declare const Cli: Partial<import("cmd-ts/dist/cjs/argparser.js").Registe
|
|
|
196
197
|
cutline: URL | undefined;
|
|
197
198
|
cutlineBlend: number;
|
|
198
199
|
paths: URL[];
|
|
199
|
-
preset:
|
|
200
|
+
preset: "lzw" | "webp" | "webp_80" | "lerc_1mm" | "lerc_10mm" | "zstd_17";
|
|
201
|
+
presetBand: string | undefined;
|
|
200
202
|
tileMatrix: string;
|
|
201
203
|
baseZoomOffset: number | undefined;
|
|
202
204
|
requireStacCollection: boolean;
|
|
@@ -229,6 +231,7 @@ export declare const Cli: Partial<import("cmd-ts/dist/cjs/argparser.js").Registe
|
|
|
229
231
|
title: string | undefined;
|
|
230
232
|
target: URL;
|
|
231
233
|
mapSeries: string;
|
|
234
|
+
format: string;
|
|
232
235
|
latestOnly: boolean;
|
|
233
236
|
output: URL | undefined;
|
|
234
237
|
paths: URL[];
|
|
@@ -240,7 +243,6 @@ export declare const Cli: Partial<import("cmd-ts/dist/cjs/argparser.js").Registe
|
|
|
240
243
|
args: {
|
|
241
244
|
source: URL | undefined;
|
|
242
245
|
target: URL;
|
|
243
|
-
tileMatrix: string;
|
|
244
246
|
cutline: URL;
|
|
245
247
|
backup: URL;
|
|
246
248
|
bufferPixels: number;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@basemaps/cli",
|
|
3
|
-
"version": "8.
|
|
3
|
+
"version": "8.10.3",
|
|
4
4
|
"private": false,
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -21,7 +21,7 @@
|
|
|
21
21
|
"scripts": {
|
|
22
22
|
"build": "tsc",
|
|
23
23
|
"bundle": "../../scripts/bundle.mjs package.json",
|
|
24
|
-
"test": "node --test"
|
|
24
|
+
"test": "node --test \"build/**/*.test.js\""
|
|
25
25
|
},
|
|
26
26
|
"bundle": [
|
|
27
27
|
{
|
|
@@ -41,10 +41,10 @@
|
|
|
41
41
|
"node": ">=16.0.0"
|
|
42
42
|
},
|
|
43
43
|
"dependencies": {
|
|
44
|
-
"@basemaps/cli-config": "^8.
|
|
45
|
-
"@basemaps/cli-raster": "^8.
|
|
46
|
-
"@basemaps/cli-vector": "^8.
|
|
47
|
-
"@basemaps/shared": "^8.9.
|
|
44
|
+
"@basemaps/cli-config": "^8.10.2",
|
|
45
|
+
"@basemaps/cli-raster": "^8.11.1",
|
|
46
|
+
"@basemaps/cli-vector": "^8.10.2",
|
|
47
|
+
"@basemaps/shared": "^8.9.3",
|
|
48
48
|
"cmd-ts": "^0.13.0"
|
|
49
49
|
},
|
|
50
50
|
"publishConfig": {
|
|
@@ -53,5 +53,5 @@
|
|
|
53
53
|
"files": [
|
|
54
54
|
"build/"
|
|
55
55
|
],
|
|
56
|
-
"gitHead": "
|
|
56
|
+
"gitHead": "eb807c6d0f091b41e4d6d972b77c24f584cec230"
|
|
57
57
|
}
|