@rasputin-ai/elysia 0.5.0-alpha.1 → 0.5.0-alpha.2
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 +2 -2
- package/dist/index.js +1 -1
- package/dist/sdk-meta.d.ts +1 -1
- package/package.json +3 -3
package/README.md
CHANGED
|
@@ -81,7 +81,7 @@ The Elysia plugin scopes each HTTP request as an execution automatically. For ba
|
|
|
81
81
|
|
|
82
82
|
## Automatic instrumentation
|
|
83
83
|
|
|
84
|
-
Build-time instrumentation is the
|
|
84
|
+
Build-time instrumentation is the production default. Transform compiled unbundled JavaScript after `tsc` so the running process never loads the TypeScript compiler:
|
|
85
85
|
|
|
86
86
|
```json
|
|
87
87
|
{
|
|
@@ -93,7 +93,7 @@ Build-time instrumentation is the preferred high-performance mode. Transform com
|
|
|
93
93
|
}
|
|
94
94
|
```
|
|
95
95
|
|
|
96
|
-
|
|
96
|
+
Node `--import` and Bun `--preload` remain compatibility and development fallbacks. They transform application source as it loads, which pulls compiler infrastructure into the process and has materially higher RSS. Do not use those loader measurements in low-overhead comparisons. In `NODE_ENV=production` the loaders print a one-time warning recommending `rasputin-instrument`. Set `RASPUTIN_SUPPRESS_RUNTIME_TRANSFORM_WARNING=1` to hide it.
|
|
97
97
|
|
|
98
98
|
```json
|
|
99
99
|
{
|
package/dist/index.js
CHANGED
|
@@ -13,7 +13,7 @@ import { Elysia } from "elysia";
|
|
|
13
13
|
|
|
14
14
|
// src/sdk-meta.ts
|
|
15
15
|
var SDK_NAME = "@rasputin-ai/elysia";
|
|
16
|
-
var SDK_VERSION = "0.5.0-alpha.
|
|
16
|
+
var SDK_VERSION = "0.5.0-alpha.2";
|
|
17
17
|
|
|
18
18
|
// src/rasputin-init.ts
|
|
19
19
|
var withExecution = (client, execution, installRuntime, manifest) => {
|
package/dist/sdk-meta.d.ts
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@rasputin-ai/elysia",
|
|
3
|
-
"version": "0.5.0-alpha.
|
|
3
|
+
"version": "0.5.0-alpha.2",
|
|
4
4
|
"description": "Official Rasputin AI SDK for Elysia.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"exports": {
|
|
@@ -35,8 +35,8 @@
|
|
|
35
35
|
"access": "public"
|
|
36
36
|
},
|
|
37
37
|
"dependencies": {
|
|
38
|
-
"@rasputin-ai/core": "0.5.0-alpha.
|
|
39
|
-
"@rasputin-ai/node": "0.5.0-alpha.
|
|
38
|
+
"@rasputin-ai/core": "0.5.0-alpha.2",
|
|
39
|
+
"@rasputin-ai/node": "0.5.0-alpha.2"
|
|
40
40
|
},
|
|
41
41
|
"peerDependencies": {
|
|
42
42
|
"elysia": ">=1.4.0 <2"
|