mirror of
https://github.com/pnpm/pnpm.git
synced 2026-03-31 13:32:18 -04:00
17 lines
326 B
TypeScript
17 lines
326 B
TypeScript
export * from './install'
|
|
export * from './link'
|
|
export * from './prune'
|
|
export * from './unlink'
|
|
export * from './rebuild'
|
|
|
|
import link from './link'
|
|
import storeStatus from './storeStatus'
|
|
import storePrune from './storePrune'
|
|
import uninstall from './uninstall'
|
|
export {
|
|
link,
|
|
uninstall,
|
|
storeStatus,
|
|
storePrune,
|
|
}
|