@outbuild/supa-store 0.0.5 → 0.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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@outbuild/supa-store",
3
- "version": "0.0.5",
3
+ "version": "0.0.6",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "^18.2.0",
6
6
  "@angular/core": "^18.2.0",
@@ -2,12 +2,11 @@ import { EnvironmentProviders, makeEnvironmentProviders, ModuleWithProviders, Ng
2
2
  import { SupaStore } from "./supa-store.store"
3
3
  import { SUPABASE_CREDENTIALS } from "./common/token/supabase-credentials.token"
4
4
 
5
- export function provideSupaStore(supabaseUrl: string, supabaseKey: string): EnvironmentProviders {
6
- return makeEnvironmentProviders([
7
- {
8
- provide: SUPABASE_CREDENTIALS,
9
- useValue: { supabaseUrl, supabaseKey }
10
- },
11
- SupaStore
12
- ])
13
- }
5
+ export const provideSupaStore = (supabaseUrl: string, supabaseKey: string): EnvironmentProviders => makeEnvironmentProviders([
6
+ {
7
+ provide: SUPABASE_CREDENTIALS,
8
+ useValue: { supabaseUrl, supabaseKey }
9
+ },
10
+ SupaStore
11
+ ])
12
+