@absolutejs/absolute 0.19.0-beta.991 → 0.19.0-beta.992
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
|
@@ -13655,6 +13655,26 @@ if (typeof __VUE_HMR_RUNTIME__ !== 'undefined') {
|
|
|
13655
13655
|
serverPath: result.serverPath
|
|
13656
13656
|
};
|
|
13657
13657
|
}));
|
|
13658
|
+
const queue = Array.from(allTsHelperPaths);
|
|
13659
|
+
while (queue.length > 0) {
|
|
13660
|
+
const tsPath = queue.shift();
|
|
13661
|
+
if (!tsPath)
|
|
13662
|
+
continue;
|
|
13663
|
+
const sourceCode = await file3(tsPath).text();
|
|
13664
|
+
const helperDir = dirname15(tsPath);
|
|
13665
|
+
for (const dep of extractImports(sourceCode)) {
|
|
13666
|
+
if (!dep.startsWith(".") || isStylePath(dep) || dep.endsWith(".vue")) {
|
|
13667
|
+
continue;
|
|
13668
|
+
}
|
|
13669
|
+
const resolved = resolveHelperTsPath(helperDir, dep);
|
|
13670
|
+
if (!existsSync22(resolved))
|
|
13671
|
+
continue;
|
|
13672
|
+
if (allTsHelperPaths.has(resolved))
|
|
13673
|
+
continue;
|
|
13674
|
+
allTsHelperPaths.add(resolved);
|
|
13675
|
+
queue.push(resolved);
|
|
13676
|
+
}
|
|
13677
|
+
}
|
|
13658
13678
|
await Promise.all(Array.from(allTsHelperPaths).map(async (tsPath) => {
|
|
13659
13679
|
const sourceCode = await file3(tsPath).text();
|
|
13660
13680
|
const transpiledCode = transpiler4.transformSync(sourceCode);
|
|
@@ -35658,5 +35678,5 @@ export {
|
|
|
35658
35678
|
ANGULAR_INIT_TIMEOUT_MS
|
|
35659
35679
|
};
|
|
35660
35680
|
|
|
35661
|
-
//# debugId=
|
|
35681
|
+
//# debugId=B3F9AE524DFEBB3B64756E2164756E21
|
|
35662
35682
|
//# sourceMappingURL=index.js.map
|