We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b98a4da commit 7f9747cCopy full SHA for 7f9747c
packages/create/src/generators/app/index.js
@@ -69,10 +69,13 @@ export const AppMixin = subclass =>
69
message: 'What would you like to add?',
70
choices: (prev, all) =>
71
[
72
- { title: 'Linting', value: 'linting' },
73
- { title: 'Testing', value: 'testing' },
74
- { title: 'Demoing', value: 'demoing' },
75
- all.scaffoldType !== 'wc' && { title: 'Building', value: 'building' },
+ { title: 'Linting (eslint & prettier)', value: 'linting' },
+ { title: 'Testing (karma)', value: 'testing' },
+ { title: 'Demoing (storybook)', value: 'demoing' },
+ all.scaffoldType !== 'wc' && {
76
+ title: 'Building (rollup or webpack)',
77
+ value: 'building',
78
+ },
79
].filter(_ => !!_),
80
onState: state => {
81
state.value.forEach(meta => {
0 commit comments