Skip to content

Commit

Permalink
get ci passing
Browse files Browse the repository at this point in the history
  • Loading branch information
jtoar committed Jan 25, 2024
1 parent e08a870 commit cb22f03
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
3 changes: 2 additions & 1 deletion packages/create-redwood-app/src/create-redwood-app.js
Original file line number Diff line number Diff line change
Expand Up @@ -717,7 +717,8 @@ async function createRedwoodApp() {
// TODO: Make all flags have the 'flag' suffix
const args = parsedFlags._
const yarnInstallFlag =
parsedFlags['yarn-install'] ?? _isYarnBerryOrNewer ? parsedFlags.yes : null
parsedFlags['yarn-install'] ??
(_isYarnBerryOrNewer ? parsedFlags.yes : null)
const typescriptFlag = parsedFlags.typescript ?? parsedFlags.yes
const overwrite = parsedFlags.overwrite
const gitInitFlag = parsedFlags['git-init'] ?? parsedFlags.yes
Expand Down
4 changes: 2 additions & 2 deletions packages/create-redwood-app/tests/e2e.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -28,12 +28,12 @@ describe('create-redwood-app', () => {
--git-init, --git Initialize a git repository [boolean] [default: null]
-m, --commit-message Commit message for the initial commit
[string] [default: null]
--yarn-install Install node modules. Skip via --no-yarn-install.
[boolean] [default: null]
--telemetry Enables sending telemetry events for this create
command and all Redwood CLI commands
https://telemetry.redwoodjs.com
[boolean] [default: true]
--yarn-install Install node modules. Skip via --no-yarn-install.
[boolean] [default: null]
Examples:
create-redwood-app my-redwood-app
Expand Down

0 comments on commit cb22f03

Please sign in to comment.