Skip to content

Commit c4b189b

Browse files
committed
Applied gemini comment
1 parent 39bb2df commit c4b189b

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

  • packages/init/src/action

packages/init/src/action/mod.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -41,9 +41,9 @@ import {
4141
* - If dry run, executes `handleDryRun`.
4242
* - Otherwise, executes `handleHydRun`.
4343
* 7. Recommends configuration environment via `recommendConfigEnv`.
44-
* 8. Shows how to run the project via `noticeHowToRun`.
45-
* 9. If installation was skipped and not a dry run, prints how to install
44+
* 8. If installation was skipped and not a dry run, prints how to install
4645
* dependencies manually via `noticeSkippedInstall`.
46+
* 9. Shows how to run the project via `noticeHowToRun`.
4747
*/
4848
const runInit = (options: InitCommand) =>
4949
pipe(
@@ -56,8 +56,8 @@ const runInit = (options: InitCommand) =>
5656
when(isDry, handleDryRun),
5757
unless(isDry, handleHydRun),
5858
tap(recommendConfigEnv),
59-
tap(noticeHowToRun),
6059
tap(unless(isDry, when(isSkipInstall, noticeSkippedInstall))),
60+
tap(noticeHowToRun),
6161
);
6262

6363
export default runInit;

0 commit comments

Comments
 (0)