@nx-dotnet/dotnet
Advanced tools
Comparing version 1.9.9 to 1.9.10
@@ -0,1 +1,9 @@ | ||
## [1.9.10](https://github.com/nx-dotnet/nx-dotnet/compare/v1.9.9...v1.9.10) (2022-04-13) | ||
### Bug Fixes | ||
- **core:** fall back to root if source root null ([#408](https://github.com/nx-dotnet/nx-dotnet/issues/408)) ([53bdc17](https://github.com/nx-dotnet/nx-dotnet/commit/53bdc173874817488897bd6adba186c18da57c81)) | ||
- **core:** resolved package version not provided ([#407](https://github.com/nx-dotnet/nx-dotnet/issues/407)) ([9bbc7c1](https://github.com/nx-dotnet/nx-dotnet/commit/9bbc7c1144f4fb2dfa4722b9b4d3c6466ca5189d)) | ||
- **core:** test executor should fail properly ([#411](https://github.com/nx-dotnet/nx-dotnet/issues/411)) ([e2db293](https://github.com/nx-dotnet/nx-dotnet/commit/e2db293473655494b0a775da0def84d6b1fd841c)) | ||
## [1.9.9](https://github.com/nx-dotnet/nx-dotnet/compare/v1.9.8...v1.9.9) (2022-04-01) | ||
@@ -2,0 +10,0 @@ |
@@ -7,6 +7,3 @@ { | ||
"license": "MIT", | ||
"keywords": [ | ||
".NET", | ||
"dotnet" | ||
], | ||
"keywords": [".NET", "dotnet"], | ||
"author": { | ||
@@ -24,6 +21,6 @@ "name": "NxDotnet", | ||
"homepage": "https://nx-dotnet.com/", | ||
"version": "1.9.9", | ||
"version": "1.9.10", | ||
"typings": "./src/index.d.ts", | ||
"peerDependencies": { | ||
"@nx-dotnet/utils": "1.9.9", | ||
"@nx-dotnet/utils": "1.9.10", | ||
"glob": "^7.2.0", | ||
@@ -33,2 +30,2 @@ "rimraf": "^3.0.2", | ||
} | ||
} | ||
} |
@@ -119,7 +119,11 @@ "use strict"; | ||
logAndExecute(params) { | ||
console.log(`Executing Command: ${this.cliCommand.command} "${params.join('" "')}"`); | ||
(0, child_process_1.spawnSync)(this.cliCommand.command, params, { | ||
const cmd = `${this.cliCommand.command} "${params.join('" "')}"`; | ||
console.log(`Executing Command: ${cmd}`); | ||
const res = (0, child_process_1.spawnSync)(this.cliCommand.command, params, { | ||
cwd: this.cwd || process.cwd(), | ||
stdio: 'inherit', | ||
}); | ||
if (res.status !== 0) { | ||
throw new Error(`dotnet execution returned status code ${res.status}`); | ||
} | ||
} | ||
@@ -126,0 +130,0 @@ execute(params) { |
Sorry, the diff of this file is not supported yet
64642
469