when I'm passing custom prompts commands via cmd or launch.json getting below error :
....
Debugger attached.
Debugger attached.
INFO! No custom commands found within blueprint: generator-jhipster-sample at xyz\generator-jhipster-sample
error: unknown option '--custom-question'
Waiting for the debugger to disconnect...
Waiting for the debugger to disconnect...
I have added custom-question option in generator.js
this.option('custom-question', {
desc: 'SSO key enabled',
type: Boolean,
});
as custom-question is type boolean, with 7.9.4 it's working but with 8.5.0 giving unknown option error.
when I'm passing custom prompts commands via cmd or launch.json getting below error :
.... Debugger attached. Debugger attached. INFO! No custom commands found within blueprint: generator-jhipster-sample at xyz\generator-jhipster-sample error: unknown option '--custom-question' Waiting for the debugger to disconnect... Waiting for the debugger to disconnect...
I have added custom-question option in generator.js this.option('custom-question', { desc: 'SSO key enabled', type: Boolean, });
as custom-question is type boolean, with 7.9.4 it's working but with 8.5.0 giving unknown option error.