@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/index.js
CHANGED
|
@@ -44663,6 +44663,7 @@ var init_buildReactVendor = __esm(() => {
|
|
|
44663
44663
|
// src/build/buildAngularVendor.ts
|
|
44664
44664
|
var exports_buildAngularVendor = {};
|
|
44665
44665
|
__export(exports_buildAngularVendor, {
|
|
44666
|
+
computeAngularVendorPathsAsync: () => computeAngularVendorPathsAsync,
|
|
44666
44667
|
computeAngularVendorPaths: () => computeAngularVendorPaths,
|
|
44667
44668
|
buildAngularVendor: () => buildAngularVendor
|
|
44668
44669
|
});
|
|
@@ -44794,6 +44795,9 @@ var REQUIRED_ANGULAR_SPECIFIERS, SERVER_ONLY_ANGULAR_SPECIFIERS, SCAN_SKIP_DIRS,
|
|
|
44794
44795
|
paths[specifier] = `/angular/vendor/${toSafeFileName2(specifier)}.js`;
|
|
44795
44796
|
}
|
|
44796
44797
|
return paths;
|
|
44798
|
+
}, computeAngularVendorPathsAsync = async (directories = []) => {
|
|
44799
|
+
const specifiers = await resolveAngularSpecifiers(directories);
|
|
44800
|
+
return computeAngularVendorPaths(specifiers);
|
|
44797
44801
|
};
|
|
44798
44802
|
var init_buildAngularVendor = __esm(() => {
|
|
44799
44803
|
init_angularLinkerPlugin();
|
|
@@ -49705,7 +49709,7 @@ var FRAMEWORK_DIR_KEYS, collectDepVendorSourceDirs = (config) => {
|
|
|
49705
49709
|
setDevVendorPaths(computeVendorPaths());
|
|
49706
49710
|
}
|
|
49707
49711
|
if (cached?.hmrState.config.angularDirectory) {
|
|
49708
|
-
setAngularVendorPaths(computeAngularVendorPaths());
|
|
49712
|
+
setAngularVendorPaths(computeAngularVendorPaths(globalThis.__angularVendorSpecifiers));
|
|
49709
49713
|
}
|
|
49710
49714
|
if (cached?.hmrState.config.svelteDirectory) {
|
|
49711
49715
|
setSvelteVendorPaths(computeSvelteVendorPaths());
|
|
@@ -49786,9 +49790,6 @@ var FRAMEWORK_DIR_KEYS, collectDepVendorSourceDirs = (config) => {
|
|
|
49786
49790
|
if (config.reactDirectory) {
|
|
49787
49791
|
setDevVendorPaths(computeVendorPaths());
|
|
49788
49792
|
}
|
|
49789
|
-
if (config.angularDirectory) {
|
|
49790
|
-
setAngularVendorPaths(computeAngularVendorPaths());
|
|
49791
|
-
}
|
|
49792
49793
|
if (config.svelteDirectory) {
|
|
49793
49794
|
setSvelteVendorPaths(computeSvelteVendorPaths());
|
|
49794
49795
|
}
|
|
@@ -49796,6 +49797,9 @@ var FRAMEWORK_DIR_KEYS, collectDepVendorSourceDirs = (config) => {
|
|
|
49796
49797
|
setVueVendorPaths(computeVueVendorPaths());
|
|
49797
49798
|
}
|
|
49798
49799
|
const sourceDirs = collectDepVendorSourceDirs(config);
|
|
49800
|
+
if (config.angularDirectory) {
|
|
49801
|
+
setAngularVendorPaths(await computeAngularVendorPathsAsync(sourceDirs));
|
|
49802
|
+
}
|
|
49799
49803
|
const { computeDepVendorPaths: computeDepVendorPaths2 } = await Promise.resolve().then(() => (init_buildDepVendor(), exports_buildDepVendor));
|
|
49800
49804
|
globalThis.__depVendorPaths = await computeDepVendorPaths2(sourceDirs);
|
|
49801
49805
|
recordStep("prepare vendor paths", stepStartedAt);
|
|
@@ -58304,5 +58308,5 @@ export {
|
|
|
58304
58308
|
ANGULAR_INIT_TIMEOUT_MS
|
|
58305
58309
|
};
|
|
58306
58310
|
|
|
58307
|
-
//# debugId=
|
|
58311
|
+
//# debugId=2E2BAC3D0031B92D64756E2164756E21
|
|
58308
58312
|
//# sourceMappingURL=index.js.map
|