Debug Installation
There is a helpful command called
forgebox version-debug
which will show you what version of a package will be installed without actually installing it. It can also be useful to test a semver range and see what packages it matches.So, for example, if you wanted to see what ColdBox version would be installed if you were to run
install [email protected]
then you can instead run this
forgebox version-debug [email protected]
You will see output similar to this:

In order to filter the output to only show versions which matched your semantic version, use the
--showMatchesOnly
flagforgebox version-debug [email protected] --showMatchesOnly

Last modified 4mo ago