mirror of
https://github.com/pnpm/pnpm.git
synced 2026-03-25 02:21:52 -04:00
14 lines
283 B
TypeScript
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 }
|