We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
subcommands
Something like:
dynamic command implementations will allow to lazily load the dependency tree instead of forcing cmd-ts apps to be imported sync
subcommands({ cmds: { hello: async () => (await import('./my-command')).cmd } })
async functions for the different commands can allow to lazily bootstrap the CLI
subcommands({ cmds: () => Promise.resolve({ hello: ... }) })
mixing them both can allow extremely dynamic applications 😮
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Something like:
dynamic command implementations will allow to lazily load the dependency tree instead of forcing cmd-ts apps to be imported sync
async functions for the different commands can allow to lazily bootstrap the CLI
mixing them both can allow extremely dynamic applications 😮
The text was updated successfully, but these errors were encountered: