Skip to content

Commit 9b7e318

Browse files
fix(cli): remove taze hint from next steps box
1 parent 0e82382 commit 9b7e318

File tree

1 file changed

+1
-8
lines changed

1 file changed

+1
-8
lines changed

apps/cli/src/helpers/core/post-installation.ts

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,6 @@ import type {
88
Runtime,
99
} from "../../types";
1010
import { getDockerStatus } from "../../utils/docker-utils";
11-
import { getPackageExecutionCommand } from "../../utils/package-runner";
12-
1311
export 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");

0 commit comments

Comments
 (0)