Alchemist0823 / three.quarks

Three.quarks is a general purpose particle system / VFX engine for three.js
https://quarks.art
480 stars 22 forks source link

Fix: allow higher three.js versions as well #62

Closed hybridherbst closed 12 months ago

hybridherbst commented 1 year ago

Sorry to bring this up again, but turns out SemVer with 0.x versions is weird - ^0.153.0 only allows 0.153.x versions and not higher three.js versions. See https://semver.npmjs.com/ with three:

image

Given three.js is unlikely to go to proper SemVer anytime soon, I think this works better: >= 0.153.0 Or explicitly >= 0.153.0 && < 0.156.x but that will require manual updates (and checks, of course) whenever three.js updates.

image

Thank you!

Alchemist0823 commented 12 months ago

Thanks, It seems to be fixed by one of my commit already