Skip to content

Commit a6d713a

Browse files
committed
fix order
1 parent 125576c commit a6d713a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

backend/src/build-system/utils/file_generator_util.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ export function getSortedFiles(
105105
graph: [string, string][],
106106
nodes: Set<string>,
107107
): string[] {
108-
const sortedFiles = toposort(graph).reverse();
108+
const sortedFiles = toposort(graph);
109109

110110
Array.from(nodes).forEach((node) => {
111111
if (!sortedFiles.includes(node)) {

0 commit comments

Comments
 (0)