Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

npm-run-all2

Package Overview
Dependencies
Maintainers
2
Versions
22
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

npm-run-all2 - npm Package Compare versions

Comparing version 6.2.2 to 6.2.3

9

CHANGELOG.md

@@ -10,6 +10,13 @@ # Changelog

## [v6.2.2](https://github.com/bcomnes/npm-run-all2/compare/v6.2.1...v6.2.2)
## [v6.2.3](https://github.com/bcomnes/npm-run-all2/compare/v6.2.2...v6.2.3)
### Commits
- Merge pull request #151 from bcomnes/fix-pnpm-agian [`c43fa2b`](https://github.com/bcomnes/npm-run-all2/commit/c43fa2b677442c710a29654a333b15c8de4f00ab)
- Avoid passing config fields as flags for pnpm [`dc2d7da`](https://github.com/bcomnes/npm-run-all2/commit/dc2d7da61cf0898d0bc2b25747e588325e06b9a9)
## [v6.2.2](https://github.com/bcomnes/npm-run-all2/compare/v6.2.1...v6.2.2) - 2024-07-04
### Commits
- Revert "Compatibility: npm, yarn and pnpm run scripts" [`fc35f0d`](https://github.com/bcomnes/npm-run-all2/commit/fc35f0dc4f78afc1c631fa94b6ac85ba0fb0e7b1)

@@ -16,0 +23,0 @@

4

lib/run-task.js

@@ -195,2 +195,4 @@ /**

const isYarn = process.env.npm_config_user_agent && process.env.npm_config_user_agent.startsWith('yarn')
const isPnpm = Boolean(process.env.PNPM_SCRIPT_SRC_DIR)
const isNpm = !isYarn && !isPnpm

@@ -202,3 +204,3 @@ const spawnArgs = ['run']

}
if (!isYarn) {
if (isNpm) {
Array.prototype.push.apply(spawnArgs, options.prefixOptions)

@@ -205,0 +207,0 @@ } else if (options.prefixOptions.indexOf('--silent') !== -1) {

{
"name": "npm-run-all2",
"version": "6.2.2",
"version": "6.2.3",
"description": "A CLI tool to run multiple npm-scripts in parallel or sequential. (Maintainence fork)",

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

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