@absolutejs/absolute 0.19.0-beta.975 → 0.19.0-beta.977
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/angular/index.js +9 -5
- package/dist/angular/index.js.map +3 -3
- package/dist/angular/server.js +9 -5
- package/dist/angular/server.js.map +3 -3
- package/dist/build.js +8 -3
- package/dist/build.js.map +3 -3
- package/dist/index.js +8 -3
- package/dist/index.js.map +3 -3
- package/package.json +1 -1
package/dist/build.js
CHANGED
|
@@ -20155,8 +20155,13 @@ ${content.slice(firstUseIdx)}`;
|
|
|
20155
20155
|
},
|
|
20156
20156
|
shouldCompileAngular ? tracePhase("compile/angular", async () => {
|
|
20157
20157
|
const mod = await Promise.resolve().then(() => (init_compileAngular(), exports_compileAngular));
|
|
20158
|
-
const
|
|
20159
|
-
|
|
20158
|
+
const result = await mod.compileAngular(angularEntries, angularDir, hmr, styleTransformConfig);
|
|
20159
|
+
if (angularProvidersEntryAddons.length > 0 && angularDir) {
|
|
20160
|
+
const { compileAngularFileJIT: compileAngularFileJIT2 } = await Promise.resolve().then(() => (init_compileAngular(), exports_compileAngular));
|
|
20161
|
+
const { getFrameworkGeneratedDir: getFrameworkGeneratedDir2 } = await Promise.resolve().then(() => (init_generatedDir(), exports_generatedDir));
|
|
20162
|
+
const compiledRoot = getFrameworkGeneratedDir2("angular", projectRoot);
|
|
20163
|
+
await Promise.all(angularProvidersEntryAddons.map((entry) => compileAngularFileJIT2(entry, compiledRoot, angularDir, styleTransformConfig)));
|
|
20164
|
+
}
|
|
20160
20165
|
if (hmr) {
|
|
20161
20166
|
try {
|
|
20162
20167
|
const { primeComponentFingerprint: primeComponentFingerprint2 } = await Promise.resolve().then(() => (init_fastHmrCompiler(), exports_fastHmrCompiler));
|
|
@@ -26989,5 +26994,5 @@ export {
|
|
|
26989
26994
|
build
|
|
26990
26995
|
};
|
|
26991
26996
|
|
|
26992
|
-
//# debugId=
|
|
26997
|
+
//# debugId=991A7554EBD83B3564756E2164756E21
|
|
26993
26998
|
//# sourceMappingURL=build.js.map
|