38 lines
782 B
TypeScript
38 lines
782 B
TypeScript
import {
|
|
getWorkspacePath,
|
|
readJson,
|
|
Tree,
|
|
visitNotIgnoredFiles,
|
|
} from '@nrwl/devkit';
|
|
import { createProjectGraph } from '../core/project-graph/project-graph';
|
|
import { FileData } from '../core/file-utils';
|
|
import { extname } from 'path';
|
|
|
|
export function createProjectGraphFromTree(tree: Tree) {
|
|
const workspaceJson = readJson(tree, getWorkspacePath(tree));
|
|
const nxJson = readJson(tree, 'nx.json');
|
|
|
|
const files: FileData[] = [];
|
|
|
|
visitNotIgnoredFiles(tree, '', (file) => {
|
|
files.push({
|
|
file: file,
|
|
ext: extname(file),
|
|
hash: '',
|
|
});
|
|
});
|
|
|
|
const readFile = (path) => {
|
|
return tree.read(path).toString('utf-8');
|
|
};
|
|
|
|
return createProjectGraph(
|
|
workspaceJson,
|
|
nxJson,
|
|
files,
|
|
readFile,
|
|
false,
|
|
false
|
|
);
|
|
}
|