@absolutejs/absolute 0.19.0-beta.387 → 0.19.0-beta.388
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/dist/angular/index.js +2 -2
- package/dist/angular/index.js.map +1 -1
- package/dist/angular/server.js +2 -2
- package/dist/angular/server.js.map +1 -1
- package/dist/build.js +12 -3
- package/dist/build.js.map +3 -3
- package/dist/index.js +37 -12
- package/dist/index.js.map +7 -6
- package/dist/src/plugins/devtoolsJson.d.ts +8 -1
- package/dist/src/plugins/index.d.ts +1 -0
- package/dist/types/build.d.ts +6 -0
- package/package.json +1 -1
|
@@ -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,
|
|
10
|
+
export declare const devtoolsJson: (buildDir: string, options?: DevtoolsJsonOptions) => Elysia<"", {
|
|
4
11
|
decorator: {};
|
|
5
12
|
store: {};
|
|
6
13
|
derive: {};
|
package/dist/types/build.d.ts
CHANGED
|
@@ -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