@flowselections/floriday-klanten-module 1.0.5 → 1.0.6

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.
@@ -18,7 +18,7 @@ function createSupabaseClient() {
18
18
  }
19
19
  let _supabase;
20
20
  // Import the supabase client like this:
21
- // import { supabase } from "@/integrations/supabase/client";
21
+ // import { supabase } from "../../integrations/supabase/client";
22
22
  export const supabase = new Proxy({}, {
23
23
  get(_, prop, receiver) {
24
24
  if (!_supabase)
@@ -40,7 +40,7 @@ function createSupabaseAdminClient() {
40
40
  let _supabaseAdmin;
41
41
  // Server-side Supabase client with service role - bypasses RLS
42
42
  // SECURITY: Only use this for trusted server-side operations, never expose to client code
43
- // Import like: import { supabaseAdmin } from "@/integrations/supabase/client.server";
43
+ // Import like: import { supabaseAdmin } from "../../integrations/supabase/client.server";
44
44
  export const supabaseAdmin = new Proxy({}, {
45
45
  get(_, prop, receiver) {
46
46
  if (!_supabaseAdmin)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@flowselections/floriday-klanten-module",
3
- "version": "1.0.5",
3
+ "version": "1.0.6",
4
4
  "private": false,
5
5
  "sideEffects": false,
6
6
  "type": "module",
@@ -22,7 +22,7 @@
22
22
  "scripts": {
23
23
  "dev": "vite dev",
24
24
  "build": "vite build",
25
- "build:lib": "tsc -p tsconfig.build.json && node -e \"require('fs').writeFileSync('dist-lib/styles.css', '@source \\\"./\\\";\\n')\"",
25
+ "build:lib": "tsc -p tsconfig.build.json && tsc-alias -p tsconfig.build.json && node -e \"require('fs').writeFileSync('dist-lib/styles.css', '@source \\\"./\\\";\\n')\"",
26
26
  "build:lib:watch": "tsc -p tsconfig.build.json --watch",
27
27
  "build:dev": "vite build --mode development",
28
28
  "preview": "vite preview",
@@ -67,6 +67,7 @@
67
67
  "tailwindcss": "^4.2.1",
68
68
  "tw-animate-css": "^1.3.4",
69
69
  "typescript": "^5.8.3",
70
+ "tsc-alias": "^1.8.0",
70
71
  "typescript-eslint": "^8.56.1",
71
72
  "vite": "^7.3.1",
72
73
  "vite-tsconfig-paths": "^6.0.2",