npm-run-all2
Advanced tools
Comparing version 6.2.2 to 6.2.3
@@ -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 @@ |
@@ -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": { |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
Environment variable access
Supply chain riskPackage accesses environment variables, which may be a sign of credential stuffing or data theft.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
220840
3928
21