@joker.front/cli
Version:
The Next-Generation Front-End Toolchain: Swift, Efficient, and Adaptive.
16 lines (15 loc) • 608 B
TypeScript
import type { JokerChunkMetadata } from "./plugins/metadata";
export * from "./cli";
export { resolvePackageData } from "./package";
export { build, resolveBuildOpt, toOutputFilePath } from "./build";
export { normalizePath } from "./utils/index";
export { resolveCliConfig } from "./config";
export type { ResolvedConfig } from "./config";
export type { Plugin } from "./plugin";
export type { BuildOptions } from "./build";
export type { HtmlTagDescriptor, IndexHtmlTransform } from "./utils/html";
declare module "rollup" {
interface RenderedChunk {
jokerMetadata: JokerChunkMetadata;
}
}