Skip to content

Commit

Permalink
feat(core): default to Yes for Nx Cloud during add-nx-to-monorepo (#9934
Browse files Browse the repository at this point in the history
)
  • Loading branch information
FrozenPandaz authored Apr 21, 2022
1 parent 39331d1 commit faa8ec0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/add-nx-to-monorepo/src/add-nx-to-monorepo.ts
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ async function askAboutNxCloud(parsedArgs: any) {
name: 'No',
},
],
initial: 'No' as any,
initial: 'Yes' as any,
},
])
.then((a: { NxCloud: 'Yes' | 'No' }) => a.NxCloud === 'Yes');
Expand Down

0 comments on commit faa8ec0

Please sign in to comment.