Override runCommand to use lazy loading when available. Instead of calling cmd.load() which triggers loading ALL commands via index.js, we directly import only the needed command module.
The command ID to run.
The arguments to pass to the command.
An optional cached command loadable.
The command result.
Set a lazy command loader that will be used to load individual command classes on demand, bypassing the default oclif behavior of importing the entire COMMANDS module.
The lazy command loader function.
Subclass of oclif's Config that loads command classes on demand for faster CLI startup.