UNPKG

@rdx-js/build-berun

Version:

BeRun runner for building RDX packs

13 lines (9 loc) 223 B
import Berun from '@berun/berun' import RdxClass from './Rdx' export const TdxConfig = RdxClass export const Rdx = (berun: BerunRdx) => { berun.rdx = new RdxClass() } export type BerunRdx = Berun & { rdx: RdxClass }