UNPKG

aemfed

Version:

Upload front-end changes into AEM, refresh relevant resources in the page and get instant notifications from the error.log, all for easier and faster development.

11 lines (10 loc) 358 B
import browserSync from "browser-sync"; export interface IWrapperConfig { bsOptions: browserSync.Options; jcrContentRoots: string[]; proxyPort: number; servers: string[]; dumpLibsPath?: string; } export declare function create(args: IWrapperConfig): Promise<void>; export declare function reload(host: string, inputList: string[]): void;