You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
A way to configure ModSettings per run config in Forge projects. This feature is useful for Forge mods with separate dev-only source sets (e.g. data generation). (#144 + #145)
Code example:
loom {
runs {
data {
// <data run config boilerplate>
mods { // if non-empty, replaces the "global" mod settings container
tinypotato {
sourceSet sourceSets.main
sourceSet sourceSets.data
}
}
}
}
}
Fixed
Order of jars in fabric.mod.json depending on HashSet iteration order (#155)
JIJ not working for Forge libraries without a mods.toml (#152)