@basemaps/cli 8.10.4 → 8.10.7

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.
@@ -30,6 +30,15 @@ export declare const Cli: Partial<import("cmd-ts/dist/cjs/argparser.js").Registe
30
30
  verbose: boolean;
31
31
  extraVerbose: boolean;
32
32
  };
33
+ } | {
34
+ command: "diff";
35
+ args: {
36
+ before: URL;
37
+ after: URL;
38
+ output: URL;
39
+ verbose: boolean;
40
+ extraVerbose: boolean;
41
+ };
33
42
  } | {
34
43
  command: "import";
35
44
  args: {
@@ -177,6 +186,15 @@ export declare const Cli: Partial<import("cmd-ts/dist/cjs/argparser.js").Registe
177
186
  verbose: boolean;
178
187
  extraVerbose: boolean;
179
188
  };
189
+ } | {
190
+ command: "diff";
191
+ args: {
192
+ before: URL;
193
+ after: URL;
194
+ output: URL;
195
+ verbose: boolean;
196
+ extraVerbose: boolean;
197
+ };
180
198
  } | {
181
199
  command: "import";
182
200
  args: {
@@ -304,6 +322,9 @@ export declare const Cli: Partial<import("cmd-ts/dist/cjs/argparser.js").Registe
304
322
  } | {
305
323
  command: "create-config";
306
324
  value: Promise<void>;
325
+ } | {
326
+ command: "diff";
327
+ value: Promise<void>;
307
328
  } | {
308
329
  command: "import";
309
330
  value: Promise<void>;
@@ -353,6 +374,9 @@ export declare const Cli: Partial<import("cmd-ts/dist/cjs/argparser.js").Registe
353
374
  } | {
354
375
  command: "create-config";
355
376
  value: Promise<void>;
377
+ } | {
378
+ command: "diff";
379
+ value: Promise<void>;
356
380
  } | {
357
381
  command: "import";
358
382
  value: Promise<void>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@basemaps/cli",
3
- "version": "8.10.4",
3
+ "version": "8.10.7",
4
4
  "private": false,
5
5
  "repository": {
6
6
  "type": "git",
@@ -41,10 +41,10 @@
41
41
  "node": ">=16.0.0"
42
42
  },
43
43
  "dependencies": {
44
- "@basemaps/cli-config": "^8.10.2",
45
- "@basemaps/cli-raster": "^8.11.2",
46
- "@basemaps/cli-vector": "^8.10.3",
47
- "@basemaps/shared": "^8.9.3",
44
+ "@basemaps/cli-config": "^8.11.2",
45
+ "@basemaps/cli-raster": "^8.11.5",
46
+ "@basemaps/cli-vector": "^8.10.6",
47
+ "@basemaps/shared": "^8.9.6",
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": "f5ed12fcaad1b7df6011a4b39dafef2395bf0f6a"
56
+ "gitHead": "8e7b083ad11f25ed8eb61a7d2382efe48d208bb5"
57
57
  }