How to use semver with app version

Due to compatibility with different platforms, the app version in Localazy CLI can only be a non-negative number (from 0 to 2147483648).

For using it with the semver X.Y.Z format, you can calculate the final app version like:

100000000 * X + 10000 * Y + Z => e.q., 2.3.12 becomes 200030012

This gives you predictable output and a simple conversion scheme.