create-rotor 0.3.7 → 0.3.9

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 CHANGED
@@ -1182,12 +1182,11 @@ var MODULES = {
1182
1182
  },
1183
1183
  drizzle: {
1184
1184
  name: "drizzle",
1185
- label: "Drizzle + Supabase",
1185
+ label: "Drizzle",
1186
1186
  hint: "Database",
1187
1187
  files: ["lib/db.ts", "lib/schema.ts", "drizzle.config.ts"],
1188
1188
  dependencies: {
1189
1189
  "drizzle-orm": "0.45.1",
1190
- "@supabase/supabase-js": "2.99.1",
1191
1190
  postgres: "3.4.8"
1192
1191
  },
1193
1192
  devDependencies: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-rotor",
3
- "version": "0.3.7",
3
+ "version": "0.3.9",
4
4
  "description": "Scaffold Next.js projects with Bun, Tailwind, Biome, and more",
5
5
  "type": "module",
6
6
  "bin": "dist/index.js",
@@ -1,7 +1,5 @@
1
1
  # [drizzle]
2
- DATABASE_URL=postgresql://user:password@localhost:5432/dbname
3
- SUPABASE_URL=https://your-project.supabase.co
4
- SUPABASE_ANON_KEY=your-anon-key
2
+ DATABASE_URL=postgresql://postgres.xxxx:password@aws-0-ap-southeast-1.pooler.supabase.com:6543/postgres
5
3
  # [/drizzle]
6
4
 
7
5
  # [ai]
@@ -1,4 +1,7 @@
1
1
  {
2
2
  "editor.defaultFormatter": "biomejs.biome",
3
- "editor.formatOnSave": true
3
+ "editor.formatOnSave": true,
4
+ "editor.codeActionsOnSave": {
5
+ "source.organizeImports.biome": "explicit"
6
+ }
4
7
  }
@@ -36,4 +36,5 @@ Next.js App Router project.
36
36
  ```bash
37
37
  claude skill install vercel-labs/next-skills/next-best-practices # Next.js best practices
38
38
  claude skill install vercel-labs/agent-skills/react-best-practices # React performance optimization
39
+ claude skill install supabase/agent-skills/postgres-best-practices # Postgres best practices (if using Supabase)
39
40
  ```
@@ -24,7 +24,6 @@
24
24
  "tw-animate-css": "1.4.0",
25
25
  "swr": "2.4.1",
26
26
  "drizzle-orm": "0.45.1",
27
- "@supabase/supabase-js": "2.99.1",
28
27
  "postgres": "3.4.8",
29
28
  "ai": "6.0.116",
30
29
  "@ai-sdk/openai": "3.0.41"
@@ -2,6 +2,6 @@ const config = {
2
2
  plugins: {
3
3
  '@tailwindcss/postcss': {},
4
4
  },
5
- };
5
+ }
6
6
 
7
- export default config;
7
+ export default config