@supabase/supabase-js 2.76.2-canary.2 → 2.77.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.
- package/README.md +1 -274
- 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/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 +10 -8
- 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.
|
|
3
|
+
"version": "2.77.0",
|
|
4
4
|
"description": "Isomorphic Javascript SDK for Supabase",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"javascript",
|
|
@@ -25,8 +25,7 @@
|
|
|
25
25
|
"directory": "packages/core/supabase-js"
|
|
26
26
|
},
|
|
27
27
|
"scripts": {
|
|
28
|
-
"
|
|
29
|
-
"build": "npm run clean && npm run build:main && npm run build:module && npm run build:umd",
|
|
28
|
+
"build": "npm run build:main && npm run build:module && npm run build:umd",
|
|
30
29
|
"build:main": "tsc -p tsconfig.json",
|
|
31
30
|
"build:module": "tsc -p tsconfig.module.json",
|
|
32
31
|
"build:umd": "webpack --env mode=production",
|
|
@@ -38,9 +37,12 @@
|
|
|
38
37
|
"test:integration": "jest --runInBand --detectOpenHandles test/integration.test.ts",
|
|
39
38
|
"test:integration:browser": "deno test --allow-all test/integration.browser.test.ts",
|
|
40
39
|
"test:edge-functions": "cd test/deno && npm run test:edge-functions",
|
|
40
|
+
"test:deno": "cd test/deno && npm run test",
|
|
41
41
|
"test:watch": "jest --watch --verbose false --silent false",
|
|
42
42
|
"test:node:playwright": "cd test/integration/node-browser && npm install && cp ../../../dist/umd/supabase.js . && npm run test",
|
|
43
43
|
"test:bun": "cd test/integration/bun && bun install && bun test",
|
|
44
|
+
"test:expo": "cd test/integration/expo && npm test",
|
|
45
|
+
"test:next": "cd test/integration/next && npm test",
|
|
44
46
|
"test:types": "tsd --files test/types/*.test-d.ts && jsr publish --dry-run --allow-dirty",
|
|
45
47
|
"docs": "typedoc --entryPoints src/index.ts --out docs/v2",
|
|
46
48
|
"docs:json": "typedoc --entryPoints src/index.ts --json docs/v2/spec.json --excludeExternals",
|
|
@@ -52,11 +54,11 @@
|
|
|
52
54
|
"update:test-deps:bun": "cd test/integration/bun && bun install"
|
|
53
55
|
},
|
|
54
56
|
"dependencies": {
|
|
55
|
-
"@supabase/auth-js": "2.
|
|
56
|
-
"@supabase/functions-js": "2.
|
|
57
|
-
"@supabase/postgrest-js": "2.
|
|
58
|
-
"@supabase/realtime-js": "2.
|
|
59
|
-
"@supabase/storage-js": "2.
|
|
57
|
+
"@supabase/auth-js": "2.77.0",
|
|
58
|
+
"@supabase/functions-js": "2.77.0",
|
|
59
|
+
"@supabase/postgrest-js": "2.77.0",
|
|
60
|
+
"@supabase/realtime-js": "2.77.0",
|
|
61
|
+
"@supabase/storage-js": "2.77.0",
|
|
60
62
|
"@supabase/node-fetch": "2.6.15"
|
|
61
63
|
},
|
|
62
64
|
"devDependencies": {
|
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.
|
|
7
|
+
export const version = '2.77.0'
|