@absolutejs/absolute 0.19.0-beta.998 → 0.19.0-beta.999
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
|
@@ -22804,8 +22804,13 @@ var SRC_PREFIX = "/@src/", jsTranspiler2, tsTranspiler2, tsxTranspiler, TRANSPIL
|
|
|
22804
22804
|
${stubs}
|
|
22805
22805
|
`;
|
|
22806
22806
|
}, resolveRelativeExtension = (srcPath, projectRoot, extensions) => {
|
|
22807
|
-
const
|
|
22808
|
-
|
|
22807
|
+
const directHit = extensions.find((ext) => existsSync33(resolve37(projectRoot, srcPath + ext)));
|
|
22808
|
+
if (directHit)
|
|
22809
|
+
return srcPath + directHit;
|
|
22810
|
+
const indexHit = extensions.find((ext) => existsSync33(resolve37(projectRoot, srcPath, `index${ext}`)));
|
|
22811
|
+
if (indexHit)
|
|
22812
|
+
return `${srcPath}/index${indexHit}`;
|
|
22813
|
+
return srcPath;
|
|
22809
22814
|
}, IMPORT_EXTENSIONS, SIDE_EFFECT_EXTENSIONS, MODULE_EXTENSIONS, RESOLVED_MODULE_EXTENSIONS, REACT_EXTENSIONS, escapeRegex3 = (str) => str.replace(/[.*+?^${}()|[\]\\]/g, "\\$&"), buildImportRewriter = (vendorPaths) => {
|
|
22810
22815
|
const entries = Object.entries(vendorPaths).sort(([a], [b2]) => b2.length - a.length);
|
|
22811
22816
|
if (entries.length === 0)
|
|
@@ -35709,5 +35714,5 @@ export {
|
|
|
35709
35714
|
ANGULAR_INIT_TIMEOUT_MS
|
|
35710
35715
|
};
|
|
35711
35716
|
|
|
35712
|
-
//# debugId=
|
|
35717
|
+
//# debugId=A63C1B6D62AC083364756E2164756E21
|
|
35713
35718
|
//# sourceMappingURL=index.js.map
|