@arcgis/components-build-utils 4.34.0-next.58 → 4.34.0-next.59

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.
@@ -0,0 +1,2 @@
1
+ import { Command } from '@commander-js/extra-typings';
2
+ export declare const registerCommand: (command: Command) => undefined;
@@ -0,0 +1,2 @@
1
+ import { Command } from '@commander-js/extra-typings';
2
+ export declare const registerCommand: (command: Command) => undefined;
@@ -1,2 +1,4 @@
1
+ import { ExecSyncOptionsWithStringEncoding } from 'node:child_process';
1
2
  export declare function error(...messages: unknown[]): void;
2
- export declare function sh(command: string, cwd?: string): string;
3
+ export declare function sh(command: string, options?: Partial<ExecSyncOptionsWithStringEncoding>): string;
4
+ export declare function findRepositoryRoot(): string;
@@ -1,2 +1,4 @@
1
+ import { ExecSyncOptionsWithStringEncoding } from 'node:child_process';
1
2
  export declare function error(...messages: unknown[]): void;
2
- export declare function sh(command: string, cwd?: string): string;
3
+ export declare function sh(command: string, options?: Partial<ExecSyncOptionsWithStringEncoding>): string;
4
+ export declare function findRepositoryRoot(): string;
@@ -9,6 +9,7 @@ export type MiniPackageJson = {
9
9
  "version": string;
10
10
  "private"?: boolean;
11
11
  "type"?: "commonjs" | "module";
12
+ "workspaces"?: string[];
12
13
  "publishConfig"?: {
13
14
  access?: string;
14
15
  registry?: string;
@@ -9,6 +9,7 @@ export type MiniPackageJson = {
9
9
  "version": string;
10
10
  "private"?: boolean;
11
11
  "type"?: "commonjs" | "module";
12
+ "workspaces"?: string[];
12
13
  "publishConfig"?: {
13
14
  access?: string;
14
15
  registry?: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@arcgis/components-build-utils",
3
- "version": "4.34.0-next.58",
3
+ "version": "4.34.0-next.59",
4
4
  "description": "Collection of common internal build-time patterns and utilities for ArcGIS Maps SDK for JavaScript components.",
5
5
  "homepage": "https://developers.arcgis.com/javascript/latest/",
6
6
  "type": "module",
@@ -26,6 +26,7 @@
26
26
  "chalk": "^5.4.1",
27
27
  "commander": "^14.0.0",
28
28
  "glob": "^11.0.3",
29
+ "semver": "^7.7.2",
29
30
  "split2": "^4.2.0",
30
31
  "tslib": "^2.8.1",
31
32
  "vite": "^7.0.0",