Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
yannbf committed Jul 2, 2024
1 parent 2ac723a commit e40d4ca
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions code/lib/cli/src/sandbox-templates.ts
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ const baseTemplates = {
'cra/default-js': {
name: 'Create React App Latest (Webpack | JavaScript)',
script: `
npx create-react-app {{beforeDir}} && \
npx create-react-app {{beforeDir}} && cd {{beforeDir}} && \
jq '.browserslist.production[0] = ">0.9%"' package.json > tmp.json && mv tmp.json package.json
`,
expected: {
Expand All @@ -107,7 +107,7 @@ const baseTemplates = {
'cra/default-ts': {
name: 'Create React App Latest (Webpack | TypeScript)',
script: `
npx create-react-app {{beforeDir}} --template typescript && \
npx create-react-app {{beforeDir}} --template typescript && cd {{beforeDir}} && \
jq '.browserslist.production[0] = ">0.9%"' package.json > tmp.json && mv tmp.json package.json
`,
// Re-enable once https://github.com/storybookjs/storybook/issues/19351 is fixed.
Expand Down

0 comments on commit e40d4ca

Please sign in to comment.