@travetto/manifest
Advanced tools
Comparing version 3.0.0-rc.14 to 3.0.0-rc.15
{ | ||
"name": "@travetto/manifest", | ||
"version": "3.0.0-rc.14", | ||
"version": "3.0.0-rc.15", | ||
"description": "Manifest support", | ||
@@ -5,0 +5,0 @@ "keywords": [ |
@@ -307,5 +307,5 @@ import { path } from './path'; | ||
((!this.manifest.monoRepo || x.sourcePath !== this.manifest.workspacePath) ? | ||
[x.sourcePath] : [...Object.keys(x.files)].filter(y => !y.startsWith('$')).map(y => path.resolve(x.sourcePath, y)) | ||
[x.sourcePath] : [...Object.keys(x.files)].filter(y => !y.startsWith('$')).map(y => path.resolve(this.#manifest.workspacePath, x.sourcePath, y)) | ||
// eslint-disable-next-line @typescript-eslint/consistent-type-assertions | ||
).map(f => [f, path.resolve(x.sourceFolder)] as [string, string]) | ||
).map(f => [f, path.resolve(this.#manifest.workspacePath, x.sourceFolder)] as [string, string]) | ||
); | ||
@@ -312,0 +312,0 @@ } |
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
57190