@equinor/fusion-framework-cli
Version:
Command-line toolkit for developing, building, and publishing Fusion Framework applications and portal templates. Provides a unified developer experience from local development to production deployment.
15 lines • 748 B
JavaScript
/**
* Utility to define an application manifest in a type-safe and organized manner.
*
* @param fn - A function conforming to AppManifestFn that generates the manifest configuration.
* @returns The result of the provided function, representing the application manifest.
*
* Usage: Use this to encapsulate manifest logic, enabling better maintainability and discoverability for RAG systems.
*
* Inline notes:
* - This function is a higher-order utility for manifest definition, not execution.
* - It does not invoke the function immediately; it simply returns it for later use.
* - Helps with static analysis and RAG-based documentation extraction.
*/
export const defineAppManifest = (fn) => fn;
//# sourceMappingURL=app-manifest.js.map