UNPKG

@lucidcms/core

Version:

The core of the Lucid CMS. It's responsible for spinning up the API and serving the CMS.

17 lines (16 loc) 656 B
import { RuntimeBuildArtifact, RuntimeBuildArtifacts } from "../../runtime/types.mjs"; //#region src/libs/cli/services/process-build-artifacts.d.ts /** * Responsible for processing the artifacts collected from the plugins. * Writes file and compile artifacts to the output directory. * Returns the artifacts formatted for the runtime adapter. */ declare const processBuildArtifacts: (props: { artifacts: RuntimeBuildArtifact[]; outDir: string; silent: boolean; customArtifactTypes?: string[]; }) => Promise<RuntimeBuildArtifacts>; //#endregion export { processBuildArtifacts as default }; //# sourceMappingURL=process-build-artifacts.d.mts.map