@semrel-extra/topo
Advanced tools
Comparing version 1.8.1 to 1.9.0
@@ -0,1 +1,6 @@ | ||
## [1.9.0](https://github.com/semrel-extra/topo/compare/v1.8.1...v1.9.0) (2023-04-02) | ||
### Features | ||
* feat: add `scope` field to `IDepEntry` ([0647fcc](https://github.com/semrel-extra/topo/commit/0647fcc40df0f872ac7368784de0b3412a2ec4b5)) | ||
## [1.8.1](https://github.com/semrel-extra/topo/compare/v1.8.0...v1.8.1) (2023-04-01) | ||
@@ -2,0 +7,0 @@ |
{ | ||
"name": "@semrel-extra/topo", | ||
"version": "1.8.1", | ||
"version": "1.9.0", | ||
"description": "Helper to resolve monorepo dependencies graph", | ||
@@ -5,0 +5,0 @@ "publishConfig": { |
@@ -22,2 +22,3 @@ import { TDepMap, TGraph } from 'toposource'; | ||
version: string; | ||
scope: string; | ||
} | ||
@@ -24,0 +25,0 @@ export type ITopoOptions = Partial<ITopoOptionsNormalized>; |
@@ -7,3 +7,3 @@ import { TTopoResult } from 'toposource'; | ||
export declare const topo: (options?: ITopoOptions) => Promise<ITopoContext>; | ||
export declare const getGraph: (manifests: IPackageJson[], depFilter: ITopoOptionsNormalized['depFilter']) => { | ||
export declare const getGraph: (manifests: IPackageJson[], depFilter: ITopoOptionsNormalized['depFilter'], scopes?: string[]) => { | ||
nodes: string[]; | ||
@@ -10,0 +10,0 @@ edges: [string, string][]; |
@@ -22,2 +22,3 @@ import { TDepMap, TGraph } from 'toposource'; | ||
version: string; | ||
scope: string; | ||
} | ||
@@ -24,0 +25,0 @@ export type ITopoOptions = Partial<ITopoOptionsNormalized>; |
@@ -7,3 +7,3 @@ import { TTopoResult } from 'toposource'; | ||
export declare const topo: (options?: ITopoOptions) => Promise<ITopoContext>; | ||
export declare const getGraph: (manifests: IPackageJson[], depFilter: ITopoOptionsNormalized['depFilter']) => { | ||
export declare const getGraph: (manifests: IPackageJson[], depFilter: ITopoOptionsNormalized['depFilter'], scopes?: string[]) => { | ||
nodes: string[]; | ||
@@ -10,0 +10,0 @@ edges: [string, string][]; |
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
25614
533