mirror of
https://github.com/pnpm/pnpm.git
synced 2026-05-03 05:28:39 -04:00
8 lines
232 B
JavaScript
8 lines
232 B
JavaScript
'use strict'
|
|
const hierarchyForPackages = require('../lib').forPackages
|
|
|
|
hierarchyForPackages(['graceful-fs', {name: 'pify', range: '2'}], __dirname, {depth: 2})
|
|
.then(tree => {
|
|
console.log(JSON.stringify(tree, null, 2))
|
|
})
|