@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 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 preferred high-performance mode. Transform compiled unbundled JavaScript after `tsc` so the production process never loads TypeScript:
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
- Load-time transformation remains available as a compatibility fallback:
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.1";
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) => {
@@ -1,4 +1,4 @@
1
1
  /** Generated by scripts/generate-sdk-meta.ts — do not edit. */
2
2
  export declare const SDK_NAME = "@rasputin-ai/elysia";
3
- export declare const SDK_VERSION = "0.5.0-alpha.1";
3
+ export declare const SDK_VERSION = "0.5.0-alpha.2";
4
4
  //# sourceMappingURL=sdk-meta.d.ts.map
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rasputin-ai/elysia",
3
- "version": "0.5.0-alpha.1",
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.1",
39
- "@rasputin-ai/node": "0.5.0-alpha.1"
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"