@marvs13/marvinel-nextjs-supabase-starting-kit 1.0.6 → 1.0.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.
Files changed (2) hide show
  1. package/cli.js +6 -0
  2. package/package.json +1 -1
package/cli.js CHANGED
@@ -88,6 +88,12 @@ try {
88
88
  copyFolderSync(templatePath, path.join(projectPath, "src"));
89
89
 
90
90
  console.log(`\nāœ… Setup complete! Project is ready.`);
91
+ console.log(
92
+ `\nšŸ“ TODO : Don't forget to setup your Supabase key in env.local`,
93
+ );
94
+ console.log(
95
+ `\nNext steps:\ncd ${projectName}\n${packageManager === "bun" ? "bun dev" : "npm run dev"}`,
96
+ );
91
97
  } catch (error) {
92
98
  console.error("āŒ Installation failed:", error);
93
99
  process.exit(1);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@marvs13/marvinel-nextjs-supabase-starting-kit",
3
- "version": "1.0.6",
3
+ "version": "1.0.7",
4
4
  "description": "A modern Next.js + Supabase starting kit with Tailwind, Zod, and shadcn/ui.",
5
5
  "main": "cli.js",
6
6
  "bin": {