File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff 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 */
4848const 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
6363export default runInit ;
You can’t perform that action at this time.
0 commit comments