@absolutejs/absolute 0.19.0-beta.1108 → 0.19.0-beta.1109
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 +27 -1
- package/dist/angular/components/core/streamingSlotRegistrar.js +1 -1
- package/dist/angular/components/core/streamingSlotRegistry.js +2 -2
- package/dist/cli/index.js +370 -142
- package/dist/index.js +3 -3
- package/dist/index.js.map +14 -14
- package/dist/src/cli/typeGraphCoherence.d.ts +32 -0
- package/dist/src/core/prepare.d.ts +3 -3
- package/dist/src/plugins/hmr.d.ts +3 -3
- package/package.json +7 -5
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
export type PackageIdentity = {
|
|
2
|
+
consumer: string;
|
|
3
|
+
packageName: string;
|
|
4
|
+
packagePath: string;
|
|
5
|
+
version: string;
|
|
6
|
+
};
|
|
7
|
+
export type TypeGraphReport = {
|
|
8
|
+
identities: PackageIdentity[];
|
|
9
|
+
installRoot: string;
|
|
10
|
+
unresolved: {
|
|
11
|
+
consumer: string;
|
|
12
|
+
packageName: string;
|
|
13
|
+
}[];
|
|
14
|
+
};
|
|
15
|
+
declare const findInstallRoot: (cwd: string) => string;
|
|
16
|
+
declare const inspectTypeGraph: (cwd: string) => TypeGraphReport;
|
|
17
|
+
declare const duplicateTypeGraphPackages: (report: TypeGraphReport) => {
|
|
18
|
+
identities: PackageIdentity[];
|
|
19
|
+
name: "elysia" | "@sinclair/typebox";
|
|
20
|
+
paths: string[];
|
|
21
|
+
}[];
|
|
22
|
+
declare const alignTypeGraphOverrides: (report: TypeGraphReport) => string[];
|
|
23
|
+
declare const removeDuplicateTypeGraphPackages: (report: TypeGraphReport) => string[];
|
|
24
|
+
type TypeGraphCoherence = {
|
|
25
|
+
alignTypeGraphOverrides: typeof alignTypeGraphOverrides;
|
|
26
|
+
duplicateTypeGraphPackages: typeof duplicateTypeGraphPackages;
|
|
27
|
+
findInstallRoot: typeof findInstallRoot;
|
|
28
|
+
inspectTypeGraph: typeof inspectTypeGraph;
|
|
29
|
+
removeDuplicateTypeGraphPackages: typeof removeDuplicateTypeGraphPackages;
|
|
30
|
+
};
|
|
31
|
+
export declare const typeGraphCoherence: TypeGraphCoherence;
|
|
32
|
+
export {};
|
|
@@ -233,10 +233,10 @@ export declare const prepare: (configOrPath?: string) => Promise<{
|
|
|
233
233
|
} & {
|
|
234
234
|
hmr: {
|
|
235
235
|
subscribe: {
|
|
236
|
-
body:
|
|
236
|
+
body: {};
|
|
237
237
|
params: {};
|
|
238
|
-
query:
|
|
239
|
-
headers:
|
|
238
|
+
query: {};
|
|
239
|
+
headers: {};
|
|
240
240
|
response: {
|
|
241
241
|
200: Response;
|
|
242
242
|
};
|
|
@@ -118,10 +118,10 @@ export declare const hmr: (hmrState: HMRState, manifest: Record<string, string>,
|
|
|
118
118
|
} & {
|
|
119
119
|
hmr: {
|
|
120
120
|
subscribe: {
|
|
121
|
-
body:
|
|
121
|
+
body: {};
|
|
122
122
|
params: {};
|
|
123
|
-
query:
|
|
124
|
-
headers:
|
|
123
|
+
query: {};
|
|
124
|
+
headers: {};
|
|
125
125
|
response: {
|
|
126
126
|
200: Response;
|
|
127
127
|
};
|
package/package.json
CHANGED
|
@@ -32,7 +32,7 @@
|
|
|
32
32
|
"@simple-dom/document": "^1.4.0",
|
|
33
33
|
"@simple-dom/serializer": "^1.4.0",
|
|
34
34
|
"@simple-dom/void-map": "^1.4.0",
|
|
35
|
-
"@sinclair/typebox": "
|
|
35
|
+
"@sinclair/typebox": "0.34.52",
|
|
36
36
|
"@stylistic/eslint-plugin": "^5.10.0",
|
|
37
37
|
"@types/bun": "1.3.14",
|
|
38
38
|
"@types/react": "19.2.0",
|
|
@@ -41,11 +41,11 @@
|
|
|
41
41
|
"autoprefixer": "10.4.21",
|
|
42
42
|
"bun-types": "1.3.14",
|
|
43
43
|
"content-tag": "^4.1.1",
|
|
44
|
-
"elysia": "1.4.
|
|
44
|
+
"elysia": "1.4.29",
|
|
45
45
|
"elysia-scoped-state": "0.1.1",
|
|
46
46
|
"ember-source": "^6.12.0",
|
|
47
47
|
"eslint": "10.0.3",
|
|
48
|
-
"eslint-plugin-absolute": "0.11.
|
|
48
|
+
"eslint-plugin-absolute": "0.11.14",
|
|
49
49
|
"eslint-plugin-promise": "7.2.1",
|
|
50
50
|
"eslint-plugin-security": "4.0.0",
|
|
51
51
|
"globals": "^17.4.0",
|
|
@@ -254,7 +254,9 @@
|
|
|
254
254
|
"@absolutejs/native-windows-x64": "0.19.0-beta.1008"
|
|
255
255
|
},
|
|
256
256
|
"overrides": {
|
|
257
|
-
"@
|
|
257
|
+
"@sinclair/typebox": "0.34.52",
|
|
258
|
+
"@typescript-eslint/utils": "8.56.1",
|
|
259
|
+
"elysia": "1.4.29"
|
|
258
260
|
},
|
|
259
261
|
"peerDependencies": {
|
|
260
262
|
"@angular/animations": "^21.0.0",
|
|
@@ -425,7 +427,7 @@
|
|
|
425
427
|
]
|
|
426
428
|
}
|
|
427
429
|
},
|
|
428
|
-
"version": "0.19.0-beta.
|
|
430
|
+
"version": "0.19.0-beta.1109",
|
|
429
431
|
"workspaces": [
|
|
430
432
|
"tests/fixtures/*",
|
|
431
433
|
"tests/fixtures/_packages/*"
|