get_files_in_conversion_order

Returns the list of files by level in the order they should be converted based on the dependency graph.

Arguments

NameTypeDescriptionRequired

top_down

boolean

Whether to return the conversion order from top-down (default is bottom-up).

Returns

TypeDescription

array

A list of lists of file paths in the order they should be converted.

Example

- name: get_files_in_conversion_order
  arguments:
    top_down: true/false
  returns:
    - <file-paths-level-1>
    - <file-paths-level-2>

Last updated