hackmud-script-manager
Version:
Script manager for game hackmud, with minification, TypeScript support, and player script type definition generation.
17 lines (16 loc) • 478 B
TypeScript
export { supportedExtensions } from "./constants";
export { generateTypeDeclaration } from "./generateTypeDeclaration";
export { processScript } from "./processScript";
export { pull } from "./pull";
export { push } from "./push";
export { syncMacros } from "./syncMacros";
export { watch } from "./watch";
export type Info = {
path: string;
users: string[];
characterCount: number;
error: Error | undefined;
warnings: {
message: string;
}[];
};