@arcgis/components-build-utils
Advanced tools
Comparing version 4.32.0-next.52 to 4.32.0-next.54
@@ -24,2 +24,3 @@ import posix from 'path/posix'; | ||
declare const toPosixPathSeparators: (relativePath: string) => string; | ||
declare const normalizePath: (relativePath: string) => string; | ||
/** | ||
@@ -70,2 +71,2 @@ * On Windows, replace all `/` in the path back with `\\`. Do this only if you | ||
export { type MiniPackageJson, asyncFindPath, asyncRetrievePackageJson, createFileIfNotExists, detectPackageManager, existsAsync, exportsForTests, fetchPackageLocation, findPath, getCwd, isPosix, path, retrievePackageJson, sh, toPosixPathSeparators, toSystemPathSeparators }; | ||
export { type MiniPackageJson, asyncFindPath, asyncRetrievePackageJson, createFileIfNotExists, detectPackageManager, existsAsync, exportsForTests, fetchPackageLocation, findPath, getCwd, isPosix, normalizePath, path, retrievePackageJson, sh, toPosixPathSeparators, toSystemPathSeparators }; |
@@ -10,2 +10,3 @@ // src/index.ts | ||
var toPosixPathSeparators = (relativePath) => relativePath.includes(win32.sep) ? relativePath.replaceAll(win32.sep, posix.sep) : relativePath; | ||
var normalizePath = isPosix ? (path2) => path2 : toPosixPathSeparators; | ||
var toWin32PathSeparators = (relativePath) => relativePath.includes(posix.sep) ? relativePath.replaceAll(posix.sep, win32.sep) : relativePath; | ||
@@ -169,2 +170,3 @@ var toSystemPathSeparators = isPosix ? (path2) => path2 : toWin32PathSeparators; | ||
isPosix, | ||
normalizePath, | ||
path, | ||
@@ -171,0 +173,0 @@ retrievePackageJson, |
{ | ||
"name": "@arcgis/components-build-utils", | ||
"version": "4.32.0-next.52", | ||
"version": "4.32.0-next.54", | ||
"description": "Collection of common internal build-time patterns and utilities for ArcGIS Maps SDK for JavaScript components.", | ||
@@ -29,4 +29,5 @@ "homepage": "https://developers.arcgis.com/javascript/latest/", | ||
"glob": "^11.0.0", | ||
"split2": "^4.2.0", | ||
"tslib": "^2.7.0" | ||
} | ||
} |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
24275
470
6
+ Addedsplit2@^4.2.0
+ Addedsplit2@4.2.0(transitive)