mirror of
https://github.com/pnpm/pnpm.git
synced 2026-03-27 11:31:45 -04:00
9 lines
219 B
TypeScript
9 lines
219 B
TypeScript
import {PnpmOptions} from '../types'
|
|
import install from './install'
|
|
import runNpm from './runNpm'
|
|
|
|
export default async function (input: string[], opts: PnpmOptions) {
|
|
await install(input, opts)
|
|
runNpm(['test'])
|
|
}
|