@basemaps/cli 8.9.0 → 8.10.2

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.
@@ -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: string;
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: string;
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.9.0",
3
+ "version": "8.10.2",
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.9.0",
45
- "@basemaps/cli-raster": "^8.9.0",
46
- "@basemaps/cli-vector": "^8.9.0",
47
- "@basemaps/shared": "^8.9.0",
44
+ "@basemaps/cli-config": "^8.10.1",
45
+ "@basemaps/cli-raster": "^8.11.0",
46
+ "@basemaps/cli-vector": "^8.10.1",
47
+ "@basemaps/shared": "^8.9.2",
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": "55cd25b9f2c402fde88fcef9c43cec3f8eca9e60"
56
+ "gitHead": "5a1984ab0e9b3939aab0db451d2f5e7aee1919af"
57
57
  }