@semrel-extra/topo
Advanced tools
Comparing version 1.3.1 to 1.4.0
@@ -0,1 +1,11 @@ | ||
# [1.4.0](https://github.com/semrel-extra/topo/compare/v1.3.1...v1.4.0) (2022-06-13) | ||
### Features | ||
* add abs pkg path to entry data ([7271961](https://github.com/semrel-extra/topo/commit/727196118e028b6f7258e0d42787c1b362d38a37)) | ||
* add pkg name to entry ([f80aa8d](https://github.com/semrel-extra/topo/commit/f80aa8d16aeb4a55efa5fcd9acad959726e00817)) | ||
* add root pkg entry to context ([5d670cc](https://github.com/semrel-extra/topo/commit/5d670cccc2ba631a7650ee09cd1b1f186333cd4e)) | ||
* check pkg names duplicates ([6c18d81](https://github.com/semrel-extra/topo/commit/6c18d81e9cb96502e00dc02c0215f0d21c5ca932)) | ||
## [1.3.1](https://github.com/semrel-extra/topo/compare/v1.3.0...v1.3.1) (2022-06-01) | ||
@@ -2,0 +12,0 @@ |
{ | ||
"name": "@semrel-extra/topo", | ||
"version": "1.3.1", | ||
"version": "1.4.0", | ||
"description": "Helper to resolve monorepo dependencies graph", | ||
@@ -60,3 +60,3 @@ "publishConfig": { | ||
"c8": "^7.11.3", | ||
"esbuild": "^0.14.42", | ||
"esbuild": "^0.14.43", | ||
"esbuild-node-externals": "^1.4.1", | ||
@@ -66,5 +66,5 @@ "loadr": "^0.1.1", | ||
"prettier": "^2.6.2", | ||
"tsc-esm-fix": "^2.15.1", | ||
"tsc-esm-fix": "^2.18.0", | ||
"tsm": "^2.2.1", | ||
"typescript": "^4.7.2", | ||
"typescript": "^4.7.3", | ||
"uvu": "^0.5.3" | ||
@@ -71,0 +71,0 @@ }, |
@@ -39,3 +39,5 @@ # @semrel-extra/topo | ||
manifestPath: '/path/to/project/root/packages/a/package.json', | ||
path: 'packages/pkg-a' | ||
path: 'packages/a', // legacy | ||
relPath: 'packages/a', | ||
absPath: '/path/to/project/root/packages/a' | ||
}, | ||
@@ -42,0 +44,0 @@ 'pkg-b': {...}, |
@@ -12,2 +12,4 @@ export interface IPackageJson { | ||
path: string; | ||
absPath: string; | ||
relPath: string; | ||
}; | ||
@@ -24,2 +26,3 @@ export declare type ITopoOptions = { | ||
edges: [string, string | undefined][]; | ||
root: IPackageEntry; | ||
} | ||
@@ -26,0 +29,0 @@ export declare const getPackages: (options: ITopoOptions) => Promise<Record<string, IPackageEntry>>; |
@@ -12,2 +12,4 @@ export interface IPackageJson { | ||
path: string; | ||
absPath: string; | ||
relPath: string; | ||
}; | ||
@@ -24,2 +26,3 @@ export declare type ITopoOptions = { | ||
edges: [string, string | undefined][]; | ||
root: IPackageEntry; | ||
} | ||
@@ -26,0 +29,0 @@ export declare const getPackages: (options: ITopoOptions) => Promise<Record<string, IPackageEntry>>; |
Sorry, the diff of this file is not supported yet
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
16762
278
61