Skip to content

Commit

Permalink
chore(release): 1.13.0 [skip ci]
Browse files Browse the repository at this point in the history
  • Loading branch information
semrel-extra-bot committed May 25, 2023
1 parent 6949ae0 commit a93eb10
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 2 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -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"
Expand Down
5 changes: 4 additions & 1 deletion src/main/ts/topo.ts
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,10 @@ const checkDuplicates = (named: { name: string }[]): void => {
}
}

export const getPackage = async (cwd: string, manifestPath: string): Promise<IPackageEntry> => {
export const getPackage = async (
cwd: string,
manifestPath: string
): Promise<IPackageEntry> => {
const absPath = dirname(manifestPath)
const relPath = relative(cwd, absPath) || '.'
const manifestRelPath = relative(cwd, manifestPath)
Expand Down

0 comments on commit a93eb10

Please sign in to comment.