Skip to content

Commit bd3c787

Browse files
committed
chore(repo): other references to client libraries
1 parent 03e7699 commit bd3c787

File tree

6 files changed

+8
-8
lines changed

6 files changed

+8
-8
lines changed

.cursorrules

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Cursor Rules for Supabase JS Libraries Monorepo
22

3-
You are working in a unified Nx monorepo that consolidates all Supabase JavaScript client libraries. This migration from 6 separate repositories addresses maintenance overhead, dependency duplication, and release coordination challenges.
3+
You are working in a unified Nx monorepo that consolidates all Supabase JavaScript SDKs. This migration from 6 separate repositories addresses maintenance overhead, dependency duplication, and release coordination challenges.
44

55
## Repository Context
66

CLAUDE.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Claude AI Instructions for Supabase JS Libraries Monorepo
22

3-
You are assisting with development in a unified Nx monorepo that consolidates all Supabase JavaScript client libraries, built with Nx for optimal developer experience and maintainability. This strategic migration from 6 separate repositories addresses critical maintenance overhead, dependency duplication, and release coordination challenges while maintaining **zero breaking changes** for consumers.
3+
You are assisting with development in a unified Nx monorepo that consolidates all Supabase JavaScript SDKs, built with Nx for optimal developer experience and maintainability. This strategic migration from 6 separate repositories addresses critical maintenance overhead, dependency duplication, and release coordination challenges while maintaining **zero breaking changes** for consumers.
44

55
> **📚 Essential Documentation**: Always refer to these guides for detailed information:
66
>
@@ -777,4 +777,4 @@ _No user-facing changes in this release._
777777
- Unchanged packages show "No user-facing changes"
778778
- Single npm install updates entire SDK suite
779779

780-
Remember: This monorepo optimizes for developer experience and maintenance efficiency while ensuring zero breaking changes for the millions of developers using Supabase client libraries.
780+
Remember: This monorepo optimizes for developer experience and maintenance efficiency while ensuring zero breaking changes for the millions of developers using Supabase SDKs.

docs/MIGRATION.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -325,7 +325,7 @@ Use these names with Nx commands:
325325
- `postgrest-js` - PostgREST library
326326
- `realtime-js` - Realtime library
327327
- `storage-js` - Storage library
328-
- `supabase-js` - Main client library
328+
- `supabase-js` - Main SDK
329329

330330
### Useful New Commands
331331

packages/core/auth-js/src/lib/error-codes.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/**
22
* Known error codes. Note that the server may also return other error codes
3-
* not included in this list (if the client library is older than the version
3+
* not included in this list (if the SDK is older than the version
44
* on the server).
55
*/
66
export type ErrorCode =

packages/core/postgrest-js/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -188,7 +188,7 @@ It performs these steps:
188188
- **Port 3000** - PostgREST server (API)
189189
- **Port 8080** - Database schema endpoint (for type generation)
190190

191-
**Note:** Unlike a full Supabase instance, this uses a minimal PostgREST setup specifically for testing the client library.
191+
**Note:** Unlike a full Supabase instance, this uses a minimal PostgREST setup specifically for testing the SDK.
192192

193193
### Contributing
194194

packages/core/supabase-js/src/lib/types.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -97,9 +97,9 @@ export type SupabaseClientOptions<SchemaName> = {
9797
/**
9898
* Optional function for using a third-party authentication system with
9999
* Supabase. The function should return an access token or ID token (JWT) by
100-
* obtaining it from the third-party auth client library. Note that this
100+
* obtaining it from the third-party auth SDK. Note that this
101101
* function may be called concurrently and many times. Use memoization and
102-
* locking techniques if this is not supported by the client libraries.
102+
* locking techniques if this is not supported by the SDKs.
103103
*
104104
* When set, the `auth` namespace of the Supabase client cannot be used.
105105
* Create another client if you wish to use Supabase Auth and third-party

0 commit comments

Comments
 (0)