Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 | /**
* @fds-uif/core - Browser Entry Point
*
* This entry point exports only browser-compatible utilities.
* Excludes `resolveExtends` and CSS parsing which require Node.js fs/path/PostCSS.
*
* @packageDocumentation
*/
// Re-export all browser-safe utilities
export * from './shared-exports.js';
// NOTE: The following are NOT exported because they require Node.js:
// - resolveExtends, hasExtends, clearResolveCache (fs/path)
// - generateCssMetadata, parseCssSource, extractCssMetadata (PostCSS)
// Use the main entry point ('@fds-uif/core') for those.
|