suparisma 0.0.4 → 1.0.0

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.
@@ -0,0 +1,10 @@
1
+ // THIS FILE IS AUTO-GENERATED - DO NOT EDIT DIRECTLY
2
+
3
+ import { createClient } from '@supabase/supabase-js';
4
+
5
+ console.log(`NEXT_PUBLIC_SUPABASE_URL: ${process.env.NEXT_PUBLIC_SUPABASE_URL}`);
6
+ console.log(`NEXT_PUBLIC_SUPABASE_ANON_KEY: ${process.env.NEXT_PUBLIC_SUPABASE_ANON_KEY}`);
7
+ export const supabase = createClient(
8
+ process.env.NEXT_PUBLIC_SUPABASE_URL!,
9
+ process.env.NEXT_PUBLIC_SUPABASE_ANON_KEY!
10
+ );
package/package.json CHANGED
@@ -1,8 +1,12 @@
1
1
  {
2
2
  "name": "suparisma",
3
- "version": "0.0.4",
3
+ "version": "1.0.0",
4
4
  "description": "Opinionated typesafe React realtime CRUD hooks generator for all your Supabase tables, powered by Prisma.",
5
5
  "main": "dist/index.js",
6
+ "repository": {
7
+ "type": "git",
8
+ "url": "https://github.com/Moe03/suparisma"
9
+ },
6
10
  "scripts": {
7
11
  "build": "tsc",
8
12
  "start": "node dist/index.js",