feat(module-federation): expose additional helpers (#12990)

This commit is contained in:
Colum Ferry 2022-11-04 12:58:10 +00:00 committed by GitHub
parent e08d7848b3
commit 080543e76d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 7 deletions

View File

@ -1,12 +1,7 @@
import { ProjectGraph } from '@nrwl/devkit';
import type { ProjectGraph } from '@nrwl/devkit';
import type { WorkspaceLibrary } from '../models';
import { readTsPathMappings } from './typescript';
export type WorkspaceLibrary = {
name: string;
root: string;
importKey: string | undefined;
};
export function getDependentPackagesForProject(
projectGraph: ProjectGraph,
name: string

View File

@ -1 +1,3 @@
export * from './share';
export * from './dependencies';
export * from './package-json';