Skip to content

Commit 7f9747c

Browse files
committed
feat(create): clarify features
1 parent b98a4da commit 7f9747c

File tree

1 file changed

+7
-4
lines changed
  • packages/create/src/generators/app

1 file changed

+7
-4
lines changed

packages/create/src/generators/app/index.js

+7-4
Original file line numberDiff line numberDiff line change
@@ -69,10 +69,13 @@ export const AppMixin = subclass =>
6969
message: 'What would you like to add?',
7070
choices: (prev, all) =>
7171
[
72-
{ title: 'Linting', value: 'linting' },
73-
{ title: 'Testing', value: 'testing' },
74-
{ title: 'Demoing', value: 'demoing' },
75-
all.scaffoldType !== 'wc' && { title: 'Building', value: 'building' },
72+
{ title: 'Linting (eslint & prettier)', value: 'linting' },
73+
{ title: 'Testing (karma)', value: 'testing' },
74+
{ title: 'Demoing (storybook)', value: 'demoing' },
75+
all.scaffoldType !== 'wc' && {
76+
title: 'Building (rollup or webpack)',
77+
value: 'building',
78+
},
7679
].filter(_ => !!_),
7780
onState: state => {
7881
state.value.forEach(meta => {

0 commit comments

Comments
 (0)