@nx-dotnet/dotnet
Advanced tools
Comparing version 1.9.6 to 1.9.7
@@ -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
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
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
63068
88
465
+ Added@nx-dotnet/utils@1.9.7(transitive)
- Removed@nx-dotnet/utils@1.9.6
- Removedglob@^7.2.0
- Removedrimraf@^3.0.2
- Removedxmldoc@^1.1.2
- Removed@nx-dotnet/utils@1.9.6(transitive)