@absolutejs/absolute 0.19.0-beta.387 → 0.19.0-beta.389

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.
@@ -1,6 +1,13 @@
1
1
  import { Elysia } from 'elysia';
2
+ export type DevtoolsJsonOptions = {
3
+ projectRoot?: string;
4
+ uuid?: string;
5
+ uuidCachePath?: string;
6
+ normalizeForWindowsContainer?: boolean;
7
+ };
8
+ export declare const resolveDevtoolsUuidCachePath: (buildDir: string, uuidCachePath?: string) => string;
2
9
  export declare const normalizeDevtoolsWorkspaceRoot: (root: string) => string;
3
- export declare const devtoolsJson: (buildDir: string, projectRoot?: string) => Elysia<"", {
10
+ export declare const devtoolsJson: (buildDir: string, options?: DevtoolsJsonOptions) => Elysia<"", {
4
11
  decorator: {};
5
12
  store: {};
6
13
  derive: {};
@@ -1,2 +1,3 @@
1
1
  export * from './networking';
2
2
  export * from './pageRouter';
3
+ export * from './devtoolsJson';
@@ -48,6 +48,12 @@ export type BuildConfig = {
48
48
  mode?: 'production' | 'development';
49
49
  dev?: {
50
50
  https?: boolean;
51
+ devtools?: {
52
+ projectRoot?: string;
53
+ uuid?: string;
54
+ uuidCachePath?: string;
55
+ normalizeForWindowsContainer?: boolean;
56
+ };
51
57
  };
52
58
  static?: StaticConfig;
53
59
  images?: ImageConfig;
package/package.json CHANGED
@@ -314,5 +314,5 @@
314
314
  "typecheck": "bun run src/cli/index.ts typecheck --config example/absolute.config.ts"
315
315
  },
316
316
  "types": "./dist/src/index.d.ts",
317
- "version": "0.19.0-beta.387"
317
+ "version": "0.19.0-beta.389"
318
318
  }