Skip to content

Commit

Permalink
[Initializers] Add descriptions to add-on list (#935)
Browse files Browse the repository at this point in the history
* [Initializers] Add descriptions to add-on list

* Update

* Change word
  • Loading branch information
illiakovalenko authored Feb 28, 2022
1 parent e77c21c commit 9fdf43b
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion packages/create-sitecore-jss/src/initializers/nextjs/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,17 @@ export default class NextjsInitializer implements Initializer {
type: 'checkbox',
name: 'addInitializers',
message: 'Would you like to include any add-on initializers?',
choices: ['nextjs-styleguide', 'nextjs-sxa'],
choices: [
{
name:
'nextjs-styleguide - Includes example components and setup for working disconnected',
value: 'nextjs-styleguide',
},
{
name: 'nextjs-sxa - Includes example components and setup for working using SXA',
value: 'nextjs-sxa',
},
],
});
addInitializers = addInitAnswer.addInitializers;
}
Expand Down

0 comments on commit 9fdf43b

Please sign in to comment.