mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-06 15:31:16 +08:00
Use start-of-string matching to avoid ambiguity between preact and react
This commit is contained in:
parent
06315ddaf2
commit
01c0eed0b8
@ -26,12 +26,13 @@ export const reproNext = async ({
|
||||
branch,
|
||||
init,
|
||||
}: ReproOptions) => {
|
||||
const filterRegex = new RegExp(`^${filterValue || ''}`, 'i');
|
||||
|
||||
const keys = Object.keys(TEMPLATES) as Choice[];
|
||||
// get value from template and reduce through TEMPLATES to filter out the correct template
|
||||
const choices = keys.reduce<Choice[]>((acc, group) => {
|
||||
const current = TEMPLATES[group];
|
||||
|
||||
const filterRegex = new RegExp(filterValue, 'i');
|
||||
if (!filterValue) {
|
||||
acc.push(group);
|
||||
return acc;
|
||||
@ -56,7 +57,7 @@ export const reproNext = async ({
|
||||
boxen(
|
||||
dedent`
|
||||
🔎 You filtered out all templates. 🔍
|
||||
|
||||
|
||||
After filtering all the templates with "${chalk.yellow(
|
||||
filterValue
|
||||
)}", we found no results. Please try again with a different filter.
|
||||
@ -78,13 +79,13 @@ export const reproNext = async ({
|
||||
logger.info(
|
||||
boxen(
|
||||
dedent`
|
||||
🤗 Welcome to ${chalk.yellow('sb repro NEXT')}! 🤗
|
||||
|
||||
🤗 Welcome to ${chalk.yellow('sb repro NEXT')}! 🤗
|
||||
|
||||
Create a ${chalk.green('new project')} to minimally reproduce Storybook issues.
|
||||
|
||||
|
||||
1. select an environment that most closely matches your project setup.
|
||||
2. select a location for the reproduction, outside of your project.
|
||||
|
||||
|
||||
After the reproduction is ready, we'll guide you through the next steps.
|
||||
`.trim(),
|
||||
{ borderStyle: 'round', padding: 1, borderColor: '#F1618C' } as any
|
||||
@ -162,7 +163,7 @@ export const reproNext = async ({
|
||||
${initMessage}
|
||||
|
||||
Once you've recreated the problem you're experiencing, please:
|
||||
|
||||
|
||||
1. Document any additional steps in ${chalk.cyan('README.md')}
|
||||
2. Publish the repository to github
|
||||
3. Link to the repro repository in your issue
|
||||
|
Loading…
x
Reference in New Issue
Block a user