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

@nx-dotnet/dotnet

Package Overview
Dependencies
Maintainers
1
Versions
189
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@nx-dotnet/dotnet - npm Package Compare versions

Comparing version 1.9.6 to 1.9.7

CHANGELOG.md

16

package.json

@@ -5,8 +5,3 @@ {

"main": "src/index.js",
"dependencies": {
"@nx-dotnet/utils": "1.9.6",
"glob": "^7.2.0",
"rimraf": "^3.0.2",
"xmldoc": "^1.1.2"
},
"dependencies": {},
"license": "MIT",

@@ -29,5 +24,10 @@ "keywords": [

"homepage": "https://nx-dotnet.com/",
"version": "1.9.6",
"version": "1.9.7",
"typings": "./src/index.d.ts",
"peerDependencies": {}
"peerDependencies": {
"@nx-dotnet/utils": "1.9.7",
"glob": "^7.2.0",
"rimraf": "^3.0.2",
"xmldoc": "^1.1.2"
}
}

@@ -75,3 +75,4 @@ "use strict";

if (extraParameters) {
params.push(`${extraParameters}`);
const matches = extraParameters.match(EXTRA_PARAMS_REGEX);
params.push(...matches);
}

@@ -141,2 +142,8 @@ return this.logAndExecute(params);

exports.DotNetClient = DotNetClient;
/**
* Regular Expression for Parsing Extra Params before sending to spawn / exec
* First part of expression matches parameters such as --flag="my answer"
* Second part of expression matches parameters such as --flag=my_answer
*/
const EXTRA_PARAMS_REGEX = /\S*".+?"|\S+/g;
//# sourceMappingURL=dotnet.client.js.map

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