Skip to content

Commit

Permalink
chore: rm outdated callouts
Browse files Browse the repository at this point in the history
  • Loading branch information
juliusmarminge committed May 7, 2024
1 parent 1d89b3e commit 9d38a19
Showing 1 changed file with 0 additions and 19 deletions.
19 changes: 0 additions & 19 deletions cli/src/helpers/logNextSteps.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@ import { isInsideGitRepo, isRootGitRepo } from "./git.js";
export const logNextSteps = async ({
projectName = DEFAULT_APP_NAME,
packages,
appRouter,
noInstall,
projectDir,
databaseProvider,
Expand Down Expand Up @@ -56,22 +55,4 @@ export const logNextSteps = async ({
logger.info(` git init`);
}
logger.info(` git commit -m "initial commit"`);

if (appRouter) {
logger.warn(
`\nThank you for trying out the App Router option. If you encounter any issues, please open an issue!`
);
}

if (packages?.drizzle.inUse) {
logger.warn(
`\nThank you for trying out the new Drizzle option. If you encounter any issues, please open an issue!`
);
}

if (databaseProvider === "planetscale") {
logger.warn(
`\nNote: We use the PlanetScale driver so that you can query your data in edge runtimes. If you want to use a different driver, you'll need to change it yourself.`
);
}
};

0 comments on commit 9d38a19

Please sign in to comment.