@nx-dotnet/utils
Advanced tools
Comparing version 1.14.0 to 1.15.0
@@ -0,1 +1,11 @@ | ||
# [1.15.0](https://github.com/nx-dotnet/nx-dotnet/compare/v1.14.0...v1.15.0) (2022-10-18) | ||
### Bug Fixes | ||
- **core:** getProjectFilesForProject should consider project root in addition to source root ([#543](https://github.com/nx-dotnet/nx-dotnet/issues/543)) ([374e30f](https://github.com/nx-dotnet/nx-dotnet/commit/374e30f2be1f6ede5ac4c4145cbe33f6b75738af)) | ||
### Features | ||
- **nx-ghpages:** add option to customize commit message to `gh-pages` ([#542](https://github.com/nx-dotnet/nx-dotnet/issues/542)) ([cff00e0](https://github.com/nx-dotnet/nx-dotnet/commit/cff00e04be43581a323c3f6f0f0a6f1769d1f76e)) | ||
# [1.14.0](https://github.com/nx-dotnet/nx-dotnet/compare/v1.13.4...v1.14.0) (2022-10-05) | ||
@@ -2,0 +12,0 @@ |
@@ -21,3 +21,3 @@ { | ||
"homepage": "https://nx-dotnet.com/", | ||
"version": "1.14.0", | ||
"version": "1.15.0", | ||
"typings": "./src/index.d.ts", | ||
@@ -24,0 +24,0 @@ "peerDependencies": { |
@@ -79,3 +79,3 @@ "use strict"; | ||
.filter((x) => x.endsWith('proj')) | ||
.map((x) => `${project.sourceRoot}/${x}`); | ||
.map((x) => { var _a; return `${(_a = project.sourceRoot) !== null && _a !== void 0 ? _a : project.root}/${x}`; }); | ||
} | ||
@@ -82,0 +82,0 @@ exports.getProjectFilesForProject = getProjectFilesForProject; |
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
77330