We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
For example: Top level datapack's lantern load file:
// top_level { "values": [ "dt.inventory:load", "dt.array:load" ] }
// dt.inventory { "values": [ "dt.array:load", "dep2:load" ] }
// dt.array { "values":[] }
These dependencies should result in a final bundled load file of:
// top_level { "values": [ "dt.array:load", "dep2:load", "dt.inventory:load", ] }
But instead we get a load file where dt.array:load comes after dt.inventory:load since it was specified after in the top level file
dt.array:load
dt.inventory:load
The text was updated successfully, but these errors were encountered:
No branches or pull requests
For example:
Top level datapack's lantern load file:
These dependencies should result in a final bundled load file of:
But instead we get a load file where
dt.array:load
comes afterdt.inventory:load
since it was specified after in the top level fileThe text was updated successfully, but these errors were encountered: