@alinsafawi/aegis-auth 0.1.6 → 0.1.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.js +10 -3
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -23951,9 +23951,13 @@ dist
|
|
|
23951
23951
|
});
|
|
23952
23952
|
}
|
|
23953
23953
|
printDone(app.appName);
|
|
23954
|
-
const
|
|
23954
|
+
const isNew = mode === "new" && projectName;
|
|
23955
23955
|
printNextSteps([
|
|
23956
|
-
...
|
|
23956
|
+
...isNew ? [{
|
|
23957
|
+
n: 0,
|
|
23958
|
+
title: `Enter your project ${import_chalk8.default.dim("(run every command below from inside here)")}`,
|
|
23959
|
+
lines: [`${import_chalk8.default.green(`cd ${projectName}`)}`]
|
|
23960
|
+
}] : [],
|
|
23957
23961
|
{
|
|
23958
23962
|
n: 1,
|
|
23959
23963
|
title: "Fill in .env.local",
|
|
@@ -23967,7 +23971,10 @@ dist
|
|
|
23967
23971
|
{
|
|
23968
23972
|
n: 2,
|
|
23969
23973
|
title: "Apply the database schema",
|
|
23970
|
-
lines: [
|
|
23974
|
+
lines: [
|
|
23975
|
+
...isNew ? [`${import_chalk8.default.green(`cd ${projectName}`)} ${import_chalk8.default.dim("\u2190 if not already inside")}`] : [],
|
|
23976
|
+
`${import_chalk8.default.green("npx prisma migrate dev --name init")}`
|
|
23977
|
+
]
|
|
23971
23978
|
},
|
|
23972
23979
|
{
|
|
23973
23980
|
n: 3,
|