@absolutejs/absolute 0.19.0-beta.1022 → 0.19.0-beta.1023
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/index.js
CHANGED
|
@@ -20857,6 +20857,12 @@ ${content.slice(firstUseIdx)}`;
|
|
|
20857
20857
|
vendorPaths = computeVendorPaths2();
|
|
20858
20858
|
setDevVendorPaths(vendorPaths);
|
|
20859
20859
|
}
|
|
20860
|
+
if (!hmr && reactDir) {
|
|
20861
|
+
const { buildReactVendor: buildReactVendor2, computeVendorPaths: computeVendorPaths2 } = await Promise.resolve().then(() => (init_buildReactVendor(), exports_buildReactVendor));
|
|
20862
|
+
await buildReactVendor2(buildPath);
|
|
20863
|
+
vendorPaths = computeVendorPaths2();
|
|
20864
|
+
setDevVendorPaths(vendorPaths);
|
|
20865
|
+
}
|
|
20860
20866
|
let angularVendorPaths2 = getAngularVendorPaths();
|
|
20861
20867
|
if (!angularVendorPaths2 && hmr && angularDir) {
|
|
20862
20868
|
const { computeAngularVendorPaths: computeAngularVendorPaths2 } = await Promise.resolve().then(() => (init_buildAngularVendor(), exports_buildAngularVendor));
|
|
@@ -20897,12 +20903,24 @@ ${content.slice(firstUseIdx)}`;
|
|
|
20897
20903
|
vueVendorPaths2 = computeVueVendorPaths2();
|
|
20898
20904
|
setVueVendorPaths(vueVendorPaths2);
|
|
20899
20905
|
}
|
|
20906
|
+
if (!hmr && vueDir) {
|
|
20907
|
+
const { buildVueVendor: buildVueVendor2, computeVueVendorPaths: computeVueVendorPaths2 } = await Promise.resolve().then(() => (init_buildVueVendor(), exports_buildVueVendor));
|
|
20908
|
+
await buildVueVendor2(buildPath);
|
|
20909
|
+
vueVendorPaths2 = computeVueVendorPaths2();
|
|
20910
|
+
setVueVendorPaths(vueVendorPaths2);
|
|
20911
|
+
}
|
|
20900
20912
|
let svelteVendorPaths2 = getSvelteVendorPaths();
|
|
20901
20913
|
if (!svelteVendorPaths2 && hmr && svelteDir) {
|
|
20902
20914
|
const { computeSvelteVendorPaths: computeSvelteVendorPaths2 } = await Promise.resolve().then(() => (init_buildSvelteVendor(), exports_buildSvelteVendor));
|
|
20903
20915
|
svelteVendorPaths2 = computeSvelteVendorPaths2();
|
|
20904
20916
|
setSvelteVendorPaths(svelteVendorPaths2);
|
|
20905
20917
|
}
|
|
20918
|
+
if (!hmr && svelteDir) {
|
|
20919
|
+
const { buildSvelteVendor: buildSvelteVendor2, computeSvelteVendorPaths: computeSvelteVendorPaths2 } = await Promise.resolve().then(() => (init_buildSvelteVendor(), exports_buildSvelteVendor));
|
|
20920
|
+
await buildSvelteVendor2(buildPath);
|
|
20921
|
+
svelteVendorPaths2 = computeSvelteVendorPaths2();
|
|
20922
|
+
setSvelteVendorPaths(svelteVendorPaths2);
|
|
20923
|
+
}
|
|
20906
20924
|
const depVendorPaths = hmr && globalThis.__depVendorPaths ? globalThis.__depVendorPaths : {};
|
|
20907
20925
|
const reactExternalPaths = {
|
|
20908
20926
|
...vendorPaths ?? {},
|
|
@@ -36169,5 +36187,5 @@ export {
|
|
|
36169
36187
|
ANGULAR_INIT_TIMEOUT_MS
|
|
36170
36188
|
};
|
|
36171
36189
|
|
|
36172
|
-
//# debugId=
|
|
36190
|
+
//# debugId=C6C2AA79E0B6938D64756E2164756E21
|
|
36173
36191
|
//# sourceMappingURL=index.js.map
|