Skip to content

Commit

Permalink
feat(create): clarify features
Browse files Browse the repository at this point in the history
  • Loading branch information
LarsDenBakker committed Mar 6, 2020
1 parent b98a4da commit 7f9747c
Showing 1 changed file with 7 additions and 4 deletions.
11 changes: 7 additions & 4 deletions packages/create/src/generators/app/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -69,10 +69,13 @@ export const AppMixin = subclass =>
message: 'What would you like to add?',
choices: (prev, all) =>
[
{ title: 'Linting', value: 'linting' },
{ title: 'Testing', value: 'testing' },
{ title: 'Demoing', value: 'demoing' },
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' && {
title: 'Building (rollup or webpack)',
value: 'building',
},
].filter(_ => !!_),
onState: state => {
state.value.forEach(meta => {
Expand Down

0 comments on commit 7f9747c

Please sign in to comment.