@nx-dotnet/dotnet
Advanced tools
Comparing version 1.9.10 to 1.9.11
@@ -0,1 +1,8 @@ | ||
## [1.9.11](https://github.com/nx-dotnet/nx-dotnet/compare/v1.9.10...v1.9.11) (2022-04-21) | ||
### Bug Fixes | ||
- **core:** replace glob with fast-glob to speed up dep-graph calculation ([#414](https://github.com/nx-dotnet/nx-dotnet/issues/414)) ([5db4ca9](https://github.com/nx-dotnet/nx-dotnet/commit/5db4ca97b15be49080ff1e18e2fa016d7c86deec)), closes [#410](https://github.com/nx-dotnet/nx-dotnet/issues/410) | ||
- **dotnet:** expand env vars in cli parameters ([#422](https://github.com/nx-dotnet/nx-dotnet/issues/422)) ([c2db0cd](https://github.com/nx-dotnet/nx-dotnet/commit/c2db0cd3700d29aef682b3be482dcb82d262b0b6)) | ||
## [1.9.10](https://github.com/nx-dotnet/nx-dotnet/compare/v1.9.9...v1.9.10) (2022-04-13) | ||
@@ -2,0 +9,0 @@ |
@@ -20,7 +20,7 @@ { | ||
"homepage": "https://nx-dotnet.com/", | ||
"version": "1.9.10", | ||
"version": "1.9.11", | ||
"typings": "./src/index.d.ts", | ||
"peerDependencies": { | ||
"@nx-dotnet/utils": "1.9.10", | ||
"glob": "^7.2.0", | ||
"@nx-dotnet/utils": "1.9.11", | ||
"fast-glob": "3.2.7", | ||
"rimraf": "^3.0.2", | ||
@@ -27,0 +27,0 @@ "xmldoc": "^1.1.2" |
@@ -119,2 +119,3 @@ "use strict"; | ||
logAndExecute(params) { | ||
params = params.map((param) => param.replace(/\$(\w+)/, (match, varName) => { var _a; return (_a = process.env[varName]) !== null && _a !== void 0 ? _a : ''; })); | ||
const cmd = `${this.cliCommand.command} "${params.join('" "')}"`; | ||
@@ -121,0 +122,0 @@ console.log(`Executing Command: ${cmd}`); |
Sorry, the diff of this file is not supported yet
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
65636
470
1