@supabase/functions-js 2.105.5-beta.8 → 2.105.5-beta.9
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 +11 -11
- package/dist/main/version.d.ts +1 -1
- package/dist/main/version.js +1 -1
- package/dist/module/version.d.ts +1 -1
- package/dist/module/version.js +1 -1
- package/dist/tsconfig.module.tsbuildinfo +1 -1
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +11 -11
- package/src/version.ts +1 -1
- package/LICENSE +0 -21
package/README.md
CHANGED
|
@@ -75,19 +75,19 @@ This package is part of the [Supabase JavaScript monorepo](https://github.com/su
|
|
|
75
75
|
|
|
76
76
|
```bash
|
|
77
77
|
# Complete build (from monorepo root)
|
|
78
|
-
|
|
78
|
+
npx nx build functions-js
|
|
79
79
|
|
|
80
80
|
# Build with watch mode for development
|
|
81
|
-
|
|
81
|
+
npx nx build functions-js --watch
|
|
82
82
|
|
|
83
83
|
# Individual build targets
|
|
84
|
-
|
|
85
|
-
|
|
84
|
+
npx nx build:main functions-js # CommonJS build (dist/main/)
|
|
85
|
+
npx nx build:module functions-js # ES Modules build (dist/module/)
|
|
86
86
|
|
|
87
87
|
# Other useful commands
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
88
|
+
npx nx clean functions-js # Clean build artifacts
|
|
89
|
+
npx nx typecheck functions-js # TypeScript type checking
|
|
90
|
+
npx nx docs functions-js # Generate documentation
|
|
91
91
|
```
|
|
92
92
|
|
|
93
93
|
#### Build Outputs
|
|
@@ -102,16 +102,16 @@ pnpm nx docs functions-js # Generate documentation
|
|
|
102
102
|
|
|
103
103
|
```bash
|
|
104
104
|
# Run all tests (from monorepo root)
|
|
105
|
-
|
|
105
|
+
npx nx test functions-js
|
|
106
106
|
|
|
107
107
|
# Run tests with coverage report
|
|
108
|
-
|
|
108
|
+
npx nx test functions-js --coverage
|
|
109
109
|
|
|
110
110
|
# Run tests in watch mode during development
|
|
111
|
-
|
|
111
|
+
npx nx test functions-js --watch
|
|
112
112
|
|
|
113
113
|
# CI test command (runs with coverage)
|
|
114
|
-
|
|
114
|
+
npx nx test:ci functions-js
|
|
115
115
|
```
|
|
116
116
|
|
|
117
117
|
#### Test Requirements
|
package/dist/main/version.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export declare const version = "2.105.5-beta.
|
|
1
|
+
export declare const version = "2.105.5-beta.9";
|
|
2
2
|
//# sourceMappingURL=version.d.ts.map
|
package/dist/main/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.105.5-beta.
|
|
10
|
+
exports.version = '2.105.5-beta.9';
|
|
11
11
|
//# sourceMappingURL=version.js.map
|
package/dist/module/version.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export declare const version = "2.105.5-beta.
|
|
1
|
+
export declare const version = "2.105.5-beta.9";
|
|
2
2
|
//# sourceMappingURL=version.d.ts.map
|
package/dist/module/version.js
CHANGED
|
@@ -4,5 +4,5 @@
|
|
|
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.105.5-beta.
|
|
7
|
+
export const version = '2.105.5-beta.9';
|
|
8
8
|
//# sourceMappingURL=version.js.map
|