@arcgis/components-build-utils 5.2.0-next.52 → 5.2.0-next.53

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/dist/index.d.ts CHANGED
@@ -1,15 +1,24 @@
1
- import { sh as shAliased, sp as spAliased, asyncSh as asyncShAliased, findPath as findPathAliased, asyncFindPath as asyncFindPathAliased } from '@arcgis/node-toolkit/file';
1
+ import { findPath as findPathAliased, asyncFindPath as asyncFindPathAliased } from '@arcgis/node-toolkit/file';
2
+ import { sh as shAliased, sp as spAliased, asyncSh as asyncShAliased } from '@arcgis/node-toolkit/shell';
2
3
  import { gitIgnoreFileToGlobs as gitIgnoreFileToGlobsAliased } from '@arcgis/node-toolkit/glob';
3
4
  import { retrievePackageJson as retrievePackageJsonAliased, asyncRetrievePackageJson as asyncRetrievePackageJsonAliased, fetchPackageLocation as fetchPackageLocationAliased, detectPackageManager as detectPackageManagerAliased, PackageJson as PackageJsonAliased } from '@arcgis/node-toolkit/packageJson';
4
5
  import { vitePresetPlugin as vitePresetPluginAliased } from '@arcgis/node-toolkit/vite/presetPlugin';
5
6
  import { DependencyManagementOptions as DependencyManagementOptionsAliased, externalizeDependencies as externalizeDependenciesAliased } from '@arcgis/node-toolkit/vite/externalizeDependenciesPlugin';
6
- /** @deprecated import { existsAsync } from "@arcgis/node-toolkit/file"; instead */
7
+ /**
8
+ * @deprecated import { existsAsync } from "@arcgis/node-toolkit/file"; instead
9
+ */
7
10
  export declare const existsAsync: (file: string) => Promise<boolean>;
8
- /** @deprecated import { sh } from "@arcgis/node-toolkit/file"; instead */
11
+ /**
12
+ * @deprecated import { sh } from "@arcgis/node-toolkit/shell";
13
+ * use runSync or collectOutputSync instead when shell syntax is not required.
14
+ */
9
15
  export declare const sh: typeof shAliased;
10
- /** @deprecated import { sp } from "@arcgis/node-toolkit/file"; instead */
16
+ /**
17
+ * @deprecated import { sp } from "@arcgis/node-toolkit/shell";
18
+ * use runSync or collectOutputSync instead based on whether stdout is needed.
19
+ */
11
20
  export declare const sp: typeof spAliased;
12
- /** @deprecated import { asyncSh } from "@arcgis/node-toolkit/file"; instead */
21
+ /** @deprecated import { asyncSh } from "@arcgis/node-toolkit/shell"; use run from "@arcgis/node-toolkit/shell" when shell syntax is not required. */
13
22
  export declare const asyncSh: typeof asyncShAliased;
14
23
  /** @deprecated import { findPath } from "@arcgis/node-toolkit/file"; instead */
15
24
  export declare const findPath: typeof findPathAliased;
package/dist/index.js CHANGED
@@ -1,4 +1,5 @@
1
- import { asyncFindPath as asyncFindPath$1, asyncSh as asyncSh$1, existsAsync as existsAsync$1, findPath as findPath$1, sh as sh$1, sp as sp$1 } from "@arcgis/node-toolkit/file";
1
+ import { asyncFindPath as asyncFindPath$1, existsAsync as existsAsync$1, findPath as findPath$1 } from "@arcgis/node-toolkit/file";
2
+ import { asyncSh as asyncSh$1, sh as sh$1, sp as sp$1 } from "@arcgis/node-toolkit/shell";
2
3
  import { gitIgnoreFileToGlobs as gitIgnoreFileToGlobs$1, gitIgnoreToGlob as gitIgnoreToGlob$1 } from "@arcgis/node-toolkit/glob";
3
4
  import { getCwd as getCwd$1, isPosix as isPosix$1, normalizePath as normalizePath$1, path as path$1, toPosixPathSeparators as toPosixPathSeparators$1, toSystemPathSeparators as toSystemPathSeparators$1 } from "@arcgis/node-toolkit/path";
4
5
  import { asyncRetrievePackageJson as asyncRetrievePackageJson$1, detectPackageManager as detectPackageManager$1, fetchPackageLocation as fetchPackageLocation$1, retrievePackageJson as retrievePackageJson$1 } from "@arcgis/node-toolkit/packageJson";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@arcgis/components-build-utils",
3
- "version": "5.2.0-next.52",
3
+ "version": "5.2.0-next.53",
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",
@@ -19,6 +19,6 @@
19
19
  "@types/node": "~24.11.2",
20
20
  "tslib": "^2.8.1",
21
21
  "vite": "^7.3.2",
22
- "@arcgis/node-toolkit": "5.2.0-next.52"
22
+ "@arcgis/node-toolkit": "5.2.0-next.53"
23
23
  }
24
24
  }