@supabase/realtime-js 2.10.5 → 2.10.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.
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export declare const version = "2.10.
|
|
1
|
+
export declare const version = "2.10.6";
|
|
2
2
|
//# sourceMappingURL=version.d.ts.map
|
package/dist/main/lib/version.js
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export declare const version = "2.10.
|
|
1
|
+
export declare const version = "2.10.6";
|
|
2
2
|
//# sourceMappingURL=version.d.ts.map
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export const version = '2.10.
|
|
1
|
+
export const version = '2.10.6';
|
|
2
2
|
//# sourceMappingURL=version.js.map
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@supabase/realtime-js",
|
|
3
|
-
"version": "2.10.
|
|
3
|
+
"version": "2.10.6",
|
|
4
4
|
"description": "Listen to realtime updates to your PostgreSQL database",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"realtime",
|
|
@@ -23,7 +23,6 @@
|
|
|
23
23
|
"repository": "https://github.com/supabase/realtime-js",
|
|
24
24
|
"author": "Supabase",
|
|
25
25
|
"license": "MIT",
|
|
26
|
-
"type": "module",
|
|
27
26
|
"scripts": {
|
|
28
27
|
"clean": "rimraf dist docs/v2",
|
|
29
28
|
"format": "prettier --write \"{src,test}/**/*.ts\"",
|
|
@@ -34,7 +33,9 @@
|
|
|
34
33
|
"test:watch": "vitest",
|
|
35
34
|
"coverage": "vitest run --coverage",
|
|
36
35
|
"docs": "typedoc src/index.ts --out docs/v2",
|
|
37
|
-
"docs:json": "typedoc --json docs/v2/spec.json --excludeExternals src/index.ts"
|
|
36
|
+
"docs:json": "typedoc --json docs/v2/spec.json --excludeExternals src/index.ts",
|
|
37
|
+
"check-exports": "attw --pack .",
|
|
38
|
+
"ci": "run-s test coverage"
|
|
38
39
|
},
|
|
39
40
|
"dependencies": {
|
|
40
41
|
"@supabase/node-fetch": "^2.6.14",
|
|
@@ -43,6 +44,8 @@
|
|
|
43
44
|
"ws": "^8.14.2"
|
|
44
45
|
},
|
|
45
46
|
"devDependencies": {
|
|
47
|
+
"@arethetypeswrong/cli": "^0.16.2",
|
|
48
|
+
"@types/sinon": "^17.0.3",
|
|
46
49
|
"@vitest/coverage-v8": "^2.0.5",
|
|
47
50
|
"eslint": "^7.0.0",
|
|
48
51
|
"esm": "^3.2.25",
|
|
@@ -53,7 +56,7 @@
|
|
|
53
56
|
"nyc": "^15.1.0",
|
|
54
57
|
"prettier": "^2.1.2",
|
|
55
58
|
"semantic-release-plugin-update-version-in-files": "^1.1.0",
|
|
56
|
-
"sinon": "^
|
|
59
|
+
"sinon": "^18.0.0",
|
|
57
60
|
"typedoc": "^0.22.16",
|
|
58
61
|
"typescript": "^4.0.3",
|
|
59
62
|
"vitest": "^2.0.5"
|
package/src/lib/version.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export const version = '2.10.
|
|
1
|
+
export const version = '2.10.6'
|