@absolutejs/absolute 0.19.0-beta.22 → 0.19.0-beta.23
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/.absolutejs/tsconfig.tsbuildinfo +1 -1
- package/dist/build.js +6 -2
- package/dist/build.js.map +3 -3
- package/dist/index.js +6 -2
- 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
|
@@ -203786,9 +203786,13 @@ var toSafeFileName3 = (specifier) => specifier.replace(/\//g, "_").replace(/@/g,
|
|
|
203786
203786
|
if (exportNames.length > 0) {
|
|
203787
203787
|
lines.push(`export { ${exportNames.join(", ")} } from '${specifier}';`);
|
|
203788
203788
|
}
|
|
203789
|
-
if ("default" in mod) {
|
|
203789
|
+
if ("default" in mod && mod.default !== undefined && mod.default !== mod) {
|
|
203790
203790
|
lines.push(`export { default } from '${specifier}';`);
|
|
203791
203791
|
}
|
|
203792
|
+
if (lines.length === 0) {
|
|
203793
|
+
return `export * from '${specifier}';
|
|
203794
|
+
`;
|
|
203795
|
+
}
|
|
203792
203796
|
return lines.join(`
|
|
203793
203797
|
`) + `
|
|
203794
203798
|
`;
|
|
@@ -204475,5 +204479,5 @@ export {
|
|
|
204475
204479
|
ANGULAR_INIT_TIMEOUT_MS
|
|
204476
204480
|
};
|
|
204477
204481
|
|
|
204478
|
-
//# debugId=
|
|
204482
|
+
//# debugId=EA908520DE35884C64756E2164756E21
|
|
204479
204483
|
//# sourceMappingURL=index.js.map
|