@absolutejs/absolute 0.19.0-beta.23 → 0.19.0-beta.25
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 +3 -24
- package/dist/build.js.map +3 -3
- package/dist/index.js +3 -24
- package/dist/index.js.map +3 -3
- package/native/packages/darwin-arm64/package.json +1 -1
- package/native/packages/darwin-x64/package.json +1 -1
- package/native/packages/linux-arm64/package.json +1 -1
- package/native/packages/linux-x64/package.json +1 -1
- package/package.json +5 -5
package/dist/index.js
CHANGED
|
@@ -203778,29 +203778,8 @@ var toSafeFileName3 = (specifier) => specifier.replace(/\//g, "_").replace(/@/g,
|
|
|
203778
203778
|
} catch {}
|
|
203779
203779
|
}
|
|
203780
203780
|
return Array.from(specifiers).filter(isResolvable2);
|
|
203781
|
-
}, generateEntrySource2 =
|
|
203782
|
-
|
|
203783
|
-
const mod = await import(specifier);
|
|
203784
|
-
const exportNames = Object.keys(mod).filter((key) => key !== "default" && key !== "__esModule");
|
|
203785
|
-
const lines = [];
|
|
203786
|
-
if (exportNames.length > 0) {
|
|
203787
|
-
lines.push(`export { ${exportNames.join(", ")} } from '${specifier}';`);
|
|
203788
|
-
}
|
|
203789
|
-
if ("default" in mod && mod.default !== undefined && mod.default !== mod) {
|
|
203790
|
-
lines.push(`export { default } from '${specifier}';`);
|
|
203791
|
-
}
|
|
203792
|
-
if (lines.length === 0) {
|
|
203793
|
-
return `export * from '${specifier}';
|
|
203794
|
-
`;
|
|
203795
|
-
}
|
|
203796
|
-
return lines.join(`
|
|
203797
|
-
`) + `
|
|
203798
|
-
`;
|
|
203799
|
-
} catch {
|
|
203800
|
-
return `export * from '${specifier}';
|
|
203801
|
-
`;
|
|
203802
|
-
}
|
|
203803
|
-
}, computeDepVendorPaths = async (directories) => {
|
|
203781
|
+
}, generateEntrySource2 = (specifier) => `export * from '${specifier}';
|
|
203782
|
+
`, computeDepVendorPaths = async (directories) => {
|
|
203804
203783
|
const specifiers = await scanBareImports(directories);
|
|
203805
203784
|
const paths = {};
|
|
203806
203785
|
for (const specifier of specifiers) {
|
|
@@ -204479,5 +204458,5 @@ export {
|
|
|
204479
204458
|
ANGULAR_INIT_TIMEOUT_MS
|
|
204480
204459
|
};
|
|
204481
204460
|
|
|
204482
|
-
//# debugId=
|
|
204461
|
+
//# debugId=68253C78B51987BF64756E2164756E21
|
|
204483
204462
|
//# sourceMappingURL=index.js.map
|