New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

@arcgis/components-build-utils

Package Overview
Dependencies
Maintainers
0
Versions
146
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@arcgis/components-build-utils - npm Package Compare versions

Comparing version 4.32.0-next.52 to 4.32.0-next.54

3

dist/index.d.ts

@@ -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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc