File tree Expand file tree Collapse file tree 1 file changed +1
-8
lines changed
apps/cli/src/helpers/core Expand file tree Collapse file tree 1 file changed +1
-8
lines changed Original file line number Diff line number Diff line change @@ -8,8 +8,6 @@ import type {
88 Runtime ,
99} from "../../types" ;
1010import { getDockerStatus } from "../../utils/docker-utils" ;
11- import { getPackageExecutionCommand } from "../../utils/package-runner" ;
12-
1311export async function displayPostInstallInstructions (
1412 config : ProjectConfig & { depsInstalled : boolean } ,
1513) {
@@ -119,8 +117,6 @@ export async function displayPostInstallInstructions(
119117 const hasSvelte = frontend ?. includes ( "svelte" ) ;
120118 const webPort = hasReactRouter || hasSvelte ? "5173" : "3001" ;
121119
122- const tazeCommand = getPackageExecutionCommand ( packageManager , "taze -r" ) ;
123-
124120 let output = `${ pc . bold ( "Next steps" ) } \n${ pc . cyan ( "1." ) } ${ cdCmd } \n` ;
125121 let stepCounter = 2 ;
126122
@@ -218,10 +214,7 @@ export async function displayPostInstallInstructions(
218214 if ( noOrmWarning ) output += `\n${ noOrmWarning . trim ( ) } \n` ;
219215 if ( bunWebNativeWarning ) output += `\n${ bunWebNativeWarning . trim ( ) } \n` ;
220216
221- output += `\n${ pc . bold ( "Update all dependencies:\n" ) } ${ pc . cyan (
222- tazeCommand ,
223- ) } \n\n`;
224- output += `${ pc . bold (
217+ output += `\n${ pc . bold (
225218 "Like Better-T-Stack?" ,
226219 ) } Please consider giving us a star\n on GitHub:\n`;
227220 output += pc . cyan ( "https://github.com/AmanVarshney01/create-better-t-stack" ) ;
You can’t perform that action at this time.
0 commit comments