@supabase/supabase-js 2.87.2 → 2.87.3-canary.1
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/esm/wrapper.mjs +87 -15
- package/dist/main/lib/version.d.ts +1 -1
- package/dist/main/lib/version.d.ts.map +1 -1
- package/dist/main/lib/version.js +1 -1
- package/dist/main/lib/version.js.map +1 -1
- package/dist/module/SupabaseClient.js +4 -4
- package/dist/module/index.js +2 -2
- package/dist/module/lib/constants.js +1 -1
- package/dist/module/lib/version.d.ts +1 -1
- package/dist/module/lib/version.d.ts.map +1 -1
- package/dist/module/lib/version.js +1 -1
- package/dist/module/lib/version.js.map +1 -1
- package/dist/umd/supabase.js +1 -1
- package/package.json +7 -7
- package/src/lib/version.ts +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@supabase/supabase-js",
|
|
3
|
-
"version": "2.87.
|
|
3
|
+
"version": "2.87.3-canary.1",
|
|
4
4
|
"description": "Isomorphic Javascript SDK for Supabase",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"javascript",
|
|
@@ -36,7 +36,7 @@
|
|
|
36
36
|
"scripts": {
|
|
37
37
|
"build": "npm run build:main && npm run build:module && npm run build:esm && npm run build:umd",
|
|
38
38
|
"build:main": "tsc -p tsconfig.json",
|
|
39
|
-
"build:module": "tsc -p tsconfig.module.json",
|
|
39
|
+
"build:module": "tsc -p tsconfig.module.json && node scripts/fix-esm-extensions.cjs",
|
|
40
40
|
"build:esm": "node scripts/copy-wrapper.cjs",
|
|
41
41
|
"build:umd": "webpack --env mode=production",
|
|
42
42
|
"test": "npm run test:types && npm run test:run",
|
|
@@ -64,11 +64,11 @@
|
|
|
64
64
|
"update:test-deps:bun": "cd test/integration/bun && bun install"
|
|
65
65
|
},
|
|
66
66
|
"dependencies": {
|
|
67
|
-
"@supabase/auth-js": "2.87.
|
|
68
|
-
"@supabase/functions-js": "2.87.
|
|
69
|
-
"@supabase/postgrest-js": "2.87.
|
|
70
|
-
"@supabase/realtime-js": "2.87.
|
|
71
|
-
"@supabase/storage-js": "2.87.
|
|
67
|
+
"@supabase/auth-js": "2.87.3-canary.1",
|
|
68
|
+
"@supabase/functions-js": "2.87.3-canary.1",
|
|
69
|
+
"@supabase/postgrest-js": "2.87.3-canary.1",
|
|
70
|
+
"@supabase/realtime-js": "2.87.3-canary.1",
|
|
71
|
+
"@supabase/storage-js": "2.87.3-canary.1"
|
|
72
72
|
},
|
|
73
73
|
"devDependencies": {
|
|
74
74
|
"jsr": "^0.13.5",
|
package/src/lib/version.ts
CHANGED
|
@@ -4,4 +4,4 @@
|
|
|
4
4
|
// - Debugging and support (identifying which version is running)
|
|
5
5
|
// - Telemetry and logging (version reporting in errors/analytics)
|
|
6
6
|
// - Ensuring build artifacts match the published package version
|
|
7
|
-
export const version = '2.87.
|
|
7
|
+
export const version = '2.87.3-canary.1'
|