@supabase/postgrest-js 2.72.1-canary.9 → 2.80.1-canary.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 -1
- package/dist/cjs/version.d.ts +1 -1
- package/dist/cjs/version.js +1 -1
- package/package.json +5 -5
- package/src/version.ts +1 -1
package/README.md
CHANGED
|
@@ -46,7 +46,7 @@ const postgrest = new PostgrestClient(REST_URL, {
|
|
|
46
46
|
|
|
47
47
|
## Development
|
|
48
48
|
|
|
49
|
-
This package is part of the [Supabase JavaScript monorepo](https://github.com/supabase/
|
|
49
|
+
This package is part of the [Supabase JavaScript monorepo](https://github.com/supabase/js-client-libs). To work on this package:
|
|
50
50
|
|
|
51
51
|
### Building
|
|
52
52
|
|
package/dist/cjs/version.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export declare const version = "2.
|
|
1
|
+
export declare const version = "2.80.1-canary.0";
|
|
2
2
|
//# sourceMappingURL=version.d.ts.map
|
package/dist/cjs/version.js
CHANGED
|
@@ -7,5 +7,5 @@ exports.version = void 0;
|
|
|
7
7
|
// - Debugging and support (identifying which version is running)
|
|
8
8
|
// - Telemetry and logging (version reporting in errors/analytics)
|
|
9
9
|
// - Ensuring build artifacts match the published package version
|
|
10
|
-
exports.version = '2.
|
|
10
|
+
exports.version = '2.80.1-canary.0';
|
|
11
11
|
//# sourceMappingURL=version.js.map
|
package/package.json
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@supabase/postgrest-js",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.80.1-canary.0",
|
|
4
4
|
"description": "Isomorphic PostgREST client",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"postgrest",
|
|
7
7
|
"supabase"
|
|
8
8
|
],
|
|
9
|
-
"homepage": "https://github.com/supabase/
|
|
10
|
-
"bugs": "https://github.com/supabase/
|
|
9
|
+
"homepage": "https://github.com/supabase/js-client-libs/tree/main/packages/core/postgrest-js",
|
|
10
|
+
"bugs": "https://github.com/supabase/js-client-libs/issues",
|
|
11
11
|
"license": "MIT",
|
|
12
12
|
"author": "Supabase",
|
|
13
13
|
"files": [
|
|
@@ -29,14 +29,14 @@
|
|
|
29
29
|
"types": "./dist/cjs/index.d.ts",
|
|
30
30
|
"repository": {
|
|
31
31
|
"type": "git",
|
|
32
|
-
"url": "https://github.com/supabase/
|
|
32
|
+
"url": "https://github.com/supabase/js-client-libs.git",
|
|
33
33
|
"directory": "packages/core/postgrest-js"
|
|
34
34
|
},
|
|
35
35
|
"scripts": {
|
|
36
36
|
"clean": "rimraf dist docs/v2",
|
|
37
37
|
"format": "prettier --write \"{src,test}/**/*.ts\" wrapper.mjs",
|
|
38
38
|
"format:check": "prettier --check \"{src,test}/**/*.ts\"",
|
|
39
|
-
"build": "npm run clean && npm run
|
|
39
|
+
"build": "npm run clean && npm run build:cjs && npm run build:esm",
|
|
40
40
|
"build:cjs": "tsc -p tsconfig.json",
|
|
41
41
|
"build:esm": "cpy wrapper.mjs dist/esm/",
|
|
42
42
|
"docs": "typedoc src/index.ts --out docs/v2",
|
package/src/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.80.1-canary.0'
|