Skip to content

Commit 8cc2598

Browse files
committed
Expose gitHashFiles from package-deps-hash.
1 parent 498e8ce commit 8cc2598

2 files changed

Lines changed: 7 additions & 1 deletion

File tree

common/reviews/api/package-deps-hash.api.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,9 @@
77
// @public
88
export function getPackageDeps(packagePath?: string, excludedPaths?: string[]): IPackageDeps;
99

10+
// @public
11+
export function gitHashFiles(filesToHash: string[], packagePath: string): Map<string, string>;
12+
1013
// @public
1114
export interface IPackageDeps {
1215
arguments?: string;

libraries/package-deps-hash/src/index.ts

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,5 +13,8 @@
1313
* @packageDocumentation
1414
*/
1515

16-
export { getPackageDeps } from './getPackageDeps';
16+
export {
17+
getPackageDeps,
18+
gitHashFiles
19+
} from './getPackageDeps';
1720
export { IPackageDeps } from './IPackageDeps';

0 commit comments

Comments
 (0)