generator-begcode
Version:
Spring Boot + Angular/React/Vue in one handy generator
37 lines (36 loc) • 895 B
JavaScript
const command = {
configs: {
skipGit: {
description: 'Skip git repository initialization',
cli: {
type: Boolean,
},
scope: 'generator',
},
forceGit: {
description: 'Force commit to git repository',
cli: {
type: Boolean,
},
scope: 'generator',
},
commitMsg: {
description: 'Commit changes (implies forceGit)',
cli: {
type: String,
implies: {
forceGit: true,
},
},
scope: 'generator',
},
monorepository: {
description: 'Use monorepository',
cli: {
type: Boolean,
},
scope: 'storage',
},
},
};
export default command;