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

@pnpm/config

Package Overview
Dependencies
Maintainers
3
Versions
315
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@pnpm/config - npm Package Compare versions

Comparing version 2.3.0-0 to 2.3.0-1

16

lib/index.js

@@ -148,2 +148,18 @@ "use strict";

}
if (pnpmConfig.sharedWorkspaceShrinkwrap) {
if (opts.cliArgs['shared-workspace-shrinkwrap']) {
const err = new Error('Configuration conflict. "shared-workspace-shrinkwrap" may not be used with "global"');
err['code'] = 'ERR_PNPM_CONFIG_CONFLICT_SHARED_WORKSPACE_SHRINKWRAP_WITH_GLOBAL'; // tslint:disable-line:no-string-literal
throw err;
}
pnpmConfig.sharedWorkspaceShrinkwrap = false;
}
if (pnpmConfig.shrinkwrapDirectory) {
if (opts.cliArgs['shrinkwrap-directory']) {
const err = new Error('Configuration conflict. "shrinkwrap-directory" may not be used with "global"');
err['code'] = 'ERR_PNPM_CONFIG_CONFLICT_SHRINKWRAP_DIRECTORY_WITH_GLOBAL'; // tslint:disable-line:no-string-literal
throw err;
}
delete pnpmConfig.shrinkwrapDirectory;
}
}

@@ -150,0 +166,0 @@ else {

6

package.json
{
"name": "@pnpm/config",
"version": "2.3.0-0",
"version": "2.3.0-1",
"description": "Gets configs for pnpm",

@@ -34,3 +34,3 @@ "main": "lib/index.js",

"@types/camelcase": "^4.1.0",
"@types/node": "^9.4.6 || 10",
"@types/node": "10.12.0",
"@types/which": "^1.3.1",

@@ -45,3 +45,3 @@ "@zkochan/npm-conf": "1.2.1",

"@types/tape": "^4.2.32",
"@types/tempy": "^0.1.0",
"@types/tempy": "^0.2.0",
"mos": "^2.0.0-alpha.3",

@@ -48,0 +48,0 @@ "mos-plugin-readme": "^1.0.4",

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