@absolutejs/absolute 0.19.0-beta.1061 → 0.19.0-beta.1063

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.
@@ -11,9 +11,6 @@ export declare const prepare: (configOrPath?: string) => Promise<{
11
11
  } & {
12
12
  typebox: {};
13
13
  error: {};
14
- } & {
15
- typebox: {};
16
- error: {};
17
14
  }, {
18
15
  schema: {};
19
16
  standaloneSchema: {};
@@ -35,13 +32,6 @@ export declare const prepare: (configOrPath?: string) => Promise<{
35
32
  macroFn: {};
36
33
  parser: {};
37
34
  response: {};
38
- } & {
39
- schema: {};
40
- standaloneSchema: {};
41
- macro: {};
42
- macroFn: {};
43
- parser: {};
44
- response: {};
45
35
  } & {
46
36
  schema: {};
47
37
  standaloneSchema: {};
@@ -301,12 +291,6 @@ export declare const prepare: (configOrPath?: string) => Promise<{
301
291
  schema: {};
302
292
  standaloneSchema: {};
303
293
  response: {};
304
- } & {
305
- derive: {};
306
- resolve: {};
307
- schema: {};
308
- standaloneSchema: {};
309
- response: {};
310
294
  }>;
311
295
  manifest: Record<string, string>;
312
296
  } | {
@@ -318,9 +302,6 @@ export declare const prepare: (configOrPath?: string) => Promise<{
318
302
  }, {
319
303
  typebox: {};
320
304
  error: {};
321
- } & {
322
- typebox: {};
323
- error: {};
324
305
  }, {
325
306
  schema: {};
326
307
  standaloneSchema: {};
@@ -328,13 +309,6 @@ export declare const prepare: (configOrPath?: string) => Promise<{
328
309
  macroFn: {};
329
310
  parser: {};
330
311
  response: {};
331
- } & {
332
- schema: {};
333
- standaloneSchema: {};
334
- macro: {};
335
- macroFn: {};
336
- parser: {};
337
- response: {};
338
312
  } & {
339
313
  schema: {};
340
314
  standaloneSchema: {};
@@ -422,12 +396,6 @@ export declare const prepare: (configOrPath?: string) => Promise<{
422
396
  schema: {};
423
397
  standaloneSchema: {};
424
398
  response: {};
425
- } & {
426
- derive: {};
427
- resolve: {};
428
- schema: {};
429
- standaloneSchema: {};
430
- response: {};
431
399
  }>;
432
400
  manifest: Record<string, string>;
433
401
  }>;
@@ -111,6 +111,17 @@ export type CompileConfig = {
111
111
  * and start never evaluate `.node` files as ESM imports.
112
112
  */
113
113
  nativeAssets?: CompileNativeAssetConfig[];
114
+ /**
115
+ * Bun bundler plugins applied to the standalone server bundle produced by
116
+ * `absolute compile`. The server `compile` pass runs its own `Bun.build`,
117
+ * which does NOT pick up `bunBuild.plugins` (those target the client
118
+ * bundles only). This is the escape hatch for deps whose published source
119
+ * is bundle-hostile under `bun build --compile` — register an `onLoad`
120
+ * plugin here to rewrite their source so the standalone binary can embed
121
+ * them (e.g. shimming a CJS `debug` default-import interop, or stubbing a
122
+ * lazy `require`). Runs after Absolute's internal compile plugins.
123
+ */
124
+ plugins?: NonNullable<BunBuildConfig['plugins']>;
114
125
  };
115
126
  export type HttpReadyConfig = {
116
127
  type?: 'http';
package/package.json CHANGED
@@ -4,9 +4,9 @@
4
4
  "absolute": "dist/cli/index.js"
5
5
  },
6
6
  "dependencies": {
7
+ "@elysia/static": "^1.4.11",
7
8
  "@elysiajs/openapi": "^1.4.15",
8
9
  "@elysiajs/server-timing": "^1.4.0",
9
- "@elysiajs/static": "^1.4.0",
10
10
  "zustand": "^5.0.12"
11
11
  },
12
12
  "description": "A fullstack meta-framework for building web applications with TypeScript",
@@ -414,7 +414,7 @@
414
414
  ]
415
415
  }
416
416
  },
417
- "version": "0.19.0-beta.1061",
417
+ "version": "0.19.0-beta.1063",
418
418
  "workspaces": [
419
419
  "tests/fixtures/*",
420
420
  "tests/fixtures/_packages/*"