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

beachball

Package Overview
Dependencies
Maintainers
3
Versions
246
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

beachball - npm Package Compare versions

Comparing version 2.44.1 to 2.45.0

1

lib/env.d.ts

@@ -13,3 +13,4 @@ export declare const env: Readonly<{

workspaceToolsGitMaxBuffer: number | undefined;
npmConcurrency: number | undefined;
}>;
//# sourceMappingURL=env.d.ts.map

@@ -19,3 +19,5 @@ "use strict";

workspaceToolsGitMaxBuffer: (process.env.GIT_MAX_BUFFER && parseInt(process.env.GIT_MAX_BUFFER, 10)) || undefined,
// Override default NPM_CONCURRENCY
npmConcurrency: (process.env.NPM_CONCURRENCY && parseInt(process.env.NPM_CONCURRENCY)) || undefined
});
//# sourceMappingURL=env.js.map

2

lib/packageManager/listPackageVersions.js

@@ -12,3 +12,3 @@ "use strict";

let packageVersionsCache = {};
const NPM_CONCURRENCY = env_1.env.isJest ? 2 : 5;
const NPM_CONCURRENCY = env_1.env.npmConcurrency ?? (env_1.env.isJest ? 2 : 5);
function _clearPackageVersionsCache() {

@@ -15,0 +15,0 @@ packageVersionsCache = {};

{
"name": "beachball",
"version": "2.44.1",
"version": "2.45.0",
"description": "The Sunniest Semantic Version Bumper",

@@ -5,0 +5,0 @@ "repository": {

@@ -82,2 +82,6 @@ <!--

## Overriding Concurrency
In large monorepos, the Beachball sync process can be time-consuming due to the high number of packages. To optimize performance, you can override the default concurrency (typically set to 2 or 5) by setting the NPM_CONCURRENCY environment variable to a value that best suits your needs
## Examples

@@ -84,0 +88,0 @@

Sorry, the diff of this file is not supported yet

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