@absolutejs/absolute 0.19.0-beta.879 → 0.19.0-beta.880
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/components/core/streamingSlotRegistrar.js +1 -1
- package/dist/angular/components/core/streamingSlotRegistry.js +2 -2
- package/dist/build.js +57 -6
- package/dist/build.js.map +8 -8
- package/dist/index.js +57 -6
- package/dist/index.js.map +8 -8
- package/dist/src/dev/angular/fastHmrCompiler.d.ts +1 -0
- package/dist/types/messages.d.ts +9 -1
- package/package.json +1 -1
|
@@ -26,6 +26,7 @@ export type FastHmrFailure = {
|
|
|
26
26
|
detail?: string;
|
|
27
27
|
};
|
|
28
28
|
export type FastHmrResult = FastHmrSuccess | FastHmrFailure;
|
|
29
|
+
export declare const takePendingModule: (id: string) => string | undefined;
|
|
29
30
|
export declare const recordFingerprint: (id: string, fp: ComponentFingerprint) => void;
|
|
30
31
|
export declare const invalidateFingerprintCache: () => void;
|
|
31
32
|
export type TryFastHmrParams = {
|
package/dist/types/messages.d.ts
CHANGED
|
@@ -20,7 +20,15 @@ export type HMRTimingMessage = {
|
|
|
20
20
|
type: 'hmr-timing';
|
|
21
21
|
duration: number;
|
|
22
22
|
};
|
|
23
|
-
export type
|
|
23
|
+
export type AngularHmrAckMessage = {
|
|
24
|
+
type: 'angular:hmr-ack';
|
|
25
|
+
id: string;
|
|
26
|
+
className: string;
|
|
27
|
+
tier: 'tier-0' | 'tier-1a';
|
|
28
|
+
applyMs: number;
|
|
29
|
+
error?: string;
|
|
30
|
+
};
|
|
31
|
+
export type HMRClientMessage = PingMessage | ReadyMessage | RequestRebuildMessage | HydrationErrorMessage | HMRTimingMessage | AngularHmrAckMessage;
|
|
24
32
|
export type ManifestMessage = {
|
|
25
33
|
type: 'manifest';
|
|
26
34
|
data: {
|
package/package.json
CHANGED