@absolutejs/absolute 0.19.0-beta.730 → 0.19.0-beta.731
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/build.js +9 -5
- package/dist/build.js.map +4 -4
- package/dist/index.js +9 -5
- package/dist/index.js.map +4 -4
- package/dist/src/build/buildAngularVendor.d.ts +5 -0
- package/package.json +1 -1
package/dist/build.js
CHANGED
|
@@ -44471,6 +44471,7 @@ var init_buildReactVendor = __esm(() => {
|
|
|
44471
44471
|
// src/build/buildAngularVendor.ts
|
|
44472
44472
|
var exports_buildAngularVendor = {};
|
|
44473
44473
|
__export(exports_buildAngularVendor, {
|
|
44474
|
+
computeAngularVendorPathsAsync: () => computeAngularVendorPathsAsync,
|
|
44474
44475
|
computeAngularVendorPaths: () => computeAngularVendorPaths,
|
|
44475
44476
|
buildAngularVendor: () => buildAngularVendor
|
|
44476
44477
|
});
|
|
@@ -44602,6 +44603,9 @@ var REQUIRED_ANGULAR_SPECIFIERS, SERVER_ONLY_ANGULAR_SPECIFIERS, SCAN_SKIP_DIRS,
|
|
|
44602
44603
|
paths[specifier] = `/angular/vendor/${toSafeFileName2(specifier)}.js`;
|
|
44603
44604
|
}
|
|
44604
44605
|
return paths;
|
|
44606
|
+
}, computeAngularVendorPathsAsync = async (directories = []) => {
|
|
44607
|
+
const specifiers = await resolveAngularSpecifiers(directories);
|
|
44608
|
+
return computeAngularVendorPaths(specifiers);
|
|
44605
44609
|
};
|
|
44606
44610
|
var init_buildAngularVendor = __esm(() => {
|
|
44607
44611
|
init_angularLinkerPlugin();
|
|
@@ -49628,7 +49632,7 @@ var FRAMEWORK_DIR_KEYS, collectDepVendorSourceDirs = (config) => {
|
|
|
49628
49632
|
setDevVendorPaths(computeVendorPaths());
|
|
49629
49633
|
}
|
|
49630
49634
|
if (cached?.hmrState.config.angularDirectory) {
|
|
49631
|
-
setAngularVendorPaths(computeAngularVendorPaths());
|
|
49635
|
+
setAngularVendorPaths(computeAngularVendorPaths(globalThis.__angularVendorSpecifiers));
|
|
49632
49636
|
}
|
|
49633
49637
|
if (cached?.hmrState.config.svelteDirectory) {
|
|
49634
49638
|
setSvelteVendorPaths(computeSvelteVendorPaths());
|
|
@@ -49709,9 +49713,6 @@ var FRAMEWORK_DIR_KEYS, collectDepVendorSourceDirs = (config) => {
|
|
|
49709
49713
|
if (config.reactDirectory) {
|
|
49710
49714
|
setDevVendorPaths(computeVendorPaths());
|
|
49711
49715
|
}
|
|
49712
|
-
if (config.angularDirectory) {
|
|
49713
|
-
setAngularVendorPaths(computeAngularVendorPaths());
|
|
49714
|
-
}
|
|
49715
49716
|
if (config.svelteDirectory) {
|
|
49716
49717
|
setSvelteVendorPaths(computeSvelteVendorPaths());
|
|
49717
49718
|
}
|
|
@@ -49719,6 +49720,9 @@ var FRAMEWORK_DIR_KEYS, collectDepVendorSourceDirs = (config) => {
|
|
|
49719
49720
|
setVueVendorPaths(computeVueVendorPaths());
|
|
49720
49721
|
}
|
|
49721
49722
|
const sourceDirs = collectDepVendorSourceDirs(config);
|
|
49723
|
+
if (config.angularDirectory) {
|
|
49724
|
+
setAngularVendorPaths(await computeAngularVendorPathsAsync(sourceDirs));
|
|
49725
|
+
}
|
|
49722
49726
|
const { computeDepVendorPaths: computeDepVendorPaths2 } = await Promise.resolve().then(() => (init_buildDepVendor(), exports_buildDepVendor));
|
|
49723
49727
|
globalThis.__depVendorPaths = await computeDepVendorPaths2(sourceDirs);
|
|
49724
49728
|
recordStep("prepare vendor paths", stepStartedAt);
|
|
@@ -49844,5 +49848,5 @@ export {
|
|
|
49844
49848
|
build
|
|
49845
49849
|
};
|
|
49846
49850
|
|
|
49847
|
-
//# debugId=
|
|
49851
|
+
//# debugId=9A9BE3B8E3FB90C564756E2164756E21
|
|
49848
49852
|
//# sourceMappingURL=build.js.map
|