diff --git a/CHANGELOG.md b/CHANGELOG.md index 2c511a3..dbe6674 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,8 @@ +## [1.13.0](https://github.com/semrel-extra/topo/compare/v1.12.1...v1.13.0) (2023-05-25) + +### Features +* feat: add `manifestRelPath` to IPackageEntry ([6949ae0](https://github.com/semrel-extra/topo/commit/6949ae0aba35e032ec5c48356f4f263f06a3037f)) + ## [1.12.1](https://github.com/semrel-extra/topo/compare/v1.12.0...v1.12.1) (2023-05-24) ### Fixes & improvements diff --git a/package.json b/package.json index 4809e27..98de3db 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@semrel-extra/topo", - "version": "1.12.1", + "version": "1.13.0", "description": "Helper to resolve monorepo dependencies graph", "publishConfig": { "access": "public" diff --git a/src/main/ts/topo.ts b/src/main/ts/topo.ts index 0c0a7f1..365478b 100644 --- a/src/main/ts/topo.ts +++ b/src/main/ts/topo.ts @@ -52,7 +52,10 @@ const checkDuplicates = (named: { name: string }[]): void => { } } -export const getPackage = async (cwd: string, manifestPath: string): Promise => { +export const getPackage = async ( + cwd: string, + manifestPath: string +): Promise => { const absPath = dirname(manifestPath) const relPath = relative(cwd, absPath) || '.' const manifestRelPath = relative(cwd, manifestPath)