UNPKG

pnpm

Version:

A fast implementation of npm install

10 lines (9 loc) 300 B
/** * Perform the final symlinking of ./.store/x@1.0.0 -> ./x. * * @example * target = '/node_modules/.store/lodash@4.0.0' * modules = './node_modules' * symlinkToModules(target, modules) */ export default function symlinkToModules(target: string, modules: string): Promise<void>;