@vercel/build-utils 13.0.2 → 13.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # @vercel/build-utils
2
2
 
3
+ ## 13.1.0
4
+
5
+ ### Minor Changes
6
+
7
+ - Remove --unsafe-perm from npm install command ([#14302](https://github.com/vercel/vercel/pull/14302))
8
+
3
9
  ## 13.0.2
4
10
 
5
11
  ### Patch Changes
@@ -474,7 +474,7 @@ function getInstallCommandForPackageManager(packageManager, args) {
474
474
  case "npm":
475
475
  return {
476
476
  prettyCommand: "npm install",
477
- commandArguments: args.filter((a) => a !== "--prefer-offline").concat(["install", "--no-audit", "--unsafe-perm"])
477
+ commandArguments: args.filter((a) => a !== "--prefer-offline").concat(["install", "--no-audit"])
478
478
  };
479
479
  case "pnpm":
480
480
  return {
package/dist/index.js CHANGED
@@ -23597,7 +23597,7 @@ function getInstallCommandForPackageManager(packageManager, args) {
23597
23597
  case "npm":
23598
23598
  return {
23599
23599
  prettyCommand: "npm install",
23600
- commandArguments: args.filter((a) => a !== "--prefer-offline").concat(["install", "--no-audit", "--unsafe-perm"])
23600
+ commandArguments: args.filter((a) => a !== "--prefer-offline").concat(["install", "--no-audit"])
23601
23601
  };
23602
23602
  case "pnpm":
23603
23603
  return {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vercel/build-utils",
3
- "version": "13.0.2",
3
+ "version": "13.1.0",
4
4
  "license": "Apache-2.0",
5
5
  "main": "./dist/index.js",
6
6
  "types": "./dist/index.d.js",