UNPKG

@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.

13 lines 635 B
/** * Portal manifest, configuration, and schema utilities for `@equinor/fusion-framework-cli/portal`. * * Provides helpers for defining, loading, merging, and validating Fusion portal * manifests, configurations, and schemas. * * @packageDocumentation */ export { createPortalManifestFromPackage, definePortalManifest, loadPortalManifest, validatePortalManifest, } from './portal-manifest.js'; export { loadPortalSchema, definePortalSchema, } from './load-portal-schema.js'; export { definePortalConfig, } from './portal-config.js'; export { loadPortalConfig, } from './load-portal-config.js'; //# sourceMappingURL=index.js.map