Files
pnpm/exec/plugin-commands-script-runners/src/index.ts

14 lines
283 B
TypeScript

import * as create from './create'
import * as dlx from './dlx'
import * as exec from './exec'
import * as restart from './restart'
import * as run from './run'
import * as _test from './test'
const test = {
...run,
..._test,
}
export { create, dlx, exec, restart, run, test }