Kir-Antipov / mc-publish

🚀 Your one-stop GitHub Action for seamless Minecraft project publication across various platforms.
MIT License
216 stars 19 forks source link

[Feature Request] Convert `incompatible` dependencies with limited version ranges to `conflicting` #112

Open Kir-Antipov opened 4 months ago

Kir-Antipov commented 4 months ago

Discussed in https://github.com/Kir-Antipov/mc-publish/discussions/110

Originally posted by **fayer3** March 1, 2024 I have a speciffic old sodium version marked as breaking in my mod.json, and mc-publish takes that and marks complete sodium as incomplatible on modrinth. how can I tell mc-publish to ignore the sodium dependency, I saw there is a syntax for it in the readme, but I'm a bit confused. my dependency: ``` "breaks": { "sodium": ["0.4.11+build.25", "0.4.11+build.26"] }, ``` would that the right thing to add, to ignore it? ``` "custom": { "mc-publish": { "dependencies": [ "sodium(incompatible)#(ignore)" ] } } ```