generator-begcode
Version:
Spring Boot + Angular/React/Vue in one handy generator
36 lines (35 loc) • 995 B
JavaScript
import { GENERATOR_BOOTSTRAP_APPLICATION_BASE } from '../generator-list.js';
const command = {
options: {
prettierTabWidth: {
description: 'Default tab width for prettier',
type: Number,
scope: 'storage',
},
skipCommitHook: {
description: 'Skip adding husky commit hooks',
type: Boolean,
scope: 'storage',
},
withWebsite: {
description: 'Generate website',
type: Boolean,
scope: 'storage',
},
},
configs: {
defaultEnvironment: {
description: 'Default environment for the application',
cli: {
type: String,
hide: true,
env: 'JHI_PROFILE',
},
choices: ['prod', 'dev'],
default: 'prod',
scope: 'storage',
},
},
import: [GENERATOR_BOOTSTRAP_APPLICATION_BASE],
};
export default command;