deno.land / std@0.166.0 / node / _tools / check_circular_deps.ts

check_circular_deps.ts
نووسراو ببینە
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
// Copyright 2018-2022 the Deno authors. All rights reserved. MIT license.import { createGraph, ModuleGraph,} from "https://deno.land/x/deno_graph@0.37.1/mod.ts";
const root = `${new URL("../module_all.ts", import.meta.url)}`;const seen = new Set<string>();/** Returns the circular dependency from the given module graph and * specifier if exists, returns undefined otherwise. */function getCircularDeps( graph: ModuleGraph, specifier: string, ancestors: string[] = [],): string[] | undefined { if (seen.has(specifier)) { // It's already checked. return undefined; } if (ancestors.includes(specifier)) { return [...ancestors, specifier]; } const { dependencies } = graph.get(specifier)!.toJSON(); if (dependencies) { for (const { code, type } of dependencies) { const circularDeps = getCircularDeps( graph, code?.specifier ?? type?.specifier!, [ ...ancestors, specifier, ], ); if (circularDeps) { return circularDeps; } } } seen.add(specifier);}const circularDeps = getCircularDeps(await createGraph(root), root);if (circularDeps) { console.log("Found circular dependencies", circularDeps); Deno.exit(1);}console.log("No circular dependencies");
std

Version Info

Tagged at
a year ago