Skip to content

Commit

Permalink
add a warning message after generating with lucia
Browse files Browse the repository at this point in the history
  • Loading branch information
ronanru committed Oct 21, 2023
1 parent 3bf1f04 commit 1af6da5
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions cli/src/helpers/logNextSteps.ts
Original file line number Diff line number Diff line change
Expand Up @@ -59,4 +59,10 @@ export const logNextSteps = async ({
`\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.`
);
}

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

0 comments on commit 1af6da5

Please sign in to comment.