@basemaps/cli 8.7.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,12 +84,25 @@ 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[];
89
91
  verbose: boolean;
90
92
  extraVerbose: boolean;
91
93
  };
94
+ } | {
95
+ command: "charts";
96
+ args: {
97
+ source: URL | undefined;
98
+ target: URL;
99
+ cutline: URL;
100
+ backup: URL;
101
+ bufferPixels: number;
102
+ paths: URL[];
103
+ verbose: boolean;
104
+ extraVerbose: boolean;
105
+ };
92
106
  };
93
107
  } | {
94
108
  command: "vector";
@@ -183,7 +197,8 @@ export declare const Cli: Partial<import("cmd-ts/dist/cjs/argparser.js").Registe
183
197
  cutline: URL | undefined;
184
198
  cutlineBlend: number;
185
199
  paths: URL[];
186
- preset: string;
200
+ preset: "lzw" | "webp" | "webp_80" | "lerc_1mm" | "lerc_10mm" | "zstd_17";
201
+ presetBand: string | undefined;
187
202
  tileMatrix: string;
188
203
  baseZoomOffset: number | undefined;
189
204
  requireStacCollection: boolean;
@@ -216,12 +231,25 @@ export declare const Cli: Partial<import("cmd-ts/dist/cjs/argparser.js").Registe
216
231
  title: string | undefined;
217
232
  target: URL;
218
233
  mapSeries: string;
234
+ format: string;
219
235
  latestOnly: boolean;
220
236
  output: URL | undefined;
221
237
  paths: URL[];
222
238
  verbose: boolean;
223
239
  extraVerbose: boolean;
224
240
  };
241
+ } | {
242
+ command: "charts";
243
+ args: {
244
+ source: URL | undefined;
245
+ target: URL;
246
+ cutline: URL;
247
+ backup: URL;
248
+ bufferPixels: number;
249
+ paths: URL[];
250
+ verbose: boolean;
251
+ extraVerbose: boolean;
252
+ };
225
253
  };
226
254
  } | {
227
255
  command: "vector";
@@ -294,6 +322,9 @@ export declare const Cli: Partial<import("cmd-ts/dist/cjs/argparser.js").Registe
294
322
  } | {
295
323
  command: "topo";
296
324
  value: Promise<void>;
325
+ } | {
326
+ command: "charts";
327
+ value: Promise<void>;
297
328
  };
298
329
  } | {
299
330
  command: "vector";
@@ -340,6 +371,9 @@ export declare const Cli: Partial<import("cmd-ts/dist/cjs/argparser.js").Registe
340
371
  } | {
341
372
  command: "topo";
342
373
  value: Promise<void>;
374
+ } | {
375
+ command: "charts";
376
+ value: Promise<void>;
343
377
  };
344
378
  } | {
345
379
  command: "vector";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@basemaps/cli",
3
- "version": "8.7.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.6.0",
45
- "@basemaps/cli-raster": "^8.6.0",
46
- "@basemaps/cli-vector": "^8.7.0",
47
- "@basemaps/shared": "^8.6.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": "3e06a16cf523dbbe0e7935afaae909d022425819"
56
+ "gitHead": "5a1984ab0e9b3939aab0db451d2f5e7aee1919af"
57
57
  }