@absolutejs/absolute 0.19.0-beta.732 → 0.19.0-beta.733

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.
@@ -0,0 +1,10 @@
1
+ /** Heuristic check for whether a module exposes a default export.
2
+ *
3
+ * Required because `export *` (per ECMA spec) re-exports only NAMED exports,
4
+ * dropping the default. Without this, vendor files for packages whose surface
5
+ * is primarily a default (e.g. `firebase/compat/app`, classic CJS modules)
6
+ * ship empty, breaking `import x from "/vendor/pkg.js"` consumers.
7
+ *
8
+ * Conversely, blindly emitting `export { default } from 'X'` for a package
9
+ * with no default makes Bun.build fail. We must detect from the entry source. */
10
+ export declare const hasDefaultExport: (specifier: string) => Promise<boolean>;
package/package.json CHANGED
@@ -336,5 +336,5 @@
336
336
  ]
337
337
  }
338
338
  },
339
- "version": "0.19.0-beta.732"
339
+ "version": "0.19.0-beta.733"
340
340
  }