@absolutejs/absolute 0.19.0-beta.464 → 0.19.0-beta.465
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/index.js +13 -9
- package/dist/index.js.map +3 -3
- package/dist/src/core/prepare.d.ts +78 -34
- package/dist/src/plugins/hmr.d.ts +75 -0
- package/package.json +7 -7
|
@@ -25,7 +25,7 @@ export declare const prepare: (configOrPath?: string) => Promise<{
|
|
|
25
25
|
macroFn: {};
|
|
26
26
|
parser: {};
|
|
27
27
|
response: {};
|
|
28
|
-
}, ({
|
|
28
|
+
}, ((({
|
|
29
29
|
".well-known": {
|
|
30
30
|
appspecific: {
|
|
31
31
|
"com.chrome.devtools.json": {
|
|
@@ -46,38 +46,7 @@ export declare const prepare: (configOrPath?: string) => Promise<{
|
|
|
46
46
|
};
|
|
47
47
|
};
|
|
48
48
|
};
|
|
49
|
-
}
|
|
50
|
-
hmr: {
|
|
51
|
-
subscribe: {
|
|
52
|
-
body: unknown;
|
|
53
|
-
params: {};
|
|
54
|
-
query: unknown;
|
|
55
|
-
headers: unknown;
|
|
56
|
-
response: {
|
|
57
|
-
200: Response;
|
|
58
|
-
};
|
|
59
|
-
};
|
|
60
|
-
};
|
|
61
|
-
} & {
|
|
62
|
-
"hmr-status": {
|
|
63
|
-
get: {
|
|
64
|
-
body: unknown;
|
|
65
|
-
params: {};
|
|
66
|
-
query: unknown;
|
|
67
|
-
headers: unknown;
|
|
68
|
-
response: {
|
|
69
|
-
200: Response | {
|
|
70
|
-
connectedClients: number;
|
|
71
|
-
isRebuilding: boolean;
|
|
72
|
-
manifestKeys: string[];
|
|
73
|
-
rebuildCount: number;
|
|
74
|
-
rebuildQueue: string[];
|
|
75
|
-
timestamp: number;
|
|
76
|
-
};
|
|
77
|
-
};
|
|
78
|
-
};
|
|
79
|
-
};
|
|
80
|
-
}) | ({
|
|
49
|
+
} | ({
|
|
81
50
|
".well-known": {
|
|
82
51
|
appspecific: {
|
|
83
52
|
"com.chrome.devtools.json": {
|
|
@@ -108,6 +77,81 @@ export declare const prepare: (configOrPath?: string) => Promise<{
|
|
|
108
77
|
response: {};
|
|
109
78
|
};
|
|
110
79
|
};
|
|
80
|
+
})) & {
|
|
81
|
+
"@src": {
|
|
82
|
+
"*": {
|
|
83
|
+
get: {
|
|
84
|
+
body: unknown;
|
|
85
|
+
params: {
|
|
86
|
+
"*": string;
|
|
87
|
+
} & {};
|
|
88
|
+
query: unknown;
|
|
89
|
+
headers: unknown;
|
|
90
|
+
response: {
|
|
91
|
+
200: Response;
|
|
92
|
+
422: {
|
|
93
|
+
type: "validation";
|
|
94
|
+
on: string;
|
|
95
|
+
summary?: string;
|
|
96
|
+
message?: string;
|
|
97
|
+
found?: unknown;
|
|
98
|
+
property?: string;
|
|
99
|
+
expected?: string;
|
|
100
|
+
};
|
|
101
|
+
};
|
|
102
|
+
};
|
|
103
|
+
};
|
|
104
|
+
};
|
|
105
|
+
} & {
|
|
106
|
+
"@stub": {
|
|
107
|
+
"*": {
|
|
108
|
+
get: {
|
|
109
|
+
body: unknown;
|
|
110
|
+
params: {
|
|
111
|
+
"*": string;
|
|
112
|
+
} & {};
|
|
113
|
+
query: unknown;
|
|
114
|
+
headers: unknown;
|
|
115
|
+
response: {
|
|
116
|
+
200: Response;
|
|
117
|
+
422: {
|
|
118
|
+
type: "validation";
|
|
119
|
+
on: string;
|
|
120
|
+
summary?: string;
|
|
121
|
+
message?: string;
|
|
122
|
+
found?: unknown;
|
|
123
|
+
property?: string;
|
|
124
|
+
expected?: string;
|
|
125
|
+
};
|
|
126
|
+
};
|
|
127
|
+
};
|
|
128
|
+
};
|
|
129
|
+
};
|
|
130
|
+
} & {
|
|
131
|
+
"@hmr": {
|
|
132
|
+
"*": {
|
|
133
|
+
get: {
|
|
134
|
+
body: unknown;
|
|
135
|
+
params: {
|
|
136
|
+
"*": string;
|
|
137
|
+
} & {};
|
|
138
|
+
query: unknown;
|
|
139
|
+
headers: unknown;
|
|
140
|
+
response: {
|
|
141
|
+
200: Response;
|
|
142
|
+
422: {
|
|
143
|
+
type: "validation";
|
|
144
|
+
on: string;
|
|
145
|
+
summary?: string;
|
|
146
|
+
message?: string;
|
|
147
|
+
found?: unknown;
|
|
148
|
+
property?: string;
|
|
149
|
+
expected?: string;
|
|
150
|
+
};
|
|
151
|
+
};
|
|
152
|
+
};
|
|
153
|
+
};
|
|
154
|
+
};
|
|
111
155
|
} & {
|
|
112
156
|
hmr: {
|
|
113
157
|
subscribe: {
|
|
@@ -139,7 +183,7 @@ export declare const prepare: (configOrPath?: string) => Promise<{
|
|
|
139
183
|
};
|
|
140
184
|
};
|
|
141
185
|
};
|
|
142
|
-
}), {
|
|
186
|
+
}) & {}) & {}, {
|
|
143
187
|
derive: {};
|
|
144
188
|
resolve: {};
|
|
145
189
|
schema: {};
|
|
@@ -16,6 +16,81 @@ export declare const hmr: (hmrState: HMRState, manifest: Record<string, string>,
|
|
|
16
16
|
parser: {};
|
|
17
17
|
response: {};
|
|
18
18
|
}, {
|
|
19
|
+
"@src": {
|
|
20
|
+
"*": {
|
|
21
|
+
get: {
|
|
22
|
+
body: unknown;
|
|
23
|
+
params: {
|
|
24
|
+
"*": string;
|
|
25
|
+
} & {};
|
|
26
|
+
query: unknown;
|
|
27
|
+
headers: unknown;
|
|
28
|
+
response: {
|
|
29
|
+
200: Response;
|
|
30
|
+
422: {
|
|
31
|
+
type: "validation";
|
|
32
|
+
on: string;
|
|
33
|
+
summary?: string;
|
|
34
|
+
message?: string;
|
|
35
|
+
found?: unknown;
|
|
36
|
+
property?: string;
|
|
37
|
+
expected?: string;
|
|
38
|
+
};
|
|
39
|
+
};
|
|
40
|
+
};
|
|
41
|
+
};
|
|
42
|
+
};
|
|
43
|
+
} & {
|
|
44
|
+
"@stub": {
|
|
45
|
+
"*": {
|
|
46
|
+
get: {
|
|
47
|
+
body: unknown;
|
|
48
|
+
params: {
|
|
49
|
+
"*": string;
|
|
50
|
+
} & {};
|
|
51
|
+
query: unknown;
|
|
52
|
+
headers: unknown;
|
|
53
|
+
response: {
|
|
54
|
+
200: Response;
|
|
55
|
+
422: {
|
|
56
|
+
type: "validation";
|
|
57
|
+
on: string;
|
|
58
|
+
summary?: string;
|
|
59
|
+
message?: string;
|
|
60
|
+
found?: unknown;
|
|
61
|
+
property?: string;
|
|
62
|
+
expected?: string;
|
|
63
|
+
};
|
|
64
|
+
};
|
|
65
|
+
};
|
|
66
|
+
};
|
|
67
|
+
};
|
|
68
|
+
} & {
|
|
69
|
+
"@hmr": {
|
|
70
|
+
"*": {
|
|
71
|
+
get: {
|
|
72
|
+
body: unknown;
|
|
73
|
+
params: {
|
|
74
|
+
"*": string;
|
|
75
|
+
} & {};
|
|
76
|
+
query: unknown;
|
|
77
|
+
headers: unknown;
|
|
78
|
+
response: {
|
|
79
|
+
200: Response;
|
|
80
|
+
422: {
|
|
81
|
+
type: "validation";
|
|
82
|
+
on: string;
|
|
83
|
+
summary?: string;
|
|
84
|
+
message?: string;
|
|
85
|
+
found?: unknown;
|
|
86
|
+
property?: string;
|
|
87
|
+
expected?: string;
|
|
88
|
+
};
|
|
89
|
+
};
|
|
90
|
+
};
|
|
91
|
+
};
|
|
92
|
+
};
|
|
93
|
+
} & {
|
|
19
94
|
hmr: {
|
|
20
95
|
subscribe: {
|
|
21
96
|
body: unknown;
|
package/package.json
CHANGED
|
@@ -228,12 +228,12 @@
|
|
|
228
228
|
"main": "./dist/index.js",
|
|
229
229
|
"name": "@absolutejs/absolute",
|
|
230
230
|
"optionalDependencies": {
|
|
231
|
-
"@absolutejs/native-darwin-arm64": "0.19.0-beta.
|
|
232
|
-
"@absolutejs/native-darwin-x64": "0.19.0-beta.
|
|
233
|
-
"@absolutejs/native-linux-arm64": "0.19.0-beta.
|
|
234
|
-
"@absolutejs/native-linux-x64": "0.19.0-beta.
|
|
235
|
-
"@absolutejs/native-windows-arm64": "0.19.0-beta.
|
|
236
|
-
"@absolutejs/native-windows-x64": "0.19.0-beta.
|
|
231
|
+
"@absolutejs/native-darwin-arm64": "0.19.0-beta.465",
|
|
232
|
+
"@absolutejs/native-darwin-x64": "0.19.0-beta.465",
|
|
233
|
+
"@absolutejs/native-linux-arm64": "0.19.0-beta.465",
|
|
234
|
+
"@absolutejs/native-linux-x64": "0.19.0-beta.465",
|
|
235
|
+
"@absolutejs/native-windows-arm64": "0.19.0-beta.465",
|
|
236
|
+
"@absolutejs/native-windows-x64": "0.19.0-beta.465"
|
|
237
237
|
},
|
|
238
238
|
"overrides": {
|
|
239
239
|
"@typescript-eslint/utils": "8.56.1"
|
|
@@ -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.
|
|
317
|
+
"version": "0.19.0-beta.465"
|
|
318
318
|
}
|